aic79xx_pci.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999
  1. /*
  2. * Product specific probe and attach routines for:
  3. * aic7901 and aic7902 SCSI controllers
  4. *
  5. * Copyright (c) 1994-2001 Justin T. Gibbs.
  6. * Copyright (c) 2000-2002 Adaptec Inc.
  7. * All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions, and the following disclaimer,
  14. * without modification.
  15. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  16. * substantially similar to the "NO WARRANTY" disclaimer below
  17. * ("Disclaimer") and any redistribution must be conditioned upon
  18. * including a substantially similar Disclaimer requirement for further
  19. * binary redistribution.
  20. * 3. Neither the names of the above-listed copyright holders nor the names
  21. * of any contributors may be used to endorse or promote products derived
  22. * from this software without specific prior written permission.
  23. *
  24. * Alternatively, this software may be distributed under the terms of the
  25. * GNU General Public License ("GPL") version 2 as published by the Free
  26. * Software Foundation.
  27. *
  28. * NO WARRANTY
  29. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  30. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  31. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  32. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  33. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  34. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  35. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  36. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  37. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  38. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  39. * POSSIBILITY OF SUCH DAMAGES.
  40. *
  41. * $Id: //depot/aic7xxx/aic7xxx/aic79xx_pci.c#92 $
  42. */
  43. #ifdef __linux__
  44. #include "aic79xx_osm.h"
  45. #include "aic79xx_inline.h"
  46. #else
  47. #include <dev/aic7xxx/aic79xx_osm.h>
  48. #include <dev/aic7xxx/aic79xx_inline.h>
  49. #endif
  50. #include "aic79xx_pci.h"
  51. static __inline uint64_t
  52. ahd_compose_id(u_int device, u_int vendor, u_int subdevice, u_int subvendor)
  53. {
  54. uint64_t id;
  55. id = subvendor
  56. | (subdevice << 16)
  57. | ((uint64_t)vendor << 32)
  58. | ((uint64_t)device << 48);
  59. return (id);
  60. }
  61. #define ID_AIC7902_PCI_REV_A4 0x3
  62. #define ID_AIC7902_PCI_REV_B0 0x10
  63. #define SUBID_HP 0x0E11
  64. #define DEVID_9005_HOSTRAID(id) ((id) & 0x80)
  65. #define DEVID_9005_TYPE(id) ((id) & 0xF)
  66. #define DEVID_9005_TYPE_HBA 0x0 /* Standard Card */
  67. #define DEVID_9005_TYPE_HBA_2EXT 0x1 /* 2 External Ports */
  68. #define DEVID_9005_TYPE_IROC 0x8 /* Raid(0,1,10) Card */
  69. #define DEVID_9005_TYPE_MB 0xF /* On Motherboard */
  70. #define DEVID_9005_MFUNC(id) ((id) & 0x10)
  71. #define DEVID_9005_PACKETIZED(id) ((id) & 0x8000)
  72. #define SUBID_9005_TYPE(id) ((id) & 0xF)
  73. #define SUBID_9005_TYPE_HBA 0x0 /* Standard Card */
  74. #define SUBID_9005_TYPE_MB 0xF /* On Motherboard */
  75. #define SUBID_9005_AUTOTERM(id) (((id) & 0x10) == 0)
  76. #define SUBID_9005_LEGACYCONN_FUNC(id) ((id) & 0x20)
  77. #define SUBID_9005_SEEPTYPE(id) (((id) & 0x0C0) >> 6)
  78. #define SUBID_9005_SEEPTYPE_NONE 0x0
  79. #define SUBID_9005_SEEPTYPE_4K 0x1
  80. static ahd_device_setup_t ahd_aic7901_setup;
  81. static ahd_device_setup_t ahd_aic7901A_setup;
  82. static ahd_device_setup_t ahd_aic7902_setup;
  83. static ahd_device_setup_t ahd_aic790X_setup;
  84. static struct ahd_pci_identity ahd_pci_ident_table [] =
  85. {
  86. /* aic7901 based controllers */
  87. {
  88. ID_AHA_29320A,
  89. ID_ALL_MASK,
  90. "Adaptec 29320A Ultra320 SCSI adapter",
  91. ahd_aic7901_setup
  92. },
  93. {
  94. ID_AHA_29320ALP,
  95. ID_ALL_MASK,
  96. "Adaptec 29320ALP PCIx Ultra320 SCSI adapter",
  97. ahd_aic7901_setup
  98. },
  99. {
  100. ID_AHA_29320LPE,
  101. ID_ALL_MASK,
  102. "Adaptec 29320LPE PCIe Ultra320 SCSI adapter",
  103. ahd_aic7901_setup
  104. },
  105. /* aic7901A based controllers */
  106. {
  107. ID_AHA_29320LP,
  108. ID_ALL_MASK,
  109. "Adaptec 29320LP Ultra320 SCSI adapter",
  110. ahd_aic7901A_setup
  111. },
  112. /* aic7902 based controllers */
  113. {
  114. ID_AHA_29320,
  115. ID_ALL_MASK,
  116. "Adaptec 29320 Ultra320 SCSI adapter",
  117. ahd_aic7902_setup
  118. },
  119. {
  120. ID_AHA_29320B,
  121. ID_ALL_MASK,
  122. "Adaptec 29320B Ultra320 SCSI adapter",
  123. ahd_aic7902_setup
  124. },
  125. {
  126. ID_AHA_39320,
  127. ID_ALL_MASK,
  128. "Adaptec 39320 Ultra320 SCSI adapter",
  129. ahd_aic7902_setup
  130. },
  131. {
  132. ID_AHA_39320_B,
  133. ID_ALL_MASK,
  134. "Adaptec 39320 Ultra320 SCSI adapter",
  135. ahd_aic7902_setup
  136. },
  137. {
  138. ID_AHA_39320_B_DELL,
  139. ID_ALL_MASK,
  140. "Adaptec (Dell OEM) 39320 Ultra320 SCSI adapter",
  141. ahd_aic7902_setup
  142. },
  143. {
  144. ID_AHA_39320A,
  145. ID_ALL_MASK,
  146. "Adaptec 39320A Ultra320 SCSI adapter",
  147. ahd_aic7902_setup
  148. },
  149. {
  150. ID_AHA_39320D,
  151. ID_ALL_MASK,
  152. "Adaptec 39320D Ultra320 SCSI adapter",
  153. ahd_aic7902_setup
  154. },
  155. {
  156. ID_AHA_39320D_HP,
  157. ID_ALL_MASK,
  158. "Adaptec (HP OEM) 39320D Ultra320 SCSI adapter",
  159. ahd_aic7902_setup
  160. },
  161. {
  162. ID_AHA_39320D_B,
  163. ID_ALL_MASK,
  164. "Adaptec 39320D Ultra320 SCSI adapter",
  165. ahd_aic7902_setup
  166. },
  167. {
  168. ID_AHA_39320D_B_HP,
  169. ID_ALL_MASK,
  170. "Adaptec (HP OEM) 39320D Ultra320 SCSI adapter",
  171. ahd_aic7902_setup
  172. },
  173. /* Generic chip probes for devices we don't know 'exactly' */
  174. {
  175. ID_AIC7901 & ID_9005_GENERIC_MASK,
  176. ID_9005_GENERIC_MASK,
  177. "Adaptec AIC7901 Ultra320 SCSI adapter",
  178. ahd_aic7901_setup
  179. },
  180. {
  181. ID_AIC7901A & ID_DEV_VENDOR_MASK,
  182. ID_DEV_VENDOR_MASK,
  183. "Adaptec AIC7901A Ultra320 SCSI adapter",
  184. ahd_aic7901A_setup
  185. },
  186. {
  187. ID_AIC7902 & ID_9005_GENERIC_MASK,
  188. ID_9005_GENERIC_MASK,
  189. "Adaptec AIC7902 Ultra320 SCSI adapter",
  190. ahd_aic7902_setup
  191. }
  192. };
  193. static const u_int ahd_num_pci_devs = ARRAY_SIZE(ahd_pci_ident_table);
  194. #define DEVCONFIG 0x40
  195. #define PCIXINITPAT 0x0000E000ul
  196. #define PCIXINIT_PCI33_66 0x0000E000ul
  197. #define PCIXINIT_PCIX50_66 0x0000C000ul
  198. #define PCIXINIT_PCIX66_100 0x0000A000ul
  199. #define PCIXINIT_PCIX100_133 0x00008000ul
  200. #define PCI_BUS_MODES_INDEX(devconfig) \
  201. (((devconfig) & PCIXINITPAT) >> 13)
  202. static const char *pci_bus_modes[] =
  203. {
  204. "PCI bus mode unknown",
  205. "PCI bus mode unknown",
  206. "PCI bus mode unknown",
  207. "PCI bus mode unknown",
  208. "PCI-X 101-133Mhz",
  209. "PCI-X 67-100Mhz",
  210. "PCI-X 50-66Mhz",
  211. "PCI 33 or 66Mhz"
  212. };
  213. #define TESTMODE 0x00000800ul
  214. #define IRDY_RST 0x00000200ul
  215. #define FRAME_RST 0x00000100ul
  216. #define PCI64BIT 0x00000080ul
  217. #define MRDCEN 0x00000040ul
  218. #define ENDIANSEL 0x00000020ul
  219. #define MIXQWENDIANEN 0x00000008ul
  220. #define DACEN 0x00000004ul
  221. #define STPWLEVEL 0x00000002ul
  222. #define QWENDIANSEL 0x00000001ul
  223. #define DEVCONFIG1 0x44
  224. #define PREQDIS 0x01
  225. #define CSIZE_LATTIME 0x0c
  226. #define CACHESIZE 0x000000fful
  227. #define LATTIME 0x0000ff00ul
  228. static int ahd_check_extport(struct ahd_softc *ahd);
  229. static void ahd_configure_termination(struct ahd_softc *ahd,
  230. u_int adapter_control);
  231. static void ahd_pci_split_intr(struct ahd_softc *ahd, u_int intstat);
  232. static void ahd_pci_intr(struct ahd_softc *ahd);
  233. struct ahd_pci_identity *
  234. ahd_find_pci_device(ahd_dev_softc_t pci)
  235. {
  236. uint64_t full_id;
  237. uint16_t device;
  238. uint16_t vendor;
  239. uint16_t subdevice;
  240. uint16_t subvendor;
  241. struct ahd_pci_identity *entry;
  242. u_int i;
  243. vendor = ahd_pci_read_config(pci, PCIR_DEVVENDOR, /*bytes*/2);
  244. device = ahd_pci_read_config(pci, PCIR_DEVICE, /*bytes*/2);
  245. subvendor = ahd_pci_read_config(pci, PCIR_SUBVEND_0, /*bytes*/2);
  246. subdevice = ahd_pci_read_config(pci, PCIR_SUBDEV_0, /*bytes*/2);
  247. full_id = ahd_compose_id(device,
  248. vendor,
  249. subdevice,
  250. subvendor);
  251. /*
  252. * Controllers, mask out the IROC/HostRAID bit
  253. */
  254. full_id &= ID_ALL_IROC_MASK;
  255. for (i = 0; i < ahd_num_pci_devs; i++) {
  256. entry = &ahd_pci_ident_table[i];
  257. if (entry->full_id == (full_id & entry->id_mask)) {
  258. /* Honor exclusion entries. */
  259. if (entry->name == NULL)
  260. return (NULL);
  261. return (entry);
  262. }
  263. }
  264. return (NULL);
  265. }
  266. int
  267. ahd_pci_config(struct ahd_softc *ahd, struct ahd_pci_identity *entry)
  268. {
  269. struct scb_data *shared_scb_data;
  270. u_int command;
  271. uint32_t devconfig;
  272. uint16_t subvendor;
  273. int error;
  274. shared_scb_data = NULL;
  275. ahd->description = entry->name;
  276. /*
  277. * Record if this is an HP board.
  278. */
  279. subvendor = ahd_pci_read_config(ahd->dev_softc,
  280. PCIR_SUBVEND_0, /*bytes*/2);
  281. if (subvendor == SUBID_HP)
  282. ahd->flags |= AHD_HP_BOARD;
  283. error = entry->setup(ahd);
  284. if (error != 0)
  285. return (error);
  286. devconfig = ahd_pci_read_config(ahd->dev_softc, DEVCONFIG, /*bytes*/4);
  287. if ((devconfig & PCIXINITPAT) == PCIXINIT_PCI33_66) {
  288. ahd->chip |= AHD_PCI;
  289. /* Disable PCIX workarounds when running in PCI mode. */
  290. ahd->bugs &= ~AHD_PCIX_BUG_MASK;
  291. } else {
  292. ahd->chip |= AHD_PCIX;
  293. }
  294. ahd->bus_description = pci_bus_modes[PCI_BUS_MODES_INDEX(devconfig)];
  295. ahd_power_state_change(ahd, AHD_POWER_STATE_D0);
  296. error = ahd_pci_map_registers(ahd);
  297. if (error != 0)
  298. return (error);
  299. /*
  300. * If we need to support high memory, enable dual
  301. * address cycles. This bit must be set to enable
  302. * high address bit generation even if we are on a
  303. * 64bit bus (PCI64BIT set in devconfig).
  304. */
  305. if ((ahd->flags & (AHD_39BIT_ADDRESSING|AHD_64BIT_ADDRESSING)) != 0) {
  306. uint32_t devconfig;
  307. if (bootverbose)
  308. printf("%s: Enabling 39Bit Addressing\n",
  309. ahd_name(ahd));
  310. devconfig = ahd_pci_read_config(ahd->dev_softc,
  311. DEVCONFIG, /*bytes*/4);
  312. devconfig |= DACEN;
  313. ahd_pci_write_config(ahd->dev_softc, DEVCONFIG,
  314. devconfig, /*bytes*/4);
  315. }
  316. /* Ensure busmastering is enabled */
  317. command = ahd_pci_read_config(ahd->dev_softc, PCIR_COMMAND, /*bytes*/2);
  318. command |= PCIM_CMD_BUSMASTEREN;
  319. ahd_pci_write_config(ahd->dev_softc, PCIR_COMMAND, command, /*bytes*/2);
  320. error = ahd_softc_init(ahd);
  321. if (error != 0)
  322. return (error);
  323. ahd->bus_intr = ahd_pci_intr;
  324. error = ahd_reset(ahd, /*reinit*/FALSE);
  325. if (error != 0)
  326. return (ENXIO);
  327. ahd->pci_cachesize =
  328. ahd_pci_read_config(ahd->dev_softc, CSIZE_LATTIME,
  329. /*bytes*/1) & CACHESIZE;
  330. ahd->pci_cachesize *= 4;
  331. ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
  332. /* See if we have a SEEPROM and perform auto-term */
  333. error = ahd_check_extport(ahd);
  334. if (error != 0)
  335. return (error);
  336. /* Core initialization */
  337. error = ahd_init(ahd);
  338. if (error != 0)
  339. return (error);
  340. /*
  341. * Allow interrupts now that we are completely setup.
  342. */
  343. error = ahd_pci_map_int(ahd);
  344. if (!error)
  345. ahd->init_level++;
  346. return error;
  347. }
  348. /*
  349. * Perform some simple tests that should catch situations where
  350. * our registers are invalidly mapped.
  351. */
  352. int
  353. ahd_pci_test_register_access(struct ahd_softc *ahd)
  354. {
  355. uint32_t cmd;
  356. u_int targpcistat;
  357. u_int pci_status1;
  358. int error;
  359. uint8_t hcntrl;
  360. error = EIO;
  361. /*
  362. * Enable PCI error interrupt status, but suppress NMIs
  363. * generated by SERR raised due to target aborts.
  364. */
  365. cmd = ahd_pci_read_config(ahd->dev_softc, PCIR_COMMAND, /*bytes*/2);
  366. ahd_pci_write_config(ahd->dev_softc, PCIR_COMMAND,
  367. cmd & ~PCIM_CMD_SERRESPEN, /*bytes*/2);
  368. /*
  369. * First a simple test to see if any
  370. * registers can be read. Reading
  371. * HCNTRL has no side effects and has
  372. * at least one bit that is guaranteed to
  373. * be zero so it is a good register to
  374. * use for this test.
  375. */
  376. hcntrl = ahd_inb(ahd, HCNTRL);
  377. if (hcntrl == 0xFF)
  378. goto fail;
  379. /*
  380. * Next create a situation where write combining
  381. * or read prefetching could be initiated by the
  382. * CPU or host bridge. Our device does not support
  383. * either, so look for data corruption and/or flaged
  384. * PCI errors. First pause without causing another
  385. * chip reset.
  386. */
  387. hcntrl &= ~CHIPRST;
  388. ahd_outb(ahd, HCNTRL, hcntrl|PAUSE);
  389. while (ahd_is_paused(ahd) == 0)
  390. ;
  391. /* Clear any PCI errors that occurred before our driver attached. */
  392. ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
  393. targpcistat = ahd_inb(ahd, TARGPCISTAT);
  394. ahd_outb(ahd, TARGPCISTAT, targpcistat);
  395. pci_status1 = ahd_pci_read_config(ahd->dev_softc,
  396. PCIR_STATUS + 1, /*bytes*/1);
  397. ahd_pci_write_config(ahd->dev_softc, PCIR_STATUS + 1,
  398. pci_status1, /*bytes*/1);
  399. ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
  400. ahd_outb(ahd, CLRINT, CLRPCIINT);
  401. ahd_outb(ahd, SEQCTL0, PERRORDIS);
  402. ahd_outl(ahd, SRAM_BASE, 0x5aa555aa);
  403. if (ahd_inl(ahd, SRAM_BASE) != 0x5aa555aa)
  404. goto fail;
  405. if ((ahd_inb(ahd, INTSTAT) & PCIINT) != 0) {
  406. u_int targpcistat;
  407. ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
  408. targpcistat = ahd_inb(ahd, TARGPCISTAT);
  409. if ((targpcistat & STA) != 0)
  410. goto fail;
  411. }
  412. error = 0;
  413. fail:
  414. if ((ahd_inb(ahd, INTSTAT) & PCIINT) != 0) {
  415. ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
  416. targpcistat = ahd_inb(ahd, TARGPCISTAT);
  417. /* Silently clear any latched errors. */
  418. ahd_outb(ahd, TARGPCISTAT, targpcistat);
  419. pci_status1 = ahd_pci_read_config(ahd->dev_softc,
  420. PCIR_STATUS + 1, /*bytes*/1);
  421. ahd_pci_write_config(ahd->dev_softc, PCIR_STATUS + 1,
  422. pci_status1, /*bytes*/1);
  423. ahd_outb(ahd, CLRINT, CLRPCIINT);
  424. }
  425. ahd_outb(ahd, SEQCTL0, PERRORDIS|FAILDIS);
  426. ahd_pci_write_config(ahd->dev_softc, PCIR_COMMAND, cmd, /*bytes*/2);
  427. return (error);
  428. }
  429. /*
  430. * Check the external port logic for a serial eeprom
  431. * and termination/cable detection contrls.
  432. */
  433. static int
  434. ahd_check_extport(struct ahd_softc *ahd)
  435. {
  436. struct vpd_config vpd;
  437. struct seeprom_config *sc;
  438. u_int adapter_control;
  439. int have_seeprom;
  440. int error;
  441. sc = ahd->seep_config;
  442. have_seeprom = ahd_acquire_seeprom(ahd);
  443. if (have_seeprom) {
  444. u_int start_addr;
  445. /*
  446. * Fetch VPD for this function and parse it.
  447. */
  448. if (bootverbose)
  449. printf("%s: Reading VPD from SEEPROM...",
  450. ahd_name(ahd));
  451. /* Address is always in units of 16bit words */
  452. start_addr = ((2 * sizeof(*sc))
  453. + (sizeof(vpd) * (ahd->channel - 'A'))) / 2;
  454. error = ahd_read_seeprom(ahd, (uint16_t *)&vpd,
  455. start_addr, sizeof(vpd)/2,
  456. /*bytestream*/TRUE);
  457. if (error == 0)
  458. error = ahd_parse_vpddata(ahd, &vpd);
  459. if (bootverbose)
  460. printf("%s: VPD parsing %s\n",
  461. ahd_name(ahd),
  462. error == 0 ? "successful" : "failed");
  463. if (bootverbose)
  464. printf("%s: Reading SEEPROM...", ahd_name(ahd));
  465. /* Address is always in units of 16bit words */
  466. start_addr = (sizeof(*sc) / 2) * (ahd->channel - 'A');
  467. error = ahd_read_seeprom(ahd, (uint16_t *)sc,
  468. start_addr, sizeof(*sc)/2,
  469. /*bytestream*/FALSE);
  470. if (error != 0) {
  471. printf("Unable to read SEEPROM\n");
  472. have_seeprom = 0;
  473. } else {
  474. have_seeprom = ahd_verify_cksum(sc);
  475. if (bootverbose) {
  476. if (have_seeprom == 0)
  477. printf ("checksum error\n");
  478. else
  479. printf ("done.\n");
  480. }
  481. }
  482. ahd_release_seeprom(ahd);
  483. }
  484. if (!have_seeprom) {
  485. u_int nvram_scb;
  486. /*
  487. * Pull scratch ram settings and treat them as
  488. * if they are the contents of an seeprom if
  489. * the 'ADPT', 'BIOS', or 'ASPI' signature is found
  490. * in SCB 0xFF. We manually compose the data as 16bit
  491. * values to avoid endian issues.
  492. */
  493. ahd_set_scbptr(ahd, 0xFF);
  494. nvram_scb = ahd_inb_scbram(ahd, SCB_BASE + NVRAM_SCB_OFFSET);
  495. if (nvram_scb != 0xFF
  496. && ((ahd_inb_scbram(ahd, SCB_BASE + 0) == 'A'
  497. && ahd_inb_scbram(ahd, SCB_BASE + 1) == 'D'
  498. && ahd_inb_scbram(ahd, SCB_BASE + 2) == 'P'
  499. && ahd_inb_scbram(ahd, SCB_BASE + 3) == 'T')
  500. || (ahd_inb_scbram(ahd, SCB_BASE + 0) == 'B'
  501. && ahd_inb_scbram(ahd, SCB_BASE + 1) == 'I'
  502. && ahd_inb_scbram(ahd, SCB_BASE + 2) == 'O'
  503. && ahd_inb_scbram(ahd, SCB_BASE + 3) == 'S')
  504. || (ahd_inb_scbram(ahd, SCB_BASE + 0) == 'A'
  505. && ahd_inb_scbram(ahd, SCB_BASE + 1) == 'S'
  506. && ahd_inb_scbram(ahd, SCB_BASE + 2) == 'P'
  507. && ahd_inb_scbram(ahd, SCB_BASE + 3) == 'I'))) {
  508. uint16_t *sc_data;
  509. int i;
  510. ahd_set_scbptr(ahd, nvram_scb);
  511. sc_data = (uint16_t *)sc;
  512. for (i = 0; i < 64; i += 2)
  513. *sc_data++ = ahd_inw_scbram(ahd, SCB_BASE+i);
  514. have_seeprom = ahd_verify_cksum(sc);
  515. if (have_seeprom)
  516. ahd->flags |= AHD_SCB_CONFIG_USED;
  517. }
  518. }
  519. #ifdef AHD_DEBUG
  520. if (have_seeprom != 0
  521. && (ahd_debug & AHD_DUMP_SEEPROM) != 0) {
  522. uint16_t *sc_data;
  523. int i;
  524. printf("%s: Seeprom Contents:", ahd_name(ahd));
  525. sc_data = (uint16_t *)sc;
  526. for (i = 0; i < (sizeof(*sc)); i += 2)
  527. printf("\n\t0x%.4x", sc_data[i]);
  528. printf("\n");
  529. }
  530. #endif
  531. if (!have_seeprom) {
  532. if (bootverbose)
  533. printf("%s: No SEEPROM available.\n", ahd_name(ahd));
  534. ahd->flags |= AHD_USEDEFAULTS;
  535. error = ahd_default_config(ahd);
  536. adapter_control = CFAUTOTERM|CFSEAUTOTERM;
  537. free(ahd->seep_config, M_DEVBUF);
  538. ahd->seep_config = NULL;
  539. } else {
  540. error = ahd_parse_cfgdata(ahd, sc);
  541. adapter_control = sc->adapter_control;
  542. }
  543. if (error != 0)
  544. return (error);
  545. ahd_configure_termination(ahd, adapter_control);
  546. return (0);
  547. }
  548. static void
  549. ahd_configure_termination(struct ahd_softc *ahd, u_int adapter_control)
  550. {
  551. int error;
  552. u_int sxfrctl1;
  553. uint8_t termctl;
  554. uint32_t devconfig;
  555. devconfig = ahd_pci_read_config(ahd->dev_softc, DEVCONFIG, /*bytes*/4);
  556. devconfig &= ~STPWLEVEL;
  557. if ((ahd->flags & AHD_STPWLEVEL_A) != 0)
  558. devconfig |= STPWLEVEL;
  559. if (bootverbose)
  560. printf("%s: STPWLEVEL is %s\n",
  561. ahd_name(ahd), (devconfig & STPWLEVEL) ? "on" : "off");
  562. ahd_pci_write_config(ahd->dev_softc, DEVCONFIG, devconfig, /*bytes*/4);
  563. /* Make sure current sensing is off. */
  564. if ((ahd->flags & AHD_CURRENT_SENSING) != 0) {
  565. (void)ahd_write_flexport(ahd, FLXADDR_ROMSTAT_CURSENSECTL, 0);
  566. }
  567. /*
  568. * Read to sense. Write to set.
  569. */
  570. error = ahd_read_flexport(ahd, FLXADDR_TERMCTL, &termctl);
  571. if ((adapter_control & CFAUTOTERM) == 0) {
  572. if (bootverbose)
  573. printf("%s: Manual Primary Termination\n",
  574. ahd_name(ahd));
  575. termctl &= ~(FLX_TERMCTL_ENPRILOW|FLX_TERMCTL_ENPRIHIGH);
  576. if ((adapter_control & CFSTERM) != 0)
  577. termctl |= FLX_TERMCTL_ENPRILOW;
  578. if ((adapter_control & CFWSTERM) != 0)
  579. termctl |= FLX_TERMCTL_ENPRIHIGH;
  580. } else if (error != 0) {
  581. printf("%s: Primary Auto-Term Sensing failed! "
  582. "Using Defaults.\n", ahd_name(ahd));
  583. termctl = FLX_TERMCTL_ENPRILOW|FLX_TERMCTL_ENPRIHIGH;
  584. }
  585. if ((adapter_control & CFSEAUTOTERM) == 0) {
  586. if (bootverbose)
  587. printf("%s: Manual Secondary Termination\n",
  588. ahd_name(ahd));
  589. termctl &= ~(FLX_TERMCTL_ENSECLOW|FLX_TERMCTL_ENSECHIGH);
  590. if ((adapter_control & CFSELOWTERM) != 0)
  591. termctl |= FLX_TERMCTL_ENSECLOW;
  592. if ((adapter_control & CFSEHIGHTERM) != 0)
  593. termctl |= FLX_TERMCTL_ENSECHIGH;
  594. } else if (error != 0) {
  595. printf("%s: Secondary Auto-Term Sensing failed! "
  596. "Using Defaults.\n", ahd_name(ahd));
  597. termctl |= FLX_TERMCTL_ENSECLOW|FLX_TERMCTL_ENSECHIGH;
  598. }
  599. /*
  600. * Now set the termination based on what we found.
  601. */
  602. sxfrctl1 = ahd_inb(ahd, SXFRCTL1) & ~STPWEN;
  603. ahd->flags &= ~AHD_TERM_ENB_A;
  604. if ((termctl & FLX_TERMCTL_ENPRILOW) != 0) {
  605. ahd->flags |= AHD_TERM_ENB_A;
  606. sxfrctl1 |= STPWEN;
  607. }
  608. /* Must set the latch once in order to be effective. */
  609. ahd_outb(ahd, SXFRCTL1, sxfrctl1|STPWEN);
  610. ahd_outb(ahd, SXFRCTL1, sxfrctl1);
  611. error = ahd_write_flexport(ahd, FLXADDR_TERMCTL, termctl);
  612. if (error != 0) {
  613. printf("%s: Unable to set termination settings!\n",
  614. ahd_name(ahd));
  615. } else if (bootverbose) {
  616. printf("%s: Primary High byte termination %sabled\n",
  617. ahd_name(ahd),
  618. (termctl & FLX_TERMCTL_ENPRIHIGH) ? "En" : "Dis");
  619. printf("%s: Primary Low byte termination %sabled\n",
  620. ahd_name(ahd),
  621. (termctl & FLX_TERMCTL_ENPRILOW) ? "En" : "Dis");
  622. printf("%s: Secondary High byte termination %sabled\n",
  623. ahd_name(ahd),
  624. (termctl & FLX_TERMCTL_ENSECHIGH) ? "En" : "Dis");
  625. printf("%s: Secondary Low byte termination %sabled\n",
  626. ahd_name(ahd),
  627. (termctl & FLX_TERMCTL_ENSECLOW) ? "En" : "Dis");
  628. }
  629. return;
  630. }
  631. #define DPE 0x80
  632. #define SSE 0x40
  633. #define RMA 0x20
  634. #define RTA 0x10
  635. #define STA 0x08
  636. #define DPR 0x01
  637. static const char *split_status_source[] =
  638. {
  639. "DFF0",
  640. "DFF1",
  641. "OVLY",
  642. "CMC",
  643. };
  644. static const char *pci_status_source[] =
  645. {
  646. "DFF0",
  647. "DFF1",
  648. "SG",
  649. "CMC",
  650. "OVLY",
  651. "NONE",
  652. "MSI",
  653. "TARG"
  654. };
  655. static const char *split_status_strings[] =
  656. {
  657. "%s: Received split response in %s.\n",
  658. "%s: Received split completion error message in %s\n",
  659. "%s: Receive overrun in %s\n",
  660. "%s: Count not complete in %s\n",
  661. "%s: Split completion data bucket in %s\n",
  662. "%s: Split completion address error in %s\n",
  663. "%s: Split completion byte count error in %s\n",
  664. "%s: Signaled Target-abort to early terminate a split in %s\n"
  665. };
  666. static const char *pci_status_strings[] =
  667. {
  668. "%s: Data Parity Error has been reported via PERR# in %s\n",
  669. "%s: Target initial wait state error in %s\n",
  670. "%s: Split completion read data parity error in %s\n",
  671. "%s: Split completion address attribute parity error in %s\n",
  672. "%s: Received a Target Abort in %s\n",
  673. "%s: Received a Master Abort in %s\n",
  674. "%s: Signal System Error Detected in %s\n",
  675. "%s: Address or Write Phase Parity Error Detected in %s.\n"
  676. };
  677. static void
  678. ahd_pci_intr(struct ahd_softc *ahd)
  679. {
  680. uint8_t pci_status[8];
  681. ahd_mode_state saved_modes;
  682. u_int pci_status1;
  683. u_int intstat;
  684. u_int i;
  685. u_int reg;
  686. intstat = ahd_inb(ahd, INTSTAT);
  687. if ((intstat & SPLTINT) != 0)
  688. ahd_pci_split_intr(ahd, intstat);
  689. if ((intstat & PCIINT) == 0)
  690. return;
  691. printf("%s: PCI error Interrupt\n", ahd_name(ahd));
  692. saved_modes = ahd_save_modes(ahd);
  693. ahd_dump_card_state(ahd);
  694. ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
  695. for (i = 0, reg = DF0PCISTAT; i < 8; i++, reg++) {
  696. if (i == 5)
  697. continue;
  698. pci_status[i] = ahd_inb(ahd, reg);
  699. /* Clear latched errors. So our interrupt deasserts. */
  700. ahd_outb(ahd, reg, pci_status[i]);
  701. }
  702. for (i = 0; i < 8; i++) {
  703. u_int bit;
  704. if (i == 5)
  705. continue;
  706. for (bit = 0; bit < 8; bit++) {
  707. if ((pci_status[i] & (0x1 << bit)) != 0) {
  708. static const char *s;
  709. s = pci_status_strings[bit];
  710. if (i == 7/*TARG*/ && bit == 3)
  711. s = "%s: Signaled Target Abort\n";
  712. printf(s, ahd_name(ahd), pci_status_source[i]);
  713. }
  714. }
  715. }
  716. pci_status1 = ahd_pci_read_config(ahd->dev_softc,
  717. PCIR_STATUS + 1, /*bytes*/1);
  718. ahd_pci_write_config(ahd->dev_softc, PCIR_STATUS + 1,
  719. pci_status1, /*bytes*/1);
  720. ahd_restore_modes(ahd, saved_modes);
  721. ahd_outb(ahd, CLRINT, CLRPCIINT);
  722. ahd_unpause(ahd);
  723. }
  724. static void
  725. ahd_pci_split_intr(struct ahd_softc *ahd, u_int intstat)
  726. {
  727. uint8_t split_status[4];
  728. uint8_t split_status1[4];
  729. uint8_t sg_split_status[2];
  730. uint8_t sg_split_status1[2];
  731. ahd_mode_state saved_modes;
  732. u_int i;
  733. uint16_t pcix_status;
  734. /*
  735. * Check for splits in all modes. Modes 0 and 1
  736. * additionally have SG engine splits to look at.
  737. */
  738. pcix_status = ahd_pci_read_config(ahd->dev_softc, PCIXR_STATUS,
  739. /*bytes*/2);
  740. printf("%s: PCI Split Interrupt - PCI-X status = 0x%x\n",
  741. ahd_name(ahd), pcix_status);
  742. saved_modes = ahd_save_modes(ahd);
  743. for (i = 0; i < 4; i++) {
  744. ahd_set_modes(ahd, i, i);
  745. split_status[i] = ahd_inb(ahd, DCHSPLTSTAT0);
  746. split_status1[i] = ahd_inb(ahd, DCHSPLTSTAT1);
  747. /* Clear latched errors. So our interrupt deasserts. */
  748. ahd_outb(ahd, DCHSPLTSTAT0, split_status[i]);
  749. ahd_outb(ahd, DCHSPLTSTAT1, split_status1[i]);
  750. if (i > 1)
  751. continue;
  752. sg_split_status[i] = ahd_inb(ahd, SGSPLTSTAT0);
  753. sg_split_status1[i] = ahd_inb(ahd, SGSPLTSTAT1);
  754. /* Clear latched errors. So our interrupt deasserts. */
  755. ahd_outb(ahd, SGSPLTSTAT0, sg_split_status[i]);
  756. ahd_outb(ahd, SGSPLTSTAT1, sg_split_status1[i]);
  757. }
  758. for (i = 0; i < 4; i++) {
  759. u_int bit;
  760. for (bit = 0; bit < 8; bit++) {
  761. if ((split_status[i] & (0x1 << bit)) != 0) {
  762. static const char *s;
  763. s = split_status_strings[bit];
  764. printf(s, ahd_name(ahd),
  765. split_status_source[i]);
  766. }
  767. if (i > 1)
  768. continue;
  769. if ((sg_split_status[i] & (0x1 << bit)) != 0) {
  770. static const char *s;
  771. s = split_status_strings[bit];
  772. printf(s, ahd_name(ahd), "SG");
  773. }
  774. }
  775. }
  776. /*
  777. * Clear PCI-X status bits.
  778. */
  779. ahd_pci_write_config(ahd->dev_softc, PCIXR_STATUS,
  780. pcix_status, /*bytes*/2);
  781. ahd_outb(ahd, CLRINT, CLRSPLTINT);
  782. ahd_restore_modes(ahd, saved_modes);
  783. }
  784. static int
  785. ahd_aic7901_setup(struct ahd_softc *ahd)
  786. {
  787. ahd->chip = AHD_AIC7901;
  788. ahd->features = AHD_AIC7901_FE;
  789. return (ahd_aic790X_setup(ahd));
  790. }
  791. static int
  792. ahd_aic7901A_setup(struct ahd_softc *ahd)
  793. {
  794. ahd->chip = AHD_AIC7901A;
  795. ahd->features = AHD_AIC7901A_FE;
  796. return (ahd_aic790X_setup(ahd));
  797. }
  798. static int
  799. ahd_aic7902_setup(struct ahd_softc *ahd)
  800. {
  801. ahd->chip = AHD_AIC7902;
  802. ahd->features = AHD_AIC7902_FE;
  803. return (ahd_aic790X_setup(ahd));
  804. }
  805. static int
  806. ahd_aic790X_setup(struct ahd_softc *ahd)
  807. {
  808. ahd_dev_softc_t pci;
  809. u_int rev;
  810. pci = ahd->dev_softc;
  811. rev = ahd_pci_read_config(pci, PCIR_REVID, /*bytes*/1);
  812. if (rev < ID_AIC7902_PCI_REV_A4) {
  813. printf("%s: Unable to attach to unsupported chip revision %d\n",
  814. ahd_name(ahd), rev);
  815. ahd_pci_write_config(pci, PCIR_COMMAND, 0, /*bytes*/2);
  816. return (ENXIO);
  817. }
  818. ahd->channel = ahd_get_pci_function(pci) + 'A';
  819. if (rev < ID_AIC7902_PCI_REV_B0) {
  820. /*
  821. * Enable A series workarounds.
  822. */
  823. ahd->bugs |= AHD_SENT_SCB_UPDATE_BUG|AHD_ABORT_LQI_BUG
  824. | AHD_PKT_BITBUCKET_BUG|AHD_LONG_SETIMO_BUG
  825. | AHD_NLQICRC_DELAYED_BUG|AHD_SCSIRST_BUG
  826. | AHD_LQO_ATNO_BUG|AHD_AUTOFLUSH_BUG
  827. | AHD_CLRLQO_AUTOCLR_BUG|AHD_PCIX_MMAPIO_BUG
  828. | AHD_PCIX_CHIPRST_BUG|AHD_PCIX_SCBRAM_RD_BUG
  829. | AHD_PKTIZED_STATUS_BUG|AHD_PKT_LUN_BUG
  830. | AHD_MDFF_WSCBPTR_BUG|AHD_REG_SLOW_SETTLE_BUG
  831. | AHD_SET_MODE_BUG|AHD_BUSFREEREV_BUG
  832. | AHD_NONPACKFIFO_BUG|AHD_PACED_NEGTABLE_BUG
  833. | AHD_FAINT_LED_BUG;
  834. /*
  835. * IO Cell paramter setup.
  836. */
  837. AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29);
  838. if ((ahd->flags & AHD_HP_BOARD) == 0)
  839. AHD_SET_SLEWRATE(ahd, AHD_SLEWRATE_DEF_REVA);
  840. } else {
  841. /* This is revision B and newer. */
  842. extern uint32_t aic79xx_slowcrc;
  843. u_int devconfig1;
  844. ahd->features |= AHD_RTI|AHD_NEW_IOCELL_OPTS
  845. | AHD_NEW_DFCNTRL_OPTS|AHD_FAST_CDB_DELIVERY
  846. | AHD_BUSFREEREV_BUG;
  847. ahd->bugs |= AHD_LQOOVERRUN_BUG|AHD_EARLY_REQ_BUG;
  848. /* If the user requested that the SLOWCRC bit to be set. */
  849. if (aic79xx_slowcrc)
  850. ahd->features |= AHD_AIC79XXB_SLOWCRC;
  851. /*
  852. * Some issues have been resolved in the 7901B.
  853. */
  854. if ((ahd->features & AHD_MULTI_FUNC) != 0)
  855. ahd->bugs |= AHD_INTCOLLISION_BUG|AHD_ABORT_LQI_BUG;
  856. /*
  857. * IO Cell paramter setup.
  858. */
  859. AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29);
  860. AHD_SET_SLEWRATE(ahd, AHD_SLEWRATE_DEF_REVB);
  861. AHD_SET_AMPLITUDE(ahd, AHD_AMPLITUDE_DEF);
  862. /*
  863. * Set the PREQDIS bit for H2B which disables some workaround
  864. * that doesn't work on regular PCI busses.
  865. * XXX - Find out exactly what this does from the hardware
  866. * folks!
  867. */
  868. devconfig1 = ahd_pci_read_config(pci, DEVCONFIG1, /*bytes*/1);
  869. ahd_pci_write_config(pci, DEVCONFIG1,
  870. devconfig1|PREQDIS, /*bytes*/1);
  871. devconfig1 = ahd_pci_read_config(pci, DEVCONFIG1, /*bytes*/1);
  872. }
  873. return (0);
  874. }