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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * BRIEF MODULE DESCRIPTION
  4.  * IT8172/QED5231 board setup.
  5.  *
  6.  * Copyright 2000 MontaVista Software Inc.
  7.  * Author: MontaVista Software, Inc.
  8.  *          ppopov@mvista.com or source@mvista.com
  9.  *
  10.  *  This program is free software; you can redistribute  it and/or modify it
  11.  *  under  the terms of  the GNU General  Public License as published by the
  12.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  13.  *  option) any later version.
  14.  *
  15.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  16.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  17.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  18.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  19.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  20.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  21.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  22.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  23.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  24.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25.  *
  26.  *  You should have received a copy of the  GNU General Public License along
  27.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  28.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  29.  */
  30. #include <linux/config.h>
  31. #include <linux/init.h>
  32. #include <linux/sched.h>
  33. #include <linux/ioport.h>
  34. #include <linux/console.h>
  35. #include <linux/mc146818rtc.h>
  36. #include <linux/serial_reg.h>
  37. #include <asm/cpu.h>
  38. #include <asm/bootinfo.h>
  39. #include <asm/irq.h>
  40. #include <asm/mipsregs.h>
  41. #include <asm/reboot.h>
  42. #include <asm/it8172/it8172.h>
  43. #include <asm/it8712.h>
  44. #ifdef CONFIG_PC_KEYB
  45. #include <asm/keyboard.h>
  46. #endif
  47. #if defined(CONFIG_SERIAL_CONSOLE) || defined(CONFIG_PROM_CONSOLE)
  48. extern void console_setup(char *, int *);
  49. char serial_console[20];
  50. #endif
  51. extern struct rtc_ops it8172_rtc_ops;
  52. extern struct resource ioport_resource;
  53. extern unsigned long mips_io_port_base;
  54. #ifdef CONFIG_BLK_DEV_IDE
  55. extern struct ide_ops std_ide_ops;
  56. extern struct ide_ops *ide_ops;
  57. #endif
  58. #ifdef CONFIG_PC_KEYB
  59. extern struct kbd_ops std_kbd_ops;
  60. int init_8712_keyboard(void);
  61. #endif
  62. extern int SearchIT8712(void);
  63. extern void InitLPCInterface(void);
  64. extern char * __init prom_getcmdline(void);
  65. extern void it8172_restart(char *command);
  66. extern void it8172_halt(void);
  67. extern void it8172_power_off(void);
  68. #ifdef CONFIG_IT8172_REVC
  69. struct {
  70.     struct resource ram;
  71.     struct resource pci_mem;
  72.     struct resource pci_io;
  73.     struct resource flash;
  74.     struct resource boot;
  75. } it8172_resources = {
  76.     { "RAM",           0,          0,          IORESOURCE_MEM }, /* to be initted */
  77.     { "PCI Mem",       0x10000000, 0x13FFFFFF, IORESOURCE_MEM },
  78.     { "PCI I/O",       0x14000000, 0x17FFFFFF                 },
  79.     { "Flash",         0x08000000, 0x0CFFFFFF                 },
  80.     { "Boot ROM",      0x1FC00000, 0x1FFFFFFF                 }
  81. };
  82. #else
  83. struct {
  84.     struct resource ram;
  85.     struct resource pci_mem0;
  86.     struct resource pci_mem1;
  87.     struct resource pci_io;
  88.     struct resource pci_mem2;
  89.     struct resource pci_mem3;
  90.     struct resource flash;
  91.     struct resource boot;
  92. } it8172_resources = {
  93.     { "RAM",           0,          0,          IORESOURCE_MEM }, /* to be initted */
  94.     { "PCI Mem0",      0x0C000000, 0x0FFFFFFF, IORESOURCE_MEM },
  95.     { "PCI Mem1",      0x10000000, 0x13FFFFFF, IORESOURCE_MEM },
  96.     { "PCI I/O",       0x14000000, 0x17FFFFFF                 },
  97.     { "PCI Mem2",      0x1A000000, 0x1BFFFFFF, IORESOURCE_MEM },
  98.     { "PCI Mem3",      0x1C000000, 0x1FBFFFFF, IORESOURCE_MEM },
  99.     { "Flash",         0x08000000, 0x0CFFFFFF                 },
  100.     { "Boot ROM",      0x1FC00000, 0x1FFFFFFF                 }
  101. };
  102. #endif
  103. void __init it8172_init_ram_resource(unsigned long memsize)
  104. {
  105. it8172_resources.ram.end = memsize;
  106. }
  107. void __init it8172_setup(void)
  108. {
  109. unsigned short dsr;
  110. char *argptr;
  111. argptr = prom_getcmdline();
  112. #ifdef CONFIG_SERIAL_CONSOLE
  113. if ((argptr = strstr(argptr, "console=")) == NULL) {
  114. argptr = prom_getcmdline();
  115. strcat(argptr, " console=ttyS0,115200");
  116. }
  117. #endif   
  118. clear_cp0_status(ST0_FR);
  119. rtc_ops = &it8172_rtc_ops;
  120. _machine_restart = it8172_restart;
  121. _machine_halt = it8172_halt;
  122. _machine_power_off = it8172_power_off;
  123. /*
  124. * IO/MEM resources. 
  125. *
  126. * revisit this area.
  127. */
  128. mips_io_port_base = KSEG1;
  129. ioport_resource.start = it8172_resources.pci_io.start;
  130. ioport_resource.end = it8172_resources.pci_io.end;
  131. #ifdef CONFIG_IT8172_REVC
  132. iomem_resource.start = it8172_resources.pci_mem.start;
  133. iomem_resource.end = it8172_resources.pci_mem.end;
  134. #else
  135. iomem_resource.start = it8172_resources.pci_mem0.start;
  136. iomem_resource.end = it8172_resources.pci_mem3.end;
  137. #endif
  138. #ifdef CONFIG_BLK_DEV_INITRD
  139. ROOT_DEV = MKDEV(RAMDISK_MAJOR, 0);
  140. #endif
  141. /*
  142.  * Pull enabled devices out of standby
  143.  */
  144. IT_IO_READ16(IT_PM_DSR, dsr);
  145. #ifdef CONFIG_SOUND_IT8172
  146. dsr &= ~IT_PM_DSR_ACSB;
  147. #else
  148. dsr |= IT_PM_DSR_ACSB;
  149. #endif
  150. #ifdef CONFIG_BLK_DEV_IT8172
  151. dsr &= ~IT_PM_DSR_IDESB;
  152. ide_ops = &std_ide_ops;
  153. #else
  154. dsr |= IT_PM_DSR_IDESB;
  155. #endif
  156. IT_IO_WRITE16(IT_PM_DSR, dsr);
  157. #ifdef CONFIG_FB
  158. conswitchp = &dummy_con;
  159. #endif
  160. InitLPCInterface();
  161. #ifdef CONFIG_MIPS_ITE8172
  162. if (SearchIT8712()) {
  163. printk("Found IT8712 Super IOn");
  164. // enable IT8712 serial port
  165. LPCSetConfig(LDN_SERIAL1, 0x30, 0x01); /* enable */
  166. LPCSetConfig(LDN_SERIAL1, 0x23, 0x01); /* clock selection */
  167. #ifdef CONFIG_PC_KEYB
  168. if (init_8712_keyboard()) {
  169. printk("Unable to initialize keyboardn");
  170. LPCSetConfig(LDN_KEYBOARD, 0x30, 0x0); /* disable keyboard */
  171. }
  172. else {
  173. LPCSetConfig(LDN_KEYBOARD, 0x30, 0x1); /* enable keyboard */
  174. LPCSetConfig(LDN_KEYBOARD, 0xf0, 0x2);
  175. LPCSetConfig(LDN_KEYBOARD, 0x71, 0x3);
  176. LPCSetConfig(LDN_MOUSE, 0x30, 0x1); /* enable mouse */
  177. LPCSetConfig(0x4, 0x30, 0x1);
  178. LPCSetConfig(0x4, 0xf4, LPCGetConfig(0x4, 0xf4) | 0x80);
  179. if ((LPCGetConfig(LDN_KEYBOARD, 0x30) == 0) || 
  180. (LPCGetConfig(LDN_MOUSE, 0x30) == 0)) 
  181. printk("Error: keyboard or mouse not enabledn");
  182. kbd_ops = &std_kbd_ops;
  183. }
  184. #endif
  185. }
  186. else {
  187. printk("IT8712 Super IO not foundn");
  188. }
  189. #endif
  190. #ifdef CONFIG_IT8172_CIR
  191. {
  192. unsigned long data;
  193. //printk("Enabling CIR0n");
  194. IT_IO_READ16(IT_PM_DSR, data);
  195. data &= ~IT_PM_DSR_CIR0SB;
  196. IT_IO_WRITE16(IT_PM_DSR, data);
  197. //printk("DSR register: %xn", (unsigned)IT_IO_READ16(IT_PM_DSR, data));
  198. }
  199. #endif
  200. #ifdef CONFIG_IT8172_SCR0
  201. {
  202. unsigned i; 
  203. /* Enable Smart Card Reader 0 */
  204. /* First power it up */
  205. IT_IO_READ16(IT_PM_DSR, i);
  206. i &= ~IT_PM_DSR_SCR0SB;
  207. IT_IO_WRITE16(IT_PM_DSR, i);
  208. /* Then initialize its registers */
  209. outb(( IT_SCR_SFR_GATE_UART_OFF     << IT_SCR_SFR_GATE_UART_BIT
  210.       |IT_SCR_SFR_FET_CHARGE_213_US << IT_SCR_SFR_FET_CHARGE_BIT
  211.       |IT_SCR_SFR_CARD_FREQ_3_5_MHZ << IT_SCR_SFR_CARD_FREQ_BIT
  212.       |IT_SCR_SFR_FET_ACTIVE_INVERT << IT_SCR_SFR_FET_ACTIVE_BIT
  213.       |IT_SCR_SFR_ENABLE_ON         << IT_SCR_SFR_ENABLE_BIT),
  214.      IT8172_PCI_IO_BASE + IT_SCR0_BASE + IT_SCR_SFR);
  215. outb(IT_SCR_SCDR_RESET_MODE_ASYNC << IT_SCR_SCDR_RESET_MODE_BIT,
  216.      IT8172_PCI_IO_BASE + IT_SCR0_BASE + IT_SCR_SCDR);
  217. }
  218. #endif /* CONFIG_IT8172_SCR0 */
  219. #ifdef CONFIG_IT8172_SCR1
  220. {
  221. unsigned i; 
  222. /* Enable Smart Card Reader 1 */
  223. /* First power it up */
  224. IT_IO_READ16(IT_PM_DSR, i);
  225. i &= ~IT_PM_DSR_SCR1SB;
  226. IT_IO_WRITE16(IT_PM_DSR, i);
  227. /* Then initialize its registers */
  228. outb(( IT_SCR_SFR_GATE_UART_OFF     << IT_SCR_SFR_GATE_UART_BIT
  229.       |IT_SCR_SFR_FET_CHARGE_213_US << IT_SCR_SFR_FET_CHARGE_BIT
  230.       |IT_SCR_SFR_CARD_FREQ_3_5_MHZ << IT_SCR_SFR_CARD_FREQ_BIT
  231.       |IT_SCR_SFR_FET_ACTIVE_INVERT << IT_SCR_SFR_FET_ACTIVE_BIT
  232.       |IT_SCR_SFR_ENABLE_ON         << IT_SCR_SFR_ENABLE_BIT),
  233.      IT8172_PCI_IO_BASE + IT_SCR1_BASE + IT_SCR_SFR);
  234. outb(IT_SCR_SCDR_RESET_MODE_ASYNC << IT_SCR_SCDR_RESET_MODE_BIT,
  235.      IT8172_PCI_IO_BASE + IT_SCR1_BASE + IT_SCR_SCDR);
  236. }
  237. #endif /* CONFIG_IT8172_SCR1 */
  238. }
  239. #ifdef CONFIG_PC_KEYB
  240. /*
  241.  * According to the ITE Special BIOS Note for waking up the 
  242.  * keyboard controller...
  243.  */
  244. int init_8712_keyboard()
  245. {
  246. unsigned int cmd_port = 0x14000064;
  247. unsigned int data_port = 0x14000060;
  248. unsigned char data;
  249. int i;
  250. outb(0xaa, cmd_port); /* send self-test cmd */
  251. i = 0;
  252. while (!(inb(cmd_port) & 0x1)) { /* wait output buffer full */
  253. i++;
  254. if (i > 0xffffff)
  255. return 1;
  256. }
  257. data = inb(data_port);
  258. outb(0xcb, cmd_port); /* set ps2 mode */
  259. while (inb(cmd_port) & 0x2) { /* wait while input buffer full */
  260. i++;
  261. if (i > 0xffffff)
  262. return 1;
  263. }
  264. outb(0x01, data_port);
  265. while (inb(cmd_port) & 0x2) { /* wait while input buffer full */
  266. i++;
  267. if (i > 0xffffff)
  268. return 1;
  269. }
  270. outb(0x60, cmd_port); /* write 8042 command byte */
  271. while (inb(cmd_port) & 0x2) { /* wait while input buffer full */
  272. i++;
  273. if (i > 0xffffff)
  274. return 1;
  275. }
  276. outb(0x45, data_port); /* at interface, keyboard enabled, system flag */
  277. while (inb(cmd_port) & 0x2) { /* wait while input buffer full */
  278. i++;
  279. if (i > 0xffffff)
  280. return 1;
  281. }
  282. outb(0xae, cmd_port); /* enable interface */
  283. return 0;
  284. }
  285. #endif