blob: 689e0e7dc8d11eb33f6db2ff50fdf7b1d7e53d14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* sparc64 device support
Copyright (C) 1999 Cygnus Solutions. */
#ifndef DEV64_H
#define DEV64_H
/* From libgloss/sparc/erc32-io.c. */
#define ERC32_DEVICE_ADDR 0x1f80000
#define ERC32_DEVICE_LEN (0x2000000 - 0x1f80000)
#define RXADATA 0x01F800E0
#define RXBDATA 0x01F800E4
#define RXSTAT 0x01F800E8
extern device sparc_devices;
/* FIXME: Temporary, until device support ready. */
struct _device { int foo; };
#endif /* DEV64_H */
|