Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de> |
| 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 <stdlib.h> |
| 22 | #include <string.h> |
| 23 | #include <sys/types.h> |
| 24 | #include "flash.h" |
| 25 | |
| 26 | #define PCI_VENDOR_ID_NVIDIA 0x10de |
| 27 | |
Carl-Daniel Hailfinger | fb2c4c3 | 2010-07-17 22:42:33 +0000 | [diff] [blame] | 28 | /* Mask to restrict flash accesses to a 128kB memory window. |
| 29 | * FIXME: Is this size a one-fits-all or card dependent? |
| 30 | */ |
| 31 | #define GFXNVIDIA_MEMMAP_MASK ((1 << 17) - 1) |
| 32 | |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 33 | uint8_t *nvidia_bar; |
| 34 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 35 | const struct pcidev_status gfx_nvidia[] = { |
Michael Karcher | 8448639 | 2010-02-24 00:04:40 +0000 | [diff] [blame] | 36 | {0x10de, 0x0010, NT, "NVIDIA", "Mutara V08 [NV2]" }, |
| 37 | {0x10de, 0x0018, NT, "NVIDIA", "RIVA 128" }, |
| 38 | {0x10de, 0x0020, NT, "NVIDIA", "RIVA TNT" }, |
| 39 | {0x10de, 0x0028, NT, "NVIDIA", "RIVA TNT2/TNT2 Pro" }, |
| 40 | {0x10de, 0x0029, NT, "NVIDIA", "RIVA TNT2 Ultra" }, |
| 41 | {0x10de, 0x002c, NT, "NVIDIA", "Vanta/Vanta LT" }, |
| 42 | {0x10de, 0x002d, OK, "NVIDIA", "RIVA TNT2 Model 64/Model 64 Pro" }, |
| 43 | {0x10de, 0x00a0, NT, "NVIDIA", "Aladdin TNT2" }, |
| 44 | {0x10de, 0x0100, NT, "NVIDIA", "GeForce 256" }, |
| 45 | {0x10de, 0x0101, NT, "NVIDIA", "GeForce DDR" }, |
| 46 | {0x10de, 0x0103, NT, "NVIDIA", "Quadro" }, |
| 47 | {0x10de, 0x0110, NT, "NVIDIA", "GeForce2 MX" }, |
| 48 | {0x10de, 0x0111, NT, "NVIDIA", "GeForce2 MX" }, |
| 49 | {0x10de, 0x0112, NT, "NVIDIA", "GeForce2 GO" }, |
| 50 | {0x10de, 0x0113, NT, "NVIDIA", "Quadro2 MXR" }, |
| 51 | {0x10de, 0x0150, NT, "NVIDIA", "GeForce2 GTS/Pro" }, |
| 52 | {0x10de, 0x0151, NT, "NVIDIA", "GeForce2 GTS" }, |
| 53 | {0x10de, 0x0152, NT, "NVIDIA", "GeForce2 Ultra" }, |
| 54 | {0x10de, 0x0153, NT, "NVIDIA", "Quadro2 Pro" }, |
| 55 | {0x10de, 0x0200, NT, "NVIDIA", "GeForce 3 nFX" }, |
| 56 | {0x10de, 0x0201, NT, "NVIDIA", "GeForce 3 nFX" }, |
| 57 | {0x10de, 0x0202, NT, "NVIDIA", "GeForce 3 nFX Ultra" }, |
| 58 | {0x10de, 0x0203, NT, "NVIDIA", "Quadro 3 DDC" }, |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 59 | |
| 60 | {}, |
| 61 | }; |
| 62 | |
| 63 | int gfxnvidia_init(void) |
| 64 | { |
| 65 | uint32_t reg32; |
| 66 | |
| 67 | get_io_perms(); |
| 68 | |
| 69 | io_base_addr = pcidev_init(PCI_VENDOR_ID_NVIDIA, PCI_BASE_ADDRESS_0, |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 70 | gfx_nvidia); |
| 71 | |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 72 | io_base_addr += 0x300000; |
Sean Nelson | 8e5e73e | 2010-01-09 23:54:05 +0000 | [diff] [blame] | 73 | msg_pinfo("Detected NVIDIA I/O base address: 0x%x.\n", io_base_addr); |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 74 | |
| 75 | /* Allow access to flash interface (will disable screen). */ |
| 76 | reg32 = pci_read_long(pcidev_dev, 0x50); |
| 77 | reg32 &= ~(1 << 0); |
| 78 | pci_write_long(pcidev_dev, 0x50, reg32); |
| 79 | |
| 80 | nvidia_bar = physmap("NVIDIA", io_base_addr, 16 * 1024 * 1024); |
| 81 | |
| 82 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 83 | |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | int gfxnvidia_shutdown(void) |
| 88 | { |
| 89 | uint32_t reg32; |
| 90 | |
| 91 | /* Disallow access to flash interface (and re-enable screen). */ |
| 92 | reg32 = pci_read_long(pcidev_dev, 0x50); |
| 93 | reg32 |= (1 << 0); |
| 94 | pci_write_long(pcidev_dev, 0x50, reg32); |
| 95 | |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 96 | pci_cleanup(pacc); |
| 97 | release_io_perms(); |
| 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | void gfxnvidia_chip_writeb(uint8_t val, chipaddr addr) |
| 102 | { |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame^] | 103 | pci_mmio_writeb(val, nvidia_bar + (addr & GFXNVIDIA_MEMMAP_MASK)); |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | uint8_t gfxnvidia_chip_readb(const chipaddr addr) |
| 107 | { |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame^] | 108 | return pci_mmio_readb(nvidia_bar + (addr & GFXNVIDIA_MEMMAP_MASK)); |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 109 | } |