Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 1 | /* |
| 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 |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | /* Datasheets can be found on http://www.siliconimage.com. Great thanks! */ |
| 22 | |
| 23 | #include <stdlib.h> |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 24 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 25 | #include "programmer.h" |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 26 | |
| 27 | #define PCI_VENDOR_ID_SII 0x1095 |
| 28 | |
| 29 | uint8_t *sii_bar; |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 30 | static uint16_t id; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 31 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 32 | const struct pcidev_status satas_sii[] = { |
Michael Karcher | 8448639 | 2010-02-24 00:04:40 +0000 | [diff] [blame] | 33 | {0x1095, 0x0680, OK, "Silicon Image", "PCI0680 Ultra ATA-133 Host Ctrl"}, |
| 34 | {0x1095, 0x3112, OK, "Silicon Image", "SiI 3112 [SATALink/SATARaid] SATA Ctrl"}, |
| 35 | {0x1095, 0x3114, OK, "Silicon Image", "SiI 3114 [SATALink/SATARaid] SATA Ctrl"}, |
Uwe Hermann | c2521ab | 2010-07-29 22:39:47 +0000 | [diff] [blame] | 36 | {0x1095, 0x3124, OK, "Silicon Image", "SiI 3124 PCI-X SATA Ctrl"}, |
Michael Karcher | 8448639 | 2010-02-24 00:04:40 +0000 | [diff] [blame] | 37 | {0x1095, 0x3132, OK, "Silicon Image", "SiI 3132 SATA Raid II Ctrl"}, |
Carl-Daniel Hailfinger | 9017cec | 2010-09-04 23:37:40 +0000 | [diff] [blame] | 38 | {0x1095, 0x3512, OK, "Silicon Image", "SiI 3512 [SATALink/SATARaid] SATA Ctrl"}, |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 39 | |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 40 | {}, |
| 41 | }; |
| 42 | |
| 43 | int satasii_init(void) |
| 44 | { |
| 45 | uint32_t addr; |
| 46 | uint16_t reg_offset; |
| 47 | |
| 48 | get_io_perms(); |
| 49 | |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 50 | pcidev_init(PCI_VENDOR_ID_SII, PCI_BASE_ADDRESS_0, satas_sii); |
| 51 | |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 52 | id = pcidev_dev->device_id; |
| 53 | |
| 54 | if ((id == 0x3132) || (id == 0x3124)) { |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 55 | addr = pci_read_long(pcidev_dev, PCI_BASE_ADDRESS_0) & ~0x07; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 56 | reg_offset = 0x70; |
| 57 | } else { |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 58 | addr = pci_read_long(pcidev_dev, PCI_BASE_ADDRESS_5) & ~0x07; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 59 | reg_offset = 0x50; |
| 60 | } |
| 61 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 62 | sii_bar = physmap("SATA SIL registers", addr, 0x100) + reg_offset; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 63 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 64 | /* Check if ROM cycle are OK. */ |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 65 | if ((id != 0x0680) && (!(pci_mmio_readl(sii_bar) & (1 << 26)))) |
Sean Nelson | 05ce542 | 2010-01-09 23:50:27 +0000 | [diff] [blame] | 66 | msg_pinfo("Warning: Flash seems unconnected.\n"); |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 67 | |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 68 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 69 | |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | int satasii_shutdown(void) |
| 74 | { |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 75 | pci_cleanup(pacc); |
Carl-Daniel Hailfinger | db41c59 | 2009-08-09 21:50:24 +0000 | [diff] [blame] | 76 | release_io_perms(); |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 77 | return 0; |
| 78 | } |
| 79 | |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 80 | void satasii_chip_writeb(uint8_t val, chipaddr addr) |
| 81 | { |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 82 | uint32_t ctrl_reg, data_reg; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 83 | |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 84 | while ((ctrl_reg = pci_mmio_readl(sii_bar)) & (1 << 25)) ; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 85 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 86 | /* Mask out unused/reserved bits, set writes and start transaction. */ |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 87 | ctrl_reg &= 0xfcf80000; |
| 88 | ctrl_reg |= (1 << 25) | (0 << 24) | ((uint32_t) addr & 0x7ffff); |
| 89 | |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 90 | data_reg = (pci_mmio_readl((sii_bar + 4)) & ~0xff) | val; |
| 91 | pci_mmio_writel(data_reg, (sii_bar + 4)); |
| 92 | pci_mmio_writel(ctrl_reg, sii_bar); |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 93 | |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 94 | while (pci_mmio_readl(sii_bar) & (1 << 25)) ; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | uint8_t satasii_chip_readb(const chipaddr addr) |
| 98 | { |
| 99 | uint32_t ctrl_reg; |
| 100 | |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 101 | while ((ctrl_reg = pci_mmio_readl(sii_bar)) & (1 << 25)) ; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 102 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 103 | /* Mask out unused/reserved bits, set reads and start transaction. */ |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 104 | ctrl_reg &= 0xfcf80000; |
| 105 | ctrl_reg |= (1 << 25) | (1 << 24) | ((uint32_t) addr & 0x7ffff); |
| 106 | |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 107 | pci_mmio_writel(ctrl_reg, sii_bar); |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 108 | |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 109 | while (pci_mmio_readl(sii_bar) & (1 << 25)) ; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 110 | |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 111 | return (pci_mmio_readl(sii_bar + 4)) & 0xff; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 112 | } |