blob: 8a0938d68c11eb32e97fba03875e2dbd3d63b05e [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.
ruik28d97142009-05-17 19:46:43 +000015 */
16
17/* Datasheets can be found on http://www.siliconimage.com. Great thanks! */
18
hailfinger428f6852010-07-27 22:41:39 +000019#include "programmer.h"
Patrick Georgib6e26e62017-04-11 20:24:22 +020020#include "hwaccess.h"
ruik28d97142009-05-17 19:46:43 +000021
22#define PCI_VENDOR_ID_SII 0x1095
23
dhendrix0ffc2eb2011-06-14 01:35:36 +000024#define SATASII_MEMMAP_SIZE 0x100
25
Patrick Georgi6194bb72017-02-03 19:31:17 +010026static uint8_t *sii_bar;
hailfinger1ff33dc2010-07-03 11:02:10 +000027static uint16_t id;
ruik28d97142009-05-17 19:46:43 +000028
Patrick Georgi8ae16572017-03-09 15:59:25 +010029const struct dev_entry satas_sii[] = {
mkarcher6475d3f2010-02-24 00:04:40 +000030 {0x1095, 0x0680, OK, "Silicon Image", "PCI0680 Ultra ATA-133 Host Ctrl"},
31 {0x1095, 0x3112, OK, "Silicon Image", "SiI 3112 [SATALink/SATARaid] SATA Ctrl"},
32 {0x1095, 0x3114, OK, "Silicon Image", "SiI 3114 [SATALink/SATARaid] SATA Ctrl"},
uwe9e670672010-07-29 22:39:47 +000033 {0x1095, 0x3124, OK, "Silicon Image", "SiI 3124 PCI-X SATA Ctrl"},
mkarcher6475d3f2010-02-24 00:04:40 +000034 {0x1095, 0x3132, OK, "Silicon Image", "SiI 3132 SATA Raid II Ctrl"},
hailfinger0217e5b2010-09-04 23:37:40 +000035 {0x1095, 0x3512, OK, "Silicon Image", "SiI 3512 [SATALink/SATARaid] SATA Ctrl"},
uwef95d4462009-05-17 22:57:34 +000036
Patrick Georgi6194bb72017-02-03 19:31:17 +010037 {0},
ruik28d97142009-05-17 19:46:43 +000038};
39
Patrick Georgi6194bb72017-02-03 19:31:17 +010040static void satasii_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr);
41static uint8_t satasii_chip_readb(const struct flashctx *flash, const chipaddr addr);
Patrick Georgi0a9533a2017-02-03 19:28:38 +010042static const struct par_master par_master_satasii = {
hailfinger76bb7e92011-11-09 23:40:00 +000043 .chip_readb = satasii_chip_readb,
44 .chip_readw = fallback_chip_readw,
45 .chip_readl = fallback_chip_readl,
46 .chip_readn = fallback_chip_readn,
47 .chip_writeb = satasii_chip_writeb,
48 .chip_writew = fallback_chip_writew,
49 .chip_writel = fallback_chip_writel,
50 .chip_writen = fallback_chip_writen,
51};
52
Patrick Georgi29fe8842017-03-28 23:27:19 +020053static uint32_t satasii_wait_done(void)
54{
55 uint32_t ctrl_reg;
56 int i = 0;
57 while ((ctrl_reg = pci_mmio_readl(sii_bar)) & (1 << 25)) {
58 if (++i > 10000) {
59 msg_perr("%s: control register stuck at %08x, ignoring.\n",
60 __func__, pci_mmio_readl(sii_bar));
61 break;
62 }
63 }
64 return ctrl_reg;
65}
66
David Hendricksac1d25c2016-08-09 17:00:58 -070067int satasii_init(void)
ruik28d97142009-05-17 19:46:43 +000068{
Patrick Georgi7c30fa92017-03-28 22:47:12 +020069 struct pci_dev *dev = NULL;
ruik28d97142009-05-17 19:46:43 +000070 uint32_t addr;
71 uint16_t reg_offset;
72
Patrick Georgi2a2d67f2017-03-09 10:15:39 +010073 if (rget_io_perms())
74 return 1;
ruik28d97142009-05-17 19:46:43 +000075
Patrick Georgi7c30fa92017-03-28 22:47:12 +020076 dev = pcidev_init(satas_sii, PCI_BASE_ADDRESS_0);
77 if (!dev)
78 return 1;
hailfinger1ef766d2010-07-06 09:55:48 +000079
Patrick Georgid490a172017-03-28 23:03:47 +020080 id = dev->device_id;
ruik28d97142009-05-17 19:46:43 +000081
82 if ((id == 0x3132) || (id == 0x3124)) {
Patrick Georgi7c30fa92017-03-28 22:47:12 +020083 addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_0);
84 if (!addr)
85 return 1;
ruik28d97142009-05-17 19:46:43 +000086 reg_offset = 0x70;
87 } else {
Patrick Georgi7c30fa92017-03-28 22:47:12 +020088 addr = pcidev_readbar(dev, PCI_BASE_ADDRESS_5);
89 if (!addr)
90 return 1;
ruik28d97142009-05-17 19:46:43 +000091 reg_offset = 0x50;
92 }
93
Patrick Georgib6e26e62017-04-11 20:24:22 +020094 sii_bar = rphysmap("SATA SiI registers", addr, SATASII_MEMMAP_SIZE);
Patrick Georgi124bd002017-03-21 17:25:59 +010095 if (sii_bar == ERROR_PTR)
96 return 1;
97 sii_bar += reg_offset;
ruik28d97142009-05-17 19:46:43 +000098
uwef95d4462009-05-17 22:57:34 +000099 /* Check if ROM cycle are OK. */
hailfinger2df6f3e2010-07-27 22:03:46 +0000100 if ((id != 0x0680) && (!(pci_mmio_readl(sii_bar) & (1 << 26))))
Patrick Georgib6e26e62017-04-11 20:24:22 +0200101 msg_pwarn("Warning: Flash seems unconnected.\n");
ruik28d97142009-05-17 19:46:43 +0000102
Patrick Georgi0a9533a2017-02-03 19:28:38 +0100103 register_par_master(&par_master_satasii, BUS_PARALLEL);
hailfinger76bb7e92011-11-09 23:40:00 +0000104
ruik28d97142009-05-17 19:46:43 +0000105 return 0;
106}
107
Patrick Georgi6194bb72017-02-03 19:31:17 +0100108static void satasii_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
ruik28d97142009-05-17 19:46:43 +0000109{
Patrick Georgi29fe8842017-03-28 23:27:19 +0200110 uint32_t data_reg;
111 uint32_t ctrl_reg = satasii_wait_done();
ruik28d97142009-05-17 19:46:43 +0000112
uwef95d4462009-05-17 22:57:34 +0000113 /* Mask out unused/reserved bits, set writes and start transaction. */
ruik28d97142009-05-17 19:46:43 +0000114 ctrl_reg &= 0xfcf80000;
115 ctrl_reg |= (1 << 25) | (0 << 24) | ((uint32_t) addr & 0x7ffff);
116
hailfinger2df6f3e2010-07-27 22:03:46 +0000117 data_reg = (pci_mmio_readl((sii_bar + 4)) & ~0xff) | val;
118 pci_mmio_writel(data_reg, (sii_bar + 4));
119 pci_mmio_writel(ctrl_reg, sii_bar);
ruik28d97142009-05-17 19:46:43 +0000120
Patrick Georgi29fe8842017-03-28 23:27:19 +0200121 satasii_wait_done();
ruik28d97142009-05-17 19:46:43 +0000122}
123
Patrick Georgi6194bb72017-02-03 19:31:17 +0100124static uint8_t satasii_chip_readb(const struct flashctx *flash, const chipaddr addr)
ruik28d97142009-05-17 19:46:43 +0000125{
Patrick Georgi29fe8842017-03-28 23:27:19 +0200126 uint32_t ctrl_reg = satasii_wait_done();
ruik28d97142009-05-17 19:46:43 +0000127
uwef95d4462009-05-17 22:57:34 +0000128 /* Mask out unused/reserved bits, set reads and start transaction. */
ruik28d97142009-05-17 19:46:43 +0000129 ctrl_reg &= 0xfcf80000;
130 ctrl_reg |= (1 << 25) | (1 << 24) | ((uint32_t) addr & 0x7ffff);
131
hailfinger2df6f3e2010-07-27 22:03:46 +0000132 pci_mmio_writel(ctrl_reg, sii_bar);
ruik28d97142009-05-17 19:46:43 +0000133
Patrick Georgi29fe8842017-03-28 23:27:19 +0200134 satasii_wait_done();
ruik28d97142009-05-17 19:46:43 +0000135
hailfinger2df6f3e2010-07-27 22:03:46 +0000136 return (pci_mmio_readl(sii_bar + 4)) & 0xff;
ruik28d97142009-05-17 19:46:43 +0000137}