board-nokia770.c 6.3 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * linux/arch/arm/mach-omap1/board-nokia770.c
 *
 * Modified from board-generic.c
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
10
#include <linux/gpio.h>
11 12
#include <linux/kernel.h>
#include <linux/init.h>
13
#include <linux/mutex.h>
14 15 16
#include <linux/platform_device.h>
#include <linux/input.h>
#include <linux/clk.h>
T
Tomi Valkeinen 已提交
17
#include <linux/omapfb.h>
18 19 20

#include <linux/spi/spi.h>
#include <linux/spi/ads7846.h>
21 22
#include <linux/workqueue.h>
#include <linux/delay.h>
23 24 25 26 27

#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>

28 29 30 31 32 33 34
#include <plat/mux.h>
#include <plat/usb.h>
#include <plat/board.h>
#include <plat/keypad.h>
#include <plat/lcd_mipid.h>
#include <plat/mmc.h>
#include <plat/clock.h>
35

36 37 38 39
#include <mach/hardware.h>

#include "common.h"

40 41
#define ADS7846_PENDOWN_GPIO	15

42 43 44 45
static const unsigned int nokia770_keymap[] = {
	KEY(1, 0, GROUP_0 | KEY_UP),
	KEY(2, 0, GROUP_1 | KEY_F5),
	KEY(0, 1, GROUP_0 | KEY_LEFT),
46
	KEY(1, 1, GROUP_0 | KEY_ENTER),
47 48 49
	KEY(2, 1, GROUP_0 | KEY_RIGHT),
	KEY(0, 2, GROUP_1 | KEY_ESC),
	KEY(1, 2, GROUP_0 | KEY_DOWN),
50
	KEY(2, 2, GROUP_1 | KEY_F4),
51 52 53
	KEY(0, 3, GROUP_2 | KEY_F7),
	KEY(1, 3, GROUP_2 | KEY_F8),
	KEY(2, 3, GROUP_2 | KEY_F6),
54 55 56 57 58 59 60 61 62 63
};

static struct resource nokia770_kp_resources[] = {
	[0] = {
		.start	= INT_KEYBOARD,
		.end	= INT_KEYBOARD,
		.flags	= IORESOURCE_IRQ,
	},
};

64 65 66 67 68
static const struct matrix_keymap_data nokia770_keymap_data = {
	.keymap		= nokia770_keymap,
	.keymap_size	= ARRAY_SIZE(nokia770_keymap),
};

69
static struct omap_kp_platform_data nokia770_kp_data = {
70 71
	.rows		= 8,
	.cols		= 8,
72
	.keymap_data	= &nokia770_keymap_data,
73
	.delay		= 4,
74 75 76 77 78 79 80 81 82 83 84 85 86
};

static struct platform_device nokia770_kp_device = {
	.name		= "omap-keypad",
	.id		= -1,
	.dev		= {
		.platform_data = &nokia770_kp_data,
	},
	.num_resources	= ARRAY_SIZE(nokia770_kp_resources),
	.resource	= nokia770_kp_resources,
};

static struct platform_device *nokia770_devices[] __initdata = {
87
	&nokia770_kp_device,
88 89
};

90 91 92 93
static void mipid_shutdown(struct mipid_platform_data *pdata)
{
	if (pdata->nreset_gpio != -1) {
		printk(KERN_INFO "shutdown LCD\n");
94
		gpio_set_value(pdata->nreset_gpio, 0);
95 96 97 98 99 100 101 102
		msleep(120);
	}
}

static struct mipid_platform_data nokia770_mipid_platform_data = {
	.shutdown = mipid_shutdown,
};

103 104 105 106
static struct omap_lcd_config nokia770_lcd_config __initdata = {
	.ctrl_name	= "hwa742",
};

107
static void __init mipid_dev_init(void)
108
{
109 110
	nokia770_mipid_platform_data.nreset_gpio = 13;
	nokia770_mipid_platform_data.data_lines = 16;
111

112
	omapfb_set_lcd_config(&nokia770_lcd_config);
113 114
}

115
static void __init ads7846_dev_init(void)
116
{
117
	if (gpio_request(ADS7846_PENDOWN_GPIO, "ADS7846 pendown") < 0)
118 119 120 121 122
		printk(KERN_ERR "can't get ads7846 pen down GPIO\n");
}

static int ads7846_get_pendown_state(void)
{
123
	return !gpio_get_value(ADS7846_PENDOWN_GPIO);
124 125
}

126 127 128 129 130 131 132
static struct ads7846_platform_data nokia770_ads7846_platform_data __initdata = {
	.x_max		= 0x0fff,
	.y_max		= 0x0fff,
	.x_plate_ohms	= 180,
	.pressure_max	= 255,
	.debounce_max	= 10,
	.debounce_tol	= 3,
133 134
	.debounce_rep	= 1,
	.get_pendown_state	= ads7846_get_pendown_state,
135 136 137 138
};

