diff options
author | andreast <andreast@FreeBSD.org> | 2013-12-11 22:36:20 +0000 |
---|---|---|
committer | andreast <andreast@FreeBSD.org> | 2013-12-11 22:36:20 +0000 |
commit | 66bcaa96d680466f9c02406d1c9c6f6fa8147efe (patch) | |
tree | 451f1ba31330be9c8b1f330dff4460957da82a74 /sys/dev/tsec/if_tsecreg.h | |
parent | 50221324bd40404e88dea60c7f368087bdd21a77 (diff) | |
download | FreeBSD-src-66bcaa96d680466f9c02406d1c9c6f6fa8147efe.zip FreeBSD-src-66bcaa96d680466f9c02406d1c9c6f6fa8147efe.tar.gz |
MFC r257991, r257992, 257993, 258504
r257991:
Consolidate Apple firmware hacks and improve them by switching on the
presence of mac-io devices in the tree, which uniquely identifies Apple
hardware.
r257992:
Allow OF_decode_addr() to also be able to map resources on big-endian
devices. To this end, make PCI device detection rely on the device_type
field rather than name, as per the standard.
r257993:
Make tsec work with the device tree present on the RB800. The previous code
assumed that the MDIO bus was a direct child of the Ethernet interface. It
may not be and indeed on many device trees is not. While here, add proper
locking for MII transactions, which may be on a bus shared by several MACs.
r258504:
Save and restore the trap vectors when doing OF calls on pSeries machines.
It turned out that on pSeries machines the call into OF modified the trap
vectors and this made further behaviour unpredictable.
With this commit I'm now able to boot multi user on a network booted
environment on my IntelliStation 285. This is a POWER5+ machine.
Diffstat (limited to 'sys/dev/tsec/if_tsecreg.h')
-rw-r--r-- | sys/dev/tsec/if_tsecreg.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/dev/tsec/if_tsecreg.h b/sys/dev/tsec/if_tsecreg.h index 4ba1997..1994298 100644 --- a/sys/dev/tsec/if_tsecreg.h +++ b/sys/dev/tsec/if_tsecreg.h @@ -77,12 +77,13 @@ * register */ #define TSEC_REG_HAFDUP 0x50c /* Half-duplex register */ #define TSEC_REG_MAXFRM 0x510 /* Maximum frame length register */ -#define TSEC_REG_MIIMCFG 0x520 /* MII Management configuration register */ -#define TSEC_REG_MIIMCOM 0x524 /* MII Management command register */ -#define TSEC_REG_MIIMADD 0x528 /* MII Management address register */ -#define TSEC_REG_MIIMCON 0x52c /* MII Management control register */ -#define TSEC_REG_MIIMSTAT 0x530 /* MII Management status register */ -#define TSEC_REG_MIIMIND 0x534 /* MII Management indicator register */ +#define TSEC_REG_MIIBASE 0x520 /* MII Management base, rest offsets */ +#define TSEC_REG_MIIMCFG 0x0 /* MII Management configuration register */ +#define TSEC_REG_MIIMCOM 0x4 /* MII Management command register */ +#define TSEC_REG_MIIMADD 0x8 /* MII Management address register */ +#define TSEC_REG_MIIMCON 0xc /* MII Management control register */ +#define TSEC_REG_MIIMSTAT 0x10 /* MII Management status register */ +#define TSEC_REG_MIIMIND 0x14 /* MII Management indicator register */ #define TSEC_REG_IFSTAT 0x53c /* Interface status register */ #define TSEC_REG_MACSTNADDR1 0x540 /* Station address register, part 1 */ #define TSEC_REG_MACSTNADDR2 0x544 /* Station address register, part 2 */ |