aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci/board-da830-evm.c
diff options
context:
space:
mode:
authorSteve Chen <schen@mvista.com>2009-09-15 21:15:06 -0400
committerKevin Hilman <khilman@deeprootsystems.com>2009-11-25 13:21:23 -0500
commit13e1f0440e7892fa7041fc855d8eeffc5d6aa21a (patch)
tree97c43b662efb158fdcfcf684822402c29131d375 /arch/arm/mach-davinci/board-da830-evm.c
parentb9e6342b2b796c2f7fdc98cefd17df16892b035e (diff)
davinci: Add LCD Graphics support for DA830/OMAP-L137 EVM
Add graphics support for the Sharp LCD035Q3DG01 graphical LCD that's on the User Interface (UI) daughter card of the DA830/OMAP-L137 EVM. The LCD shares EMIFA lines with the NAND and NOR devices that are also on the UI card so those lines are shared via a couple of muxes. The muxes are controlled by the 'MUX_MODE' line on the UI card. The 'MUX_MODE' line is controlled by pin P6 of a pcf8574 i2c expander that's at i2c address 0x3f on UI card. The i2c expander is controlled using the gpio infrastructure from the board code using the 'setup()' and 'teardown()' routines. Signed-off-by: Steve Chen <schen@mvista.com> Signed-off-by: Mark A. Greer <mgreer@mvista.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/board-da830-evm.c')
-rw-r--r--arch/arm/mach-davinci/board-da830-evm.c44
1 files changed, 43 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/board-da830-evm.c b/arch/arm/mach-davinci/board-da830-evm.c
index fe86afa7ea2e..fb941eb1f4da 100644
--- a/arch/arm/mach-davinci/board-da830-evm.c
+++ b/arch/arm/mach-davinci/board-da830-evm.c
@@ -13,7 +13,9 @@
13#include <linux/module.h> 13#include <linux/module.h>
14#include <linux/init.h> 14#include <linux/init.h>
15#include <linux/console.h> 15#include <linux/console.h>
16#include <linux/gpio.h>
16#include <linux/i2c.h> 17#include <linux/i2c.h>
18#include <linux/i2c/pcf857x.h>
17#include <linux/i2c/at24.h> 19#include <linux/i2c/at24.h>
18 20
19#include <asm/mach-types.h> 21#include <asm/mach-types.h>
@@ -38,6 +40,31 @@ static struct at24_platform_data da830_evm_i2c_eeprom_info = {
38 .context = (void *)0x7f00, 40 .context = (void *)0x7f00,
39}; 41};
40 42
43static int da830_evm_ui_expander_setup(struct i2c_client *client, int gpio,
44 unsigned ngpio, void *context)
45{
46 gpio_request(gpio + 6, "MUX_MODE");
47#ifdef CONFIG_DA830_UI_LCD
48 gpio_direction_output(gpio + 6, 0);
49#else /* Must be NAND or NOR */
50 gpio_direction_output(gpio + 6, 1);
51#endif
52 return 0;
53}
54
55static int da830_evm_ui_expander_teardown(struct i2c_client *client, int gpio,
56 unsigned ngpio, void *context)
57{
58 gpio_free(gpio + 6);
59 return 0;
60}
61
62static struct pcf857x_platform_data da830_evm_ui_expander_info = {
63 .gpio_base = DAVINCI_N_GPIO,
64 .setup = da830_evm_ui_expander_setup,
65 .teardown = da830_evm_ui_expander_teardown,
66};
67
41static struct i2c_board_info __initdata da830_evm_i2c_devices[] = { 68static struct i2c_board_info __initdata da830_evm_i2c_devices[] = {
42 { 69 {
43 I2C_BOARD_INFO("24c256", 0x50), 70 I2C_BOARD_INFO("24c256", 0x50),
@@ -45,7 +72,11 @@ static struct i2c_board_info __initdata da830_evm_i2c_devices[] = {
45 }, 72 },
46 { 73 {
47 I2C_BOARD_INFO("tlv320aic3x", 0x18), 74 I2C_BOARD_INFO("tlv320aic3x", 0x18),
48 } 75 },
76 {
77 I2C_BOARD_INFO("pcf8574", 0x3f),
78 .platform_data = &da830_evm_ui_expander_info,
79 },
49}; 80};
50 81
51static struct davinci_i2c_platform_data da830_evm_i2c_0_pdata = { 82static struct davinci_i2c_platform_data da830_evm_i2c_0_pdata = {
@@ -186,6 +217,17 @@ static __init void da830_evm_init(void)
186 da8xx_register_mcasp(1, &da830_evm_snd_data); 217 da8xx_register_mcasp(1, &da830_evm_snd_data);
187 218
188 da830_evm_init_mmc(); 219 da830_evm_init_mmc();
220
221#ifdef CONFIG_DA830_UI_LCD
222 ret = da8xx_pinmux_setup(da830_lcdcntl_pins);
223 if (ret)
224 pr_warning("da830_evm_init: lcdcntl mux setup failed: %d\n",
225 ret);
226
227 ret = da8xx_register_lcdc(&sharp_lcd035q3dg01_pdata);
228 if (ret)
229 pr_warning("da830_evm_init: lcd setup failed: %d\n", ret);
230#endif
189} 231}
190 232
191#ifdef CONFIG_SERIAL_8250_CONSOLE 233#ifdef CONFIG_SERIAL_8250_CONSOLE