All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/19] am335x, guardian: update board specific changes
@ 2021-05-28  9:30 Gireesh.Hiremath
  2021-05-28  9:30 ` [PATCH v3 01/19] configs: am335x_guardian: Enable clock driver Gireesh.Hiremath
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Gireesh.Hiremath @ 2021-05-28  9:30 UTC (permalink / raw)
  To: u-boot, Gireesh.Hiremath, trini
  Cc: sjoerd.simons, VinayKumar.Shettar, Govindaraji.Sivanantham

From: Gireesh Hiremath <Gireesh.Hiremath@in.bosch.com>

address the v2 review comments

>Hi Gireesh,
>
>On 22/04/21 7:01 pm, Gireesh.Hiremath@in.bosch.com wrote:
>> From: Gireesh Hiremath <Gireesh.Hiremath@in.bosch.com>
>> 
>> 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
>
>Overall looks good. Just minor comments:
>- For config file changes can you make $subject as
>	configs: am335x_guardian: ...
>- Can you rebase on top of latest master?
>
>Thanks and regards,
>Lokesh

Hi Lokesh,

config file subject changed to 
	configs: am335x_guardian:...
rebased to latest master branch

Thanks and regards,
Gireesh Hiremath

Gireesh Hiremath (16):
  configs: am335x_guardian: Enable clock driver
  configs: am335x_guardian: add ubi fastmap support
  configs: am335x_guardian: add memtest configs
  am335x, guardian: add memtest address range
  am335x, guardian: set environment variable autoload to no
  am335x, guardian: code cleanup and boot optimization
  configs: am335x_guardian: set boot delay
  configs: am335x_guardian: disable spl command
  am335x, guardian: update swi logic
  am335x, guardian: Enable backlight
  configs: am335x_guardian: Enable display config
  drivers: video: hx8238 fix build bug
  am335x, guardian: Enable panel driver Himax HX8238D
  am335x, guardian: software update available status is stored in AM3352
    RTC scracth register
  configs: am335x_guardian: Enable bootcount nvmem support
  configs: am335x_guardian: add register maps support

Moses Christopher (3):
  am335x, guardian: mem: Add board dependent mem values
  am335x, guardian: set tftp_load_addr in environment
  am335x, guardian: Update pinmux configuration

 arch/arm/dts/am335x-guardian-u-boot.dtsi      |  11 ++
 arch/arm/dts/am335x-guardian.dts              |  14 +-
 .../include/asm/arch-am33xx/mem-guardian.h    |  63 ++++++++
 arch/arm/mach-omap2/am33xx/Kconfig            |   2 +
 arch/arm/mach-omap2/am33xx/board.c            |   4 +
 arch/arm/mach-omap2/mem-common.c              |   4 +
 board/bosch/guardian/board.c                  | 151 +++++++++++++++---
 board/bosch/guardian/mux.c                    |   3 +-
 configs/am335x_guardian_defconfig             |  28 +++-
 drivers/bootcount/Kconfig                     |  27 +++-
 drivers/bootcount/Makefile                    |   1 +
 drivers/bootcount/bootcount_nvmem.c           |  57 +++++++
 drivers/video/Makefile                        |   2 +-
 drivers/video/hx8238d.c                       |   4 +-
 include/configs/am335x_guardian.h             |  21 ++-
 15 files changed, 350 insertions(+), 42 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-am33xx/mem-guardian.h
 create mode 100644 drivers/bootcount/bootcount_nvmem.c

-- 
2.20.1


^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2021-06-07 11:27 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-28  9:30 [PATCH v3 00/19] am335x, guardian: update board specific changes Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 01/19] configs: am335x_guardian: Enable clock driver Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 02/19] am335x, guardian: mem: Add board dependent mem values Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 03/19] configs: am335x_guardian: add ubi fastmap support Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 04/19] am335x, guardian: set tftp_load_addr in environment Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 05/19] configs: am335x_guardian: add memtest configs Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 06/19] am335x, guardian: add memtest address range Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 07/19] am335x, guardian: Update pinmux configuration Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 08/19] am335x, guardian: set environment variable autoload to no Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 09/19] am335x, guardian: code cleanup and boot optimization Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 10/19] configs: am335x_guardian: set boot delay Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 11/19] configs: am335x_guardian: disable spl command Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 12/19] am335x, guardian: update swi logic Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 13/19] am335x, guardian: Enable backlight Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 14/19] configs: am335x_guardian: Enable display config Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 15/19] drivers: video: hx8238 fix build bug Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 16/19] am335x, guardian: Enable panel driver Himax HX8238D Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 17/19] am335x, guardian: software update available status is stored in AM3352 RTC scracth register Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 18/19] configs: am335x_guardian: Enable bootcount nvmem support Gireesh.Hiremath
2021-05-28  9:30 ` [PATCH v3 19/19] configs: am335x_guardian: add register maps support Gireesh.Hiremath
2021-06-07 11:27 ` [PATCH v3 00/19] am335x, guardian: update board specific changes Lokesh Vutla

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.