ip22-gio.c 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. #include <linux/export.h>
  2. #include <linux/kernel.h>
  3. #include <linux/init.h>
  4. #include <linux/slab.h>
  5. #include <asm/addrspace.h>
  6. #include <asm/paccess.h>
  7. #include <asm/gio_device.h>
  8. #include <asm/sgi/gio.h>
  9. #include <asm/sgi/hpc3.h>
  10. #include <asm/sgi/mc.h>
  11. #include <asm/sgi/ip22.h>
  12. static struct bus_type gio_bus_type;
  13. static struct {
  14. const char *name;
  15. __u8 id;
  16. } gio_name_table[] = {
  17. { .name = "SGI Impact", .id = 0x10 },
  18. { .name = "Phobos G160", .id = 0x35 },
  19. { .name = "Phobos G130", .id = 0x36 },
  20. { .name = "Phobos G100", .id = 0x37 },
  21. { .name = "Set Engineering GFE", .id = 0x38 },
  22. /* fake IDs */
  23. { .name = "SGI Newport", .id = 0x7e },
  24. { .name = "SGI GR2/GR3", .id = 0x7f },
  25. };
  26. static void gio_bus_release(struct device *dev)
  27. {
  28. kfree(dev);
  29. }
  30. static struct device gio_bus = {
  31. .init_name = "gio",
  32. .release = &gio_bus_release,
  33. };
  34. /**
  35. * gio_match_device - Tell if an of_device structure has a matching
  36. * gio_match structure
  37. * @ids: array of of device match structures to search in
  38. * @dev: the of device structure to match against
  39. *
  40. * Used by a driver to check whether an of_device present in the
  41. * system is in its list of supported devices.
  42. */
  43. const struct gio_device_id *gio_match_device(const struct gio_device_id *match,
  44. const struct gio_device *dev)
  45. {
  46. const struct gio_device_id *ids;
  47. for (ids = match; ids->id != 0xff; ids++)
  48. if (ids->id == dev->id.id)
  49. return ids;
  50. return NULL;
  51. }
  52. EXPORT_SYMBOL_GPL(gio_match_device);
  53. struct gio_device *gio_dev_get(struct gio_device *dev)
  54. {
  55. struct device *tmp;
  56. if (!dev)
  57. return NULL;
  58. tmp = get_device(&dev->dev);
  59. if (tmp)
  60. return to_gio_device(tmp);
  61. else
  62. return NULL;
  63. }
  64. EXPORT_SYMBOL_GPL(gio_dev_get);
  65. void gio_dev_put(struct gio_device *dev)
  66. {
  67. if (dev)
  68. put_device(&dev->dev);
  69. }
  70. EXPORT_SYMBOL_GPL(gio_dev_put);
  71. /**
  72. * gio_release_dev - free an gio device structure when all users of it are finished.
  73. * @dev: device that's been disconnected
  74. *
  75. * Will be called only by the device core when all users of this gio device are
  76. * done.
  77. */
  78. void gio_release_dev(struct device *dev)
  79. {
  80. struct gio_device *giodev;
  81. giodev = to_gio_device(dev);
  82. kfree(giodev);
  83. }
  84. EXPORT_SYMBOL_GPL(gio_release_dev);
  85. int gio_device_register(struct gio_device *giodev)
  86. {
  87. giodev->dev.bus = &gio_bus_type;
  88. giodev->dev.parent = &gio_bus;
  89. return device_register(&giodev->dev);
  90. }
  91. EXPORT_SYMBOL_GPL(gio_device_register);
  92. void gio_device_unregister(struct gio_device *giodev)
  93. {
  94. device_unregister(&giodev->dev);
  95. }
  96. EXPORT_SYMBOL_GPL(gio_device_unregister);
  97. static int gio_bus_match(struct device *dev, struct device_driver *drv)
  98. {
  99. struct gio_device *gio_dev = to_gio_device(dev);
  100. struct gio_driver *gio_drv = to_gio_driver(drv);
  101. return gio_match_device(gio_drv->id_table, gio_dev) != NULL;
  102. }
  103. static int gio_device_probe(struct device *dev)
  104. {
  105. int error = -ENODEV;
  106. struct gio_driver *drv;
  107. struct gio_device *gio_dev;
  108. const struct gio_device_id *match;
  109. drv = to_gio_driver(dev->driver);
  110. gio_dev = to_gio_device(dev);
  111. if (!drv->probe)
  112. return error;
  113. gio_dev_get(gio_dev);
  114. match = gio_match_device(drv->id_table, gio_dev);
  115. if (match)
  116. error = drv->probe(gio_dev, match);
  117. if (error)
  118. gio_dev_put(gio_dev);
  119. return error;
  120. }
  121. static int gio_device_remove(struct device *dev)
  122. {
  123. struct gio_device *gio_dev = to_gio_device(dev);
  124. struct gio_driver *drv = to_gio_driver(dev->driver);
  125. if (dev->driver && drv->remove)
  126. drv->remove(gio_dev);
  127. return 0;
  128. }
  129. static int gio_device_suspend(struct device *dev, pm_message_t state)
  130. {
  131. struct gio_device *gio_dev = to_gio_device(dev);
  132. struct gio_driver *drv = to_gio_driver(dev->driver);
  133. int error = 0;
  134. if (dev->driver && drv->suspend)
  135. error = drv->suspend(gio_dev, state);
  136. return error;
  137. }
  138. static int gio_device_resume(struct device *dev)
  139. {
  140. struct gio_device *gio_dev = to_gio_device(dev);
  141. struct gio_driver *drv = to_gio_driver(dev->driver);
  142. int error = 0;
  143. if (dev->driver && drv->resume)
  144. error = drv->resume(gio_dev);
  145. return error;
  146. }
  147. static void gio_device_shutdown(struct device *dev)
  148. {
  149. struct gio_device *gio_dev = to_gio_device(dev);
  150. struct gio_driver *drv = to_gio_driver(dev->driver);
  151. if (dev->driver && drv->shutdown)
  152. drv->shutdown(gio_dev);
  153. }
  154. static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
  155. char *buf)
  156. {
  157. struct gio_device *gio_dev = to_gio_device(dev);
  158. int len = snprintf(buf, PAGE_SIZE, "gio:%x\n", gio_dev->id.id);
  159. return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
  160. }
  161. static ssize_t name_show(struct device *dev,
  162. struct device_attribute *attr, char *buf)
  163. {
  164. struct gio_device *giodev;
  165. giodev = to_gio_device(dev);
  166. return sprintf(buf, "%s", giodev->name);
  167. }
  168. static ssize_t id_show(struct device *dev,
  169. struct device_attribute *attr, char *buf)
  170. {
  171. struct gio_device *giodev;
  172. giodev = to_gio_device(dev);
  173. return sprintf(buf, "%x", giodev->id.id);
  174. }
  175. static struct device_attribute gio_dev_attrs[] = {
  176. __ATTR_RO(modalias),
  177. __ATTR_RO(name),
  178. __ATTR_RO(id),
  179. __ATTR_NULL,
  180. };
  181. static int gio_device_uevent(struct device *dev, struct kobj_uevent_env *env)
  182. {
  183. struct gio_device *gio_dev = to_gio_device(dev);
  184. add_uevent_var(env, "MODALIAS=gio:%x", gio_dev->id.id);
  185. return 0;
  186. }
  187. int gio_register_driver(struct gio_driver *drv)
  188. {
  189. /* initialize common driver fields */
  190. if (!drv->driver.name)
  191. drv->driver.name = drv->name;
  192. if (!drv->driver.owner)
  193. drv->driver.owner = drv->owner;
  194. drv->driver.bus = &gio_bus_type;
  195. /* register with core */
  196. return driver_register(&drv->driver);
  197. }
  198. EXPORT_SYMBOL_GPL(gio_register_driver);
  199. void gio_unregister_driver(struct gio_driver *drv)
  200. {
  201. driver_unregister(&drv->driver);
  202. }
  203. EXPORT_SYMBOL_GPL(gio_unregister_driver);
  204. void gio_set_master(struct gio_device *dev)
  205. {
  206. u32 tmp = sgimc->giopar;
  207. switch (dev->slotno) {
  208. case 0:
  209. tmp |= SGIMC_GIOPAR_MASTERGFX;
  210. break;
  211. case 1:
  212. tmp |= SGIMC_GIOPAR_MASTEREXP0;
  213. break;
  214. case 2:
  215. tmp |= SGIMC_GIOPAR_MASTEREXP1;
  216. break;
  217. }
  218. sgimc->giopar = tmp;
  219. }
  220. EXPORT_SYMBOL_GPL(gio_set_master);
  221. void ip22_gio_set_64bit(int slotno)
  222. {
  223. u32 tmp = sgimc->giopar;
  224. switch (slotno) {
  225. case 0:
  226. tmp |= SGIMC_GIOPAR_GFX64;
  227. break;
  228. case 1:
  229. tmp |= SGIMC_GIOPAR_EXP064;
  230. break;
  231. case 2:
  232. tmp |= SGIMC_GIOPAR_EXP164;
  233. break;
  234. }
  235. sgimc->giopar = tmp;
  236. }
  237. static int ip22_gio_id(unsigned long addr, u32 *res)
  238. {
  239. u8 tmp8;
  240. u8 tmp16;
  241. u32 tmp32;
  242. u8 *ptr8;
  243. u16 *ptr16;
  244. u32 *ptr32;
  245. ptr32 = (void *)CKSEG1ADDR(addr);
  246. if (!get_dbe(tmp32, ptr32)) {
  247. /*
  248. * We got no DBE, but this doesn't mean anything.
  249. * If GIO is pipelined (which can't be disabled
  250. * for GFX slot) we don't get a DBE, but we see
  251. * the transfer size as data. So we do an 8bit
  252. * and a 16bit access and check whether the common
  253. * data matches
  254. */
  255. ptr8 = (void *)CKSEG1ADDR(addr + 3);
  256. if (get_dbe(tmp8, ptr8)) {
  257. /*
  258. * 32bit access worked, but 8bit doesn't
  259. * so we don't see phantom reads on
  260. * a pipelined bus, but a real card which
  261. * doesn't support 8 bit reads
  262. */
  263. *res = tmp32;
  264. return 1;
  265. }
  266. ptr16 = (void *)CKSEG1ADDR(addr + 2);
  267. get_dbe(tmp16, ptr16);
  268. if (tmp8 == (tmp16 & 0xff) &&
  269. tmp8 == (tmp32 & 0xff) &&
  270. tmp16 == (tmp32 & 0xffff)) {
  271. *res = tmp32;
  272. return 1;
  273. }
  274. }
  275. return 0; /* nothing here */
  276. }
  277. #define HQ2_MYSTERY_OFFS 0x6A07C
  278. #define NEWPORT_USTATUS_OFFS 0xF133C
  279. static int ip22_is_gr2(unsigned long addr)
  280. {
  281. u32 tmp;
  282. u32 *ptr;
  283. /* HQ2 only allows 32bit accesses */
  284. ptr = (void *)CKSEG1ADDR(addr + HQ2_MYSTERY_OFFS);
  285. if (!get_dbe(tmp, ptr)) {
  286. if (tmp == 0xdeadbeef)
  287. return 1;
  288. }
  289. return 0;
  290. }
  291. static void ip22_check_gio(int slotno, unsigned long addr, int irq)
  292. {
  293. const char *name = "Unknown";
  294. struct gio_device *gio_dev;
  295. u32 tmp;
  296. __u8 id;
  297. int i;
  298. /* first look for GR2/GR3 by checking mystery register */
  299. if (ip22_is_gr2(addr))
  300. tmp = 0x7f;
  301. else {
  302. if (!ip22_gio_id(addr, &tmp)) {
  303. /*
  304. * no GIO signature at start address of slot
  305. * since Newport doesn't have one, we check if
  306. * user status register is readable
  307. */
  308. if (ip22_gio_id(addr + NEWPORT_USTATUS_OFFS, &tmp))
  309. tmp = 0x7e;
  310. else
  311. tmp = 0;
  312. }
  313. }
  314. if (tmp) {
  315. id = GIO_ID(tmp);
  316. if (tmp & GIO_32BIT_ID) {
  317. if (tmp & GIO_64BIT_IFACE)
  318. ip22_gio_set_64bit(slotno);
  319. }
  320. for (i = 0; i < ARRAY_SIZE(gio_name_table); i++) {
  321. if (id == gio_name_table[i].id) {
  322. name = gio_name_table[i].name;
  323. break;
  324. }
  325. }
  326. printk(KERN_INFO "GIO: slot %d : %s (id %x)\n",
  327. slotno, name, id);
  328. gio_dev = kzalloc(sizeof *gio_dev, GFP_KERNEL);
  329. gio_dev->name = name;
  330. gio_dev->slotno = slotno;
  331. gio_dev->id.id = id;
  332. gio_dev->resource.start = addr;
  333. gio_dev->resource.end = addr + 0x3fffff;
  334. gio_dev->resource.flags = IORESOURCE_MEM;
  335. gio_dev->irq = irq;
  336. dev_set_name(&gio_dev->dev, "%d", slotno);
  337. gio_device_register(gio_dev);
  338. } else
  339. printk(KERN_INFO "GIO: slot %d : Empty\n", slotno);
  340. }
  341. static struct bus_type gio_bus_type = {
  342. .name = "gio",
  343. .dev_attrs = gio_dev_attrs,
  344. .match = gio_bus_match,
  345. .probe = gio_device_probe,
  346. .remove = gio_device_remove,
  347. .suspend = gio_device_suspend,
  348. .resume = gio_device_resume,
  349. .shutdown = gio_device_shutdown,
  350. .uevent = gio_device_uevent,
  351. };
  352. static struct resource gio_bus_resource = {
  353. .start = GIO_SLOT_GFX_BASE,
  354. .end = GIO_SLOT_GFX_BASE + 0x9fffff,
  355. .name = "GIO Bus",
  356. .flags = IORESOURCE_MEM,
  357. };
  358. int __init ip22_gio_init(void)
  359. {
  360. unsigned int pbdma __maybe_unused;
  361. int ret;
  362. ret = device_register(&gio_bus);
  363. if (ret) {
  364. put_device(&gio_bus);
  365. return ret;
  366. }
  367. ret = bus_register(&gio_bus_type);
  368. if (!ret) {
  369. request_resource(&iomem_resource, &gio_bus_resource);
  370. printk(KERN_INFO "GIO: Probing bus...\n");
  371. if (ip22_is_fullhouse()) {
  372. /* Indigo2 */
  373. ip22_check_gio(0, GIO_SLOT_GFX_BASE, SGI_GIO_1_IRQ);
  374. ip22_check_gio(1, GIO_SLOT_EXP0_BASE, SGI_GIO_1_IRQ);
  375. } else {
  376. /* Indy/Challenge S */
  377. if (get_dbe(pbdma, (unsigned int *)&hpc3c1->pbdma[1]))
  378. ip22_check_gio(0, GIO_SLOT_GFX_BASE,
  379. SGI_GIO_0_IRQ);
  380. ip22_check_gio(1, GIO_SLOT_EXP0_BASE, SGI_GIOEXP0_IRQ);
  381. ip22_check_gio(2, GIO_SLOT_EXP1_BASE, SGI_GIOEXP1_IRQ);
  382. }
  383. } else
  384. device_unregister(&gio_bus);
  385. return ret;
  386. }
  387. subsys_initcall(ip22_gio_init);