netwinder-hw.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-footbridge/netwinder-hw.c
  3.  *
  4.  * Netwinder machine fixup
  5.  *
  6.  * Copyright (C) 1998, 1999 Russell King, Phil Blundell
  7.  */
  8. #include <linux/config.h>
  9. #include <linux/module.h>
  10. #include <linux/sched.h>
  11. #include <linux/ioport.h>
  12. #include <linux/kernel.h>
  13. #include <linux/delay.h>
  14. #include <linux/init.h>
  15. #include <asm/io.h>
  16. #include <asm/leds.h>
  17. #include <asm/mach-types.h>
  18. #define IRDA_IO_BASE 0x180
  19. #define GP1_IO_BASE 0x338
  20. #define GP2_IO_BASE 0x33a
  21. #ifdef CONFIG_LEDS
  22. #define DEFAULT_LEDS 0
  23. #else
  24. #define DEFAULT_LEDS GPIO_GREEN_LED
  25. #endif
  26. /*
  27.  * Winbond WB83977F accessibility stuff
  28.  */
  29. static inline void wb977_open(void)
  30. {
  31. outb(0x87, 0x370);
  32. outb(0x87, 0x370);
  33. }
  34. static inline void wb977_close(void)
  35. {
  36. outb(0xaa, 0x370);
  37. }
  38. static inline void wb977_wb(int reg, int val)
  39. {
  40. outb(reg, 0x370);
  41. outb(val, 0x371);
  42. }
  43. static inline void wb977_ww(int reg, int val)
  44. {
  45. outb(reg, 0x370);
  46. outb(val >> 8, 0x371);
  47. outb(reg + 1, 0x370);
  48. outb(val, 0x371);
  49. }
  50. #define wb977_device_select(dev) wb977_wb(0x07, dev)
  51. #define wb977_device_disable() wb977_wb(0x30, 0x00)
  52. #define wb977_device_enable() wb977_wb(0x30, 0x01)
  53. /*
  54.  * This is a lock for accessing ports GP1_IO_BASE and GP2_IO_BASE
  55.  */
  56. spinlock_t gpio_lock = SPIN_LOCK_UNLOCKED;
  57. static unsigned int current_gpio_op;
  58. static unsigned int current_gpio_io;
  59. static unsigned int current_cpld;
  60. void gpio_modify_op(int mask, int set)
  61. {
  62. unsigned int new_gpio, changed;
  63. new_gpio = (current_gpio_op & ~mask) | set;
  64. changed = new_gpio ^ current_gpio_op;
  65. current_gpio_op = new_gpio;
  66. if (changed & 0xff)
  67. outb(new_gpio, GP1_IO_BASE);
  68. if (changed & 0xff00)
  69. outb(new_gpio >> 8, GP2_IO_BASE);
  70. }
  71. static inline void __gpio_modify_io(int mask, int in)
  72. {
  73. unsigned int new_gpio, changed;
  74. int port;
  75. new_gpio = (current_gpio_io & ~mask) | in;
  76. changed = new_gpio ^ current_gpio_io;
  77. current_gpio_io = new_gpio;
  78. changed >>= 1;
  79. new_gpio >>= 1;
  80. wb977_device_select(7);
  81. for (port = 0xe1; changed && port < 0xe8; changed >>= 1) {
  82. wb977_wb(port, new_gpio & 1);
  83. port += 1;
  84. new_gpio >>= 1;
  85. }
  86. wb977_device_select(8);
  87. for (port = 0xe8; changed && port < 0xec; changed >>= 1) {
  88. wb977_wb(port, new_gpio & 1);
  89. port += 1;
  90. new_gpio >>= 1;
  91. }
  92. }
  93. void gpio_modify_io(int mask, int in)
  94. {
  95. /* Open up the SuperIO chip */
  96. wb977_open();
  97. __gpio_modify_io(mask, in);
  98. /* Close up the EFER gate */
  99. wb977_close();
  100. }
  101. int gpio_read(void)
  102. {
  103. return inb(GP1_IO_BASE) | inb(GP2_IO_BASE) << 8;
  104. }
  105. /*
  106.  * Initialise the Winbond W83977F global registers
  107.  */
  108. static inline void wb977_init_global(void)
  109. {
  110. /*
  111.  * Enable R/W config registers
  112.  */
  113. wb977_wb(0x26, 0x40);
  114. /*
  115.  * Power down FDC (not used)
  116.  */
  117. wb977_wb(0x22, 0xfe);
  118. /*
  119.  * GP12, GP11, CIRRX, IRRXH, GP10
  120.  */
  121. wb977_wb(0x2a, 0xc1);
  122. /*
  123.  * GP23, GP22, GP21, GP20, GP13
  124.  */
  125. wb977_wb(0x2b, 0x6b);
  126. /*
  127.  * GP17, GP16, GP15, GP14
  128.  */
  129. wb977_wb(0x2c, 0x55);
  130. }
  131. /*
  132.  * Initialise the Winbond W83977F printer port
  133.  */
  134. static inline void wb977_init_printer(void)
  135. {
  136. wb977_device_select(1);
  137. /*
  138.  * mode 1 == EPP
  139.  */
  140. wb977_wb(0xf0, 0x01);
  141. }
  142. /*
  143.  * Initialise the Winbond W83977F keyboard controller
  144.  */
  145. static inline void wb977_init_keyboard(void)
  146. {
  147. wb977_device_select(5);
  148. /*
  149.  * Keyboard controller address
  150.  */
  151. wb977_ww(0x60, 0x0060);
  152. wb977_ww(0x62, 0x0064);
  153. /*
  154.  * Keyboard IRQ 1, active high, edge trigger
  155.  */
  156. wb977_wb(0x70, 1);
  157. wb977_wb(0x71, 0x02);
  158. /*
  159.  * Mouse IRQ 5, active high, edge trigger
  160.  */
  161. wb977_wb(0x72, 5);
  162. wb977_wb(0x73, 0x02);
  163. /*
  164.  * KBC 8MHz
  165.  */
  166. wb977_wb(0xf0, 0x40);
  167. /*
  168.  * Enable device
  169.  */
  170. wb977_device_enable();
  171. }
  172. /*
  173.  * Initialise the Winbond W83977F Infra-Red device
  174.  */
  175. static inline void wb977_init_irda(void)
  176. {
  177. wb977_device_select(6);
  178. /*
  179.  * IR base address
  180.  */
  181. wb977_ww(0x60, IRDA_IO_BASE);
  182. /*
  183.  * IRDA IRQ 6, active high, edge trigger
  184.  */
  185. wb977_wb(0x70, 6);
  186. wb977_wb(0x71, 0x02);
  187. /*
  188.  * RX DMA - ISA DMA 0
  189.  */
  190. wb977_wb(0x74, 0x00);
  191. /*
  192.  * TX DMA - Disable Tx DMA
  193.  */
  194. wb977_wb(0x75, 0x04);
  195. /*
  196.  * Append CRC, Enable bank selection
  197.  */
  198. wb977_wb(0xf0, 0x03);
  199. /*
  200.  * Enable device
  201.  */
  202. wb977_device_enable();
  203. }
  204. /*
  205.  * Initialise Winbond W83977F general purpose IO
  206.  */
  207. static inline void wb977_init_gpio(void)
  208. {
  209. unsigned long flags;
  210. /*
  211.  * Set up initial I/O definitions
  212.  */
  213. current_gpio_io = -1;
  214. __gpio_modify_io(-1, GPIO_DONE | GPIO_WDTIMER);
  215. wb977_device_select(7);
  216. /*
  217.  * Group1 base address
  218.  */
  219. wb977_ww(0x60, GP1_IO_BASE);
  220. wb977_ww(0x62, 0);
  221. wb977_ww(0x64, 0);
  222. /*
  223.  * GP10 (Orage button) IRQ 10, active high, edge trigger
  224.  */
  225. wb977_wb(0x70, 10);
  226. wb977_wb(0x71, 0x02);
  227. /*
  228.  * GP10: Debounce filter enabled, IRQ, input
  229.  */
  230. wb977_wb(0xe0, 0x19);
  231. /*
  232.  * Enable Group1
  233.  */
  234. wb977_device_enable();
  235. wb977_device_select(8);
  236. /*
  237.  * Group2 base address
  238.  */
  239. wb977_ww(0x60, GP2_IO_BASE);
  240. /*
  241.  * Clear watchdog timer regs
  242.  *  - timer disable
  243.  */
  244. wb977_wb(0xf2, 0x00);
  245. /*
  246.  *  - disable LED, no mouse nor keyboard IRQ
  247.  */
  248. wb977_wb(0xf3, 0x00);
  249. /*
  250.  *  - timer counting, disable power LED, disable timeouot
  251.  */
  252. wb977_wb(0xf4, 0x00);
  253. /*
  254.  * Enable group2
  255.  */
  256. wb977_device_enable();
  257. /*
  258.  * Set Group1/Group2 outputs
  259.  */
  260. spin_lock_irqsave(&gpio_lock, flags);
  261. gpio_modify_op(-1, GPIO_RED_LED | GPIO_FAN);
  262. spin_unlock_irqrestore(&gpio_loc, flags);
  263. }
  264. /*
  265.  * Initialise the Winbond W83977F chip.
  266.  */
  267. static void __init wb977_init(void)
  268. {
  269. request_region(0x370, 2, "W83977AF configuration");
  270. /*
  271.  * Open up the SuperIO chip
  272.  */
  273. wb977_open();
  274. /*
  275.  * Initialise the global registers
  276.  */
  277. wb977_init_global();
  278. /*
  279.  * Initialise the various devices in
  280.  * the multi-IO chip.
  281.  */
  282. wb977_init_printer();
  283. wb977_init_keyboard();
  284. wb977_init_irda();
  285. wb977_init_gpio();
  286. /*
  287.  * Close up the EFER gate
  288.  */
  289. wb977_close();
  290. }
  291. void cpld_modify(int mask, int set)
  292. {
  293. int msk;
  294. current_cpld = (current_cpld & ~mask) | set;
  295. gpio_modify_io(GPIO_DATA | GPIO_IOCLK | GPIO_IOLOAD, 0);
  296. gpio_modify_op(GPIO_IOLOAD, 0);
  297. for (msk = 8; msk; msk >>= 1) {
  298. int bit = current_cpld & msk;
  299. gpio_modify_op(GPIO_DATA | GPIO_IOCLK, bit ? GPIO_DATA : 0);
  300. gpio_modify_op(GPIO_IOCLK, GPIO_IOCLK);
  301. }
  302. gpio_modify_op(GPIO_IOCLK|GPIO_DATA, 0);
  303. gpio_modify_op(GPIO_IOLOAD|GPIO_DSCLK, GPIO_IOLOAD|GPIO_DSCLK);
  304. gpio_modify_op(GPIO_IOLOAD, 0);
  305. }
  306. static void __init cpld_init(void)
  307. {
  308. unsigned long flags;
  309. spin_lock_irqsave(&gpio_lock, flags);
  310. cpld_modify(-1, CPLD_UNMUTE | CPLD_7111_DISABLE);
  311. spin_unlock_irqrestore(&gpio_lock, flags);
  312. }
  313. static unsigned char rwa_unlock[] __initdata =
  314. { 0x00, 0x00, 0x6a, 0xb5, 0xda, 0xed, 0xf6, 0xfb, 0x7d, 0xbe, 0xdf, 0x6f, 0x37, 0x1b,
  315.   0x0d, 0x86, 0xc3, 0x61, 0xb0, 0x58, 0x2c, 0x16, 0x8b, 0x45, 0xa2, 0xd1, 0xe8, 0x74,
  316.   0x3a, 0x9d, 0xce, 0xe7, 0x73, 0x39 };
  317. #ifndef DEBUG
  318. #define dprintk(x...)
  319. #else
  320. #define dprintk(x...) printk(x)
  321. #endif
  322. #define WRITE_RWA(r,v) do { outb((r), 0x279); udelay(10); outb((v), 0xa79); } while (0)
  323. static inline void rwa010_unlock(void)
  324. {
  325. int i;
  326. WRITE_RWA(2, 2);
  327. mdelay(10);
  328. for (i = 0; i < sizeof(rwa_unlock); i++) {
  329. outb(rwa_unlock[i], 0x279);
  330. udelay(10);
  331. }
  332. }
  333. static inline void rwa010_read_ident(void)
  334. {
  335. unsigned char si[9];
  336. int i, j;
  337. WRITE_RWA(3, 0);
  338. WRITE_RWA(0, 128);
  339. outb(1, 0x279);
  340. mdelay(1);
  341. dprintk("Identifier: ");
  342. for (i = 0; i < 9; i++) {
  343. si[i] = 0;
  344. for (j = 0; j < 8; j++) {
  345. int bit;
  346. udelay(250);
  347. inb(0x203);
  348. udelay(250);
  349. bit = inb(0x203);
  350. dprintk("%02X ", bit);
  351. bit = (bit == 0xaa) ? 1 : 0;
  352. si[i] |= bit << j;
  353. }
  354. dprintk("(%02X) ", si[i]);
  355. }
  356. dprintk("n");
  357. }
  358. static inline void rwa010_global_init(void)
  359. {
  360. WRITE_RWA(6, 2); // Assign a card no = 2
  361. dprintk("Card no = %dn", inb(0x203));
  362. /* disable the modem section of the chip */
  363. WRITE_RWA(7, 3);
  364. WRITE_RWA(0x30, 0);
  365. /* disable the cdrom section of the chip */
  366. WRITE_RWA(7, 4);
  367. WRITE_RWA(0x30, 0);
  368. /* disable the MPU-401 section of the chip */
  369. WRITE_RWA(7, 2);
  370. WRITE_RWA(0x30, 0);
  371. }
  372. static inline void rwa010_game_port_init(void)
  373. {
  374. int i;
  375. WRITE_RWA(7, 5);
  376. dprintk("Slider base: ");
  377. WRITE_RWA(0x61, 1);
  378. i = inb(0x203);
  379. WRITE_RWA(0x60, 2);
  380. dprintk("%02X%02X (201)n", inb(0x203), i);
  381. WRITE_RWA(0x30, 1);
  382. }
  383. static inline void rwa010_waveartist_init(int base, int irq, int dma)
  384. {
  385. int i;
  386. WRITE_RWA(7, 0);
  387. dprintk("WaveArtist base: ");
  388. WRITE_RWA(0x61, base);
  389. i = inb(0x203);
  390. WRITE_RWA(0x60, base >> 8);
  391. dprintk("%02X%02X (%X),", inb(0x203), i, base);
  392. WRITE_RWA(0x70, irq);
  393. dprintk(" irq: %d (%d),", inb(0x203), irq);
  394. WRITE_RWA(0x74, dma);
  395. dprintk(" dma: %d (%d)n", inb(0x203), dma);
  396. WRITE_RWA(0x30, 1);
  397. }
  398. static inline void rwa010_soundblaster_init(int sb_base, int al_base, int irq, int dma)
  399. {
  400. int i;
  401. WRITE_RWA(7, 1);
  402. dprintk("SoundBlaster base: ");
  403. WRITE_RWA(0x61, sb_base);
  404. i = inb(0x203);
  405. WRITE_RWA(0x60, sb_base >> 8);
  406. dprintk("%02X%02X (%X),", inb(0x203), i, sb_base);
  407. dprintk(" irq: ");
  408. WRITE_RWA(0x70, irq);
  409. dprintk("%d (%d),", inb(0x203), irq);
  410. dprintk(" 8-bit DMA: ");
  411. WRITE_RWA(0x74, dma);
  412. dprintk("%d (%d)n", inb(0x203), dma);
  413. dprintk("AdLib base: ");
  414. WRITE_RWA(0x63, al_base);
  415. i = inb(0x203);
  416. WRITE_RWA(0x62, al_base >> 8);
  417. dprintk("%02X%02X (%X)n", inb(0x203), i, al_base);
  418. WRITE_RWA(0x30, 1);
  419. }
  420. static void rwa010_soundblaster_reset(void)
  421. {
  422. int i;
  423. outb(1, 0x226);
  424. udelay(3);
  425. outb(0, 0x226);
  426. for (i = 0; i < 5; i++) {
  427. if (inb(0x22e) & 0x80)
  428. break;
  429. mdelay(1);
  430. }
  431. if (i == 5)
  432. printk("SoundBlaster: DSP reset failedn");
  433. dprintk("SoundBlaster DSP reset: %02X (AA)n", inb(0x22a));
  434. for (i = 0; i < 5; i++) {
  435. if ((inb(0x22c) & 0x80) == 0)
  436. break;
  437. mdelay(1);
  438. }
  439. if (i == 5)
  440. printk("SoundBlaster: DSP not readyn");
  441. else {
  442. outb(0xe1, 0x22c);
  443. dprintk("SoundBlaster DSP id: ");
  444. i = inb(0x22a);
  445. udelay(1);
  446. i |= inb(0x22a) << 8;
  447. dprintk("%04Xn", i);
  448. for (i = 0; i < 5; i++) {
  449. if ((inb(0x22c) & 0x80) == 0)
  450. break;
  451. mdelay(1);
  452. }
  453. if (i == 5)
  454. printk("SoundBlaster: could not turn speaker offn");
  455. outb(0xd3, 0x22c);
  456. }
  457. /* turn on OPL3 */
  458. outb(5, 0x38a);
  459. outb(1, 0x38b);
  460. }
  461. static void __init rwa010_init(void)
  462. {
  463. rwa010_unlock();
  464. rwa010_read_ident();
  465. rwa010_global_init();
  466. rwa010_game_port_init();
  467. rwa010_waveartist_init(0x250, 3, 7);
  468. rwa010_soundblaster_init(0x220, 0x388, 3, 1);
  469. rwa010_soundblaster_reset();
  470. }
  471. EXPORT_SYMBOL(gpio_lock);
  472. EXPORT_SYMBOL(gpio_modify_op);
  473. EXPORT_SYMBOL(gpio_modify_io);
  474. EXPORT_SYMBOL(cpld_modify);
  475. /*
  476.  * Initialise any other hardware after we've got the PCI bus
  477.  * initialised.  We may need the PCI bus to talk to this other
  478.  * hardware.
  479.  */
  480. static int __init nw_hw_init(void)
  481. {
  482. if (machine_is_netwinder()) {
  483. unsigned long flags;
  484. wb977_init();
  485. cpld_init();
  486. rwa010_init();
  487. spin_lock_irqsave(&gpio_lock, flags);
  488. gpio_modify_op(GPIO_RED_LED|GPIO_GREEN_LED, DEFAULT_LEDS);
  489. spin_unlock_irqrestore(&gpio_lock, flags);
  490. }
  491. return 0;
  492. }
  493. __initcall(nw_hw_init);