[PATCH 02/10] am335x, guardian: Enable splash screen

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Display splash screen - Print "U-Boot" on display when bmp fails to load due to any reason Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 77 ++- configs/am335x_guardian_defconfig | 5 +-

[PATCH 03/10] am335x, guardian: configs: add ubi fastmap support

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Ideally enabling the config should trigger fastmap, if it doesn't work then send ubi.fm_autoconvert=1 as kernel cmdline argument Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH 06/10] am335x, guardian: display DHCP Failed on lcd when dhcp fails during boot

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath * Applicable only when distro_bootcmd is executed * Text color is defaulted to White on Black Background * Text color changes when changed in board.c Ex: Red when no splash screen image is found Signed-off-by: Gireesh Hiremath --- include/configs/am335x_guardian.h | 3

[PATCH 00/10] Add support am335, Guardian

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath add support for backlight, splash screen, tftp_load_addr in environment add memtest cmd, swi logic, dhcp fail info add ubi fastmap support update pinmux, code clean up Gireesh Hiremath (8): am335x, guardian: Enable backlight am335x, guardian: Enable splash screen

[PATCH 05/10] am335x, guardian: cmd: add memtest configs

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Add mtest, meminfo commands - Add default mem start address as 0x8000 - Add defauly mem end address as 0x8100 - Implies default test runs for first 16MiB of DRAM Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 2 ++

[PATCH 04/10] am335x, guardian: set tftp_load_addr in environment

2021-01-06 Thread Gireesh.Hiremath
From: Moses Christopher Set tftp_load_addr to 0x8200 in MEM_LAYOUT_ENV_SETTINGS Signed-off-by: Moses Christopher --- include/configs/am335x_guardian.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/am335x_guardian.h b/include/configs/am335x_guardian.h index

[PATCH 01/10] am335x, guardian: Enable backlight

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath Enable backlight,set brightness value and dimming frequency Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 26 ++ include/configs/am335x_guardian.h | 1 + 2 files changed, 27 insertions(+) diff --git

[PATCH 10/10] am335x, guardian: code cleanup and boot optimization

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath - remove unneeded headers in board.c - remove unneeded commands and configs from the build Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 21 - configs/am335x_guardian_defconfig | 3 ++- 2 files changed, 2 insertions(+), 22

[PATCH 07/10] am335x, guardian: update swi logic

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath read boot_mode_gpio and set the swi status Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 15 +-- include/configs/am335x_guardian.h | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/board/bosch/guardian/board.c

[PATCH 08/10] am335x, guardian: Update pinmux configuration

2021-01-06 Thread Gireesh.Hiremath
From: Moses Christopher pinmux update for guardian board Signed-off-by: Moses Christopher --- arch/arm/dts/am335x-guardian.dts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/dts/am335x-guardian.dts b/arch/arm/dts/am335x-guardian.dts index

[PATCH 0/1] Add update available flag along with bootcount

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath By adding update_avalibale flag we wanted control the increment of bootcount, update_available flag is set from user space when there is upgrade in software which allow to increment of bootcount, otherwise no increment in the bootcount. Update_available and bootcount will

[PATCH 09/10] am335x, guardian: set environment variable autoload to no

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath autoload: if set to "no" then rarpb, bootp or dhcp commands will just perform a configuration lookup from the BOOTP / DHCP server, but not try to load any image using TFTP Signed-off-by: Gireesh Hiremath --- include/configs/am335x_guardian.h | 2 +- 1 file changed, 1

[PATCH 1/1] am335x, guardian: software update available status is stored in AM3352 RTC scracth register

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath RTC second scratch register[32-bit]: -zero byte hold boot count value -first byte hold update available state -second byte hold version -third byte hold magic number Signed-off-by: Gireesh Hiremath Gbp-Pq: Topic apertis/guardian Gbp-Pq: Name

[PATCH] Include support for dev_xxx macros

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath Now that linux/compat.h does not define dev_xxx macros, we need to include dm/device_compat.h to use dev_xxx macros Signed-off-by: Gireesh Hiremath --- drivers/video/am335x-fb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/am335x-fb.c

[PATCH 2/2] am335x, guardian: Enable panel driver Himax HX8238D

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath Enable lcd controller related clocks, pinmux, config, interface and port Signed-off-by: Gireesh Hiremath --- arch/arm/dts/am335x-guardian-u-boot.dtsi | 15 +++ arch/arm/dts/am335x-guardian.dts | 8 +++- arch/arm/mach-omap2/am33xx/Kconfig |

[PATCH 0/2] Add Support for Himax HX8238D Display Panel

