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> |
| 24 | #include <string.h> |
| 25 | #include <fcntl.h> |
| 26 | #include <sys/types.h> |
| 27 | #include <sys/stat.h> |
| 28 | #include <errno.h> |
| 29 | #include "flash.h" |
| 30 | |
| 31 | #define PCI_VENDOR_ID_SII 0x1095 |
| 32 | |
| 33 | uint8_t *sii_bar; |
| 34 | uint16_t id; |
| 35 | |
| 36 | struct pcidev_status satas_sii[] = { |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 37 | {0x1095, 0x0680, PCI_OK, "Silicon Image", "PCI0680 Ultra ATA-133 Host Ctrl"}, |
| 38 | {0x1095, 0x3114, PCI_OK, "Silicon Image", "SiI 3114 [SATALink/SATARaid] SATA Ctrl"}, |
| 39 | {0x1095, 0x3124, PCI_NT, "Silicon Image", "SiI 3124 PCI-X SATA Ctrl"}, |
| 40 | {0x1095, 0x3132, PCI_OK, "Silicon Image", "SiI 3132 SATA Raid II Ctrl"}, |
| 41 | {0x1095, 0x3512, PCI_NT, "Silicon Image", "SiI 3512 [SATALink/SATARaid] SATA Ctrl"}, |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 42 | |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 43 | {}, |
| 44 | }; |
| 45 | |
| 46 | int satasii_init(void) |
| 47 | { |
| 48 | uint32_t addr; |
| 49 | uint16_t reg_offset; |
| 50 | |
| 51 | get_io_perms(); |
| 52 | |
| 53 | pcidev_init(PCI_VENDOR_ID_SII, satas_sii); |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 54 | id = pcidev_dev->device_id; |
| 55 | |
| 56 | if ((id == 0x3132) || (id == 0x3124)) { |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 57 | addr = pci_read_long(pcidev_dev, PCI_BASE_ADDRESS_0) & ~0x07; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 58 | reg_offset = 0x70; |
| 59 | } else { |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 60 | addr = pci_read_long(pcidev_dev, PCI_BASE_ADDRESS_5) & ~0x07; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 61 | reg_offset = 0x50; |
| 62 | } |
| 63 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 64 | sii_bar = physmap("SATA SIL registers", addr, 0x100) + reg_offset; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 65 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 66 | /* Check if ROM cycle are OK. */ |
Urja Rannikko | 211fa97 | 2009-05-31 21:35:10 +0000 | [diff] [blame] | 67 | if ((id != 0x0680) && (!(mmio_readl(sii_bar) & (1 << 26)))) |
Uwe Hermann | b2f7a2f | 2009-05-20 17:09:43 +0000 | [diff] [blame] | 68 | printf("Warning: Flash seems unconnected.\n"); |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 69 | |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 70 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 71 | |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | int satasii_shutdown(void) |
| 76 | { |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 77 | free(pcidev_bdf); |
| 78 | pci_cleanup(pacc); |
| 79 | #if defined(__FreeBSD__) || defined(__DragonFly__) |
| 80 | close(io_fd); |
| 81 | #endif |
| 82 | return 0; |
| 83 | } |
| 84 | |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 85 | void satasii_chip_writeb(uint8_t val, chipaddr addr) |
| 86 | { |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 87 | uint32_t ctrl_reg, data_reg; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 88 | |
| 89 | while ((ctrl_reg = mmio_readl(sii_bar)) & (1 << 25)) ; |
| 90 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 91 | /* Mask out unused/reserved bits, set writes and start transaction. */ |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 92 | ctrl_reg &= 0xfcf80000; |
| 93 | ctrl_reg |= (1 << 25) | (0 << 24) | ((uint32_t) addr & 0x7ffff); |
| 94 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 95 | data_reg = (mmio_readl((sii_bar + 4)) & ~0xff) | val; |
| 96 | mmio_writel(data_reg, (sii_bar + 4)); |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 97 | mmio_writel(ctrl_reg, sii_bar); |
| 98 | |
| 99 | while (mmio_readl(sii_bar) & (1 << 25)) ; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | uint8_t satasii_chip_readb(const chipaddr addr) |
| 103 | { |
| 104 | uint32_t ctrl_reg; |
| 105 | |
| 106 | while ((ctrl_reg = mmio_readl(sii_bar)) & (1 << 25)) ; |
| 107 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 108 | /* Mask out unused/reserved bits, set reads and start transaction. */ |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 109 | ctrl_reg &= 0xfcf80000; |
| 110 | ctrl_reg |= (1 << 25) | (1 << 24) | ((uint32_t) addr & 0x7ffff); |
| 111 | |
| 112 | mmio_writel(ctrl_reg, sii_bar); |
| 113 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 114 | while (mmio_readl(sii_bar) & (1 << 25)) ; |
Rudolf Marek | 525339c | 2009-05-17 19:46:43 +0000 | [diff] [blame] | 115 | |
| 116 | return (mmio_readl(sii_bar + 4)) & 0xff; |
| 117 | } |