ide-probe.c 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584
  1. /*
  2. * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
  3. * Copyright (C) 2005, 2007 Bartlomiej Zolnierkiewicz
  4. */
  5. /*
  6. * Mostly written by Mark Lord <mlord@pobox.com>
  7. * and Gadi Oxman <gadio@netvision.net.il>
  8. * and Andre Hedrick <andre@linux-ide.org>
  9. *
  10. * See linux/MAINTAINERS for address of current maintainer.
  11. *
  12. * This is the IDE probe module, as evolved from hd.c and ide.c.
  13. *
  14. * -- increase WAIT_PIDENTIFY to avoid CD-ROM locking at boot
  15. * by Andrea Arcangeli
  16. */
  17. #include <linux/module.h>
  18. #include <linux/types.h>
  19. #include <linux/string.h>
  20. #include <linux/kernel.h>
  21. #include <linux/timer.h>
  22. #include <linux/mm.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/major.h>
  25. #include <linux/errno.h>
  26. #include <linux/genhd.h>
  27. #include <linux/slab.h>
  28. #include <linux/delay.h>
  29. #include <linux/ide.h>
  30. #include <linux/spinlock.h>
  31. #include <linux/kmod.h>
  32. #include <linux/pci.h>
  33. #include <linux/scatterlist.h>
  34. #include <asm/byteorder.h>
  35. #include <asm/irq.h>
  36. #include <asm/uaccess.h>
  37. #include <asm/io.h>
  38. /**
  39. * generic_id - add a generic drive id
  40. * @drive: drive to make an ID block for
  41. *
  42. * Add a fake id field to the drive we are passed. This allows
  43. * use to skip a ton of NULL checks (which people always miss)
  44. * and make drive properties unconditional outside of this file
  45. */
  46. static void generic_id(ide_drive_t *drive)
  47. {
  48. u16 *id = drive->id;
  49. id[ATA_ID_CUR_CYLS] = id[ATA_ID_CYLS] = drive->cyl;
  50. id[ATA_ID_CUR_HEADS] = id[ATA_ID_HEADS] = drive->head;
  51. id[ATA_ID_CUR_SECTORS] = id[ATA_ID_SECTORS] = drive->sect;
  52. }
  53. static void ide_disk_init_chs(ide_drive_t *drive)
  54. {
  55. u16 *id = drive->id;
  56. /* Extract geometry if we did not already have one for the drive */
  57. if (!drive->cyl || !drive->head || !drive->sect) {
  58. drive->cyl = drive->bios_cyl = id[ATA_ID_CYLS];
  59. drive->head = drive->bios_head = id[ATA_ID_HEADS];
  60. drive->sect = drive->bios_sect = id[ATA_ID_SECTORS];
  61. }
  62. /* Handle logical geometry translation by the drive */
  63. if (ata_id_current_chs_valid(id)) {
  64. drive->cyl = id[ATA_ID_CUR_CYLS];
  65. drive->head = id[ATA_ID_CUR_HEADS];
  66. drive->sect = id[ATA_ID_CUR_SECTORS];
  67. }
  68. /* Use physical geometry if what we have still makes no sense */
  69. if (drive->head > 16 && id[ATA_ID_HEADS] && id[ATA_ID_HEADS] <= 16) {
  70. drive->cyl = id[ATA_ID_CYLS];
  71. drive->head = id[ATA_ID_HEADS];
  72. drive->sect = id[ATA_ID_SECTORS];
  73. }
  74. }
  75. static void ide_disk_init_mult_count(ide_drive_t *drive)
  76. {
  77. u16 *id = drive->id;
  78. u8 max_multsect = id[ATA_ID_MAX_MULTSECT] & 0xff;
  79. if (max_multsect) {
  80. if ((max_multsect / 2) > 1)
  81. id[ATA_ID_MULTSECT] = max_multsect | 0x100;
  82. else
  83. id[ATA_ID_MULTSECT] &= ~0x1ff;
  84. drive->mult_req = id[ATA_ID_MULTSECT] & 0xff;
  85. if (drive->mult_req)
  86. drive->special_flags |= IDE_SFLAG_SET_MULTMODE;
  87. }
  88. }
  89. static void ide_classify_ata_dev(ide_drive_t *drive)
  90. {
  91. u16 *id = drive->id;
  92. char *m = (char *)&id[ATA_ID_PROD];
  93. int is_cfa = ata_id_is_cfa(id);
  94. /* CF devices are *not* removable in Linux definition of the term */
  95. if (is_cfa == 0 && (id[ATA_ID_CONFIG] & (1 << 7)))
  96. drive->dev_flags |= IDE_DFLAG_REMOVABLE;
  97. drive->media = ide_disk;
  98. if (!ata_id_has_unload(drive->id))
  99. drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
  100. printk(KERN_INFO "%s: %s, %s DISK drive\n", drive->name, m,
  101. is_cfa ? "CFA" : "ATA");
  102. }
  103. static void ide_classify_atapi_dev(ide_drive_t *drive)
  104. {
  105. u16 *id = drive->id;
  106. char *m = (char *)&id[ATA_ID_PROD];
  107. u8 type = (id[ATA_ID_CONFIG] >> 8) & 0x1f;
  108. printk(KERN_INFO "%s: %s, ATAPI ", drive->name, m);
  109. switch (type) {
  110. case ide_floppy:
  111. if (!strstr(m, "CD-ROM")) {
  112. if (!strstr(m, "oppy") &&
  113. !strstr(m, "poyp") &&
  114. !strstr(m, "ZIP"))
  115. printk(KERN_CONT "cdrom or floppy?, assuming ");
  116. if (drive->media != ide_cdrom) {
  117. printk(KERN_CONT "FLOPPY");
  118. drive->dev_flags |= IDE_DFLAG_REMOVABLE;
  119. break;
  120. }
  121. }
  122. /* Early cdrom models used zero */
  123. type = ide_cdrom;
  124. case ide_cdrom:
  125. drive->dev_flags |= IDE_DFLAG_REMOVABLE;
  126. #ifdef CONFIG_PPC
  127. /* kludge for Apple PowerBook internal zip */
  128. if (!strstr(m, "CD-ROM") && strstr(m, "ZIP")) {
  129. printk(KERN_CONT "FLOPPY");
  130. type = ide_floppy;
  131. break;
  132. }
  133. #endif
  134. printk(KERN_CONT "CD/DVD-ROM");
  135. break;
  136. case ide_tape:
  137. printk(KERN_CONT "TAPE");
  138. break;
  139. case ide_optical:
  140. printk(KERN_CONT "OPTICAL");
  141. drive->dev_flags |= IDE_DFLAG_REMOVABLE;
  142. break;
  143. default:
  144. printk(KERN_CONT "UNKNOWN (type %d)", type);
  145. break;
  146. }
  147. printk(KERN_CONT " drive\n");
  148. drive->media = type;
  149. /* an ATAPI device ignores DRDY */
  150. drive->ready_stat = 0;
  151. if (ata_id_cdb_intr(id))
  152. drive->atapi_flags |= IDE_AFLAG_DRQ_INTERRUPT;
  153. drive->dev_flags |= IDE_DFLAG_DOORLOCKING;
  154. /* we don't do head unloading on ATAPI devices */
  155. drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
  156. }
  157. /**
  158. * do_identify - identify a drive
  159. * @drive: drive to identify
  160. * @cmd: command used
  161. * @id: buffer for IDENTIFY data
  162. *
  163. * Called when we have issued a drive identify command to
  164. * read and parse the results. This function is run with
  165. * interrupts disabled.
  166. */
  167. static void do_identify(ide_drive_t *drive, u8 cmd, u16 *id)
  168. {
  169. ide_hwif_t *hwif = drive->hwif;
  170. char *m = (char *)&id[ATA_ID_PROD];
  171. unsigned long flags;
  172. int bswap = 1;
  173. /* local CPU only; some systems need this */
  174. local_irq_save(flags);
  175. /* read 512 bytes of id info */
  176. hwif->tp_ops->input_data(drive, NULL, id, SECTOR_SIZE);
  177. local_irq_restore(flags);
  178. drive->dev_flags |= IDE_DFLAG_ID_READ;
  179. #ifdef DEBUG
  180. printk(KERN_INFO "%s: dumping identify data\n", drive->name);
  181. ide_dump_identify((u8 *)id);
  182. #endif
  183. ide_fix_driveid(id);
  184. /*
  185. * ATA_CMD_ID_ATA returns little-endian info,
  186. * ATA_CMD_ID_ATAPI *usually* returns little-endian info.
  187. */
  188. if (cmd == ATA_CMD_ID_ATAPI) {
  189. if ((m[0] == 'N' && m[1] == 'E') || /* NEC */
  190. (m[0] == 'F' && m[1] == 'X') || /* Mitsumi */
  191. (m[0] == 'P' && m[1] == 'i')) /* Pioneer */
  192. /* Vertos drives may still be weird */
  193. bswap ^= 1;
  194. }
  195. ide_fixstring(m, ATA_ID_PROD_LEN, bswap);
  196. ide_fixstring((char *)&id[ATA_ID_FW_REV], ATA_ID_FW_REV_LEN, bswap);
  197. ide_fixstring((char *)&id[ATA_ID_SERNO], ATA_ID_SERNO_LEN, bswap);
  198. /* we depend on this a lot! */
  199. m[ATA_ID_PROD_LEN - 1] = '\0';
  200. if (strstr(m, "E X A B Y T E N E S T"))
  201. drive->dev_flags &= ~IDE_DFLAG_PRESENT;
  202. else
  203. drive->dev_flags |= IDE_DFLAG_PRESENT;
  204. }
  205. /**
  206. * ide_dev_read_id - send ATA/ATAPI IDENTIFY command
  207. * @drive: drive to identify
  208. * @cmd: command to use
  209. * @id: buffer for IDENTIFY data
  210. *
  211. * Sends an ATA(PI) IDENTIFY request to a drive and waits for a response.
  212. *
  213. * Returns: 0 device was identified
  214. * 1 device timed-out (no response to identify request)
  215. * 2 device aborted the command (refused to identify itself)
  216. */
  217. int ide_dev_read_id(ide_drive_t *drive, u8 cmd, u16 *id)
  218. {
  219. ide_hwif_t *hwif = drive->hwif;
  220. struct ide_io_ports *io_ports = &hwif->io_ports;
  221. const struct ide_tp_ops *tp_ops = hwif->tp_ops;
  222. int use_altstatus = 0, rc;
  223. unsigned long timeout;
  224. u8 s = 0, a = 0;
  225. /*
  226. * Disable device IRQ. Otherwise we'll get spurious interrupts
  227. * during the identify phase that the IRQ handler isn't expecting.
  228. */
  229. if (io_ports->ctl_addr)
  230. tp_ops->write_devctl(hwif, ATA_NIEN | ATA_DEVCTL_OBS);
  231. /* take a deep breath */
  232. msleep(50);
  233. if (io_ports->ctl_addr &&
  234. (hwif->host_flags & IDE_HFLAG_BROKEN_ALTSTATUS) == 0) {
  235. a = tp_ops->read_altstatus(hwif);
  236. s = tp_ops->read_status(hwif);
  237. if ((a ^ s) & ~ATA_IDX)
  238. /* ancient Seagate drives, broken interfaces */
  239. printk(KERN_INFO "%s: probing with STATUS(0x%02x) "
  240. "instead of ALTSTATUS(0x%02x)\n",
  241. drive->name, s, a);
  242. else
  243. /* use non-intrusive polling */
  244. use_altstatus = 1;
  245. }
  246. /* set features register for atapi
  247. * identify command to be sure of reply
  248. */
  249. if (cmd == ATA_CMD_ID_ATAPI) {
  250. struct ide_taskfile tf;
  251. memset(&tf, 0, sizeof(tf));
  252. /* disable DMA & overlap */
  253. tp_ops->tf_load(drive, &tf, IDE_VALID_FEATURE);
  254. }
  255. /* ask drive for ID */
  256. tp_ops->exec_command(hwif, cmd);
  257. timeout = ((cmd == ATA_CMD_ID_ATA) ? WAIT_WORSTCASE : WAIT_PIDENTIFY) / 2;
  258. if (ide_busy_sleep(drive, timeout, use_altstatus))
  259. return 1;
  260. /* wait for IRQ and ATA_DRQ */
  261. msleep(50);
  262. s = tp_ops->read_status(hwif);
  263. if (OK_STAT(s, ATA_DRQ, BAD_R_STAT)) {
  264. /* drive returned ID */
  265. do_identify(drive, cmd, id);
  266. /* drive responded with ID */
  267. rc = 0;
  268. /* clear drive IRQ */
  269. (void)tp_ops->read_status(hwif);
  270. } else {
  271. /* drive refused ID */
  272. rc = 2;
  273. }
  274. return rc;
  275. }
  276. int ide_busy_sleep(ide_drive_t *drive, unsigned long timeout, int altstatus)
  277. {
  278. ide_hwif_t *hwif = drive->hwif;
  279. u8 stat;
  280. timeout += jiffies;
  281. do {
  282. msleep(50); /* give drive a breather */
  283. stat = altstatus ? hwif->tp_ops->read_altstatus(hwif)
  284. : hwif->tp_ops->read_status(hwif);
  285. if ((stat & ATA_BUSY) == 0)
  286. return 0;
  287. } while (time_before(jiffies, timeout));
  288. printk(KERN_ERR "%s: timeout in %s\n", drive->name, __func__);
  289. return 1; /* drive timed-out */
  290. }
  291. static u8 ide_read_device(ide_drive_t *drive)
  292. {
  293. struct ide_taskfile tf;
  294. drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_DEVICE);
  295. return tf.device;
  296. }
  297. /**
  298. * do_probe - probe an IDE device
  299. * @drive: drive to probe
  300. * @cmd: command to use
  301. *
  302. * do_probe() has the difficult job of finding a drive if it exists,
  303. * without getting hung up if it doesn't exist, without trampling on
  304. * ethernet cards, and without leaving any IRQs dangling to haunt us later.
  305. *
  306. * If a drive is "known" to exist (from CMOS or kernel parameters),
  307. * but does not respond right away, the probe will "hang in there"
  308. * for the maximum wait time (about 30 seconds), otherwise it will
  309. * exit much more quickly.
  310. *
  311. * Returns: 0 device was identified
  312. * 1 device timed-out (no response to identify request)
  313. * 2 device aborted the command (refused to identify itself)
  314. * 3 bad status from device (possible for ATAPI drives)
  315. * 4 probe was not attempted because failure was obvious
  316. */
  317. static int do_probe (ide_drive_t *drive, u8 cmd)
  318. {
  319. ide_hwif_t *hwif = drive->hwif;
  320. const struct ide_tp_ops *tp_ops = hwif->tp_ops;
  321. u16 *id = drive->id;
  322. int rc;
  323. u8 present = !!(drive->dev_flags & IDE_DFLAG_PRESENT), stat;
  324. /* avoid waiting for inappropriate probes */
  325. if (present && drive->media != ide_disk && cmd == ATA_CMD_ID_ATA)
  326. return 4;
  327. #ifdef DEBUG
  328. printk(KERN_INFO "probing for %s: present=%d, media=%d, probetype=%s\n",
  329. drive->name, present, drive->media,
  330. (cmd == ATA_CMD_ID_ATA) ? "ATA" : "ATAPI");
  331. #endif
  332. /* needed for some systems
  333. * (e.g. crw9624 as drive0 with disk as slave)
  334. */
  335. msleep(50);
  336. tp_ops->dev_select(drive);
  337. msleep(50);
  338. if (ide_read_device(drive) != drive->select && present == 0) {
  339. if (drive->dn & 1) {
  340. /* exit with drive0 selected */
  341. tp_ops->dev_select(hwif->devices[0]);
  342. /* allow ATA_BUSY to assert & clear */
  343. msleep(50);
  344. }
  345. /* no i/f present: mmm.. this should be a 4 -ml */
  346. return 3;
  347. }
  348. stat = tp_ops->read_status(hwif);
  349. if (OK_STAT(stat, ATA_DRDY, ATA_BUSY) ||
  350. present || cmd == ATA_CMD_ID_ATAPI) {
  351. rc = ide_dev_read_id(drive, cmd, id);
  352. if (rc)
  353. /* failed: try again */
  354. rc = ide_dev_read_id(drive, cmd, id);
  355. stat = tp_ops->read_status(hwif);
  356. if (stat == (ATA_BUSY | ATA_DRDY))
  357. return 4;
  358. if (rc == 1 && cmd == ATA_CMD_ID_ATAPI) {
  359. printk(KERN_ERR "%s: no response (status = 0x%02x), "
  360. "resetting drive\n", drive->name, stat);
  361. msleep(50);
  362. tp_ops->dev_select(drive);
  363. msleep(50);
  364. tp_ops->exec_command(hwif, ATA_CMD_DEV_RESET);
  365. (void)ide_busy_sleep(drive, WAIT_WORSTCASE, 0);
  366. rc = ide_dev_read_id(drive, cmd, id);
  367. }
  368. /* ensure drive IRQ is clear */
  369. stat = tp_ops->read_status(hwif);
  370. if (rc == 1)
  371. printk(KERN_ERR "%s: no response (status = 0x%02x)\n",
  372. drive->name, stat);
  373. } else {
  374. /* not present or maybe ATAPI */
  375. rc = 3;
  376. }
  377. if (drive->dn & 1) {
  378. /* exit with drive0 selected */
  379. tp_ops->dev_select(hwif->devices[0]);
  380. msleep(50);
  381. /* ensure drive irq is clear */
  382. (void)tp_ops->read_status(hwif);
  383. }
  384. return rc;
  385. }
  386. /**
  387. * probe_for_drives - upper level drive probe
  388. * @drive: drive to probe for
  389. *
  390. * probe_for_drive() tests for existence of a given drive using do_probe()
  391. * and presents things to the user as needed.
  392. *
  393. * Returns: 0 no device was found
  394. * 1 device was found
  395. * (note: IDE_DFLAG_PRESENT might still be not set)
  396. */
  397. static u8 probe_for_drive(ide_drive_t *drive)
  398. {
  399. char *m;
  400. int rc;
  401. u8 cmd;
  402. /*
  403. * In order to keep things simple we have an id
  404. * block for all drives at all times. If the device
  405. * is pre ATA or refuses ATA/ATAPI identify we
  406. * will add faked data to this.
  407. *
  408. * Also note that 0 everywhere means "can't do X"
  409. */
  410. drive->dev_flags &= ~IDE_DFLAG_ID_READ;
  411. drive->id = kzalloc(SECTOR_SIZE, GFP_KERNEL);
  412. if (drive->id == NULL) {
  413. printk(KERN_ERR "ide: out of memory for id data.\n");
  414. return 0;
  415. }
  416. m = (char *)&drive->id[ATA_ID_PROD];
  417. strcpy(m, "UNKNOWN");
  418. /* skip probing? */
  419. if ((drive->dev_flags & IDE_DFLAG_NOPROBE) == 0) {
  420. /* if !(success||timed-out) */
  421. cmd = ATA_CMD_ID_ATA;
  422. rc = do_probe(drive, cmd);
  423. if (rc >= 2) {
  424. /* look for ATAPI device */
  425. cmd = ATA_CMD_ID_ATAPI;
  426. rc = do_probe(drive, cmd);
  427. }
  428. if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
  429. goto out_free;
  430. /* identification failed? */
  431. if ((drive->dev_flags & IDE_DFLAG_ID_READ) == 0) {
  432. if (drive->media == ide_disk) {
  433. printk(KERN_INFO "%s: non-IDE drive, CHS=%d/%d/%d\n",
  434. drive->name, drive->cyl,
  435. drive->head, drive->sect);
  436. } else if (drive->media == ide_cdrom) {
  437. printk(KERN_INFO "%s: ATAPI cdrom (?)\n", drive->name);
  438. } else {
  439. /* nuke it */
  440. printk(KERN_WARNING "%s: Unknown device on bus refused identification. Ignoring.\n", drive->name);
  441. drive->dev_flags &= ~IDE_DFLAG_PRESENT;
  442. }
  443. } else {
  444. if (cmd == ATA_CMD_ID_ATAPI)
  445. ide_classify_atapi_dev(drive);
  446. else
  447. ide_classify_ata_dev(drive);
  448. }
  449. }
  450. if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
  451. goto out_free;
  452. /* The drive wasn't being helpful. Add generic info only */
  453. if ((drive->dev_flags & IDE_DFLAG_ID_READ) == 0) {
  454. generic_id(drive);
  455. return 1;
  456. }
  457. if (drive->media == ide_disk) {
  458. ide_disk_init_chs(drive);
  459. ide_disk_init_mult_count(drive);
  460. }
  461. return 1;
  462. out_free:
  463. kfree(drive->id);
  464. return 0;
  465. }
  466. static void hwif_release_dev(struct device *dev)
  467. {
  468. ide_hwif_t *hwif = container_of(dev, ide_hwif_t, gendev);
  469. complete(&hwif->gendev_rel_comp);
  470. }
  471. static int ide_register_port(ide_hwif_t *hwif)
  472. {
  473. int ret;
  474. /* register with global device tree */
  475. dev_set_name(&hwif->gendev, hwif->name);
  476. hwif->gendev.driver_data = hwif;
  477. if (hwif->gendev.parent == NULL)
  478. hwif->gendev.parent = hwif->dev;
  479. hwif->gendev.release = hwif_release_dev;
  480. ret = device_register(&hwif->gendev);
  481. if (ret < 0) {
  482. printk(KERN_WARNING "IDE: %s: device_register error: %d\n",
  483. __func__, ret);
  484. goto out;
  485. }
  486. hwif->portdev = device_create(ide_port_class, &hwif->gendev,
  487. MKDEV(0, 0), hwif, hwif->name);
  488. if (IS_ERR(hwif->portdev)) {
  489. ret = PTR_ERR(hwif->portdev);
  490. device_unregister(&hwif->gendev);
  491. }
  492. out:
  493. return ret;
  494. }
  495. /**
  496. * ide_port_wait_ready - wait for port to become ready
  497. * @hwif: IDE port
  498. *
  499. * This is needed on some PPCs and a bunch of BIOS-less embedded
  500. * platforms. Typical cases are:
  501. *
  502. * - The firmware hard reset the disk before booting the kernel,
  503. * the drive is still doing it's poweron-reset sequence, that
  504. * can take up to 30 seconds.
  505. *
  506. * - The firmware does nothing (or no firmware), the device is
  507. * still in POST state (same as above actually).
  508. *
  509. * - Some CD/DVD/Writer combo drives tend to drive the bus during
  510. * their reset sequence even when they are non-selected slave
  511. * devices, thus preventing discovery of the main HD.
  512. *
  513. * Doing this wait-for-non-busy should not harm any existing
  514. * configuration and fix some issues like the above.
  515. *
  516. * BenH.
  517. *
  518. * Returns 0 on success, error code (< 0) otherwise.
  519. */
  520. static int ide_port_wait_ready(ide_hwif_t *hwif)
  521. {
  522. const struct ide_tp_ops *tp_ops = hwif->tp_ops;
  523. ide_drive_t *drive;
  524. int i, rc;
  525. printk(KERN_DEBUG "Probing IDE interface %s...\n", hwif->name);
  526. /* Let HW settle down a bit from whatever init state we
  527. * come from */
  528. mdelay(2);
  529. /* Wait for BSY bit to go away, spec timeout is 30 seconds,
  530. * I know of at least one disk who takes 31 seconds, I use 35
  531. * here to be safe
  532. */
  533. rc = ide_wait_not_busy(hwif, 35000);
  534. if (rc)
  535. return rc;
  536. /* Now make sure both master & slave are ready */
  537. ide_port_for_each_dev(i, drive, hwif) {
  538. /* Ignore disks that we will not probe for later. */
  539. if ((drive->dev_flags & IDE_DFLAG_NOPROBE) == 0 ||
  540. (drive->dev_flags & IDE_DFLAG_PRESENT)) {
  541. tp_ops->dev_select(drive);
  542. tp_ops->write_devctl(hwif, ATA_DEVCTL_OBS);
  543. mdelay(2);
  544. rc = ide_wait_not_busy(hwif, 35000);
  545. if (rc)
  546. goto out;
  547. } else
  548. printk(KERN_DEBUG "%s: ide_wait_not_busy() skipped\n",
  549. drive->name);
  550. }
  551. out:
  552. /* Exit function with master reselected (let's be sane) */
  553. if (i)
  554. tp_ops->dev_select(hwif->devices[0]);
  555. return rc;
  556. }
  557. /**
  558. * ide_undecoded_slave - look for bad CF adapters
  559. * @dev1: slave device
  560. *
  561. * Analyse the drives on the interface and attempt to decide if we
  562. * have the same drive viewed twice. This occurs with crap CF adapters
  563. * and PCMCIA sometimes.
  564. */
  565. void ide_undecoded_slave(ide_drive_t *dev1)
  566. {
  567. ide_drive_t *dev0 = dev1->hwif->devices[0];
  568. if ((dev1->dn & 1) == 0 || (dev0->dev_flags & IDE_DFLAG_PRESENT) == 0)
  569. return;
  570. /* If the models don't match they are not the same product */
  571. if (strcmp((char *)&dev0->id[ATA_ID_PROD],
  572. (char *)&dev1->id[ATA_ID_PROD]))
  573. return;
  574. /* Serial numbers do not match */
  575. if (strncmp((char *)&dev0->id[ATA_ID_SERNO],
  576. (char *)&dev1->id[ATA_ID_SERNO], ATA_ID_SERNO_LEN))
  577. return;
  578. /* No serial number, thankfully very rare for CF */
  579. if (*(char *)&dev0->id[ATA_ID_SERNO] == 0)
  580. return;
  581. /* Appears to be an IDE flash adapter with decode bugs */
  582. printk(KERN_WARNING "ide-probe: ignoring undecoded slave\n");
  583. dev1->dev_flags &= ~IDE_DFLAG_PRESENT;
  584. }
  585. EXPORT_SYMBOL_GPL(ide_undecoded_slave);
  586. static int ide_probe_port(ide_hwif_t *hwif)
  587. {
  588. ide_drive_t *drive;
  589. unsigned int irqd;
  590. int i, rc = -ENODEV;
  591. BUG_ON(hwif->present);
  592. if ((hwif->devices[0]->dev_flags & IDE_DFLAG_NOPROBE) &&
  593. (hwif->devices[1]->dev_flags & IDE_DFLAG_NOPROBE))
  594. return -EACCES;
  595. /*
  596. * We must always disable IRQ, as probe_for_drive will assert IRQ, but
  597. * we'll install our IRQ driver much later...
  598. */
  599. irqd = hwif->irq;
  600. if (irqd)
  601. disable_irq(hwif->irq);
  602. if (ide_port_wait_ready(hwif) == -EBUSY)
  603. printk(KERN_DEBUG "%s: Wait for ready failed before probe !\n", hwif->name);
  604. /*
  605. * Second drive should only exist if first drive was found,
  606. * but a lot of cdrom drives are configured as single slaves.
  607. */
  608. ide_port_for_each_dev(i, drive, hwif) {
  609. (void) probe_for_drive(drive);
  610. if (drive->dev_flags & IDE_DFLAG_PRESENT)
  611. rc = 0;
  612. }
  613. /*
  614. * Use cached IRQ number. It might be (and is...) changed by probe
  615. * code above
  616. */
  617. if (irqd)
  618. enable_irq(irqd);
  619. return rc;
  620. }
  621. static void ide_port_tune_devices(ide_hwif_t *hwif)
  622. {
  623. const struct ide_port_ops *port_ops = hwif->port_ops;
  624. ide_drive_t *drive;
  625. int i;
  626. ide_port_for_each_present_dev(i, drive, hwif) {
  627. if (port_ops && port_ops->quirkproc)
  628. port_ops->quirkproc(drive);
  629. }
  630. ide_port_for_each_present_dev(i, drive, hwif) {
  631. ide_set_max_pio(drive);
  632. drive->dev_flags |= IDE_DFLAG_NICE1;
  633. if (hwif->dma_ops)
  634. ide_set_dma(drive);
  635. }
  636. }
  637. /*
  638. * init request queue
  639. */
  640. static int ide_init_queue(ide_drive_t *drive)
  641. {
  642. struct request_queue *q;
  643. ide_hwif_t *hwif = drive->hwif;
  644. int max_sectors = 256;
  645. int max_sg_entries = PRD_ENTRIES;
  646. /*
  647. * Our default set up assumes the normal IDE case,
  648. * that is 64K segmenting, standard PRD setup
  649. * and LBA28. Some drivers then impose their own
  650. * limits and LBA48 we could raise it but as yet
  651. * do not.
  652. */
  653. q = blk_init_queue_node(do_ide_request, NULL, hwif_to_node(hwif));
  654. if (!q)
  655. return 1;
  656. q->queuedata = drive;
  657. blk_queue_segment_boundary(q, 0xffff);
  658. if (hwif->rqsize < max_sectors)
  659. max_sectors = hwif->rqsize;
  660. blk_queue_max_sectors(q, max_sectors);
  661. #ifdef CONFIG_PCI
  662. /* When we have an IOMMU, we may have a problem where pci_map_sg()
  663. * creates segments that don't completely match our boundary
  664. * requirements and thus need to be broken up again. Because it
  665. * doesn't align properly either, we may actually have to break up
  666. * to more segments than what was we got in the first place, a max
  667. * worst case is twice as many.
  668. * This will be fixed once we teach pci_map_sg() about our boundary
  669. * requirements, hopefully soon. *FIXME*
  670. */
  671. if (!PCI_DMA_BUS_IS_PHYS)
  672. max_sg_entries >>= 1;
  673. #endif /* CONFIG_PCI */
  674. blk_queue_max_hw_segments(q, max_sg_entries);
  675. blk_queue_max_phys_segments(q, max_sg_entries);
  676. /* assign drive queue */
  677. drive->queue = q;
  678. /* needs drive->queue to be set */
  679. ide_toggle_bounce(drive, 1);
  680. return 0;
  681. }
  682. static DEFINE_MUTEX(ide_cfg_mtx);
  683. /*
  684. * For any present drive:
  685. * - allocate the block device queue
  686. */
  687. static int ide_port_setup_devices(ide_hwif_t *hwif)
  688. {
  689. ide_drive_t *drive;
  690. int i, j = 0;
  691. mutex_lock(&ide_cfg_mtx);
  692. ide_port_for_each_present_dev(i, drive, hwif) {
  693. if (ide_init_queue(drive)) {
  694. printk(KERN_ERR "ide: failed to init %s\n",
  695. drive->name);
  696. kfree(drive->id);
  697. drive->id = NULL;
  698. drive->dev_flags &= ~IDE_DFLAG_PRESENT;
  699. continue;
  700. }
  701. j++;
  702. }
  703. mutex_unlock(&ide_cfg_mtx);
  704. return j;
  705. }
  706. /*
  707. * This routine sets up the IRQ for an IDE interface.
  708. */
  709. static int init_irq (ide_hwif_t *hwif)
  710. {
  711. struct ide_io_ports *io_ports = &hwif->io_ports;
  712. struct ide_host *host = hwif->host;
  713. irq_handler_t irq_handler = host->irq_handler;
  714. int sa = host->irq_flags;
  715. if (irq_handler == NULL)
  716. irq_handler = ide_intr;
  717. if (io_ports->ctl_addr)
  718. hwif->tp_ops->write_devctl(hwif, ATA_DEVCTL_OBS);
  719. if (request_irq(hwif->irq, irq_handler, sa, hwif->name, hwif))
  720. goto out_up;
  721. #if !defined(__mc68000__)
  722. printk(KERN_INFO "%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif->name,
  723. io_ports->data_addr, io_ports->status_addr,
  724. io_ports->ctl_addr, hwif->irq);
  725. #else
  726. printk(KERN_INFO "%s at 0x%08lx on irq %d", hwif->name,
  727. io_ports->data_addr, hwif->irq);
  728. #endif /* __mc68000__ */
  729. if (hwif->host->host_flags & IDE_HFLAG_SERIALIZE)
  730. printk(KERN_CONT " (serialized)");
  731. printk(KERN_CONT "\n");
  732. return 0;
  733. out_up:
  734. return 1;
  735. }
  736. static int ata_lock(dev_t dev, void *data)
  737. {
  738. /* FIXME: we want to pin hwif down */
  739. return 0;
  740. }
  741. static struct kobject *ata_probe(dev_t dev, int *part, void *data)
  742. {
  743. ide_hwif_t *hwif = data;
  744. int unit = *part >> PARTN_BITS;
  745. ide_drive_t *drive = hwif->devices[unit];
  746. if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
  747. return NULL;
  748. if (drive->media == ide_disk)
  749. request_module("ide-disk");
  750. if (drive->media == ide_cdrom || drive->media == ide_optical)
  751. request_module("ide-cd");
  752. if (drive->media == ide_tape)
  753. request_module("ide-tape");
  754. if (drive->media == ide_floppy)
  755. request_module("ide-floppy");
  756. return NULL;
  757. }
  758. static struct kobject *exact_match(dev_t dev, int *part, void *data)
  759. {
  760. struct gendisk *p = data;
  761. *part &= (1 << PARTN_BITS) - 1;
  762. return &disk_to_dev(p)->kobj;
  763. }
  764. static int exact_lock(dev_t dev, void *data)
  765. {
  766. struct gendisk *p = data;
  767. if (!get_disk(p))
  768. return -1;
  769. return 0;
  770. }
  771. void ide_register_region(struct gendisk *disk)
  772. {
  773. blk_register_region(MKDEV(disk->major, disk->first_minor),
  774. disk->minors, NULL, exact_match, exact_lock, disk);
  775. }
  776. EXPORT_SYMBOL_GPL(ide_register_region);
  777. void ide_unregister_region(struct gendisk *disk)
  778. {
  779. blk_unregister_region(MKDEV(disk->major, disk->first_minor),
  780. disk->minors);
  781. }
  782. EXPORT_SYMBOL_GPL(ide_unregister_region);
  783. void ide_init_disk(struct gendisk *disk, ide_drive_t *drive)
  784. {
  785. ide_hwif_t *hwif = drive->hwif;
  786. unsigned int unit = drive->dn & 1;
  787. disk->major = hwif->major;
  788. disk->first_minor = unit << PARTN_BITS;
  789. sprintf(disk->disk_name, "hd%c", 'a' + hwif->index * MAX_DRIVES + unit);
  790. disk->queue = drive->queue;
  791. }
  792. EXPORT_SYMBOL_GPL(ide_init_disk);
  793. static void drive_release_dev (struct device *dev)
  794. {
  795. ide_drive_t *drive = container_of(dev, ide_drive_t, gendev);
  796. ide_proc_unregister_device(drive);
  797. blk_cleanup_queue(drive->queue);
  798. drive->queue = NULL;
  799. kfree(drive->id);
  800. drive->id = NULL;
  801. drive->dev_flags &= ~IDE_DFLAG_PRESENT;
  802. complete(&drive->gendev_rel_comp);
  803. }
  804. static int hwif_init(ide_hwif_t *hwif)
  805. {
  806. if (!hwif->irq) {
  807. printk(KERN_ERR "%s: disabled, no IRQ\n", hwif->name);
  808. return 0;
  809. }
  810. if (register_blkdev(hwif->major, hwif->name))
  811. return 0;
  812. if (!hwif->sg_max_nents)
  813. hwif->sg_max_nents = PRD_ENTRIES;
  814. hwif->sg_table = kmalloc(sizeof(struct scatterlist)*hwif->sg_max_nents,
  815. GFP_KERNEL);
  816. if (!hwif->sg_table) {
  817. printk(KERN_ERR "%s: unable to allocate SG table.\n", hwif->name);
  818. goto out;
  819. }
  820. sg_init_table(hwif->sg_table, hwif->sg_max_nents);
  821. if (init_irq(hwif)) {
  822. printk(KERN_ERR "%s: disabled, unable to get IRQ %d\n",
  823. hwif->name, hwif->irq);
  824. goto out;
  825. }
  826. blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS,
  827. THIS_MODULE, ata_probe, ata_lock, hwif);
  828. return 1;
  829. out:
  830. unregister_blkdev(hwif->major, hwif->name);
  831. return 0;
  832. }
  833. static void hwif_register_devices(ide_hwif_t *hwif)
  834. {
  835. ide_drive_t *drive;
  836. unsigned int i;
  837. ide_port_for_each_present_dev(i, drive, hwif) {
  838. struct device *dev = &drive->gendev;
  839. int ret;
  840. dev_set_name(dev, "%u.%u", hwif->index, i);
  841. dev->parent = &hwif->gendev;
  842. dev->bus = &ide_bus_type;
  843. dev->driver_data = drive;
  844. dev->release = drive_release_dev;
  845. ret = device_register(dev);
  846. if (ret < 0)
  847. printk(KERN_WARNING "IDE: %s: device_register error: "
  848. "%d\n", __func__, ret);
  849. }
  850. }
  851. static void ide_port_init_devices(ide_hwif_t *hwif)
  852. {
  853. const struct ide_port_ops *port_ops = hwif->port_ops;
  854. ide_drive_t *drive;
  855. int i;
  856. ide_port_for_each_dev(i, drive, hwif) {
  857. drive->dn = i + hwif->channel * 2;
  858. if (hwif->host_flags & IDE_HFLAG_IO_32BIT)
  859. drive->io_32bit = 1;
  860. if (hwif->host_flags & IDE_HFLAG_NO_IO_32BIT)
  861. drive->dev_flags |= IDE_DFLAG_NO_IO_32BIT;
  862. if (hwif->host_flags & IDE_HFLAG_UNMASK_IRQS)
  863. drive->dev_flags |= IDE_DFLAG_UNMASK;
  864. if (hwif->host_flags & IDE_HFLAG_NO_UNMASK_IRQS)
  865. drive->dev_flags |= IDE_DFLAG_NO_UNMASK;
  866. if (port_ops && port_ops->init_dev)
  867. port_ops->init_dev(drive);
  868. }
  869. ide_port_for_each_dev(i, drive, hwif) {
  870. /*
  871. * default to PIO Mode 0 before we figure out
  872. * the most suited mode for the attached device
  873. */
  874. if (port_ops && port_ops->set_pio_mode)
  875. port_ops->set_pio_mode(drive, 0);
  876. }
  877. }
  878. static void ide_init_port(ide_hwif_t *hwif, unsigned int port,
  879. const struct ide_port_info *d)
  880. {
  881. hwif->channel = port;
  882. hwif->chipset = d->chipset ? d->chipset : ide_pci;
  883. if (d->init_iops)
  884. d->init_iops(hwif);
  885. /* ->host_flags may be set by ->init_iops (or even earlier...) */
  886. hwif->host_flags |= d->host_flags;
  887. hwif->pio_mask = d->pio_mask;
  888. if (d->tp_ops)
  889. hwif->tp_ops = d->tp_ops;
  890. /* ->set_pio_mode for DTC2278 is currently limited to port 0 */
  891. if ((hwif->host_flags & IDE_HFLAG_DTC2278) == 0 || hwif->channel == 0)
  892. hwif->port_ops = d->port_ops;
  893. hwif->swdma_mask = d->swdma_mask;
  894. hwif->mwdma_mask = d->mwdma_mask;
  895. hwif->ultra_mask = d->udma_mask;
  896. if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) {
  897. int rc;
  898. hwif->dma_ops = d->dma_ops;
  899. if (d->init_dma)
  900. rc = d->init_dma(hwif, d);
  901. else
  902. rc = ide_hwif_setup_dma(hwif, d);
  903. if (rc < 0) {
  904. printk(KERN_INFO "%s: DMA disabled\n", hwif->name);
  905. hwif->dma_ops = NULL;
  906. hwif->dma_base = 0;
  907. hwif->swdma_mask = 0;
  908. hwif->mwdma_mask = 0;
  909. hwif->ultra_mask = 0;
  910. }
  911. }
  912. if ((d->host_flags & IDE_HFLAG_SERIALIZE) ||
  913. ((d->host_flags & IDE_HFLAG_SERIALIZE_DMA) && hwif->dma_base))
  914. hwif->host->host_flags |= IDE_HFLAG_SERIALIZE;
  915. if (d->max_sectors)
  916. hwif->rqsize = d->max_sectors;
  917. else {
  918. if ((hwif->host_flags & IDE_HFLAG_NO_LBA48) ||
  919. (hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA))
  920. hwif->rqsize = 256;
  921. else
  922. hwif->rqsize = 65536;
  923. }
  924. /* call chipset specific routine for each enabled port */
  925. if (d->init_hwif)
  926. d->init_hwif(hwif);
  927. }
  928. static void ide_port_cable_detect(ide_hwif_t *hwif)
  929. {
  930. const struct ide_port_ops *port_ops = hwif->port_ops;
  931. if (port_ops && port_ops->cable_detect && (hwif->ultra_mask & 0x78)) {
  932. if (hwif->cbl != ATA_CBL_PATA40_SHORT)
  933. hwif->cbl = port_ops->cable_detect(hwif);
  934. }
  935. }
  936. static const u8 ide_hwif_to_major[] =
  937. { IDE0_MAJOR, IDE1_MAJOR, IDE2_MAJOR, IDE3_MAJOR, IDE4_MAJOR,
  938. IDE5_MAJOR, IDE6_MAJOR, IDE7_MAJOR, IDE8_MAJOR, IDE9_MAJOR };
  939. static void ide_port_init_devices_data(ide_hwif_t *hwif)
  940. {
  941. ide_drive_t *drive;
  942. int i;
  943. ide_port_for_each_dev(i, drive, hwif) {
  944. u8 j = (hwif->index * MAX_DRIVES) + i;
  945. memset(drive, 0, sizeof(*drive));
  946. drive->media = ide_disk;
  947. drive->select = (i << 4) | ATA_DEVICE_OBS;
  948. drive->hwif = hwif;
  949. drive->ready_stat = ATA_DRDY;
  950. drive->bad_wstat = BAD_W_STAT;
  951. drive->special_flags = IDE_SFLAG_RECALIBRATE |
  952. IDE_SFLAG_SET_GEOMETRY;
  953. drive->name[0] = 'h';
  954. drive->name[1] = 'd';
  955. drive->name[2] = 'a' + j;
  956. drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
  957. INIT_LIST_HEAD(&drive->list);
  958. init_completion(&drive->gendev_rel_comp);
  959. }
  960. }
  961. static void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
  962. {
  963. /* fill in any non-zero initial values */
  964. hwif->index = index;
  965. hwif->major = ide_hwif_to_major[index];
  966. hwif->name[0] = 'i';
  967. hwif->name[1] = 'd';
  968. hwif->name[2] = 'e';
  969. hwif->name[3] = '0' + index;
  970. spin_lock_init(&hwif->lock);
  971. init_timer(&hwif->timer);
  972. hwif->timer.function = &ide_timer_expiry;
  973. hwif->timer.data = (unsigned long)hwif;
  974. init_completion(&hwif->gendev_rel_comp);
  975. hwif->tp_ops = &default_tp_ops;
  976. ide_port_init_devices_data(hwif);
  977. }
  978. static void ide_init_port_hw(ide_hwif_t *hwif, struct ide_hw *hw)
  979. {
  980. memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
  981. hwif->irq = hw->irq;
  982. hwif->dev = hw->dev;
  983. hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
  984. hwif->ack_intr = hw->ack_intr;
  985. hwif->config_data = hw->config;
  986. }
  987. static unsigned int ide_indexes;
  988. /**
  989. * ide_find_port_slot - find free port slot
  990. * @d: IDE port info
  991. *
  992. * Return the new port slot index or -ENOENT if we are out of free slots.
  993. */
  994. static int ide_find_port_slot(const struct ide_port_info *d)
  995. {
  996. int idx = -ENOENT;
  997. u8 bootable = (d && (d->host_flags & IDE_HFLAG_NON_BOOTABLE)) ? 0 : 1;
  998. u8 i = (d && (d->host_flags & IDE_HFLAG_QD_2ND_PORT)) ? 1 : 0;;
  999. /*
  1000. * Claim an unassigned slot.
  1001. *
  1002. * Give preference to claiming other slots before claiming ide0/ide1,
  1003. * just in case there's another interface yet-to-be-scanned
  1004. * which uses ports 0x1f0/0x170 (the ide0/ide1 defaults).
  1005. *
  1006. * Unless there is a bootable card that does not use the standard
  1007. * ports 0x1f0/0x170 (the ide0/ide1 defaults).
  1008. */
  1009. mutex_lock(&ide_cfg_mtx);
  1010. if (bootable) {
  1011. if ((ide_indexes | i) != (1 << MAX_HWIFS) - 1)
  1012. idx = ffz(ide_indexes | i);
  1013. } else {
  1014. if ((ide_indexes | 3) != (1 << MAX_HWIFS) - 1)
  1015. idx = ffz(ide_indexes | 3);
  1016. else if ((ide_indexes & 3) != 3)
  1017. idx = ffz(ide_indexes);
  1018. }
  1019. if (idx >= 0)
  1020. ide_indexes |= (1 << idx);
  1021. mutex_unlock(&ide_cfg_mtx);
  1022. return idx;
  1023. }
  1024. static void ide_free_port_slot(int idx)
  1025. {
  1026. mutex_lock(&ide_cfg_mtx);
  1027. ide_indexes &= ~(1 << idx);
  1028. mutex_unlock(&ide_cfg_mtx);
  1029. }
  1030. static void ide_port_free_devices(ide_hwif_t *hwif)
  1031. {
  1032. ide_drive_t *drive;
  1033. int i;
  1034. ide_port_for_each_dev(i, drive, hwif)
  1035. kfree(drive);
  1036. }
  1037. static int ide_port_alloc_devices(ide_hwif_t *hwif, int node)
  1038. {
  1039. int i;
  1040. for (i = 0; i < MAX_DRIVES; i++) {
  1041. ide_drive_t *drive;
  1042. drive = kzalloc_node(sizeof(*drive), GFP_KERNEL, node);
  1043. if (drive == NULL)
  1044. goto out_nomem;
  1045. hwif->devices[i] = drive;
  1046. }
  1047. return 0;
  1048. out_nomem:
  1049. ide_port_free_devices(hwif);
  1050. return -ENOMEM;
  1051. }
  1052. struct ide_host *ide_host_alloc(const struct ide_port_info *d,
  1053. struct ide_hw **hws, unsigned int n_ports)
  1054. {
  1055. struct ide_host *host;
  1056. struct device *dev = hws[0] ? hws[0]->dev : NULL;
  1057. int node = dev ? dev_to_node(dev) : -1;
  1058. int i;
  1059. host = kzalloc_node(sizeof(*host), GFP_KERNEL, node);
  1060. if (host == NULL)
  1061. return NULL;
  1062. for (i = 0; i < n_ports; i++) {
  1063. ide_hwif_t *hwif;
  1064. int idx;
  1065. if (hws[i] == NULL)
  1066. continue;
  1067. hwif = kzalloc_node(sizeof(*hwif), GFP_KERNEL, node);
  1068. if (hwif == NULL)
  1069. continue;
  1070. if (ide_port_alloc_devices(hwif, node) < 0) {
  1071. kfree(hwif);
  1072. continue;
  1073. }
  1074. idx = ide_find_port_slot(d);
  1075. if (idx < 0) {
  1076. printk(KERN_ERR "%s: no free slot for interface\n",
  1077. d ? d->name : "ide");
  1078. kfree(hwif);
  1079. continue;
  1080. }
  1081. ide_init_port_data(hwif, idx);
  1082. hwif->host = host;
  1083. host->ports[i] = hwif;
  1084. host->n_ports++;
  1085. }
  1086. if (host->n_ports == 0) {
  1087. kfree(host);
  1088. return NULL;
  1089. }
  1090. host->dev[0] = dev;
  1091. if (d) {
  1092. host->init_chipset = d->init_chipset;
  1093. host->get_lock = d->get_lock;
  1094. host->release_lock = d->release_lock;
  1095. host->host_flags = d->host_flags;
  1096. host->irq_flags = d->irq_flags;
  1097. }
  1098. return host;
  1099. }
  1100. EXPORT_SYMBOL_GPL(ide_host_alloc);
  1101. static void ide_port_free(ide_hwif_t *hwif)
  1102. {
  1103. ide_port_free_devices(hwif);
  1104. ide_free_port_slot(hwif->index);
  1105. kfree(hwif);
  1106. }
  1107. static void ide_disable_port(ide_hwif_t *hwif)
  1108. {
  1109. struct ide_host *host = hwif->host;
  1110. int i;
  1111. printk(KERN_INFO "%s: disabling port\n", hwif->name);
  1112. for (i = 0; i < MAX_HOST_PORTS; i++) {
  1113. if (host->ports[i] == hwif) {
  1114. host->ports[i] = NULL;
  1115. host->n_ports--;
  1116. }
  1117. }
  1118. ide_port_free(hwif);
  1119. }
  1120. int ide_host_register(struct ide_host *host, const struct ide_port_info *d,
  1121. struct ide_hw **hws)
  1122. {
  1123. ide_hwif_t *hwif, *mate = NULL;
  1124. int i, j = 0;
  1125. ide_host_for_each_port(i, hwif, host) {
  1126. if (hwif == NULL) {
  1127. mate = NULL;
  1128. continue;
  1129. }
  1130. ide_init_port_hw(hwif, hws[i]);
  1131. ide_port_apply_params(hwif);
  1132. if ((i & 1) && mate) {
  1133. hwif->mate = mate;
  1134. mate->mate = hwif;
  1135. }
  1136. mate = (i & 1) ? NULL : hwif;
  1137. ide_init_port(hwif, i & 1, d);
  1138. ide_port_cable_detect(hwif);
  1139. ide_port_init_devices(hwif);
  1140. }
  1141. ide_host_for_each_port(i, hwif, host) {
  1142. if (hwif == NULL)
  1143. continue;
  1144. if (ide_probe_port(hwif) == 0)
  1145. hwif->present = 1;
  1146. if ((hwif->host_flags & IDE_HFLAG_4DRIVES) == 0 ||
  1147. hwif->mate == NULL || hwif->mate->present == 0) {
  1148. if (ide_register_port(hwif)) {
  1149. ide_disable_port(hwif);
  1150. continue;
  1151. }
  1152. }
  1153. if (hwif->present)
  1154. ide_port_tune_devices(hwif);
  1155. }
  1156. ide_host_for_each_port(i, hwif, host) {
  1157. if (hwif == NULL)
  1158. continue;
  1159. if (hwif_init(hwif) == 0) {
  1160. printk(KERN_INFO "%s: failed to initialize IDE "
  1161. "interface\n", hwif->name);
  1162. device_unregister(&hwif->gendev);
  1163. ide_disable_port(hwif);
  1164. continue;
  1165. }
  1166. if (hwif->present)
  1167. if (ide_port_setup_devices(hwif) == 0) {
  1168. hwif->present = 0;
  1169. continue;
  1170. }
  1171. j++;
  1172. ide_acpi_init_port(hwif);
  1173. if (hwif->present)
  1174. ide_acpi_port_init_devices(hwif);
  1175. }
  1176. ide_host_for_each_port(i, hwif, host) {
  1177. if (hwif == NULL)
  1178. continue;
  1179. if (hwif->present)
  1180. hwif_register_devices(hwif);
  1181. }
  1182. ide_host_for_each_port(i, hwif, host) {
  1183. if (hwif == NULL)
  1184. continue;
  1185. ide_sysfs_register_port(hwif);
  1186. ide_proc_register_port(hwif);
  1187. if (hwif->present)
  1188. ide_proc_port_register_devices(hwif);
  1189. }
  1190. return j ? 0 : -1;
  1191. }
  1192. EXPORT_SYMBOL_GPL(ide_host_register);
  1193. int ide_host_add(const struct ide_port_info *d, struct ide_hw **hws,
  1194. unsigned int n_ports, struct ide_host **hostp)
  1195. {
  1196. struct ide_host *host;
  1197. int rc;
  1198. host = ide_host_alloc(d, hws, n_ports);
  1199. if (host == NULL)
  1200. return -ENOMEM;
  1201. rc = ide_host_register(host, d, hws);
  1202. if (rc) {
  1203. ide_host_free(host);
  1204. return rc;
  1205. }
  1206. if (hostp)
  1207. *hostp = host;
  1208. return 0;
  1209. }
  1210. EXPORT_SYMBOL_GPL(ide_host_add);
  1211. static void __ide_port_unregister_devices(ide_hwif_t *hwif)
  1212. {
  1213. ide_drive_t *drive;
  1214. int i;
  1215. ide_port_for_each_present_dev(i, drive, hwif) {
  1216. device_unregister(&drive->gendev);
  1217. wait_for_completion(&drive->gendev_rel_comp);
  1218. }
  1219. }
  1220. void ide_port_unregister_devices(ide_hwif_t *hwif)
  1221. {
  1222. mutex_lock(&ide_cfg_mtx);
  1223. __ide_port_unregister_devices(hwif);
  1224. hwif->present = 0;
  1225. ide_port_init_devices_data(hwif);
  1226. mutex_unlock(&ide_cfg_mtx);
  1227. }
  1228. EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
  1229. /**
  1230. * ide_unregister - free an IDE interface
  1231. * @hwif: IDE interface
  1232. *
  1233. * Perform the final unregister of an IDE interface.
  1234. *
  1235. * Locking:
  1236. * The caller must not hold the IDE locks.
  1237. *
  1238. * It is up to the caller to be sure there is no pending I/O here,
  1239. * and that the interface will not be reopened (present/vanishing
  1240. * locking isn't yet done BTW).
  1241. */
  1242. static void ide_unregister(ide_hwif_t *hwif)
  1243. {
  1244. BUG_ON(in_interrupt());
  1245. BUG_ON(irqs_disabled());
  1246. mutex_lock(&ide_cfg_mtx);
  1247. if (hwif->present) {
  1248. __ide_port_unregister_devices(hwif);
  1249. hwif->present = 0;
  1250. }
  1251. ide_proc_unregister_port(hwif);
  1252. free_irq(hwif->irq, hwif);
  1253. device_unregister(hwif->portdev);
  1254. device_unregister(&hwif->gendev);
  1255. wait_for_completion(&hwif->gendev_rel_comp);
  1256. /*
  1257. * Remove us from the kernel's knowledge
  1258. */
  1259. blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
  1260. kfree(hwif->sg_table);
  1261. unregister_blkdev(hwif->major, hwif->name);
  1262. ide_release_dma_engine(hwif);
  1263. mutex_unlock(&ide_cfg_mtx);
  1264. }
  1265. void ide_host_free(struct ide_host *host)
  1266. {
  1267. ide_hwif_t *hwif;
  1268. int i;
  1269. ide_host_for_each_port(i, hwif, host) {
  1270. if (hwif)
  1271. ide_port_free(hwif);
  1272. }
  1273. kfree(host);
  1274. }
  1275. EXPORT_SYMBOL_GPL(ide_host_free);
  1276. void ide_host_remove(struct ide_host *host)
  1277. {
  1278. ide_hwif_t *hwif;
  1279. int i;
  1280. ide_host_for_each_port(i, hwif, host) {
  1281. if (hwif)
  1282. ide_unregister(hwif);
  1283. }
  1284. ide_host_free(host);
  1285. }
  1286. EXPORT_SYMBOL_GPL(ide_host_remove);
  1287. void ide_port_scan(ide_hwif_t *hwif)
  1288. {
  1289. ide_port_apply_params(hwif);
  1290. ide_port_cable_detect(hwif);
  1291. ide_port_init_devices(hwif);
  1292. if (ide_probe_port(hwif) < 0)
  1293. return;
  1294. hwif->present = 1;
  1295. ide_port_tune_devices(hwif);
  1296. ide_port_setup_devices(hwif);
  1297. ide_acpi_port_init_devices(hwif);
  1298. hwif_register_devices(hwif);
  1299. ide_proc_port_register_devices(hwif);
  1300. }
  1301. EXPORT_SYMBOL_GPL(ide_port_scan);