All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/10 V6] EXYNOS5420: Add SMDK5420 board support
@ 2013-10-29  7:23 Rajeshwari S Shinde
  2013-10-29  7:23 ` [U-Boot] [PATCH 01/10 V6] EXYNOS5: Create a common board file Rajeshwari S Shinde
                   ` (10 more replies)
  0 siblings, 11 replies; 37+ messages in thread
From: Rajeshwari S Shinde @ 2013-10-29  7:23 UTC (permalink / raw)
  To: u-boot

This patch adds basic board support for SMDK5420 board.
These patches are tested for booting fine on EVT1 SMDK5420.

Changes in V2:
	- Corrected a compilation issue for SMDK5420.

Changes in V3:
	- Add patch to support variable size SPL support
	- Add patch to disable SMU for eMMC.

Changes in V4:
	- Added check for MAX77686 pmic compilation.
	- Added correct calculation of gpio based addresses.
	- Rebased on the latest u-boot code.
	- Removed patches for UART and TZPC changes as
	they were not needed.
	- Added flag to disable SMU for eMMC.

Changes in V5:
	- Moved functions board_mmc_init and board_eth_init 
	to common/board.c in case of device tree support.

Changes in V6:
	- Rebased on the latest mainline branch.
	- Moved the definitions for SMU to arch/arm dwmmc.h

Rajeshwari S Shinde (10):
  EXYNOS5: Create a common board file
  Exynos5420: Add base addresses for 5420
  Exynos5420: Add clock initialization for 5420
  Exynos5420: Add DDR3 initialization for 5420
  Exynos5420: Add support for 5420 in pinmux and gpio
  Exynos5420: Add base patch for SMDK5420
  DTS: Add dts support for SMDK5420
  Config: Add initial config for SMDK5420
  SPL: EXYNOS: Prepare for variable size SPL support
  DWMMC: SMDK5420: Disable SMU for eMMC

 arch/arm/cpu/armv7/exynos/clock.c              | 270 ++++++++-
 arch/arm/cpu/armv7/exynos/clock_init.h         |  17 +
 arch/arm/cpu/armv7/exynos/clock_init_exynos5.c | 352 +++++++++++-
 arch/arm/cpu/armv7/exynos/dmc_common.c         |  10 +-
 arch/arm/cpu/armv7/exynos/dmc_init_ddr3.c      | 421 +++++++++++++-
 arch/arm/cpu/armv7/exynos/exynos5_setup.h      | 740 +++++++++++++++++++------
 arch/arm/cpu/armv7/exynos/pinmux.c             | 241 +++++++-
 arch/arm/dts/exynos5.dtsi                      | 211 +++++++
 arch/arm/dts/exynos5250.dtsi                   | 178 +-----
 arch/arm/dts/exynos5420.dtsi                   |  74 +++
 arch/arm/include/asm/arch-exynos/board.h       |  17 +
 arch/arm/include/asm/arch-exynos/clk.h         |   1 +
 arch/arm/include/asm/arch-exynos/clock.h       | 494 +++++++++++++++++
 arch/arm/include/asm/arch-exynos/cpu.h         |  53 +-
 arch/arm/include/asm/arch-exynos/dmc.h         | 121 ++--
 arch/arm/include/asm/arch-exynos/dwmmc.h       |  13 +
 arch/arm/include/asm/arch-exynos/gpio.h        | 143 ++++-
 arch/arm/include/asm/arch-exynos/periph.h      |   3 +
 board/samsung/common/Makefile                  |   4 +
 board/samsung/common/board.c                   | 407 ++++++++++++++
 board/samsung/dts/exynos5420-smdk5420.dts      | 172 ++++++
 board/samsung/smdk5250/exynos5-dt.c            | 361 +-----------
 board/samsung/smdk5250/smdk5250.c              | 182 +-----
 board/samsung/smdk5420/Makefile                |  34 ++
 board/samsung/smdk5420/smdk5420.c              | 159 ++++++
 board/samsung/smdk5420/smdk5420_spl.c          |  52 ++
 boards.cfg                                     |   1 +
 drivers/mmc/dw_mmc.c                           |  11 +
 drivers/mmc/exynos_dw_mmc.c                    |   3 +
 include/configs/exynos5-dt.h                   | 302 ++++++++++
 include/configs/exynos5250-dt.h                | 317 +----------
 include/configs/smdk5420.h                     |  56 ++
 include/dwmmc.h                                |   3 +
 spl/Makefile                                   |   7 +-
 tools/Makefile                                 |   2 +
 tools/mkexynosspl.c                            | 167 ++++--
 36 files changed, 4271 insertions(+), 1328 deletions(-)
 create mode 100644 arch/arm/dts/exynos5.dtsi
 create mode 100644 arch/arm/dts/exynos5420.dtsi
 create mode 100644 arch/arm/include/asm/arch-exynos/board.h
 create mode 100644 board/samsung/common/board.c
 create mode 100644 board/samsung/dts/exynos5420-smdk5420.dts
 create mode 100644 board/samsung/smdk5420/Makefile
 create mode 100644 board/samsung/smdk5420/smdk5420.c
 create mode 100644 board/samsung/smdk5420/smdk5420_spl.c
 create mode 100644 include/configs/exynos5-dt.h
 create mode 100644 include/configs/smdk5420.h

