mach-gta02.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. /*
  2. * S3C2442 Machine Support for Openmoko GTA02 / FreeRunner.
  3. *
  4. * Copyright (C) 2006-2009 by Openmoko, Inc.
  5. * Authors: Harald Welte <laforge@openmoko.org>
  6. * Andy Green <andy@openmoko.org>
  7. * Werner Almesberger <werner@openmoko.org>
  8. * All rights reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <linux/kernel.h>
  26. #include <linux/types.h>
  27. #include <linux/interrupt.h>
  28. #include <linux/list.h>
  29. #include <linux/delay.h>
  30. #include <linux/timer.h>
  31. #include <linux/init.h>
  32. #include <linux/gpio.h>
  33. #include <linux/gpio_keys.h>
  34. #include <linux/workqueue.h>
  35. #include <linux/platform_device.h>
  36. #include <linux/serial_core.h>
  37. #include <linux/input.h>
  38. #include <linux/io.h>
  39. #include <linux/i2c.h>
  40. #include <linux/mmc/host.h>
  41. #include <linux/mfd/pcf50633/adc.h>
  42. #include <linux/mfd/pcf50633/backlight.h>
  43. #include <linux/mfd/pcf50633/core.h>
  44. #include <linux/mfd/pcf50633/gpio.h>
  45. #include <linux/mfd/pcf50633/mbc.h>
  46. #include <linux/mfd/pcf50633/pmic.h>
  47. #include <linux/mtd/mtd.h>
  48. #include <linux/mtd/nand.h>
  49. #include <linux/mtd/nand_ecc.h>
  50. #include <linux/mtd/partitions.h>
  51. #include <linux/mtd/physmap.h>
  52. #include <linux/regulator/machine.h>
  53. #include <linux/spi/spi.h>
  54. #include <linux/spi/s3c24xx.h>
  55. #include <asm/irq.h>
  56. #include <asm/mach-types.h>
  57. #include <asm/mach/arch.h>
  58. #include <asm/mach/map.h>
  59. #include <asm/mach/irq.h>
  60. #include <linux/platform_data/i2c-s3c2410.h>
  61. #include <linux/platform_data/mtd-nand-s3c2410.h>
  62. #include <linux/platform_data/touchscreen-s3c2410.h>
  63. #include <linux/platform_data/usb-ohci-s3c2410.h>
  64. #include <linux/platform_data/usb-s3c2410_udc.h>
  65. #include <mach/fb.h>
  66. #include <mach/hardware.h>
  67. #include <mach/regs-gpio.h>
  68. #include <mach/regs-irq.h>
  69. #include <plat/cpu.h>
  70. #include <plat/devs.h>
  71. #include <plat/gpio-cfg.h>
  72. #include <plat/pm.h>
  73. #include <plat/regs-serial.h>
  74. #include "common.h"
  75. #include "gta02.h"
  76. static struct pcf50633 *gta02_pcf;
  77. /*
  78. * This gets called frequently when we paniced.
  79. */
  80. static long gta02_panic_blink(int state)
  81. {
  82. long delay = 0;
  83. char led;
  84. led = (state) ? 1 : 0;
  85. gpio_direction_output(GTA02_GPIO_AUX_LED, led);
  86. return delay;
  87. }
  88. static struct map_desc gta02_iodesc[] __initdata = {
  89. {
  90. .virtual = 0xe0000000,
  91. .pfn = __phys_to_pfn(S3C2410_CS3 + 0x01000000),
  92. .length = SZ_1M,
  93. .type = MT_DEVICE
  94. },
  95. };
  96. #define UCON (S3C2410_UCON_DEFAULT | S3C2443_UCON_RXERR_IRQEN)
  97. #define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB)
  98. #define UFCON (S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE)
  99. static struct s3c2410_uartcfg gta02_uartcfgs[] = {
  100. [0] = {
  101. .hwport = 0,
  102. .flags = 0,
  103. .ucon = UCON,
  104. .ulcon = ULCON,
  105. .ufcon = UFCON,
  106. },
  107. [1] = {
  108. .hwport = 1,
  109. .flags = 0,
  110. .ucon = UCON,
  111. .ulcon = ULCON,
  112. .ufcon = UFCON,
  113. },
  114. [2] = {
  115. .hwport = 2,
  116. .flags = 0,
  117. .ucon = UCON,
  118. .ulcon = ULCON,
  119. .ufcon = UFCON,
  120. },
  121. };
  122. #ifdef CONFIG_CHARGER_PCF50633
  123. /*
  124. * On GTA02 the 1A charger features a 48K resistor to 0V on the ID pin.
  125. * We use this to recognize that we can pull 1A from the USB socket.
  126. *
  127. * These constants are the measured pcf50633 ADC levels with the 1A
  128. * charger / 48K resistor, and with no pulldown resistor.
  129. */
  130. #define ADC_NOM_CHG_DETECT_1A 6
  131. #define ADC_NOM_CHG_DETECT_USB 43
  132. static void
  133. gta02_configure_pmu_for_charger(struct pcf50633 *pcf, void *unused, int res)
  134. {
  135. int ma;
  136. /* Interpret charger type */
  137. if (res < ((ADC_NOM_CHG_DETECT_USB + ADC_NOM_CHG_DETECT_1A) / 2)) {
  138. /*
  139. * Sanity - stop GPO driving out now that we have a 1A charger
  140. * GPO controls USB Host power generation on GTA02
  141. */
  142. pcf50633_gpio_set(pcf, PCF50633_GPO, 0);
  143. ma = 1000;
  144. } else
  145. ma = 100;
  146. pcf50633_mbc_usb_curlim_set(pcf, ma);
  147. }
  148. static struct delayed_work gta02_charger_work;
  149. static int gta02_usb_vbus_draw;
  150. static void gta02_charger_worker(struct work_struct *work)
  151. {
  152. if (gta02_usb_vbus_draw) {
  153. pcf50633_mbc_usb_curlim_set(gta02_pcf, gta02_usb_vbus_draw);
  154. return;
  155. }
  156. #ifdef CONFIG_PCF50633_ADC
  157. pcf50633_adc_async_read(gta02_pcf,
  158. PCF50633_ADCC1_MUX_ADCIN1,
  159. PCF50633_ADCC1_AVERAGE_16,
  160. gta02_configure_pmu_for_charger,
  161. NULL);
  162. #else
  163. /*
  164. * If the PCF50633 ADC is disabled we fallback to a
  165. * 100mA limit for safety.
  166. */
  167. pcf50633_mbc_usb_curlim_set(pcf, 100);
  168. #endif
  169. }
  170. #define GTA02_CHARGER_CONFIGURE_TIMEOUT ((3000 * HZ) / 1000)
  171. static void gta02_pmu_event_callback(struct pcf50633 *pcf, int irq)
  172. {
  173. if (irq == PCF50633_IRQ_USBINS) {
  174. schedule_delayed_work(&gta02_charger_work,
  175. GTA02_CHARGER_CONFIGURE_TIMEOUT);
  176. return;
  177. }
  178. if (irq == PCF50633_IRQ_USBREM) {
  179. cancel_delayed_work_sync(&gta02_charger_work);
  180. gta02_usb_vbus_draw = 0;
  181. }
  182. }
  183. static void gta02_udc_vbus_draw(unsigned int ma)
  184. {
  185. if (!gta02_pcf)
  186. return;
  187. gta02_usb_vbus_draw = ma;
  188. schedule_delayed_work(&gta02_charger_work,
  189. GTA02_CHARGER_CONFIGURE_TIMEOUT);
  190. }
  191. #else /* !CONFIG_CHARGER_PCF50633 */
  192. #define gta02_pmu_event_callback NULL
  193. #define gta02_udc_vbus_draw NULL
  194. #endif
  195. /*
  196. * This is called when pc50633 is probed, unfortunately quite late in the
  197. * day since it is an I2C bus device. Here we can belatedly define some
  198. * platform devices with the advantage that we can mark the pcf50633 as the
  199. * parent. This makes them get suspended and resumed with their parent
  200. * the pcf50633 still around.
  201. */
  202. static void gta02_pmu_attach_child_devices(struct pcf50633 *pcf);
  203. static char *gta02_batteries[] = {
  204. "battery",
  205. };
  206. static struct pcf50633_bl_platform_data gta02_backlight_data = {
  207. .default_brightness = 0x3f,
  208. .default_brightness_limit = 0,
  209. .ramp_time = 5,
  210. };
  211. static struct pcf50633_platform_data gta02_pcf_pdata = {
  212. .resumers = {
  213. [0] = PCF50633_INT1_USBINS |
  214. PCF50633_INT1_USBREM |
  215. PCF50633_INT1_ALARM,
  216. [1] = PCF50633_INT2_ONKEYF,
  217. [2] = PCF50633_INT3_ONKEY1S,
  218. [3] = PCF50633_INT4_LOWSYS |
  219. PCF50633_INT4_LOWBAT |
  220. PCF50633_INT4_HIGHTMP,
  221. },
  222. .batteries = gta02_batteries,
  223. .num_batteries = ARRAY_SIZE(gta02_batteries),
  224. .charger_reference_current_ma = 1000,
  225. .backlight_data = &gta02_backlight_data,
  226. .reg_init_data = {
  227. [PCF50633_REGULATOR_AUTO] = {
  228. .constraints = {
  229. .min_uV = 3300000,
  230. .max_uV = 3300000,
  231. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  232. .always_on = 1,
  233. .apply_uV = 1,
  234. },
  235. },
  236. [PCF50633_REGULATOR_DOWN1] = {
  237. .constraints = {
  238. .min_uV = 1300000,
  239. .max_uV = 1600000,
  240. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  241. .always_on = 1,
  242. .apply_uV = 1,
  243. },
  244. },
  245. [PCF50633_REGULATOR_DOWN2] = {
  246. .constraints = {
  247. .min_uV = 1800000,
  248. .max_uV = 1800000,
  249. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  250. .apply_uV = 1,
  251. .always_on = 1,
  252. },
  253. },
  254. [PCF50633_REGULATOR_HCLDO] = {
  255. .constraints = {
  256. .min_uV = 2000000,
  257. .max_uV = 3300000,
  258. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  259. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
  260. REGULATOR_CHANGE_STATUS,
  261. },
  262. },
  263. [PCF50633_REGULATOR_LDO1] = {
  264. .constraints = {
  265. .min_uV = 3300000,
  266. .max_uV = 3300000,
  267. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  268. .valid_ops_mask = REGULATOR_CHANGE_STATUS,
  269. .apply_uV = 1,
  270. },
  271. },
  272. [PCF50633_REGULATOR_LDO2] = {
  273. .constraints = {
  274. .min_uV = 3300000,
  275. .max_uV = 3300000,
  276. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  277. .apply_uV = 1,
  278. },
  279. },
  280. [PCF50633_REGULATOR_LDO3] = {
  281. .constraints = {
  282. .min_uV = 3000000,
  283. .max_uV = 3000000,
  284. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  285. .apply_uV = 1,
  286. },
  287. },
  288. [PCF50633_REGULATOR_LDO4] = {
  289. .constraints = {
  290. .min_uV = 3200000,
  291. .max_uV = 3200000,
  292. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  293. .valid_ops_mask = REGULATOR_CHANGE_STATUS,
  294. .apply_uV = 1,
  295. },
  296. },
  297. [PCF50633_REGULATOR_LDO5] = {
  298. .constraints = {
  299. .min_uV = 3000000,
  300. .max_uV = 3000000,
  301. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  302. .valid_ops_mask = REGULATOR_CHANGE_STATUS,
  303. .apply_uV = 1,
  304. },
  305. },
  306. [PCF50633_REGULATOR_LDO6] = {
  307. .constraints = {
  308. .min_uV = 3000000,
  309. .max_uV = 3000000,
  310. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  311. },
  312. },
  313. [PCF50633_REGULATOR_MEMLDO] = {
  314. .constraints = {
  315. .min_uV = 1800000,
  316. .max_uV = 1800000,
  317. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  318. },
  319. },
  320. },
  321. .probe_done = gta02_pmu_attach_child_devices,
  322. .mbc_event_callback = gta02_pmu_event_callback,
  323. };
  324. /* NOR Flash. */
  325. #define GTA02_FLASH_BASE 0x18000000 /* GCS3 */
  326. #define GTA02_FLASH_SIZE 0x200000 /* 2MBytes */
  327. static struct physmap_flash_data gta02_nor_flash_data = {
  328. .width = 2,
  329. };
  330. static struct resource gta02_nor_flash_resource =
  331. DEFINE_RES_MEM(GTA02_FLASH_BASE, GTA02_FLASH_SIZE);
  332. static struct platform_device gta02_nor_flash = {
  333. .name = "physmap-flash",
  334. .id = 0,
  335. .dev = {
  336. .platform_data = &gta02_nor_flash_data,
  337. },
  338. .resource = &gta02_nor_flash_resource,
  339. .num_resources = 1,
  340. };
  341. static struct platform_device s3c24xx_pwm_device = {
  342. .name = "s3c24xx_pwm",
  343. .num_resources = 0,
  344. };
  345. static struct platform_device gta02_dfbmcs320_device = {
  346. .name = "dfbmcs320",
  347. };
  348. static struct i2c_board_info gta02_i2c_devs[] __initdata = {
  349. {
  350. I2C_BOARD_INFO("pcf50633", 0x73),
  351. .irq = GTA02_IRQ_PCF50633,
  352. .platform_data = &gta02_pcf_pdata,
  353. },
  354. {
  355. I2C_BOARD_INFO("wm8753", 0x1a),
  356. },
  357. };
  358. static struct s3c2410_nand_set __initdata gta02_nand_sets[] = {
  359. [0] = {
  360. /*
  361. * This name is also hard-coded in the boot loaders, so
  362. * changing it would would require all users to upgrade
  363. * their boot loaders, some of which are stored in a NOR
  364. * that is considered to be immutable.
  365. */
  366. .name = "neo1973-nand",
  367. .nr_chips = 1,
  368. .flash_bbt = 1,
  369. },
  370. };
  371. /*
  372. * Choose a set of timings derived from S3C@2442B MCP54
  373. * data sheet (K5D2G13ACM-D075 MCP Memory).
  374. */
  375. static struct s3c2410_platform_nand __initdata gta02_nand_info = {
  376. .tacls = 0,
  377. .twrph0 = 25,
  378. .twrph1 = 15,
  379. .nr_sets = ARRAY_SIZE(gta02_nand_sets),
  380. .sets = gta02_nand_sets,
  381. };
  382. /* Get PMU to set USB current limit accordingly. */
  383. static struct s3c2410_udc_mach_info gta02_udc_cfg __initdata = {
  384. .vbus_draw = gta02_udc_vbus_draw,
  385. .pullup_pin = GTA02_GPIO_USB_PULLUP,
  386. };
  387. /* USB */
  388. static struct s3c2410_hcd_info gta02_usb_info __initdata = {
  389. .port[0] = {
  390. .flags = S3C_HCDFLG_USED,
  391. },
  392. .port[1] = {
  393. .flags = 0,
  394. },
  395. };
  396. /* Touchscreen */
  397. static struct s3c2410_ts_mach_info gta02_ts_info = {
  398. .delay = 10000,
  399. .presc = 0xff, /* slow as we can go */
  400. .oversampling_shift = 2,
  401. };
  402. /* Buttons */
  403. static struct gpio_keys_button gta02_buttons[] = {
  404. {
  405. .gpio = GTA02_GPIO_AUX_KEY,
  406. .code = KEY_PHONE,
  407. .desc = "Aux",
  408. .type = EV_KEY,
  409. .debounce_interval = 100,
  410. },
  411. {
  412. .gpio = GTA02_GPIO_HOLD_KEY,
  413. .code = KEY_PAUSE,
  414. .desc = "Hold",
  415. .type = EV_KEY,
  416. .debounce_interval = 100,
  417. },
  418. };
  419. static struct gpio_keys_platform_data gta02_buttons_pdata = {
  420. .buttons = gta02_buttons,
  421. .nbuttons = ARRAY_SIZE(gta02_buttons),
  422. };
  423. static struct platform_device gta02_buttons_device = {
  424. .name = "gpio-keys",
  425. .id = -1,
  426. .dev = {
  427. .platform_data = &gta02_buttons_pdata,
  428. },
  429. };
  430. static void __init gta02_map_io(void)
  431. {
  432. s3c24xx_init_io(gta02_iodesc, ARRAY_SIZE(gta02_iodesc));
  433. s3c24xx_init_clocks(12000000);
  434. s3c24xx_init_uarts(gta02_uartcfgs, ARRAY_SIZE(gta02_uartcfgs));
  435. }
  436. /* These are the guys that don't need to be children of PMU. */
  437. static struct platform_device *gta02_devices[] __initdata = {
  438. &s3c_device_ohci,
  439. &s3c_device_wdt,
  440. &s3c_device_sdi,
  441. &s3c_device_usbgadget,
  442. &s3c_device_nand,
  443. &gta02_nor_flash,
  444. &s3c24xx_pwm_device,
  445. &s3c_device_iis,
  446. &s3c_device_i2c0,
  447. &gta02_dfbmcs320_device,
  448. &gta02_buttons_device,
  449. &s3c_device_adc,
  450. &s3c_device_ts,
  451. };
  452. /* These guys DO need to be children of PMU. */
  453. static struct platform_device *gta02_devices_pmu_children[] = {
  454. };
  455. /*
  456. * This is called when pc50633 is probed, quite late in the day since it is an
  457. * I2C bus device. Here we can define platform devices with the advantage that
  458. * we can mark the pcf50633 as the parent. This makes them get suspended and
  459. * resumed with their parent the pcf50633 still around. All devices whose
  460. * operation depends on something from pcf50633 must have this relationship
  461. * made explicit like this, or suspend and resume will become an unreliable
  462. * hellworld.
  463. */
  464. static void gta02_pmu_attach_child_devices(struct pcf50633 *pcf)
  465. {
  466. int n;
  467. /* Grab a copy of the now probed PMU pointer. */
  468. gta02_pcf = pcf;
  469. for (n = 0; n < ARRAY_SIZE(gta02_devices_pmu_children); n++)
  470. gta02_devices_pmu_children[n]->dev.parent = pcf->dev;
  471. platform_add_devices(gta02_devices_pmu_children,
  472. ARRAY_SIZE(gta02_devices_pmu_children));
  473. }
  474. static void gta02_poweroff(void)
  475. {
  476. pcf50633_reg_set_bit_mask(gta02_pcf, PCF50633_REG_OOCSHDWN, 1, 1);
  477. }
  478. static void __init gta02_machine_init(void)
  479. {
  480. /* Set the panic callback to turn AUX LED on or off. */
  481. panic_blink = gta02_panic_blink;
  482. s3c_pm_init();
  483. #ifdef CONFIG_CHARGER_PCF50633
  484. INIT_DELAYED_WORK(&gta02_charger_work, gta02_charger_worker);
  485. #endif
  486. s3c24xx_udc_set_platdata(&gta02_udc_cfg);
  487. s3c24xx_ts_set_platdata(&gta02_ts_info);
  488. s3c_ohci_set_platdata(&gta02_usb_info);
  489. s3c_nand_set_platdata(&gta02_nand_info);
  490. s3c_i2c0_set_platdata(NULL);
  491. i2c_register_board_info(0, gta02_i2c_devs, ARRAY_SIZE(gta02_i2c_devs));
  492. platform_add_devices(gta02_devices, ARRAY_SIZE(gta02_devices));
  493. pm_power_off = gta02_poweroff;
  494. regulator_has_full_constraints();
  495. }
  496. MACHINE_START(NEO1973_GTA02, "GTA02")
  497. /* Maintainer: Nelson Castillo <arhuaco@freaks-unidos.net> */
  498. .atag_offset = 0x100,
  499. .map_io = gta02_map_io,
  500. .init_irq = s3c24xx_init_irq,
  501. .init_machine = gta02_machine_init,
  502. .init_time = s3c24xx_timer_init,
  503. .restart = s3c244x_restart,
  504. MACHINE_END