public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [u-boot PATCH v4 00/10] am57xx-idk LCD and am571x-idk 6 port ethernet pinmux
@ 2017-03-13 13:04 Roger Quadros
  2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 01/10] ARM: OMAP5+: GPIO: Add GPIO_TO_PIN() macro Roger Quadros
                   ` (10 more replies)
  0 siblings, 11 replies; 31+ messages in thread
From: Roger Quadros @ 2017-03-13 13:04 UTC (permalink / raw)
  To: u-boot

Hi,

This series contains

- Support am571x-idk LCD vs 6 port ethernet pinmux configuration.
- AM57xx-idk LCD detection support.
- K2G: pick up PRUSS ethernet MAC addresses from board EEPROM.

Build tests:
https://travis-ci.org/rogerq/u-boot/builds/210547470

Changelog:
v4:
- added patch 10 to prevent overrding ethernet address environment
- rebased to todays master

v3:
- moved EEPROM options to board/ti/common/Kconfig.
- Don't explicitly set EEPROM CONFIG addresses in defconfig
if board is using the default addresses.

v2:
- avoid using __maybe_unused.
- moved EEPROM address configuration to Kconfig.
- LCD detection patch no longer update device tree.

cheers,
-roger

Franklin S Cooper Jr (1):
  ti_armv7_keystone2: Define scratch space in SRAM

Lokesh Vutla (1):
  ti: common: board_detect: Rename EEPROM scratch start macro

Nishanth Menon (1):
  board: ti: am57xx-idk: Auto detect LCD Panel

Roger Quadros (7):
  ARM: OMAP5+: GPIO: Add GPIO_TO_PIN() macro
  ti: common: board_detect: commodify ethaddr environment setting code
  board: ti: am571x-idk: Support 6 port Ethernet or 4 port Ethernet with
    LCD
  board: ti: am571x-idk: Update pinmux for ICSS2 Ethernet
  ARM: Use Kconfig for board EEPROM's I2C bus and chip address
  ARM: k2g: setup PRU ethernet MAC addresses
  net: don't override ethernet address environment

 arch/arm/include/asm/arch-omap5/gpio.h |   4 +
 arch/arm/include/asm/omap_common.h     |   8 +-
 arch/arm/mach-keystone/Kconfig         |   2 +
 board/ti/am57xx/board.c                | 102 ++++++++++++++++++++
 board/ti/am57xx/mux_data.h             | 166 ++++++++++++++++++++-------------
 board/ti/common/Kconfig                |  20 +++-
 board/ti/common/board_detect.c         |  57 +++++++++++
 board/ti/common/board_detect.h         |  14 ++-
 board/ti/ks2_evm/Kconfig               |   2 +
 board/ti/ks2_evm/board_k2g.c           |  19 ++++
 include/configs/am57xx_evm.h           |   4 -
 include/configs/dra7xx_evm.h           |   4 -
 include/configs/ti_armv7_keystone2.h   |   7 ++
 net/eth_common.c                       |   3 +
 14 files changed, 331 insertions(+), 81 deletions(-)

-- 
2.7.4

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

end of thread, other threads:[~2017-03-21 18:09 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-13 13:04 [U-Boot] [u-boot PATCH v4 00/10] am57xx-idk LCD and am571x-idk 6 port ethernet pinmux Roger Quadros
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 01/10] ARM: OMAP5+: GPIO: Add GPIO_TO_PIN() macro Roger Quadros
2017-03-21 18:08   ` [U-Boot] [U-Boot, u-boot, v4, " Tom Rini
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 02/10] ti: common: board_detect: Rename EEPROM scratch start macro Roger Quadros
2017-03-21 18:08   ` [U-Boot] [U-Boot, u-boot, v4, " Tom Rini
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 03/10] ti_armv7_keystone2: Define scratch space in SRAM Roger Quadros
2017-03-17 14:08   ` Tom Rini
2017-03-21 18:08   ` [U-Boot] [U-Boot, u-boot, v4, " Tom Rini
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 04/10] ti: common: board_detect: commodify ethaddr environment setting code Roger Quadros
2017-03-13 13:15   ` Felipe Balbi
2017-03-14 10:52     ` Roger Quadros
2017-03-14 13:04   ` [U-Boot] [u-boot PATCH v5 " Roger Quadros
2017-03-14 15:54     ` Felipe Balbi
2017-03-15 13:53       ` Roger Quadros
2017-03-15 14:46         ` Felipe Balbi
2017-03-15 15:04           ` Roger Quadros
2017-03-21 18:08     ` [U-Boot] [U-Boot, u-boot, v5, " Tom Rini
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 05/10] board: ti: am571x-idk: Support 6 port Ethernet or 4 port Ethernet with LCD Roger Quadros
2017-03-21 18:08   ` [U-Boot] [U-Boot, u-boot, v4, " Tom Rini
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 06/10] board: ti: am571x-idk: Update pinmux for ICSS2 Ethernet Roger Quadros
2017-03-21 18:08   ` [U-Boot] [U-Boot, u-boot, v4, " Tom Rini
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 07/10] board: ti: am57xx-idk: Auto detect LCD Panel Roger Quadros
2017-03-21 18:08   ` [U-Boot] [U-Boot, u-boot, v4, " Tom Rini
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 08/10] ARM: Use Kconfig for board EEPROM's I2C bus and chip address Roger Quadros
2017-03-21 18:09   ` [U-Boot] [U-Boot, u-boot, v4, " Tom Rini
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 09/10] ARM: k2g: setup PRU ethernet MAC addresses Roger Quadros
2017-03-21 18:09   ` [U-Boot] [U-Boot, u-boot, v4, " Tom Rini
2017-03-13 13:04 ` [U-Boot] [u-boot PATCH v4 10/10] net: don't override ethernet address environment Roger Quadros
2017-03-17 14:08   ` Tom Rini
2017-03-21 18:09   ` [U-Boot] [U-Boot, u-boot, v4, " Tom Rini
2017-03-17 14:08 ` [U-Boot] [u-boot PATCH v4 00/10] am57xx-idk LCD and am571x-idk 6 port ethernet pinmux Tom Rini

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