mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 14:11:15 +02:00
Add Winbond W836xx SuperI/O detection
Add ITE IT8707F/IT8710F detection. Note that we autodetect those chips, but we don't handle their flash translation features automatically yet. Corresponding to flashrom svn r1533. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
This commit is contained in:
@ -246,6 +246,7 @@ void print_supported_pcidevs(const struct pcidev_status *devs);
|
||||
/* board_enable.c */
|
||||
void w836xx_ext_enter(uint16_t port);
|
||||
void w836xx_ext_leave(uint16_t port);
|
||||
void probe_superio_winbond(void);
|
||||
int it8705f_write_enable(uint8_t port);
|
||||
uint8_t sio_read(uint16_t port, uint8_t reg);
|
||||
void sio_write(uint16_t port, uint8_t reg, uint8_t data);
|
||||
@ -290,6 +291,7 @@ extern struct superio superios[];
|
||||
extern int superio_count;
|
||||
#define SUPERIO_VENDOR_NONE 0x0
|
||||
#define SUPERIO_VENDOR_ITE 0x1
|
||||
#define SUPERIO_VENDOR_WINBOND 0x2
|
||||
#endif
|
||||
#if NEED_PCI == 1
|
||||
struct pci_dev *pci_dev_find_filter(struct pci_filter filter);
|
||||
|
Reference in New Issue
Block a user