qlcnic_hw.c 34 KB

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