[U-Boot] [PATCH v1 0/6] This patch series contains the the changes related to

2018-06-29 Thread Shreenidhi Shedi
x Axi Watchdog driver to driver model Shreenidhi Shedi (6): microblaze: Use default implementation from include/linux/io.h microblaze: Guard do_reset by CONFIG_SYSRESET microblaze: Cosmetic changes in Microblaze related files microblaze: Delete Xilinx watchdog related macros microblaze: Suppor

[U-Boot] [PATCH v1 1/6] microblaze: Use default implementation from include/linux/io.h

2018-06-29 Thread Shreenidhi Shedi
Signed-off-by: Shreenidhi Shedi --- Changes in v1: - Removed few macros which aren't needed anymore - Few cosmetic changes - Converted Xilinx Axi Watchdog driver to driver model arch/microblaze/include/asm/io.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/arch/microblaze/includ

[U-Boot] [PATCH v1 5/6] microblaze: Support for watchdog_reset in Microblaze init

2018-06-29 Thread Shreenidhi Shedi
Signed-off-by: Shreenidhi Shedi --- Changes in v1: None .../microblaze-generic/microblaze-generic.c | 43 +-- 1 file changed, 39 insertions(+), 4 deletions(-) diff --git a/board/xilinx/microblaze-generic/microblaze-generic.c b/board/xilinx/microblaze-generic/microblaze

[U-Boot] [PATCH v1 3/6] microblaze: Cosmetic changes in Microblaze related files

2018-06-29 Thread Shreenidhi Shedi
Signed-off-by: Shreenidhi Shedi --- Changes in v1: None arch/microblaze/include/asm/io.h | 92 +++ .../microblaze-generic/microblaze-generic.c | 8 +- board/xilinx/microblaze-generic/xparameters.h | 4 +- include/configs/microblaze-generic.h | 2 +- 4

[U-Boot] [PATCH v1 2/6] microblaze: Guard do_reset by CONFIG_SYSRESET

2018-06-29 Thread Shreenidhi Shedi
Signed-off-by: Shreenidhi Shedi --- Changes in v1: None board/xilinx/microblaze-generic/microblaze-generic.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/xilinx/microblaze-generic/microblaze-generic.c b/board/xilinx/microblaze-generic/microblaze-generic.c index 58ca1d715d

[U-Boot] [PATCH v1 6/6] watchdog: Convert Xilinx Axi watchdog driver to driver model

2018-06-29 Thread Shreenidhi Shedi
Signed-off-by: Shreenidhi Shedi --- Changes in v1: None drivers/watchdog/Kconfig | 8 +++ drivers/watchdog/xilinx_tb_wdt.c | 107 --- 2 files changed, 91 insertions(+), 24 deletions(-) diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index

[U-Boot] [PATCH v1 4/6] microblaze: Delete Xilinx watchdog related macros

2018-06-29 Thread Shreenidhi Shedi
Signed-off-by: Shreenidhi Shedi --- Changes in v1: None board/xilinx/microblaze-generic/xparameters.h | 4 include/configs/microblaze-generic.h | 10 -- 2 files changed, 14 deletions(-) diff --git a/board/xilinx/microblaze-generic/xparameters.h b/board/xilinx

[U-Boot] [PATCH v2 0/3] Xilinx Axi Watchdog driver conversion to driver model

2018-07-14 Thread Shreenidhi Shedi
xilinx_tb_wdt.c based on review comments Shreenidhi Shedi (3): microblaze: Delete Xilinx watchdog related macros microblaze: Support for watchdog_reset in Microblaze init watchdog: Convert Xilinx Axi watchdog driver to driver model .../microblaze-generic/microblaze-generic.c | 42

[U-Boot] [PATCH v2 1/3] microblaze: Delete Xilinx watchdog related macros

2018-07-14 Thread Shreenidhi Shedi
Tested-by: mon...@monstr.eu Reviewed-by: mon...@monstr.eu These macros are not required anymore. These will be taken from configuration file. Changes in V1: - Removed reduntant macros. Changes in V2: - Added appropriate commit message. Signed-off-by: Shreenidhi Shedi --- Changes in v2

[U-Boot] [PATCH v2 2/3] microblaze: Support for watchdog_reset in Microblaze init

2018-07-14 Thread Shreenidhi Shedi
f-by: Shreenidhi Shedi --- Changes in v2: None .../microblaze-generic/microblaze-generic.c | 42 +-- 1 file changed, 38 insertions(+), 4 deletions(-) diff --git a/board/xilinx/microblaze-generic/microblaze-generic.c b/board/xilinx/microblaze-generic/microblaze-generic.c i

[U-Boot] [PATCH v2 3/3] watchdog: Convert Xilinx Axi watchdog driver to driver model

2018-07-14 Thread Shreenidhi Shedi
Xilinx Axi wdt driver conversion to driver model & Kconfig update for the same. Changes in V1: - Xilinx Axi wdt driver conversion to DM initial version Changes in V2: - Rectified print message - Removed stop instruction from probe Signed-off-by: Shreenidhi Shedi --- Changes in v2:

[U-Boot] [PATCH v1 0/1] Cosmetic changes in Microblaze related files

2018-07-14 Thread Shreenidhi Shedi
volatile warning in io.h still remains Shreenidhi Shedi (1): microblaze: Cosmetic changes in Microblaze related files arch/microblaze/include/asm/io.h | 94 +++ .../microblaze-generic/microblaze-generic.c | 8 +- board/xilinx/microblaze-generic/xparameters.h | 2

[U-Boot] [PATCH v1 1/1] microblaze: Cosmetic changes in Microblaze related files

2018-07-14 Thread Shreenidhi Shedi
Signed-off-by: Shreenidhi Shedi --- Changes in v1: - Coding style issues - Use of extra spaces - Space before bracket - Successive empty lines - No new line after end of function - No space given where space is required - Use of volatile warning in io.h still