blob: 487a40389b22328103aabab00ae58089f5e5fad9 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/* $Id: fhc.h,v 1.1 1997/08/08 04:26:40 davem Exp $
* fhc.h: Structures for central/fhc pseudo driver on Sunfire/Starfire/Wildfire.
*
* Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
*/
#ifndef _SPARC64_FHC_H
#define _SPARC64_FHC_H
#include <asm/firehose.h>
#include <asm/oplib.h>
struct linux_fhc;
struct linux_central {
struct linux_fhc *child;
int prom_node;
char prom_name[64];
struct linux_prom_ranges central_ranges[PROMREG_MAX];
int num_central_ranges;
};
struct linux_fhc {
struct linux_fhc *next;
struct linux_central *parent; /* NULL if not central FHC */
struct fhc_regs fhc_regs;
int prom_node;
char prom_name[64];
struct linux_prom_ranges fhc_ranges[PROMREG_MAX];
int num_fhc_ranges;
};
extern struct linux_central *central_bus;
extern void prom_apply_central_ranges(struct linux_central *central,
struct linux_prom_registers *regs,
int nregs);
extern void prom_apply_fhc_ranges(struct linux_fhc *fhc,
struct linux_prom_registers *regs,
int nregs);
#endif /* !(_SPARC64_FHC_H) */
|