-- 
1.7.12.4

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

end of thread, other threads:[~2013-11-15  2:32 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-29  7:23 [U-Boot] [PATCH 00/10 V6] EXYNOS5420: Add SMDK5420 board support Rajeshwari S Shinde
2013-10-29  7:23 ` [U-Boot] [PATCH 01/10 V6] EXYNOS5: Create a common board file Rajeshwari S Shinde
2013-11-08  8:13   ` Przemyslaw Marczak
2013-11-08  8:37     ` Rajeshwari Birje
2013-11-08  9:03       ` Przemyslaw Marczak
2013-11-08  9:27         ` Rajeshwari Birje
2013-11-08  9:46           ` Przemyslaw Marczak
2013-11-08  9:52             ` Rajeshwari Birje
2013-10-29  7:23 ` [U-Boot] [PATCH 02/10 V6] Exynos5420: Add base addresses for 5420 Rajeshwari S Shinde
2013-11-13  3:20   ` Minkyu Kang
2013-10-29  7:23 ` [U-Boot] [PATCH 03/10 V6] Exynos5420: Add clock initialization " Rajeshwari S Shinde
2013-11-13  2:45   ` Minkyu Kang
2013-11-13 11:17     ` Rajeshwari Birje
2013-11-14  1:56       ` Minkyu Kang
2013-10-29  7:23 ` [U-Boot] [PATCH 04/10 V6] Exynos5420: Add DDR3 " Rajeshwari S Shinde
2013-11-13  3:24   ` Minkyu Kang
2013-10-29  7:23 ` [U-Boot] [PATCH 05/10 V6] Exynos5420: Add support for 5420 in pinmux and gpio Rajeshwari S Shinde
2013-11-13  3:01   ` Minkyu Kang
2013-11-13  6:04     ` Rajeshwari Birje
2013-11-13  6:08       ` Rajeshwari Birje
2013-11-14  2:46       ` Minkyu Kang
2013-10-29  7:23 ` [U-Boot] [PATCH 06/10 V6] Exynos5420: Add base patch for SMDK5420 Rajeshwari S Shinde
2013-11-13  3:09   ` Minkyu Kang
2013-10-29  7:23 ` [U-Boot] [PATCH 07/10 V6] DTS: Add dts support " Rajeshwari S Shinde
2013-11-13  3:17   ` Minkyu Kang
2013-11-13  4:26     ` Rajeshwari Birje
2013-11-14  2:01       ` Minkyu Kang
2013-11-15  2:32         ` Rajeshwari Birje
2013-10-29  7:23 ` [U-Boot] [PATCH 08/10 V6] Config: Add initial config " Rajeshwari S Shinde
2013-11-13  3:31   ` Minkyu Kang
2013-10-29  7:23 ` [U-Boot] [PATCH 09/10 V6] SPL: EXYNOS: Prepare for variable size SPL support Rajeshwari S Shinde
2013-10-29  7:23 ` [U-Boot] [PATCH 10/10 V6] DWMMC: SMDK5420: Disable SMU for eMMC Rajeshwari S Shinde
2013-10-29 10:24   ` Jaehoon Chung
2013-10-31  7:50   ` Pantelis Antoniou
2013-10-31  8:42 ` [U-Boot] [PATCH 00/10 V6] EXYNOS5420: Add SMDK5420 board support Rajeshwari Birje
2013-11-06 11:42   ` Rajeshwari Birje
2013-11-07  1:32     ` Minkyu Kang

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.