nicnatsemi.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * This file is part of the flashrom project.
  3. *
  4. * Copyright (C) 2010 Andrew Morgan <ziltro@ziltro.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #if defined(__i386__) || defined(__x86_64__)
  21. #include <stdlib.h>
  22. #include "flash.h"
  23. #include "programmer.h"
  24. #define PCI_VENDOR_ID_NATSEMI 0x100b
  25. #define BOOT_ROM_ADDR 0x50
  26. #define BOOT_ROM_DATA 0x54
  27. const struct pcidev_status nics_natsemi[] = {
  28. {0x100b, 0x0020, NT, "National Semiconductor", "DP83815/DP83816"},
  29. {0x100b, 0x0022, NT, "National Semiconductor", "DP83820"},
  30. {},
  31. };
  32. static void nicnatsemi_chip_writeb(const struct flashctx *flash, uint8_t val,
  33. chipaddr addr);
  34. static uint8_t nicnatsemi_chip_readb(const struct flashctx *flash,
  35. const chipaddr addr);
  36. static const struct par_programmer par_programmer_nicnatsemi = {
  37. .chip_readb = nicnatsemi_chip_readb,
  38. .chip_readw = fallback_chip_readw,
  39. .chip_readl = fallback_chip_readl,
  40. .chip_readn = fallback_chip_readn,
  41. .chip_writeb = nicnatsemi_chip_writeb,
  42. .chip_writew = fallback_chip_writew,
  43. .chip_writel = fallback_chip_writel,
  44. .chip_writen = fallback_chip_writen,
  45. };
  46. static int nicnatsemi_shutdown(void *data)
  47. {
  48. pci_cleanup(pacc);
  49. release_io_perms();
  50. return 0;
  51. }
  52. int nicnatsemi_init(void)
  53. {
  54. get_io_perms();
  55. io_base_addr = pcidev_init(PCI_BASE_ADDRESS_0, nics_natsemi);
  56. if (register_shutdown(nicnatsemi_shutdown, NULL))
  57. return 1;
  58. /* The datasheet shows address lines MA0-MA16 in one place and MA0-MA15
  59. * in another. My NIC has MA16 connected to A16 on the boot ROM socket
  60. * so I'm assuming it is accessible. If not then next line wants to be
  61. * max_rom_decode.parallel = 65536; and the mask in the read/write
  62. * functions below wants to be 0x0000FFFF.
  63. */
  64. max_rom_decode.parallel = 131072;
  65. register_par_programmer(&par_programmer_nicnatsemi, BUS_PARALLEL);
  66. return 0;
  67. }
  68. void nicnatsemi_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
  69. {
  70. OUTL((uint32_t)addr & 0x0001FFFF, io_base_addr + BOOT_ROM_ADDR);
  71. /*
  72. * The datasheet requires 32 bit accesses to this register, but it seems
  73. * that requirement might only apply if the register is memory mapped.
  74. * Bits 8-31 of this register are apparently don't care, and if this
  75. * register is I/O port mapped, 8 bit accesses to the lowest byte of the
  76. * register seem to work fine. Due to that, we ignore the advice in the
  77. * data sheet.
  78. */
  79. OUTB(val, io_base_addr + BOOT_ROM_DATA);
  80. }
  81. uint8_t nicnatsemi_chip_readb(const struct flashctx *flash, const chipaddr addr)
  82. {
  83. OUTL(((uint32_t)addr & 0x0001FFFF), io_base_addr + BOOT_ROM_ADDR);
  84. /*
  85. * The datasheet requires 32 bit accesses to this register, but it seems
  86. * that requirement might only apply if the register is memory mapped.
  87. * Bits 8-31 of this register are apparently don't care, and if this
  88. * register is I/O port mapped, 8 bit accesses to the lowest byte of the
  89. * register seem to work fine. Due to that, we ignore the advice in the
  90. * data sheet.
  91. */
  92. return INB(io_base_addr + BOOT_ROM_DATA);
  93. }
  94. #else
  95. #error PCI port I/O access is not supported on this architecture yet.
  96. #endif