mach-gta02.c 14 KB

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