eth.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. /*
  2. * (C) Copyright 2001-2010
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <command.h>
  25. #include <net.h>
  26. #include <miiphy.h>
  27. #include <phy.h>
  28. void eth_parse_enetaddr(const char *addr, uchar *enetaddr)
  29. {
  30. char *end;
  31. int i;
  32. for (i = 0; i < 6; ++i) {
  33. enetaddr[i] = addr ? simple_strtoul(addr, &end, 16) : 0;
  34. if (addr)
  35. addr = (*end) ? end + 1 : end;
  36. }
  37. }
  38. int eth_getenv_enetaddr(char *name, uchar *enetaddr)
  39. {
  40. eth_parse_enetaddr(getenv(name), enetaddr);
  41. return is_valid_ether_addr(enetaddr);
  42. }
  43. int eth_setenv_enetaddr(char *name, const uchar *enetaddr)
  44. {
  45. char buf[20];
  46. sprintf(buf, "%pM", enetaddr);
  47. return setenv(name, buf);
  48. }
  49. int eth_getenv_enetaddr_by_index(int index, uchar *enetaddr)
  50. {
  51. char enetvar[32];
  52. sprintf(enetvar, index ? "eth%daddr" : "ethaddr", index);
  53. return eth_getenv_enetaddr(enetvar, enetaddr);
  54. }
  55. #ifdef CONFIG_NET_MULTI
  56. static int eth_mac_skip(int index)
  57. {
  58. char enetvar[15];
  59. char *skip_state;
  60. sprintf(enetvar, index ? "eth%dmacskip" : "ethmacskip", index);
  61. return ((skip_state = getenv(enetvar)) != NULL);
  62. }
  63. /*
  64. * CPU and board-specific Ethernet initializations. Aliased function
  65. * signals caller to move on
  66. */
  67. static int __def_eth_init(bd_t *bis)
  68. {
  69. return -1;
  70. }
  71. int cpu_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init")));
  72. int board_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init")));
  73. extern int mv6436x_eth_initialize(bd_t *);
  74. extern int mv6446x_eth_initialize(bd_t *);
  75. #ifdef CONFIG_API
  76. extern void (*push_packet)(volatile void *, int);
  77. static struct {
  78. uchar data[PKTSIZE];
  79. int length;
  80. } eth_rcv_bufs[PKTBUFSRX];
  81. static unsigned int eth_rcv_current = 0, eth_rcv_last = 0;
  82. #endif
  83. static struct eth_device *eth_devices, *eth_current;
  84. struct eth_device *eth_get_dev(void)
  85. {
  86. return eth_current;
  87. }
  88. struct eth_device *eth_get_dev_by_name(const char *devname)
  89. {
  90. struct eth_device *dev, *target_dev;
  91. if (!eth_devices)
  92. return NULL;
  93. dev = eth_devices;
  94. target_dev = NULL;
  95. do {
  96. if (strcmp(devname, dev->name) == 0) {
  97. target_dev = dev;
  98. break;
  99. }
  100. dev = dev->next;
  101. } while (dev != eth_devices);
  102. return target_dev;
  103. }
  104. struct eth_device *eth_get_dev_by_index(int index)
  105. {
  106. struct eth_device *dev, *target_dev;
  107. int idx = 0;
  108. if (!eth_devices)
  109. return NULL;
  110. dev = eth_devices;
  111. target_dev = NULL;
  112. do {
  113. if (idx == index) {
  114. target_dev = dev;
  115. break;
  116. }
  117. dev = dev->next;
  118. idx++;
  119. } while (dev != eth_devices);
  120. return target_dev;
  121. }
  122. int eth_get_dev_index (void)
  123. {
  124. struct eth_device *dev;
  125. int num = 0;
  126. if (!eth_devices) {
  127. return (-1);
  128. }
  129. for (dev = eth_devices; dev; dev = dev->next) {
  130. if (dev == eth_current)
  131. break;
  132. ++num;
  133. }
  134. if (dev) {
  135. return (num);
  136. }
  137. return (0);
  138. }
  139. static void eth_current_changed(void)
  140. {
  141. #ifdef CONFIG_NET_MULTI
  142. {
  143. char *act = getenv("ethact");
  144. /* update current ethernet name */
  145. if (eth_current)
  146. {
  147. if (act == NULL || strcmp(act, eth_current->name) != 0)
  148. setenv("ethact", eth_current->name);
  149. }
  150. /*
  151. * remove the variable completely if there is no active
  152. * interface
  153. */
  154. else if (act != NULL)
  155. setenv("ethact", NULL);
  156. }
  157. #endif
  158. }
  159. int eth_register(struct eth_device *dev)
  160. {
  161. struct eth_device *d;
  162. if (!eth_devices) {
  163. eth_current = eth_devices = dev;
  164. eth_current_changed();
  165. } else {
  166. for (d=eth_devices; d->next!=eth_devices; d=d->next)
  167. ;
  168. d->next = dev;
  169. }
  170. dev->state = ETH_STATE_INIT;
  171. dev->next = eth_devices;
  172. return 0;
  173. }
  174. int eth_initialize(bd_t *bis)
  175. {
  176. unsigned char env_enetaddr[6];
  177. int eth_number = 0;
  178. eth_devices = NULL;
  179. eth_current = NULL;
  180. show_boot_progress (64);
  181. #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
  182. miiphy_init();
  183. #endif
  184. #ifdef CONFIG_PHYLIB
  185. phy_init();
  186. #endif
  187. /*
  188. * If board-specific initialization exists, call it.
  189. * If not, call a CPU-specific one
  190. */
  191. if (board_eth_init != __def_eth_init) {
  192. if (board_eth_init(bis) < 0)
  193. printf("Board Net Initialization Failed\n");
  194. } else if (cpu_eth_init != __def_eth_init) {
  195. if (cpu_eth_init(bis) < 0)
  196. printf("CPU Net Initialization Failed\n");
  197. } else
  198. printf("Net Initialization Skipped\n");
  199. #if defined(CONFIG_DB64360) || defined(CONFIG_CPCI750)
  200. mv6436x_eth_initialize(bis);
  201. #endif
  202. #if defined(CONFIG_DB64460) || defined(CONFIG_P3Mx)
  203. mv6446x_eth_initialize(bis);
  204. #endif
  205. if (!eth_devices) {
  206. puts ("No ethernet found.\n");
  207. show_boot_progress (-64);
  208. } else {
  209. struct eth_device *dev = eth_devices;
  210. char *ethprime = getenv ("ethprime");
  211. show_boot_progress (65);
  212. do {
  213. if (eth_number)
  214. puts (", ");
  215. printf("%s", dev->name);
  216. if (ethprime && strcmp (dev->name, ethprime) == 0) {
  217. eth_current = dev;
  218. puts (" [PRIME]");
  219. }
  220. if (strchr(dev->name, ' '))
  221. puts("\nWarning: eth device name has a space!\n");
  222. eth_getenv_enetaddr_by_index(eth_number, env_enetaddr);
  223. if (memcmp(env_enetaddr, "\0\0\0\0\0\0", 6)) {
  224. if (memcmp(dev->enetaddr, "\0\0\0\0\0\0", 6) &&
  225. memcmp(dev->enetaddr, env_enetaddr, 6))
  226. {
  227. printf ("\nWarning: %s MAC addresses don't match:\n",
  228. dev->name);
  229. printf ("Address in SROM is %pM\n",
  230. dev->enetaddr);
  231. printf ("Address in environment is %pM\n",
  232. env_enetaddr);
  233. }
  234. memcpy(dev->enetaddr, env_enetaddr, 6);
  235. }
  236. if (dev->write_hwaddr &&
  237. !eth_mac_skip(eth_number) &&
  238. is_valid_ether_addr(dev->enetaddr)) {
  239. dev->write_hwaddr(dev);
  240. }
  241. eth_number++;
  242. dev = dev->next;
  243. } while(dev != eth_devices);
  244. eth_current_changed();
  245. putc ('\n');
  246. }
  247. return eth_number;
  248. }
  249. #ifdef CONFIG_MCAST_TFTP
  250. /* Multicast.
  251. * mcast_addr: multicast ipaddr from which multicast Mac is made
  252. * join: 1=join, 0=leave.
  253. */
  254. int eth_mcast_join( IPaddr_t mcast_ip, u8 join)
  255. {
  256. u8 mcast_mac[6];
  257. if (!eth_current || !eth_current->mcast)
  258. return -1;
  259. mcast_mac[5] = htonl(mcast_ip) & 0xff;
  260. mcast_mac[4] = (htonl(mcast_ip)>>8) & 0xff;
  261. mcast_mac[3] = (htonl(mcast_ip)>>16) & 0x7f;
  262. mcast_mac[2] = 0x5e;
  263. mcast_mac[1] = 0x0;
  264. mcast_mac[0] = 0x1;
  265. return eth_current->mcast(eth_current, mcast_mac, join);
  266. }
  267. /* the 'way' for ethernet-CRC-32. Spliced in from Linux lib/crc32.c
  268. * and this is the ethernet-crc method needed for TSEC -- and perhaps
  269. * some other adapter -- hash tables
  270. */
  271. #define CRCPOLY_LE 0xedb88320
  272. u32 ether_crc (size_t len, unsigned char const *p)
  273. {
  274. int i;
  275. u32 crc;
  276. crc = ~0;
  277. while (len--) {
  278. crc ^= *p++;
  279. for (i = 0; i < 8; i++)
  280. crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
  281. }
  282. /* an reverse the bits, cuz of way they arrive -- last-first */
  283. crc = (crc >> 16) | (crc << 16);
  284. crc = (crc >> 8 & 0x00ff00ff) | (crc << 8 & 0xff00ff00);
  285. crc = (crc >> 4 & 0x0f0f0f0f) | (crc << 4 & 0xf0f0f0f0);
  286. crc = (crc >> 2 & 0x33333333) | (crc << 2 & 0xcccccccc);
  287. crc = (crc >> 1 & 0x55555555) | (crc << 1 & 0xaaaaaaaa);
  288. return crc;
  289. }
  290. #endif
  291. int eth_init(bd_t *bis)
  292. {
  293. int eth_number;
  294. struct eth_device *old_current, *dev;
  295. if (!eth_current) {
  296. puts ("No ethernet found.\n");
  297. return -1;
  298. }
  299. /* Sync environment with network devices */
  300. eth_number = 0;
  301. dev = eth_devices;
  302. do {
  303. uchar env_enetaddr[6];
  304. if (eth_getenv_enetaddr_by_index(eth_number, env_enetaddr))
  305. memcpy(dev->enetaddr, env_enetaddr, 6);
  306. ++eth_number;
  307. dev = dev->next;
  308. } while (dev != eth_devices);
  309. old_current = eth_current;
  310. do {
  311. debug("Trying %s\n", eth_current->name);
  312. if (eth_current->init(eth_current,bis) >= 0) {
  313. eth_current->state = ETH_STATE_ACTIVE;
  314. return 0;
  315. }
  316. debug("FAIL\n");
  317. eth_try_another(0);
  318. } while (old_current != eth_current);
  319. return -1;
  320. }
  321. void eth_halt(void)
  322. {
  323. if (!eth_current)
  324. return;
  325. eth_current->halt(eth_current);
  326. eth_current->state = ETH_STATE_PASSIVE;
  327. }
  328. int eth_send(volatile void *packet, int length)
  329. {
  330. if (!eth_current)
  331. return -1;
  332. return eth_current->send(eth_current, packet, length);
  333. }
  334. int eth_rx(void)
  335. {
  336. if (!eth_current)
  337. return -1;
  338. return eth_current->recv(eth_current);
  339. }
  340. #ifdef CONFIG_API
  341. static void eth_save_packet(volatile void *packet, int length)
  342. {
  343. volatile char *p = packet;
  344. int i;
  345. if ((eth_rcv_last+1) % PKTBUFSRX == eth_rcv_current)
  346. return;
  347. if (PKTSIZE < length)
  348. return;
  349. for (i = 0; i < length; i++)
  350. eth_rcv_bufs[eth_rcv_last].data[i] = p[i];
  351. eth_rcv_bufs[eth_rcv_last].length = length;
  352. eth_rcv_last = (eth_rcv_last + 1) % PKTBUFSRX;
  353. }
  354. int eth_receive(volatile void *packet, int length)
  355. {
  356. volatile char *p = packet;
  357. void *pp = push_packet;
  358. int i;
  359. if (eth_rcv_current == eth_rcv_last) {
  360. push_packet = eth_save_packet;
  361. eth_rx();
  362. push_packet = pp;
  363. if (eth_rcv_current == eth_rcv_last)
  364. return -1;
  365. }
  366. if (length < eth_rcv_bufs[eth_rcv_current].length)
  367. return -1;
  368. length = eth_rcv_bufs[eth_rcv_current].length;
  369. for (i = 0; i < length; i++)
  370. p[i] = eth_rcv_bufs[eth_rcv_current].data[i];
  371. eth_rcv_current = (eth_rcv_current + 1) % PKTBUFSRX;
  372. return length;
  373. }
  374. #endif /* CONFIG_API */
  375. void eth_try_another(int first_restart)
  376. {
  377. static struct eth_device *first_failed = NULL;
  378. char *ethrotate;
  379. /*
  380. * Do not rotate between network interfaces when
  381. * 'ethrotate' variable is set to 'no'.
  382. */
  383. if (((ethrotate = getenv ("ethrotate")) != NULL) &&
  384. (strcmp(ethrotate, "no") == 0))
  385. return;
  386. if (!eth_current)
  387. return;
  388. if (first_restart) {
  389. first_failed = eth_current;
  390. }
  391. eth_current = eth_current->next;
  392. eth_current_changed();
  393. if (first_failed == eth_current) {
  394. NetRestartWrap = 1;
  395. }
  396. }
  397. void eth_set_current(void)
  398. {
  399. static char *act = NULL;
  400. static int env_changed_id = 0;
  401. struct eth_device* old_current;
  402. int env_id;
  403. if (!eth_current) /* XXX no current */
  404. return;
  405. env_id = get_env_id();
  406. if ((act == NULL) || (env_changed_id != env_id)) {
  407. act = getenv("ethact");
  408. env_changed_id = env_id;
  409. }
  410. if (act != NULL) {
  411. old_current = eth_current;
  412. do {
  413. if (strcmp(eth_current->name, act) == 0)
  414. return;
  415. eth_current = eth_current->next;
  416. } while (old_current != eth_current);
  417. }
  418. eth_current_changed();
  419. }
  420. char *eth_get_name (void)
  421. {
  422. return (eth_current ? eth_current->name : "unknown");
  423. }
  424. #else /* !CONFIG_NET_MULTI */
  425. #warning Ethernet driver is deprecated. Please update to use CONFIG_NET_MULTI
  426. extern int mcf52x2_miiphy_initialize(bd_t *bis);
  427. extern int ns7520_miiphy_initialize(bd_t *bis);
  428. int eth_initialize(bd_t *bis)
  429. {
  430. #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
  431. miiphy_init();
  432. #endif
  433. #if defined(CONFIG_MCF52x2)
  434. mcf52x2_miiphy_initialize(bis);
  435. #endif
  436. #if defined(CONFIG_DRIVER_NS7520_ETHERNET)
  437. ns7520_miiphy_initialize(bis);
  438. #endif
  439. return 0;
  440. }
  441. #endif