blob: fe65b1e865fbf6416c1e8ccb1710833d67b5fb44 [file] [log] [blame]
Philipp Zabele5c271e2007-11-22 17:59:11 +01001/*
2 * Support for HTC Magician PDA phones:
3 * i-mate JAM, O2 Xda mini, Orange SPV M500, Qtek s100, Qtek s110
4 * and T-Mobile MDA Compact.
5 *
6 * Copyright (c) 2006-2007 Philipp Zabel
7 *
8 * Based on hx4700.c, spitz.c and others.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 */
15
16#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/platform_device.h>
Philipp Zabele07ff8d82008-04-09 19:27:10 +010019#include <linux/delay.h>
Philipp Zabele1811912008-06-22 13:00:55 +010020#include <linux/gpio.h>
Philipp Zabele5c271e2007-11-22 17:59:11 +010021#include <linux/gpio_keys.h>
22#include <linux/input.h>
Philipp Zabel70e357f2008-04-09 19:22:57 +010023#include <linux/mfd/htc-egpio.h>
Philipp Zabel81447b22008-04-12 13:28:02 +010024#include <linux/mfd/htc-pasic3.h>
Philipp Zabele5c271e2007-11-22 17:59:11 +010025#include <linux/mtd/physmap.h>
Philipp Zabel350d1152008-04-09 19:25:56 +010026#include <linux/pda_power.h>
Thierry Redingbd3208b2015-10-05 10:49:46 +020027#include <linux/pwm.h>
Philipp Zabel85847a32008-05-22 14:20:01 +010028#include <linux/pwm_backlight.h>
Heiko Stübner6967cca2012-03-02 13:56:38 +010029#include <linux/regulator/driver.h>
Petr Cveke2f1b8b2015-09-28 23:40:57 +020030#include <linux/regulator/fixed.h>
Heiko Stübner6967cca2012-03-02 13:56:38 +010031#include <linux/regulator/gpio-regulator.h>
Philipp Zabeleb650b92009-01-31 12:13:57 +010032#include <linux/regulator/machine.h>
Philipp Zabel6489c612009-02-01 11:20:30 +010033#include <linux/usb/gpio_vbus.h>
Sebastian Andrzej Siewiorb4593962011-02-23 12:38:16 +010034#include <linux/i2c/pxa-i2c.h>
Philipp Zabele5c271e2007-11-22 17:59:11 +010035
Russell Kinga09e64f2008-08-05 16:14:15 +010036#include <mach/hardware.h>
Philipp Zabele5c271e2007-11-22 17:59:11 +010037#include <asm/mach-types.h>
38#include <asm/mach/arch.h>
David Howells9f97da72012-03-28 18:30:01 +010039#include <asm/system_info.h>
Eric Miao51c62982009-01-02 23:17:22 +080040
41#include <mach/pxa27x.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010042#include <mach/magician.h>
Arnd Bergmann293b2da2012-08-24 15:16:48 +020043#include <linux/platform_data/video-pxafb.h>
44#include <linux/platform_data/mmc-pxamci.h>
45#include <linux/platform_data/irda-pxaficp.h>
46#include <linux/platform_data/usb-ohci-pxa27x.h>
Philipp Zabele5c271e2007-11-22 17:59:11 +010047
Petr Cvekff5eff32015-09-28 23:39:03 +020048#include <linux/regulator/max1586.h>
49
Philipp Zabel85847a32008-05-22 14:20:01 +010050#include "devices.h"
Philipp Zabele5c271e2007-11-22 17:59:11 +010051#include "generic.h"
52
Philipp Zabel7a970102008-06-26 21:03:54 +010053static unsigned long magician_pin_config[] __initdata = {
Philipp Zabelb1682812008-04-12 13:29:22 +010054
55 /* SDRAM and Static Memory I/O Signals */
56 GPIO20_nSDCS_2,
57 GPIO21_nSDCS_3,
58 GPIO15_nCS_1,
Petr Cvekccb6f9a2015-09-28 23:09:52 +020059 GPIO78_nCS_2, /* PASIC3 */
60 GPIO79_nCS_3, /* EGPIO CPLD */
Philipp Zabelb1682812008-04-12 13:29:22 +010061 GPIO80_nCS_4,
62 GPIO33_nCS_5,
63
Petr Cvekf36150b2015-09-28 23:10:18 +020064 /* I2C UDA1380 + OV9640 */
Philipp Zabelb1682812008-04-12 13:29:22 +010065 GPIO117_I2C_SCL,
66 GPIO118_I2C_SDA,
67
Petr Cvekf36150b2015-09-28 23:10:18 +020068 /* PWM 0 - LCD backlight */
Philipp Zabelb1682812008-04-12 13:29:22 +010069 GPIO16_PWM0_OUT,
70
Petr Cvekf36150b2015-09-28 23:10:18 +020071 /* I2S UDA1380 capture */
Philipp Zabelb1682812008-04-12 13:29:22 +010072 GPIO28_I2S_BITCLK_OUT,
73 GPIO29_I2S_SDATA_IN,
74 GPIO31_I2S_SYNC,
75 GPIO113_I2S_SYSCLK,
76
Petr Cvekf36150b2015-09-28 23:10:18 +020077 /* SSP 1 UDA1380 playback */
Philipp Zabel16c3ea42009-01-17 18:45:41 +010078 GPIO23_SSP1_SCLK,
79 GPIO24_SSP1_SFRM,
80 GPIO25_SSP1_TXD,
81
Petr Cvekf36150b2015-09-28 23:10:18 +020082 /* SSP 2 TSC2046 touchscreen */
Philipp Zabelb1682812008-04-12 13:29:22 +010083 GPIO19_SSP2_SCLK,
84 GPIO14_SSP2_SFRM,
85 GPIO89_SSP2_TXD,
86 GPIO88_SSP2_RXD,
87
Petr Cvekf36150b2015-09-28 23:10:18 +020088 /* MMC/SD/SDHC slot */
Philipp Zabelb1682812008-04-12 13:29:22 +010089 GPIO32_MMC_CLK,
90 GPIO92_MMC_DAT_0,
91 GPIO109_MMC_DAT_1,
92 GPIO110_MMC_DAT_2,
93 GPIO111_MMC_DAT_3,
94 GPIO112_MMC_CMD,
95
96 /* LCD */
Eric Miaobedbda92010-01-04 11:37:14 +080097 GPIOxx_LCD_TFT_16BPP,
Philipp Zabelb1682812008-04-12 13:29:22 +010098
Petr Cvekf36150b2015-09-28 23:10:18 +020099 /* QCI camera interface */
Philipp Zabelb1682812008-04-12 13:29:22 +0100100 GPIO12_CIF_DD_7,
101 GPIO17_CIF_DD_6,
102 GPIO50_CIF_DD_3,
103 GPIO51_CIF_DD_2,
104 GPIO52_CIF_DD_4,
105 GPIO53_CIF_MCLK,
106 GPIO54_CIF_PCLK,
107 GPIO55_CIF_DD_1,
108 GPIO81_CIF_DD_0,
109 GPIO82_CIF_DD_5,
110 GPIO84_CIF_FV,
111 GPIO85_CIF_LV,
Philipp Zabel2f131952008-04-20 17:40:11 +0100112
113 /* Magician specific input GPIOs */
114 GPIO9_GPIO, /* unknown */
115 GPIO10_GPIO, /* GSM_IRQ */
116 GPIO13_GPIO, /* CPLD_IRQ */
117 GPIO107_GPIO, /* DS1WM_IRQ */
118 GPIO108_GPIO, /* GSM_READY */
119 GPIO115_GPIO, /* nPEN_IRQ */
Eric Miao6f584cf2008-11-28 16:00:24 +0800120
121 /* I2C */
122 GPIO117_I2C_SCL,
123 GPIO118_I2C_SDA,
Philipp Zabelb1682812008-04-12 13:29:22 +0100124};
125
Philipp Zabele5c271e2007-11-22 17:59:11 +0100126/*
Petr Cvekf36150b2015-09-28 23:10:18 +0200127 * IrDA
Philipp Zabele5c271e2007-11-22 17:59:11 +0100128 */
129
Philipp Zabele5c271e2007-11-22 17:59:11 +0100130static struct pxaficp_platform_data magician_ficp_info = {
Marek Vasutc4bd0172009-07-17 12:50:43 +0200131 .gpio_pwdown = GPIO83_MAGICIAN_nIR_EN,
132 .transceiver_cap = IR_SIRMODE | IR_OFF,
Petr Cvek0f073e32015-09-28 23:34:18 +0200133 .gpio_pwdown_inverted = 0,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100134};
135
136/*
137 * GPIO Keys
138 */
139
Philipp Zabel51c10bb2009-01-17 18:45:44 +0100140#define INIT_KEY(_code, _gpio, _desc) \
141 { \
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200142 .code = KEY_##_code, \
143 .gpio = _gpio, \
144 .desc = _desc, \
145 .type = EV_KEY, \
146 .wakeup = 1, \
Philipp Zabel51c10bb2009-01-17 18:45:44 +0100147 }
148
Philipp Zabele5c271e2007-11-22 17:59:11 +0100149static struct gpio_keys_button magician_button_table[] = {
Philipp Zabel51c10bb2009-01-17 18:45:44 +0100150 INIT_KEY(POWER, GPIO0_MAGICIAN_KEY_POWER, "Power button"),
151 INIT_KEY(ESC, GPIO37_MAGICIAN_KEY_HANGUP, "Hangup button"),
152 INIT_KEY(F10, GPIO38_MAGICIAN_KEY_CONTACTS, "Contacts button"),
153 INIT_KEY(CALENDAR, GPIO90_MAGICIAN_KEY_CALENDAR, "Calendar button"),
154 INIT_KEY(CAMERA, GPIO91_MAGICIAN_KEY_CAMERA, "Camera button"),
155 INIT_KEY(UP, GPIO93_MAGICIAN_KEY_UP, "Up button"),
156 INIT_KEY(DOWN, GPIO94_MAGICIAN_KEY_DOWN, "Down button"),
157 INIT_KEY(LEFT, GPIO95_MAGICIAN_KEY_LEFT, "Left button"),
158 INIT_KEY(RIGHT, GPIO96_MAGICIAN_KEY_RIGHT, "Right button"),
159 INIT_KEY(KPENTER, GPIO97_MAGICIAN_KEY_ENTER, "Action button"),
160 INIT_KEY(RECORD, GPIO98_MAGICIAN_KEY_RECORD, "Record button"),
161 INIT_KEY(VOLUMEUP, GPIO100_MAGICIAN_KEY_VOL_UP, "Volume up"),
162 INIT_KEY(VOLUMEDOWN, GPIO101_MAGICIAN_KEY_VOL_DOWN, "Volume down"),
163 INIT_KEY(PHONE, GPIO102_MAGICIAN_KEY_PHONE, "Phone button"),
164 INIT_KEY(PLAY, GPIO99_MAGICIAN_HEADPHONE_IN, "Headset button"),
Philipp Zabele5c271e2007-11-22 17:59:11 +0100165};
166
167static struct gpio_keys_platform_data gpio_keys_data = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200168 .buttons = magician_button_table,
169 .nbuttons = ARRAY_SIZE(magician_button_table),
Philipp Zabele5c271e2007-11-22 17:59:11 +0100170};
171
172static struct platform_device gpio_keys = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200173 .name = "gpio-keys",
174 .dev = {
Philipp Zabele5c271e2007-11-22 17:59:11 +0100175 .platform_data = &gpio_keys_data,
176 },
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200177 .id = -1,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100178};
179
Philipp Zabel70e357f2008-04-09 19:22:57 +0100180/*
181 * EGPIO (Xilinx CPLD)
182 *
Petr Cvekf36150b2015-09-28 23:10:18 +0200183 * 32-bit aligned 8-bit registers
184 * 16 possible registers (reg windows size), only 7 used:
185 * 3x output, 1x irq, 3x input
Philipp Zabel70e357f2008-04-09 19:22:57 +0100186 */
187
188static struct resource egpio_resources[] = {
189 [0] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200190 .start = PXA_CS3_PHYS,
191 .end = PXA_CS3_PHYS + 0x20 - 1,
192 .flags = IORESOURCE_MEM,
Philipp Zabel70e357f2008-04-09 19:22:57 +0100193 },
194 [1] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200195 .start = PXA_GPIO_TO_IRQ(GPIO13_MAGICIAN_CPLD_IRQ),
196 .end = PXA_GPIO_TO_IRQ(GPIO13_MAGICIAN_CPLD_IRQ),
197 .flags = IORESOURCE_IRQ,
Philipp Zabel70e357f2008-04-09 19:22:57 +0100198 },
199};
200
201static struct htc_egpio_chip egpio_chips[] = {
202 [0] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200203 .reg_start = 0,
204 .gpio_base = MAGICIAN_EGPIO(0, 0),
205 .num_gpios = 24,
206 .direction = HTC_EGPIO_OUTPUT,
Petr Cvekf36150b2015-09-28 23:10:18 +0200207 /*
208 * Depends on modules configuration
209 */
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200210 .initial_values = 0x40, /* EGPIO_MAGICIAN_GSM_RESET */
Philipp Zabel70e357f2008-04-09 19:22:57 +0100211 },
212 [1] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200213 .reg_start = 4,
214 .gpio_base = MAGICIAN_EGPIO(4, 0),
215 .num_gpios = 24,
216 .direction = HTC_EGPIO_INPUT,
Philipp Zabel70e357f2008-04-09 19:22:57 +0100217 },
218};
219
220static struct htc_egpio_platform_data egpio_info = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200221 .reg_width = 8,
222 .bus_width = 32,
223 .irq_base = IRQ_BOARD_START,
224 .num_irqs = 4,
225 .ack_register = 3,
226 .chip = egpio_chips,
227 .num_chips = ARRAY_SIZE(egpio_chips),
Philipp Zabel70e357f2008-04-09 19:22:57 +0100228};
229
230static struct platform_device egpio = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200231 .name = "htc-egpio",
232 .id = -1,
233 .resource = egpio_resources,
234 .num_resources = ARRAY_SIZE(egpio_resources),
Philipp Zabel70e357f2008-04-09 19:22:57 +0100235 .dev = {
236 .platform_data = &egpio_info,
237 },
238};
239
Philipp Zabele5c271e2007-11-22 17:59:11 +0100240/*
Petr Cvekf36150b2015-09-28 23:10:18 +0200241 * PXAFB LCD - Toppoly TD028STEB1 or Samsung LTP280QV
Philipp Zabele5c271e2007-11-22 17:59:11 +0100242 */
243
244static struct pxafb_mode_info toppoly_modes[] = {
245 {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200246 .pixclock = 96153,
247 .bpp = 16,
248 .xres = 240,
249 .yres = 320,
250 .hsync_len = 11,
251 .vsync_len = 3,
252 .left_margin = 19,
253 .upper_margin = 2,
254 .right_margin = 10,
255 .lower_margin = 2,
256 .sync = 0,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100257 },
258};
259
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100260static struct pxafb_mode_info samsung_modes[] = {
261 {
Petr Cveke7b97a42015-09-28 23:32:12 +0200262 .pixclock = 226469,
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200263 .bpp = 16,
264 .xres = 240,
265 .yres = 320,
266 .hsync_len = 8,
267 .vsync_len = 4,
268 .left_margin = 9,
269 .upper_margin = 4,
270 .right_margin = 9,
271 .lower_margin = 4,
272 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100273 },
274};
275
276static void toppoly_lcd_power(int on, struct fb_var_screeninfo *si)
277{
Petr Cvekdedad4d2015-09-28 23:11:11 +0200278 pr_debug("Toppoly LCD power: %s\n", on ? "on" : "off");
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100279
280 if (on) {
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100281 gpio_set_value(EGPIO_MAGICIAN_TOPPOLY_POWER, 1);
Petr Cvek6001ae72015-09-28 23:15:57 +0200282 gpio_set_value(GPIO106_MAGICIAN_LCD_DCDC_NRESET, 1);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100283 udelay(2000);
284 gpio_set_value(EGPIO_MAGICIAN_LCD_POWER, 1);
285 udelay(2000);
286 /* FIXME: enable LCDC here */
287 udelay(2000);
Petr Cvek6001ae72015-09-28 23:15:57 +0200288 gpio_set_value(GPIO104_MAGICIAN_LCD_VOFF_EN, 1);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100289 udelay(2000);
Petr Cvek6001ae72015-09-28 23:15:57 +0200290 gpio_set_value(GPIO105_MAGICIAN_LCD_VON_EN, 1);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100291 } else {
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100292 msleep(15);
Petr Cvek6001ae72015-09-28 23:15:57 +0200293 gpio_set_value(GPIO105_MAGICIAN_LCD_VON_EN, 0);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100294 udelay(500);
Petr Cvek6001ae72015-09-28 23:15:57 +0200295 gpio_set_value(GPIO104_MAGICIAN_LCD_VOFF_EN, 0);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100296 udelay(1000);
Petr Cvek6001ae72015-09-28 23:15:57 +0200297 gpio_set_value(GPIO106_MAGICIAN_LCD_DCDC_NRESET, 0);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100298 gpio_set_value(EGPIO_MAGICIAN_LCD_POWER, 0);
299 }
300}
301
302static void samsung_lcd_power(int on, struct fb_var_screeninfo *si)
303{
Petr Cvekdedad4d2015-09-28 23:11:11 +0200304 pr_debug("Samsung LCD power: %s\n", on ? "on" : "off");
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100305
306 if (on) {
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100307 if (system_rev < 3)
308 gpio_set_value(GPIO75_MAGICIAN_SAMSUNG_POWER, 1);
309 else
310 gpio_set_value(EGPIO_MAGICIAN_LCD_POWER, 1);
Petr Cvekfa5407a2015-09-28 23:16:14 +0200311 mdelay(6);
Petr Cvek6001ae72015-09-28 23:15:57 +0200312 gpio_set_value(GPIO106_MAGICIAN_LCD_DCDC_NRESET, 1);
Petr Cvekfa5407a2015-09-28 23:16:14 +0200313 mdelay(6); /* Avdd -> Voff >5ms */
Petr Cvek6001ae72015-09-28 23:15:57 +0200314 gpio_set_value(GPIO104_MAGICIAN_LCD_VOFF_EN, 1);
Petr Cvekfa5407a2015-09-28 23:16:14 +0200315 mdelay(16); /* Voff -> Von >(5+10)ms */
Petr Cvek6001ae72015-09-28 23:15:57 +0200316 gpio_set_value(GPIO105_MAGICIAN_LCD_VON_EN, 1);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100317 } else {
Petr Cvek6001ae72015-09-28 23:15:57 +0200318 gpio_set_value(GPIO105_MAGICIAN_LCD_VON_EN, 0);
Petr Cvekfa5407a2015-09-28 23:16:14 +0200319 mdelay(16);
Petr Cvek6001ae72015-09-28 23:15:57 +0200320 gpio_set_value(GPIO104_MAGICIAN_LCD_VOFF_EN, 0);
Petr Cvekfa5407a2015-09-28 23:16:14 +0200321 mdelay(6);
Petr Cvek6001ae72015-09-28 23:15:57 +0200322 gpio_set_value(GPIO106_MAGICIAN_LCD_DCDC_NRESET, 0);
Petr Cvekfa5407a2015-09-28 23:16:14 +0200323 mdelay(6);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100324 if (system_rev < 3)
325 gpio_set_value(GPIO75_MAGICIAN_SAMSUNG_POWER, 0);
326 else
327 gpio_set_value(EGPIO_MAGICIAN_LCD_POWER, 0);
328 }
329}
330
Philipp Zabele5c271e2007-11-22 17:59:11 +0100331static struct pxafb_mach_info toppoly_info = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200332 .modes = toppoly_modes,
333 .num_modes = 1,
334 .fixed_modes = 1,
335 .lcd_conn = LCD_COLOR_TFT_16BPP,
336 .pxafb_lcd_power = toppoly_lcd_power,
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100337};
338
339static struct pxafb_mach_info samsung_info = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200340 .modes = samsung_modes,
341 .num_modes = 1,
342 .fixed_modes = 1,
343 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL |
344 LCD_ALTERNATE_MAPPING,
345 .pxafb_lcd_power = samsung_lcd_power,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100346};
347
348/*
349 * Backlight
350 */
351
Thierry Redingbd3208b2015-10-05 10:49:46 +0200352static struct pwm_lookup magician_pwm_lookup[] = {
353 PWM_LOOKUP("pxa27x-pwm.0", 0, "pwm-backlight", NULL, 30923,
354 PWM_POLARITY_NORMAL),
355};
356
Petr Cveke2f1b8b2015-09-28 23:40:57 +0200357 /*
358 * fixed regulator for pwm_backlight
359 */
360
361static struct regulator_consumer_supply pwm_backlight_supply[] = {
362 REGULATOR_SUPPLY("power", "pwm_backlight"),
363};
364
365
Philipp Zabel5db15f82011-04-28 22:21:04 +0200366static struct gpio magician_bl_gpios[] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200367 { EGPIO_MAGICIAN_BL_POWER, GPIOF_DIR_OUT, "Backlight power" },
368 { EGPIO_MAGICIAN_BL_POWER2, GPIOF_DIR_OUT, "Backlight power 2" },
Philipp Zabel5db15f82011-04-28 22:21:04 +0200369};
370
Philipp Zabel85847a32008-05-22 14:20:01 +0100371static int magician_backlight_init(struct device *dev)
Philipp Zabele5c271e2007-11-22 17:59:11 +0100372{
Philipp Zabel5db15f82011-04-28 22:21:04 +0200373 return gpio_request_array(ARRAY_AND_SIZE(magician_bl_gpios));
Philipp Zabel85847a32008-05-22 14:20:01 +0100374}
375
Eric Miao2d51a522010-01-04 11:42:01 +0800376static int magician_backlight_notify(struct device *dev, int brightness)
Philipp Zabel85847a32008-05-22 14:20:01 +0100377{
Petr Cvek539122a2015-09-28 23:40:44 +0200378 pr_debug("Brightness = %i\n", brightness);
Philipp Zabel85847a32008-05-22 14:20:01 +0100379 gpio_set_value(EGPIO_MAGICIAN_BL_POWER, brightness);
380 if (brightness >= 200) {
381 gpio_set_value(EGPIO_MAGICIAN_BL_POWER2, 1);
382 return brightness - 72;
Philipp Zabele5c271e2007-11-22 17:59:11 +0100383 } else {
Philipp Zabel85847a32008-05-22 14:20:01 +0100384 gpio_set_value(EGPIO_MAGICIAN_BL_POWER2, 0);
385 return brightness;
Philipp Zabele5c271e2007-11-22 17:59:11 +0100386 }
387}
388
Philipp Zabel85847a32008-05-22 14:20:01 +0100389static void magician_backlight_exit(struct device *dev)
390{
Philipp Zabel5db15f82011-04-28 22:21:04 +0200391 gpio_free_array(ARRAY_AND_SIZE(magician_bl_gpios));
Philipp Zabel85847a32008-05-22 14:20:01 +0100392}
393
Petr Cvekf36150b2015-09-28 23:10:18 +0200394/*
395 * LCD PWM backlight (main)
396 *
397 * MP1521 frequency should be:
398 * 100-400 Hz = 2 .5*10^6 - 10 *10^6 ns
399 */
400
Philipp Zabel85847a32008-05-22 14:20:01 +0100401static struct platform_pwm_backlight_data backlight_data = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200402 .max_brightness = 272,
403 .dft_brightness = 100,
404 .enable_gpio = -1,
405 .init = magician_backlight_init,
406 .notify = magician_backlight_notify,
407 .exit = magician_backlight_exit,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100408};
409
410static struct platform_device backlight = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200411 .name = "pwm-backlight",
412 .id = -1,
413 .dev = {
414 .parent = &pxa27x_device_pwm0.dev,
415 .platform_data = &backlight_data,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100416 },
Philipp Zabele5c271e2007-11-22 17:59:11 +0100417};
418
Philipp Zabel81447b22008-04-12 13:28:02 +0100419/*
Petr Cvekf36150b2015-09-28 23:10:18 +0200420 * GPIO LEDs, Phone keys backlight, vibra
Philipp Zabel81447b22008-04-12 13:28:02 +0100421 */
422
Russell Kinga55faca2008-09-25 14:35:48 +0100423static struct gpio_led gpio_leds[] = {
Philipp Zabel81447b22008-04-12 13:28:02 +0100424 {
425 .name = "magician::vibra",
426 .default_trigger = "none",
427 .gpio = GPIO22_MAGICIAN_VIBRA_EN,
428 },
429 {
430 .name = "magician::phone_bl",
Philipp Zabel05199ec2009-02-09 17:34:08 +0100431 .default_trigger = "backlight",
Philipp Zabel81447b22008-04-12 13:28:02 +0100432 .gpio = GPIO103_MAGICIAN_LED_KP,
433 },
434};
435
436static struct gpio_led_platform_data gpio_led_info = {
437 .leds = gpio_leds,
438 .num_leds = ARRAY_SIZE(gpio_leds),
439};
440
441static struct platform_device leds_gpio = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200442 .name = "leds-gpio",
443 .id = -1,
444 .dev = {
Philipp Zabel81447b22008-04-12 13:28:02 +0100445 .platform_data = &gpio_led_info,
446 },
447};
448
Petr Cvekf36150b2015-09-28 23:10:18 +0200449/*
450 * PASIC3 LEDs
451 */
452
Philipp Zabel81447b22008-04-12 13:28:02 +0100453static struct pasic3_led pasic3_leds[] = {
454 {
455 .led = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200456 .name = "magician:red",
Philipp Zabel81447b22008-04-12 13:28:02 +0100457 .default_trigger = "ds2760-battery.0-charging",
458 },
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200459 .hw_num = 0,
460 .bit2 = PASIC3_BIT2_LED0,
461 .mask = PASIC3_MASK_LED0,
Philipp Zabel81447b22008-04-12 13:28:02 +0100462 },
463 {
464 .led = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200465 .name = "magician:green",
Philipp Zabel81447b22008-04-12 13:28:02 +0100466 .default_trigger = "ds2760-battery.0-charging-or-full",
467 },
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200468 .hw_num = 1,
469 .bit2 = PASIC3_BIT2_LED1,
470 .mask = PASIC3_MASK_LED1,
Philipp Zabel81447b22008-04-12 13:28:02 +0100471 },
472 {
473 .led = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200474 .name = "magician:blue",
Philipp Zabel81447b22008-04-12 13:28:02 +0100475 .default_trigger = "bluetooth",
476 },
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200477 .hw_num = 2,
478 .bit2 = PASIC3_BIT2_LED2,
479 .mask = PASIC3_MASK_LED2,
Philipp Zabel81447b22008-04-12 13:28:02 +0100480 },
481};
482
Philipp Zabele03e0592008-04-24 18:10:46 +0100483static struct pasic3_leds_machinfo pasic3_leds_info = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200484 .num_leds = ARRAY_SIZE(pasic3_leds),
485 .power_gpio = EGPIO_MAGICIAN_LED_POWER,
486 .leds = pasic3_leds,
Philipp Zabel81447b22008-04-12 13:28:02 +0100487};
488
489/*
490 * PASIC3 with DS1WM
491 */
492
493static struct resource pasic3_resources[] = {
494 [0] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200495 .start = PXA_CS2_PHYS,
Philipp Zabel81447b22008-04-12 13:28:02 +0100496 .end = PXA_CS2_PHYS + 0x1b,
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200497 .flags = IORESOURCE_MEM,
Philipp Zabel81447b22008-04-12 13:28:02 +0100498 },
499 /* No IRQ handler in the PASIC3, DS1WM needs an external IRQ */
500 [1] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200501 .start = PXA_GPIO_TO_IRQ(GPIO107_MAGICIAN_DS1WM_IRQ),
502 .end = PXA_GPIO_TO_IRQ(GPIO107_MAGICIAN_DS1WM_IRQ),
503 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
Philipp Zabel81447b22008-04-12 13:28:02 +0100504 }
505};
506
507static struct pasic3_platform_data pasic3_platform_data = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200508 .led_pdata = &pasic3_leds_info,
509 .clock_rate = 4000000,
Philipp Zabel81447b22008-04-12 13:28:02 +0100510};
511
512static struct platform_device pasic3 = {
513 .name = "pasic3",
514 .id = -1,
515 .num_resources = ARRAY_SIZE(pasic3_resources),
516 .resource = pasic3_resources,
517 .dev = {
518 .platform_data = &pasic3_platform_data,
519 },
520};
Philipp Zabele5c271e2007-11-22 17:59:11 +0100521
522/*
Petr Cvekf36150b2015-09-28 23:10:18 +0200523 * USB device VBus detection
Philipp Zabel6489c612009-02-01 11:20:30 +0100524 */
525
526static struct resource gpio_vbus_resource = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200527 .flags = IORESOURCE_IRQ,
528 .start = IRQ_MAGICIAN_VBUS,
529 .end = IRQ_MAGICIAN_VBUS,
Philipp Zabel6489c612009-02-01 11:20:30 +0100530};
531
532static struct gpio_vbus_mach_info gpio_vbus_info = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200533 .gpio_pullup = GPIO27_MAGICIAN_USBC_PUEN,
Petr Cvekf78b3a12015-09-28 23:32:40 +0200534 .gpio_vbus = EGPIO_MAGICIAN_CABLE_VBUS,
Philipp Zabel6489c612009-02-01 11:20:30 +0100535};
536
537static struct platform_device gpio_vbus = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200538 .name = "gpio-vbus",
539 .id = -1,
540 .num_resources = 1,
541 .resource = &gpio_vbus_resource,
Philipp Zabel6489c612009-02-01 11:20:30 +0100542 .dev = {
543 .platform_data = &gpio_vbus_info,
544 },
545};
546
547/*
Philipp Zabel350d1152008-04-09 19:25:56 +0100548 * External power
549 */
550
Petr Cvekeac2eac2015-09-28 23:33:02 +0200551static int magician_supply_init(struct device *dev)
Philipp Zabelff279202008-05-22 10:14:21 +0100552{
Petr Cvekeac2eac2015-09-28 23:33:02 +0200553 int ret = -1;
554
555 ret = gpio_request(EGPIO_MAGICIAN_CABLE_TYPE, "Cable is AC charger");
556 if (ret) {
557 pr_err("Cannot request AC/USB charger GPIO (%i)\n", ret);
558 goto err_ac;
559 }
560
561 ret = gpio_request(EGPIO_MAGICIAN_CABLE_INSERTED, "Cable inserted");
562 if (ret) {
563 pr_err("Cannot request cable detection GPIO (%i)\n", ret);
564 goto err_usb;
565 }
566
567 return 0;
568
569err_usb:
570 gpio_free(EGPIO_MAGICIAN_CABLE_TYPE);
571err_ac:
572 return ret;
573}
574
575static void magician_set_charge(int flags)
576{
577 if (flags & PDA_POWER_CHARGE_AC) {
578 pr_debug("Charging from AC\n");
579 gpio_set_value(EGPIO_MAGICIAN_NICD_CHARGE, 1);
580 } else if (flags & PDA_POWER_CHARGE_USB) {
581 pr_debug("Charging from USB\n");
582 gpio_set_value(EGPIO_MAGICIAN_NICD_CHARGE, 1);
583 } else {
584 pr_debug("Charging disabled\n");
585 gpio_set_value(EGPIO_MAGICIAN_NICD_CHARGE, 0);
586 }
Philipp Zabelff279202008-05-22 10:14:21 +0100587}
588
Philipp Zabel350d1152008-04-09 19:25:56 +0100589static int magician_is_ac_online(void)
590{
Petr Cvekeac2eac2015-09-28 23:33:02 +0200591 return gpio_get_value(EGPIO_MAGICIAN_CABLE_INSERTED) &&
592 gpio_get_value(EGPIO_MAGICIAN_CABLE_TYPE); /* AC=1 */
Philipp Zabel350d1152008-04-09 19:25:56 +0100593}
594
Petr Cvekeac2eac2015-09-28 23:33:02 +0200595static int magician_is_usb_online(void)
Philipp Zabelff279202008-05-22 10:14:21 +0100596{
Petr Cvekeac2eac2015-09-28 23:33:02 +0200597 return gpio_get_value(EGPIO_MAGICIAN_CABLE_INSERTED) &&
598 (!gpio_get_value(EGPIO_MAGICIAN_CABLE_TYPE)); /* USB=0 */
599}
600
601static void magician_supply_exit(struct device *dev)
602{
603 gpio_free(EGPIO_MAGICIAN_CABLE_INSERTED);
Petr Cvekf78b3a12015-09-28 23:32:40 +0200604 gpio_free(EGPIO_MAGICIAN_CABLE_TYPE);
Philipp Zabelff279202008-05-22 10:14:21 +0100605}
606
Philipp Zabel81447b22008-04-12 13:28:02 +0100607static char *magician_supplicants[] = {
608 "ds2760-battery.0", "backup-battery"
609};
610
Philipp Zabel350d1152008-04-09 19:25:56 +0100611static struct pda_power_pdata power_supply_info = {
Petr Cvekeac2eac2015-09-28 23:33:02 +0200612 .init = magician_supply_init,
613 .exit = magician_supply_exit,
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200614 .is_ac_online = magician_is_ac_online,
Petr Cvekeac2eac2015-09-28 23:33:02 +0200615 .is_usb_online = magician_is_usb_online,
616 .set_charge = magician_set_charge,
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200617 .supplied_to = magician_supplicants,
618 .num_supplicants = ARRAY_SIZE(magician_supplicants),
Philipp Zabel350d1152008-04-09 19:25:56 +0100619};
620
621static struct resource power_supply_resources[] = {
622 [0] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200623 .name = "ac",
624 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE |
625 IORESOURCE_IRQ_LOWEDGE,
626 .start = IRQ_MAGICIAN_VBUS,
627 .end = IRQ_MAGICIAN_VBUS,
Philipp Zabel350d1152008-04-09 19:25:56 +0100628 },
629 [1] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200630 .name = "usb",
631 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE |
632 IORESOURCE_IRQ_LOWEDGE,
633 .start = IRQ_MAGICIAN_VBUS,
634 .end = IRQ_MAGICIAN_VBUS,
Philipp Zabel350d1152008-04-09 19:25:56 +0100635 },
636};
637
638static struct platform_device power_supply = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200639 .name = "pda-power",
640 .id = -1,
641 .dev = {
Philipp Zabel350d1152008-04-09 19:25:56 +0100642 .platform_data = &power_supply_info,
643 },
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200644 .resource = power_supply_resources,
645 .num_resources = ARRAY_SIZE(power_supply_resources),
Philipp Zabel350d1152008-04-09 19:25:56 +0100646};
647
Philipp Zabeleb650b92009-01-31 12:13:57 +0100648/*
649 * Battery charger
650 */
651
652static struct regulator_consumer_supply bq24022_consumers[] = {
Axel Lin0bf189a2012-05-08 16:25:10 +0800653 REGULATOR_SUPPLY("vbus_draw", NULL),
654 REGULATOR_SUPPLY("ac_draw", NULL),
Philipp Zabeleb650b92009-01-31 12:13:57 +0100655};
656
657static struct regulator_init_data bq24022_init_data = {
658 .constraints = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200659 .max_uA = 500000,
660 .valid_ops_mask = REGULATOR_CHANGE_CURRENT |
661 REGULATOR_CHANGE_STATUS,
Philipp Zabeleb650b92009-01-31 12:13:57 +0100662 },
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200663 .num_consumer_supplies = ARRAY_SIZE(bq24022_consumers),
664 .consumer_supplies = bq24022_consumers,
Philipp Zabeleb650b92009-01-31 12:13:57 +0100665};
666
Heiko Stübner6967cca2012-03-02 13:56:38 +0100667static struct gpio bq24022_gpios[] = {
668 { EGPIO_MAGICIAN_BQ24022_ISET2, GPIOF_OUT_INIT_LOW, "bq24022_iset2" },
669};
670
671static struct gpio_regulator_state bq24022_states[] = {
672 { .value = 100000, .gpios = (0 << 0) },
673 { .value = 500000, .gpios = (1 << 0) },
674};
675
676static struct gpio_regulator_config bq24022_info = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200677 .supply_name = "bq24022",
Heiko Stübner6967cca2012-03-02 13:56:38 +0100678
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200679 .enable_gpio = GPIO30_MAGICIAN_BQ24022_nCHARGE_EN,
680 .enable_high = 0,
Petr Cvekeac2eac2015-09-28 23:33:02 +0200681 .enabled_at_boot = 1,
Heiko Stübner6967cca2012-03-02 13:56:38 +0100682
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200683 .gpios = bq24022_gpios,
684 .nr_gpios = ARRAY_SIZE(bq24022_gpios),
Heiko Stübner6967cca2012-03-02 13:56:38 +0100685
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200686 .states = bq24022_states,
687 .nr_states = ARRAY_SIZE(bq24022_states),
Heiko Stübner6967cca2012-03-02 13:56:38 +0100688
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200689 .type = REGULATOR_CURRENT,
690 .init_data = &bq24022_init_data,
Philipp Zabeleb650b92009-01-31 12:13:57 +0100691};
692
693static struct platform_device bq24022 = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200694 .name = "gpio-regulator",
695 .id = -1,
696 .dev = {
Philipp Zabeleb650b92009-01-31 12:13:57 +0100697 .platform_data = &bq24022_info,
698 },
699};
Philipp Zabel350d1152008-04-09 19:25:56 +0100700
701/*
Petr Cvekff5eff32015-09-28 23:39:03 +0200702 * Vcore regulator MAX1587A
703 */
704
705static struct regulator_consumer_supply magician_max1587a_consumers[] = {
706 REGULATOR_SUPPLY("vcc_core", NULL),
707};
708
709static struct regulator_init_data magician_max1587a_v3_info = {
710 .constraints = {
711 .name = "vcc_core range",
712 .min_uV = 700000,
713 .max_uV = 1475000,
714 .always_on = 1,
715 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
716 },
717 .consumer_supplies = magician_max1587a_consumers,
718 .num_consumer_supplies = ARRAY_SIZE(magician_max1587a_consumers),
719};
720
721static struct max1586_subdev_data magician_max1587a_subdevs[] = {
722 {
723 .name = "vcc_core",
724 .id = MAX1586_V3,
725 .platform_data = &magician_max1587a_v3_info,
726 }
727};
728
729static struct max1586_platform_data magician_max1587a_info = {
730 .subdevs = magician_max1587a_subdevs,
731 .num_subdevs = ARRAY_SIZE(magician_max1587a_subdevs),
732 /*
733 * NOTICE measured directly on the PCB (board_id == 0x3a), but
734 * if R24 is present, it will boost the voltage
735 * (write 1.475V, get 1.645V and smoke)
736 */
737 .v3_gain = MAX1586_GAIN_NO_R24,
738};
739
740static struct i2c_board_info magician_pwr_i2c_board_info[] __initdata = {
741 {
742 I2C_BOARD_INFO("max1586", 0x14),
743 .platform_data = &magician_max1587a_info,
744 },
745};
746
747/*
Philipp Zabelbdb0c162008-04-09 19:24:55 +0100748 * MMC/SD
749 */
750
751static int magician_mci_init(struct device *dev,
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200752 irq_handler_t detect_irq, void *data)
Philipp Zabelbdb0c162008-04-09 19:24:55 +0100753{
Michael Opdenackered7936f2013-12-09 11:22:22 +0100754 return request_irq(IRQ_MAGICIAN_SD, detect_irq, 0,
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200755 "mmc card detect", data);
Philipp Zabelbdb0c162008-04-09 19:24:55 +0100756}
757
758static void magician_mci_exit(struct device *dev, void *data)
759{
760 free_irq(IRQ_MAGICIAN_SD, data);
761}
762
763static struct pxamci_platform_data magician_mci_info = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200764 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
765 .init = magician_mci_init,
766 .exit = magician_mci_exit,
Robert Jarzmik7a648252009-07-06 22:16:42 +0200767 .gpio_card_detect = -1,
768 .gpio_card_ro = EGPIO_MAGICIAN_nSD_READONLY,
769 .gpio_card_ro_invert = 1,
770 .gpio_power = EGPIO_MAGICIAN_SD_POWER,
Philipp Zabelbdb0c162008-04-09 19:24:55 +0100771};
772
773
774/*
Philipp Zabele5c271e2007-11-22 17:59:11 +0100775 * USB OHCI
776 */
777
Philipp Zabele5c271e2007-11-22 17:59:11 +0100778static struct pxaohci_platform_data magician_ohci_info = {
Eric Miao097b5332008-09-27 15:49:57 +0800779 .port_mode = PMM_PERPORT_MODE,
Petr Cvek2eb74142015-09-28 23:38:03 +0200780 /* port1: CSR Bluetooth, port2: OTG with UDC */
781 .flags = ENABLE_PORT1 | ENABLE_PORT2 | POWER_CONTROL_LOW,
Eric Miao097b5332008-09-27 15:49:57 +0800782 .power_budget = 0,
Petr Cvek2eb74142015-09-28 23:38:03 +0200783 .power_on_delay = 100,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100784};
785
Philipp Zabele5c271e2007-11-22 17:59:11 +0100786/*
787 * StrataFlash
788 */
789
Petr Cvekfdb902b62015-09-28 23:34:39 +0200790static int magician_flash_init(struct platform_device *pdev)
791{
792 int ret = gpio_request(EGPIO_MAGICIAN_FLASH_VPP, "flash Vpp enable");
793
794 if (ret) {
795 pr_err("Cannot request flash enable GPIO (%i)\n", ret);
796 return ret;
797 }
798
799 ret = gpio_direction_output(EGPIO_MAGICIAN_FLASH_VPP, 1);
800 if (ret) {
801 pr_err("Cannot set direction for flash enable (%i)\n", ret);
802 gpio_free(EGPIO_MAGICIAN_FLASH_VPP);
803 }
804
805 return ret;
806}
807
Marc Zyngier667f3902011-05-18 10:51:55 +0100808static void magician_set_vpp(struct platform_device *pdev, int vpp)
Philipp Zabelaa797592008-04-09 19:24:05 +0100809{
810 gpio_set_value(EGPIO_MAGICIAN_FLASH_VPP, vpp);
811}
812
Petr Cvekfdb902b62015-09-28 23:34:39 +0200813static void magician_flash_exit(struct platform_device *pdev)
814{
815 gpio_free(EGPIO_MAGICIAN_FLASH_VPP);
816}
817
Philipp Zabele5c271e2007-11-22 17:59:11 +0100818static struct resource strataflash_resource = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200819 .start = PXA_CS0_PHYS,
820 .end = PXA_CS0_PHYS + SZ_64M - 1,
821 .flags = IORESOURCE_MEM,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100822};
823
Petr Cvekfdb902b62015-09-28 23:34:39 +0200824static struct mtd_partition magician_flash_parts[] = {
825 {
826 .name = "Bootloader",
827 .offset = 0x0,
828 .size = 0x40000,
829 .mask_flags = MTD_WRITEABLE, /* EXPERIMENTAL */
830 },
831 {
832 .name = "Linux Kernel",
833 .offset = 0x40000,
834 .size = MTDPART_SIZ_FULL,
835 },
836};
837
838/*
839 * physmap-flash driver
840 */
841
Philipp Zabele5c271e2007-11-22 17:59:11 +0100842static struct physmap_flash_data strataflash_data = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200843 .width = 4,
Petr Cvekfdb902b62015-09-28 23:34:39 +0200844 .init = magician_flash_init,
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200845 .set_vpp = magician_set_vpp,
Petr Cvekfdb902b62015-09-28 23:34:39 +0200846 .exit = magician_flash_exit,
847 .parts = magician_flash_parts,
848 .nr_parts = ARRAY_SIZE(magician_flash_parts),
Philipp Zabele5c271e2007-11-22 17:59:11 +0100849};
850
851static struct platform_device strataflash = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200852 .name = "physmap-flash",
853 .id = -1,
854 .resource = &strataflash_resource,
855 .num_resources = 1,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100856 .dev = {
857 .platform_data = &strataflash_data,
858 },
859};
860
861/*
Petr Cvekf36150b2015-09-28 23:10:18 +0200862 * PXA I2C main controller
Philipp Zabelf8f9d5e2009-04-17 11:38:23 +0200863 */
864
865static struct i2c_pxa_platform_data i2c_info = {
Petr Cvek0fb58ab2015-09-28 23:33:55 +0200866 /* OV9640 I2C device doesn't support fast mode */
867 .fast_mode = 0,
868};
869
870/*
871 * PXA I2C power controller
872 */
873
874static struct i2c_pxa_platform_data magician_i2c_power_info = {
875 .fast_mode = 1,
Philipp Zabelf8f9d5e2009-04-17 11:38:23 +0200876};
877
878/*
Philipp Zabele5c271e2007-11-22 17:59:11 +0100879 * Platform devices
880 */
881
882static struct platform_device *devices[] __initdata = {
883 &gpio_keys,
Philipp Zabel70e357f2008-04-09 19:22:57 +0100884 &egpio,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100885 &backlight,
Philipp Zabel81447b22008-04-12 13:28:02 +0100886 &pasic3,
Philipp Zabeleb650b92009-01-31 12:13:57 +0100887 &bq24022,
Philipp Zabel6489c612009-02-01 11:20:30 +0100888 &gpio_vbus,
Philipp Zabel350d1152008-04-09 19:25:56 +0100889 &power_supply,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100890 &strataflash,
Philipp Zabel81447b22008-04-12 13:28:02 +0100891 &leds_gpio,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100892};
893
Philipp Zabel5db15f82011-04-28 22:21:04 +0200894static struct gpio magician_global_gpios[] = {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200895 { GPIO13_MAGICIAN_CPLD_IRQ, GPIOF_IN, "CPLD_IRQ" },
Philipp Zabel5db15f82011-04-28 22:21:04 +0200896 { GPIO107_MAGICIAN_DS1WM_IRQ, GPIOF_IN, "DS1WM_IRQ" },
Petr Cvek6001ae72015-09-28 23:15:57 +0200897
898 /* NOTICE valid LCD init sequence */
899 { GPIO106_MAGICIAN_LCD_DCDC_NRESET, GPIOF_OUT_INIT_LOW, "LCD DCDC nreset" },
900 { GPIO104_MAGICIAN_LCD_VOFF_EN, GPIOF_OUT_INIT_LOW, "LCD VOFF enable" },
901 { GPIO105_MAGICIAN_LCD_VON_EN, GPIOF_OUT_INIT_LOW, "LCD VON enable" },
Philipp Zabel5db15f82011-04-28 22:21:04 +0200902};
903
Philipp Zabele5c271e2007-11-22 17:59:11 +0100904static void __init magician_init(void)
905{
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100906 void __iomem *cpld;
907 int lcd_select;
Philipp Zabela1999cd2008-04-20 17:39:12 +0100908 int err;
909
Philipp Zabelb1682812008-04-12 13:29:22 +0100910 pxa2xx_mfp_config(ARRAY_AND_SIZE(magician_pin_config));
Philipp Zabel5db15f82011-04-28 22:21:04 +0200911 err = gpio_request_array(ARRAY_AND_SIZE(magician_global_gpios));
912 if (err)
Petr Cvek7f63a752015-09-28 23:10:43 +0200913 pr_err("magician: Failed to request global GPIOs: %d\n", err);
Philipp Zabelb1682812008-04-12 13:29:22 +0100914
Russell Kingcc155c62009-11-09 13:34:08 +0800915 pxa_set_ffuart_info(NULL);
916 pxa_set_btuart_info(NULL);
Russell Kingcc155c62009-11-09 13:34:08 +0800917
Thierry Redingbd3208b2015-10-05 10:49:46 +0200918 pwm_add_table(magician_pwm_lookup, ARRAY_SIZE(magician_pwm_lookup));
Philipp Zabela1999cd2008-04-20 17:39:12 +0100919
Philipp Zabel5db15f82011-04-28 22:21:04 +0200920 pxa_set_ficp_info(&magician_ficp_info);
Petr Cvek0fb58ab2015-09-28 23:33:55 +0200921 pxa27x_set_i2c_power_info(&magician_i2c_power_info);
Philipp Zabelf8f9d5e2009-04-17 11:38:23 +0200922 pxa_set_i2c_info(&i2c_info);
Petr Cvekff5eff32015-09-28 23:39:03 +0200923
924 i2c_register_board_info(1,
925 ARRAY_AND_SIZE(magician_pwr_i2c_board_info));
926
Philipp Zabelbdb0c162008-04-09 19:24:55 +0100927 pxa_set_mci_info(&magician_mci_info);
Philipp Zabele5c271e2007-11-22 17:59:11 +0100928 pxa_set_ohci_info(&magician_ohci_info);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100929
930 /* Check LCD type we have */
931 cpld = ioremap_nocache(PXA_CS3_PHYS, 0x1000);
932 if (cpld) {
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200933 u8 board_id = __raw_readb(cpld + 0x14);
934
Philipp Zabela1999cd2008-04-20 17:39:12 +0100935 iounmap(cpld);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100936 system_rev = board_id & 0x7;
937 lcd_select = board_id & 0x8;
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100938 pr_info("LCD type: %s\n", lcd_select ? "Samsung" : "Toppoly");
Philipp Zabel5db15f82011-04-28 22:21:04 +0200939 if (lcd_select && (system_rev < 3))
Petr Cvek6001ae72015-09-28 23:15:57 +0200940 /* NOTICE valid LCD init sequence */
Philipp Zabel5db15f82011-04-28 22:21:04 +0200941 gpio_request_one(GPIO75_MAGICIAN_SAMSUNG_POWER,
Petr Cvek6382a592015-09-28 23:11:34 +0200942 GPIOF_OUT_INIT_LOW, "Samsung LCD Power");
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200943 pxa_set_fb_info(NULL,
944 lcd_select ? &samsung_info : &toppoly_info);
Philipp Zabele07ff8d82008-04-09 19:27:10 +0100945 } else
946 pr_err("LCD detection: CPLD mapping failed\n");
Petr Cveke2f1b8b2015-09-28 23:40:57 +0200947
948 regulator_register_always_on(0, "power", pwm_backlight_supply,
949 ARRAY_SIZE(pwm_backlight_supply), 5000000);
Petr Cvek78afa4f2015-09-28 23:42:23 +0200950
951 platform_add_devices(ARRAY_AND_SIZE(devices));
Philipp Zabele5c271e2007-11-22 17:59:11 +0100952}
953
Philipp Zabele5c271e2007-11-22 17:59:11 +0100954MACHINE_START(MAGICIAN, "HTC Magician")
Petr Cvekccb6f9a2015-09-28 23:09:52 +0200955 .atag_offset = 0x100,
956 .map_io = pxa27x_map_io,
957 .nr_irqs = MAGICIAN_NR_IRQS,
958 .init_irq = pxa27x_init_irq,
959 .handle_irq = pxa27x_handle_irq,
960 .init_machine = magician_init,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700961 .init_time = pxa_timer_init,
Russell King271a74f2011-11-04 14:15:53 +0000962 .restart = pxa_restart,
Philipp Zabele5c271e2007-11-22 17:59:11 +0100963MACHINE_END