api_net.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * (C) Copyright 2007 Semihalf
  3. *
  4. * Written by: Rafal Jaworowski <raj@semihalf.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. *
  24. */
  25. #include <config.h>
  26. #include <common.h>
  27. #include <net.h>
  28. #include <linux/types.h>
  29. #include <api_public.h>
  30. DECLARE_GLOBAL_DATA_PTR;
  31. #define DEBUG
  32. #undef DEBUG
  33. #ifdef DEBUG
  34. #define debugf(fmt, args...) do { printf("%s(): ", __func__); printf(fmt, ##args); } while (0)
  35. #else
  36. #define debugf(fmt, args...)
  37. #endif
  38. #define errf(fmt, args...) do { printf("ERROR @ %s(): ", __func__); printf(fmt, ##args); } while (0)
  39. static int dev_valid_net(void *cookie)
  40. {
  41. return ((void *)eth_get_dev() == cookie) ? 1 : 0;
  42. }
  43. int dev_open_net(void *cookie)
  44. {
  45. if (!dev_valid_net(cookie))
  46. return API_ENODEV;
  47. if (eth_init(gd->bd) < 0)
  48. return API_EIO;
  49. return 0;
  50. }
  51. int dev_close_net(void *cookie)
  52. {
  53. if (!dev_valid_net(cookie))
  54. return API_ENODEV;
  55. eth_halt();
  56. return 0;
  57. }
  58. /*
  59. * There can only be one active eth interface at a time - use what is
  60. * currently set to eth_current
  61. */
  62. int dev_enum_net(struct device_info *di)
  63. {
  64. struct eth_device *eth_current = eth_get_dev();
  65. di->type = DEV_TYP_NET;
  66. di->cookie = (void *)eth_current;
  67. if (di->cookie == NULL)
  68. return 0;
  69. memcpy(di->di_net.hwaddr, eth_current->enetaddr, 6);
  70. debugf("device found, returning cookie 0x%08x\n",
  71. (u_int32_t)di->cookie);
  72. return 1;
  73. }
  74. int dev_write_net(void *cookie, void *buf, int len)
  75. {
  76. /* XXX verify that cookie points to a valid net device??? */
  77. return eth_send(buf, len);
  78. }
  79. int dev_read_net(void *cookie, void *buf, int len)
  80. {
  81. /* XXX verify that cookie points to a valid net device??? */
  82. return eth_receive(buf, len);
  83. }