1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 10:22:48 +02:00

[xbboot] init GPIO_LCD_CS for zImage kernel

This commit is contained in:
Xiangfu Liu 2010-04-15 18:08:48 +08:00
parent e7cf9e2297
commit f348f4f104

View File

@ -62,6 +62,10 @@ void gpio_init()
__gpio_as_uart0(); __gpio_as_uart0();
__gpio_as_lcd_18bit(); __gpio_as_lcd_18bit();
__gpio_as_msc(); __gpio_as_msc();
#define GPIO_LCD_CS (2 * 32 + 21)
__gpio_as_output(GPIO_LCD_CS);
__gpio_clear_pin(GPIO_LCD_CS);
} }
void pll_init() void pll_init()