nicintel.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * This file is part of the flashrom project.
  3. *
  4. * Copyright (C) 2011 Carl-Daniel Hailfinger
  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; version 2 of the License.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. /* Datasheet: http://download.intel.com/design/network/datashts/82559_Fast_Ethernet_Multifunction_PCI_Cardbus_Controller_Datasheet.pdf */
  20. #include <stdlib.h>
  21. #include "flash.h"
  22. #include "programmer.h"
  23. uint8_t *nicintel_bar;
  24. uint8_t *nicintel_control_bar;
  25. const struct pcidev_status nics_intel[] = {
  26. {PCI_VENDOR_ID_INTEL, 0x1209, NT, "Intel", "8255xER/82551IT Fast Ethernet Controller"},
  27. {PCI_VENDOR_ID_INTEL, 0x1229, OK, "Intel", "82557/8/9/0/1 Ethernet Pro 100"},
  28. {},
  29. };
  30. /* Arbitrary limit, taken from the datasheet I just had lying around.
  31. * 128 kByte on the 82559 device. Or not. Depends on whom you ask.
  32. */
  33. #define NICINTEL_MEMMAP_SIZE (128 * 1024)
  34. #define NICINTEL_MEMMAP_MASK (NICINTEL_MEMMAP_SIZE - 1)
  35. #define NICINTEL_CONTROL_MEMMAP_SIZE 0x10
  36. #define CSR_FCR 0x0c
  37. static void nicintel_chip_writeb(const struct flashctx *flash, uint8_t val,
  38. chipaddr addr);
  39. static uint8_t nicintel_chip_readb(const struct flashctx *flash,
  40. const chipaddr addr);
  41. static const struct par_programmer par_programmer_nicintel = {
  42. .chip_readb = nicintel_chip_readb,
  43. .chip_readw = fallback_chip_readw,
  44. .chip_readl = fallback_chip_readl,
  45. .chip_readn = fallback_chip_readn,
  46. .chip_writeb = nicintel_chip_writeb,
  47. .chip_writew = fallback_chip_writew,
  48. .chip_writel = fallback_chip_writel,
  49. .chip_writen = fallback_chip_writen,
  50. };
  51. static int nicintel_shutdown(void *data)
  52. {
  53. physunmap(nicintel_control_bar, NICINTEL_CONTROL_MEMMAP_SIZE);
  54. physunmap(nicintel_bar, NICINTEL_MEMMAP_SIZE);
  55. pci_cleanup(pacc);
  56. release_io_perms();
  57. return 0;
  58. }
  59. int nicintel_init(void)
  60. {
  61. uintptr_t addr;
  62. /* Needed only for PCI accesses on some platforms.
  63. * FIXME: Refactor that into get_mem_perms/get_io_perms/get_pci_perms?
  64. */
  65. get_io_perms();
  66. /* No need to check for errors, pcidev_init() will not return in case
  67. * of errors.
  68. * FIXME: BAR2 is not available if the device uses the CardBus function.
  69. */
  70. addr = pcidev_init(PCI_BASE_ADDRESS_2, nics_intel);
  71. nicintel_bar = physmap("Intel NIC flash", addr, NICINTEL_MEMMAP_SIZE);
  72. if (nicintel_bar == ERROR_PTR)
  73. goto error_out_unmap;
  74. /* FIXME: Using pcidev_dev _will_ cause pretty explosions in the future. */
  75. addr = pcidev_validate(pcidev_dev, PCI_BASE_ADDRESS_0, nics_intel);
  76. /* FIXME: This is not an aligned mapping. Use 4k? */
  77. nicintel_control_bar = physmap("Intel NIC control/status reg",
  78. addr, NICINTEL_CONTROL_MEMMAP_SIZE);
  79. if (nicintel_control_bar == ERROR_PTR)
  80. goto error_out;
  81. if (register_shutdown(nicintel_shutdown, NULL))
  82. return 1;
  83. /* FIXME: This register is pretty undocumented in all publicly available
  84. * documentation from Intel. Let me quote the complete info we have:
  85. * "Flash Control Register: The Flash Control register allows the CPU to
  86. * enable writes to an external Flash. The Flash Control Register is a
  87. * 32-bit field that allows access to an external Flash device."
  88. * Ah yes, we also know where it is, but we have absolutely _no_ idea
  89. * what we should do with it. Write 0x0001 because we have nothing
  90. * better to do with our time.
  91. */
  92. pci_rmmio_writew(0x0001, nicintel_control_bar + CSR_FCR);
  93. max_rom_decode.parallel = NICINTEL_MEMMAP_SIZE;
  94. register_par_programmer(&par_programmer_nicintel, BUS_PARALLEL);
  95. return 0;
  96. error_out_unmap:
  97. physunmap(nicintel_bar, NICINTEL_MEMMAP_SIZE);
  98. error_out:
  99. pci_cleanup(pacc);
  100. release_io_perms();
  101. return 1;
  102. }
  103. void nicintel_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
  104. {
  105. pci_mmio_writeb(val, nicintel_bar + (addr & NICINTEL_MEMMAP_MASK));
  106. }
  107. uint8_t nicintel_chip_readb(const struct flashctx *flash, const chipaddr addr)
  108. {
  109. return pci_mmio_readb(nicintel_bar + (addr & NICINTEL_MEMMAP_MASK));
  110. }