Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2010,2011 Carl-Daniel Hailfinger |
| 5 | * Written by Carl-Daniel Hailfinger for Angelbird Ltd. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; version 2 of the License. |
| 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 | |
| 21 | /* Datasheets are not public (yet?) */ |
Andrew Morgan | a074383 | 2011-07-25 22:07:05 +0000 | [diff] [blame] | 22 | #if defined(__i386__) || defined(__x86_64__) |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 23 | |
| 24 | #include <stdlib.h> |
| 25 | #include "flash.h" |
| 26 | #include "programmer.h" |
Patrick Georgi | 32508eb | 2012-07-20 20:35:14 +0000 | [diff] [blame] | 27 | #include "hwaccess.h" |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 28 | |
| 29 | uint8_t *mv_bar; |
| 30 | uint16_t mv_iobar; |
| 31 | |
Stefan Tauner | 4b24a2d | 2012-12-27 18:40:36 +0000 | [diff] [blame] | 32 | const struct dev_entry satas_mv[] = { |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 33 | /* 88SX6041 and 88SX6042 are the same according to the datasheet. */ |
| 34 | {0x11ab, 0x7042, OK, "Marvell", "88SX7042 PCI-e 4-port SATA-II"}, |
| 35 | |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame] | 36 | {0}, |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | #define NVRAM_PARAM 0x1045c |
| 40 | #define FLASH_PARAM 0x1046c |
| 41 | #define EXPANSION_ROM_BAR_CONTROL 0x00d2c |
| 42 | #define PCI_BAR2_CONTROL 0x00c08 |
| 43 | #define GPIO_PORT_CONTROL 0x104f0 |
| 44 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 45 | static void satamv_chip_writeb(const struct flashctx *flash, uint8_t val, |
| 46 | chipaddr addr); |
| 47 | static uint8_t satamv_chip_readb(const struct flashctx *flash, |
| 48 | const chipaddr addr); |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 49 | static const struct par_programmer par_programmer_satamv = { |
| 50 | .chip_readb = satamv_chip_readb, |
| 51 | .chip_readw = fallback_chip_readw, |
| 52 | .chip_readl = fallback_chip_readl, |
| 53 | .chip_readn = fallback_chip_readn, |
| 54 | .chip_writeb = satamv_chip_writeb, |
| 55 | .chip_writew = fallback_chip_writew, |
| 56 | .chip_writel = fallback_chip_writel, |
| 57 | .chip_writen = fallback_chip_writen, |
| 58 | }; |
| 59 | |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 60 | /* |
| 61 | * Random notes: |
| 62 | * FCE# Flash Chip Enable |
| 63 | * FWE# Flash Write Enable |
| 64 | * FOE# Flash Output Enable |
| 65 | * FALE[1:0] Flash Address Latch Enable |
| 66 | * FAD[7:0] Flash Multiplexed Address/Data Bus |
| 67 | * FA[2:0] Flash Address Low |
| 68 | * |
| 69 | * GPIO[15,2] GPIO Port Mode |
| 70 | * GPIO[4:3] Flash Size |
| 71 | * |
| 72 | * 0xd2c Expansion ROM BAR Control |
| 73 | * 0xc08 PCI BAR2 (Flash/NVRAM) Control |
| 74 | * 0x1046c Flash Parameters |
| 75 | */ |
| 76 | int satamv_init(void) |
| 77 | { |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 78 | struct pci_dev *dev = NULL; |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 79 | uintptr_t addr; |
| 80 | uint32_t tmp; |
| 81 | |
Carl-Daniel Hailfinger | d6bb828 | 2012-07-21 17:27:08 +0000 | [diff] [blame] | 82 | if (rget_io_perms()) |
| 83 | return 1; |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 84 | |
| 85 | /* BAR0 has all internal registers memory mapped. */ |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 86 | dev = pcidev_init(satas_mv, PCI_BASE_ADDRESS_0); |
| 87 | if (!dev) |
| 88 | return 1; |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 89 | |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 90 | addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_0); |
Niklas Söderlund | 89edf36 | 2013-08-23 23:29:23 +0000 | [diff] [blame^] | 91 | if (!addr) |
| 92 | return 1; |
| 93 | |
Stefan Tauner | 7fb5aa0 | 2013-08-14 15:48:44 +0000 | [diff] [blame] | 94 | mv_bar = rphysmap("Marvell 88SX7042 registers", addr, 0x20000); |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 95 | if (mv_bar == ERROR_PTR) |
Stefan Tauner | 5561955 | 2013-01-04 22:24:58 +0000 | [diff] [blame] | 96 | return 1; |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 97 | |
| 98 | tmp = pci_mmio_readl(mv_bar + FLASH_PARAM); |
| 99 | msg_pspew("Flash Parameters:\n"); |
| 100 | msg_pspew("TurnOff=0x%01x\n", (tmp >> 0) & 0x7); |
| 101 | msg_pspew("Acc2First=0x%01x\n", (tmp >> 3) & 0xf); |
| 102 | msg_pspew("Acc2Next=0x%01x\n", (tmp >> 7) & 0xf); |
| 103 | msg_pspew("ALE2Wr=0x%01x\n", (tmp >> 11) & 0x7); |
| 104 | msg_pspew("WrLow=0x%01x\n", (tmp >> 14) & 0x7); |
| 105 | msg_pspew("WrHigh=0x%01x\n", (tmp >> 17) & 0x7); |
| 106 | msg_pspew("Reserved[21:20]=0x%01x\n", (tmp >> 20) & 0x3); |
| 107 | msg_pspew("TurnOffExt=0x%01x\n", (tmp >> 22) & 0x1); |
| 108 | msg_pspew("Acc2FirstExt=0x%01x\n", (tmp >> 23) & 0x1); |
| 109 | msg_pspew("Acc2NextExt=0x%01x\n", (tmp >> 24) & 0x1); |
| 110 | msg_pspew("ALE2WrExt=0x%01x\n", (tmp >> 25) & 0x1); |
| 111 | msg_pspew("WrLowExt=0x%01x\n", (tmp >> 26) & 0x1); |
| 112 | msg_pspew("WrHighExt=0x%01x\n", (tmp >> 27) & 0x1); |
| 113 | msg_pspew("Reserved[31:28]=0x%01x\n", (tmp >> 28) & 0xf); |
| 114 | |
| 115 | tmp = pci_mmio_readl(mv_bar + EXPANSION_ROM_BAR_CONTROL); |
| 116 | msg_pspew("Expansion ROM BAR Control:\n"); |
| 117 | msg_pspew("ExpROMSz=0x%01x\n", (tmp >> 19) & 0x7); |
| 118 | |
| 119 | /* Enable BAR2 mapping to flash */ |
| 120 | tmp = pci_mmio_readl(mv_bar + PCI_BAR2_CONTROL); |
| 121 | msg_pspew("PCI BAR2 (Flash/NVRAM) Control:\n"); |
| 122 | msg_pspew("Bar2En=0x%01x\n", (tmp >> 0) & 0x1); |
| 123 | msg_pspew("BAR2TransAttr=0x%01x\n", (tmp >> 1) & 0x1f); |
| 124 | msg_pspew("BAR2Sz=0x%01x\n", (tmp >> 19) & 0x7); |
| 125 | tmp &= 0xffffffc0; |
| 126 | tmp |= 0x0000001f; |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 127 | pci_rmmio_writel(tmp, mv_bar + PCI_BAR2_CONTROL); |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 128 | |
| 129 | /* Enable flash: GPIO Port Control Register 0x104f0 */ |
| 130 | tmp = pci_mmio_readl(mv_bar + GPIO_PORT_CONTROL); |
| 131 | msg_pspew("GPIOPortMode=0x%01x\n", (tmp >> 0) & 0x3); |
| 132 | if (((tmp >> 0) & 0x3) != 0x2) |
| 133 | msg_pinfo("Warning! Either the straps are incorrect or you " |
| 134 | "have no flash or someone overwrote the strap " |
| 135 | "values!\n"); |
| 136 | tmp &= 0xfffffffc; |
| 137 | tmp |= 0x2; |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 138 | pci_rmmio_writel(tmp, mv_bar + GPIO_PORT_CONTROL); |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 139 | |
| 140 | /* Get I/O BAR location. */ |
Carl-Daniel Hailfinger | a2faddf | 2013-01-05 23:52:45 +0000 | [diff] [blame] | 141 | tmp = pcidev_readbar(dev, PCI_BASE_ADDRESS_2); |
Niklas Söderlund | 89edf36 | 2013-08-23 23:29:23 +0000 | [diff] [blame^] | 142 | if (!addr) |
| 143 | return 1; |
| 144 | |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 145 | /* Truncate to reachable range. |
| 146 | * FIXME: Check if the I/O BAR is actually reachable. |
| 147 | * This is an arch specific check. |
| 148 | */ |
| 149 | mv_iobar = tmp & 0xffff; |
| 150 | msg_pspew("Activating I/O BAR at 0x%04x\n", mv_iobar); |
| 151 | |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 152 | /* 512 kByte with two 8-bit latches, and |
| 153 | * 4 MByte with additional 3-bit latch. */ |
| 154 | max_rom_decode.parallel = 4 * 1024 * 1024; |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 155 | register_par_programmer(&par_programmer_satamv, BUS_PARALLEL); |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 156 | |
| 157 | return 0; |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 158 | } |
| 159 | |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 160 | /* BAR2 (MEM) can map NVRAM and flash. We set it to flash in the init function. |
| 161 | * If BAR2 is disabled, it still can be accessed indirectly via BAR1 (I/O). |
| 162 | * This code only supports indirect accesses for now. |
| 163 | */ |
| 164 | |
| 165 | /* Indirect access to via the I/O BAR1. */ |
| 166 | static void satamv_indirect_chip_writeb(uint8_t val, chipaddr addr) |
| 167 | { |
| 168 | /* 0x80000000 selects BAR2 for remapping. */ |
| 169 | OUTL(((uint32_t)addr | 0x80000000) & 0xfffffffc, mv_iobar); |
| 170 | OUTB(val, mv_iobar + 0x80 + (addr & 0x3)); |
| 171 | } |
| 172 | |
| 173 | /* Indirect access to via the I/O BAR1. */ |
| 174 | static uint8_t satamv_indirect_chip_readb(const chipaddr addr) |
| 175 | { |
| 176 | /* 0x80000000 selects BAR2 for remapping. */ |
| 177 | OUTL(((uint32_t)addr | 0x80000000) & 0xfffffffc, mv_iobar); |
| 178 | return INB(mv_iobar + 0x80 + (addr & 0x3)); |
| 179 | } |
| 180 | |
| 181 | /* FIXME: Prefer direct access to BAR2 if BAR2 is active. */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 182 | static void satamv_chip_writeb(const struct flashctx *flash, uint8_t val, |
| 183 | chipaddr addr) |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 184 | { |
| 185 | satamv_indirect_chip_writeb(val, addr); |
| 186 | } |
| 187 | |
| 188 | /* FIXME: Prefer direct access to BAR2 if BAR2 is active. */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 189 | static uint8_t satamv_chip_readb(const struct flashctx *flash, |
| 190 | const chipaddr addr) |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 191 | { |
| 192 | return satamv_indirect_chip_readb(addr); |
| 193 | } |
Andrew Morgan | a074383 | 2011-07-25 22:07:05 +0000 | [diff] [blame] | 194 | |
| 195 | #else |
| 196 | #error PCI port I/O access is not supported on this architecture yet. |
| 197 | #endif |