From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Mon, 31 Oct 2016 12:45:13 -0600 Subject: [U-Boot] [PATCH v1] arm: Add support for PDU001 In-Reply-To: <7902a8d6-215d-ef34-fa50-4492e93be871@ltec.ch> References: <1476871979-20432-1-git-send-email-fb@ltec.ch> <7902a8d6-215d-ef34-fa50-4492e93be871@ltec.ch> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Felix, On 31 October 2016 at 08:54, Felix Brack wrote: > > Hello Simon, > > On 26.10.2016 18:30, Simon Glass wrote: > > Hi Felix, > > > > On 19 October 2016 at 04:12, Felix Brack wrote: > >> This patch adds support for the PDU001 board. > >> > >> Signed-off-by: Felix Brack > >> --- > >> > >> arch/arm/Kconfig | 1 + > >> arch/arm/cpu/armv7/am33xx/Kconfig | 9 ++ > >> board/eets/pdu001/Kconfig | 66 ++++++++++ > >> board/eets/pdu001/MAINTAINERS | 6 + > >> board/eets/pdu001/Makefile | 13 ++ > >> board/eets/pdu001/README | 35 +++++ > >> board/eets/pdu001/board.c | 263 ++++++++++++++++++++++++++++++++++++++ > >> board/eets/pdu001/board.h | 30 +++++ > >> board/eets/pdu001/mux.c | 146 +++++++++++++++++++++ > >> configs/pdu001_defconfig | 33 +++++ > >> include/configs/pdu001.h | 117 +++++++++++++++++ > >> 11 files changed, 719 insertions(+) > >> create mode 100644 board/eets/pdu001/Kconfig > >> create mode 100644 board/eets/pdu001/MAINTAINERS > >> create mode 100644 board/eets/pdu001/Makefile > >> create mode 100644 board/eets/pdu001/README > >> create mode 100644 board/eets/pdu001/board.c > >> create mode 100644 board/eets/pdu001/board.h > >> create mode 100644 board/eets/pdu001/mux.c > >> create mode 100644 configs/pdu001_defconfig > >> create mode 100644 include/configs/pdu001.h [...] > >> + > >> +static struct module_pin_mux uart0_pin_mux[] = { > >> + {OFFSET(uart0_rxd), (MODE(0) | PULLUP_EN | RXACTIVE)}, /* UART0_RXD */ > >> + {OFFSET(uart0_txd), (MODE(0) | PULLUDEN)}, /* UART0_TXD */ > >> + {-1}, > > > > Really this should go in a pinctrl driver. > > > > Agreed. A pinctrl driver for the TI AM335X SOC doesn't exist yet, correct? > I'm not sure, but it seems like we should get one sometime! Regards, Simon