2021-01-06 Thread Gireesh.Hiremath
From: Gireesh Hiremath Add diaplsy panel driver for Himax HX8238D with * SPI based initialization for HX8238D * Resolution: 320x240 * Color-Mode: RGB Enable the HX8238D driver for am335x, guardian board with related clocks, pinmux, config, interface and port Gireesh Hiremath (1): am335x,

[PATCH] am335x, guardian: mem: Add board dependent mem values

2021-01-06 Thread Gireesh.Hiremath
From: Moses Christopher - Add mem-guardian.h derived from am33xx/mem.h * Add GPMC config values optimized for Bosch Guardian Board * NAND Chip used by Bosch Guardian Board is Micron MT29F4G08ABBFA Signed-off-by: Moses Christopher --- .../include/asm/arch-am33xx/mem-guardian.h|

[PATCH 1/2] drivers: video: Add Support for Himax HX8238D Panel

2021-01-06 Thread Gireesh.Hiremath
From: Moses Christopher * SPI based initialization for HX8238D * Resolution: 320x240 * Color-Mode: RGB * Initial Work is done by Sjoerd Simons https://gitlab.apertis.org/packaging/u-boot/-/blob\ /5f259720e3e64965d50da89a841ad6eb256a47df/debian/patches\

[PATCH v4 09/18] configs: am335x_guardian: set boot delay

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath - set boot delay to zero, to increase boot speed Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 000b198440..52fa58ae7b

[PATCH v4 03/18] configs: am335x_guardian: add ubi fastmap support

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Trigger fastmap automatically Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 791bbba26e..a96cdf734c 100644 ---

