blob: 6098547967279b3fc0540665ac01dbb29166d9f4 [file] [log] [blame]
ruik28d97142009-05-17 19:46:43 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Rudolf Marek <r.marek@assembler.cz>
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
uwef95d4462009-05-17 22:57:34 +000018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
ruik28d97142009-05-17 19:46:43 +000019 */
20
21/* Datasheets can be found on http://www.siliconimage.com. Great thanks! */
22
23#include <stdlib.h>
ruik28d97142009-05-17 19:46:43 +000024#include "flash.h"
hailfinger428f6852010-07-27 22:41:39 +000025#include "programmer.h"
ruik28d97142009-05-17 19:46:43 +000026
27#define PCI_VENDOR_ID_SII 0x1095
28
dhendrix0ffc2eb2011-06-14 01:35:36 +000029#define SATASII_MEMMAP_SIZE 0x100
30
ruik28d97142009-05-17 19:46:43 +000031uint8_t *sii_bar;
hailfinger1ff33dc2010-07-03 11:02:10 +000032static uint16_t id;
ruik28d97142009-05-17 19:46:43 +000033
Patrick Georgi8ae16572017-03-09 15:59:25 +010034const struct dev_entry satas_sii[] = {
mkarcher6475d3f2010-02-24 00:04:40 +000035 {0x1095, 0x0680, OK, "Silicon Image", "PCI0680 Ultra ATA-133 Host Ctrl"},
36 {0x1095, 0x3112, OK, "Silicon Image", "SiI 3112 [SATALink/SATARaid] SATA Ctrl"},
37 {0x1095, 0x3114, OK, "Silicon Image", "SiI 3114 [SATALink/SATARaid] SATA Ctrl"},
uwe9e670672010-07-29 22:39:47 +000038 {0x1095, 0x3124, OK, "Silicon Image", "SiI 3124 PCI-X SATA Ctrl"},
mkarcher6475d3f2010-02-24 00:04:40 +000039 {0x1095, 0x3132, OK, "Silicon Image", "SiI 3132 SATA Raid II Ctrl"},
hailfinger0217e5b2010-09-04 23:37:40 +000040 {0x1095, 0x3512, OK, "Silicon Image", "SiI 3512 [SATALink/SATARaid] SATA Ctrl"},
uwef95d4462009-05-17 22:57:34 +000041
ruik28d97142009-05-17 19:46:43 +000042 {},
43};
44
Souvik Ghoshd75cd672016-06-17 14:21:39 -070045static void satasii_chip_writeb(const struct flashctx *flash, uint8_t val,
46 chipaddr addr);
47static uint8_t satasii_chip_readb(const struct flashctx *flash,
48 const chipaddr addr);
49
Patrick Georgi0a9533a2017-02-03 19:28:38 +010050static const struct par_master par_master_satasii = {
hailfinger76bb7e92011-11-09 23:40:00 +000051 .chip_readb = satasii_chip_readb,
52 .chip_readw = fallback_chip_readw,
53 .chip_readl = fallback_chip_readl,
54 .chip_readn = fallback_chip_readn,
55 .chip_writeb = satasii_chip_writeb,
56 .chip_writew = fallback_chip_writew,
57 .chip_writel = fallback_chip_writel,
58 .chip_writen = fallback_chip_writen,
59};
60
David Hendricksac1d25c2016-08-09 17:00:58 -070061int satasii_init(void)
ruik28d97142009-05-17 19:46:43 +000062{
63 uint32_t addr;
64 uint16_t reg_offset;
65
Patrick Georgi2a2d67f2017-03-09 10:15:39 +010066 if (rget_io_perms())
67 return 1;
ruik28d97142009-05-17 19:46:43 +000068
hailfinger0d703d42011-03-07 01:08:09 +000069 pcidev_init(PCI_BASE_ADDRESS_0, satas_sii);
hailfinger1ef766d2010-07-06 09:55:48 +000070
ruik28d97142009-05-17 19:46:43 +000071 id = pcidev_dev->device_id;
72
73 if ((id == 0x3132) || (id == 0x3124)) {
uwef95d4462009-05-17 22:57:34 +000074 addr = pci_read_long(pcidev_dev, PCI_BASE_ADDRESS_0) & ~0x07;
ruik28d97142009-05-17 19:46:43 +000075 reg_offset = 0x70;
76 } else {
uwef95d4462009-05-17 22:57:34 +000077 addr = pci_read_long(pcidev_dev, PCI_BASE_ADDRESS_5) & ~0x07;
ruik28d97142009-05-17 19:46:43 +000078 reg_offset = 0x50;
79 }
80
Patrick Georgi124bd002017-03-21 17:25:59 +010081 sii_bar = rphysmap("SATA SIL registers", addr, SATASII_MEMMAP_SIZE);
82 if (sii_bar == ERROR_PTR)
83 return 1;
84 sii_bar += reg_offset;
ruik28d97142009-05-17 19:46:43 +000085
uwef95d4462009-05-17 22:57:34 +000086 /* Check if ROM cycle are OK. */
hailfinger2df6f3e2010-07-27 22:03:46 +000087 if ((id != 0x0680) && (!(pci_mmio_readl(sii_bar) & (1 << 26))))
snelson1541ff32010-01-09 23:50:27 +000088 msg_pinfo("Warning: Flash seems unconnected.\n");
ruik28d97142009-05-17 19:46:43 +000089
Patrick Georgi0a9533a2017-02-03 19:28:38 +010090 register_par_master(&par_master_satasii, BUS_PARALLEL);
hailfinger76bb7e92011-11-09 23:40:00 +000091
ruik28d97142009-05-17 19:46:43 +000092 return 0;
93}
94
Souvik Ghoshd75cd672016-06-17 14:21:39 -070095void satasii_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
ruik28d97142009-05-17 19:46:43 +000096{
uwef95d4462009-05-17 22:57:34 +000097 uint32_t ctrl_reg, data_reg;
ruik28d97142009-05-17 19:46:43 +000098
hailfinger2df6f3e2010-07-27 22:03:46 +000099 while ((ctrl_reg = pci_mmio_readl(sii_bar)) & (1 << 25)) ;
ruik28d97142009-05-17 19:46:43 +0000100
uwef95d4462009-05-17 22:57:34 +0000101 /* Mask out unused/reserved bits, set writes and start transaction. */
ruik28d97142009-05-17 19:46:43 +0000102 ctrl_reg &= 0xfcf80000;
103 ctrl_reg |= (1 << 25) | (0 << 24) | ((uint32_t) addr & 0x7ffff);
104
hailfinger2df6f3e2010-07-27 22:03:46 +0000105 data_reg = (pci_mmio_readl((sii_bar + 4)) & ~0xff) | val;
106 pci_mmio_writel(data_reg, (sii_bar + 4));
107 pci_mmio_writel(ctrl_reg, sii_bar);
ruik28d97142009-05-17 19:46:43 +0000108
hailfinger2df6f3e2010-07-27 22:03:46 +0000109 while (pci_mmio_readl(sii_bar) & (1 << 25)) ;
ruik28d97142009-05-17 19:46:43 +0000110}
111
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700112uint8_t satasii_chip_readb(const struct flashctx *flash, const chipaddr addr)
ruik28d97142009-05-17 19:46:43 +0000113{
114 uint32_t ctrl_reg;
115
hailfinger2df6f3e2010-07-27 22:03:46 +0000116 while ((ctrl_reg = pci_mmio_readl(sii_bar)) & (1 << 25)) ;
ruik28d97142009-05-17 19:46:43 +0000117
uwef95d4462009-05-17 22:57:34 +0000118 /* Mask out unused/reserved bits, set reads and start transaction. */
ruik28d97142009-05-17 19:46:43 +0000119 ctrl_reg &= 0xfcf80000;
120 ctrl_reg |= (1 << 25) | (1 << 24) | ((uint32_t) addr & 0x7ffff);
121
hailfinger2df6f3e2010-07-27 22:03:46 +0000122 pci_mmio_writel(ctrl_reg, sii_bar);
ruik28d97142009-05-17 19:46:43 +0000123
hailfinger2df6f3e2010-07-27 22:03:46 +0000124 while (pci_mmio_readl(sii_bar) & (1 << 25)) ;
ruik28d97142009-05-17 19:46:43 +0000125
hailfinger2df6f3e2010-07-27 22:03:46 +0000126 return (pci_mmio_readl(sii_bar + 4)) & 0xff;
ruik28d97142009-05-17 19:46:43 +0000127}