mach-gta02.c 14 KB

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