Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2009 Carl-Daniel Hailfinger |
| 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 |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | */ |
| 20 | |
| 21 | #include <stdint.h> |
| 22 | #include <string.h> |
| 23 | #include <stdlib.h> |
| 24 | #include <fcntl.h> |
| 25 | #include <sys/types.h> |
| 26 | #include <sys/stat.h> |
| 27 | #include <errno.h> |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 28 | #include "flash.h" |
| 29 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 30 | #if NEED_PCI == 1 |
Christian Ruppert | 0cdb031 | 2009-05-14 18:57:26 +0000 | [diff] [blame] | 31 | struct pci_dev *pci_dev_find_filter(struct pci_filter filter) |
| 32 | { |
| 33 | struct pci_dev *temp; |
| 34 | |
| 35 | for (temp = pacc->devices; temp; temp = temp->next) |
| 36 | if (pci_filter_match(&filter, temp)) |
| 37 | return temp; |
| 38 | |
| 39 | return NULL; |
| 40 | } |
| 41 | |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 42 | struct pci_dev *pci_dev_find_vendorclass(uint16_t vendor, uint16_t class) |
| 43 | { |
| 44 | struct pci_dev *temp; |
| 45 | struct pci_filter filter; |
| 46 | uint16_t tmp2; |
| 47 | |
| 48 | pci_filter_init(NULL, &filter); |
| 49 | filter.vendor = vendor; |
| 50 | |
| 51 | for (temp = pacc->devices; temp; temp = temp->next) |
| 52 | if (pci_filter_match(&filter, temp)) { |
| 53 | /* Read PCI class */ |
| 54 | tmp2 = pci_read_word(temp, 0x0a); |
| 55 | if (tmp2 == class) |
| 56 | return temp; |
| 57 | } |
| 58 | |
| 59 | return NULL; |
| 60 | } |
| 61 | |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 62 | struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device) |
| 63 | { |
| 64 | struct pci_dev *temp; |
| 65 | struct pci_filter filter; |
| 66 | |
| 67 | pci_filter_init(NULL, &filter); |
| 68 | filter.vendor = vendor; |
| 69 | filter.device = device; |
| 70 | |
| 71 | for (temp = pacc->devices; temp; temp = temp->next) |
| 72 | if (pci_filter_match(&filter, temp)) |
| 73 | return temp; |
| 74 | |
| 75 | return NULL; |
| 76 | } |
| 77 | |
| 78 | struct pci_dev *pci_card_find(uint16_t vendor, uint16_t device, |
| 79 | uint16_t card_vendor, uint16_t card_device) |
| 80 | { |
| 81 | struct pci_dev *temp; |
| 82 | struct pci_filter filter; |
| 83 | |
| 84 | pci_filter_init(NULL, &filter); |
| 85 | filter.vendor = vendor; |
| 86 | filter.device = device; |
| 87 | |
| 88 | for (temp = pacc->devices; temp; temp = temp->next) |
| 89 | if (pci_filter_match(&filter, temp)) { |
| 90 | if ((card_vendor == |
| 91 | pci_read_word(temp, PCI_SUBSYSTEM_VENDOR_ID)) |
| 92 | && (card_device == |
| 93 | pci_read_word(temp, PCI_SUBSYSTEM_ID))) |
| 94 | return temp; |
| 95 | } |
| 96 | |
| 97 | return NULL; |
| 98 | } |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 99 | #endif |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 100 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 101 | #if INTERNAL_SUPPORT == 1 |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 102 | struct superio superio = {}; |
| 103 | |
| 104 | void probe_superio(void) |
| 105 | { |
| 106 | superio = probe_superio_ite(); |
| 107 | #if 0 /* Winbond SuperI/O code is not yet available. */ |
| 108 | if (superio.vendor == SUPERIO_VENDOR_NONE) |
| 109 | superio = probe_superio_winbond(); |
| 110 | #endif |
| 111 | } |
| 112 | |
Uwe Hermann | a086932 | 2009-05-14 20:41:57 +0000 | [diff] [blame] | 113 | int internal_init(void) |
| 114 | { |
| 115 | int ret = 0; |
| 116 | |
Carl-Daniel Hailfinger | 3b7e75a | 2009-05-14 21:41:10 +0000 | [diff] [blame] | 117 | get_io_perms(); |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 118 | |
| 119 | /* Initialize PCI access for flash enables */ |
| 120 | pacc = pci_alloc(); /* Get the pci_access structure */ |
| 121 | /* Set all options you want -- here we stick with the defaults */ |
| 122 | pci_init(pacc); /* Initialize the PCI library */ |
| 123 | pci_scan_bus(pacc); /* We want to get the list of devices */ |
| 124 | |
| 125 | /* We look at the lbtable first to see if we need a |
| 126 | * mainboard specific flash enable sequence. |
| 127 | */ |
| 128 | coreboot_init(); |
Michael Karcher | 6701ee8 | 2010-01-20 14:14:11 +0000 | [diff] [blame] | 129 | dmi_init(); |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 130 | |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 131 | /* Probe for the SuperI/O chip and fill global struct superio. */ |
| 132 | probe_superio(); |
| 133 | |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 134 | /* try to enable it. Failure IS an option, since not all motherboards |
| 135 | * really need this to be done, etc., etc. |
| 136 | */ |
| 137 | ret = chipset_flash_enable(); |
| 138 | if (ret == -2) { |
| 139 | printf("WARNING: No chipset found. Flash detection " |
| 140 | "will most likely fail.\n"); |
| 141 | } |
| 142 | |
| 143 | board_flash_enable(lb_vendor, lb_part); |
| 144 | |
Carl-Daniel Hailfinger | 9246ff4 | 2009-09-02 13:43:56 +0000 | [diff] [blame] | 145 | /* Even if chipset init returns an error code, we don't want to abort. |
| 146 | * The error code might have been a warning only. |
| 147 | * Besides that, we don't check the board enable return code either. |
| 148 | */ |
| 149 | return 0; |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | int internal_shutdown(void) |
| 153 | { |
Carl-Daniel Hailfinger | db41c59 | 2009-08-09 21:50:24 +0000 | [diff] [blame] | 154 | release_io_perms(); |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 155 | |
| 156 | return 0; |
| 157 | } |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 158 | #endif |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 159 | |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 160 | void internal_chip_writeb(uint8_t val, chipaddr addr) |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 161 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 162 | mmio_writeb(val, (void *) addr); |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 165 | void internal_chip_writew(uint16_t val, chipaddr addr) |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 166 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 167 | mmio_writew(val, (void *) addr); |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 170 | void internal_chip_writel(uint32_t val, chipaddr addr) |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 171 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 172 | mmio_writel(val, (void *) addr); |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 175 | uint8_t internal_chip_readb(const chipaddr addr) |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 176 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 177 | return mmio_readb((void *) addr); |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 180 | uint16_t internal_chip_readw(const chipaddr addr) |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 181 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 182 | return mmio_readw((void *) addr); |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 185 | uint32_t internal_chip_readl(const chipaddr addr) |
Carl-Daniel Hailfinger | 702218d | 2009-05-08 17:43:22 +0000 | [diff] [blame] | 186 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 187 | return mmio_readl((void *) addr); |
| 188 | } |
| 189 | |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 190 | void internal_chip_readn(uint8_t *buf, const chipaddr addr, size_t len) |
| 191 | { |
| 192 | memcpy(buf, (void *)addr, len); |
| 193 | return; |
| 194 | } |