public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/17] OMAP5: Add the Changes required for OMAP5 ES1.0 silicon.
@ 2012-02-17 12:05 R Sricharan
  2012-02-17 12:05 ` [U-Boot] [PATCH 01/17] OMAP5: clocks: Change clock settings as required for " R Sricharan
                   ` (16 more replies)
  0 siblings, 17 replies; 27+ messages in thread
From: R Sricharan @ 2012-02-17 12:05 UTC (permalink / raw)
  To: u-boot

OMAP5 soc support is already present in the mainline.
The below are the changes that were identified during the actual
silicon wakeup. Briefly, the changes address clocks, ddr, mux,
poweric, mmc, io settings required/recommended for the ip.
Couple of bug fixes are also added as a part of this series.

The series has been tested on
 OMAP5430 ES1.0,
 OMAP4 PANDA and SDP boards.

Balaji T K (4):
  arm: omap5: correct boot device mode7 for eMMC
  power: twl6035: add palmas PMIC support
  omap5: pbias ldo9 turn on
  mmc: omap5evm: Add eMMC saveenv support

R Sricharan (13):
  OMAP5: clocks: Change clock settings as required for ES1.0 silicon.
  OMAP5: board: Add pinmux data for omap5_evm board.
  omap5: io: Configure the io settings for omap5430 sevm board.
  OMAP5: emif/ddr: Change emif settings as required for ES1.0 silicon.
  OMAP5: palmas: Configure nominal opp vdd values
  OMAP5: hwinit: Add the missing break statement
  OMAP4/5: Make the silicon revision variable common.
  OMAP5: SRAM: Change the SRAM base address.
  OMAP4/5: Make the sysctrl structure common
  OMAP4/5: device: Add support to get the device type.
  OMAP5: defconfig: Align the defconfig for 5430 ES1.0
  OMAP5: ddr: Change the ddr device name.
  OMAP4/5: emif: Correct the emif power mgt shadow register bit fields.

 arch/arm/cpu/armv7/omap-common/clocks-common.c     |   20 +-
 arch/arm/cpu/armv7/omap-common/emif-common.c       |   40 ++-
 arch/arm/cpu/armv7/omap-common/hwinit-common.c     |    6 +-
 arch/arm/cpu/armv7/omap-common/spl.c               |    1 +
 arch/arm/cpu/armv7/omap-common/spl_mmc.c           |    1 +
 arch/arm/cpu/armv7/omap4/clocks.c                  |   15 +
 arch/arm/cpu/armv7/omap4/hwinit.c                  |   24 +-
 arch/arm/cpu/armv7/omap4/sdram_elpida.c            |    4 +
 arch/arm/cpu/armv7/omap5/Makefile                  |    2 +-
 arch/arm/cpu/armv7/omap5/clocks.c                  |  138 ++++--
 arch/arm/cpu/armv7/omap5/hwinit.c                  |   90 ++++-
 .../cpu/armv7/omap5/{sdram_elpida.c => sdram.c}    |  101 +++--
 arch/arm/include/asm/arch-omap4/clocks.h           |    1 +
 arch/arm/include/asm/arch-omap4/omap.h             |   14 +-
 arch/arm/include/asm/arch-omap4/sys_proto.h        |    6 -
 arch/arm/include/asm/arch-omap5/clocks.h           |   35 +-
 arch/arm/include/asm/arch-omap5/mux_omap5.h        |  502 ++++++++++----------
 arch/arm/include/asm/arch-omap5/omap.h             |  142 +++++--
 arch/arm/include/asm/arch-omap5/sys_proto.h        |    6 -
 arch/arm/include/asm/emif.h                        |   76 +++-
 arch/arm/include/asm/omap_common.h                 |   11 +-
 board/ti/omap5_evm/evm.c                           |    6 +-
 board/ti/omap5_evm/mux_data.h                      |  484 ++++++++++---------
 drivers/mmc/omap_hsmmc.c                           |   37 ++-
 drivers/power/Makefile                             |    1 +
 drivers/power/twl6035.c                            |   68 +++
 include/configs/omap5_evm.h                        |   28 +-
 include/twl6035.h                                  |   42 ++
 28 files changed, 1240 insertions(+), 661 deletions(-)
 rename arch/arm/cpu/armv7/omap5/{sdram_elpida.c => sdram.c} (64%)
 create mode 100644 drivers/power/twl6035.c
 create mode 100644 include/twl6035.h

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

end of thread, other threads:[~2012-02-21 15:20 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-17 12:05 [U-Boot] [PATCH 00/17] OMAP5: Add the Changes required for OMAP5 ES1.0 silicon R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 01/17] OMAP5: clocks: Change clock settings as required for " R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 02/17] OMAP5: board: Add pinmux data for omap5_evm board R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 03/17] omap5: io: Configure the io settings for omap5430 sevm board R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 04/17] OMAP5: emif/ddr: Change emif settings as required for ES1.0 silicon R Sricharan
2012-02-20 17:36   ` Tom Rini
2012-02-21  7:53     ` R, Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 05/17] OMAP5: palmas: Configure nominal opp vdd values R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 06/17] OMAP5: hwinit: Add the missing break statement R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 07/17] OMAP4/5: Make the silicon revision variable common R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 08/17] OMAP5: SRAM: Change the SRAM base address R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 09/17] OMAP4/5: Make the sysctrl structure common R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 10/17] OMAP4/5: device: Add support to get the device type R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 11/17] OMAP5: defconfig: Align the defconfig for 5430 ES1.0 R Sricharan
2012-02-20 17:45   ` Tom Rini
2012-02-21  7:46     ` R, Sricharan
2012-02-21 14:49       ` Tom Rini
2012-02-21 15:20         ` R, Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 12/17] OMAP5: ddr: Change the ddr device name R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 13/17] OMAP4/5: emif: Correct the emif power mgt shadow register bit fields R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 14/17] arm: omap5: correct boot device mode7 for eMMC R Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 15/17] power: twl6035: add palmas PMIC support R Sricharan
2012-02-20 17:49   ` Tom Rini
2012-02-21 10:58     ` R, Sricharan
2012-02-17 12:05 ` [U-Boot] [PATCH 16/17] omap5: pbias ldo9 turn on R Sricharan
2012-02-20 17:52   ` Tom Rini
2012-02-17 12:05 ` [U-Boot] [PATCH 17/17] mmc: omap5evm: Add eMMC saveenv support R Sricharan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox