blob: e304c19b8b4597338ec986b452bded64a4ec5f25 [file] [log] [blame]
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +00001/*
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.
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000015 */
16
17/* Datasheets are not public (yet?) */
18
19#include <stdlib.h>
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000020#include "programmer.h"
Thomas Heijligena0655202021-12-14 16:36:05 +010021#include "hwaccess_x86_io.h"
Thomas Heijligen74b4aa02021-12-14 17:52:30 +010022#include "hwaccess_physmap.h"
Thomas Heijligend96c97c2021-11-02 21:03:00 +010023#include "platform/pci.h"
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000024
Jacob Garberafc3ad62019-06-24 16:05:28 -060025static uint8_t *mv_bar;
26static uint16_t mv_iobar;
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000027
Thomas Heijligencc853d82021-05-04 15:32:17 +020028static const struct dev_entry satas_mv[] = {
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000029 /* 88SX6041 and 88SX6042 are the same according to the datasheet. */
30 {0x11ab, 0x7042, OK, "Marvell", "88SX7042 PCI-e 4-port SATA-II"},
31
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000032 {0},
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000033};
34
35#define NVRAM_PARAM 0x1045c
36#define FLASH_PARAM 0x1046c
37#define EXPANSION_ROM_BAR_CONTROL 0x00d2c
38#define PCI_BAR2_CONTROL 0x00c08
39#define GPIO_PORT_CONTROL 0x104f0
40
Nico Huberdd6e07a2026-02-21 17:55:26 +010041static void satamv_chip_writeb(const struct par_master *, uint8_t val, chipaddr);
42static uint8_t satamv_chip_readb(const struct par_master *, chipaddr);
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +000043static const struct par_master par_master_satamv = {
Thomas Heijligen43040f22022-06-23 14:38:35 +020044 .chip_readb = satamv_chip_readb,
45 .chip_readw = fallback_chip_readw,
46 .chip_readl = fallback_chip_readl,
47 .chip_readn = fallback_chip_readn,
48 .chip_writeb = satamv_chip_writeb,
49 .chip_writew = fallback_chip_writew,
50 .chip_writel = fallback_chip_writel,
51 .chip_writen = fallback_chip_writen,
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +000052};
53
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000054/*
55 * Random notes:
56 * FCE# Flash Chip Enable
57 * FWE# Flash Write Enable
58 * FOE# Flash Output Enable
59 * FALE[1:0] Flash Address Latch Enable
60 * FAD[7:0] Flash Multiplexed Address/Data Bus
61 * FA[2:0] Flash Address Low
62 *
63 * GPIO[15,2] GPIO Port Mode
64 * GPIO[4:3] Flash Size
65 *
66 * 0xd2c Expansion ROM BAR Control
67 * 0xc08 PCI BAR2 (Flash/NVRAM) Control
68 * 0x1046c Flash Parameters
69 */
Nico Hubere3a26882023-01-11 21:45:51 +010070static int satamv_init(struct flashprog_programmer *const prog)
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000071{
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000072 struct pci_dev *dev = NULL;
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000073 uintptr_t addr;
74 uint32_t tmp;
75
Carl-Daniel Hailfingerd6bb8282012-07-21 17:27:08 +000076 if (rget_io_perms())
77 return 1;
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000078
79 /* BAR0 has all internal registers memory mapped. */
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000080 dev = pcidev_init(satas_mv, PCI_BASE_ADDRESS_0);
81 if (!dev)
82 return 1;
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000083
Carl-Daniel Hailfingera2faddf2013-01-05 23:52:45 +000084 addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_0);
Niklas Söderlund89edf362013-08-23 23:29:23 +000085 if (!addr)
86 return 1;
87
Stefan Tauner7fb5aa02013-08-14 15:48:44 +000088 mv_bar = rphysmap("Marvell 88SX7042 registers", addr, 0x20000);
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000089 if (mv_bar == ERROR_PTR)
Stefan Tauner55619552013-01-04 22:24:58 +000090 return 1;
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000091
92 tmp = pci_mmio_readl(mv_bar + FLASH_PARAM);
93 msg_pspew("Flash Parameters:\n");
94 msg_pspew("TurnOff=0x%01x\n", (tmp >> 0) & 0x7);
95 msg_pspew("Acc2First=0x%01x\n", (tmp >> 3) & 0xf);
96 msg_pspew("Acc2Next=0x%01x\n", (tmp >> 7) & 0xf);
97 msg_pspew("ALE2Wr=0x%01x\n", (tmp >> 11) & 0x7);
98 msg_pspew("WrLow=0x%01x\n", (tmp >> 14) & 0x7);
99 msg_pspew("WrHigh=0x%01x\n", (tmp >> 17) & 0x7);
100 msg_pspew("Reserved[21:20]=0x%01x\n", (tmp >> 20) & 0x3);
101 msg_pspew("TurnOffExt=0x%01x\n", (tmp >> 22) & 0x1);
102 msg_pspew("Acc2FirstExt=0x%01x\n", (tmp >> 23) & 0x1);
103 msg_pspew("Acc2NextExt=0x%01x\n", (tmp >> 24) & 0x1);
104 msg_pspew("ALE2WrExt=0x%01x\n", (tmp >> 25) & 0x1);
105 msg_pspew("WrLowExt=0x%01x\n", (tmp >> 26) & 0x1);
106 msg_pspew("WrHighExt=0x%01x\n", (tmp >> 27) & 0x1);
107 msg_pspew("Reserved[31:28]=0x%01x\n", (tmp >> 28) & 0xf);
108
109 tmp = pci_mmio_readl(mv_bar + EXPANSION_ROM_BAR_CONTROL);
110 msg_pspew("Expansion ROM BAR Control:\n");
111 msg_pspew("ExpROMSz=0x%01x\n", (tmp >> 19) & 0x7);
112
113 /* Enable BAR2 mapping to flash */
114 tmp = pci_mmio_readl(mv_bar + PCI_BAR2_CONTROL);
115 msg_pspew("PCI BAR2 (Flash/NVRAM) Control:\n");
116 msg_pspew("Bar2En=0x%01x\n", (tmp >> 0) & 0x1);
117 msg_pspew("BAR2TransAttr=0x%01x\n", (tmp >> 1) & 0x1f);
118 msg_pspew("BAR2Sz=0x%01x\n", (tmp >> 19) & 0x7);
119 tmp &= 0xffffffc0;
120 tmp |= 0x0000001f;
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000121 pci_rmmio_writel(tmp, mv_bar + PCI_BAR2_CONTROL);
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000122
123 /* Enable flash: GPIO Port Control Register 0x104f0 */
124 tmp = pci_mmio_readl(mv_bar + GPIO_PORT_CONTROL);
125 msg_pspew("GPIOPortMode=0x%01x\n", (tmp >> 0) & 0x3);
126 if (((tmp >> 0) & 0x3) != 0x2)
127 msg_pinfo("Warning! Either the straps are incorrect or you "
128 "have no flash or someone overwrote the strap "
129 "values!\n");
130 tmp &= 0xfffffffc;
131 tmp |= 0x2;
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000132 pci_rmmio_writel(tmp, mv_bar + GPIO_PORT_CONTROL);
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000133
134 /* Get I/O BAR location. */
Stefan Reinauer789ea5e2014-04-26 16:12:15 +0000135 addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_2);
Niklas Söderlund89edf362013-08-23 23:29:23 +0000136 if (!addr)
137 return 1;
138
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000139 /* Truncate to reachable range.
140 * FIXME: Check if the I/O BAR is actually reachable.
141 * This is an arch specific check.
142 */
Stefan Reinauer789ea5e2014-04-26 16:12:15 +0000143 mv_iobar = addr & 0xffff;
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000144 msg_pspew("Activating I/O BAR at 0x%04x\n", mv_iobar);
145
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000146 /* 512 kByte with two 8-bit latches, and
147 * 4 MByte with additional 3-bit latch. */
Nico Huber47aa85c2026-02-21 14:57:20 +0100148 return register_par_master(&par_master_satamv, BUS_PARALLEL, 0, 4*MiB, NULL);
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000149}
150
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000151/* BAR2 (MEM) can map NVRAM and flash. We set it to flash in the init function.
152 * If BAR2 is disabled, it still can be accessed indirectly via BAR1 (I/O).
153 * This code only supports indirect accesses for now.
154 */
155
156/* Indirect access to via the I/O BAR1. */
157static void satamv_indirect_chip_writeb(uint8_t val, chipaddr addr)
158{
159 /* 0x80000000 selects BAR2 for remapping. */
160 OUTL(((uint32_t)addr | 0x80000000) & 0xfffffffc, mv_iobar);
161 OUTB(val, mv_iobar + 0x80 + (addr & 0x3));
162}
163
164/* Indirect access to via the I/O BAR1. */
165static uint8_t satamv_indirect_chip_readb(const chipaddr addr)
166{
167 /* 0x80000000 selects BAR2 for remapping. */
168 OUTL(((uint32_t)addr | 0x80000000) & 0xfffffffc, mv_iobar);
169 return INB(mv_iobar + 0x80 + (addr & 0x3));
170}
171
172/* FIXME: Prefer direct access to BAR2 if BAR2 is active. */
Nico Huberdd6e07a2026-02-21 17:55:26 +0100173static void satamv_chip_writeb(const struct par_master *par, uint8_t val, chipaddr addr)
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000174{
175 satamv_indirect_chip_writeb(val, addr);
176}
177
178/* FIXME: Prefer direct access to BAR2 if BAR2 is active. */
Nico Huberdd6e07a2026-02-21 17:55:26 +0100179static uint8_t satamv_chip_readb(const struct par_master *par, const chipaddr addr)
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000180{
181 return satamv_indirect_chip_readb(addr);
182}
Andrew Morgana0743832011-07-25 22:07:05 +0000183
Thomas Heijligencc853d82021-05-04 15:32:17 +0200184const struct programmer_entry programmer_satamv = {
185 .name = "satamv",
186 .type = PCI,
187 .devs.dev = satas_mv,
188 .init = satamv_init,
Thomas Heijligencc853d82021-05-04 15:32:17 +0200189};