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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2001 Broadcom Corporation
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  * 
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. /*  Derived loosely from ide-pmac.c, so:
  19.  *  
  20.  *  Copyright (C) 1998 Paul Mackerras.
  21.  *  Copyright (C) 1995-1998 Mark Lord
  22.  */
  23. #include <linux/config.h>
  24. #include <linux/types.h>
  25. #include <linux/kernel.h>
  26. #include <linux/sched.h>
  27. #include <linux/init.h>
  28. #include <linux/delay.h>
  29. #include <linux/ide.h>
  30. #include <asm/irq.h>
  31. #include <asm/io.h>
  32. #include <asm/sibyte/sb1250_regs.h>
  33. #include <asm/sibyte/sb1250_int.h>
  34. #include <asm/sibyte/sb1250_genbus.h>
  35. #include <asm/sibyte/64bit.h>
  36. #include <asm/sibyte/board.h>
  37. /* Note: this should be general for any board using IDE on GenBus */
  38. extern struct ide_ops std_ide_ops;
  39. static ide_hwif_t *sb_ide_hwif = NULL;
  40. static unsigned long ide_base;
  41. #define SIBYTE_IDE_BASE        (KSEG1ADDR(ide_base)-mips_io_port_base)
  42. #define SIBYTE_IDE_REG(pcaddr) (SIBYTE_IDE_BASE + ((pcaddr)<<5))
  43. /*
  44.  * We are limiting the number of PCI-IDE devices to leave room for
  45.  * GenBus IDE (and possibly PCMCIA/CF?)
  46.  */
  47. static int sibyte_ide_default_irq(ide_ioreg_t base)
  48. {
  49. return 0;
  50. }
  51. static ide_ioreg_t sibyte_ide_default_io_base(int index)
  52. {
  53. return 0;
  54. }
  55. static void sibyte_ide_init_hwif_ports (hw_regs_t *hw, ide_ioreg_t data_port,
  56.        ide_ioreg_t ctrl_port, int *irq)
  57. {
  58. std_ide_ops.ide_init_hwif_ports(hw, data_port, ctrl_port, irq);
  59. }
  60. static int sibyte_ide_request_irq(unsigned int irq,
  61.                                 void (*handler)(int,void *, struct pt_regs *),
  62.                                 unsigned long flags, const char *device,
  63.                                 void *dev_id)
  64. {
  65. return request_irq(irq, handler, flags, device, dev_id);
  66. }
  67. static void sibyte_ide_free_irq(unsigned int irq, void *dev_id)
  68. {
  69. free_irq(irq, dev_id);
  70. }
  71. static inline int is_sibyte_ide(ide_ioreg_t from)
  72. {
  73. return (sb_ide_hwif &&
  74. ((from == sb_ide_hwif->io_ports[IDE_DATA_OFFSET]) ||
  75.  (from == sb_ide_hwif->io_ports[IDE_ERROR_OFFSET]) ||
  76.  (from == sb_ide_hwif->io_ports[IDE_NSECTOR_OFFSET]) ||
  77.  (from == sb_ide_hwif->io_ports[IDE_SECTOR_OFFSET]) ||
  78.  (from == sb_ide_hwif->io_ports[IDE_LCYL_OFFSET]) ||
  79.  (from == sb_ide_hwif->io_ports[IDE_HCYL_OFFSET]) ||
  80.  (from == sb_ide_hwif->io_ports[IDE_SELECT_OFFSET]) ||
  81.  (from == sb_ide_hwif->io_ports[IDE_STATUS_OFFSET]) ||
  82.  (from == sb_ide_hwif->io_ports[IDE_CONTROL_OFFSET])));
  83. }
  84. static int sibyte_ide_check_region(ide_ioreg_t from, unsigned int extent)
  85. {
  86. /* Figure out if it's the SiByte IDE; if so, don't do anything
  87.            since our I/O space is in a weird place. */
  88. if (is_sibyte_ide(from))
  89. return 0;
  90. else
  91. #ifdef CONFIG_BLK_DEV_IDE
  92. return std_ide_ops.ide_check_region(from, extent);
  93. #else
  94. return 0;
  95. #endif
  96. }
  97. static void sibyte_ide_request_region(ide_ioreg_t from, unsigned int extent,
  98.      const char *name)
  99. {
  100. #ifdef CONFIG_BLK_DEV_IDE
  101. if (!is_sibyte_ide(from))
  102. std_ide_ops.ide_request_region(from, extent, name);
  103. #endif
  104. }
  105. static void sibyte_ide_release_region(ide_ioreg_t from, unsigned int extent)
  106. {
  107. #ifdef CONFIG_BLK_DEV_IDE
  108. if (!is_sibyte_ide(from))
  109. std_ide_ops.ide_release_region(from, extent);
  110. #endif
  111. }
  112. struct ide_ops sibyte_ide_ops = {
  113. &sibyte_ide_default_irq,
  114. &sibyte_ide_default_io_base,
  115. &sibyte_ide_init_hwif_ports,
  116. &sibyte_ide_request_irq,
  117. &sibyte_ide_free_irq,
  118. &sibyte_ide_check_region,
  119. &sibyte_ide_request_region,
  120. &sibyte_ide_release_region
  121. };
  122. /*
  123.  * I/O operations. The FPGA for SiByte generic bus IDE deals with
  124.  * byte-swapping for us, so we can't share the I/O macros with other
  125.  * IDE (e.g. PCI-IDE) devices.
  126.  */
  127. #define sibyte_outb(val,port)
  128. do {
  129. *(volatile u8 *)(mips_io_port_base + (port)) = val;
  130. } while(0)
  131. #define sibyte_outw(val,port)
  132. do {
  133. *(volatile u16 *)(mips_io_port_base + (port)) = val;
  134. } while(0)
  135. #define sibyte_outl(val,port)
  136. do {
  137. *(volatile u32 *)(mips_io_port_base + (port)) = val;
  138. } while(0)
  139. static inline unsigned char sibyte_inb(unsigned long port)
  140. {
  141. return (*(volatile u8 *)(mips_io_port_base + (port)));
  142. }
  143. static inline unsigned short sibyte_inw(unsigned long port)
  144. {
  145. return (*(volatile u16 *)(mips_io_port_base + (port)));
  146. }
  147. static inline unsigned int sibyte_inl(unsigned long port)
  148. {
  149. return (*(volatile u32 *)(mips_io_port_base + (port)));
  150. }
  151. static inline void sibyte_outsb(unsigned long port, void *addr, unsigned int count)
  152. {
  153. while (count--) {
  154. sibyte_outb(*(u8 *)addr, port);
  155. addr++;
  156. }
  157. }
  158. static inline void sibyte_insb(unsigned long port, void *addr, unsigned int count)
  159. {
  160. while (count--) {
  161. *(u8 *)addr = sibyte_inb(port);
  162. addr++;
  163. }
  164. }
  165. static inline void sibyte_outsw(unsigned long port, void *addr, unsigned int count)
  166. {
  167. while (count--) {
  168. sibyte_outw(*(u16 *)addr, port);
  169. addr += 2;
  170. }
  171. }
  172. static inline void sibyte_insw(unsigned long port, void *addr, unsigned int count)
  173. {
  174. while (count--) {
  175. *(u16 *)addr = sibyte_inw(port);
  176. addr += 2;
  177. }
  178. }
  179. static inline void sibyte_outsl(unsigned long port, void *addr, unsigned int count)
  180. {
  181. while (count--) {
  182. sibyte_outl(*(u32 *)addr, port);
  183. addr += 4;
  184. }
  185. }
  186. static inline void sibyte_insl(unsigned long port, void *addr, unsigned int count)
  187. {
  188. while (count--) {
  189. *(u32 *)addr = sibyte_inl(port);
  190. addr += 4;
  191. }
  192. }
  193. static void sibyte_ideproc(ide_ide_action_t action, ide_drive_t *drive,
  194.    void *buffer, unsigned int count)
  195. {
  196. /*  slow? vlb_sync? */
  197. switch (action) {
  198. case ideproc_ide_input_data:
  199. if (drive->io_32bit) {
  200. sibyte_insl(IDE_DATA_REG, buffer, count);
  201. } else {
  202. sibyte_insw(IDE_DATA_REG, buffer, count<<1);
  203. }
  204. break;
  205. case ideproc_ide_output_data:
  206. if (drive->io_32bit) {
  207. sibyte_outsl(IDE_DATA_REG, buffer, count);
  208. } else {
  209. sibyte_outsw(IDE_DATA_REG, buffer, count<<1);
  210. }
  211. break;
  212. case ideproc_atapi_input_bytes:
  213. count++;
  214. if (drive->io_32bit) {
  215. sibyte_insl(IDE_DATA_REG, buffer, count>>2);
  216. } else {
  217. sibyte_insw(IDE_DATA_REG, buffer, count>>1);
  218. }
  219. if ((count & 3) >= 2)
  220. sibyte_insw(IDE_DATA_REG, (char *)buffer + (count & ~3), 1);
  221. break;
  222. case ideproc_atapi_output_bytes:
  223. count++;
  224. if (drive->io_32bit) {
  225. sibyte_outsl(IDE_DATA_REG, buffer, count>>2);
  226. } else {
  227. sibyte_outsw(IDE_DATA_REG, buffer, count>>1);
  228. }
  229. if ((count & 3) >= 2)
  230. sibyte_outsw(IDE_DATA_REG, (char *)buffer + (count & ~3), 1);
  231. break;
  232. }
  233. }
  234. /*
  235.  * selectproc and intrproc aren't really necessary, since
  236.  * byte-swapping doesn't affect byte ops; they are included for
  237.  * consistency.
  238.  */
  239. static void sibyte_selectproc(ide_drive_t *drive)
  240. {
  241. sibyte_outb(drive->select.all, IDE_SELECT_REG);
  242. }
  243. static void sibyte_intrproc(ide_drive_t *drive)
  244. {
  245. sibyte_outb(drive->ctl|2, IDE_CONTROL_REG);
  246. }
  247. void __init sibyte_ide_probe(void)
  248. {
  249. int i;
  250. ide_hwif_t *hwif;
  251. /* 
  252.  * Find the first untaken slot in hwifs 
  253.  */
  254. for (i = 0; i < MAX_HWIFS; i++) {
  255. if (!ide_hwifs[i].io_ports[IDE_DATA_OFFSET]) {
  256. break;
  257. }
  258. }
  259. if (i == MAX_HWIFS) {
  260. printk("No space for SiByte onboard IDE driver in ide_hwifs[].  Not enabled.n");
  261. return;
  262. }
  263. /* Find memory base address */
  264. #ifdef __MIPSEL__
  265. /* Pass1 workaround (bug 1624) */
  266. if (sb1250_pass == K_SYS_REVISION_PASS1)
  267. ide_base = G_IO_START_ADDR(csr_in32(4+(IO_SPACE_BASE|A_IO_EXT_REG(R_IO_EXT_REG(R_IO_EXT_START_ADDR, IDE_CS))))) << S_IO_ADDRBASE;
  268. else
  269. #endif
  270. ide_base = G_IO_START_ADDR(csr_in32(IO_SPACE_BASE|A_IO_EXT_REG(R_IO_EXT_REG(R_IO_EXT_START_ADDR, IDE_CS)))) << S_IO_ADDRBASE;
  271. /*
  272.  * Set up our stuff; we're a little odd because our io_ports
  273.  * aren't in the usual place, and byte-swapping isn't
  274.  * necessary.
  275.  */
  276. hwif = &ide_hwifs[i];
  277. hwif->hw.io_ports[IDE_DATA_OFFSET]    = SIBYTE_IDE_REG(0x1f0);
  278. hwif->hw.io_ports[IDE_ERROR_OFFSET]   = SIBYTE_IDE_REG(0x1f1);
  279. hwif->hw.io_ports[IDE_NSECTOR_OFFSET] = SIBYTE_IDE_REG(0x1f2);
  280. hwif->hw.io_ports[IDE_SECTOR_OFFSET]  = SIBYTE_IDE_REG(0x1f3);
  281. hwif->hw.io_ports[IDE_LCYL_OFFSET]    = SIBYTE_IDE_REG(0x1f4);
  282. hwif->hw.io_ports[IDE_HCYL_OFFSET]    = SIBYTE_IDE_REG(0x1f5);
  283. hwif->hw.io_ports[IDE_SELECT_OFFSET]  = SIBYTE_IDE_REG(0x1f6);
  284. hwif->hw.io_ports[IDE_STATUS_OFFSET]  = SIBYTE_IDE_REG(0x1f7);
  285. hwif->hw.io_ports[IDE_CONTROL_OFFSET] = SIBYTE_IDE_REG(0x3f6);
  286. hwif->hw.irq                          = K_INT_GB_IDE;
  287. hwif->irq                             = K_INT_GB_IDE;
  288. hwif->noprobe                         = 0;
  289. /* Use our own non-byte-swapping routines */
  290. hwif->ideproc                         = sibyte_ideproc;
  291. hwif->selectproc                      = sibyte_selectproc;
  292. hwif->intrproc                        = sibyte_intrproc;
  293. memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports));
  294. printk("SiByte onboard IDE configured as device %in", i);
  295. sb_ide_hwif = hwif;
  296. }