static struct spi_board_info nokia770_spi_board_info[] __initdata = {
	[0] = {
139
		.modalias       = "lcd_mipid",
140 141 142
		.bus_num        = 2,
		.chip_select    = 3,
		.max_speed_hz   = 12000000,
143
		.platform_data	= &nokia770_mipid_platform_data,
144 145 146 147 148 149 150 151 152 153
	},
	[1] = {
		.modalias       = "ads7846",
		.bus_num        = 2,
		.chip_select    = 0,
		.max_speed_hz   = 2500000,
		.platform_data	= &nokia770_ads7846_platform_data,
	},
};

154
static void __init hwa742_dev_init(void)
155 156 157
{
	clk_add_alias("hwa_sys_ck", NULL, "bclk", NULL);
}
158 159 160 161 162 163 164 165 166 167 168

/* assume no Mini-AB port */

static struct omap_usb_config nokia770_usb_config __initdata = {
	.otg		= 1,
	.register_host	= 1,
	.register_dev	= 1,
	.hmc_mode	= 16,
	.pins[0]	= 6,
};

169 170 171 172 173 174 175 176
#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)

#define NOKIA770_GPIO_MMC_POWER		41
#define NOKIA770_GPIO_MMC_SWITCH	23

static int nokia770_mmc_set_power(struct device *dev, int slot, int power_on,
				int vdd)
{
177
	gpio_set_value(NOKIA770_GPIO_MMC_POWER, power_on);
178 179 180 181 182 183 184 185 186 187 188
	return 0;
}

static int nokia770_mmc_get_cover_state(struct device *dev, int slot)
{
	return gpio_get_value(NOKIA770_GPIO_MMC_SWITCH);
}

static struct omap_mmc_platform_data nokia770_mmc2_data = {
	.nr_slots                       = 1,
	.dma_mask			= 0xffffffff,
A
Andrew de Quincey 已提交
189
	.max_freq                       = 12000000,
190 191 192
	.slots[0]       = {
		.set_power		= nokia770_mmc_set_power,
		.get_cover_state	= nokia770_mmc_get_cover_state,
A
Andrew de Quincey 已提交
193
		.ocr_mask               = MMC_VDD_32_33|MMC_VDD_33_34,
194
		.name                   = "mmcblk",
195 196 197
	},
};

198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
static struct omap_mmc_platform_data *nokia770_mmc_data[OMAP16XX_NR_MMC];

static void __init nokia770_mmc_init(void)
{
	int ret;

	ret = gpio_request(NOKIA770_GPIO_MMC_POWER, "MMC power");
	if (ret < 0)
		return;
	gpio_direction_output(NOKIA770_GPIO_MMC_POWER, 0);

	ret = gpio_request(NOKIA770_GPIO_MMC_SWITCH, "MMC cover");
	if (ret < 0) {
		gpio_free(NOKIA770_GPIO_MMC_POWER);
		return;
	}
	gpio_direction_input(NOKIA770_GPIO_MMC_SWITCH);

	/* Only the second MMC controller is used */
	nokia770_mmc_data[1] = &nokia770_mmc2_data;
	omap1_init_mmc(nokia770_mmc_data, OMAP16XX_NR_MMC);
}

#else
static inline void nokia770_mmc_init(void)
{
}
#endif

227 228
static void __init omap_nokia770_init(void)
{
229 230 231 232 233 234 235 236 237
	/* On Nokia 770, the SleepX signal is masked with an
	 * MPUIO line by default.  It has to be unmasked for it
	 * to become functional */

	/* SleepX mask direction */
	omap_writew((omap_readw(0xfffb5008) & ~2), 0xfffb5008);
	/* Unmask SleepX signal */
	omap_writew((omap_readw(0xfffb5004) & ~2), 0xfffb5004);

238
	platform_add_devices(nokia770_devices, ARRAY_SIZE(nokia770_devices));
239
	nokia770_spi_board_info[1].irq = gpio_to_irq(15);
240 241 242
	spi_register_board_info(nokia770_spi_board_info,
				ARRAY_SIZE(nokia770_spi_board_info));
	omap_serial_init();
243
	omap_register_i2c_bus(1, 100, NULL, 0);
244
	hwa742_dev_init();
245 246
	ads7846_dev_init();
	mipid_dev_init();
247
	omap1_usb_init(&nokia770_usb_config);
248
	nokia770_mmc_init();
249 250 251
}

MACHINE_START(NOKIA770, "Nokia 770")
252
	.atag_offset	= 0x100,
253 254
	.map_io		= omap16xx_map_io,
	.init_early     = omap1_init_early,
255
	.reserve	= omap_reserve,
256
	.init_irq	= omap1_init_irq,
257
	.init_machine	= omap_nokia770_init,
258
	.init_late	= omap1_init_late,
259
	.timer		= &omap1_timer,
260
	.restart	= omap1_restart,
261
MACHINE_END