mach-gta02.c 12 KB

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