diff options
| author | Tom Rini <trini@ti.com> | 2013-09-09 09:59:30 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-09-09 09:59:30 -0400 | 
| commit | 985a71d15b8bd9cfbeae1ac1b08a5319abfd246c (patch) | |
| tree | cd1e98465bfa7cb8c58324e568ab622e1d126b0d | |
| parent | 89993dc34afeeca4dad84e3c2db7403c406ccb78 (diff) | |
| parent | 9055f66c2dfb637d0f30372a7e79cca854e45bae (diff) | |
| download | olio-uboot-2014.01-985a71d15b8bd9cfbeae1ac1b08a5319abfd246c.tar.xz olio-uboot-2014.01-985a71d15b8bd9cfbeae1ac1b08a5319abfd246c.zip | |
Merge branch 'master' of git://www.denx.de/git/u-boot-ppc4xx
| -rw-r--r-- | board/lwmon5/lwmon5.c | 3 | ||||
| -rw-r--r-- | include/configs/lwmon5.h | 10 | 
2 files changed, 12 insertions, 1 deletions
| diff --git a/board/lwmon5/lwmon5.c b/board/lwmon5/lwmon5.c index 4e4a5944d..e9aa0b77d 100644 --- a/board/lwmon5/lwmon5.c +++ b/board/lwmon5/lwmon5.c @@ -527,6 +527,9 @@ void spl_board_init(void)  	 */  	board_early_init_f(); +	/* enable the LSB transmitter */ +	gpio_write_bit(CONFIG_SYS_GPIO_LSB_ENABLE, 1); +  	/*  	 * Clear resets  	 */ diff --git a/include/configs/lwmon5.h b/include/configs/lwmon5.h index 8f5eb956a..96f3ba5a1 100644 --- a/include/configs/lwmon5.h +++ b/include/configs/lwmon5.h @@ -565,6 +565,7 @@  #define CONFIG_SYS_GPIO_PHY1_RST	12  #define CONFIG_SYS_GPIO_FLASH_WP	14  #define CONFIG_SYS_GPIO_PHY0_RST	22 +#define CONFIG_SYS_GPIO_PERM_VOLT_FEED	49  #define CONFIG_SYS_GPIO_DSPIC_READY	51  #define CONFIG_SYS_GPIO_CAN_ENABLE	53  #define CONFIG_SYS_GPIO_LSB_ENABLE	54 @@ -577,6 +578,13 @@  #define CONFIG_SYS_GPIO_SYSMON_STATUS	62  #define CONFIG_SYS_GPIO_WATCHDOG	63 +/* On LCD4, GPIO49 has to be configured to 0 instead of 1 */ +#ifdef CONFIG_LCD4_LWMON5 +#define GPIO49_VAL	0 +#else +#define GPIO49_VAL	1 +#endif +  /*   * PPC440 GPIO Configuration   */ @@ -635,7 +643,7 @@  {GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO46 UIC_IRQ(7)	DMA_REQ(0)	*/	\  {GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO47 UIC_IRQ(8)	DMA_ACK(0)	*/	\  {GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO48 UIC_IRQ(9)	DMA_EOT/TC(0)	*/	\ -{GPIO1_BASE, GPIO_OUT, GPIO_SEL , GPIO_OUT_1}, /* GPIO49  Unselect via TraceSelect Bit	*/	\ +{GPIO1_BASE, GPIO_OUT, GPIO_SEL , GPIO49_VAL}, /* GPIO49  Unselect via TraceSelect Bit	*/	\  {GPIO1_BASE, GPIO_IN,  GPIO_SEL , GPIO_OUT_0}, /* GPIO50  Unselect via TraceSelect Bit	*/	\  {GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO51  Unselect via TraceSelect Bit	*/	\  {GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO52  Unselect via TraceSelect Bit	*/	\ |