it8172_setup.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

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. #ifdef CONFIG_BLK_DEV_IDE
  54. extern struct ide_ops std_ide_ops;
  55. extern struct ide_ops *ide_ops;
  56. #endif
  57. #ifdef CONFIG_PC_KEYB
  58. extern struct kbd_ops std_kbd_ops;
  59. int init_8712_keyboard(void);
  60. #endif
  61. extern int SearchIT8712(void);
  62. extern void InitLPCInterface(void);
  63. extern char * __init prom_getcmdline(void);
  64. extern void it8172_restart(char *command);
  65. extern void it8172_halt(void);
  66. extern void it8172_power_off(void);
  67. extern void (*board_time_init)(void);
  68. extern void (*board_timer_setup)(struct irqaction *irq);
  69. extern unsigned long (*rtc_get_time)(void);
  70. extern int (*rtc_set_time)(unsigned long);
  71. extern void it8172_time_init(void);
  72. extern void it8172_timer_setup(struct irqaction *irq);
  73. extern unsigned long it8172_rtc_get_time(void);
  74. #ifdef CONFIG_IT8172_REVC
  75. struct {
  76.     struct resource ram;
  77.     struct resource pci_mem;
  78.     struct resource pci_io;
  79.     struct resource flash;
  80.     struct resource boot;
  81. } it8172_resources = {
  82.     { "RAM",           0,          0,          IORESOURCE_MEM }, /* to be initted */
  83.     { "PCI Mem",       0x10000000, 0x13FFFFFF, IORESOURCE_MEM },
  84.     { "PCI I/O",       0x14000000, 0x17FFFFFF                 },
  85.     { "Flash",         0x08000000, 0x0CFFFFFF                 },
  86.     { "Boot ROM",      0x1FC00000, 0x1FFFFFFF                 }
  87. };
  88. #else
  89. struct {
  90.     struct resource ram;
  91.     struct resource pci_mem0;
  92.     struct resource pci_mem1;
  93.     struct resource pci_io;
  94.     struct resource pci_mem2;
  95.     struct resource pci_mem3;
  96.     struct resource flash;
  97.     struct resource boot;
  98. } it8172_resources = {
  99.     { "RAM",           0,          0,          IORESOURCE_MEM }, /* to be initted */
  100.     { "PCI Mem0",      0x0C000000, 0x0FFFFFFF, IORESOURCE_MEM },
  101.     { "PCI Mem1",      0x10000000, 0x13FFFFFF, IORESOURCE_MEM },
  102.     { "PCI I/O",       0x14000000, 0x17FFFFFF                 },
  103.     { "PCI Mem2",      0x1A000000, 0x1BFFFFFF, IORESOURCE_MEM },
  104.     { "PCI Mem3",      0x1C000000, 0x1FBFFFFF, IORESOURCE_MEM },
  105.     { "Flash",         0x08000000, 0x0CFFFFFF                 },
  106.     { "Boot ROM",      0x1FC00000, 0x1FFFFFFF                 }
  107. };
  108. #endif
  109. void __init it8172_init_ram_resource(unsigned long memsize)
  110. {
  111. it8172_resources.ram.end = memsize;
  112. }
  113. void __init it8172_setup(void)
  114. {
  115. unsigned short dsr;
  116. char *argptr;
  117. u32 it_ver;
  118. argptr = prom_getcmdline();
  119. #ifdef CONFIG_SERIAL_CONSOLE
  120. if ((argptr = strstr(argptr, "console=")) == NULL) {
  121. argptr = prom_getcmdline();
  122. strcat(argptr, " console=ttyS0,115200");
  123. }
  124. #endif   
  125. clear_cp0_status(ST0_FR);
  126. rtc_ops = &it8172_rtc_ops;
  127. board_time_init = it8172_time_init;
  128. board_timer_setup = it8172_timer_setup;
  129. rtc_get_time = it8172_rtc_get_time;
  130. //rtc_set_time = it8172_rtc_set_time;
  131. _machine_restart = it8172_restart;
  132. _machine_halt = it8172_halt;
  133. _machine_power_off = it8172_power_off;
  134. /*
  135. * IO/MEM resources. 
  136. *
  137. * revisit this area.
  138. */
  139. set_io_port_base(KSEG1);
  140. ioport_resource.start = it8172_resources.pci_io.start;
  141. ioport_resource.end = it8172_resources.pci_io.end;
  142. #ifdef CONFIG_IT8172_REVC
  143. iomem_resource.start = it8172_resources.pci_mem.start;
  144. iomem_resource.end = it8172_resources.pci_mem.end;
  145. #else
  146. iomem_resource.start = it8172_resources.pci_mem0.start;
  147. iomem_resource.end = it8172_resources.pci_mem3.end;
  148. #endif
  149. #ifdef CONFIG_BLK_DEV_INITRD
  150. ROOT_DEV = MKDEV(RAMDISK_MAJOR, 0);
  151. #endif
  152. /*
  153.  * Pull enabled devices out of standby
  154.  */
  155. IT_IO_READ16(IT_PM_DSR, dsr);
  156. #ifdef CONFIG_SOUND_IT8172
  157. dsr &= ~IT_PM_DSR_ACSB;
  158. #else
  159. dsr |= IT_PM_DSR_ACSB;
  160. #endif
  161. #ifdef CONFIG_BLK_DEV_IT8172
  162. dsr &= ~IT_PM_DSR_IDESB;
  163. ide_ops = &std_ide_ops;
  164. #else
  165. dsr |= IT_PM_DSR_IDESB;
  166. #endif
  167. IT_IO_WRITE16(IT_PM_DSR, dsr);
  168. #ifdef CONFIG_FB
  169. conswitchp = &dummy_con;
  170. #endif
  171. InitLPCInterface();
  172. #ifdef CONFIG_MIPS_ITE8172
  173. if (SearchIT8712()) {
  174. printk("Found IT8712 Super IOn");
  175. // enable IT8712 serial port
  176. LPCSetConfig(LDN_SERIAL1, 0x30, 0x01); /* enable */
  177. LPCSetConfig(LDN_SERIAL1, 0x23, 0x01); /* clock selection */
  178. #ifdef CONFIG_PC_KEYB
  179. if (init_8712_keyboard()) {
  180. printk("Unable to initialize keyboardn");
  181. LPCSetConfig(LDN_KEYBOARD, 0x30, 0x0); /* disable keyboard */
  182. }
  183. else {
  184. LPCSetConfig(LDN_KEYBOARD, 0x30, 0x1); /* enable keyboard */
  185. LPCSetConfig(LDN_KEYBOARD, 0xf0, 0x2);
  186. LPCSetConfig(LDN_KEYBOARD, 0x71, 0x3);
  187. LPCSetConfig(LDN_MOUSE, 0x30, 0x1); /* enable mouse */
  188. LPCSetConfig(0x4, 0x30, 0x1);
  189. LPCSetConfig(0x4, 0xf4, LPCGetConfig(0x4, 0xf4) | 0x80);
  190. if ((LPCGetConfig(LDN_KEYBOARD, 0x30) == 0) || 
  191. (LPCGetConfig(LDN_MOUSE, 0x30) == 0)) 
  192. printk("Error: keyboard or mouse not enabledn");
  193. kbd_ops = &std_kbd_ops;
  194. }
  195. #endif
  196. }
  197. else {
  198. printk("IT8712 Super IO not foundn");
  199. }
  200. #endif
  201. #ifdef CONFIG_IT8172_CIR
  202. {
  203. unsigned long data;
  204. //printk("Enabling CIR0n");
  205. IT_IO_READ16(IT_PM_DSR, data);
  206. data &= ~IT_PM_DSR_CIR0SB;
  207. IT_IO_WRITE16(IT_PM_DSR, data);
  208. //printk("DSR register: %xn", (unsigned)IT_IO_READ16(IT_PM_DSR, data));
  209. }
  210. #endif
  211. #ifdef CONFIG_IT8172_SCR0
  212. {
  213. unsigned i; 
  214. /* Enable Smart Card Reader 0 */
  215. /* First power it up */
  216. IT_IO_READ16(IT_PM_DSR, i);
  217. i &= ~IT_PM_DSR_SCR0SB;
  218. IT_IO_WRITE16(IT_PM_DSR, i);
  219. /* Then initialize its registers */
  220. outb(( IT_SCR_SFR_GATE_UART_OFF     << IT_SCR_SFR_GATE_UART_BIT
  221.       |IT_SCR_SFR_FET_CHARGE_213_US << IT_SCR_SFR_FET_CHARGE_BIT
  222.       |IT_SCR_SFR_CARD_FREQ_3_5_MHZ << IT_SCR_SFR_CARD_FREQ_BIT
  223.       |IT_SCR_SFR_FET_ACTIVE_INVERT << IT_SCR_SFR_FET_ACTIVE_BIT
  224.       |IT_SCR_SFR_ENABLE_ON         << IT_SCR_SFR_ENABLE_BIT),
  225.      IT8172_PCI_IO_BASE + IT_SCR0_BASE + IT_SCR_SFR);
  226. outb(IT_SCR_SCDR_RESET_MODE_ASYNC << IT_SCR_SCDR_RESET_MODE_BIT,
  227.      IT8172_PCI_IO_BASE + IT_SCR0_BASE + IT_SCR_SCDR);
  228. }
  229. #endif /* CONFIG_IT8172_SCR0 */
  230. #ifdef CONFIG_IT8172_SCR1
  231. {
  232. unsigned i; 
  233. /* Enable Smart Card Reader 1 */
  234. /* First power it up */
  235. IT_IO_READ16(IT_PM_DSR, i);
  236. i &= ~IT_PM_DSR_SCR1SB;
  237. IT_IO_WRITE16(IT_PM_DSR, i);
  238. /* Then initialize its registers */
  239. outb(( IT_SCR_SFR_GATE_UART_OFF     << IT_SCR_SFR_GATE_UART_BIT
  240.       |IT_SCR_SFR_FET_CHARGE_213_US << IT_SCR_SFR_FET_CHARGE_BIT
  241.       |IT_SCR_SFR_CARD_FREQ_3_5_MHZ << IT_SCR_SFR_CARD_FREQ_BIT
  242.       |IT_SCR_SFR_FET_ACTIVE_INVERT << IT_SCR_SFR_FET_ACTIVE_BIT
  243.       |IT_SCR_SFR_ENABLE_ON         << IT_SCR_SFR_ENABLE_BIT),
  244.      IT8172_PCI_IO_BASE + IT_SCR1_BASE + IT_SCR_SFR);
  245. outb(IT_SCR_SCDR_RESET_MODE_ASYNC << IT_SCR_SCDR_RESET_MODE_BIT,
  246.      IT8172_PCI_IO_BASE + IT_SCR1_BASE + IT_SCR_SCDR);
  247. }
  248. #endif /* CONFIG_IT8172_SCR1 */
  249. }
  250. #ifdef CONFIG_PC_KEYB
  251. /*
  252.  * According to the ITE Special BIOS Note for waking up the 
  253.  * keyboard controller...
  254.  */
  255. int init_8712_keyboard()
  256. {
  257. unsigned int cmd_port = 0x14000064;
  258. unsigned int data_port = 0x14000060;
  259. unsigned char data;
  260. int i;
  261. outb(0xaa, cmd_port); /* send self-test cmd */
  262. i = 0;
  263. while (!(inb(cmd_port) & 0x1)) { /* wait output buffer full */
  264. i++;
  265. if (i > 0xffffff)
  266. return 1;
  267. }
  268. data = inb(data_port);
  269. outb(0xcb, cmd_port); /* set ps2 mode */
  270. while (inb(cmd_port) & 0x2) { /* wait while input buffer full */
  271. i++;
  272. if (i > 0xffffff)
  273. return 1;
  274. }
  275. outb(0x01, data_port);
  276. while (inb(cmd_port) & 0x2) { /* wait while input buffer full */
  277. i++;
  278. if (i > 0xffffff)
  279. return 1;
  280. }
  281. outb(0x60, cmd_port); /* write 8042 command byte */
  282. while (inb(cmd_port) & 0x2) { /* wait while input buffer full */
  283. i++;
  284. if (i > 0xffffff)
  285. return 1;
  286. }
  287. outb(0x45, data_port); /* at interface, keyboard enabled, system flag */
  288. while (inb(cmd_port) & 0x2) { /* wait while input buffer full */
  289. i++;
  290. if (i > 0xffffff)
  291. return 1;
  292. }
  293. outb(0xae, cmd_port); /* enable interface */
  294. return 0;
  295. }
  296. #endif