qlcnic_hw.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274
  1. /*
  2. * Copyright (C) 2009 - QLogic Corporation.
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  18. * MA 02111-1307, USA.
  19. *
  20. * The full GNU General Public License is included in this distribution
  21. * in the file called "COPYING".
  22. *
  23. */
  24. #include "qlcnic.h"
  25. #include <net/ip.h>
  26. #define MASK(n) ((1ULL<<(n))-1)
  27. #define OCM_WIN_P3P(addr) (addr & 0xffc0000)
  28. #define GET_MEM_OFFS_2M(addr) (addr & MASK(18))
  29. #define CRB_BLK(off) ((off >> 20) & 0x3f)
  30. #define CRB_SUBBLK(off) ((off >> 16) & 0xf)
  31. #define CRB_WINDOW_2M (0x130060)
  32. #define CRB_HI(off) ((crb_hub_agt[CRB_BLK(off)] << 20) | ((off) & 0xf0000))
  33. #define CRB_INDIRECT_2M (0x1e0000UL)
  34. #ifndef readq
  35. static inline u64 readq(void __iomem *addr)
  36. {
  37. return readl(addr) | (((u64) readl(addr + 4)) << 32LL);
  38. }
  39. #endif
  40. #ifndef writeq
  41. static inline void writeq(u64 val, void __iomem *addr)
  42. {
  43. writel(((u32) (val)), (addr));
  44. writel(((u32) (val >> 32)), (addr + 4));
  45. }
  46. #endif
  47. #define ADDR_IN_RANGE(addr, low, high) \
  48. (((addr) < (high)) && ((addr) >= (low)))
  49. #define PCI_OFFSET_FIRST_RANGE(adapter, off) \
  50. ((adapter)->ahw.pci_base0 + (off))
  51. static void __iomem *pci_base_offset(struct qlcnic_adapter *adapter,
  52. unsigned long off)
  53. {
  54. if (ADDR_IN_RANGE(off, FIRST_PAGE_GROUP_START, FIRST_PAGE_GROUP_END))
  55. return PCI_OFFSET_FIRST_RANGE(adapter, off);
  56. return NULL;
  57. }
  58. static const struct crb_128M_2M_block_map
  59. crb_128M_2M_map[64] __cacheline_aligned_in_smp = {
  60. {{{0, 0, 0, 0} } }, /* 0: PCI */
  61. {{{1, 0x0100000, 0x0102000, 0x120000}, /* 1: PCIE */
  62. {1, 0x0110000, 0x0120000, 0x130000},
  63. {1, 0x0120000, 0x0122000, 0x124000},
  64. {1, 0x0130000, 0x0132000, 0x126000},
  65. {1, 0x0140000, 0x0142000, 0x128000},
  66. {1, 0x0150000, 0x0152000, 0x12a000},
  67. {1, 0x0160000, 0x0170000, 0x110000},
  68. {1, 0x0170000, 0x0172000, 0x12e000},
  69. {0, 0x0000000, 0x0000000, 0x000000},
  70. {0, 0x0000000, 0x0000000, 0x000000},
  71. {0, 0x0000000, 0x0000000, 0x000000},
  72. {0, 0x0000000, 0x0000000, 0x000000},
  73. {0, 0x0000000, 0x0000000, 0x000000},
  74. {0, 0x0000000, 0x0000000, 0x000000},
  75. {1, 0x01e0000, 0x01e0800, 0x122000},
  76. {0, 0x0000000, 0x0000000, 0x000000} } },
  77. {{{1, 0x0200000, 0x0210000, 0x180000} } },/* 2: MN */
  78. {{{0, 0, 0, 0} } }, /* 3: */
  79. {{{1, 0x0400000, 0x0401000, 0x169000} } },/* 4: P2NR1 */
  80. {{{1, 0x0500000, 0x0510000, 0x140000} } },/* 5: SRE */
  81. {{{1, 0x0600000, 0x0610000, 0x1c0000} } },/* 6: NIU */
  82. {{{1, 0x0700000, 0x0704000, 0x1b8000} } },/* 7: QM */
  83. {{{1, 0x0800000, 0x0802000, 0x170000}, /* 8: SQM0 */
  84. {0, 0x0000000, 0x0000000, 0x000000},
  85. {0, 0x0000000, 0x0000000, 0x000000},
  86. {0, 0x0000000, 0x0000000, 0x000000},
  87. {0, 0x0000000, 0x0000000, 0x000000},
  88. {0, 0x0000000, 0x0000000, 0x000000},
  89. {0, 0x0000000, 0x0000000, 0x000000},
  90. {0, 0x0000000, 0x0000000, 0x000000},
  91. {0, 0x0000000, 0x0000000, 0x000000},
  92. {0, 0x0000000, 0x0000000, 0x000000},
  93. {0, 0x0000000, 0x0000000, 0x000000},
  94. {0, 0x0000000, 0x0000000, 0x000000},
  95. {0, 0x0000000, 0x0000000, 0x000000},
  96. {0, 0x0000000, 0x0000000, 0x000000},
  97. {0, 0x0000000, 0x0000000, 0x000000},
  98. {1, 0x08f0000, 0x08f2000, 0x172000} } },
  99. {{{1, 0x0900000, 0x0902000, 0x174000}, /* 9: SQM1*/
  100. {0, 0x0000000, 0x0000000, 0x000000},
  101. {0, 0x0000000, 0x0000000, 0x000000},
  102. {0, 0x0000000, 0x0000000, 0x000000},
  103. {0, 0x0000000, 0x0000000, 0x000000},
  104. {0, 0x0000000, 0x0000000, 0x000000},
  105. {0, 0x0000000, 0x0000000, 0x000000},
  106. {0, 0x0000000, 0x0000000, 0x000000},
  107. {0, 0x0000000, 0x0000000, 0x000000},
  108. {0, 0x0000000, 0x0000000, 0x000000},
  109. {0, 0x0000000, 0x0000000, 0x000000},
  110. {0, 0x0000000, 0x0000000, 0x000000},
  111. {0, 0x0000000, 0x0000000, 0x000000},
  112. {0, 0x0000000, 0x0000000, 0x000000},
  113. {0, 0x0000000, 0x0000000, 0x000000},
  114. {1, 0x09f0000, 0x09f2000, 0x176000} } },
  115. {{{0, 0x0a00000, 0x0a02000, 0x178000}, /* 10: SQM2*/
  116. {0, 0x0000000, 0x0000000, 0x000000},
  117. {0, 0x0000000, 0x0000000, 0x000000},
  118. {0, 0x0000000, 0x0000000, 0x000000},
  119. {0, 0x0000000, 0x0000000, 0x000000},
  120. {0, 0x0000000, 0x0000000, 0x000000},
  121. {0, 0x0000000, 0x0000000, 0x000000},
  122. {0, 0x0000000, 0x0000000, 0x000000},
  123. {0, 0x0000000, 0x0000000, 0x000000},
  124. {0, 0x0000000, 0x0000000, 0x000000},
  125. {0, 0x0000000, 0x0000000, 0x000000},
  126. {0, 0x0000000, 0x0000000, 0x000000},
  127. {0, 0x0000000, 0x0000000, 0x000000},
  128. {0, 0x0000000, 0x0000000, 0x000000},
  129. {0, 0x0000000, 0x0000000, 0x000000},
  130. {1, 0x0af0000, 0x0af2000, 0x17a000} } },
  131. {{{0, 0x0b00000, 0x0b02000, 0x17c000}, /* 11: SQM3*/
  132. {0, 0x0000000, 0x0000000, 0x000000},
  133. {0, 0x0000000, 0x0000000, 0x000000},
  134. {0, 0x0000000, 0x0000000, 0x000000},
  135. {0, 0x0000000, 0x0000000, 0x000000},
  136. {0, 0x0000000, 0x0000000, 0x000000},
  137. {0, 0x0000000, 0x0000000, 0x000000},
  138. {0, 0x0000000, 0x0000000, 0x000000},
  139. {0, 0x0000000, 0x0000000, 0x000000},
  140. {0, 0x0000000, 0x0000000, 0x000000},
  141. {0, 0x0000000, 0x0000000, 0x000000},
  142. {0, 0x0000000, 0x0000000, 0x000000},
  143. {0, 0x0000000, 0x0000000, 0x000000},
  144. {0, 0x0000000, 0x0000000, 0x000000},
  145. {0, 0x0000000, 0x0000000, 0x000000},
  146. {1, 0x0bf0000, 0x0bf2000, 0x17e000} } },
  147. {{{1, 0x0c00000, 0x0c04000, 0x1d4000} } },/* 12: I2Q */
  148. {{{1, 0x0d00000, 0x0d04000, 0x1a4000} } },/* 13: TMR */
  149. {{{1, 0x0e00000, 0x0e04000, 0x1a0000} } },/* 14: ROMUSB */
  150. {{{1, 0x0f00000, 0x0f01000, 0x164000} } },/* 15: PEG4 */
  151. {{{0, 0x1000000, 0x1004000, 0x1a8000} } },/* 16: XDMA */
  152. {{{1, 0x1100000, 0x1101000, 0x160000} } },/* 17: PEG0 */
  153. {{{1, 0x1200000, 0x1201000, 0x161000} } },/* 18: PEG1 */
  154. {{{1, 0x1300000, 0x1301000, 0x162000} } },/* 19: PEG2 */
  155. {{{1, 0x1400000, 0x1401000, 0x163000} } },/* 20: PEG3 */
  156. {{{1, 0x1500000, 0x1501000, 0x165000} } },/* 21: P2ND */
  157. {{{1, 0x1600000, 0x1601000, 0x166000} } },/* 22: P2NI */
  158. {{{0, 0, 0, 0} } }, /* 23: */
  159. {{{0, 0, 0, 0} } }, /* 24: */
  160. {{{0, 0, 0, 0} } }, /* 25: */
  161. {{{0, 0, 0, 0} } }, /* 26: */
  162. {{{0, 0, 0, 0} } }, /* 27: */
  163. {{{0, 0, 0, 0} } }, /* 28: */
  164. {{{1, 0x1d00000, 0x1d10000, 0x190000} } },/* 29: MS */
  165. {{{1, 0x1e00000, 0x1e01000, 0x16a000} } },/* 30: P2NR2 */
  166. {{{1, 0x1f00000, 0x1f10000, 0x150000} } },/* 31: EPG */
  167. {{{0} } }, /* 32: PCI */
  168. {{{1, 0x2100000, 0x2102000, 0x120000}, /* 33: PCIE */
  169. {1, 0x2110000, 0x2120000, 0x130000},
  170. {1, 0x2120000, 0x2122000, 0x124000},
  171. {1, 0x2130000, 0x2132000, 0x126000},
  172. {1, 0x2140000, 0x2142000, 0x128000},
  173. {1, 0x2150000, 0x2152000, 0x12a000},
  174. {1, 0x2160000, 0x2170000, 0x110000},
  175. {1, 0x2170000, 0x2172000, 0x12e000},
  176. {0, 0x0000000, 0x0000000, 0x000000},
  177. {0, 0x0000000, 0x0000000, 0x000000},
  178. {0, 0x0000000, 0x0000000, 0x000000},
  179. {0, 0x0000000, 0x0000000, 0x000000},
  180. {0, 0x0000000, 0x0000000, 0x000000},
  181. {0, 0x0000000, 0x0000000, 0x000000},
  182. {0, 0x0000000, 0x0000000, 0x000000},
  183. {0, 0x0000000, 0x0000000, 0x000000} } },
  184. {{{1, 0x2200000, 0x2204000, 0x1b0000} } },/* 34: CAM */
  185. {{{0} } }, /* 35: */
  186. {{{0} } }, /* 36: */
  187. {{{0} } }, /* 37: */
  188. {{{0} } }, /* 38: */
  189. {{{0} } }, /* 39: */
  190. {{{1, 0x2800000, 0x2804000, 0x1a4000} } },/* 40: TMR */
  191. {{{1, 0x2900000, 0x2901000, 0x16b000} } },/* 41: P2NR3 */
  192. {{{1, 0x2a00000, 0x2a00400, 0x1ac400} } },/* 42: RPMX1 */
  193. {{{1, 0x2b00000, 0x2b00400, 0x1ac800} } },/* 43: RPMX2 */
  194. {{{1, 0x2c00000, 0x2c00400, 0x1acc00} } },/* 44: RPMX3 */
  195. {{{1, 0x2d00000, 0x2d00400, 0x1ad000} } },/* 45: RPMX4 */
  196. {{{1, 0x2e00000, 0x2e00400, 0x1ad400} } },/* 46: RPMX5 */
  197. {{{1, 0x2f00000, 0x2f00400, 0x1ad800} } },/* 47: RPMX6 */
  198. {{{1, 0x3000000, 0x3000400, 0x1adc00} } },/* 48: RPMX7 */
  199. {{{0, 0x3100000, 0x3104000, 0x1a8000} } },/* 49: XDMA */
  200. {{{1, 0x3200000, 0x3204000, 0x1d4000} } },/* 50: I2Q */
  201. {{{1, 0x3300000, 0x3304000, 0x1a0000} } },/* 51: ROMUSB */
  202. {{{0} } }, /* 52: */
  203. {{{1, 0x3500000, 0x3500400, 0x1ac000} } },/* 53: RPMX0 */
  204. {{{1, 0x3600000, 0x3600400, 0x1ae000} } },/* 54: RPMX8 */
  205. {{{1, 0x3700000, 0x3700400, 0x1ae400} } },/* 55: RPMX9 */
  206. {{{1, 0x3800000, 0x3804000, 0x1d0000} } },/* 56: OCM0 */
  207. {{{1, 0x3900000, 0x3904000, 0x1b4000} } },/* 57: CRYPTO */
  208. {{{1, 0x3a00000, 0x3a04000, 0x1d8000} } },/* 58: SMB */
  209. {{{0} } }, /* 59: I2C0 */
  210. {{{0} } }, /* 60: I2C1 */
  211. {{{1, 0x3d00000, 0x3d04000, 0x1d8000} } },/* 61: LPC */
  212. {{{1, 0x3e00000, 0x3e01000, 0x167000} } },/* 62: P2NC */
  213. {{{1, 0x3f00000, 0x3f01000, 0x168000} } } /* 63: P2NR0 */
  214. };
  215. /*
  216. * top 12 bits of crb internal address (hub, agent)
  217. */
  218. static const unsigned crb_hub_agt[64] = {
  219. 0,
  220. QLCNIC_HW_CRB_HUB_AGT_ADR_PS,
  221. QLCNIC_HW_CRB_HUB_AGT_ADR_MN,
  222. QLCNIC_HW_CRB_HUB_AGT_ADR_MS,
  223. 0,
  224. QLCNIC_HW_CRB_HUB_AGT_ADR_SRE,
  225. QLCNIC_HW_CRB_HUB_AGT_ADR_NIU,
  226. QLCNIC_HW_CRB_HUB_AGT_ADR_QMN,
  227. QLCNIC_HW_CRB_HUB_AGT_ADR_SQN0,
  228. QLCNIC_HW_CRB_HUB_AGT_ADR_SQN1,
  229. QLCNIC_HW_CRB_HUB_AGT_ADR_SQN2,
  230. QLCNIC_HW_CRB_HUB_AGT_ADR_SQN3,
  231. QLCNIC_HW_CRB_HUB_AGT_ADR_I2Q,
  232. QLCNIC_HW_CRB_HUB_AGT_ADR_TIMR,
  233. QLCNIC_HW_CRB_HUB_AGT_ADR_ROMUSB,
  234. QLCNIC_HW_CRB_HUB_AGT_ADR_PGN4,
  235. QLCNIC_HW_CRB_HUB_AGT_ADR_XDMA,
  236. QLCNIC_HW_CRB_HUB_AGT_ADR_PGN0,
  237. QLCNIC_HW_CRB_HUB_AGT_ADR_PGN1,
  238. QLCNIC_HW_CRB_HUB_AGT_ADR_PGN2,
  239. QLCNIC_HW_CRB_HUB_AGT_ADR_PGN3,
  240. QLCNIC_HW_CRB_HUB_AGT_ADR_PGND,
  241. QLCNIC_HW_CRB_HUB_AGT_ADR_PGNI,
  242. QLCNIC_HW_CRB_HUB_AGT_ADR_PGS0,
  243. QLCNIC_HW_CRB_HUB_AGT_ADR_PGS1,
  244. QLCNIC_HW_CRB_HUB_AGT_ADR_PGS2,
  245. QLCNIC_HW_CRB_HUB_AGT_ADR_PGS3,
  246. 0,
  247. QLCNIC_HW_CRB_HUB_AGT_ADR_PGSI,
  248. QLCNIC_HW_CRB_HUB_AGT_ADR_SN,
  249. 0,
  250. QLCNIC_HW_CRB_HUB_AGT_ADR_EG,
  251. 0,
  252. QLCNIC_HW_CRB_HUB_AGT_ADR_PS,
  253. QLCNIC_HW_CRB_HUB_AGT_ADR_CAM,
  254. 0,
  255. 0,
  256. 0,
  257. 0,
  258. 0,
  259. QLCNIC_HW_CRB_HUB_AGT_ADR_TIMR,
  260. 0,
  261. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX1,
  262. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX2,
  263. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX3,
  264. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX4,
  265. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX5,
  266. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX6,
  267. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX7,
  268. QLCNIC_HW_CRB_HUB_AGT_ADR_XDMA,
  269. QLCNIC_HW_CRB_HUB_AGT_ADR_I2Q,
  270. QLCNIC_HW_CRB_HUB_AGT_ADR_ROMUSB,
  271. 0,
  272. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX0,
  273. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX8,
  274. QLCNIC_HW_CRB_HUB_AGT_ADR_RPMX9,
  275. QLCNIC_HW_CRB_HUB_AGT_ADR_OCM0,
  276. 0,
  277. QLCNIC_HW_CRB_HUB_AGT_ADR_SMB,
  278. QLCNIC_HW_CRB_HUB_AGT_ADR_I2C0,
  279. QLCNIC_HW_CRB_HUB_AGT_ADR_I2C1,
  280. 0,
  281. QLCNIC_HW_CRB_HUB_AGT_ADR_PGNC,
  282. 0,
  283. };
  284. /* PCI Windowing for DDR regions. */
  285. #define QLCNIC_PCIE_SEM_TIMEOUT 10000
  286. int
  287. qlcnic_pcie_sem_lock(struct qlcnic_adapter *adapter, int sem, u32 id_reg)
  288. {
  289. int done = 0, timeout = 0;
  290. while (!done) {
  291. done = QLCRD32(adapter, QLCNIC_PCIE_REG(PCIE_SEM_LOCK(sem)));
  292. if (done == 1)
  293. break;
  294. if (++timeout >= QLCNIC_PCIE_SEM_TIMEOUT)
  295. return -EIO;
  296. msleep(1);
  297. }
  298. if (id_reg)
  299. QLCWR32(adapter, id_reg, adapter->portnum);
  300. return 0;
  301. }
  302. void
  303. qlcnic_pcie_sem_unlock(struct qlcnic_adapter *adapter, int sem)
  304. {
  305. QLCRD32(adapter, QLCNIC_PCIE_REG(PCIE_SEM_UNLOCK(sem)));
  306. }
  307. static int
  308. qlcnic_send_cmd_descs(struct qlcnic_adapter *adapter,
  309. struct cmd_desc_type0 *cmd_desc_arr, int nr_desc)
  310. {
  311. u32 i, producer, consumer;
  312. struct qlcnic_cmd_buffer *pbuf;
  313. struct cmd_desc_type0 *cmd_desc;
  314. struct qlcnic_host_tx_ring *tx_ring;
  315. i = 0;
  316. if (adapter->is_up != QLCNIC_ADAPTER_UP_MAGIC)
  317. return -EIO;
  318. tx_ring = adapter->tx_ring;
  319. __netif_tx_lock_bh(tx_ring->txq);
  320. producer = tx_ring->producer;
  321. consumer = tx_ring->sw_consumer;
  322. if (nr_desc >= qlcnic_tx_avail(tx_ring)) {
  323. netif_tx_stop_queue(tx_ring->txq);
  324. __netif_tx_unlock_bh(tx_ring->txq);
  325. return -EBUSY;
  326. }
  327. do {
  328. cmd_desc = &cmd_desc_arr[i];
  329. pbuf = &tx_ring->cmd_buf_arr[producer];
  330. pbuf->skb = NULL;
  331. pbuf->frag_count = 0;
  332. memcpy(&tx_ring->desc_head[producer],
  333. &cmd_desc_arr[i], sizeof(struct cmd_desc_type0));
  334. producer = get_next_index(producer, tx_ring->num_desc);
  335. i++;
  336. } while (i != nr_desc);
  337. tx_ring->producer = producer;
  338. qlcnic_update_cmd_producer(adapter, tx_ring);
  339. __netif_tx_unlock_bh(tx_ring->txq);
  340. return 0;
  341. }
  342. static int
  343. qlcnic_sre_macaddr_change(struct qlcnic_adapter *adapter, u8 *addr,
  344. unsigned op)
  345. {
  346. struct qlcnic_nic_req req;
  347. struct qlcnic_mac_req *mac_req;
  348. u64 word;
  349. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  350. req.qhdr = cpu_to_le64(QLCNIC_REQUEST << 23);
  351. word = QLCNIC_MAC_EVENT | ((u64)adapter->portnum << 16);
  352. req.req_hdr = cpu_to_le64(word);
  353. mac_req = (struct qlcnic_mac_req *)&req.words[0];
  354. mac_req->op = op;
  355. memcpy(mac_req->mac_addr, addr, 6);
  356. return qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  357. }
  358. static int qlcnic_nic_add_mac(struct qlcnic_adapter *adapter,
  359. u8 *addr, struct list_head *del_list)
  360. {
  361. struct list_head *head;
  362. struct qlcnic_mac_list_s *cur;
  363. /* look up if already exists */
  364. list_for_each(head, del_list) {
  365. cur = list_entry(head, struct qlcnic_mac_list_s, list);
  366. if (memcmp(addr, cur->mac_addr, ETH_ALEN) == 0) {
  367. list_move_tail(head, &adapter->mac_list);
  368. return 0;
  369. }
  370. }
  371. cur = kzalloc(sizeof(struct qlcnic_mac_list_s), GFP_ATOMIC);
  372. if (cur == NULL) {
  373. dev_err(&adapter->netdev->dev,
  374. "failed to add mac address filter\n");
  375. return -ENOMEM;
  376. }
  377. memcpy(cur->mac_addr, addr, ETH_ALEN);
  378. list_add_tail(&cur->list, &adapter->mac_list);
  379. return qlcnic_sre_macaddr_change(adapter,
  380. cur->mac_addr, QLCNIC_MAC_ADD);
  381. }
  382. void qlcnic_set_multi(struct net_device *netdev)
  383. {
  384. struct qlcnic_adapter *adapter = netdev_priv(netdev);
  385. struct dev_mc_list *mc_ptr;
  386. u8 bcast_addr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
  387. u32 mode = VPORT_MISS_MODE_DROP;
  388. LIST_HEAD(del_list);
  389. struct list_head *head;
  390. struct qlcnic_mac_list_s *cur;
  391. list_splice_tail_init(&adapter->mac_list, &del_list);
  392. qlcnic_nic_add_mac(adapter, adapter->mac_addr, &del_list);
  393. qlcnic_nic_add_mac(adapter, bcast_addr, &del_list);
  394. if (netdev->flags & IFF_PROMISC) {
  395. mode = VPORT_MISS_MODE_ACCEPT_ALL;
  396. goto send_fw_cmd;
  397. }
  398. if ((netdev->flags & IFF_ALLMULTI) ||
  399. (netdev_mc_count(netdev) > adapter->max_mc_count)) {
  400. mode = VPORT_MISS_MODE_ACCEPT_MULTI;
  401. goto send_fw_cmd;
  402. }
  403. if (!netdev_mc_empty(netdev)) {
  404. netdev_for_each_mc_addr(mc_ptr, netdev) {
  405. qlcnic_nic_add_mac(adapter, mc_ptr->dmi_addr,
  406. &del_list);
  407. }
  408. }
  409. send_fw_cmd:
  410. qlcnic_nic_set_promisc(adapter, mode);
  411. head = &del_list;
  412. while (!list_empty(head)) {
  413. cur = list_entry(head->next, struct qlcnic_mac_list_s, list);
  414. qlcnic_sre_macaddr_change(adapter,
  415. cur->mac_addr, QLCNIC_MAC_DEL);
  416. list_del(&cur->list);
  417. kfree(cur);
  418. }
  419. }
  420. int qlcnic_nic_set_promisc(struct qlcnic_adapter *adapter, u32 mode)
  421. {
  422. struct qlcnic_nic_req req;
  423. u64 word;
  424. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  425. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  426. word = QLCNIC_H2C_OPCODE_PROXY_SET_VPORT_MISS_MODE |
  427. ((u64)adapter->portnum << 16);
  428. req.req_hdr = cpu_to_le64(word);
  429. req.words[0] = cpu_to_le64(mode);
  430. return qlcnic_send_cmd_descs(adapter,
  431. (struct cmd_desc_type0 *)&req, 1);
  432. }
  433. void qlcnic_free_mac_list(struct qlcnic_adapter *adapter)
  434. {
  435. struct qlcnic_mac_list_s *cur;
  436. struct list_head *head = &adapter->mac_list;
  437. while (!list_empty(head)) {
  438. cur = list_entry(head->next, struct qlcnic_mac_list_s, list);
  439. qlcnic_sre_macaddr_change(adapter,
  440. cur->mac_addr, QLCNIC_MAC_DEL);
  441. list_del(&cur->list);
  442. kfree(cur);
  443. }
  444. }
  445. #define QLCNIC_CONFIG_INTR_COALESCE 3
  446. /*
  447. * Send the interrupt coalescing parameter set by ethtool to the card.
  448. */
  449. int qlcnic_config_intr_coalesce(struct qlcnic_adapter *adapter)
  450. {
  451. struct qlcnic_nic_req req;
  452. u64 word[6];
  453. int rv, i;
  454. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  455. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  456. word[0] = QLCNIC_CONFIG_INTR_COALESCE | ((u64)adapter->portnum << 16);
  457. req.req_hdr = cpu_to_le64(word[0]);
  458. memcpy(&word[0], &adapter->coal, sizeof(adapter->coal));
  459. for (i = 0; i < 6; i++)
  460. req.words[i] = cpu_to_le64(word[i]);
  461. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  462. if (rv != 0)
  463. dev_err(&adapter->netdev->dev,
  464. "Could not send interrupt coalescing parameters\n");
  465. return rv;
  466. }
  467. int qlcnic_config_hw_lro(struct qlcnic_adapter *adapter, int enable)
  468. {
  469. struct qlcnic_nic_req req;
  470. u64 word;
  471. int rv;
  472. if ((adapter->flags & QLCNIC_LRO_ENABLED) == enable)
  473. return 0;
  474. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  475. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  476. word = QLCNIC_H2C_OPCODE_CONFIG_HW_LRO | ((u64)adapter->portnum << 16);
  477. req.req_hdr = cpu_to_le64(word);
  478. req.words[0] = cpu_to_le64(enable);
  479. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  480. if (rv != 0)
  481. dev_err(&adapter->netdev->dev,
  482. "Could not send configure hw lro request\n");
  483. adapter->flags ^= QLCNIC_LRO_ENABLED;
  484. return rv;
  485. }
  486. int qlcnic_config_bridged_mode(struct qlcnic_adapter *adapter, int enable)
  487. {
  488. struct qlcnic_nic_req req;
  489. u64 word;
  490. int rv;
  491. if (!!(adapter->flags & QLCNIC_BRIDGE_ENABLED) == enable)
  492. return 0;
  493. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  494. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  495. word = QLCNIC_H2C_OPCODE_CONFIG_BRIDGING |
  496. ((u64)adapter->portnum << 16);
  497. req.req_hdr = cpu_to_le64(word);
  498. req.words[0] = cpu_to_le64(enable);
  499. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  500. if (rv != 0)
  501. dev_err(&adapter->netdev->dev,
  502. "Could not send configure bridge mode request\n");
  503. adapter->flags ^= QLCNIC_BRIDGE_ENABLED;
  504. return rv;
  505. }
  506. #define RSS_HASHTYPE_IP_TCP 0x3
  507. int qlcnic_config_rss(struct qlcnic_adapter *adapter, int enable)
  508. {
  509. struct qlcnic_nic_req req;
  510. u64 word;
  511. int i, rv;
  512. const u64 key[] = { 0xbeac01fa6a42b73bULL, 0x8030f20c77cb2da3ULL,
  513. 0xae7b30b4d0ca2bcbULL, 0x43a38fb04167253dULL,
  514. 0x255b0ec26d5a56daULL };
  515. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  516. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  517. word = QLCNIC_H2C_OPCODE_CONFIG_RSS | ((u64)adapter->portnum << 16);
  518. req.req_hdr = cpu_to_le64(word);
  519. /*
  520. * RSS request:
  521. * bits 3-0: hash_method
  522. * 5-4: hash_type_ipv4
  523. * 7-6: hash_type_ipv6
  524. * 8: enable
  525. * 9: use indirection table
  526. * 47-10: reserved
  527. * 63-48: indirection table mask
  528. */
  529. word = ((u64)(RSS_HASHTYPE_IP_TCP & 0x3) << 4) |
  530. ((u64)(RSS_HASHTYPE_IP_TCP & 0x3) << 6) |
  531. ((u64)(enable & 0x1) << 8) |
  532. ((0x7ULL) << 48);
  533. req.words[0] = cpu_to_le64(word);
  534. for (i = 0; i < 5; i++)
  535. req.words[i+1] = cpu_to_le64(key[i]);
  536. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  537. if (rv != 0)
  538. dev_err(&adapter->netdev->dev, "could not configure RSS\n");
  539. return rv;
  540. }
  541. int qlcnic_config_ipaddr(struct qlcnic_adapter *adapter, u32 ip, int cmd)
  542. {
  543. struct qlcnic_nic_req req;
  544. u64 word;
  545. int rv;
  546. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  547. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  548. word = QLCNIC_H2C_OPCODE_CONFIG_IPADDR | ((u64)adapter->portnum << 16);
  549. req.req_hdr = cpu_to_le64(word);
  550. req.words[0] = cpu_to_le64(cmd);
  551. req.words[1] = cpu_to_le64(ip);
  552. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  553. if (rv != 0)
  554. dev_err(&adapter->netdev->dev,
  555. "could not notify %s IP 0x%x reuqest\n",
  556. (cmd == QLCNIC_IP_UP) ? "Add" : "Remove", ip);
  557. return rv;
  558. }
  559. int qlcnic_linkevent_request(struct qlcnic_adapter *adapter, int enable)
  560. {
  561. struct qlcnic_nic_req req;
  562. u64 word;
  563. int rv;
  564. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  565. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  566. word = QLCNIC_H2C_OPCODE_GET_LINKEVENT | ((u64)adapter->portnum << 16);
  567. req.req_hdr = cpu_to_le64(word);
  568. req.words[0] = cpu_to_le64(enable | (enable << 8));
  569. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  570. if (rv != 0)
  571. dev_err(&adapter->netdev->dev,
  572. "could not configure link notification\n");
  573. return rv;
  574. }
  575. int qlcnic_send_lro_cleanup(struct qlcnic_adapter *adapter)
  576. {
  577. struct qlcnic_nic_req req;
  578. u64 word;
  579. int rv;
  580. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  581. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  582. word = QLCNIC_H2C_OPCODE_LRO_REQUEST |
  583. ((u64)adapter->portnum << 16) |
  584. ((u64)QLCNIC_LRO_REQUEST_CLEANUP << 56) ;
  585. req.req_hdr = cpu_to_le64(word);
  586. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  587. if (rv != 0)
  588. dev_err(&adapter->netdev->dev,
  589. "could not cleanup lro flows\n");
  590. return rv;
  591. }
  592. /*
  593. * qlcnic_change_mtu - Change the Maximum Transfer Unit
  594. * @returns 0 on success, negative on failure
  595. */
  596. int qlcnic_change_mtu(struct net_device *netdev, int mtu)
  597. {
  598. struct qlcnic_adapter *adapter = netdev_priv(netdev);
  599. int rc = 0;
  600. if (mtu > P3_MAX_MTU) {
  601. dev_err(&adapter->netdev->dev, "mtu > %d bytes unsupported\n",
  602. P3_MAX_MTU);
  603. return -EINVAL;
  604. }
  605. rc = qlcnic_fw_cmd_set_mtu(adapter, mtu);
  606. if (!rc)
  607. netdev->mtu = mtu;
  608. return rc;
  609. }
  610. int qlcnic_get_mac_addr(struct qlcnic_adapter *adapter, u64 *mac)
  611. {
  612. u32 crbaddr, mac_hi, mac_lo;
  613. int pci_func = adapter->ahw.pci_func;
  614. crbaddr = CRB_MAC_BLOCK_START +
  615. (4 * ((pci_func/2) * 3)) + (4 * (pci_func & 1));
  616. mac_lo = QLCRD32(adapter, crbaddr);
  617. mac_hi = QLCRD32(adapter, crbaddr+4);
  618. if (pci_func & 1)
  619. *mac = le64_to_cpu((mac_lo >> 16) | ((u64)mac_hi << 16));
  620. else
  621. *mac = le64_to_cpu((u64)mac_lo | ((u64)mac_hi << 32));
  622. return 0;
  623. }
  624. /*
  625. * Changes the CRB window to the specified window.
  626. */
  627. /* Returns < 0 if off is not valid,
  628. * 1 if window access is needed. 'off' is set to offset from
  629. * CRB space in 128M pci map
  630. * 0 if no window access is needed. 'off' is set to 2M addr
  631. * In: 'off' is offset from base in 128M pci map
  632. */
  633. static int
  634. qlcnic_pci_get_crb_addr_2M(struct qlcnic_adapter *adapter,
  635. ulong off, void __iomem **addr)
  636. {
  637. const struct crb_128M_2M_sub_block_map *m;
  638. if ((off >= QLCNIC_CRB_MAX) || (off < QLCNIC_PCI_CRBSPACE))
  639. return -EINVAL;
  640. off -= QLCNIC_PCI_CRBSPACE;
  641. /*
  642. * Try direct map
  643. */
  644. m = &crb_128M_2M_map[CRB_BLK(off)].sub_block[CRB_SUBBLK(off)];
  645. if (m->valid && (m->start_128M <= off) && (m->end_128M > off)) {
  646. *addr = adapter->ahw.pci_base0 + m->start_2M +
  647. (off - m->start_128M);
  648. return 0;
  649. }
  650. /*
  651. * Not in direct map, use crb window
  652. */
  653. *addr = adapter->ahw.pci_base0 + CRB_INDIRECT_2M + (off & MASK(16));
  654. return 1;
  655. }
  656. /*
  657. * In: 'off' is offset from CRB space in 128M pci map
  658. * Out: 'off' is 2M pci map addr
  659. * side effect: lock crb window
  660. */
  661. static void
  662. qlcnic_pci_set_crbwindow_2M(struct qlcnic_adapter *adapter, ulong off)
  663. {
  664. u32 window;
  665. void __iomem *addr = adapter->ahw.pci_base0 + CRB_WINDOW_2M;
  666. off -= QLCNIC_PCI_CRBSPACE;
  667. window = CRB_HI(off);
  668. if (adapter->ahw.crb_win == window)
  669. return;
  670. writel(window, addr);
  671. if (readl(addr) != window) {
  672. if (printk_ratelimit())
  673. dev_warn(&adapter->pdev->dev,
  674. "failed to set CRB window to %d off 0x%lx\n",
  675. window, off);
  676. }
  677. adapter->ahw.crb_win = window;
  678. }
  679. int
  680. qlcnic_hw_write_wx_2M(struct qlcnic_adapter *adapter, ulong off, u32 data)
  681. {
  682. unsigned long flags;
  683. int rv;
  684. void __iomem *addr = NULL;
  685. rv = qlcnic_pci_get_crb_addr_2M(adapter, off, &addr);
  686. if (rv == 0) {
  687. writel(data, addr);
  688. return 0;
  689. }
  690. if (rv > 0) {
  691. /* indirect access */
  692. write_lock_irqsave(&adapter->ahw.crb_lock, flags);
  693. crb_win_lock(adapter);
  694. qlcnic_pci_set_crbwindow_2M(adapter, off);
  695. writel(data, addr);
  696. crb_win_unlock(adapter);
  697. write_unlock_irqrestore(&adapter->ahw.crb_lock, flags);
  698. return 0;
  699. }
  700. dev_err(&adapter->pdev->dev,
  701. "%s: invalid offset: 0x%016lx\n", __func__, off);
  702. dump_stack();
  703. return -EIO;
  704. }
  705. u32
  706. qlcnic_hw_read_wx_2M(struct qlcnic_adapter *adapter, ulong off)
  707. {
  708. unsigned long flags;
  709. int rv;
  710. u32 data;
  711. void __iomem *addr = NULL;
  712. rv = qlcnic_pci_get_crb_addr_2M(adapter, off, &addr);
  713. if (rv == 0)
  714. return readl(addr);
  715. if (rv > 0) {
  716. /* indirect access */
  717. write_lock_irqsave(&adapter->ahw.crb_lock, flags);
  718. crb_win_lock(adapter);
  719. qlcnic_pci_set_crbwindow_2M(adapter, off);
  720. data = readl(addr);
  721. crb_win_unlock(adapter);
  722. write_unlock_irqrestore(&adapter->ahw.crb_lock, flags);
  723. return data;
  724. }
  725. dev_err(&adapter->pdev->dev,
  726. "%s: invalid offset: 0x%016lx\n", __func__, off);
  727. dump_stack();
  728. return -1;
  729. }
  730. void __iomem *
  731. qlcnic_get_ioaddr(struct qlcnic_adapter *adapter, u32 offset)
  732. {
  733. void __iomem *addr = NULL;
  734. WARN_ON(qlcnic_pci_get_crb_addr_2M(adapter, offset, &addr));
  735. return addr;
  736. }
  737. static int
  738. qlcnic_pci_set_window_2M(struct qlcnic_adapter *adapter,
  739. u64 addr, u32 *start)
  740. {
  741. u32 window;
  742. struct pci_dev *pdev = adapter->pdev;
  743. if ((addr & 0x00ff800) == 0xff800) {
  744. if (printk_ratelimit())
  745. dev_warn(&pdev->dev, "QM access not handled\n");
  746. return -EIO;
  747. }
  748. window = OCM_WIN_P3P(addr);
  749. writel(window, adapter->ahw.ocm_win_crb);
  750. /* read back to flush */
  751. readl(adapter->ahw.ocm_win_crb);
  752. adapter->ahw.ocm_win = window;
  753. *start = QLCNIC_PCI_OCM0_2M + GET_MEM_OFFS_2M(addr);
  754. return 0;
  755. }
  756. static int
  757. qlcnic_pci_mem_access_direct(struct qlcnic_adapter *adapter, u64 off,
  758. u64 *data, int op)
  759. {
  760. void __iomem *addr, *mem_ptr = NULL;
  761. resource_size_t mem_base;
  762. int ret;
  763. u32 start;
  764. mutex_lock(&adapter->ahw.mem_lock);
  765. ret = qlcnic_pci_set_window_2M(adapter, off, &start);
  766. if (ret != 0)
  767. goto unlock;
  768. addr = pci_base_offset(adapter, start);
  769. if (addr)
  770. goto noremap;
  771. mem_base = pci_resource_start(adapter->pdev, 0) + (start & PAGE_MASK);
  772. mem_ptr = ioremap(mem_base, PAGE_SIZE);
  773. if (mem_ptr == NULL) {
  774. ret = -EIO;
  775. goto unlock;
  776. }
  777. addr = mem_ptr + (start & (PAGE_SIZE - 1));
  778. noremap:
  779. if (op == 0) /* read */
  780. *data = readq(addr);
  781. else /* write */
  782. writeq(*data, addr);
  783. unlock:
  784. mutex_unlock(&adapter->ahw.mem_lock);
  785. if (mem_ptr)
  786. iounmap(mem_ptr);
  787. return ret;
  788. }
  789. #define MAX_CTL_CHECK 1000
  790. int
  791. qlcnic_pci_mem_write_2M(struct qlcnic_adapter *adapter,
  792. u64 off, u64 data)
  793. {
  794. int i, j, ret;
  795. u32 temp, off8;
  796. u64 stride;
  797. void __iomem *mem_crb;
  798. /* Only 64-bit aligned access */
  799. if (off & 7)
  800. return -EIO;
  801. /* P3 onward, test agent base for MIU and SIU is same */
  802. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_QDR_NET,
  803. QLCNIC_ADDR_QDR_NET_MAX_P3)) {
  804. mem_crb = qlcnic_get_ioaddr(adapter,
  805. QLCNIC_CRB_QDR_NET+MIU_TEST_AGT_BASE);
  806. goto correct;
  807. }
  808. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_DDR_NET, QLCNIC_ADDR_DDR_NET_MAX)) {
  809. mem_crb = qlcnic_get_ioaddr(adapter,
  810. QLCNIC_CRB_DDR_NET+MIU_TEST_AGT_BASE);
  811. goto correct;
  812. }
  813. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_OCM0, QLCNIC_ADDR_OCM0_MAX))
  814. return qlcnic_pci_mem_access_direct(adapter, off, &data, 1);
  815. return -EIO;
  816. correct:
  817. stride = QLCNIC_IS_REVISION_P3P(adapter->ahw.revision_id) ? 16 : 8;
  818. off8 = off & ~(stride-1);
  819. mutex_lock(&adapter->ahw.mem_lock);
  820. writel(off8, (mem_crb + MIU_TEST_AGT_ADDR_LO));
  821. writel(0, (mem_crb + MIU_TEST_AGT_ADDR_HI));
  822. i = 0;
  823. if (stride == 16) {
  824. writel(TA_CTL_ENABLE, (mem_crb + TEST_AGT_CTRL));
  825. writel((TA_CTL_START | TA_CTL_ENABLE),
  826. (mem_crb + TEST_AGT_CTRL));
  827. for (j = 0; j < MAX_CTL_CHECK; j++) {
  828. temp = readl(mem_crb + TEST_AGT_CTRL);
  829. if ((temp & TA_CTL_BUSY) == 0)
  830. break;
  831. }
  832. if (j >= MAX_CTL_CHECK) {
  833. ret = -EIO;
  834. goto done;
  835. }
  836. i = (off & 0xf) ? 0 : 2;
  837. writel(readl(mem_crb + MIU_TEST_AGT_RDDATA(i)),
  838. mem_crb + MIU_TEST_AGT_WRDATA(i));
  839. writel(readl(mem_crb + MIU_TEST_AGT_RDDATA(i+1)),
  840. mem_crb + MIU_TEST_AGT_WRDATA(i+1));
  841. i = (off & 0xf) ? 2 : 0;
  842. }
  843. writel(data & 0xffffffff,
  844. mem_crb + MIU_TEST_AGT_WRDATA(i));
  845. writel((data >> 32) & 0xffffffff,
  846. mem_crb + MIU_TEST_AGT_WRDATA(i+1));
  847. writel((TA_CTL_ENABLE | TA_CTL_WRITE), (mem_crb + TEST_AGT_CTRL));
  848. writel((TA_CTL_START | TA_CTL_ENABLE | TA_CTL_WRITE),
  849. (mem_crb + TEST_AGT_CTRL));
  850. for (j = 0; j < MAX_CTL_CHECK; j++) {
  851. temp = readl(mem_crb + TEST_AGT_CTRL);
  852. if ((temp & TA_CTL_BUSY) == 0)
  853. break;
  854. }
  855. if (j >= MAX_CTL_CHECK) {
  856. if (printk_ratelimit())
  857. dev_err(&adapter->pdev->dev,
  858. "failed to write through agent\n");
  859. ret = -EIO;
  860. } else
  861. ret = 0;
  862. done:
  863. mutex_unlock(&adapter->ahw.mem_lock);
  864. return ret;
  865. }
  866. int
  867. qlcnic_pci_mem_read_2M(struct qlcnic_adapter *adapter,
  868. u64 off, u64 *data)
  869. {
  870. int j, ret;
  871. u32 temp, off8;
  872. u64 val, stride;
  873. void __iomem *mem_crb;
  874. /* Only 64-bit aligned access */
  875. if (off & 7)
  876. return -EIO;
  877. /* P3 onward, test agent base for MIU and SIU is same */
  878. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_QDR_NET,
  879. QLCNIC_ADDR_QDR_NET_MAX_P3)) {
  880. mem_crb = qlcnic_get_ioaddr(adapter,
  881. QLCNIC_CRB_QDR_NET+MIU_TEST_AGT_BASE);
  882. goto correct;
  883. }
  884. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_DDR_NET, QLCNIC_ADDR_DDR_NET_MAX)) {
  885. mem_crb = qlcnic_get_ioaddr(adapter,
  886. QLCNIC_CRB_DDR_NET+MIU_TEST_AGT_BASE);
  887. goto correct;
  888. }
  889. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_OCM0, QLCNIC_ADDR_OCM0_MAX)) {
  890. return qlcnic_pci_mem_access_direct(adapter,
  891. off, data, 0);
  892. }
  893. return -EIO;
  894. correct:
  895. stride = QLCNIC_IS_REVISION_P3P(adapter->ahw.revision_id) ? 16 : 8;
  896. off8 = off & ~(stride-1);
  897. mutex_lock(&adapter->ahw.mem_lock);
  898. writel(off8, (mem_crb + MIU_TEST_AGT_ADDR_LO));
  899. writel(0, (mem_crb + MIU_TEST_AGT_ADDR_HI));
  900. writel(TA_CTL_ENABLE, (mem_crb + TEST_AGT_CTRL));
  901. writel((TA_CTL_START | TA_CTL_ENABLE), (mem_crb + TEST_AGT_CTRL));
  902. for (j = 0; j < MAX_CTL_CHECK; j++) {
  903. temp = readl(mem_crb + TEST_AGT_CTRL);
  904. if ((temp & TA_CTL_BUSY) == 0)
  905. break;
  906. }
  907. if (j >= MAX_CTL_CHECK) {
  908. if (printk_ratelimit())
  909. dev_err(&adapter->pdev->dev,
  910. "failed to read through agent\n");
  911. ret = -EIO;
  912. } else {
  913. off8 = MIU_TEST_AGT_RDDATA_LO;
  914. if ((stride == 16) && (off & 0xf))
  915. off8 = MIU_TEST_AGT_RDDATA_UPPER_LO;
  916. temp = readl(mem_crb + off8 + 4);
  917. val = (u64)temp << 32;
  918. val |= readl(mem_crb + off8);
  919. *data = val;
  920. ret = 0;
  921. }
  922. mutex_unlock(&adapter->ahw.mem_lock);
  923. return ret;
  924. }
  925. int qlcnic_get_board_info(struct qlcnic_adapter *adapter)
  926. {
  927. int offset, board_type, magic;
  928. struct pci_dev *pdev = adapter->pdev;
  929. offset = QLCNIC_FW_MAGIC_OFFSET;
  930. if (qlcnic_rom_fast_read(adapter, offset, &magic))
  931. return -EIO;
  932. if (magic != QLCNIC_BDINFO_MAGIC) {
  933. dev_err(&pdev->dev, "invalid board config, magic=%08x\n",
  934. magic);
  935. return -EIO;
  936. }
  937. offset = QLCNIC_BRDTYPE_OFFSET;
  938. if (qlcnic_rom_fast_read(adapter, offset, &board_type))
  939. return -EIO;
  940. adapter->ahw.board_type = board_type;
  941. if (board_type == QLCNIC_BRDTYPE_P3_4_GB_MM) {
  942. u32 gpio = QLCRD32(adapter, QLCNIC_ROMUSB_GLB_PAD_GPIO_I);
  943. if ((gpio & 0x8000) == 0)
  944. board_type = QLCNIC_BRDTYPE_P3_10G_TP;
  945. }
  946. switch (board_type) {
  947. case QLCNIC_BRDTYPE_P3_HMEZ:
  948. case QLCNIC_BRDTYPE_P3_XG_LOM:
  949. case QLCNIC_BRDTYPE_P3_10G_CX4:
  950. case QLCNIC_BRDTYPE_P3_10G_CX4_LP:
  951. case QLCNIC_BRDTYPE_P3_IMEZ:
  952. case QLCNIC_BRDTYPE_P3_10G_SFP_PLUS:
  953. case QLCNIC_BRDTYPE_P3_10G_SFP_CT:
  954. case QLCNIC_BRDTYPE_P3_10G_SFP_QT:
  955. case QLCNIC_BRDTYPE_P3_10G_XFP:
  956. case QLCNIC_BRDTYPE_P3_10000_BASE_T:
  957. adapter->ahw.port_type = QLCNIC_XGBE;
  958. break;
  959. case QLCNIC_BRDTYPE_P3_REF_QG:
  960. case QLCNIC_BRDTYPE_P3_4_GB:
  961. case QLCNIC_BRDTYPE_P3_4_GB_MM:
  962. adapter->ahw.port_type = QLCNIC_GBE;
  963. break;
  964. case QLCNIC_BRDTYPE_P3_10G_TP:
  965. adapter->ahw.port_type = (adapter->portnum < 2) ?
  966. QLCNIC_XGBE : QLCNIC_GBE;
  967. break;
  968. default:
  969. dev_err(&pdev->dev, "unknown board type %x\n", board_type);
  970. adapter->ahw.port_type = QLCNIC_XGBE;
  971. break;
  972. }
  973. return 0;
  974. }
  975. int
  976. qlcnic_wol_supported(struct qlcnic_adapter *adapter)
  977. {
  978. u32 wol_cfg;
  979. wol_cfg = QLCRD32(adapter, QLCNIC_WOL_CONFIG_NV);
  980. if (wol_cfg & (1UL << adapter->portnum)) {
  981. wol_cfg = QLCRD32(adapter, QLCNIC_WOL_CONFIG);
  982. if (wol_cfg & (1 << adapter->portnum))
  983. return 1;
  984. }
  985. return 0;
  986. }
  987. int qlcnic_config_led(struct qlcnic_adapter *adapter, u32 state, u32 rate)
  988. {
  989. struct qlcnic_nic_req req;
  990. int rv;
  991. u64 word;
  992. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  993. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  994. word = QLCNIC_H2C_OPCODE_CONFIG_LED | ((u64)adapter->portnum << 16);
  995. req.req_hdr = cpu_to_le64(word);
  996. req.words[0] = cpu_to_le64((u64)rate << 32);
  997. req.words[1] = cpu_to_le64(state);
  998. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  999. if (rv)
  1000. dev_err(&adapter->pdev->dev, "LED configuration failed.\n");
  1001. return rv;
  1002. }
  1003. static int qlcnic_set_fw_loopback(struct qlcnic_adapter *adapter, u32 flag)
  1004. {
  1005. struct qlcnic_nic_req req;
  1006. int rv;
  1007. u64 word;
  1008. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  1009. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  1010. word = QLCNIC_H2C_OPCODE_CONFIG_LOOPBACK |
  1011. ((u64)adapter->portnum << 16);
  1012. req.req_hdr = cpu_to_le64(word);
  1013. req.words[0] = cpu_to_le64(flag);
  1014. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  1015. if (rv)
  1016. dev_err(&adapter->pdev->dev,
  1017. "%sting loopback mode failed.\n",
  1018. flag ? "Set" : "Reset");
  1019. return rv;
  1020. }
  1021. int qlcnic_set_ilb_mode(struct qlcnic_adapter *adapter)
  1022. {
  1023. if (qlcnic_set_fw_loopback(adapter, 1))
  1024. return -EIO;
  1025. if (qlcnic_nic_set_promisc(adapter,
  1026. VPORT_MISS_MODE_ACCEPT_ALL)) {
  1027. qlcnic_set_fw_loopback(adapter, 0);
  1028. return -EIO;
  1029. }
  1030. msleep(1000);
  1031. return 0;
  1032. }
  1033. void qlcnic_clear_ilb_mode(struct qlcnic_adapter *adapter)
  1034. {
  1035. int mode = VPORT_MISS_MODE_DROP;
  1036. struct net_device *netdev = adapter->netdev;
  1037. qlcnic_set_fw_loopback(adapter, 0);
  1038. if (netdev->flags & IFF_PROMISC)
  1039. mode = VPORT_MISS_MODE_ACCEPT_ALL;
  1040. else if (netdev->flags & IFF_ALLMULTI)
  1041. mode = VPORT_MISS_MODE_ACCEPT_MULTI;
  1042. qlcnic_nic_set_promisc(adapter, mode);
  1043. }