VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / include / asm-ppc64 / machdep.h
1 #ifdef __KERNEL__
2 #ifndef _PPC64_MACHDEP_H
3 #define _PPC64_MACHDEP_H
4
5 /*
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version
9  * 2 of the License, or (at your option) any later version.
10  */
11
12 #include <linux/config.h>
13 #include <linux/seq_file.h>
14 #include <linux/init.h>
15 #include <linux/dma-mapping.h>
16
17 #include <asm/setup.h>
18
19 struct pt_regs;
20 struct pci_bus; 
21 struct device_node;
22 struct iommu_table;
23 struct rtc_time;
24
25 #ifdef CONFIG_SMP
26 struct smp_ops_t {
27         void  (*message_pass)(int target, int msg);
28         int   (*probe)(void);
29         void  (*kick_cpu)(int nr);
30         void  (*setup_cpu)(int nr);
31         void  (*take_timebase)(void);
32         void  (*give_timebase)(void);
33 };
34 #endif
35
36 struct machdep_calls {
37         void            (*hpte_invalidate)(unsigned long slot,
38                                            unsigned long va,
39                                            int large,
40                                            int local);
41         long            (*hpte_updatepp)(unsigned long slot, 
42                                          unsigned long newpp, 
43                                          unsigned long va,
44                                          int large,
45                                          int local);
46         void            (*hpte_updateboltedpp)(unsigned long newpp, 
47                                                unsigned long ea);
48         long            (*hpte_insert)(unsigned long hpte_group,
49                                        unsigned long va,
50                                        unsigned long prpn,
51                                        int secondary, 
52                                        unsigned long hpteflags, 
53                                        int bolted,
54                                        int large);
55         long            (*hpte_remove)(unsigned long hpte_group);
56         void            (*flush_hash_range)(unsigned long context,
57                                             unsigned long number,
58                                             int local);
59
60         void            (*tce_build)(struct iommu_table * tbl,
61                                      long index,
62                                      long npages,
63                                      unsigned long uaddr,
64                                      enum dma_data_direction direction);
65         void            (*tce_free)(struct iommu_table *tbl,
66                                     long index,
67                                     long npages);
68         void            (*tce_flush)(struct iommu_table *tbl);
69
70         void            (*setup_arch)(void);
71         /* Optional, may be NULL. */
72         void            (*get_cpuinfo)(struct seq_file *m);
73
74         void            (*init_IRQ)(void);
75         int             (*get_irq)(struct pt_regs *);
76
77         /* PCI stuff */
78         void            (*pcibios_fixup)(void);
79
80         /* Optional, may be NULL. */
81         void            (*init)(void);
82
83         void            (*restart)(char *cmd);
84         void            (*power_off)(void);
85         void            (*halt)(void);
86         void            (*panic)(char *str);
87
88         int             (*set_rtc_time)(struct rtc_time *);
89         void            (*get_rtc_time)(struct rtc_time *);
90         void            (*get_boot_time)(struct rtc_time *);
91
92         void            (*calibrate_decr)(void);
93
94         void            (*progress)(char *, unsigned short);
95
96         /* Debug interface.  Low level I/O to some terminal device */
97         void            (*udbg_putc)(unsigned char c);
98         unsigned char   (*udbg_getc)(void);
99         int             (*udbg_getc_poll)(void);
100
101         /* Interface for platform error logging */
102         void            (*log_error)(char *buf, unsigned int err_type, int fatal);
103
104         ssize_t         (*nvram_write)(char *buf, size_t count, loff_t *index);
105         ssize_t         (*nvram_read)(char *buf, size_t count, loff_t *index);  
106         ssize_t         (*nvram_size)(void);            
107         int             (*nvram_sync)(void);
108
109         /* Motherboard/chipset features. This is a kind of general purpose
110          * hook used to control some machine specific features (like reset
111          * lines, chip power control, etc...).
112          */
113         long            (*feature_call)(unsigned int feature, ...);
114
115 };
116
117 extern struct machdep_calls ppc_md;
118 extern char cmd_line[COMMAND_LINE_SIZE];
119
120 /* Functions to produce codes on the leds.
121  * The SRC code should be unique for the message category and should
122  * be limited to the lower 24 bits (the upper 8 are set by these funcs),
123  * and (for boot & dump) should be sorted numerically in the order
124  * the events occur.
125  */
126 /* Print a boot progress message. */
127 void ppc64_boot_msg(unsigned int src, const char *msg);
128 /* Print a termination message (print only -- does not stop the kernel) */
129 void ppc64_terminate_msg(unsigned int src, const char *msg);
130 /* Print something that needs attention (device error, etc) */
131 void ppc64_attention_msg(unsigned int src, const char *msg);
132 /* Print a dump progress message. */
133 void ppc64_dump_msg(unsigned int src, const char *msg);
134
135 static inline void log_error(char *buf, unsigned int err_type, int fatal)
136 {
137         if (ppc_md.log_error)
138                 ppc_md.log_error(buf, err_type, fatal);
139 }
140
141 #endif /* _PPC64_MACHDEP_H */
142 #endif /* __KERNEL__ */