config.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Copyright (C) 2003-2005 by egnite Software GmbH
  3. * Copyright (C) 2010 by egnite GmbH
  4. *
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the name of the copyright holders nor the names of
  17. * contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  24. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  26. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  27. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  28. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  30. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. *
  33. * For additional information see http://www.ethernut.de/
  34. */
  35. /*
  36. * $Id$
  37. */
  38. #include <avr/io.h>
  39. #include "config.h"
  40. #include "debug.h"
  41. CONFNET confnet = {
  42. 0,
  43. { 'E', 'T', 'H', 'E', 'R', 'N', 'U', 'T', 0 },
  44. { 0x00, 0x06, 0x98, 0x00, 0x00, 0x00 },
  45. 0, 0, 0, 0
  46. };
  47. CONFBOOT confboot;
  48. #ifdef EE_CONFNET
  49. static unsigned char ConfigGet(unsigned int loc)
  50. {
  51. while (EECR & 0x02);
  52. EEAR = loc;
  53. EECR |= 0x01;
  54. return EEDR;
  55. }
  56. static void ConfigRead(unsigned int loc, void *buf, size_t n)
  57. {
  58. unsigned char *cp = buf;
  59. while (n--) {
  60. *cp++ = ConfigGet(loc);
  61. loc++;
  62. }
  63. }
  64. #endif
  65. void BootConfigRead(void)
  66. {
  67. #ifdef EE_CONFNET
  68. DEBUG("CONFNET ");
  69. if (ConfigGet(EE_CONFNET) == sizeof(CONFNET)) {
  70. DEBUG("OK\n");
  71. ConfigRead(EE_CONFNET, &confnet, sizeof(CONFNET));
  72. #ifdef EE_CONFBOOT
  73. DEBUG("CONFBOOT ");
  74. if (ConfigGet(EE_CONFBOOT) == sizeof(CONFBOOT)) {
  75. DEBUG(" OK\n");
  76. ConfigRead(EE_CONFBOOT, &confboot, sizeof(CONFBOOT));
  77. }
  78. else {
  79. DEBUG("No\n");
  80. }
  81. #endif
  82. }
  83. else {
  84. DEBUG("No\n");
  85. }
  86. #endif
  87. }