[PATCH v4 05/18] configs: am335x_guardian: add memtest configs

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Add mtest, meminfo commands Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 4 1 file changed, 4 insertions(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index a96cdf734c..000b198440 100644 ---

[PATCH v4 06/18] am335x, guardian: Update pinmux configuration

2021-06-11 Thread Gireesh.Hiremath
From: Moses Christopher pinmux update for guardian board - control ASP Board Power: GPIO, on/off ASP Board Power - control Coincell Voltage Measurement: GPIO, enable/disable ADC measurements - powerOff Device GPIO-PowerOff, cut the PMIC supply Signed-off-by: Moses Christopher ---

[PATCH v4 01/18] configs: am335x_guardian: Enable clock driver

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath Enable TI clock driver support for guardian board Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index

[PATCH v4 00/18] am335x, guardian: update board specific changes

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath address the v3 review comments >There are some build errors with this series, can you take a look?:

[PATCH v4 02/18] am335x, guardian: mem: Add board dependent mem values

2021-06-11 Thread Gireesh.Hiremath
From: Moses Christopher - Add mem-guardian.h derived from am33xx/mem.h * Add GPMC config values optimized for Bosch Guardian Board * NAND Chip used by Bosch Guardian Board is Micron MT29F4G08ABBFA Signed-off-by: Moses Christopher --- .../include/asm/arch-am33xx/mem-guardian.h|

[PATCH v4 04/18] am335x, guardian: set tftp_load_addr in environment

2021-06-11 Thread Gireesh.Hiremath
From: Moses Christopher Set tftp_load_addr to 0x8200 in MEM_LAYOUT_ENV_SETTINGS Signed-off-by: Moses Christopher --- include/configs/am335x_guardian.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/am335x_guardian.h b/include/configs/am335x_guardian.h index

[PATCH v4 11/18] am335x, guardian: update swi logic

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath read boot mode gpio and set the swi status Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 16 ++-- include/configs/am335x_guardian.h | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git

[PATCH v4 07/18] am335x, guardian: set environment variable autoload to no

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath autoload: if set to "no" then rarpb, bootp or dhcp commands will just perform a configuration lookup from the BOOTP / DHCP server, but not try to load any image using TFTP Signed-off-by: Gireesh Hiremath --- include/configs/am335x_guardian.h | 2 +- 1 file changed, 1

[PATCH v4 14/18] drivers: video: hx8238 fix build bug

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath update panel driver hx8238 fix build bug Signed-off-by: Gireesh Hiremath --- drivers/video/Makefile | 2 +- drivers/video/hx8238d.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/video/Makefile b/drivers/video/Makefile index

[PATCH v4 12/18] am335x, guardian: Enable backlight

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath Enable backlight, set brightness value and dimming frequency Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 26 ++ include/configs/am335x_guardian.h | 1 + 2 files changed, 27 insertions(+) diff --git

[PATCH v4 08/18] am335x, guardian: code cleanup and boot optimization

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath - remove redundant headers and boot modes from board file Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 21 - 1 file changed, 21 deletions(-) diff --git a/board/bosch/guardian/board.c b/board/bosch/guardian/board.c index

[PATCH v4 10/18] configs: am335x_guardian: disable spl command

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath - disable support for spl command Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index

[PATCH v4 15/18] am335x, guardian: Enable panel driver Himax HX8238D

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Enable lcd controller - Display splash screen Signed-off-by: Gireesh Hiremath --- arch/arm/dts/am335x-guardian-u-boot.dtsi | 11 +++ arch/arm/dts/am335x-guardian.dts | 8 ++- arch/arm/mach-omap2/am33xx/Kconfig | 2 + board/bosch/guardian/board.c

[PATCH v4 16/18] am335x, guardian: software update available status is stored in AM3352 RTC scracth register

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath RTC second scratch register[32-bit]: -zero byte hold boot count value -first byte hold update available state -second byte hold version -third byte hold magic number Signed-off-by: Gireesh Hiremath Gbp-Pq: Topic apertis/guardian Gbp-Pq: Name

[PATCH v4 18/18] configs: am335x_guardian: add register maps support

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath add support to direct memory access of hardware peripherals registers Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index

[PATCH v4 13/18] configs: am335x_guardian: Enable display config

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath -Enable configuration for display driver -Disable support for SPL GPIO, CMD LED & SPL GPIO Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git

[PATCH v4 17/18] configs: am335x_guardian: Enable bootcount nvmem support

2021-06-11 Thread Gireesh.Hiremath
From: Gireesh Hiremath include bootcount nvmem support Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 38c5c47c16..3dc478d4e0 100644 ---

[PATCH v3 13/19] am335x, guardian: Enable backlight

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath Enable backlight, set brightness value and dimming frequency Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 26 ++ include/configs/am335x_guardian.h | 1 + 2 files changed, 27 insertions(+) diff --git

[PATCH v3 03/19] configs: am335x_guardian: add ubi fastmap support

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Trigger fastmap automatically Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 791bbba26e..a96cdf734c 100644 ---

[PATCH v3 15/19] drivers: video: hx8238 fix build bug

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath update panel driver hx8238 fix build bug Signed-off-by: Gireesh Hiremath --- drivers/video/Makefile | 2 +- drivers/video/hx8238d.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/video/Makefile b/drivers/video/Makefile index

[PATCH v3 07/19] am335x, guardian: Update pinmux configuration

2021-05-28 Thread Gireesh.Hiremath
From: Moses Christopher pinmux update for guardian board - control ASP Board Power: GPIO, on/off ASP Board Power - control Coincell Voltage Measurement: GPIO, enable/disable ADC measurements - powerOff Device GPIO-PowerOff, cut the PMIC supply Signed-off-by: Moses Christopher ---

[PATCH v3 18/19] configs: am335x_guardian: Enable bootcount nvmem support

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath include bootcount nvmem support Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 6056b78991..65a3c23e9c 100644 ---

[PATCH v3 06/19] am335x, guardian: add memtest address range

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Add default mem start address as 0x8000 - Add defauly mem end address as 0x8100 - Implies default test runs for first 16MiB of DRAM Signed-off-by: Gireesh Hiremath --- include/configs/am335x_guardian.h | 4 1 file changed, 4 insertions(+) diff --git

[PATCH v3 05/19] configs: am335x_guardian: add memtest configs

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Add mtest, meminfo commands Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index a96cdf734c..2ae7507eff 100644 ---

[PATCH v3 04/19] am335x, guardian: set tftp_load_addr in environment

2021-05-28 Thread Gireesh.Hiremath
From: Moses Christopher Set tftp_load_addr to 0x8200 in MEM_LAYOUT_ENV_SETTINGS Signed-off-by: Moses Christopher --- include/configs/am335x_guardian.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/am335x_guardian.h b/include/configs/am335x_guardian.h index

[PATCH v3 09/19] am335x, guardian: code cleanup and boot optimization

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath - remove redundant headers and boot modes from board file Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 21 - 1 file changed, 21 deletions(-) diff --git a/board/bosch/guardian/board.c b/board/bosch/guardian/board.c index

[PATCH v3 08/19] am335x, guardian: set environment variable autoload to no

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath autoload: if set to "no" then rarpb, bootp or dhcp commands will just perform a configuration lookup from the BOOTP / DHCP server, but not try to load any image using TFTP Signed-off-by: Gireesh Hiremath --- include/configs/am335x_guardian.h | 2 +- 1 file changed, 1

[PATCH v3 10/19] configs: am335x_guardian: set boot delay

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath - set boot delay to zero, to increase boot speed Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 2ae7507eff..e47c6aad74

[PATCH v3 11/19] configs: am335x_guardian: disable spl command

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath - disable support for spl command Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index

[PATCH v3 19/19] configs: am335x_guardian: add register maps support

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath add support to direct memory access of hardware peripherals registers Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index

[PATCH v3 16/19] am335x, guardian: Enable panel driver Himax HX8238D

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Enable lcd controller - Display splash screen Signed-off-by: Gireesh Hiremath --- arch/arm/dts/am335x-guardian-u-boot.dtsi | 11 +++ arch/arm/dts/am335x-guardian.dts | 8 ++- arch/arm/mach-omap2/am33xx/Kconfig | 2 + board/bosch/guardian/board.c

[PATCH v3 17/19] am335x, guardian: software update available status is stored in AM3352 RTC scracth register

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath RTC second scratch register[32-bit]: -zero byte hold boot count value -first byte hold update available state -second byte hold version -third byte hold magic number Signed-off-by: Gireesh Hiremath Gbp-Pq: Topic apertis/guardian Gbp-Pq: Name

[PATCH v3 12/19] am335x, guardian: update swi logic

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath read boot mode gpio and set the swi status Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 15 +-- include/configs/am335x_guardian.h | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/board/bosch/guardian/board.c

[PATCH v3 14/19] configs: am335x_guardian: Enable display config

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath -Enable configuration for display driver -Disable support for SPL GPIO, CMD LED & SPL GPIO Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git

[PATCH v3 01/19] configs: am335x_guardian: Enable clock driver

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath Enable TI clock driver support for guardian board Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index

[PATCH v3 02/19] am335x, guardian: mem: Add board dependent mem values

2021-05-28 Thread Gireesh.Hiremath
From: Moses Christopher - Add mem-guardian.h derived from am33xx/mem.h * Add GPMC config values optimized for Bosch Guardian Board * NAND Chip used by Bosch Guardian Board is Micron MT29F4G08ABBFA Signed-off-by: Moses Christopher --- .../include/asm/arch-am33xx/mem-guardian.h|

[PATCH v3 00/19] am335x, guardian: update board specific changes

2021-05-28 Thread Gireesh.Hiremath
From: Gireesh Hiremath address the v2 review comments >Hi Gireesh, > >On 22/04/21 7:01 pm, gireesh.hirem...@in.bosch.com wrote: >> From: Gireesh Hiremath >> >> add support for updated TI clock driver, backlight, splash screen, swi >> logic, add ubi fastmap support, update pinmux, code clean

[PATCH v2 14/18] am335x, guardian: configs: Enable display config

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath -Enable configuration for display driver -Disable support for SPL GPIO, CMD LED & SPL GPIO Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git

[PATCH v2 15/18] drivers: video: hx8238 fix build bug

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath update panel driver hx8238 fix build bug Signed-off-by: Gireesh Hiremath --- drivers/video/Makefile | 2 +- drivers/video/hx8238d.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/video/Makefile b/drivers/video/Makefile index

[PATCH v2 17/18] am335x, guardian: software update available status is stored in AM3352 RTC scracth register

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath RTC second scratch register[32-bit]: -zero byte hold boot count value -first byte hold update available state -second byte hold version -third byte hold magic number Signed-off-by: Gireesh Hiremath Gbp-Pq: Topic apertis/guardian Gbp-Pq: Name

[PATCH v2 18/18] am335x, guardian: configs: Enable bootcount nvmem support

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath include bootcount nvmem support Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 6056b78991..65a3c23e9c 100644 ---

[PATCH v2 09/18] am335x, guardian: code cleanup and boot optimization

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath - remove redundant headers and boot modes from board file Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 21 - 1 file changed, 21 deletions(-) diff --git a/board/bosch/guardian/board.c b/board/bosch/guardian/board.c index

[PATCH v2 05/18] am335x, guardian: configs: cmd: add memtest configs

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Add mtest, meminfo commands Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index a96cdf734c..2ae7507eff 100644 ---

[PATCH v2 11/18] am335x, guardian: configs: cmd : disable spl command

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath - disable support for spl command Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index

[PATCH v2 08/18] am335x, guardian: set environment variable autoload to no

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath autoload: if set to "no" then rarpb, bootp or dhcp commands will just perform a configuration lookup from the BOOTP / DHCP server, but not try to load any image using TFTP Signed-off-by: Gireesh Hiremath --- include/configs/am335x_guardian.h | 2 +- 1 file changed, 1

[PATCH v2 12/18] am335x, guardian: update swi logic

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath read boot mode gpio and set the swi status Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 15 +-- include/configs/am335x_guardian.h | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/board/bosch/guardian/board.c

[PATCH v2 13/18] am335x, guardian: Enable backlight

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath Enable backlight, set brightness value and dimming frequency Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 26 ++ include/configs/am335x_guardian.h | 1 + 2 files changed, 27 insertions(+) diff --git

[PATCH v2 10/18] am335x, guardian: configs: set boot delay

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath - set boot delay to zero, to increase boot speed Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 2ae7507eff..e47c6aad74

[PATCH v2 16/18] am335x, guardian: Enable panel driver Himax HX8238D

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Enable lcd controller - Display splash screen Signed-off-by: Gireesh Hiremath --- On 06/01/21 9:01 pm, gireesh.hirem...@in.bosch.com wrote: > diff --git a/board/bosch/guardian/board.c > b/board/bosch/guardian/board.c index 8b3c82cafd..f3e616d21c 100644 > ---

[PATCH v2 07/18] am335x, guardian: Update pinmux configuration

2021-04-22 Thread Gireesh.Hiremath
From: Moses Christopher pinmux update for guardian board - control ASP Board Power: GPIO, on/off ASP Board Power - control Coincell Voltage Measurement: GPIO, enable/disable ADC measurements - powerOff Device GPIO-PowerOff, cut the PMIC supply Signed-off-by: Moses Christopher --- On 06/01/21

[PATCH v2 00/18] am335x, guardian: update board specific changes

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath add support for updated TI clock driver, backlight, splash screen, swi logic, add ubi fastmap support, update pinmux, code clean up address the v1 review comments like: split board changes and defconfig changes into separate patches, adding clock support Gireesh Hiremath

[PATCH v2 04/18] am335x, guardian: set tftp_load_addr in environment

2021-04-22 Thread Gireesh.Hiremath
From: Moses Christopher Set tftp_load_addr to 0x8200 in MEM_LAYOUT_ENV_SETTINGS Signed-off-by: Moses Christopher --- include/configs/am335x_guardian.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/am335x_guardian.h b/include/configs/am335x_guardian.h index

[PATCH v2 03/18] am335x, guardian: configs: add ubi fastmap support

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Trigger fastmap automatically Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 791bbba26e..a96cdf734c 100644 ---

[PATCH v2 06/18] am335x, guardian: add memtest address range

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath - Add default mem start address as 0x8000 - Add defauly mem end address as 0x8100 - Implies default test runs for first 16MiB of DRAM Signed-off-by: Gireesh Hiremath --- include/configs/am335x_guardian.h | 4 1 file changed, 4 insertions(+) diff --git

[PATCH v2 02/18] am335x, guardian: mem: Add board dependent mem values

2021-04-22 Thread Gireesh.Hiremath
From: Moses Christopher - Add mem-guardian.h derived from am33xx/mem.h * Add GPMC config values optimized for Bosch Guardian Board * NAND Chip used by Bosch Guardian Board is Micron MT29F4G08ABBFA Signed-off-by: Moses Christopher --- On 06/01/21 9:01 pm,

[PATCH v2 01/18] am335x, guardian: configs: Enable clock driver

2021-04-22 Thread Gireesh.Hiremath
From: Gireesh Hiremath Enable TI clock driver support for guardian board Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index

[PATCH 1/3] ARM: dts: am335x: guardian: switch to AM33XX_PADCONF

2022-05-04 Thread Gireesh.Hiremath
From: Gireesh Hiremath switch the pin definitions from AM33XX_IOPAD to AM33XX_PADCONF macro Signed-off-by: Gireesh Hiremath --- arch/arm/dts/am335x-guardian-u-boot.dtsi | 2 +- arch/arm/dts/am335x-guardian.dts | 214 +-- 2 files changed, 119 insertions(+), 97

[PATCH 3/3] am335x, guardian: Drop non DM_I2C code

2022-05-04 Thread Gireesh.Hiremath
From: Gireesh Hiremath On this platform DM_I2C and SPL_DM_I2C enabled. Remove legacy code. Signed-off-by: Gireesh Hiremath --- board/bosch/guardian/board.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/board/bosch/guardian/board.c b/board/bosch/guardian/board.c

[PATCH 2/3] configs: am335x_guardian: Enable DM_I2C

2022-05-04 Thread Gireesh.Hiremath
From: Gireesh Hiremath Move from I2C legacy to the DM I2C version Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index

[PATCH] configs: am335x_guardian: store boot count in AM3352 RTC block

2024-04-08 Thread Gireesh.Hiremath
From: Gireesh Hiremath store bootcount in RTC block scratch register Signed-off-by: Gireesh Hiremath --- configs/am335x_guardian_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 75138542431..a03d33d