2 #ifndef _PPC64_MACHDEP_H
3 #define _PPC64_MACHDEP_H
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.
12 #include <linux/config.h>
13 #include <linux/seq_file.h>
14 #include <linux/init.h>
15 #include <linux/dma-mapping.h>
17 #include <asm/setup.h>
28 void (*message_pass
)(int target
, int msg
);
30 void (*kick_cpu
)(int nr
);
31 void (*setup_cpu
)(int nr
);
32 void (*take_timebase
)(void);
33 void (*give_timebase
)(void);
34 int (*cpu_enable
)(unsigned int nr
);
35 int (*cpu_disable
)(void);
36 void (*cpu_die
)(unsigned int nr
);
37 int (*cpu_bootable
)(unsigned int nr
);
41 struct machdep_calls
{
42 void (*hpte_invalidate
)(unsigned long slot
,
46 long (*hpte_updatepp
)(unsigned long slot
,
51 void (*hpte_updateboltedpp
)(unsigned long newpp
,
53 long (*hpte_insert
)(unsigned long hpte_group
,
57 unsigned long hpteflags
,
60 long (*hpte_remove
)(unsigned long hpte_group
);
61 void (*flush_hash_range
)(unsigned long context
,
64 /* special for kexec, to be called in real mode, linar mapping is
65 * destroyed as well */
66 void (*hpte_clear_all
)(void);
68 void (*tce_build
)(struct iommu_table
* tbl
,
72 enum dma_data_direction direction
);
73 void (*tce_free
)(struct iommu_table
*tbl
,
76 void (*tce_flush
)(struct iommu_table
*tbl
);
77 void (*iommu_dev_setup
)(struct pci_dev
*dev
);
78 void (*iommu_bus_setup
)(struct pci_bus
*bus
);
79 void (*irq_bus_setup
)(struct pci_bus
*bus
);
81 int (*probe
)(int platform
);
82 void (*setup_arch
)(void);
83 void (*init_early
)(void);
84 /* Optional, may be NULL. */
85 void (*get_cpuinfo
)(struct seq_file
*m
);
87 void (*init_IRQ
)(void);
88 int (*get_irq
)(struct pt_regs
*);
89 void (*cpu_irq_down
)(void);
92 void (*pcibios_fixup
)(void);
94 void (*restart
)(char *cmd
);
95 void (*power_off
)(void);
97 void (*panic
)(char *str
);
98 void (*cpu_die
)(void);
100 int (*set_rtc_time
)(struct rtc_time
*);
101 void (*get_rtc_time
)(struct rtc_time
*);
102 void (*get_boot_time
)(struct rtc_time
*);
104 void (*calibrate_decr
)(void);
106 void (*progress
)(char *, unsigned short);
108 /* Debug interface. Low level I/O to some terminal device */
109 void (*udbg_putc
)(unsigned char c
);
110 unsigned char (*udbg_getc
)(void);
111 int (*udbg_getc_poll
)(void);
113 /* Interface for platform error logging */
114 void (*log_error
)(char *buf
, unsigned int err_type
, int fatal
);
116 ssize_t (*nvram_write
)(char *buf
, size_t count
, loff_t
*index
);
117 ssize_t (*nvram_read
)(char *buf
, size_t count
, loff_t
*index
);
118 ssize_t (*nvram_size
)(void);
119 int (*nvram_sync
)(void);
121 /* Exception handlers */
122 void (*system_reset_exception
)(struct pt_regs
*regs
);
123 int (*machine_check_exception
)(struct pt_regs
*regs
);
125 /* Motherboard/chipset features. This is a kind of general purpose
126 * hook used to control some machine specific features (like reset
127 * lines, chip power control, etc...).
129 long (*feature_call
)(unsigned int feature
, ...);
131 /* Check availability of legacy devices like i8042 */
132 int (*check_legacy_ioport
)(unsigned int baseport
);
134 /* Get legacy PCI/IDE interrupt mapping */
135 int (*pci_get_legacy_ide_irq
)(struct pci_dev
*dev
, int channel
);
137 /* Get access protection for /dev/mem */
138 pgprot_t (*phys_mem_access_prot
)(struct file
*file
,
139 unsigned long offset
,
145 extern struct machdep_calls ppc_md
;
146 extern char cmd_line
[COMMAND_LINE_SIZE
];
148 #ifdef CONFIG_PPC_PMAC
150 * Power macintoshes have either a CUDA, PMU or SMU controlling
151 * system reset, power, NVRAM, RTC.
153 typedef enum sys_ctrler_kind
{
154 SYS_CTRLER_UNKNOWN
= 0,
159 extern sys_ctrler_t sys_ctrler
;
161 #endif /* CONFIG_PPC_PMAC */
165 /* Functions to produce codes on the leds.
166 * The SRC code should be unique for the message category and should
167 * be limited to the lower 24 bits (the upper 8 are set by these funcs),
168 * and (for boot & dump) should be sorted numerically in the order
171 /* Print a boot progress message. */
172 void ppc64_boot_msg(unsigned int src
, const char *msg
);
173 /* Print a termination message (print only -- does not stop the kernel) */
174 void ppc64_terminate_msg(unsigned int src
, const char *msg
);
175 /* Print something that needs attention (device error, etc) */
176 void ppc64_attention_msg(unsigned int src
, const char *msg
);
177 /* Print a dump progress message. */
178 void ppc64_dump_msg(unsigned int src
, const char *msg
);
180 static inline void log_error(char *buf
, unsigned int err_type
, int fatal
)
182 if (ppc_md
.log_error
)
183 ppc_md
.log_error(buf
, err_type
, fatal
);
186 #endif /* _PPC64_MACHDEP_H */
187 #endif /* __KERNEL__ */