enc28j60.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982
  1. /*
  2. * This program is free software; you can redistribute it and/or
  3. * modify it under the terms of the GNU General Public License as
  4. * published by the Free Software Foundation; either version 2 of
  5. * the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program; if not, write to the Free Software
  14. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  15. * MA 02111-1307 USA
  16. */
  17. #include <config.h>
  18. #include <common.h>
  19. #include <net.h>
  20. #include <asm/arch/hardware.h>
  21. #include <asm/arch/spi.h>
  22. /*
  23. * Control Registers in Bank 0
  24. */
  25. #define CTL_REG_ERDPTL 0x00
  26. #define CTL_REG_ERDPTH 0x01
  27. #define CTL_REG_EWRPTL 0x02
  28. #define CTL_REG_EWRPTH 0x03
  29. #define CTL_REG_ETXSTL 0x04
  30. #define CTL_REG_ETXSTH 0x05
  31. #define CTL_REG_ETXNDL 0x06
  32. #define CTL_REG_ETXNDH 0x07
  33. #define CTL_REG_ERXSTL 0x08
  34. #define CTL_REG_ERXSTH 0x09
  35. #define CTL_REG_ERXNDL 0x0A
  36. #define CTL_REG_ERXNDH 0x0B
  37. #define CTL_REG_ERXRDPTL 0x0C
  38. #define CTL_REG_ERXRDPTH 0x0D
  39. #define CTL_REG_ERXWRPTL 0x0E
  40. #define CTL_REG_ERXWRPTH 0x0F
  41. #define CTL_REG_EDMASTL 0x10
  42. #define CTL_REG_EDMASTH 0x11
  43. #define CTL_REG_EDMANDL 0x12
  44. #define CTL_REG_EDMANDH 0x13
  45. #define CTL_REG_EDMADSTL 0x14
  46. #define CTL_REG_EDMADSTH 0x15
  47. #define CTL_REG_EDMACSL 0x16
  48. #define CTL_REG_EDMACSH 0x17
  49. /* these are common in all banks */
  50. #define CTL_REG_EIE 0x1B
  51. #define CTL_REG_EIR 0x1C
  52. #define CTL_REG_ESTAT 0x1D
  53. #define CTL_REG_ECON2 0x1E
  54. #define CTL_REG_ECON1 0x1F
  55. /*
  56. * Control Registers in Bank 1
  57. */
  58. #define CTL_REG_EHT0 0x00
  59. #define CTL_REG_EHT1 0x01
  60. #define CTL_REG_EHT2 0x02
  61. #define CTL_REG_EHT3 0x03
  62. #define CTL_REG_EHT4 0x04
  63. #define CTL_REG_EHT5 0x05
  64. #define CTL_REG_EHT6 0x06
  65. #define CTL_REG_EHT7 0x07
  66. #define CTL_REG_EPMM0 0x08
  67. #define CTL_REG_EPMM1 0x09
  68. #define CTL_REG_EPMM2 0x0A
  69. #define CTL_REG_EPMM3 0x0B
  70. #define CTL_REG_EPMM4 0x0C
  71. #define CTL_REG_EPMM5 0x0D
  72. #define CTL_REG_EPMM6 0x0E
  73. #define CTL_REG_EPMM7 0x0F
  74. #define CTL_REG_EPMCSL 0x10
  75. #define CTL_REG_EPMCSH 0x11
  76. #define CTL_REG_EPMOL 0x14
  77. #define CTL_REG_EPMOH 0x15
  78. #define CTL_REG_EWOLIE 0x16
  79. #define CTL_REG_EWOLIR 0x17
  80. #define CTL_REG_ERXFCON 0x18
  81. #define CTL_REG_EPKTCNT 0x19
  82. /*
  83. * Control Registers in Bank 2
  84. */
  85. #define CTL_REG_MACON1 0x00
  86. #define CTL_REG_MACON2 0x01
  87. #define CTL_REG_MACON3 0x02
  88. #define CTL_REG_MACON4 0x03
  89. #define CTL_REG_MABBIPG 0x04
  90. #define CTL_REG_MAIPGL 0x06
  91. #define CTL_REG_MAIPGH 0x07
  92. #define CTL_REG_MACLCON1 0x08
  93. #define CTL_REG_MACLCON2 0x09
  94. #define CTL_REG_MAMXFLL 0x0A
  95. #define CTL_REG_MAMXFLH 0x0B
  96. #define CTL_REG_MAPHSUP 0x0D
  97. #define CTL_REG_MICON 0x11
  98. #define CTL_REG_MICMD 0x12
  99. #define CTL_REG_MIREGADR 0x14
  100. #define CTL_REG_MIWRL 0x16
  101. #define CTL_REG_MIWRH 0x17
  102. #define CTL_REG_MIRDL 0x18
  103. #define CTL_REG_MIRDH 0x19
  104. /*
  105. * Control Registers in Bank 3
  106. */
  107. #define CTL_REG_MAADR1 0x00
  108. #define CTL_REG_MAADR0 0x01
  109. #define CTL_REG_MAADR3 0x02
  110. #define CTL_REG_MAADR2 0x03
  111. #define CTL_REG_MAADR5 0x04
  112. #define CTL_REG_MAADR4 0x05
  113. #define CTL_REG_EBSTSD 0x06
  114. #define CTL_REG_EBSTCON 0x07
  115. #define CTL_REG_EBSTCSL 0x08
  116. #define CTL_REG_EBSTCSH 0x09
  117. #define CTL_REG_MISTAT 0x0A
  118. #define CTL_REG_EREVID 0x12
  119. #define CTL_REG_ECOCON 0x15
  120. #define CTL_REG_EFLOCON 0x17
  121. #define CTL_REG_EPAUSL 0x18
  122. #define CTL_REG_EPAUSH 0x19
  123. /*
  124. * PHY Register
  125. */
  126. #define PHY_REG_PHID1 0x02
  127. #define PHY_REG_PHID2 0x03
  128. /* taken from the Linux driver */
  129. #define PHY_REG_PHCON1 0x00
  130. #define PHY_REG_PHCON2 0x10
  131. #define PHY_REG_PHLCON 0x14
  132. /*
  133. * Receive Filter Register (ERXFCON) bits
  134. */
  135. #define ENC_RFR_UCEN 0x80
  136. #define ENC_RFR_ANDOR 0x40
  137. #define ENC_RFR_CRCEN 0x20
  138. #define ENC_RFR_PMEN 0x10
  139. #define ENC_RFR_MPEN 0x08
  140. #define ENC_RFR_HTEN 0x04
  141. #define ENC_RFR_MCEN 0x02
  142. #define ENC_RFR_BCEN 0x01
  143. /*
  144. * ECON1 Register Bits
  145. */
  146. #define ENC_ECON1_TXRST 0x80
  147. #define ENC_ECON1_RXRST 0x40
  148. #define ENC_ECON1_DMAST 0x20
  149. #define ENC_ECON1_CSUMEN 0x10
  150. #define ENC_ECON1_TXRTS 0x08
  151. #define ENC_ECON1_RXEN 0x04
  152. #define ENC_ECON1_BSEL1 0x02
  153. #define ENC_ECON1_BSEL0 0x01
  154. /*
  155. * ECON2 Register Bits
  156. */
  157. #define ENC_ECON2_AUTOINC 0x80
  158. #define ENC_ECON2_PKTDEC 0x40
  159. #define ENC_ECON2_PWRSV 0x20
  160. #define ENC_ECON2_VRPS 0x08
  161. /*
  162. * EIR Register Bits
  163. */
  164. #define ENC_EIR_PKTIF 0x40
  165. #define ENC_EIR_DMAIF 0x20
  166. #define ENC_EIR_LINKIF 0x10
  167. #define ENC_EIR_TXIF 0x08
  168. #define ENC_EIR_WOLIF 0x04
  169. #define ENC_EIR_TXERIF 0x02
  170. #define ENC_EIR_RXERIF 0x01
  171. /*
  172. * ESTAT Register Bits
  173. */
  174. #define ENC_ESTAT_INT 0x80
  175. #define ENC_ESTAT_LATECOL 0x10
  176. #define ENC_ESTAT_RXBUSY 0x04
  177. #define ENC_ESTAT_TXABRT 0x02
  178. #define ENC_ESTAT_CLKRDY 0x01
  179. /*
  180. * EIE Register Bits
  181. */
  182. #define ENC_EIE_INTIE 0x80
  183. #define ENC_EIE_PKTIE 0x40
  184. #define ENC_EIE_DMAIE 0x20
  185. #define ENC_EIE_LINKIE 0x10
  186. #define ENC_EIE_TXIE 0x08
  187. #define ENC_EIE_WOLIE 0x04
  188. #define ENC_EIE_TXERIE 0x02
  189. #define ENC_EIE_RXERIE 0x01
  190. /*
  191. * MACON1 Register Bits
  192. */
  193. #define ENC_MACON1_LOOPBK 0x10
  194. #define ENC_MACON1_TXPAUS 0x08
  195. #define ENC_MACON1_RXPAUS 0x04
  196. #define ENC_MACON1_PASSALL 0x02
  197. #define ENC_MACON1_MARXEN 0x01
  198. /*
  199. * MACON2 Register Bits
  200. */
  201. #define ENC_MACON2_MARST 0x80
  202. #define ENC_MACON2_RNDRST 0x40
  203. #define ENC_MACON2_MARXRST 0x08
  204. #define ENC_MACON2_RFUNRST 0x04
  205. #define ENC_MACON2_MATXRST 0x02
  206. #define ENC_MACON2_TFUNRST 0x01
  207. /*
  208. * MACON3 Register Bits
  209. */
  210. #define ENC_MACON3_PADCFG2 0x80
  211. #define ENC_MACON3_PADCFG1 0x40
  212. #define ENC_MACON3_PADCFG0 0x20
  213. #define ENC_MACON3_TXCRCEN 0x10
  214. #define ENC_MACON3_PHDRLEN 0x08
  215. #define ENC_MACON3_HFRMEN 0x04
  216. #define ENC_MACON3_FRMLNEN 0x02
  217. #define ENC_MACON3_FULDPX 0x01
  218. /*
  219. * MICMD Register Bits
  220. */
  221. #define ENC_MICMD_MIISCAN 0x02
  222. #define ENC_MICMD_MIIRD 0x01
  223. /*
  224. * MISTAT Register Bits
  225. */
  226. #define ENC_MISTAT_NVALID 0x04
  227. #define ENC_MISTAT_SCAN 0x02
  228. #define ENC_MISTAT_BUSY 0x01
  229. /*
  230. * PHID1 and PHID2 values
  231. */
  232. #define ENC_PHID1_VALUE 0x0083
  233. #define ENC_PHID2_VALUE 0x1400
  234. #define ENC_PHID2_MASK 0xFC00
  235. #define ENC_SPI_SLAVE_CS 0x00010000 /* pin P1.16 */
  236. #define ENC_RESET 0x00020000 /* pin P1.17 */
  237. #define FAILSAFE_VALUE 5000
  238. /*
  239. * Controller memory layout:
  240. *
  241. * 0x0000 - 0x17ff 6k bytes receive buffer
  242. * 0x1800 - 0x1fff 2k bytes transmit buffer
  243. */
  244. /* Use the lower memory for receiver buffer. See errata pt. 5 */
  245. #define ENC_RX_BUF_START 0x0000
  246. #define ENC_TX_BUF_START 0x1800
  247. /* taken from the Linux driver */
  248. #define ENC_RX_BUF_END 0x17ff
  249. #define ENC_TX_BUF_END 0x1fff
  250. /* maximum frame length */
  251. #define ENC_MAX_FRM_LEN 1518
  252. #define enc_enable() PUT32(IO1CLR, ENC_SPI_SLAVE_CS)
  253. #define enc_disable() PUT32(IO1SET, ENC_SPI_SLAVE_CS)
  254. #define enc_cfg_spi() spi_set_cfg(0, 0, 0); spi_set_clock(8);
  255. static unsigned char encReadReg (unsigned char regNo);
  256. static void encWriteReg (unsigned char regNo, unsigned char data);
  257. static void encWriteRegRetry (unsigned char regNo, unsigned char data, int c);
  258. static void encReadBuff (unsigned short length, unsigned char *pBuff);
  259. static void encWriteBuff (unsigned short length, unsigned char *pBuff);
  260. static void encBitSet (unsigned char regNo, unsigned char data);
  261. static void encBitClr (unsigned char regNo, unsigned char data);
  262. static void encReset (void);
  263. static void encInit (unsigned char *pEthAddr);
  264. static unsigned short phyRead (unsigned char addr);
  265. static void phyWrite(unsigned char, unsigned short);
  266. static void encPoll (void);
  267. static void encRx (void);
  268. #define m_nic_read(reg) encReadReg(reg)
  269. #define m_nic_write(reg, data) encWriteReg(reg, data)
  270. #define m_nic_write_retry(reg, data, count) encWriteRegRetry(reg, data, count)
  271. #define m_nic_read_data(len, buf) encReadBuff((len), (buf))
  272. #define m_nic_write_data(len, buf) encWriteBuff((len), (buf))
  273. /* bit field set */
  274. #define m_nic_bfs(reg, data) encBitSet(reg, data)
  275. /* bit field clear */
  276. #define m_nic_bfc(reg, data) encBitClr(reg, data)
  277. static unsigned char bank = 0; /* current bank in enc28j60 */
  278. static unsigned char next_pointer_lsb;
  279. static unsigned char next_pointer_msb;
  280. static unsigned char buffer[ENC_MAX_FRM_LEN];
  281. static int rxResetCounter = 0;
  282. #define RX_RESET_COUNTER 1000;
  283. /*-----------------------------------------------------------------------------
  284. * Always returns 0
  285. */
  286. int eth_init (bd_t * bis)
  287. {
  288. unsigned char estatVal;
  289. uchar enetaddr[6];
  290. /* configure GPIO */
  291. (*((volatile unsigned long *) IO1DIR)) |= ENC_SPI_SLAVE_CS;
  292. (*((volatile unsigned long *) IO1DIR)) |= ENC_RESET;
  293. /* CS and RESET active low */
  294. PUT32 (IO1SET, ENC_SPI_SLAVE_CS);
  295. PUT32 (IO1SET, ENC_RESET);
  296. spi_init ();
  297. /* taken from the Linux driver - dangerous stuff here! */
  298. /* Wait for CLKRDY to become set (i.e., check that we can communicate with
  299. the ENC) */
  300. do
  301. {
  302. estatVal = m_nic_read(CTL_REG_ESTAT);
  303. } while ((estatVal & 0x08) || (~estatVal & ENC_ESTAT_CLKRDY));
  304. /* initialize controller */
  305. encReset ();
  306. eth_getenv_enetaddr("ethaddr", enetaddr);
  307. encInit (enetaddr);
  308. m_nic_bfs (CTL_REG_ECON1, ENC_ECON1_RXEN); /* enable receive */
  309. return 0;
  310. }
  311. int eth_send (volatile void *packet, int length)
  312. {
  313. /* check frame length, etc. */
  314. /* TODO: */
  315. /* switch to bank 0 */
  316. m_nic_bfc (CTL_REG_ECON1, (ENC_ECON1_BSEL1 | ENC_ECON1_BSEL0));
  317. /* set EWRPT */
  318. m_nic_write (CTL_REG_EWRPTL, (ENC_TX_BUF_START & 0xff));
  319. m_nic_write (CTL_REG_EWRPTH, (ENC_TX_BUF_START >> 8));
  320. /* set ETXND */
  321. m_nic_write (CTL_REG_ETXNDL, (length + ENC_TX_BUF_START) & 0xFF);
  322. m_nic_write (CTL_REG_ETXNDH, (length + ENC_TX_BUF_START) >> 8);
  323. /* set ETXST */
  324. m_nic_write (CTL_REG_ETXSTL, ENC_TX_BUF_START & 0xFF);
  325. m_nic_write (CTL_REG_ETXSTH, ENC_TX_BUF_START >> 8);
  326. /* write packet */
  327. m_nic_write_data (length, (unsigned char *) packet);
  328. /* taken from the Linux driver */
  329. /* Verify that the internal transmit logic has not been altered by excessive
  330. collisions. See Errata B4 12 and 14.
  331. */
  332. if (m_nic_read(CTL_REG_EIR) & ENC_EIR_TXERIF) {
  333. m_nic_bfs(CTL_REG_ECON1, ENC_ECON1_TXRST);
  334. m_nic_bfc(CTL_REG_ECON1, ENC_ECON1_TXRST);
  335. }
  336. m_nic_bfc(CTL_REG_EIR, (ENC_EIR_TXERIF | ENC_EIR_TXIF));
  337. /* set ECON1.TXRTS */
  338. m_nic_bfs (CTL_REG_ECON1, ENC_ECON1_TXRTS);
  339. return 0;
  340. }
  341. /*****************************************************************************
  342. * This function resets the receiver only. This function may be called from
  343. * interrupt-context.
  344. */
  345. static void encReceiverReset (void)
  346. {
  347. unsigned char econ1;
  348. econ1 = m_nic_read (CTL_REG_ECON1);
  349. if ((econ1 & ENC_ECON1_RXRST) == 0) {
  350. m_nic_bfs (CTL_REG_ECON1, ENC_ECON1_RXRST);
  351. rxResetCounter = RX_RESET_COUNTER;
  352. }
  353. }
  354. /*****************************************************************************
  355. * receiver reset timer
  356. */
  357. static void encReceiverResetCallback (void)
  358. {
  359. m_nic_bfc (CTL_REG_ECON1, ENC_ECON1_RXRST);
  360. m_nic_bfs (CTL_REG_ECON1, ENC_ECON1_RXEN); /* enable receive */
  361. }
  362. /*-----------------------------------------------------------------------------
  363. * Check for received packets. Call NetReceive for each packet. The return
  364. * value is ignored by the caller.
  365. */
  366. int eth_rx (void)
  367. {
  368. if (rxResetCounter > 0 && --rxResetCounter == 0) {
  369. encReceiverResetCallback ();
  370. }
  371. encPoll ();
  372. return 0;
  373. }
  374. void eth_halt (void)
  375. {
  376. m_nic_bfc (CTL_REG_ECON1, ENC_ECON1_RXEN); /* disable receive */
  377. }
  378. /*****************************************************************************/
  379. static void encPoll (void)
  380. {
  381. unsigned char eir_reg;
  382. volatile unsigned char estat_reg;
  383. unsigned char pkt_cnt;
  384. #ifdef CONFIG_USE_IRQ
  385. /* clear global interrupt enable bit in enc28j60 */
  386. m_nic_bfc (CTL_REG_EIE, ENC_EIE_INTIE);
  387. #endif
  388. estat_reg = m_nic_read (CTL_REG_ESTAT);
  389. eir_reg = m_nic_read (CTL_REG_EIR);
  390. if (eir_reg & ENC_EIR_TXIF) {
  391. /* clear TXIF bit in EIR */
  392. m_nic_bfc (CTL_REG_EIR, ENC_EIR_TXIF);
  393. }
  394. /* We have to use pktcnt and not pktif bit, see errata pt. 6 */
  395. /* move to bank 1 */
  396. m_nic_bfc (CTL_REG_ECON1, ENC_ECON1_BSEL1);
  397. m_nic_bfs (CTL_REG_ECON1, ENC_ECON1_BSEL0);
  398. /* read pktcnt */
  399. pkt_cnt = m_nic_read (CTL_REG_EPKTCNT);
  400. if (pkt_cnt > 0) {
  401. if ((eir_reg & ENC_EIR_PKTIF) == 0) {
  402. /*printf("encPoll: pkt cnt > 0, but pktif not set\n"); */
  403. }
  404. encRx ();
  405. /* clear PKTIF bit in EIR, this should not need to be done but it
  406. seems like we get problems if we do not */
  407. m_nic_bfc (CTL_REG_EIR, ENC_EIR_PKTIF);
  408. }
  409. if (eir_reg & ENC_EIR_RXERIF) {
  410. printf ("encPoll: rx error\n");
  411. m_nic_bfc (CTL_REG_EIR, ENC_EIR_RXERIF);
  412. }
  413. if (eir_reg & ENC_EIR_TXERIF) {
  414. printf ("encPoll: tx error\n");
  415. m_nic_bfc (CTL_REG_EIR, ENC_EIR_TXERIF);
  416. }
  417. #ifdef CONFIG_USE_IRQ
  418. /* set global interrupt enable bit in enc28j60 */
  419. m_nic_bfs (CTL_REG_EIE, ENC_EIE_INTIE);
  420. #endif
  421. }
  422. static void encRx (void)
  423. {
  424. unsigned short pkt_len;
  425. unsigned short copy_len;
  426. unsigned short status;
  427. unsigned char eir_reg;
  428. unsigned char pkt_cnt = 0;
  429. unsigned short rxbuf_rdpt;
  430. /* switch to bank 0 */
  431. m_nic_bfc (CTL_REG_ECON1, (ENC_ECON1_BSEL1 | ENC_ECON1_BSEL0));
  432. m_nic_write (CTL_REG_ERDPTL, next_pointer_lsb);
  433. m_nic_write (CTL_REG_ERDPTH, next_pointer_msb);
  434. do {
  435. m_nic_read_data (6, buffer);
  436. next_pointer_lsb = buffer[0];
  437. next_pointer_msb = buffer[1];
  438. pkt_len = buffer[2];
  439. pkt_len |= (unsigned short) buffer[3] << 8;
  440. status = buffer[4];
  441. status |= (unsigned short) buffer[5] << 8;
  442. if (pkt_len <= ENC_MAX_FRM_LEN)
  443. copy_len = pkt_len;
  444. else
  445. copy_len = 0;
  446. if ((status & (1L << 7)) == 0) /* check Received Ok bit */
  447. copy_len = 0;
  448. /* taken from the Linux driver */
  449. /* check if next pointer is resonable */
  450. if ((((unsigned int)next_pointer_msb << 8) |
  451. (unsigned int)next_pointer_lsb) >= ENC_TX_BUF_START)
  452. copy_len = 0;
  453. if (copy_len > 0) {
  454. m_nic_read_data (copy_len, buffer);
  455. }
  456. /* advance read pointer to next pointer */
  457. m_nic_write (CTL_REG_ERDPTL, next_pointer_lsb);
  458. m_nic_write (CTL_REG_ERDPTH, next_pointer_msb);
  459. /* decrease packet counter */
  460. m_nic_bfs (CTL_REG_ECON2, ENC_ECON2_PKTDEC);
  461. /* taken from the Linux driver */
  462. /* Only odd values should be written to ERXRDPTL,
  463. * see errata B4 pt.13
  464. */
  465. rxbuf_rdpt = (next_pointer_msb << 8 | next_pointer_lsb) - 1;
  466. if ((rxbuf_rdpt < (m_nic_read(CTL_REG_ERXSTH) << 8 |
  467. m_nic_read(CTL_REG_ERXSTL))) || (rxbuf_rdpt >
  468. (m_nic_read(CTL_REG_ERXNDH) << 8 |
  469. m_nic_read(CTL_REG_ERXNDL)))) {
  470. m_nic_write(CTL_REG_ERXRDPTL, m_nic_read(CTL_REG_ERXNDL));
  471. m_nic_write(CTL_REG_ERXRDPTH, m_nic_read(CTL_REG_ERXNDH));
  472. } else {
  473. m_nic_write(CTL_REG_ERXRDPTL, rxbuf_rdpt & 0xFF);
  474. m_nic_write(CTL_REG_ERXRDPTH, rxbuf_rdpt >> 8);
  475. }
  476. /* move to bank 1 */
  477. m_nic_bfc (CTL_REG_ECON1, ENC_ECON1_BSEL1);
  478. m_nic_bfs (CTL_REG_ECON1, ENC_ECON1_BSEL0);
  479. /* read pktcnt */
  480. pkt_cnt = m_nic_read (CTL_REG_EPKTCNT);
  481. /* switch to bank 0 */
  482. m_nic_bfc (CTL_REG_ECON1,
  483. (ENC_ECON1_BSEL1 | ENC_ECON1_BSEL0));
  484. if (copy_len == 0) {
  485. eir_reg = m_nic_read (CTL_REG_EIR);
  486. encReceiverReset ();
  487. printf ("eth_rx: copy_len=0\n");
  488. continue;
  489. }
  490. NetReceive ((unsigned char *) buffer, pkt_len);
  491. eir_reg = m_nic_read (CTL_REG_EIR);
  492. } while (pkt_cnt); /* Use EPKTCNT not EIR.PKTIF flag, see errata pt. 6 */
  493. }
  494. static void encWriteReg (unsigned char regNo, unsigned char data)
  495. {
  496. spi_lock ();
  497. enc_cfg_spi ();
  498. enc_enable ();
  499. spi_write (0x40 | regNo); /* write in regNo */
  500. spi_write (data);
  501. enc_disable ();
  502. enc_enable ();
  503. spi_write (0x1f); /* write reg 0x1f */
  504. enc_disable ();
  505. spi_unlock ();
  506. }
  507. static void encWriteRegRetry (unsigned char regNo, unsigned char data, int c)
  508. {
  509. unsigned char readback;
  510. int i;
  511. spi_lock ();
  512. for (i = 0; i < c; i++) {
  513. enc_cfg_spi ();
  514. enc_enable ();
  515. spi_write (0x40 | regNo); /* write in regNo */
  516. spi_write (data);
  517. enc_disable ();
  518. enc_enable ();
  519. spi_write (0x1f); /* write reg 0x1f */
  520. enc_disable ();
  521. spi_unlock (); /* we must unlock spi first */
  522. readback = encReadReg (regNo);
  523. spi_lock ();
  524. if (readback == data)
  525. break;
  526. }
  527. spi_unlock ();
  528. if (i == c) {
  529. printf ("enc28j60: write reg %d failed\n", regNo);
  530. }
  531. }
  532. static unsigned char encReadReg (unsigned char regNo)
  533. {
  534. unsigned char rxByte;
  535. spi_lock ();
  536. enc_cfg_spi ();
  537. enc_enable ();
  538. spi_write (0x1f); /* read reg 0x1f */
  539. bank = spi_read () & 0x3;
  540. enc_disable ();
  541. enc_enable ();
  542. spi_write (regNo);
  543. rxByte = spi_read ();
  544. /* check if MAC or MII register */
  545. if (((bank == 2) && (regNo <= 0x1a)) ||
  546. ((bank == 3) && (regNo <= 0x05 || regNo == 0x0a))) {
  547. /* ignore first byte and read another byte */
  548. rxByte = spi_read ();
  549. }
  550. enc_disable ();
  551. spi_unlock ();
  552. return rxByte;
  553. }
  554. static void encReadBuff (unsigned short length, unsigned char *pBuff)
  555. {
  556. spi_lock ();
  557. enc_cfg_spi ();
  558. enc_enable ();
  559. spi_write (0x20 | 0x1a); /* read buffer memory */
  560. while (length--) {
  561. if (pBuff != NULL)
  562. *pBuff++ = spi_read ();
  563. else
  564. spi_write (0);
  565. }
  566. enc_disable ();
  567. spi_unlock ();
  568. }
  569. static void encWriteBuff (unsigned short length, unsigned char *pBuff)
  570. {
  571. spi_lock ();
  572. enc_cfg_spi ();
  573. enc_enable ();
  574. spi_write (0x60 | 0x1a); /* write buffer memory */
  575. spi_write (0x00); /* control byte */
  576. while (length--)
  577. spi_write (*pBuff++);
  578. enc_disable ();
  579. spi_unlock ();
  580. }
  581. static void encBitSet (unsigned char regNo, unsigned char data)
  582. {
  583. spi_lock ();
  584. enc_cfg_spi ();
  585. enc_enable ();
  586. spi_write (0x80 | regNo); /* bit field set */
  587. spi_write (data);
  588. enc_disable ();
  589. spi_unlock ();
  590. }
  591. static void encBitClr (unsigned char regNo, unsigned char data)
  592. {
  593. spi_lock ();
  594. enc_cfg_spi ();
  595. enc_enable ();
  596. spi_write (0xA0 | regNo); /* bit field clear */
  597. spi_write (data);
  598. enc_disable ();
  599. spi_unlock ();
  600. }
  601. static void encReset (void)
  602. {
  603. spi_lock ();
  604. enc_cfg_spi ();
  605. enc_enable ();
  606. spi_write (0xff); /* soft reset */
  607. enc_disable ();
  608. spi_unlock ();
  609. /* sleep 1 ms. See errata pt. 2 */
  610. udelay (1000);
  611. }
  612. static void encInit (unsigned char *pEthAddr)
  613. {
  614. unsigned short phid1 = 0;
  615. unsigned short phid2 = 0;
  616. /* switch to bank 0 */
  617. m_nic_bfc (CTL_REG_ECON1, (ENC_ECON1_BSEL1 | ENC_ECON1_BSEL0));
  618. /*
  619. * Setup the buffer space. The reset values are valid for the
  620. * other pointers.
  621. */
  622. /* We shall not write to ERXST, see errata pt. 5. Instead we
  623. have to make sure that ENC_RX_BUS_START is 0. */
  624. m_nic_write_retry (CTL_REG_ERXSTL, (ENC_RX_BUF_START & 0xFF), 1);
  625. m_nic_write_retry (CTL_REG_ERXSTH, (ENC_RX_BUF_START >> 8), 1);
  626. /* taken from the Linux driver */
  627. m_nic_write_retry (CTL_REG_ERXNDL, (ENC_RX_BUF_END & 0xFF), 1);
  628. m_nic_write_retry (CTL_REG_ERXNDH, (ENC_RX_BUF_END >> 8), 1);
  629. m_nic_write_retry (CTL_REG_ERDPTL, (ENC_RX_BUF_START & 0xFF), 1);
  630. m_nic_write_retry (CTL_REG_ERDPTH, (ENC_RX_BUF_START >> 8), 1);
  631. next_pointer_lsb = (ENC_RX_BUF_START & 0xFF);
  632. next_pointer_msb = (ENC_RX_BUF_START >> 8);
  633. /* verify identification */
  634. phid1 = phyRead (PHY_REG_PHID1);
  635. phid2 = phyRead (PHY_REG_PHID2);
  636. if (phid1 != ENC_PHID1_VALUE
  637. || (phid2 & ENC_PHID2_MASK) != ENC_PHID2_VALUE) {
  638. printf ("ERROR: failed to identify controller\n");
  639. printf ("phid1 = %x, phid2 = %x\n",
  640. phid1, (phid2 & ENC_PHID2_MASK));
  641. printf ("should be phid1 = %x, phid2 = %x\n",
  642. ENC_PHID1_VALUE, ENC_PHID2_VALUE);
  643. }
  644. /*
  645. * --- MAC Initialization ---
  646. */
  647. /* Pull MAC out of Reset */
  648. /* switch to bank 2 */
  649. m_nic_bfc (CTL_REG_ECON1, ENC_ECON1_BSEL0);
  650. m_nic_bfs (CTL_REG_ECON1, ENC_ECON1_BSEL1);
  651. /* enable MAC to receive frames */
  652. /* added some bits from the Linux driver */
  653. m_nic_write_retry (CTL_REG_MACON1
  654. ,(ENC_MACON1_MARXEN | ENC_MACON1_TXPAUS | ENC_MACON1_RXPAUS)
  655. ,10);
  656. /* configure pad, tx-crc and duplex */
  657. /* added a bit from the Linux driver */
  658. m_nic_write_retry (CTL_REG_MACON3
  659. ,(ENC_MACON3_PADCFG0 | ENC_MACON3_TXCRCEN | ENC_MACON3_FRMLNEN)
  660. ,10);
  661. /* added 4 new lines from the Linux driver */
  662. /* Allow infinite deferals if the medium is continously busy */
  663. m_nic_write_retry(CTL_REG_MACON4, (1<<6) /*ENC_MACON4_DEFER*/, 10);
  664. /* Late collisions occur beyond 63 bytes */
  665. m_nic_write_retry(CTL_REG_MACLCON2, 63, 10);
  666. /* Set (low byte) Non-Back-to_Back Inter-Packet Gap. Recommended 0x12 */
  667. m_nic_write_retry(CTL_REG_MAIPGL, 0x12, 10);
  668. /*
  669. * Set (high byte) Non-Back-to_Back Inter-Packet Gap. Recommended
  670. * 0x0c for half-duplex. Nothing for full-duplex
  671. */
  672. m_nic_write_retry(CTL_REG_MAIPGH, 0x0C, 10);
  673. /* set maximum frame length */
  674. m_nic_write_retry (CTL_REG_MAMXFLL, (ENC_MAX_FRM_LEN & 0xff), 10);
  675. m_nic_write_retry (CTL_REG_MAMXFLH, (ENC_MAX_FRM_LEN >> 8), 10);
  676. /*
  677. * Set MAC back-to-back inter-packet gap. Recommended 0x12 for half duplex
  678. * and 0x15 for full duplex.
  679. */
  680. m_nic_write_retry (CTL_REG_MABBIPG, 0x12, 10);
  681. /* set MAC address */
  682. /* switch to bank 3 */
  683. m_nic_bfs (CTL_REG_ECON1, (ENC_ECON1_BSEL0 | ENC_ECON1_BSEL1));
  684. m_nic_write_retry (CTL_REG_MAADR0, pEthAddr[5], 1);
  685. m_nic_write_retry (CTL_REG_MAADR1, pEthAddr[4], 1);
  686. m_nic_write_retry (CTL_REG_MAADR2, pEthAddr[3], 1);
  687. m_nic_write_retry (CTL_REG_MAADR3, pEthAddr[2], 1);
  688. m_nic_write_retry (CTL_REG_MAADR4, pEthAddr[1], 1);
  689. m_nic_write_retry (CTL_REG_MAADR5, pEthAddr[0], 1);
  690. /*
  691. * PHY Initialization taken from the Linux driver
  692. */
  693. /* Prevent automatic loopback of data beeing transmitted by setting
  694. ENC_PHCON2_HDLDIS */
  695. phyWrite(PHY_REG_PHCON2, (1<<8));
  696. /* LEDs configuration
  697. * LEDA: LACFG = 0100 -> display link status
  698. * LEDB: LBCFG = 0111 -> display TX & RX activity
  699. * STRCH = 1 -> LED pulses
  700. */
  701. phyWrite(PHY_REG_PHLCON, 0x0472);
  702. /* Reset PDPXMD-bit => half duplex */
  703. phyWrite(PHY_REG_PHCON1, 0);
  704. /*
  705. * Receive settings
  706. */
  707. #ifdef CONFIG_USE_IRQ
  708. /* enable interrupts */
  709. m_nic_bfs (CTL_REG_EIE, ENC_EIE_PKTIE);
  710. m_nic_bfs (CTL_REG_EIE, ENC_EIE_TXIE);
  711. m_nic_bfs (CTL_REG_EIE, ENC_EIE_RXERIE);
  712. m_nic_bfs (CTL_REG_EIE, ENC_EIE_TXERIE);
  713. m_nic_bfs (CTL_REG_EIE, ENC_EIE_INTIE);
  714. #endif
  715. }
  716. /*****************************************************************************
  717. *
  718. * Description:
  719. * Read PHY registers.
  720. *
  721. * NOTE! This function will change to Bank 2.
  722. *
  723. * Params:
  724. * [in] addr address of the register to read
  725. *
  726. * Returns:
  727. * The value in the register
  728. */
  729. static unsigned short phyRead (unsigned char addr)
  730. {
  731. unsigned short ret = 0;
  732. /* move to bank 2 */
  733. m_nic_bfc (CTL_REG_ECON1, ENC_ECON1_BSEL0);
  734. m_nic_bfs (CTL_REG_ECON1, ENC_ECON1_BSEL1);
  735. /* write address to MIREGADR */
  736. m_nic_write (CTL_REG_MIREGADR, addr);
  737. /* set MICMD.MIIRD */
  738. m_nic_write (CTL_REG_MICMD, ENC_MICMD_MIIRD);
  739. /* taken from the Linux driver */
  740. /* move to bank 3 */
  741. m_nic_bfs(CTL_REG_ECON1, ENC_ECON1_BSEL0);
  742. m_nic_bfs(CTL_REG_ECON1, ENC_ECON1_BSEL1);
  743. /* poll MISTAT.BUSY bit until operation is complete */
  744. while ((m_nic_read (CTL_REG_MISTAT) & ENC_MISTAT_BUSY) != 0) {
  745. static int cnt = 0;
  746. if (cnt++ >= 1000) {
  747. /* GJ - this seems extremely dangerous! */
  748. /* printf("#"); */
  749. cnt = 0;
  750. }
  751. }
  752. /* taken from the Linux driver */
  753. /* move to bank 2 */
  754. m_nic_bfc(CTL_REG_ECON1, ENC_ECON1_BSEL0);
  755. m_nic_bfs(CTL_REG_ECON1, ENC_ECON1_BSEL1);
  756. /* clear MICMD.MIIRD */
  757. m_nic_write (CTL_REG_MICMD, 0);
  758. ret = (m_nic_read (CTL_REG_MIRDH) << 8);
  759. ret |= (m_nic_read (CTL_REG_MIRDL) & 0xFF);
  760. return ret;
  761. }
  762. /*****************************************************************************
  763. *
  764. * Taken from the Linux driver.
  765. * Description:
  766. * Write PHY registers.
  767. *
  768. * NOTE! This function will change to Bank 3.
  769. *
  770. * Params:
  771. * [in] addr address of the register to write to
  772. * [in] data to be written
  773. *
  774. * Returns:
  775. * None
  776. */
  777. static void phyWrite(unsigned char addr, unsigned short data)
  778. {
  779. /* move to bank 2 */
  780. m_nic_bfc(CTL_REG_ECON1, ENC_ECON1_BSEL0);
  781. m_nic_bfs(CTL_REG_ECON1, ENC_ECON1_BSEL1);
  782. /* write address to MIREGADR */
  783. m_nic_write(CTL_REG_MIREGADR, addr);
  784. m_nic_write(CTL_REG_MIWRL, data & 0xff);
  785. m_nic_write(CTL_REG_MIWRH, data >> 8);
  786. /* move to bank 3 */
  787. m_nic_bfs(CTL_REG_ECON1, ENC_ECON1_BSEL0);
  788. m_nic_bfs(CTL_REG_ECON1, ENC_ECON1_BSEL1);
  789. /* poll MISTAT.BUSY bit until operation is complete */
  790. while((m_nic_read(CTL_REG_MISTAT) & ENC_MISTAT_BUSY) != 0) {
  791. static int cnt = 0;
  792. if(cnt++ >= 1000) {
  793. cnt = 0;
  794. }
  795. }
  796. }