- 根目录:
- arch
- powerpc
- platforms
- 44x
- virtex_ml510.c
#include <asm/i8259.h>
#include <linux/pci.h>
#include "44x.h"
static void __devinit ml510_ali_quirk(struct pci_dev *dev)
{
pci_write_config_byte(dev, 0x58, 0x4c);
pci_write_config_byte(dev, 0x44, 0x0d);
pci_write_config_byte(dev, 0x75, 0x0f);
pci_write_config_byte(dev, 0x09, 0xff);
pci_write_config_byte(dev, 0x48, 0x00);
pci_write_config_byte(dev, 0x4a, 0x00);
pci_write_config_byte(dev, 0x4b, 0x60);
pci_write_config_byte(dev, 0x74, 0x06);
}
DECLARE_PCI_FIXUP_EARLY(0x10b9, 0x1533, ml510_ali_quirk);
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29