qlcnic_hw.c 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293
  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. mode = VPORT_MISS_MODE_ACCEPT_ALL;
  399. goto send_fw_cmd;
  400. }
  401. if ((netdev->flags & IFF_ALLMULTI) ||
  402. (netdev_mc_count(netdev) > adapter->max_mc_count)) {
  403. mode = VPORT_MISS_MODE_ACCEPT_MULTI;
  404. goto send_fw_cmd;
  405. }
  406. if (!netdev_mc_empty(netdev)) {
  407. netdev_for_each_mc_addr(ha, netdev) {
  408. qlcnic_nic_add_mac(adapter, ha->addr);
  409. }
  410. }
  411. send_fw_cmd:
  412. qlcnic_nic_set_promisc(adapter, mode);
  413. }
  414. int qlcnic_nic_set_promisc(struct qlcnic_adapter *adapter, u32 mode)
  415. {
  416. struct qlcnic_nic_req req;
  417. u64 word;
  418. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  419. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  420. word = QLCNIC_H2C_OPCODE_PROXY_SET_VPORT_MISS_MODE |
  421. ((u64)adapter->portnum << 16);
  422. req.req_hdr = cpu_to_le64(word);
  423. req.words[0] = cpu_to_le64(mode);
  424. return qlcnic_send_cmd_descs(adapter,
  425. (struct cmd_desc_type0 *)&req, 1);
  426. }
  427. void qlcnic_free_mac_list(struct qlcnic_adapter *adapter)
  428. {
  429. struct qlcnic_mac_list_s *cur;
  430. struct list_head *head = &adapter->mac_list;
  431. while (!list_empty(head)) {
  432. cur = list_entry(head->next, struct qlcnic_mac_list_s, list);
  433. qlcnic_sre_macaddr_change(adapter,
  434. cur->mac_addr, 0, QLCNIC_MAC_DEL);
  435. list_del(&cur->list);
  436. kfree(cur);
  437. }
  438. }
  439. void qlcnic_prune_lb_filters(struct qlcnic_adapter *adapter)
  440. {
  441. struct qlcnic_filter *tmp_fil;
  442. struct hlist_node *tmp_hnode, *n;
  443. struct hlist_head *head;
  444. int i;
  445. for (i = 0; i < adapter->fhash.fmax; i++) {
  446. head = &(adapter->fhash.fhead[i]);
  447. hlist_for_each_entry_safe(tmp_fil, tmp_hnode, n, head, fnode)
  448. {
  449. if (jiffies >
  450. (QLCNIC_FILTER_AGE * HZ + tmp_fil->ftime)) {
  451. qlcnic_sre_macaddr_change(adapter,
  452. tmp_fil->faddr, tmp_fil->vlan_id,
  453. tmp_fil->vlan_id ? QLCNIC_MAC_VLAN_DEL :
  454. QLCNIC_MAC_DEL);
  455. spin_lock_bh(&adapter->mac_learn_lock);
  456. adapter->fhash.fnum--;
  457. hlist_del(&tmp_fil->fnode);
  458. spin_unlock_bh(&adapter->mac_learn_lock);
  459. kfree(tmp_fil);
  460. }
  461. }
  462. }
  463. }
  464. void qlcnic_delete_lb_filters(struct qlcnic_adapter *adapter)
  465. {
  466. struct qlcnic_filter *tmp_fil;
  467. struct hlist_node *tmp_hnode, *n;
  468. struct hlist_head *head;
  469. int i;
  470. for (i = 0; i < adapter->fhash.fmax; i++) {
  471. head = &(adapter->fhash.fhead[i]);
  472. hlist_for_each_entry_safe(tmp_fil, tmp_hnode, n, head, fnode) {
  473. qlcnic_sre_macaddr_change(adapter, tmp_fil->faddr,
  474. tmp_fil->vlan_id, tmp_fil->vlan_id ?
  475. QLCNIC_MAC_VLAN_DEL : QLCNIC_MAC_DEL);
  476. spin_lock_bh(&adapter->mac_learn_lock);
  477. adapter->fhash.fnum--;
  478. hlist_del(&tmp_fil->fnode);
  479. spin_unlock_bh(&adapter->mac_learn_lock);
  480. kfree(tmp_fil);
  481. }
  482. }
  483. }
  484. #define QLCNIC_CONFIG_INTR_COALESCE 3
  485. /*
  486. * Send the interrupt coalescing parameter set by ethtool to the card.
  487. */
  488. int qlcnic_config_intr_coalesce(struct qlcnic_adapter *adapter)
  489. {
  490. struct qlcnic_nic_req req;
  491. u64 word[6];
  492. int rv, i;
  493. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  494. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  495. word[0] = QLCNIC_CONFIG_INTR_COALESCE | ((u64)adapter->portnum << 16);
  496. req.req_hdr = cpu_to_le64(word[0]);
  497. memcpy(&word[0], &adapter->coal, sizeof(adapter->coal));
  498. for (i = 0; i < 6; i++)
  499. req.words[i] = cpu_to_le64(word[i]);
  500. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  501. if (rv != 0)
  502. dev_err(&adapter->netdev->dev,
  503. "Could not send interrupt coalescing parameters\n");
  504. return rv;
  505. }
  506. int qlcnic_config_hw_lro(struct qlcnic_adapter *adapter, int enable)
  507. {
  508. struct qlcnic_nic_req req;
  509. u64 word;
  510. int rv;
  511. if ((adapter->flags & QLCNIC_LRO_ENABLED) == enable)
  512. return 0;
  513. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  514. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  515. word = QLCNIC_H2C_OPCODE_CONFIG_HW_LRO | ((u64)adapter->portnum << 16);
  516. req.req_hdr = cpu_to_le64(word);
  517. req.words[0] = cpu_to_le64(enable);
  518. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  519. if (rv != 0)
  520. dev_err(&adapter->netdev->dev,
  521. "Could not send configure hw lro request\n");
  522. adapter->flags ^= QLCNIC_LRO_ENABLED;
  523. return rv;
  524. }
  525. int qlcnic_config_bridged_mode(struct qlcnic_adapter *adapter, u32 enable)
  526. {
  527. struct qlcnic_nic_req req;
  528. u64 word;
  529. int rv;
  530. if (!!(adapter->flags & QLCNIC_BRIDGE_ENABLED) == enable)
  531. return 0;
  532. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  533. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  534. word = QLCNIC_H2C_OPCODE_CONFIG_BRIDGING |
  535. ((u64)adapter->portnum << 16);
  536. req.req_hdr = cpu_to_le64(word);
  537. req.words[0] = cpu_to_le64(enable);
  538. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  539. if (rv != 0)
  540. dev_err(&adapter->netdev->dev,
  541. "Could not send configure bridge mode request\n");
  542. adapter->flags ^= QLCNIC_BRIDGE_ENABLED;
  543. return rv;
  544. }
  545. #define RSS_HASHTYPE_IP_TCP 0x3
  546. int qlcnic_config_rss(struct qlcnic_adapter *adapter, int enable)
  547. {
  548. struct qlcnic_nic_req req;
  549. u64 word;
  550. int i, rv;
  551. const u64 key[] = { 0xbeac01fa6a42b73bULL, 0x8030f20c77cb2da3ULL,
  552. 0xae7b30b4d0ca2bcbULL, 0x43a38fb04167253dULL,
  553. 0x255b0ec26d5a56daULL };
  554. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  555. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  556. word = QLCNIC_H2C_OPCODE_CONFIG_RSS | ((u64)adapter->portnum << 16);
  557. req.req_hdr = cpu_to_le64(word);
  558. /*
  559. * RSS request:
  560. * bits 3-0: hash_method
  561. * 5-4: hash_type_ipv4
  562. * 7-6: hash_type_ipv6
  563. * 8: enable
  564. * 9: use indirection table
  565. * 47-10: reserved
  566. * 63-48: indirection table mask
  567. */
  568. word = ((u64)(RSS_HASHTYPE_IP_TCP & 0x3) << 4) |
  569. ((u64)(RSS_HASHTYPE_IP_TCP & 0x3) << 6) |
  570. ((u64)(enable & 0x1) << 8) |
  571. ((0x7ULL) << 48);
  572. req.words[0] = cpu_to_le64(word);
  573. for (i = 0; i < 5; i++)
  574. req.words[i+1] = cpu_to_le64(key[i]);
  575. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  576. if (rv != 0)
  577. dev_err(&adapter->netdev->dev, "could not configure RSS\n");
  578. return rv;
  579. }
  580. int qlcnic_config_ipaddr(struct qlcnic_adapter *adapter, __be32 ip, int cmd)
  581. {
  582. struct qlcnic_nic_req req;
  583. struct qlcnic_ipaddr *ipa;
  584. u64 word;
  585. int rv;
  586. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  587. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  588. word = QLCNIC_H2C_OPCODE_CONFIG_IPADDR | ((u64)adapter->portnum << 16);
  589. req.req_hdr = cpu_to_le64(word);
  590. req.words[0] = cpu_to_le64(cmd);
  591. ipa = (struct qlcnic_ipaddr *)&req.words[1];
  592. ipa->ipv4 = ip;
  593. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  594. if (rv != 0)
  595. dev_err(&adapter->netdev->dev,
  596. "could not notify %s IP 0x%x reuqest\n",
  597. (cmd == QLCNIC_IP_UP) ? "Add" : "Remove", ip);
  598. return rv;
  599. }
  600. int qlcnic_linkevent_request(struct qlcnic_adapter *adapter, int enable)
  601. {
  602. struct qlcnic_nic_req req;
  603. u64 word;
  604. int rv;
  605. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  606. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  607. word = QLCNIC_H2C_OPCODE_GET_LINKEVENT | ((u64)adapter->portnum << 16);
  608. req.req_hdr = cpu_to_le64(word);
  609. req.words[0] = cpu_to_le64(enable | (enable << 8));
  610. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  611. if (rv != 0)
  612. dev_err(&adapter->netdev->dev,
  613. "could not configure link notification\n");
  614. return rv;
  615. }
  616. int qlcnic_send_lro_cleanup(struct qlcnic_adapter *adapter)
  617. {
  618. struct qlcnic_nic_req req;
  619. u64 word;
  620. int rv;
  621. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  622. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  623. word = QLCNIC_H2C_OPCODE_LRO_REQUEST |
  624. ((u64)adapter->portnum << 16) |
  625. ((u64)QLCNIC_LRO_REQUEST_CLEANUP << 56) ;
  626. req.req_hdr = cpu_to_le64(word);
  627. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  628. if (rv != 0)
  629. dev_err(&adapter->netdev->dev,
  630. "could not cleanup lro flows\n");
  631. return rv;
  632. }
  633. /*
  634. * qlcnic_change_mtu - Change the Maximum Transfer Unit
  635. * @returns 0 on success, negative on failure
  636. */
  637. int qlcnic_change_mtu(struct net_device *netdev, int mtu)
  638. {
  639. struct qlcnic_adapter *adapter = netdev_priv(netdev);
  640. int rc = 0;
  641. if (mtu > P3_MAX_MTU) {
  642. dev_err(&adapter->netdev->dev, "mtu > %d bytes unsupported\n",
  643. P3_MAX_MTU);
  644. return -EINVAL;
  645. }
  646. rc = qlcnic_fw_cmd_set_mtu(adapter, mtu);
  647. if (!rc)
  648. netdev->mtu = mtu;
  649. return rc;
  650. }
  651. /*
  652. * Changes the CRB window to the specified window.
  653. */
  654. /* Returns < 0 if off is not valid,
  655. * 1 if window access is needed. 'off' is set to offset from
  656. * CRB space in 128M pci map
  657. * 0 if no window access is needed. 'off' is set to 2M addr
  658. * In: 'off' is offset from base in 128M pci map
  659. */
  660. static int
  661. qlcnic_pci_get_crb_addr_2M(struct qlcnic_adapter *adapter,
  662. ulong off, void __iomem **addr)
  663. {
  664. const struct crb_128M_2M_sub_block_map *m;
  665. if ((off >= QLCNIC_CRB_MAX) || (off < QLCNIC_PCI_CRBSPACE))
  666. return -EINVAL;
  667. off -= QLCNIC_PCI_CRBSPACE;
  668. /*
  669. * Try direct map
  670. */
  671. m = &crb_128M_2M_map[CRB_BLK(off)].sub_block[CRB_SUBBLK(off)];
  672. if (m->valid && (m->start_128M <= off) && (m->end_128M > off)) {
  673. *addr = adapter->ahw.pci_base0 + m->start_2M +
  674. (off - m->start_128M);
  675. return 0;
  676. }
  677. /*
  678. * Not in direct map, use crb window
  679. */
  680. *addr = adapter->ahw.pci_base0 + CRB_INDIRECT_2M + (off & MASK(16));
  681. return 1;
  682. }
  683. /*
  684. * In: 'off' is offset from CRB space in 128M pci map
  685. * Out: 'off' is 2M pci map addr
  686. * side effect: lock crb window
  687. */
  688. static int
  689. qlcnic_pci_set_crbwindow_2M(struct qlcnic_adapter *adapter, ulong off)
  690. {
  691. u32 window;
  692. void __iomem *addr = adapter->ahw.pci_base0 + CRB_WINDOW_2M;
  693. off -= QLCNIC_PCI_CRBSPACE;
  694. window = CRB_HI(off);
  695. if (window == 0) {
  696. dev_err(&adapter->pdev->dev, "Invalid offset 0x%lx\n", off);
  697. return -EIO;
  698. }
  699. writel(window, addr);
  700. if (readl(addr) != window) {
  701. if (printk_ratelimit())
  702. dev_warn(&adapter->pdev->dev,
  703. "failed to set CRB window to %d off 0x%lx\n",
  704. window, off);
  705. return -EIO;
  706. }
  707. return 0;
  708. }
  709. int
  710. qlcnic_hw_write_wx_2M(struct qlcnic_adapter *adapter, ulong off, u32 data)
  711. {
  712. unsigned long flags;
  713. int rv;
  714. void __iomem *addr = NULL;
  715. rv = qlcnic_pci_get_crb_addr_2M(adapter, off, &addr);
  716. if (rv == 0) {
  717. writel(data, addr);
  718. return 0;
  719. }
  720. if (rv > 0) {
  721. /* indirect access */
  722. write_lock_irqsave(&adapter->ahw.crb_lock, flags);
  723. crb_win_lock(adapter);
  724. rv = qlcnic_pci_set_crbwindow_2M(adapter, off);
  725. if (!rv)
  726. writel(data, addr);
  727. crb_win_unlock(adapter);
  728. write_unlock_irqrestore(&adapter->ahw.crb_lock, flags);
  729. return rv;
  730. }
  731. dev_err(&adapter->pdev->dev,
  732. "%s: invalid offset: 0x%016lx\n", __func__, off);
  733. dump_stack();
  734. return -EIO;
  735. }
  736. u32
  737. qlcnic_hw_read_wx_2M(struct qlcnic_adapter *adapter, ulong off)
  738. {
  739. unsigned long flags;
  740. int rv;
  741. u32 data = -1;
  742. void __iomem *addr = NULL;
  743. rv = qlcnic_pci_get_crb_addr_2M(adapter, off, &addr);
  744. if (rv == 0)
  745. return readl(addr);
  746. if (rv > 0) {
  747. /* indirect access */
  748. write_lock_irqsave(&adapter->ahw.crb_lock, flags);
  749. crb_win_lock(adapter);
  750. if (!qlcnic_pci_set_crbwindow_2M(adapter, off))
  751. data = readl(addr);
  752. crb_win_unlock(adapter);
  753. write_unlock_irqrestore(&adapter->ahw.crb_lock, flags);
  754. return data;
  755. }
  756. dev_err(&adapter->pdev->dev,
  757. "%s: invalid offset: 0x%016lx\n", __func__, off);
  758. dump_stack();
  759. return -1;
  760. }
  761. void __iomem *
  762. qlcnic_get_ioaddr(struct qlcnic_adapter *adapter, u32 offset)
  763. {
  764. void __iomem *addr = NULL;
  765. WARN_ON(qlcnic_pci_get_crb_addr_2M(adapter, offset, &addr));
  766. return addr;
  767. }
  768. static int
  769. qlcnic_pci_set_window_2M(struct qlcnic_adapter *adapter,
  770. u64 addr, u32 *start)
  771. {
  772. u32 window;
  773. window = OCM_WIN_P3P(addr);
  774. writel(window, adapter->ahw.ocm_win_crb);
  775. /* read back to flush */
  776. readl(adapter->ahw.ocm_win_crb);
  777. *start = QLCNIC_PCI_OCM0_2M + GET_MEM_OFFS_2M(addr);
  778. return 0;
  779. }
  780. static int
  781. qlcnic_pci_mem_access_direct(struct qlcnic_adapter *adapter, u64 off,
  782. u64 *data, int op)
  783. {
  784. void __iomem *addr;
  785. int ret;
  786. u32 start;
  787. mutex_lock(&adapter->ahw.mem_lock);
  788. ret = qlcnic_pci_set_window_2M(adapter, off, &start);
  789. if (ret != 0)
  790. goto unlock;
  791. addr = adapter->ahw.pci_base0 + start;
  792. if (op == 0) /* read */
  793. *data = readq(addr);
  794. else /* write */
  795. writeq(*data, addr);
  796. unlock:
  797. mutex_unlock(&adapter->ahw.mem_lock);
  798. return ret;
  799. }
  800. void
  801. qlcnic_pci_camqm_read_2M(struct qlcnic_adapter *adapter, u64 off, u64 *data)
  802. {
  803. void __iomem *addr = adapter->ahw.pci_base0 +
  804. QLCNIC_PCI_CAMQM_2M_BASE + (off - QLCNIC_PCI_CAMQM);
  805. mutex_lock(&adapter->ahw.mem_lock);
  806. *data = readq(addr);
  807. mutex_unlock(&adapter->ahw.mem_lock);
  808. }
  809. void
  810. qlcnic_pci_camqm_write_2M(struct qlcnic_adapter *adapter, u64 off, u64 data)
  811. {
  812. void __iomem *addr = adapter->ahw.pci_base0 +
  813. QLCNIC_PCI_CAMQM_2M_BASE + (off - QLCNIC_PCI_CAMQM);
  814. mutex_lock(&adapter->ahw.mem_lock);
  815. writeq(data, addr);
  816. mutex_unlock(&adapter->ahw.mem_lock);
  817. }
  818. #define MAX_CTL_CHECK 1000
  819. int
  820. qlcnic_pci_mem_write_2M(struct qlcnic_adapter *adapter,
  821. u64 off, u64 data)
  822. {
  823. int i, j, ret;
  824. u32 temp, off8;
  825. void __iomem *mem_crb;
  826. /* Only 64-bit aligned access */
  827. if (off & 7)
  828. return -EIO;
  829. /* P3 onward, test agent base for MIU and SIU is same */
  830. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_QDR_NET,
  831. QLCNIC_ADDR_QDR_NET_MAX)) {
  832. mem_crb = qlcnic_get_ioaddr(adapter,
  833. QLCNIC_CRB_QDR_NET+MIU_TEST_AGT_BASE);
  834. goto correct;
  835. }
  836. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_DDR_NET, QLCNIC_ADDR_DDR_NET_MAX)) {
  837. mem_crb = qlcnic_get_ioaddr(adapter,
  838. QLCNIC_CRB_DDR_NET+MIU_TEST_AGT_BASE);
  839. goto correct;
  840. }
  841. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_OCM0, QLCNIC_ADDR_OCM0_MAX))
  842. return qlcnic_pci_mem_access_direct(adapter, off, &data, 1);
  843. return -EIO;
  844. correct:
  845. off8 = off & ~0xf;
  846. mutex_lock(&adapter->ahw.mem_lock);
  847. writel(off8, (mem_crb + MIU_TEST_AGT_ADDR_LO));
  848. writel(0, (mem_crb + MIU_TEST_AGT_ADDR_HI));
  849. i = 0;
  850. writel(TA_CTL_ENABLE, (mem_crb + TEST_AGT_CTRL));
  851. writel((TA_CTL_START | TA_CTL_ENABLE),
  852. (mem_crb + TEST_AGT_CTRL));
  853. for (j = 0; j < MAX_CTL_CHECK; j++) {
  854. temp = readl(mem_crb + TEST_AGT_CTRL);
  855. if ((temp & TA_CTL_BUSY) == 0)
  856. break;
  857. }
  858. if (j >= MAX_CTL_CHECK) {
  859. ret = -EIO;
  860. goto done;
  861. }
  862. i = (off & 0xf) ? 0 : 2;
  863. writel(readl(mem_crb + MIU_TEST_AGT_RDDATA(i)),
  864. mem_crb + MIU_TEST_AGT_WRDATA(i));
  865. writel(readl(mem_crb + MIU_TEST_AGT_RDDATA(i+1)),
  866. mem_crb + MIU_TEST_AGT_WRDATA(i+1));
  867. i = (off & 0xf) ? 2 : 0;
  868. writel(data & 0xffffffff,
  869. mem_crb + MIU_TEST_AGT_WRDATA(i));
  870. writel((data >> 32) & 0xffffffff,
  871. mem_crb + MIU_TEST_AGT_WRDATA(i+1));
  872. writel((TA_CTL_ENABLE | TA_CTL_WRITE), (mem_crb + TEST_AGT_CTRL));
  873. writel((TA_CTL_START | TA_CTL_ENABLE | TA_CTL_WRITE),
  874. (mem_crb + TEST_AGT_CTRL));
  875. for (j = 0; j < MAX_CTL_CHECK; j++) {
  876. temp = readl(mem_crb + TEST_AGT_CTRL);
  877. if ((temp & TA_CTL_BUSY) == 0)
  878. break;
  879. }
  880. if (j >= MAX_CTL_CHECK) {
  881. if (printk_ratelimit())
  882. dev_err(&adapter->pdev->dev,
  883. "failed to write through agent\n");
  884. ret = -EIO;
  885. } else
  886. ret = 0;
  887. done:
  888. mutex_unlock(&adapter->ahw.mem_lock);
  889. return ret;
  890. }
  891. int
  892. qlcnic_pci_mem_read_2M(struct qlcnic_adapter *adapter,
  893. u64 off, u64 *data)
  894. {
  895. int j, ret;
  896. u32 temp, off8;
  897. u64 val;
  898. void __iomem *mem_crb;
  899. /* Only 64-bit aligned access */
  900. if (off & 7)
  901. return -EIO;
  902. /* P3 onward, test agent base for MIU and SIU is same */
  903. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_QDR_NET,
  904. QLCNIC_ADDR_QDR_NET_MAX)) {
  905. mem_crb = qlcnic_get_ioaddr(adapter,
  906. QLCNIC_CRB_QDR_NET+MIU_TEST_AGT_BASE);
  907. goto correct;
  908. }
  909. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_DDR_NET, QLCNIC_ADDR_DDR_NET_MAX)) {
  910. mem_crb = qlcnic_get_ioaddr(adapter,
  911. QLCNIC_CRB_DDR_NET+MIU_TEST_AGT_BASE);
  912. goto correct;
  913. }
  914. if (ADDR_IN_RANGE(off, QLCNIC_ADDR_OCM0, QLCNIC_ADDR_OCM0_MAX)) {
  915. return qlcnic_pci_mem_access_direct(adapter,
  916. off, data, 0);
  917. }
  918. return -EIO;
  919. correct:
  920. off8 = off & ~0xf;
  921. mutex_lock(&adapter->ahw.mem_lock);
  922. writel(off8, (mem_crb + MIU_TEST_AGT_ADDR_LO));
  923. writel(0, (mem_crb + MIU_TEST_AGT_ADDR_HI));
  924. writel(TA_CTL_ENABLE, (mem_crb + TEST_AGT_CTRL));
  925. writel((TA_CTL_START | TA_CTL_ENABLE), (mem_crb + TEST_AGT_CTRL));
  926. for (j = 0; j < MAX_CTL_CHECK; j++) {
  927. temp = readl(mem_crb + TEST_AGT_CTRL);
  928. if ((temp & TA_CTL_BUSY) == 0)
  929. break;
  930. }
  931. if (j >= MAX_CTL_CHECK) {
  932. if (printk_ratelimit())
  933. dev_err(&adapter->pdev->dev,
  934. "failed to read through agent\n");
  935. ret = -EIO;
  936. } else {
  937. off8 = MIU_TEST_AGT_RDDATA_LO;
  938. if (off & 0xf)
  939. off8 = MIU_TEST_AGT_RDDATA_UPPER_LO;
  940. temp = readl(mem_crb + off8 + 4);
  941. val = (u64)temp << 32;
  942. val |= readl(mem_crb + off8);
  943. *data = val;
  944. ret = 0;
  945. }
  946. mutex_unlock(&adapter->ahw.mem_lock);
  947. return ret;
  948. }
  949. int qlcnic_get_board_info(struct qlcnic_adapter *adapter)
  950. {
  951. int offset, board_type, magic;
  952. struct pci_dev *pdev = adapter->pdev;
  953. offset = QLCNIC_FW_MAGIC_OFFSET;
  954. if (qlcnic_rom_fast_read(adapter, offset, &magic))
  955. return -EIO;
  956. if (magic != QLCNIC_BDINFO_MAGIC) {
  957. dev_err(&pdev->dev, "invalid board config, magic=%08x\n",
  958. magic);
  959. return -EIO;
  960. }
  961. offset = QLCNIC_BRDTYPE_OFFSET;
  962. if (qlcnic_rom_fast_read(adapter, offset, &board_type))
  963. return -EIO;
  964. adapter->ahw.board_type = board_type;
  965. if (board_type == QLCNIC_BRDTYPE_P3_4_GB_MM) {
  966. u32 gpio = QLCRD32(adapter, QLCNIC_ROMUSB_GLB_PAD_GPIO_I);
  967. if ((gpio & 0x8000) == 0)
  968. board_type = QLCNIC_BRDTYPE_P3_10G_TP;
  969. }
  970. switch (board_type) {
  971. case QLCNIC_BRDTYPE_P3_HMEZ:
  972. case QLCNIC_BRDTYPE_P3_XG_LOM:
  973. case QLCNIC_BRDTYPE_P3_10G_CX4:
  974. case QLCNIC_BRDTYPE_P3_10G_CX4_LP:
  975. case QLCNIC_BRDTYPE_P3_IMEZ:
  976. case QLCNIC_BRDTYPE_P3_10G_SFP_PLUS:
  977. case QLCNIC_BRDTYPE_P3_10G_SFP_CT:
  978. case QLCNIC_BRDTYPE_P3_10G_SFP_QT:
  979. case QLCNIC_BRDTYPE_P3_10G_XFP:
  980. case QLCNIC_BRDTYPE_P3_10000_BASE_T:
  981. adapter->ahw.port_type = QLCNIC_XGBE;
  982. break;
  983. case QLCNIC_BRDTYPE_P3_REF_QG:
  984. case QLCNIC_BRDTYPE_P3_4_GB:
  985. case QLCNIC_BRDTYPE_P3_4_GB_MM:
  986. adapter->ahw.port_type = QLCNIC_GBE;
  987. break;
  988. case QLCNIC_BRDTYPE_P3_10G_TP:
  989. adapter->ahw.port_type = (adapter->portnum < 2) ?
  990. QLCNIC_XGBE : QLCNIC_GBE;
  991. break;
  992. default:
  993. dev_err(&pdev->dev, "unknown board type %x\n", board_type);
  994. adapter->ahw.port_type = QLCNIC_XGBE;
  995. break;
  996. }
  997. return 0;
  998. }
  999. int
  1000. qlcnic_wol_supported(struct qlcnic_adapter *adapter)
  1001. {
  1002. u32 wol_cfg;
  1003. wol_cfg = QLCRD32(adapter, QLCNIC_WOL_CONFIG_NV);
  1004. if (wol_cfg & (1UL << adapter->portnum)) {
  1005. wol_cfg = QLCRD32(adapter, QLCNIC_WOL_CONFIG);
  1006. if (wol_cfg & (1 << adapter->portnum))
  1007. return 1;
  1008. }
  1009. return 0;
  1010. }
  1011. int qlcnic_config_led(struct qlcnic_adapter *adapter, u32 state, u32 rate)
  1012. {
  1013. struct qlcnic_nic_req req;
  1014. int rv;
  1015. u64 word;
  1016. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  1017. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  1018. word = QLCNIC_H2C_OPCODE_CONFIG_LED | ((u64)adapter->portnum << 16);
  1019. req.req_hdr = cpu_to_le64(word);
  1020. req.words[0] = cpu_to_le64((u64)rate << 32);
  1021. req.words[1] = cpu_to_le64(state);
  1022. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  1023. if (rv)
  1024. dev_err(&adapter->pdev->dev, "LED configuration failed.\n");
  1025. return rv;
  1026. }
  1027. static int qlcnic_set_fw_loopback(struct qlcnic_adapter *adapter, u32 flag)
  1028. {
  1029. struct qlcnic_nic_req req;
  1030. int rv;
  1031. u64 word;
  1032. memset(&req, 0, sizeof(struct qlcnic_nic_req));
  1033. req.qhdr = cpu_to_le64(QLCNIC_HOST_REQUEST << 23);
  1034. word = QLCNIC_H2C_OPCODE_CONFIG_LOOPBACK |
  1035. ((u64)adapter->portnum << 16);
  1036. req.req_hdr = cpu_to_le64(word);
  1037. req.words[0] = cpu_to_le64(flag);
  1038. rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
  1039. if (rv)
  1040. dev_err(&adapter->pdev->dev,
  1041. "%sting loopback mode failed.\n",
  1042. flag ? "Set" : "Reset");
  1043. return rv;
  1044. }
  1045. int qlcnic_set_ilb_mode(struct qlcnic_adapter *adapter)
  1046. {
  1047. if (qlcnic_set_fw_loopback(adapter, 1))
  1048. return -EIO;
  1049. if (qlcnic_nic_set_promisc(adapter,
  1050. VPORT_MISS_MODE_ACCEPT_ALL)) {
  1051. qlcnic_set_fw_loopback(adapter, 0);
  1052. return -EIO;
  1053. }
  1054. msleep(1000);
  1055. return 0;
  1056. }
  1057. void qlcnic_clear_ilb_mode(struct qlcnic_adapter *adapter)
  1058. {
  1059. int mode = VPORT_MISS_MODE_DROP;
  1060. struct net_device *netdev = adapter->netdev;
  1061. qlcnic_set_fw_loopback(adapter, 0);
  1062. if (netdev->flags & IFF_PROMISC)
  1063. mode = VPORT_MISS_MODE_ACCEPT_ALL;
  1064. else if (netdev->flags & IFF_ALLMULTI)
  1065. mode = VPORT_MISS_MODE_ACCEPT_MULTI;
  1066. qlcnic_nic_set_promisc(adapter, mode);
  1067. msleep(1000);
  1068. }