|
@@ -94,3 +94,66 @@ static struct
|
|
|
unsigned long hbase;
|
|
|
} t2_saved_config __attribute((common));
|
|
|
|
|
|
+/*
|
|
|
+ * Given a bus, device, and function number, compute resulting
|
|
|
+ * configuration space address and setup the T2_HAXR2 register
|
|
|
+ * accordingly. It is therefore not safe to have concurrent
|
|
|
+ * invocations to configuration space access routines, but there
|
|
|
+ * really shouldn't be any need for this.
|
|
|
+ *
|
|
|
+ * Type 0:
|
|
|
+ *
|
|
|
+ * 3 3|3 3 2 2|2 2 2 2|2 2 2 2|1 1 1 1|1 1 1 1|1 1
|
|
|
+ * 3 2|1 0 9 8|7 6 5 4|3 2 1 0|9 8 7 6|5 4 3 2|1 0 9 8|7 6 5 4|3 2 1 0
|
|
|
+ * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
+ * | | |D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|F|F|F|R|R|R|R|R|R|0|0|
|
|
|
+ * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
+ *
|
|
|
+ * 31:11 Device select bit.
|
|
|
+ * 10:8 Function number
|
|
|
+ * 7:2 Register number
|
|
|
+ *
|
|
|
+ * Type 1:
|
|
|
+ *
|
|
|
+ * 3 3|3 3 2 2|2 2 2 2|2 2 2 2|1 1 1 1|1 1 1 1|1 1
|
|
|
+ * 3 2|1 0 9 8|7 6 5 4|3 2 1 0|9 8 7 6|5 4 3 2|1 0 9 8|7 6 5 4|3 2 1 0
|
|
|
+ * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
+ * | | | | | | | | | | |B|B|B|B|B|B|B|B|D|D|D|D|D|F|F|F|R|R|R|R|R|R|0|1|
|
|
|
+ * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
+ *
|
|
|
+ * 31:24 reserved
|
|
|
+ * 23:16 bus number (8 bits = 128 possible buses)
|
|
|
+ * 15:11 Device number (5 bits)
|
|
|
+ * 10:8 function number
|
|
|
+ * 7:2 register number
|
|
|
+ *
|
|
|
+ * Notes:
|
|
|
+ * The function number selects which function of a multi-function device
|
|
|
+ * (e.g., SCSI and Ethernet).
|
|
|
+ *
|
|
|
+ * The register selects a DWORD (32 bit) register offset. Hence it
|
|
|
+ * doesn't get shifted by 2 bits as we want to "drop" the bottom two
|
|
|
+ * bits.
|
|
|
+ */
|
|
|
+
|
|
|
+static int
|
|
|
+mk_conf_addr(struct pci_bus *pbus, unsigned int device_fn, int where,
|
|
|
+ unsigned long *pci_addr, unsigned char *type1)
|
|
|
+{
|
|
|
+ unsigned long addr;
|
|
|
+ u8 bus = pbus->number;
|
|
|
+
|
|
|
+ DBG(("mk_conf_addr(bus=%d, dfn=0x%x, where=0x%x,"
|
|
|
+ " addr=0x%lx, type1=0x%x)\n",
|
|
|
+ bus, device_fn, where, pci_addr, type1));
|
|
|
+
|
|
|
+ if (bus == 0) {
|
|
|
+ int device = device_fn >> 3;
|
|
|
+
|
|
|
+ /* Type 0 configuration cycle. */
|
|
|
+
|
|
|
+ if (device > 8) {
|
|
|
+ DBG(("mk_conf_addr: device (%d)>20, returning -1\n",
|
|
|
+ device));
|
|
|
+ return -1;
|
|
|
+ }
|