qlcnic_hw.c 32 KB

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