setup.c 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380
  1. /*
  2. * Copyright (C) 2009 Renesas Solutions Corp.
  3. *
  4. * Kuninori Morimoto <morimoto.kuninori@renesas.com>
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #include <linux/init.h>
  11. #include <linux/device.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/mmc/host.h>
  14. #include <linux/mmc/sh_mmcif.h>
  15. #include <linux/mmc/sh_mobile_sdhi.h>
  16. #include <linux/mtd/physmap.h>
  17. #include <linux/gpio.h>
  18. #include <linux/interrupt.h>
  19. #include <linux/io.h>
  20. #include <linux/delay.h>
  21. #include <linux/usb/r8a66597.h>
  22. #include <linux/usb/renesas_usbhs.h>
  23. #include <linux/i2c.h>
  24. #include <linux/i2c/tsc2007.h>
  25. #include <linux/spi/spi.h>
  26. #include <linux/spi/sh_msiof.h>
  27. #include <linux/spi/mmc_spi.h>
  28. #include <linux/input.h>
  29. #include <linux/input/sh_keysc.h>
  30. #include <linux/sh_eth.h>
  31. #include <video/sh_mobile_lcdc.h>
  32. #include <sound/sh_fsi.h>
  33. #include <media/sh_mobile_ceu.h>
  34. #include <media/tw9910.h>
  35. #include <media/mt9t112.h>
  36. #include <asm/heartbeat.h>
  37. #include <asm/clock.h>
  38. #include <asm/suspend.h>
  39. #include <cpu/sh7724.h>
  40. /*
  41. * Address Interface BusWidth
  42. *-----------------------------------------
  43. * 0x0000_0000 uboot 16bit
  44. * 0x0004_0000 Linux romImage 16bit
  45. * 0x0014_0000 MTD for Linux 16bit
  46. * 0x0400_0000 Internal I/O 16/32bit
  47. * 0x0800_0000 DRAM 32bit
  48. * 0x1800_0000 MFI 16bit
  49. */
  50. /* SWITCH
  51. *------------------------------
  52. * DS2[1] = FlashROM write protect ON : write protect
  53. * OFF : No write protect
  54. * DS2[2] = RMII / TS, SCIF ON : RMII
  55. * OFF : TS, SCIF3
  56. * DS2[3] = Camera / Video ON : Camera
  57. * OFF : NTSC/PAL (IN)
  58. * DS2[5] = NTSC_OUT Clock ON : On board OSC
  59. * OFF : SH7724 DV_CLK
  60. * DS2[6-7] = MMC / SD ON-OFF : SD
  61. * OFF-ON : MMC
  62. */
  63. /* Heartbeat */
  64. static unsigned char led_pos[] = { 0, 1, 2, 3 };
  65. static struct heartbeat_data heartbeat_data = {
  66. .nr_bits = 4,
  67. .bit_pos = led_pos,
  68. };
  69. static struct resource heartbeat_resource = {
  70. .start = 0xA405012C, /* PTG */
  71. .end = 0xA405012E - 1,
  72. .flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT,
  73. };
  74. static struct platform_device heartbeat_device = {
  75. .name = "heartbeat",
  76. .id = -1,
  77. .dev = {
  78. .platform_data = &heartbeat_data,
  79. },
  80. .num_resources = 1,
  81. .resource = &heartbeat_resource,
  82. };
  83. /* MTD */
  84. static struct mtd_partition nor_flash_partitions[] = {
  85. {
  86. .name = "boot loader",
  87. .offset = 0,
  88. .size = (5 * 1024 * 1024),
  89. .mask_flags = MTD_WRITEABLE, /* force read-only */
  90. }, {
  91. .name = "free-area",
  92. .offset = MTDPART_OFS_APPEND,
  93. .size = MTDPART_SIZ_FULL,
  94. },
  95. };
  96. static struct physmap_flash_data nor_flash_data = {
  97. .width = 2,
  98. .parts = nor_flash_partitions,
  99. .nr_parts = ARRAY_SIZE(nor_flash_partitions),
  100. };
  101. static struct resource nor_flash_resources[] = {
  102. [0] = {
  103. .name = "NOR Flash",
  104. .start = 0x00000000,
  105. .end = 0x03ffffff,
  106. .flags = IORESOURCE_MEM,
  107. }
  108. };
  109. static struct platform_device nor_flash_device = {
  110. .name = "physmap-flash",
  111. .resource = nor_flash_resources,
  112. .num_resources = ARRAY_SIZE(nor_flash_resources),
  113. .dev = {
  114. .platform_data = &nor_flash_data,
  115. },
  116. };
  117. /* SH Eth */
  118. #define SH_ETH_ADDR (0xA4600000)
  119. static struct resource sh_eth_resources[] = {
  120. [0] = {
  121. .start = SH_ETH_ADDR,
  122. .end = SH_ETH_ADDR + 0x1FC,
  123. .flags = IORESOURCE_MEM,
  124. },
  125. [1] = {
  126. .start = 91,
  127. .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
  128. },
  129. };
  130. static struct sh_eth_plat_data sh_eth_plat = {
  131. .phy = 0x1f, /* SMSC LAN8700 */
  132. .edmac_endian = EDMAC_LITTLE_ENDIAN,
  133. .register_type = SH_ETH_REG_FAST_SH4,
  134. .phy_interface = PHY_INTERFACE_MODE_MII,
  135. .ether_link_active_low = 1
  136. };
  137. static struct platform_device sh_eth_device = {
  138. .name = "sh-eth",
  139. .id = 0,
  140. .dev = {
  141. .platform_data = &sh_eth_plat,
  142. },
  143. .num_resources = ARRAY_SIZE(sh_eth_resources),
  144. .resource = sh_eth_resources,
  145. };
  146. /* USB0 host */
  147. static void usb0_port_power(int port, int power)
  148. {
  149. gpio_set_value(GPIO_PTB4, power);
  150. }
  151. static struct r8a66597_platdata usb0_host_data = {
  152. .on_chip = 1,
  153. .port_power = usb0_port_power,
  154. };
  155. static struct resource usb0_host_resources[] = {
  156. [0] = {
  157. .start = 0xa4d80000,
  158. .end = 0xa4d80124 - 1,
  159. .flags = IORESOURCE_MEM,
  160. },
  161. [1] = {
  162. .start = 65,
  163. .end = 65,
  164. .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
  165. },
  166. };
  167. static struct platform_device usb0_host_device = {
  168. .name = "r8a66597_hcd",
  169. .id = 0,
  170. .dev = {
  171. .dma_mask = NULL, /* not use dma */
  172. .coherent_dma_mask = 0xffffffff,
  173. .platform_data = &usb0_host_data,
  174. },
  175. .num_resources = ARRAY_SIZE(usb0_host_resources),
  176. .resource = usb0_host_resources,
  177. };
  178. /* USB1 host/function */
  179. static void usb1_port_power(int port, int power)
  180. {
  181. gpio_set_value(GPIO_PTB5, power);
  182. }
  183. static struct r8a66597_platdata usb1_common_data = {
  184. .on_chip = 1,
  185. .port_power = usb1_port_power,
  186. };
  187. static struct resource usb1_common_resources[] = {
  188. [0] = {
  189. .start = 0xa4d90000,
  190. .end = 0xa4d90124 - 1,
  191. .flags = IORESOURCE_MEM,
  192. },
  193. [1] = {
  194. .start = 66,
  195. .end = 66,
  196. .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
  197. },
  198. };
  199. static struct platform_device usb1_common_device = {
  200. /* .name will be added in arch_setup */
  201. .id = 1,
  202. .dev = {
  203. .dma_mask = NULL, /* not use dma */
  204. .coherent_dma_mask = 0xffffffff,
  205. .platform_data = &usb1_common_data,
  206. },
  207. .num_resources = ARRAY_SIZE(usb1_common_resources),
  208. .resource = usb1_common_resources,
  209. };
  210. /*
  211. * USBHS
  212. */
  213. static int usbhs_get_id(struct platform_device *pdev)
  214. {
  215. return gpio_get_value(GPIO_PTB3);
  216. }
  217. static struct renesas_usbhs_platform_info usbhs_info = {
  218. .platform_callback = {
  219. .get_id = usbhs_get_id,
  220. },
  221. .driver_param = {
  222. .buswait_bwait = 4,
  223. .detection_delay = 5,
  224. .d0_tx_id = SHDMA_SLAVE_USB1D0_TX,
  225. .d0_rx_id = SHDMA_SLAVE_USB1D0_RX,
  226. .d1_tx_id = SHDMA_SLAVE_USB1D1_TX,
  227. .d1_rx_id = SHDMA_SLAVE_USB1D1_RX,
  228. },
  229. };
  230. static struct resource usbhs_resources[] = {
  231. [0] = {
  232. .start = 0xa4d90000,
  233. .end = 0xa4d90124 - 1,
  234. .flags = IORESOURCE_MEM,
  235. },
  236. [1] = {
  237. .start = 66,
  238. .end = 66,
  239. .flags = IORESOURCE_IRQ,
  240. },
  241. };
  242. static struct platform_device usbhs_device = {
  243. .name = "renesas_usbhs",
  244. .id = 1,
  245. .dev = {
  246. .dma_mask = NULL, /* not use dma */
  247. .coherent_dma_mask = 0xffffffff,
  248. .platform_data = &usbhs_info,
  249. },
  250. .num_resources = ARRAY_SIZE(usbhs_resources),
  251. .resource = usbhs_resources,
  252. };
  253. /* LCDC */
  254. static const struct fb_videomode ecovec_lcd_modes[] = {
  255. {
  256. .name = "Panel",
  257. .xres = 800,
  258. .yres = 480,
  259. .left_margin = 220,
  260. .right_margin = 110,
  261. .hsync_len = 70,
  262. .upper_margin = 20,
  263. .lower_margin = 5,
  264. .vsync_len = 5,
  265. .sync = 0, /* hsync and vsync are active low */
  266. },
  267. };
  268. static const struct fb_videomode ecovec_dvi_modes[] = {
  269. {
  270. .name = "DVI",
  271. .xres = 1280,
  272. .yres = 720,
  273. .left_margin = 220,
  274. .right_margin = 110,
  275. .hsync_len = 40,
  276. .upper_margin = 20,
  277. .lower_margin = 5,
  278. .vsync_len = 5,
  279. .sync = 0, /* hsync and vsync are active low */
  280. },
  281. };
  282. static int ecovec24_set_brightness(void *board_data, int brightness)
  283. {
  284. gpio_set_value(GPIO_PTR1, brightness);
  285. return 0;
  286. }
  287. static int ecovec24_get_brightness(void *board_data)
  288. {
  289. return gpio_get_value(GPIO_PTR1);
  290. }
  291. static struct sh_mobile_lcdc_info lcdc_info = {
  292. .ch[0] = {
  293. .interface_type = RGB18,
  294. .chan = LCDC_CHAN_MAINLCD,
  295. .fourcc = V4L2_PIX_FMT_RGB565,
  296. .lcd_size_cfg = { /* 7.0 inch */
  297. .width = 152,
  298. .height = 91,
  299. },
  300. .board_cfg = {
  301. .set_brightness = ecovec24_set_brightness,
  302. .get_brightness = ecovec24_get_brightness,
  303. },
  304. .bl_info = {
  305. .name = "sh_mobile_lcdc_bl",
  306. .max_brightness = 1,
  307. },
  308. }
  309. };
  310. static struct resource lcdc_resources[] = {
  311. [0] = {
  312. .name = "LCDC",
  313. .start = 0xfe940000,
  314. .end = 0xfe942fff,
  315. .flags = IORESOURCE_MEM,
  316. },
  317. [1] = {
  318. .start = 106,
  319. .flags = IORESOURCE_IRQ,
  320. },
  321. };
  322. static struct platform_device lcdc_device = {
  323. .name = "sh_mobile_lcdc_fb",
  324. .num_resources = ARRAY_SIZE(lcdc_resources),
  325. .resource = lcdc_resources,
  326. .dev = {
  327. .platform_data = &lcdc_info,
  328. },
  329. };
  330. /* CEU0 */
  331. static struct sh_mobile_ceu_info sh_mobile_ceu0_info = {
  332. .flags = SH_CEU_FLAG_USE_8BIT_BUS,
  333. };
  334. static struct resource ceu0_resources[] = {
  335. [0] = {
  336. .name = "CEU0",
  337. .start = 0xfe910000,
  338. .end = 0xfe91009f,
  339. .flags = IORESOURCE_MEM,
  340. },
  341. [1] = {
  342. .start = 52,
  343. .flags = IORESOURCE_IRQ,
  344. },
  345. [2] = {
  346. /* place holder for contiguous memory */
  347. },
  348. };
  349. static struct platform_device ceu0_device = {
  350. .name = "sh_mobile_ceu",
  351. .id = 0, /* "ceu0" clock */
  352. .num_resources = ARRAY_SIZE(ceu0_resources),
  353. .resource = ceu0_resources,
  354. .dev = {
  355. .platform_data = &sh_mobile_ceu0_info,
  356. },
  357. };
  358. /* CEU1 */
  359. static struct sh_mobile_ceu_info sh_mobile_ceu1_info = {
  360. .flags = SH_CEU_FLAG_USE_8BIT_BUS,
  361. };
  362. static struct resource ceu1_resources[] = {
  363. [0] = {
  364. .name = "CEU1",
  365. .start = 0xfe914000,
  366. .end = 0xfe91409f,
  367. .flags = IORESOURCE_MEM,
  368. },
  369. [1] = {
  370. .start = 63,
  371. .flags = IORESOURCE_IRQ,
  372. },
  373. [2] = {
  374. /* place holder for contiguous memory */
  375. },
  376. };
  377. static struct platform_device ceu1_device = {
  378. .name = "sh_mobile_ceu",
  379. .id = 1, /* "ceu1" clock */
  380. .num_resources = ARRAY_SIZE(ceu1_resources),
  381. .resource = ceu1_resources,
  382. .dev = {
  383. .platform_data = &sh_mobile_ceu1_info,
  384. },
  385. };
  386. /* I2C device */
  387. static struct i2c_board_info i2c0_devices[] = {
  388. {
  389. I2C_BOARD_INFO("da7210", 0x1a),
  390. },
  391. };
  392. static struct i2c_board_info i2c1_devices[] = {
  393. {
  394. I2C_BOARD_INFO("r2025sd", 0x32),
  395. },
  396. {
  397. I2C_BOARD_INFO("lis3lv02d", 0x1c),
  398. .irq = 33,
  399. }
  400. };
  401. /* KEYSC */
  402. static struct sh_keysc_info keysc_info = {
  403. .mode = SH_KEYSC_MODE_1,
  404. .scan_timing = 3,
  405. .delay = 50,
  406. .kycr2_delay = 100,
  407. .keycodes = { KEY_1, 0, 0, 0, 0,
  408. KEY_2, 0, 0, 0, 0,
  409. KEY_3, 0, 0, 0, 0,
  410. KEY_4, 0, 0, 0, 0,
  411. KEY_5, 0, 0, 0, 0,
  412. KEY_6, 0, 0, 0, 0, },
  413. };
  414. static struct resource keysc_resources[] = {
  415. [0] = {
  416. .name = "KEYSC",
  417. .start = 0x044b0000,
  418. .end = 0x044b000f,
  419. .flags = IORESOURCE_MEM,
  420. },
  421. [1] = {
  422. .start = 79,
  423. .flags = IORESOURCE_IRQ,
  424. },
  425. };
  426. static struct platform_device keysc_device = {
  427. .name = "sh_keysc",
  428. .id = 0, /* keysc0 clock */
  429. .num_resources = ARRAY_SIZE(keysc_resources),
  430. .resource = keysc_resources,
  431. .dev = {
  432. .platform_data = &keysc_info,
  433. },
  434. };
  435. /* TouchScreen */
  436. #define IRQ0 32
  437. static int ts_get_pendown_state(void)
  438. {
  439. int val = 0;
  440. gpio_free(GPIO_FN_INTC_IRQ0);
  441. gpio_request(GPIO_PTZ0, NULL);
  442. gpio_direction_input(GPIO_PTZ0);
  443. val = gpio_get_value(GPIO_PTZ0);
  444. gpio_free(GPIO_PTZ0);
  445. gpio_request(GPIO_FN_INTC_IRQ0, NULL);
  446. return val ? 0 : 1;
  447. }
  448. static int ts_init(void)
  449. {
  450. gpio_request(GPIO_FN_INTC_IRQ0, NULL);
  451. return 0;
  452. }
  453. static struct tsc2007_platform_data tsc2007_info = {
  454. .model = 2007,
  455. .x_plate_ohms = 180,
  456. .get_pendown_state = ts_get_pendown_state,
  457. .init_platform_hw = ts_init,
  458. };
  459. static struct i2c_board_info ts_i2c_clients = {
  460. I2C_BOARD_INFO("tsc2007", 0x48),
  461. .type = "tsc2007",
  462. .platform_data = &tsc2007_info,
  463. .irq = IRQ0,
  464. };
  465. #if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
  466. /* SDHI0 */
  467. static void sdhi0_set_pwr(struct platform_device *pdev, int state)
  468. {
  469. gpio_set_value(GPIO_PTB6, state);
  470. }
  471. static struct sh_mobile_sdhi_info sdhi0_info = {
  472. .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
  473. .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
  474. .set_pwr = sdhi0_set_pwr,
  475. .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD,
  476. };
  477. static struct resource sdhi0_resources[] = {
  478. [0] = {
  479. .name = "SDHI0",
  480. .start = 0x04ce0000,
  481. .end = 0x04ce00ff,
  482. .flags = IORESOURCE_MEM,
  483. },
  484. [1] = {
  485. .start = 100,
  486. .flags = IORESOURCE_IRQ,
  487. },
  488. };
  489. static struct platform_device sdhi0_device = {
  490. .name = "sh_mobile_sdhi",
  491. .num_resources = ARRAY_SIZE(sdhi0_resources),
  492. .resource = sdhi0_resources,
  493. .id = 0,
  494. .dev = {
  495. .platform_data = &sdhi0_info,
  496. },
  497. };
  498. #if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
  499. /* SDHI1 */
  500. static void sdhi1_set_pwr(struct platform_device *pdev, int state)
  501. {
  502. gpio_set_value(GPIO_PTB7, state);
  503. }
  504. static struct sh_mobile_sdhi_info sdhi1_info = {
  505. .dma_slave_tx = SHDMA_SLAVE_SDHI1_TX,
  506. .dma_slave_rx = SHDMA_SLAVE_SDHI1_RX,
  507. .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD,
  508. .set_pwr = sdhi1_set_pwr,
  509. };
  510. static struct resource sdhi1_resources[] = {
  511. [0] = {
  512. .name = "SDHI1",
  513. .start = 0x04cf0000,
  514. .end = 0x04cf00ff,
  515. .flags = IORESOURCE_MEM,
  516. },
  517. [1] = {
  518. .start = 23,
  519. .flags = IORESOURCE_IRQ,
  520. },
  521. };
  522. static struct platform_device sdhi1_device = {
  523. .name = "sh_mobile_sdhi",
  524. .num_resources = ARRAY_SIZE(sdhi1_resources),
  525. .resource = sdhi1_resources,
  526. .id = 1,
  527. .dev = {
  528. .platform_data = &sdhi1_info,
  529. },
  530. };
  531. #endif /* CONFIG_MMC_SH_MMCIF */
  532. #else
  533. /* MMC SPI */
  534. static int mmc_spi_get_ro(struct device *dev)
  535. {
  536. return gpio_get_value(GPIO_PTY6);
  537. }
  538. static int mmc_spi_get_cd(struct device *dev)
  539. {
  540. return !gpio_get_value(GPIO_PTY7);
  541. }
  542. static void mmc_spi_setpower(struct device *dev, unsigned int maskval)
  543. {
  544. gpio_set_value(GPIO_PTB6, maskval ? 1 : 0);
  545. }
  546. static struct mmc_spi_platform_data mmc_spi_info = {
  547. .get_ro = mmc_spi_get_ro,
  548. .get_cd = mmc_spi_get_cd,
  549. .caps = MMC_CAP_NEEDS_POLL,
  550. .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, /* 3.3V only */
  551. .setpower = mmc_spi_setpower,
  552. };
  553. static struct spi_board_info spi_bus[] = {
  554. {
  555. .modalias = "mmc_spi",
  556. .platform_data = &mmc_spi_info,
  557. .max_speed_hz = 5000000,
  558. .mode = SPI_MODE_0,
  559. .controller_data = (void *) GPIO_PTM4,
  560. },
  561. };
  562. /* MSIOF0 */
  563. static struct sh_msiof_spi_info msiof0_data = {
  564. .num_chipselect = 1,
  565. };
  566. static struct resource msiof0_resources[] = {
  567. [0] = {
  568. .name = "MSIOF0",
  569. .start = 0xa4c40000,
  570. .end = 0xa4c40063,
  571. .flags = IORESOURCE_MEM,
  572. },
  573. [1] = {
  574. .start = 84,
  575. .flags = IORESOURCE_IRQ,
  576. },
  577. };
  578. static struct platform_device msiof0_device = {
  579. .name = "spi_sh_msiof",
  580. .id = 0, /* MSIOF0 */
  581. .dev = {
  582. .platform_data = &msiof0_data,
  583. },
  584. .num_resources = ARRAY_SIZE(msiof0_resources),
  585. .resource = msiof0_resources,
  586. };
  587. #endif
  588. /* I2C Video/Camera */
  589. static struct i2c_board_info i2c_camera[] = {
  590. {
  591. I2C_BOARD_INFO("tw9910", 0x45),
  592. },
  593. {
  594. /* 1st camera */
  595. I2C_BOARD_INFO("mt9t112", 0x3c),
  596. },
  597. {
  598. /* 2nd camera */
  599. I2C_BOARD_INFO("mt9t112", 0x3c),
  600. },
  601. };
  602. /* tw9910 */
  603. static int tw9910_power(struct device *dev, int mode)
  604. {
  605. int val = mode ? 0 : 1;
  606. gpio_set_value(GPIO_PTU2, val);
  607. if (mode)
  608. mdelay(100);
  609. return 0;
  610. }
  611. static struct tw9910_video_info tw9910_info = {
  612. .buswidth = SOCAM_DATAWIDTH_8,
  613. .mpout = TW9910_MPO_FIELD,
  614. };
  615. static struct soc_camera_link tw9910_link = {
  616. .i2c_adapter_id = 0,
  617. .bus_id = 1,
  618. .power = tw9910_power,
  619. .board_info = &i2c_camera[0],
  620. .priv = &tw9910_info,
  621. };
  622. /* mt9t112 */
  623. static int mt9t112_power1(struct device *dev, int mode)
  624. {
  625. gpio_set_value(GPIO_PTA3, mode);
  626. if (mode)
  627. mdelay(100);
  628. return 0;
  629. }
  630. static struct mt9t112_camera_info mt9t112_info1 = {
  631. .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
  632. .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
  633. };
  634. static struct soc_camera_link mt9t112_link1 = {
  635. .i2c_adapter_id = 0,
  636. .power = mt9t112_power1,
  637. .bus_id = 0,
  638. .board_info = &i2c_camera[1],
  639. .priv = &mt9t112_info1,
  640. };
  641. static int mt9t112_power2(struct device *dev, int mode)
  642. {
  643. gpio_set_value(GPIO_PTA4, mode);
  644. if (mode)
  645. mdelay(100);
  646. return 0;
  647. }
  648. static struct mt9t112_camera_info mt9t112_info2 = {
  649. .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
  650. .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
  651. };
  652. static struct soc_camera_link mt9t112_link2 = {
  653. .i2c_adapter_id = 1,
  654. .power = mt9t112_power2,
  655. .bus_id = 1,
  656. .board_info = &i2c_camera[2],
  657. .priv = &mt9t112_info2,
  658. };
  659. static struct platform_device camera_devices[] = {
  660. {
  661. .name = "soc-camera-pdrv",
  662. .id = 0,
  663. .dev = {
  664. .platform_data = &tw9910_link,
  665. },
  666. },
  667. {
  668. .name = "soc-camera-pdrv",
  669. .id = 1,
  670. .dev = {
  671. .platform_data = &mt9t112_link1,
  672. },
  673. },
  674. {
  675. .name = "soc-camera-pdrv",
  676. .id = 2,
  677. .dev = {
  678. .platform_data = &mt9t112_link2,
  679. },
  680. },
  681. };
  682. /* FSI */
  683. static struct sh_fsi_platform_info fsi_info = {
  684. .portb_flags = SH_FSI_BRS_INV,
  685. };
  686. static struct resource fsi_resources[] = {
  687. [0] = {
  688. .name = "FSI",
  689. .start = 0xFE3C0000,
  690. .end = 0xFE3C021d,
  691. .flags = IORESOURCE_MEM,
  692. },
  693. [1] = {
  694. .start = 108,
  695. .flags = IORESOURCE_IRQ,
  696. },
  697. };
  698. static struct platform_device fsi_device = {
  699. .name = "sh_fsi",
  700. .id = 0,
  701. .num_resources = ARRAY_SIZE(fsi_resources),
  702. .resource = fsi_resources,
  703. .dev = {
  704. .platform_data = &fsi_info,
  705. },
  706. };
  707. /* IrDA */
  708. static struct resource irda_resources[] = {
  709. [0] = {
  710. .name = "IrDA",
  711. .start = 0xA45D0000,
  712. .end = 0xA45D0049,
  713. .flags = IORESOURCE_MEM,
  714. },
  715. [1] = {
  716. .start = 20,
  717. .flags = IORESOURCE_IRQ,
  718. },
  719. };
  720. static struct platform_device irda_device = {
  721. .name = "sh_sir",
  722. .num_resources = ARRAY_SIZE(irda_resources),
  723. .resource = irda_resources,
  724. };
  725. #include <media/ak881x.h>
  726. #include <media/sh_vou.h>
  727. static struct ak881x_pdata ak881x_pdata = {
  728. .flags = AK881X_IF_MODE_SLAVE,
  729. };
  730. static struct i2c_board_info ak8813 = {
  731. I2C_BOARD_INFO("ak8813", 0x20),
  732. .platform_data = &ak881x_pdata,
  733. };
  734. static struct sh_vou_pdata sh_vou_pdata = {
  735. .bus_fmt = SH_VOU_BUS_8BIT,
  736. .flags = SH_VOU_HSYNC_LOW | SH_VOU_VSYNC_LOW,
  737. .board_info = &ak8813,
  738. .i2c_adap = 0,
  739. };
  740. static struct resource sh_vou_resources[] = {
  741. [0] = {
  742. .start = 0xfe960000,
  743. .end = 0xfe962043,
  744. .flags = IORESOURCE_MEM,
  745. },
  746. [1] = {
  747. .start = 55,
  748. .flags = IORESOURCE_IRQ,
  749. },
  750. };
  751. static struct platform_device vou_device = {
  752. .name = "sh-vou",
  753. .id = -1,
  754. .num_resources = ARRAY_SIZE(sh_vou_resources),
  755. .resource = sh_vou_resources,
  756. .dev = {
  757. .platform_data = &sh_vou_pdata,
  758. },
  759. };
  760. #if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
  761. /* SH_MMCIF */
  762. static void mmcif_set_pwr(struct platform_device *pdev, int state)
  763. {
  764. gpio_set_value(GPIO_PTB7, state);
  765. }
  766. static void mmcif_down_pwr(struct platform_device *pdev)
  767. {
  768. gpio_set_value(GPIO_PTB7, 0);
  769. }
  770. static struct resource sh_mmcif_resources[] = {
  771. [0] = {
  772. .name = "SH_MMCIF",
  773. .start = 0xA4CA0000,
  774. .end = 0xA4CA00FF,
  775. .flags = IORESOURCE_MEM,
  776. },
  777. [1] = {
  778. /* MMC2I */
  779. .start = 29,
  780. .flags = IORESOURCE_IRQ,
  781. },
  782. [2] = {
  783. /* MMC3I */
  784. .start = 30,
  785. .flags = IORESOURCE_IRQ,
  786. },
  787. };
  788. static struct sh_mmcif_plat_data sh_mmcif_plat = {
  789. .set_pwr = mmcif_set_pwr,
  790. .down_pwr = mmcif_down_pwr,
  791. .sup_pclk = 0, /* SH7724: Max Pclk/2 */
  792. .caps = MMC_CAP_4_BIT_DATA |
  793. MMC_CAP_8_BIT_DATA |
  794. MMC_CAP_NEEDS_POLL,
  795. .ocr = MMC_VDD_32_33 | MMC_VDD_33_34,
  796. };
  797. static struct platform_device sh_mmcif_device = {
  798. .name = "sh_mmcif",
  799. .id = 0,
  800. .dev = {
  801. .platform_data = &sh_mmcif_plat,
  802. },
  803. .num_resources = ARRAY_SIZE(sh_mmcif_resources),
  804. .resource = sh_mmcif_resources,
  805. };
  806. #endif
  807. static struct platform_device *ecovec_devices[] __initdata = {
  808. &heartbeat_device,
  809. &nor_flash_device,
  810. &sh_eth_device,
  811. &usb0_host_device,
  812. &usb1_common_device,
  813. &usbhs_device,
  814. &lcdc_device,
  815. &ceu0_device,
  816. &ceu1_device,
  817. &keysc_device,
  818. #if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
  819. &sdhi0_device,
  820. #if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
  821. &sdhi1_device,
  822. #endif
  823. #else
  824. &msiof0_device,
  825. #endif
  826. &camera_devices[0],
  827. &camera_devices[1],
  828. &camera_devices[2],
  829. &fsi_device,
  830. &irda_device,
  831. &vou_device,
  832. #if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
  833. &sh_mmcif_device,
  834. #endif
  835. };
  836. #ifdef CONFIG_I2C
  837. #define EEPROM_ADDR 0x50
  838. static u8 mac_read(struct i2c_adapter *a, u8 command)
  839. {
  840. struct i2c_msg msg[2];
  841. u8 buf;
  842. int ret;
  843. msg[0].addr = EEPROM_ADDR;
  844. msg[0].flags = 0;
  845. msg[0].len = 1;
  846. msg[0].buf = &command;
  847. msg[1].addr = EEPROM_ADDR;
  848. msg[1].flags = I2C_M_RD;
  849. msg[1].len = 1;
  850. msg[1].buf = &buf;
  851. ret = i2c_transfer(a, msg, 2);
  852. if (ret < 0) {
  853. printk(KERN_ERR "error %d\n", ret);
  854. buf = 0xff;
  855. }
  856. return buf;
  857. }
  858. static void __init sh_eth_init(struct sh_eth_plat_data *pd)
  859. {
  860. struct i2c_adapter *a = i2c_get_adapter(1);
  861. int i;
  862. if (!a) {
  863. pr_err("can not get I2C 1\n");
  864. return;
  865. }
  866. /* read MAC address from EEPROM */
  867. for (i = 0; i < sizeof(pd->mac_addr); i++) {
  868. pd->mac_addr[i] = mac_read(a, 0x10 + i);
  869. msleep(10);
  870. }
  871. i2c_put_adapter(a);
  872. }
  873. #else
  874. static void __init sh_eth_init(struct sh_eth_plat_data *pd)
  875. {
  876. pr_err("unable to read sh_eth MAC address\n");
  877. }
  878. #endif
  879. #define PORT_HIZA 0xA4050158
  880. #define IODRIVEA 0xA405018A
  881. extern char ecovec24_sdram_enter_start;
  882. extern char ecovec24_sdram_enter_end;
  883. extern char ecovec24_sdram_leave_start;
  884. extern char ecovec24_sdram_leave_end;
  885. static int __init arch_setup(void)
  886. {
  887. struct clk *clk;
  888. /* register board specific self-refresh code */
  889. sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF |
  890. SUSP_SH_RSTANDBY,
  891. &ecovec24_sdram_enter_start,
  892. &ecovec24_sdram_enter_end,
  893. &ecovec24_sdram_leave_start,
  894. &ecovec24_sdram_leave_end);
  895. /* enable STATUS0, STATUS2 and PDSTATUS */
  896. gpio_request(GPIO_FN_STATUS0, NULL);
  897. gpio_request(GPIO_FN_STATUS2, NULL);
  898. gpio_request(GPIO_FN_PDSTATUS, NULL);
  899. /* enable SCIFA0 */
  900. gpio_request(GPIO_FN_SCIF0_TXD, NULL);
  901. gpio_request(GPIO_FN_SCIF0_RXD, NULL);
  902. /* enable debug LED */
  903. gpio_request(GPIO_PTG0, NULL);
  904. gpio_request(GPIO_PTG1, NULL);
  905. gpio_request(GPIO_PTG2, NULL);
  906. gpio_request(GPIO_PTG3, NULL);
  907. gpio_direction_output(GPIO_PTG0, 0);
  908. gpio_direction_output(GPIO_PTG1, 0);
  909. gpio_direction_output(GPIO_PTG2, 0);
  910. gpio_direction_output(GPIO_PTG3, 0);
  911. __raw_writew((__raw_readw(PORT_HIZA) & ~(0x1 << 1)) , PORT_HIZA);
  912. /* enable SH-Eth */
  913. gpio_request(GPIO_PTA1, NULL);
  914. gpio_direction_output(GPIO_PTA1, 1);
  915. mdelay(20);
  916. gpio_request(GPIO_FN_RMII_RXD0, NULL);
  917. gpio_request(GPIO_FN_RMII_RXD1, NULL);
  918. gpio_request(GPIO_FN_RMII_TXD0, NULL);
  919. gpio_request(GPIO_FN_RMII_TXD1, NULL);
  920. gpio_request(GPIO_FN_RMII_REF_CLK, NULL);
  921. gpio_request(GPIO_FN_RMII_TX_EN, NULL);
  922. gpio_request(GPIO_FN_RMII_RX_ER, NULL);
  923. gpio_request(GPIO_FN_RMII_CRS_DV, NULL);
  924. gpio_request(GPIO_FN_MDIO, NULL);
  925. gpio_request(GPIO_FN_MDC, NULL);
  926. gpio_request(GPIO_FN_LNKSTA, NULL);
  927. /* enable USB */
  928. __raw_writew(0x0000, 0xA4D80000);
  929. __raw_writew(0x0000, 0xA4D90000);
  930. gpio_request(GPIO_PTB3, NULL);
  931. gpio_request(GPIO_PTB4, NULL);
  932. gpio_request(GPIO_PTB5, NULL);
  933. gpio_direction_input(GPIO_PTB3);
  934. gpio_direction_output(GPIO_PTB4, 0);
  935. gpio_direction_output(GPIO_PTB5, 0);
  936. __raw_writew(0x0600, 0xa40501d4);
  937. __raw_writew(0x0600, 0xa4050192);
  938. if (gpio_get_value(GPIO_PTB3)) {
  939. printk(KERN_INFO "USB1 function is selected\n");
  940. usb1_common_device.name = "r8a66597_udc";
  941. } else {
  942. printk(KERN_INFO "USB1 host is selected\n");
  943. usb1_common_device.name = "r8a66597_hcd";
  944. }
  945. /* enable LCDC */
  946. gpio_request(GPIO_FN_LCDD23, NULL);
  947. gpio_request(GPIO_FN_LCDD22, NULL);
  948. gpio_request(GPIO_FN_LCDD21, NULL);
  949. gpio_request(GPIO_FN_LCDD20, NULL);
  950. gpio_request(GPIO_FN_LCDD19, NULL);
  951. gpio_request(GPIO_FN_LCDD18, NULL);
  952. gpio_request(GPIO_FN_LCDD17, NULL);
  953. gpio_request(GPIO_FN_LCDD16, NULL);
  954. gpio_request(GPIO_FN_LCDD15, NULL);
  955. gpio_request(GPIO_FN_LCDD14, NULL);
  956. gpio_request(GPIO_FN_LCDD13, NULL);
  957. gpio_request(GPIO_FN_LCDD12, NULL);
  958. gpio_request(GPIO_FN_LCDD11, NULL);
  959. gpio_request(GPIO_FN_LCDD10, NULL);
  960. gpio_request(GPIO_FN_LCDD9, NULL);
  961. gpio_request(GPIO_FN_LCDD8, NULL);
  962. gpio_request(GPIO_FN_LCDD7, NULL);
  963. gpio_request(GPIO_FN_LCDD6, NULL);
  964. gpio_request(GPIO_FN_LCDD5, NULL);
  965. gpio_request(GPIO_FN_LCDD4, NULL);
  966. gpio_request(GPIO_FN_LCDD3, NULL);
  967. gpio_request(GPIO_FN_LCDD2, NULL);
  968. gpio_request(GPIO_FN_LCDD1, NULL);
  969. gpio_request(GPIO_FN_LCDD0, NULL);
  970. gpio_request(GPIO_FN_LCDDISP, NULL);
  971. gpio_request(GPIO_FN_LCDHSYN, NULL);
  972. gpio_request(GPIO_FN_LCDDCK, NULL);
  973. gpio_request(GPIO_FN_LCDVSYN, NULL);
  974. gpio_request(GPIO_FN_LCDDON, NULL);
  975. gpio_request(GPIO_FN_LCDLCLK, NULL);
  976. __raw_writew((__raw_readw(PORT_HIZA) & ~0x0001), PORT_HIZA);
  977. gpio_request(GPIO_PTE6, NULL);
  978. gpio_request(GPIO_PTU1, NULL);
  979. gpio_request(GPIO_PTR1, NULL);
  980. gpio_request(GPIO_PTA2, NULL);
  981. gpio_direction_input(GPIO_PTE6);
  982. gpio_direction_output(GPIO_PTU1, 0);
  983. gpio_direction_output(GPIO_PTR1, 0);
  984. gpio_direction_output(GPIO_PTA2, 0);
  985. /* I/O buffer drive ability is high */
  986. __raw_writew((__raw_readw(IODRIVEA) & ~0x00c0) | 0x0080 , IODRIVEA);
  987. if (gpio_get_value(GPIO_PTE6)) {
  988. /* DVI */
  989. lcdc_info.clock_source = LCDC_CLK_EXTERNAL;
  990. lcdc_info.ch[0].clock_divider = 1;
  991. lcdc_info.ch[0].lcd_cfg = ecovec_dvi_modes;
  992. lcdc_info.ch[0].num_cfg = ARRAY_SIZE(ecovec_dvi_modes);
  993. gpio_set_value(GPIO_PTA2, 1);
  994. gpio_set_value(GPIO_PTU1, 1);
  995. } else {
  996. /* Panel */
  997. lcdc_info.clock_source = LCDC_CLK_PERIPHERAL;
  998. lcdc_info.ch[0].clock_divider = 2;
  999. lcdc_info.ch[0].lcd_cfg = ecovec_lcd_modes;
  1000. lcdc_info.ch[0].num_cfg = ARRAY_SIZE(ecovec_lcd_modes);
  1001. gpio_set_value(GPIO_PTR1, 1);
  1002. /* FIXME
  1003. *
  1004. * LCDDON control is needed for Panel,
  1005. * but current sh_mobile_lcdc driver doesn't control it.
  1006. * It is temporary correspondence
  1007. */
  1008. gpio_request(GPIO_PTF4, NULL);
  1009. gpio_direction_output(GPIO_PTF4, 1);
  1010. /* enable TouchScreen */
  1011. i2c_register_board_info(0, &ts_i2c_clients, 1);
  1012. irq_set_irq_type(IRQ0, IRQ_TYPE_LEVEL_LOW);
  1013. }
  1014. /* enable CEU0 */
  1015. gpio_request(GPIO_FN_VIO0_D15, NULL);
  1016. gpio_request(GPIO_FN_VIO0_D14, NULL);
  1017. gpio_request(GPIO_FN_VIO0_D13, NULL);
  1018. gpio_request(GPIO_FN_VIO0_D12, NULL);
  1019. gpio_request(GPIO_FN_VIO0_D11, NULL);
  1020. gpio_request(GPIO_FN_VIO0_D10, NULL);
  1021. gpio_request(GPIO_FN_VIO0_D9, NULL);
  1022. gpio_request(GPIO_FN_VIO0_D8, NULL);
  1023. gpio_request(GPIO_FN_VIO0_D7, NULL);
  1024. gpio_request(GPIO_FN_VIO0_D6, NULL);
  1025. gpio_request(GPIO_FN_VIO0_D5, NULL);
  1026. gpio_request(GPIO_FN_VIO0_D4, NULL);
  1027. gpio_request(GPIO_FN_VIO0_D3, NULL);
  1028. gpio_request(GPIO_FN_VIO0_D2, NULL);
  1029. gpio_request(GPIO_FN_VIO0_D1, NULL);
  1030. gpio_request(GPIO_FN_VIO0_D0, NULL);
  1031. gpio_request(GPIO_FN_VIO0_VD, NULL);
  1032. gpio_request(GPIO_FN_VIO0_CLK, NULL);
  1033. gpio_request(GPIO_FN_VIO0_FLD, NULL);
  1034. gpio_request(GPIO_FN_VIO0_HD, NULL);
  1035. platform_resource_setup_memory(&ceu0_device, "ceu0", 4 << 20);
  1036. /* enable CEU1 */
  1037. gpio_request(GPIO_FN_VIO1_D7, NULL);
  1038. gpio_request(GPIO_FN_VIO1_D6, NULL);
  1039. gpio_request(GPIO_FN_VIO1_D5, NULL);
  1040. gpio_request(GPIO_FN_VIO1_D4, NULL);
  1041. gpio_request(GPIO_FN_VIO1_D3, NULL);
  1042. gpio_request(GPIO_FN_VIO1_D2, NULL);
  1043. gpio_request(GPIO_FN_VIO1_D1, NULL);
  1044. gpio_request(GPIO_FN_VIO1_D0, NULL);
  1045. gpio_request(GPIO_FN_VIO1_FLD, NULL);
  1046. gpio_request(GPIO_FN_VIO1_HD, NULL);
  1047. gpio_request(GPIO_FN_VIO1_VD, NULL);
  1048. gpio_request(GPIO_FN_VIO1_CLK, NULL);
  1049. platform_resource_setup_memory(&ceu1_device, "ceu1", 4 << 20);
  1050. /* enable KEYSC */
  1051. gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
  1052. gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
  1053. gpio_request(GPIO_FN_KEYOUT3, NULL);
  1054. gpio_request(GPIO_FN_KEYOUT2, NULL);
  1055. gpio_request(GPIO_FN_KEYOUT1, NULL);
  1056. gpio_request(GPIO_FN_KEYOUT0, NULL);
  1057. gpio_request(GPIO_FN_KEYIN0, NULL);
  1058. /* enable user debug switch */
  1059. gpio_request(GPIO_PTR0, NULL);
  1060. gpio_request(GPIO_PTR4, NULL);
  1061. gpio_request(GPIO_PTR5, NULL);
  1062. gpio_request(GPIO_PTR6, NULL);
  1063. gpio_direction_input(GPIO_PTR0);
  1064. gpio_direction_input(GPIO_PTR4);
  1065. gpio_direction_input(GPIO_PTR5);
  1066. gpio_direction_input(GPIO_PTR6);
  1067. #if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
  1068. /* enable SDHI0 on CN11 (needs DS2.4 set to ON) */
  1069. gpio_request(GPIO_FN_SDHI0CD, NULL);
  1070. gpio_request(GPIO_FN_SDHI0WP, NULL);
  1071. gpio_request(GPIO_FN_SDHI0CMD, NULL);
  1072. gpio_request(GPIO_FN_SDHI0CLK, NULL);
  1073. gpio_request(GPIO_FN_SDHI0D3, NULL);
  1074. gpio_request(GPIO_FN_SDHI0D2, NULL);
  1075. gpio_request(GPIO_FN_SDHI0D1, NULL);
  1076. gpio_request(GPIO_FN_SDHI0D0, NULL);
  1077. gpio_request(GPIO_PTB6, NULL);
  1078. gpio_direction_output(GPIO_PTB6, 0);
  1079. #if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
  1080. /* enable SDHI1 on CN12 (needs DS2.6,7 set to ON,OFF) */
  1081. gpio_request(GPIO_FN_SDHI1CD, NULL);
  1082. gpio_request(GPIO_FN_SDHI1WP, NULL);
  1083. gpio_request(GPIO_FN_SDHI1CMD, NULL);
  1084. gpio_request(GPIO_FN_SDHI1CLK, NULL);
  1085. gpio_request(GPIO_FN_SDHI1D3, NULL);
  1086. gpio_request(GPIO_FN_SDHI1D2, NULL);
  1087. gpio_request(GPIO_FN_SDHI1D1, NULL);
  1088. gpio_request(GPIO_FN_SDHI1D0, NULL);
  1089. gpio_request(GPIO_PTB7, NULL);
  1090. gpio_direction_output(GPIO_PTB7, 0);
  1091. /* I/O buffer drive ability is high for SDHI1 */
  1092. __raw_writew((__raw_readw(IODRIVEA) & ~0x3000) | 0x2000 , IODRIVEA);
  1093. #endif /* CONFIG_MMC_SH_MMCIF */
  1094. #else
  1095. /* enable MSIOF0 on CN11 (needs DS2.4 set to OFF) */
  1096. gpio_request(GPIO_FN_MSIOF0_TXD, NULL);
  1097. gpio_request(GPIO_FN_MSIOF0_RXD, NULL);
  1098. gpio_request(GPIO_FN_MSIOF0_TSCK, NULL);
  1099. gpio_request(GPIO_PTM4, NULL); /* software CS control of TSYNC pin */
  1100. gpio_direction_output(GPIO_PTM4, 1); /* active low CS */
  1101. gpio_request(GPIO_PTB6, NULL); /* 3.3V power control */
  1102. gpio_direction_output(GPIO_PTB6, 0); /* disable power by default */
  1103. gpio_request(GPIO_PTY6, NULL); /* write protect */
  1104. gpio_direction_input(GPIO_PTY6);
  1105. gpio_request(GPIO_PTY7, NULL); /* card detect */
  1106. gpio_direction_input(GPIO_PTY7);
  1107. spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus));
  1108. #endif
  1109. /* enable Video */
  1110. gpio_request(GPIO_PTU2, NULL);
  1111. gpio_direction_output(GPIO_PTU2, 1);
  1112. /* enable Camera */
  1113. gpio_request(GPIO_PTA3, NULL);
  1114. gpio_request(GPIO_PTA4, NULL);
  1115. gpio_direction_output(GPIO_PTA3, 0);
  1116. gpio_direction_output(GPIO_PTA4, 0);
  1117. /* enable FSI */
  1118. gpio_request(GPIO_FN_FSIMCKB, NULL);
  1119. gpio_request(GPIO_FN_FSIIBSD, NULL);
  1120. gpio_request(GPIO_FN_FSIOBSD, NULL);
  1121. gpio_request(GPIO_FN_FSIIBBCK, NULL);
  1122. gpio_request(GPIO_FN_FSIIBLRCK, NULL);
  1123. gpio_request(GPIO_FN_FSIOBBCK, NULL);
  1124. gpio_request(GPIO_FN_FSIOBLRCK, NULL);
  1125. gpio_request(GPIO_FN_CLKAUDIOBO, NULL);
  1126. /* set SPU2 clock to 83.4 MHz */
  1127. clk = clk_get(NULL, "spu_clk");
  1128. if (!IS_ERR(clk)) {
  1129. clk_set_rate(clk, clk_round_rate(clk, 83333333));
  1130. clk_put(clk);
  1131. }
  1132. /* change parent of FSI B */
  1133. clk = clk_get(NULL, "fsib_clk");
  1134. if (!IS_ERR(clk)) {
  1135. /* 48kHz dummy clock was used to make sure 1/1 divide */
  1136. clk_set_rate(&sh7724_fsimckb_clk, 48000);
  1137. clk_set_parent(clk, &sh7724_fsimckb_clk);
  1138. clk_set_rate(clk, 48000);
  1139. clk_put(clk);
  1140. }
  1141. gpio_request(GPIO_PTU0, NULL);
  1142. gpio_direction_output(GPIO_PTU0, 0);
  1143. mdelay(20);
  1144. /* enable motion sensor */
  1145. gpio_request(GPIO_FN_INTC_IRQ1, NULL);
  1146. gpio_direction_input(GPIO_FN_INTC_IRQ1);
  1147. /* set VPU clock to 166 MHz */
  1148. clk = clk_get(NULL, "vpu_clk");
  1149. if (!IS_ERR(clk)) {
  1150. clk_set_rate(clk, clk_round_rate(clk, 166000000));
  1151. clk_put(clk);
  1152. }
  1153. /* enable IrDA */
  1154. gpio_request(GPIO_FN_IRDA_OUT, NULL);
  1155. gpio_request(GPIO_FN_IRDA_IN, NULL);
  1156. gpio_request(GPIO_PTU5, NULL);
  1157. gpio_direction_output(GPIO_PTU5, 0);
  1158. #if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
  1159. /* enable MMCIF (needs DS2.6,7 set to OFF,ON) */
  1160. gpio_request(GPIO_FN_MMC_D7, NULL);
  1161. gpio_request(GPIO_FN_MMC_D6, NULL);
  1162. gpio_request(GPIO_FN_MMC_D5, NULL);
  1163. gpio_request(GPIO_FN_MMC_D4, NULL);
  1164. gpio_request(GPIO_FN_MMC_D3, NULL);
  1165. gpio_request(GPIO_FN_MMC_D2, NULL);
  1166. gpio_request(GPIO_FN_MMC_D1, NULL);
  1167. gpio_request(GPIO_FN_MMC_D0, NULL);
  1168. gpio_request(GPIO_FN_MMC_CLK, NULL);
  1169. gpio_request(GPIO_FN_MMC_CMD, NULL);
  1170. gpio_request(GPIO_PTB7, NULL);
  1171. gpio_direction_output(GPIO_PTB7, 0);
  1172. /* I/O buffer drive ability is high for MMCIF */
  1173. __raw_writew((__raw_readw(IODRIVEA) & ~0x3000) | 0x2000 , IODRIVEA);
  1174. #endif
  1175. /* enable I2C device */
  1176. i2c_register_board_info(0, i2c0_devices,
  1177. ARRAY_SIZE(i2c0_devices));
  1178. i2c_register_board_info(1, i2c1_devices,
  1179. ARRAY_SIZE(i2c1_devices));
  1180. #if defined(CONFIG_VIDEO_SH_VOU) || defined(CONFIG_VIDEO_SH_VOU_MODULE)
  1181. /* VOU */
  1182. gpio_request(GPIO_FN_DV_D15, NULL);
  1183. gpio_request(GPIO_FN_DV_D14, NULL);
  1184. gpio_request(GPIO_FN_DV_D13, NULL);
  1185. gpio_request(GPIO_FN_DV_D12, NULL);
  1186. gpio_request(GPIO_FN_DV_D11, NULL);
  1187. gpio_request(GPIO_FN_DV_D10, NULL);
  1188. gpio_request(GPIO_FN_DV_D9, NULL);
  1189. gpio_request(GPIO_FN_DV_D8, NULL);
  1190. gpio_request(GPIO_FN_DV_CLKI, NULL);
  1191. gpio_request(GPIO_FN_DV_CLK, NULL);
  1192. gpio_request(GPIO_FN_DV_VSYNC, NULL);
  1193. gpio_request(GPIO_FN_DV_HSYNC, NULL);
  1194. /* AK8813 power / reset sequence */
  1195. gpio_request(GPIO_PTG4, NULL);
  1196. gpio_request(GPIO_PTU3, NULL);
  1197. /* Reset */
  1198. gpio_direction_output(GPIO_PTG4, 0);
  1199. /* Power down */
  1200. gpio_direction_output(GPIO_PTU3, 1);
  1201. udelay(10);
  1202. /* Power up, reset */
  1203. gpio_set_value(GPIO_PTU3, 0);
  1204. udelay(10);
  1205. /* Remove reset */
  1206. gpio_set_value(GPIO_PTG4, 1);
  1207. #endif
  1208. return platform_add_devices(ecovec_devices,
  1209. ARRAY_SIZE(ecovec_devices));
  1210. }
  1211. arch_initcall(arch_setup);
  1212. static int __init devices_setup(void)
  1213. {
  1214. sh_eth_init(&sh_eth_plat);
  1215. return 0;
  1216. }
  1217. device_initcall(devices_setup);
  1218. static struct sh_machine_vector mv_ecovec __initmv = {
  1219. .mv_name = "R0P7724 (EcoVec)",
  1220. };