ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-parisc / hardware.h
1 #ifndef _PARISC_HARDWARE_H
2 #define _PARISC_HARDWARE_H
3
4 #include <asm/pdc.h>
5
6 struct parisc_device_id {
7         unsigned char   hw_type;        /* 5 bits used */
8         unsigned char   hversion_rev;   /* 4 bits */
9         unsigned short  hversion;       /* 12 bits */
10         unsigned int    sversion;       /* 20 bits */
11 };
12
13 #define HWTYPE_ANY_ID   0xff
14 #define HVERSION_REV_ANY_ID     0xff
15 #define HVERSION_ANY_ID 0xffff
16 #define SVERSION_ANY_ID 0xffffffffU
17
18 struct hp_hardware {
19         unsigned short  hw_type:5;      /* HPHW_xxx */
20         unsigned short  hversion;
21         unsigned long   sversion:28;
22         unsigned short  opt;
23         const char      name[80];       /* The hardware description */
24 };
25
26 struct parisc_device;
27
28 enum cpu_type {
29         pcx     = 0, /* pa7000          pa 1.0  */
30         pcxs    = 1, /* pa7000          pa 1.1a */
31         pcxt    = 2, /* pa7100          pa 1.1b */
32         pcxt_   = 3, /* pa7200  (t')    pa 1.1c */
33         pcxl    = 4, /* pa7100lc        pa 1.1d */
34         pcxl2   = 5, /* pa7300lc        pa 1.1e */
35         pcxu    = 6, /* pa8000          pa 2.0  */
36         pcxu_   = 7, /* pa8200  (u+)    pa 2.0  */
37         pcxw    = 8, /* pa8500          pa 2.0  */
38         pcxw_   = 9, /* pa8600  (w+)    pa 2.0  */
39         pcxw2   = 10 /* pa8700          pa 2.0  */
40 };
41
42 extern char *cpu_name_version[][2]; /* mapping from enum cpu_type to strings */
43
44 struct parisc_driver;
45
46 struct io_module {
47         volatile uint32_t nothing;              /* reg 0 */
48         volatile uint32_t io_eim;
49         volatile uint32_t io_dc_adata;
50         volatile uint32_t io_ii_cdata;
51         volatile uint32_t io_dma_link;          /* reg 4 */
52         volatile uint32_t io_dma_command;
53         volatile uint32_t io_dma_address;
54         volatile uint32_t io_dma_count;
55         volatile uint32_t io_flex;              /* reg 8 */
56         volatile uint32_t io_spa_address;
57         volatile uint32_t reserved1[2];
58         volatile uint32_t io_command;           /* reg 12 */
59         volatile uint32_t io_status;
60         volatile uint32_t io_control;
61         volatile uint32_t io_data;
62         volatile uint32_t reserved2;            /* reg 16 */
63         volatile uint32_t chain_addr;
64         volatile uint32_t sub_mask_clr;
65         volatile uint32_t reserved3[13];
66         volatile uint32_t undefined[480];
67         volatile uint32_t unpriv[512];
68 };
69
70 struct bc_module {
71         volatile uint32_t unused1[12];
72         volatile uint32_t io_command;
73         volatile uint32_t io_status;
74         volatile uint32_t io_control;
75         volatile uint32_t unused2[1];
76         volatile uint32_t io_err_resp;
77         volatile uint32_t io_err_info;
78         volatile uint32_t io_err_req;
79         volatile uint32_t unused3[11];
80         volatile uint32_t io_io_low;
81         volatile uint32_t io_io_high;
82 };
83
84 #define HPHW_NPROC     0 
85 #define HPHW_MEMORY    1       
86 #define HPHW_B_DMA     2
87 #define HPHW_OBSOLETE  3
88 #define HPHW_A_DMA     4
89 #define HPHW_A_DIRECT  5
90 #define HPHW_OTHER     6
91 #define HPHW_BCPORT    7
92 #define HPHW_CIO       8
93 #define HPHW_CONSOLE   9
94 #define HPHW_FIO       10
95 #define HPHW_BA        11
96 #define HPHW_IOA       12
97 #define HPHW_BRIDGE    13
98 #define HPHW_FABRIC    14
99 #define HPHW_FAULTY    31
100
101
102 /* hardware.c: */
103 extern const char *parisc_hardware_description(struct parisc_device_id *id);
104 extern enum cpu_type parisc_get_cpu_type(unsigned long hversion);
105
106 struct pci_dev;
107
108 /* drivers.c: */
109 extern struct parisc_device *alloc_pa_dev(unsigned long hpa,
110                 struct hardware_path *path);
111 extern int register_parisc_device(struct parisc_device *dev);
112 extern int register_parisc_driver(struct parisc_driver *driver);
113 extern int count_parisc_driver(struct parisc_driver *driver);
114 extern int unregister_parisc_driver(struct parisc_driver *driver);
115 extern void walk_central_bus(void);
116 extern void fixup_child_irqs(struct parisc_device *parent, int irqbase,
117                 int (*choose)(struct parisc_device *parent));
118 extern void print_subdevices(struct parisc_device *dev);
119 extern const struct parisc_device *find_pa_parent_type(const struct parisc_device *, int);
120 extern void print_parisc_devices(void);
121 extern char *print_pa_hwpath(struct parisc_device *dev, char *path);
122 extern char *print_pci_hwpath(struct pci_dev *dev, char *path);
123 extern void get_pci_node_path(struct pci_dev *dev, struct hardware_path *path);
124
125
126 /* inventory.c: */
127 extern void do_memory_inventory(void);
128 extern void do_device_inventory(void);
129
130 #endif /* _PARISC_HARDWARE_H */