diff options
Diffstat (limited to 'include/asm-ppc64')
| -rw-r--r-- | include/asm-ppc64/eeh.h | 39 | ||||
| -rw-r--r-- | include/asm-ppc64/io.h | 42 | ||||
| -rw-r--r-- | include/asm-ppc64/msgbuf.h | 27 | ||||
| -rw-r--r-- | include/asm-ppc64/param.h | 31 | ||||
| -rw-r--r-- | include/asm-ppc64/pci-bridge.h | 45 | ||||
| -rw-r--r-- | include/asm-ppc64/prom.h | 19 | ||||
| -rw-r--r-- | include/asm-ppc64/segment.h | 6 | ||||
| -rw-r--r-- | include/asm-ppc64/setup.h | 6 | ||||
| -rw-r--r-- | include/asm-ppc64/spinlock.h | 191 | ||||
| -rw-r--r-- | include/asm-ppc64/spinlock_types.h | 20 | ||||
| -rw-r--r-- | include/asm-ppc64/timex.h | 26 | ||||
| -rw-r--r-- | include/asm-ppc64/topology.h | 69 | ||||
| -rw-r--r-- | include/asm-ppc64/user.h | 58 |
13 files changed, 187 insertions, 392 deletions
diff --git a/include/asm-ppc64/eeh.h b/include/asm-ppc64/eeh.h index 94298b106a4b..40c8eb57493e 100644 --- a/include/asm-ppc64/eeh.h +++ b/include/asm-ppc64/eeh.h | |||
| @@ -219,23 +219,24 @@ static inline void eeh_raw_writeq(u64 val, volatile void __iomem *addr) | |||
| 219 | static inline void eeh_memset_io(volatile void __iomem *addr, int c, | 219 | static inline void eeh_memset_io(volatile void __iomem *addr, int c, |
| 220 | unsigned long n) | 220 | unsigned long n) |
| 221 | { | 221 | { |
| 222 | void *p = (void __force *)addr; | ||
| 222 | u32 lc = c; | 223 | u32 lc = c; |
| 223 | lc |= lc << 8; | 224 | lc |= lc << 8; |
| 224 | lc |= lc << 16; | 225 | lc |= lc << 16; |
| 225 | 226 | ||
| 226 | while(n && !EEH_CHECK_ALIGN(addr, 4)) { | 227 | while(n && !EEH_CHECK_ALIGN(p, 4)) { |
| 227 | *((volatile u8 *)addr) = c; | 228 | *((volatile u8 *)p) = c; |
| 228 | addr = (void *)((unsigned long)addr + 1); | 229 | p++; |
| 229 | n--; | 230 | n--; |
| 230 | } | 231 | } |
| 231 | while(n >= 4) { | 232 | while(n >= 4) { |
| 232 | *((volatile u32 *)addr) = lc; | 233 | *((volatile u32 *)p) = lc; |
| 233 | addr = (void *)((unsigned long)addr + 4); | 234 | p += 4; |
| 234 | n -= 4; | 235 | n -= 4; |
| 235 | } | 236 | } |
| 236 | while(n) { | 237 | while(n) { |
| 237 | *((volatile u8 *)addr) = c; | 238 | *((volatile u8 *)p) = c; |
| 238 | addr = (void *)((unsigned long)addr + 1); | 239 | p++; |
| 239 | n--; | 240 | n--; |
| 240 | } | 241 | } |
| 241 | __asm__ __volatile__ ("sync" : : : "memory"); | 242 | __asm__ __volatile__ ("sync" : : : "memory"); |
| @@ -250,22 +251,22 @@ static inline void eeh_memcpy_fromio(void *dest, const volatile void __iomem *sr | |||
| 250 | while(n && (!EEH_CHECK_ALIGN(vsrc, 4) || !EEH_CHECK_ALIGN(dest, 4))) { | 251 | while(n && (!EEH_CHECK_ALIGN(vsrc, 4) || !EEH_CHECK_ALIGN(dest, 4))) { |
| 251 | *((u8 *)dest) = *((volatile u8 *)vsrc); | 252 | *((u8 *)dest) = *((volatile u8 *)vsrc); |
| 252 | __asm__ __volatile__ ("eieio" : : : "memory"); | 253 | __asm__ __volatile__ ("eieio" : : : "memory"); |
| 253 | vsrc = (void *)((unsigned long)vsrc + 1); | 254 | vsrc++; |
| 254 | dest = (void *)((unsigned long)dest + 1); | 255 | dest++; |
| 255 | n--; | 256 | n--; |
| 256 | } | 257 | } |
| 257 | while(n > 4) { | 258 | while(n > 4) { |
| 258 | *((u32 *)dest) = *((volatile u32 *)vsrc); | 259 | *((u32 *)dest) = *((volatile u32 *)vsrc); |
| 259 | __asm__ __volatile__ ("eieio" : : : "memory"); | 260 | __asm__ __volatile__ ("eieio" : : : "memory"); |
| 260 | vsrc = (void *)((unsigned long)vsrc + 4); | 261 | vsrc += 4; |
| 261 | dest = (void *)((unsigned long)dest + 4); | 262 | dest += 4; |
| 262 | n -= 4; | 263 | n -= 4; |
| 263 | } | 264 | } |
| 264 | while(n) { | 265 | while(n) { |
| 265 | *((u8 *)dest) = *((volatile u8 *)vsrc); | 266 | *((u8 *)dest) = *((volatile u8 *)vsrc); |
| 266 | __asm__ __volatile__ ("eieio" : : : "memory"); | 267 | __asm__ __volatile__ ("eieio" : : : "memory"); |
| 267 | vsrc = (void *)((unsigned long)vsrc + 1); | 268 | vsrc++; |
| 268 | dest = (void *)((unsigned long)dest + 1); | 269 | dest++; |
| 269 | n--; | 270 | n--; |
| 270 | } | 271 | } |
| 271 | __asm__ __volatile__ ("sync" : : : "memory"); | 272 | __asm__ __volatile__ ("sync" : : : "memory"); |
| @@ -286,20 +287,20 @@ static inline void eeh_memcpy_toio(volatile void __iomem *dest, const void *src, | |||
| 286 | 287 | ||
| 287 | while(n && (!EEH_CHECK_ALIGN(vdest, 4) || !EEH_CHECK_ALIGN(src, 4))) { | 288 | while(n && (!EEH_CHECK_ALIGN(vdest, 4) || !EEH_CHECK_ALIGN(src, 4))) { |
| 288 | *((volatile u8 *)vdest) = *((u8 *)src); | 289 | *((volatile u8 *)vdest) = *((u8 *)src); |
| 289 | src = (void *)((unsigned long)src + 1); | 290 | src++; |
| 290 | vdest = (void *)((unsigned long)vdest + 1); | 291 | vdest++; |
| 291 | n--; | 292 | n--; |
| 292 | } | 293 | } |
| 293 | while(n > 4) { | 294 | while(n > 4) { |
| 294 | *((volatile u32 *)vdest) = *((volatile u32 *)src); | 295 | *((volatile u32 *)vdest) = *((volatile u32 *)src); |
| 295 | src = (void *)((unsigned long)src + 4); | 296 | src += 4; |
| 296 | vdest = (void *)((unsigned long)vdest + 4); | 297 | vdest += 4; |
| 297 | n-=4; | 298 | n-=4; |
| 298 | } | 299 | } |
| 299 | while(n) { | 300 | while(n) { |
| 300 | *((volatile u8 *)vdest) = *((u8 *)src); | 301 | *((volatile u8 *)vdest) = *((u8 *)src); |
| 301 | src = (void *)((unsigned long)src + 1); | 302 | src++; |
| 302 | vdest = (void *)((unsigned long)vdest + 1); | 303 | vdest++; |
| 303 | n--; | 304 | n--; |
| 304 | } | 305 | } |
| 305 | __asm__ __volatile__ ("sync" : : : "memory"); | 306 | __asm__ __volatile__ ("sync" : : : "memory"); |
diff --git a/include/asm-ppc64/io.h b/include/asm-ppc64/io.h index aba1dfa388ba..59c958aea4db 100644 --- a/include/asm-ppc64/io.h +++ b/include/asm-ppc64/io.h | |||
| @@ -20,10 +20,10 @@ | |||
| 20 | 20 | ||
| 21 | #include <asm-generic/iomap.h> | 21 | #include <asm-generic/iomap.h> |
| 22 | 22 | ||
| 23 | #define __ide_mm_insw(p, a, c) _insw_ns((volatile u16 *)(p), (a), (c)) | 23 | #define __ide_mm_insw(p, a, c) _insw_ns((volatile u16 __iomem *)(p), (a), (c)) |
| 24 | #define __ide_mm_insl(p, a, c) _insl_ns((volatile u32 *)(p), (a), (c)) | 24 | #define __ide_mm_insl(p, a, c) _insl_ns((volatile u32 __iomem *)(p), (a), (c)) |
| 25 | #define __ide_mm_outsw(p, a, c) _outsw_ns((volatile u16 *)(p), (a), (c)) | 25 | #define __ide_mm_outsw(p, a, c) _outsw_ns((volatile u16 __iomem *)(p), (a), (c)) |
| 26 | #define __ide_mm_outsl(p, a, c) _outsl_ns((volatile u32 *)(p), (a), (c)) | 26 | #define __ide_mm_outsl(p, a, c) _outsl_ns((volatile u32 __iomem *)(p), (a), (c)) |
| 27 | 27 | ||
| 28 | 28 | ||
| 29 | #define SIO_CONFIG_RA 0x398 | 29 | #define SIO_CONFIG_RA 0x398 |
| @@ -71,8 +71,8 @@ extern unsigned long io_page_mask; | |||
| 71 | * Neither do the standard versions now, these are just here | 71 | * Neither do the standard versions now, these are just here |
| 72 | * for older code. | 72 | * for older code. |
| 73 | */ | 73 | */ |
| 74 | #define insw_ns(port, buf, ns) _insw_ns((u16 *)((port)+pci_io_base), (buf), (ns)) | 74 | #define insw_ns(port, buf, ns) _insw_ns((u16 __iomem *)((port)+pci_io_base), (buf), (ns)) |
| 75 | #define insl_ns(port, buf, nl) _insl_ns((u32 *)((port)+pci_io_base), (buf), (nl)) | 75 | #define insl_ns(port, buf, nl) _insl_ns((u32 __iomem *)((port)+pci_io_base), (buf), (nl)) |
| 76 | #else | 76 | #else |
| 77 | 77 | ||
| 78 | static inline unsigned char __raw_readb(const volatile void __iomem *addr) | 78 | static inline unsigned char __raw_readb(const volatile void __iomem *addr) |
| @@ -136,9 +136,9 @@ static inline void __raw_writeq(unsigned long v, volatile void __iomem *addr) | |||
| 136 | #define insw_ns(port, buf, ns) eeh_insw_ns((port), (buf), (ns)) | 136 | #define insw_ns(port, buf, ns) eeh_insw_ns((port), (buf), (ns)) |
| 137 | #define insl_ns(port, buf, nl) eeh_insl_ns((port), (buf), (nl)) | 137 | #define insl_ns(port, buf, nl) eeh_insl_ns((port), (buf), (nl)) |
| 138 | 138 | ||
| 139 | #define outsb(port, buf, ns) _outsb((u8 *)((port)+pci_io_base), (buf), (ns)) | 139 | #define outsb(port, buf, ns) _outsb((u8 __iomem *)((port)+pci_io_base), (buf), (ns)) |
| 140 | #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+pci_io_base), (buf), (ns)) | 140 | #define outsw(port, buf, ns) _outsw_ns((u16 __iomem *)((port)+pci_io_base), (buf), (ns)) |
| 141 | #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+pci_io_base), (buf), (nl)) | 141 | #define outsl(port, buf, nl) _outsl_ns((u32 __iomem *)((port)+pci_io_base), (buf), (nl)) |
| 142 | 142 | ||
| 143 | #endif | 143 | #endif |
| 144 | 144 | ||
| @@ -147,16 +147,16 @@ static inline void __raw_writeq(unsigned long v, volatile void __iomem *addr) | |||
| 147 | #define readl_relaxed(addr) readl(addr) | 147 | #define readl_relaxed(addr) readl(addr) |
| 148 | #define readq_relaxed(addr) readq(addr) | 148 | #define readq_relaxed(addr) readq(addr) |
| 149 | 149 | ||
| 150 | extern void _insb(volatile u8 *port, void *buf, int ns); | 150 | extern void _insb(volatile u8 __iomem *port, void *buf, int ns); |
| 151 | extern void _outsb(volatile u8 *port, const void *buf, int ns); | 151 | extern void _outsb(volatile u8 __iomem *port, const void *buf, int ns); |
| 152 | extern void _insw(volatile u16 *port, void *buf, int ns); | 152 | extern void _insw(volatile u16 __iomem *port, void *buf, int ns); |
| 153 | extern void _outsw(volatile u16 *port, const void *buf, int ns); | 153 | extern void _outsw(volatile u16 __iomem *port, const void *buf, int ns); |
| 154 | extern void _insl(volatile u32 *port, void *buf, int nl); | 154 | extern void _insl(volatile u32 __iomem *port, void *buf, int nl); |
| 155 | extern void _outsl(volatile u32 *port, const void *buf, int nl); | 155 | extern void _outsl(volatile u32 __iomem *port, const void *buf, int nl); |
| 156 | extern void _insw_ns(volatile u16 *port, void *buf, int ns); | 156 | extern void _insw_ns(volatile u16 __iomem *port, void *buf, int ns); |
| 157 | extern void _outsw_ns(volatile u16 *port, const void *buf, int ns); | 157 | extern void _outsw_ns(volatile u16 __iomem *port, const void *buf, int ns); |
| 158 | extern void _insl_ns(volatile u32 *port, void *buf, int nl); | 158 | extern void _insl_ns(volatile u32 __iomem *port, void *buf, int nl); |
| 159 | extern void _outsl_ns(volatile u32 *port, const void *buf, int nl); | 159 | extern void _outsl_ns(volatile u32 __iomem *port, const void *buf, int nl); |
| 160 | 160 | ||
| 161 | #define mmiowb() | 161 | #define mmiowb() |
| 162 | 162 | ||
| @@ -176,8 +176,8 @@ extern void _outsl_ns(volatile u32 *port, const void *buf, int nl); | |||
| 176 | * Neither do the standard versions now, these are just here | 176 | * Neither do the standard versions now, these are just here |
| 177 | * for older code. | 177 | * for older code. |
| 178 | */ | 178 | */ |
| 179 | #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+pci_io_base), (buf), (ns)) | 179 | #define outsw_ns(port, buf, ns) _outsw_ns((u16 __iomem *)((port)+pci_io_base), (buf), (ns)) |
| 180 | #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+pci_io_base), (buf), (nl)) | 180 | #define outsl_ns(port, buf, nl) _outsl_ns((u32 __iomem *)((port)+pci_io_base), (buf), (nl)) |
| 181 | 181 | ||
| 182 | 182 | ||
| 183 | #define IO_SPACE_LIMIT ~(0UL) | 183 | #define IO_SPACE_LIMIT ~(0UL) |
diff --git a/include/asm-ppc64/msgbuf.h b/include/asm-ppc64/msgbuf.h deleted file mode 100644 index 31c1cbf133cc..000000000000 --- a/include/asm-ppc64/msgbuf.h +++ /dev/null | |||
| @@ -1,27 +0,0 @@ | |||
| 1 | #ifndef _PPC64_MSGBUF_H | ||
| 2 | #define _PPC64_MSGBUF_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * The msqid64_ds structure for the PPC architecture. | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU General Public License | ||
| 9 | * as published by the Free Software Foundation; either version | ||
| 10 | * 2 of the License, or (at your option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | struct msqid64_ds { | ||
| 14 | struct ipc64_perm msg_perm; | ||
| 15 | __kernel_time_t msg_stime; /* last msgsnd time */ | ||
| 16 | __kernel_time_t msg_rtime; /* last msgrcv time */ | ||
| 17 | __kernel_time_t msg_ctime; /* last change time */ | ||
| 18 | unsigned long msg_cbytes; /* current number of bytes on queue */ | ||
| 19 | unsigned long msg_qnum; /* number of messages in queue */ | ||
| 20 | unsigned long msg_qbytes; /* max number of bytes on queue */ | ||
| 21 | __kernel_pid_t msg_lspid; /* pid of last msgsnd */ | ||
| 22 | __kernel_pid_t msg_lrpid; /* last receive pid */ | ||
| 23 | unsigned long __unused1; | ||
| 24 | unsigned long __unused2; | ||
| 25 | }; | ||
| 26 | |||
| 27 | #endif /* _PPC64_MSGBUF_H */ | ||
diff --git a/include/asm-ppc64/param.h b/include/asm-ppc64/param.h deleted file mode 100644 index 76c212d475b3..000000000000 --- a/include/asm-ppc64/param.h +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | #ifndef _ASM_PPC64_PARAM_H | ||
| 2 | #define _ASM_PPC64_PARAM_H | ||
| 3 | |||
| 4 | #include <linux/config.h> | ||
| 5 | |||
| 6 | /* | ||
| 7 | * This program is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU General Public License | ||
| 9 | * as published by the Free Software Foundation; either version | ||
| 10 | * 2 of the License, or (at your option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifdef __KERNEL__ | ||
| 14 | # define HZ CONFIG_HZ /* Internal kernel timer frequency */ | ||
| 15 | # define USER_HZ 100 /* .. some user interfaces are in "ticks" */ | ||
| 16 | # define CLOCKS_PER_SEC (USER_HZ) /* like times() */ | ||
| 17 | #endif | ||
| 18 | |||
| 19 | #ifndef HZ | ||
| 20 | #define HZ 100 | ||
| 21 | #endif | ||
| 22 | |||
| 23 | #define EXEC_PAGESIZE 4096 | ||
| 24 | |||
| 25 | #ifndef NOGROUP | ||
| 26 | #define NOGROUP (-1) | ||
| 27 | #endif | ||
| 28 | |||
| 29 | #define MAXHOSTNAMELEN 64 /* max length of hostname */ | ||
| 30 | |||
| 31 | #endif /* _ASM_PPC64_PARAM_H */ | ||
diff --git a/include/asm-ppc64/pci-bridge.h b/include/asm-ppc64/pci-bridge.h index c4f9023ea5ed..6b4a5b1f695e 100644 --- a/include/asm-ppc64/pci-bridge.h +++ b/include/asm-ppc64/pci-bridge.h | |||
| @@ -48,19 +48,52 @@ struct pci_controller { | |||
| 48 | unsigned long dma_window_size; | 48 | unsigned long dma_window_size; |
| 49 | }; | 49 | }; |
| 50 | 50 | ||
| 51 | /* | ||
| 52 | * PCI stuff, for nodes representing PCI devices, pointed to | ||
| 53 | * by device_node->data. | ||
| 54 | */ | ||
| 55 | struct pci_controller; | ||
| 56 | struct iommu_table; | ||
| 57 | |||
| 58 | struct pci_dn { | ||
| 59 | int busno; /* for pci devices */ | ||
| 60 | int bussubno; /* for pci devices */ | ||
| 61 | int devfn; /* for pci devices */ | ||
| 62 | int eeh_mode; /* See eeh.h for possible EEH_MODEs */ | ||
| 63 | int eeh_config_addr; | ||
| 64 | int eeh_capable; /* from firmware */ | ||
| 65 | int eeh_check_count; /* # times driver ignored error */ | ||
| 66 | int eeh_freeze_count; /* # times this device froze up. */ | ||
| 67 | int eeh_is_bridge; /* device is pci-to-pci bridge */ | ||
| 68 | |||
| 69 | int pci_ext_config_space; /* for pci devices */ | ||
| 70 | struct pci_controller *phb; /* for pci devices */ | ||
| 71 | struct iommu_table *iommu_table; /* for phb's or bridges */ | ||
| 72 | struct pci_dev *pcidev; /* back-pointer to the pci device */ | ||
| 73 | struct device_node *node; /* back-pointer to the device_node */ | ||
| 74 | u32 config_space[16]; /* saved PCI config space */ | ||
| 75 | }; | ||
| 76 | |||
| 77 | /* Get the pointer to a device_node's pci_dn */ | ||
| 78 | #define PCI_DN(dn) ((struct pci_dn *) (dn)->data) | ||
| 79 | |||
| 51 | struct device_node *fetch_dev_dn(struct pci_dev *dev); | 80 | struct device_node *fetch_dev_dn(struct pci_dev *dev); |
| 52 | 81 | ||
| 53 | /* Get a device_node from a pci_dev. This code must be fast except in the case | 82 | /* Get a device_node from a pci_dev. This code must be fast except |
| 54 | * where the sysdata is incorrect and needs to be fixed up (hopefully just once) | 83 | * in the case where the sysdata is incorrect and needs to be fixed |
| 84 | * up (this will only happen once). | ||
| 85 | * In this case the sysdata will have been inherited from a PCI host | ||
| 86 | * bridge or a PCI-PCI bridge further up the tree, so it will point | ||
| 87 | * to a valid struct pci_dn, just not the one we want. | ||
| 55 | */ | 88 | */ |
| 56 | static inline struct device_node *pci_device_to_OF_node(struct pci_dev *dev) | 89 | static inline struct device_node *pci_device_to_OF_node(struct pci_dev *dev) |
| 57 | { | 90 | { |
| 58 | struct device_node *dn = dev->sysdata; | 91 | struct device_node *dn = dev->sysdata; |
| 92 | struct pci_dn *pdn = dn->data; | ||
| 59 | 93 | ||
| 60 | if (dn->devfn == dev->devfn && dn->busno == dev->bus->number) | 94 | if (pdn && pdn->devfn == dev->devfn && pdn->busno == dev->bus->number) |
| 61 | return dn; /* fast path. sysdata is good */ | 95 | return dn; /* fast path. sysdata is good */ |
| 62 | else | 96 | return fetch_dev_dn(dev); |
| 63 | return fetch_dev_dn(dev); | ||
| 64 | } | 97 | } |
| 65 | 98 | ||
| 66 | static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus) | 99 | static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus) |
| @@ -83,7 +116,7 @@ static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus) | |||
| 83 | struct device_node *busdn = bus->sysdata; | 116 | struct device_node *busdn = bus->sysdata; |
| 84 | 117 | ||
| 85 | BUG_ON(busdn == NULL); | 118 | BUG_ON(busdn == NULL); |
| 86 | return busdn->phb; | 119 | return PCI_DN(busdn)->phb; |
| 87 | } | 120 | } |
| 88 | 121 | ||
| 89 | #endif | 122 | #endif |
diff --git a/include/asm-ppc64/prom.h b/include/asm-ppc64/prom.h index dc5330b39509..c02ec1d6b909 100644 --- a/include/asm-ppc64/prom.h +++ b/include/asm-ppc64/prom.h | |||
| @@ -116,14 +116,6 @@ struct property { | |||
| 116 | struct property *next; | 116 | struct property *next; |
| 117 | }; | 117 | }; |
| 118 | 118 | ||
| 119 | /* NOTE: the device_node contains PCI specific info for pci devices. | ||
| 120 | * This perhaps could be hung off the device_node with another struct, | ||
| 121 | * but for now it is directly in the node. The phb ptr is a good | ||
| 122 | * indication of a real PCI node. Other nodes leave these fields zeroed. | ||
| 123 | */ | ||
| 124 | struct pci_controller; | ||
| 125 | struct iommu_table; | ||
| 126 | |||
| 127 | struct device_node { | 119 | struct device_node { |
| 128 | char *name; | 120 | char *name; |
| 129 | char *type; | 121 | char *type; |
| @@ -135,16 +127,6 @@ struct device_node { | |||
| 135 | struct interrupt_info *intrs; | 127 | struct interrupt_info *intrs; |
| 136 | char *full_name; | 128 | char *full_name; |
| 137 | 129 | ||
| 138 | /* PCI stuff probably doesn't belong here */ | ||
| 139 | int busno; /* for pci devices */ | ||
| 140 | int bussubno; /* for pci devices */ | ||
| 141 | int devfn; /* for pci devices */ | ||
| 142 | int eeh_mode; /* See eeh.h for possible EEH_MODEs */ | ||
| 143 | int eeh_config_addr; | ||
| 144 | int pci_ext_config_space; /* for pci devices */ | ||
| 145 | struct pci_controller *phb; /* for pci devices */ | ||
| 146 | struct iommu_table *iommu_table; /* for phb's or bridges */ | ||
| 147 | |||
| 148 | struct property *properties; | 130 | struct property *properties; |
| 149 | struct device_node *parent; | 131 | struct device_node *parent; |
| 150 | struct device_node *child; | 132 | struct device_node *child; |
| @@ -154,6 +136,7 @@ struct device_node { | |||
| 154 | struct proc_dir_entry *pde; /* this node's proc directory */ | 136 | struct proc_dir_entry *pde; /* this node's proc directory */ |
| 155 | struct kref kref; | 137 | struct kref kref; |
| 156 | unsigned long _flags; | 138 | unsigned long _flags; |
| 139 | void *data; | ||
| 157 | }; | 140 | }; |
| 158 | 141 | ||
| 159 | extern struct device_node *of_chosen; | 142 | extern struct device_node *of_chosen; |
diff --git a/include/asm-ppc64/segment.h b/include/asm-ppc64/segment.h deleted file mode 100644 index d80fb68cc79e..000000000000 --- a/include/asm-ppc64/segment.h +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #ifndef __PPC64_SEGMENT_H | ||
| 2 | #define __PPC64_SEGMENT_H | ||
| 3 | |||
| 4 | /* Only here because we have some old header files that expect it.. */ | ||
| 5 | |||
| 6 | #endif /* __PPC64_SEGMENT_H */ | ||
diff --git a/include/asm-ppc64/setup.h b/include/asm-ppc64/setup.h deleted file mode 100644 index b257b8348c73..000000000000 --- a/include/asm-ppc64/setup.h +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #ifndef _PPC_SETUP_H | ||
| 2 | #define _PPC_SETUP_H | ||
| 3 | |||
| 4 | #define COMMAND_LINE_SIZE 512 | ||
| 5 | |||
| 6 | #endif /* _PPC_SETUP_H */ | ||
diff --git a/include/asm-ppc64/spinlock.h b/include/asm-ppc64/spinlock.h index acd11564dd75..14cb895bb607 100644 --- a/include/asm-ppc64/spinlock.h +++ b/include/asm-ppc64/spinlock.h | |||
| @@ -15,36 +15,42 @@ | |||
| 15 | * modify it under the terms of the GNU General Public License | 15 | * modify it under the terms of the GNU General Public License |
| 16 | * as published by the Free Software Foundation; either version | 16 | * as published by the Free Software Foundation; either version |
| 17 | * 2 of the License, or (at your option) any later version. | 17 | * 2 of the License, or (at your option) any later version. |
| 18 | * | ||
| 19 | * (the type definitions are in asm/spinlock_types.h) | ||
| 18 | */ | 20 | */ |
| 19 | #include <linux/config.h> | 21 | #include <linux/config.h> |
| 20 | #include <asm/paca.h> | 22 | #include <asm/paca.h> |
| 21 | #include <asm/hvcall.h> | 23 | #include <asm/hvcall.h> |
| 22 | #include <asm/iSeries/HvCall.h> | 24 | #include <asm/iSeries/HvCall.h> |
| 23 | 25 | ||
| 24 | typedef struct { | 26 | #define __raw_spin_is_locked(x) ((x)->slock != 0) |
| 25 | volatile unsigned int lock; | ||
| 26 | #ifdef CONFIG_PREEMPT | ||
| 27 | unsigned int break_lock; | ||
| 28 | #endif | ||
| 29 | } spinlock_t; | ||
| 30 | 27 | ||
| 31 | typedef struct { | 28 | /* |
| 32 | volatile signed int lock; | 29 | * This returns the old value in the lock, so we succeeded |
| 33 | #ifdef CONFIG_PREEMPT | 30 | * in getting the lock if the return value is 0. |
| 34 | unsigned int break_lock; | 31 | */ |
| 35 | #endif | 32 | static __inline__ unsigned long __spin_trylock(raw_spinlock_t *lock) |
| 36 | } rwlock_t; | 33 | { |
| 34 | unsigned long tmp, tmp2; | ||
| 37 | 35 | ||
| 38 | #ifdef __KERNEL__ | 36 | __asm__ __volatile__( |
| 39 | #define SPIN_LOCK_UNLOCKED (spinlock_t) { 0 } | 37 | " lwz %1,%3(13) # __spin_trylock\n\ |
| 38 | 1: lwarx %0,0,%2\n\ | ||
| 39 | cmpwi 0,%0,0\n\ | ||
| 40 | bne- 2f\n\ | ||
| 41 | stwcx. %1,0,%2\n\ | ||
| 42 | bne- 1b\n\ | ||
| 43 | isync\n\ | ||
| 44 | 2:" : "=&r" (tmp), "=&r" (tmp2) | ||
| 45 | : "r" (&lock->slock), "i" (offsetof(struct paca_struct, lock_token)) | ||
| 46 | : "cr0", "memory"); | ||
| 40 | 47 | ||
| 41 | #define spin_is_locked(x) ((x)->lock != 0) | 48 | return tmp; |
| 42 | #define spin_lock_init(x) do { *(x) = SPIN_LOCK_UNLOCKED; } while(0) | 49 | } |
| 43 | 50 | ||
| 44 | static __inline__ void _raw_spin_unlock(spinlock_t *lock) | 51 | static int __inline__ __raw_spin_trylock(raw_spinlock_t *lock) |
| 45 | { | 52 | { |
| 46 | __asm__ __volatile__("lwsync # spin_unlock": : :"memory"); | 53 | return __spin_trylock(lock) == 0; |
| 47 | lock->lock = 0; | ||
| 48 | } | 54 | } |
| 49 | 55 | ||
| 50 | /* | 56 | /* |
| @@ -64,44 +70,15 @@ static __inline__ void _raw_spin_unlock(spinlock_t *lock) | |||
| 64 | #if defined(CONFIG_PPC_SPLPAR) || defined(CONFIG_PPC_ISERIES) | 70 | #if defined(CONFIG_PPC_SPLPAR) || defined(CONFIG_PPC_ISERIES) |
| 65 | /* We only yield to the hypervisor if we are in shared processor mode */ | 71 | /* We only yield to the hypervisor if we are in shared processor mode */ |
| 66 | #define SHARED_PROCESSOR (get_paca()->lppaca.shared_proc) | 72 | #define SHARED_PROCESSOR (get_paca()->lppaca.shared_proc) |
| 67 | extern void __spin_yield(spinlock_t *lock); | 73 | extern void __spin_yield(raw_spinlock_t *lock); |
| 68 | extern void __rw_yield(rwlock_t *lock); | 74 | extern void __rw_yield(raw_rwlock_t *lock); |
| 69 | #else /* SPLPAR || ISERIES */ | 75 | #else /* SPLPAR || ISERIES */ |
| 70 | #define __spin_yield(x) barrier() | 76 | #define __spin_yield(x) barrier() |
| 71 | #define __rw_yield(x) barrier() | 77 | #define __rw_yield(x) barrier() |
| 72 | #define SHARED_PROCESSOR 0 | 78 | #define SHARED_PROCESSOR 0 |
| 73 | #endif | 79 | #endif |
| 74 | extern void spin_unlock_wait(spinlock_t *lock); | ||
| 75 | |||
| 76 | /* | ||
| 77 | * This returns the old value in the lock, so we succeeded | ||
| 78 | * in getting the lock if the return value is 0. | ||
| 79 | */ | ||
| 80 | static __inline__ unsigned long __spin_trylock(spinlock_t *lock) | ||
| 81 | { | ||
| 82 | unsigned long tmp, tmp2; | ||
| 83 | |||
| 84 | __asm__ __volatile__( | ||
| 85 | " lwz %1,%3(13) # __spin_trylock\n\ | ||
| 86 | 1: lwarx %0,0,%2\n\ | ||
| 87 | cmpwi 0,%0,0\n\ | ||
| 88 | bne- 2f\n\ | ||
| 89 | stwcx. %1,0,%2\n\ | ||
| 90 | bne- 1b\n\ | ||
| 91 | isync\n\ | ||
| 92 | 2:" : "=&r" (tmp), "=&r" (tmp2) | ||
| 93 | : "r" (&lock->lock), "i" (offsetof(struct paca_struct, lock_token)) | ||
| 94 | : "cr0", "memory"); | ||
| 95 | |||
| 96 | return tmp; | ||
| 97 | } | ||
| 98 | |||
| 99 | static int __inline__ _raw_spin_trylock(spinlock_t *lock) | ||
| 100 | { | ||
| 101 | return __spin_trylock(lock) == 0; | ||
| 102 | } | ||
| 103 | 80 | ||
| 104 | static void __inline__ _raw_spin_lock(spinlock_t *lock) | 81 | static void __inline__ __raw_spin_lock(raw_spinlock_t *lock) |
| 105 | { | 82 | { |
| 106 | while (1) { | 83 | while (1) { |
| 107 | if (likely(__spin_trylock(lock) == 0)) | 84 | if (likely(__spin_trylock(lock) == 0)) |
| @@ -110,12 +87,12 @@ static void __inline__ _raw_spin_lock(spinlock_t *lock) | |||
| 110 | HMT_low(); | 87 | HMT_low(); |
| 111 | if (SHARED_PROCESSOR) | 88 | if (SHARED_PROCESSOR) |
| 112 | __spin_yield(lock); | 89 | __spin_yield(lock); |
| 113 | } while (unlikely(lock->lock != 0)); | 90 | } while (unlikely(lock->slock != 0)); |
| 114 | HMT_medium(); | 91 | HMT_medium(); |
| 115 | } | 92 | } |
| 116 | } | 93 | } |
| 117 | 94 | ||
| 118 | static void __inline__ _raw_spin_lock_flags(spinlock_t *lock, unsigned long flags) | 95 | static void __inline__ __raw_spin_lock_flags(raw_spinlock_t *lock, unsigned long flags) |
| 119 | { | 96 | { |
| 120 | unsigned long flags_dis; | 97 | unsigned long flags_dis; |
| 121 | 98 | ||
| @@ -128,12 +105,20 @@ static void __inline__ _raw_spin_lock_flags(spinlock_t *lock, unsigned long flag | |||
| 128 | HMT_low(); | 105 | HMT_low(); |
| 129 | if (SHARED_PROCESSOR) | 106 | if (SHARED_PROCESSOR) |
| 130 | __spin_yield(lock); | 107 | __spin_yield(lock); |
| 131 | } while (unlikely(lock->lock != 0)); | 108 | } while (unlikely(lock->slock != 0)); |
| 132 | HMT_medium(); | 109 | HMT_medium(); |
| 133 | local_irq_restore(flags_dis); | 110 | local_irq_restore(flags_dis); |
| 134 | } | 111 | } |
| 135 | } | 112 | } |
| 136 | 113 | ||
| 114 | static __inline__ void __raw_spin_unlock(raw_spinlock_t *lock) | ||
| 115 | { | ||
| 116 | __asm__ __volatile__("lwsync # __raw_spin_unlock": : :"memory"); | ||
| 117 | lock->slock = 0; | ||
| 118 | } | ||
| 119 | |||
| 120 | extern void __raw_spin_unlock_wait(raw_spinlock_t *lock); | ||
| 121 | |||
| 137 | /* | 122 | /* |
| 138 | * Read-write spinlocks, allowing multiple readers | 123 | * Read-write spinlocks, allowing multiple readers |
| 139 | * but only one writer. | 124 | * but only one writer. |
| @@ -144,24 +129,15 @@ static void __inline__ _raw_spin_lock_flags(spinlock_t *lock, unsigned long flag | |||
| 144 | * irq-safe write-lock, but readers can get non-irqsafe | 129 | * irq-safe write-lock, but readers can get non-irqsafe |
| 145 | * read-locks. | 130 | * read-locks. |
| 146 | */ | 131 | */ |
| 147 | #define RW_LOCK_UNLOCKED (rwlock_t) { 0 } | ||
| 148 | 132 | ||
| 149 | #define rwlock_init(x) do { *(x) = RW_LOCK_UNLOCKED; } while(0) | 133 | #define __raw_read_can_lock(rw) ((rw)->lock >= 0) |
| 150 | 134 | #define __raw_write_can_lock(rw) (!(rw)->lock) | |
| 151 | #define read_can_lock(rw) ((rw)->lock >= 0) | ||
| 152 | #define write_can_lock(rw) (!(rw)->lock) | ||
| 153 | |||
| 154 | static __inline__ void _raw_write_unlock(rwlock_t *rw) | ||
| 155 | { | ||
| 156 | __asm__ __volatile__("lwsync # write_unlock": : :"memory"); | ||
| 157 | rw->lock = 0; | ||
| 158 | } | ||
| 159 | 135 | ||
| 160 | /* | 136 | /* |
| 161 | * This returns the old value in the lock + 1, | 137 | * This returns the old value in the lock + 1, |
| 162 | * so we got a read lock if the return value is > 0. | 138 | * so we got a read lock if the return value is > 0. |
| 163 | */ | 139 | */ |
| 164 | static long __inline__ __read_trylock(rwlock_t *rw) | 140 | static long __inline__ __read_trylock(raw_rwlock_t *rw) |
| 165 | { | 141 | { |
| 166 | long tmp; | 142 | long tmp; |
| 167 | 143 | ||
| @@ -180,45 +156,11 @@ static long __inline__ __read_trylock(rwlock_t *rw) | |||
| 180 | return tmp; | 156 | return tmp; |
| 181 | } | 157 | } |
| 182 | 158 | ||
| 183 | static int __inline__ _raw_read_trylock(rwlock_t *rw) | ||
| 184 | { | ||
| 185 | return __read_trylock(rw) > 0; | ||
| 186 | } | ||
| 187 | |||
| 188 | static void __inline__ _raw_read_lock(rwlock_t *rw) | ||
| 189 | { | ||
| 190 | while (1) { | ||
| 191 | if (likely(__read_trylock(rw) > 0)) | ||
| 192 | break; | ||
| 193 | do { | ||
| 194 | HMT_low(); | ||
| 195 | if (SHARED_PROCESSOR) | ||
| 196 | __rw_yield(rw); | ||
| 197 | } while (unlikely(rw->lock < 0)); | ||
| 198 | HMT_medium(); | ||
| 199 | } | ||
| 200 | } | ||
| 201 | |||
| 202 | static void __inline__ _raw_read_unlock(rwlock_t *rw) | ||
| 203 | { | ||
| 204 | long tmp; | ||
| 205 | |||
| 206 | __asm__ __volatile__( | ||
| 207 | "eieio # read_unlock\n\ | ||
| 208 | 1: lwarx %0,0,%1\n\ | ||
| 209 | addic %0,%0,-1\n\ | ||
| 210 | stwcx. %0,0,%1\n\ | ||
| 211 | bne- 1b" | ||
| 212 | : "=&r"(tmp) | ||
| 213 | : "r"(&rw->lock) | ||
| 214 | : "cr0", "memory"); | ||
| 215 | } | ||
| 216 | |||
| 217 | /* | 159 | /* |
| 218 | * This returns the old value in the lock, | 160 | * This returns the old value in the lock, |
| 219 | * so we got the write lock if the return value is 0. | 161 | * so we got the write lock if the return value is 0. |
| 220 | */ | 162 | */ |
| 221 | static __inline__ long __write_trylock(rwlock_t *rw) | 163 | static __inline__ long __write_trylock(raw_rwlock_t *rw) |
| 222 | { | 164 | { |
| 223 | long tmp, tmp2; | 165 | long tmp, tmp2; |
| 224 | 166 | ||
| @@ -237,12 +179,21 @@ static __inline__ long __write_trylock(rwlock_t *rw) | |||
| 237 | return tmp; | 179 | return tmp; |
| 238 | } | 180 | } |
| 239 | 181 | ||
| 240 | static int __inline__ _raw_write_trylock(rwlock_t *rw) | 182 | static void __inline__ __raw_read_lock(raw_rwlock_t *rw) |
| 241 | { | 183 | { |
| 242 | return __write_trylock(rw) == 0; | 184 | while (1) { |
| 185 | if (likely(__read_trylock(rw) > 0)) | ||
| 186 | break; | ||
| 187 | do { | ||
| 188 | HMT_low(); | ||
| 189 | if (SHARED_PROCESSOR) | ||
| 190 | __rw_yield(rw); | ||
| 191 | } while (unlikely(rw->lock < 0)); | ||
| 192 | HMT_medium(); | ||
| 193 | } | ||
| 243 | } | 194 | } |
| 244 | 195 | ||
| 245 | static void __inline__ _raw_write_lock(rwlock_t *rw) | 196 | static void __inline__ __raw_write_lock(raw_rwlock_t *rw) |
| 246 | { | 197 | { |
| 247 | while (1) { | 198 | while (1) { |
| 248 | if (likely(__write_trylock(rw) == 0)) | 199 | if (likely(__write_trylock(rw) == 0)) |
| @@ -256,5 +207,35 @@ static void __inline__ _raw_write_lock(rwlock_t *rw) | |||
| 256 | } | 207 | } |
| 257 | } | 208 | } |
| 258 | 209 | ||
| 259 | #endif /* __KERNEL__ */ | 210 | static int __inline__ __raw_read_trylock(raw_rwlock_t *rw) |
| 211 | { | ||
| 212 | return __read_trylock(rw) > 0; | ||
| 213 | } | ||
| 214 | |||
| 215 | static int __inline__ __raw_write_trylock(raw_rwlock_t *rw) | ||
| 216 | { | ||
| 217 | return __write_trylock(rw) == 0; | ||
| 218 | } | ||
| 219 | |||
| 220 | static void __inline__ __raw_read_unlock(raw_rwlock_t *rw) | ||
| 221 | { | ||
| 222 | long tmp; | ||
| 223 | |||
| 224 | __asm__ __volatile__( | ||
| 225 | "eieio # read_unlock\n\ | ||
| 226 | 1: lwarx %0,0,%1\n\ | ||
| 227 | addic %0,%0,-1\n\ | ||
| 228 | stwcx. %0,0,%1\n\ | ||
| 229 | bne- 1b" | ||
| 230 | : "=&r"(tmp) | ||
| 231 | : "r"(&rw->lock) | ||
| 232 | : "cr0", "memory"); | ||
| 233 | } | ||
| 234 | |||
| 235 | static __inline__ void __raw_write_unlock(raw_rwlock_t *rw) | ||
| 236 | { | ||
| 237 | __asm__ __volatile__("lwsync # write_unlock": : :"memory"); | ||
| 238 | rw->lock = 0; | ||
| 239 | } | ||
| 240 | |||
| 260 | #endif /* __ASM_SPINLOCK_H */ | 241 | #endif /* __ASM_SPINLOCK_H */ |
diff --git a/include/asm-ppc64/spinlock_types.h b/include/asm-ppc64/spinlock_types.h new file mode 100644 index 000000000000..a37c8eabb9f2 --- /dev/null +++ b/include/asm-ppc64/spinlock_types.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #ifndef __ASM_SPINLOCK_TYPES_H | ||
| 2 | #define __ASM_SPINLOCK_TYPES_H | ||
| 3 | |||
| 4 | #ifndef __LINUX_SPINLOCK_TYPES_H | ||
| 5 | # error "please don't include this file directly" | ||
| 6 | #endif | ||
| 7 | |||
| 8 | typedef struct { | ||
| 9 | volatile unsigned int slock; | ||
| 10 | } raw_spinlock_t; | ||
| 11 | |||
| 12 | #define __RAW_SPIN_LOCK_UNLOCKED { 0 } | ||
| 13 | |||
| 14 | typedef struct { | ||
| 15 | volatile signed int lock; | ||
| 16 | } raw_rwlock_t; | ||
| 17 | |||
| 18 | #define __RAW_RW_LOCK_UNLOCKED { 0 } | ||
| 19 | |||
| 20 | #endif | ||
diff --git a/include/asm-ppc64/timex.h b/include/asm-ppc64/timex.h deleted file mode 100644 index 8db4da4064cd..000000000000 --- a/include/asm-ppc64/timex.h +++ /dev/null | |||
| @@ -1,26 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * linux/include/asm-ppc/timex.h | ||
| 3 | * | ||
| 4 | * PPC64 architecture timex specifications | ||
| 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 | #ifndef _ASMPPC64_TIMEX_H | ||
| 12 | #define _ASMPPC64_TIMEX_H | ||
| 13 | |||
| 14 | #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */ | ||
| 15 | |||
| 16 | typedef unsigned long cycles_t; | ||
| 17 | |||
| 18 | static inline cycles_t get_cycles(void) | ||
| 19 | { | ||
| 20 | cycles_t ret; | ||
| 21 | |||
| 22 | __asm__ __volatile__("mftb %0" : "=r" (ret) : ); | ||
| 23 | return ret; | ||
| 24 | } | ||
| 25 | |||
| 26 | #endif | ||
diff --git a/include/asm-ppc64/topology.h b/include/asm-ppc64/topology.h deleted file mode 100644 index 1e9b19073230..000000000000 --- a/include/asm-ppc64/topology.h +++ /dev/null | |||
| @@ -1,69 +0,0 @@ | |||
| 1 | #ifndef _ASM_PPC64_TOPOLOGY_H | ||
| 2 | #define _ASM_PPC64_TOPOLOGY_H | ||
| 3 | |||
| 4 | #include <linux/config.h> | ||
| 5 | #include <asm/mmzone.h> | ||
| 6 | |||
| 7 | #ifdef CONFIG_NUMA | ||
| 8 | |||
| 9 | static inline int cpu_to_node(int cpu) | ||
| 10 | { | ||
| 11 | int node; | ||
| 12 | |||
| 13 | node = numa_cpu_lookup_table[cpu]; | ||
| 14 | |||
| 15 | #ifdef DEBUG_NUMA | ||
| 16 | BUG_ON(node == -1); | ||
| 17 | #endif | ||
| 18 | |||
| 19 | return node; | ||
| 20 | } | ||
| 21 | |||
| 22 | #define parent_node(node) (node) | ||
| 23 | |||
| 24 | static inline cpumask_t node_to_cpumask(int node) | ||
| 25 | { | ||
| 26 | return numa_cpumask_lookup_table[node]; | ||
| 27 | } | ||
| 28 | |||
| 29 | static inline int node_to_first_cpu(int node) | ||
| 30 | { | ||
| 31 | cpumask_t tmp; | ||
| 32 | tmp = node_to_cpumask(node); | ||
| 33 | return first_cpu(tmp); | ||
| 34 | } | ||
| 35 | |||
| 36 | #define pcibus_to_node(node) (-1) | ||
| 37 | #define pcibus_to_cpumask(bus) (cpu_online_map) | ||
| 38 | |||
| 39 | #define nr_cpus_node(node) (nr_cpus_in_node[node]) | ||
| 40 | |||
| 41 | /* sched_domains SD_NODE_INIT for PPC64 machines */ | ||
| 42 | #define SD_NODE_INIT (struct sched_domain) { \ | ||
| 43 | .span = CPU_MASK_NONE, \ | ||
| 44 | .parent = NULL, \ | ||
| 45 | .groups = NULL, \ | ||
| 46 | .min_interval = 8, \ | ||
| 47 | .max_interval = 32, \ | ||
| 48 | .busy_factor = 32, \ | ||
| 49 | .imbalance_pct = 125, \ | ||
| 50 | .cache_hot_time = (10*1000000), \ | ||
| 51 | .cache_nice_tries = 1, \ | ||
| 52 | .per_cpu_gain = 100, \ | ||
| 53 | .flags = SD_LOAD_BALANCE \ | ||
| 54 | | SD_BALANCE_EXEC \ | ||
| 55 | | SD_BALANCE_NEWIDLE \ | ||
| 56 | | SD_WAKE_IDLE \ | ||
| 57 | | SD_WAKE_BALANCE, \ | ||
| 58 | .last_balance = jiffies, \ | ||
| 59 | .balance_interval = 1, \ | ||
| 60 | .nr_balance_failed = 0, \ | ||
| 61 | } | ||
| 62 | |||
| 63 | #else | ||
| 64 | |||
| 65 | #include <asm-generic/topology.h> | ||
| 66 | |||
| 67 | #endif /* CONFIG_NUMA */ | ||
| 68 | |||
| 69 | #endif /* _ASM_PPC64_TOPOLOGY_H */ | ||
diff --git a/include/asm-ppc64/user.h b/include/asm-ppc64/user.h deleted file mode 100644 index d7d6554a421f..000000000000 --- a/include/asm-ppc64/user.h +++ /dev/null | |||
| @@ -1,58 +0,0 @@ | |||
| 1 | #ifndef _PPC_USER_H | ||
| 2 | #define _PPC_USER_H | ||
| 3 | |||
| 4 | /* Adapted from <asm-alpha/user.h> | ||
| 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 <asm/ptrace.h> | ||
| 13 | #include <asm/page.h> | ||
| 14 | |||
| 15 | /* | ||
| 16 | * Core file format: The core file is written in such a way that gdb | ||
| 17 | * can understand it and provide useful information to the user (under | ||
| 18 | * linux we use the `trad-core' bfd, NOT the osf-core). The file contents | ||
| 19 | * are as follows: | ||
| 20 | * | ||
| 21 | * upage: 1 page consisting of a user struct that tells gdb | ||
| 22 | * what is present in the file. Directly after this is a | ||
| 23 | * copy of the task_struct, which is currently not used by gdb, | ||
| 24 | * but it may come in handy at some point. All of the registers | ||
| 25 | * are stored as part of the upage. The upage should always be | ||
| 26 | * only one page long. | ||
| 27 | * data: The data segment follows next. We use current->end_text to | ||
| 28 | * current->brk to pick up all of the user variables, plus any memory | ||
| 29 | * that may have been sbrk'ed. No attempt is made to determine if a | ||
| 30 | * page is demand-zero or if a page is totally unused, we just cover | ||
| 31 | * the entire range. All of the addresses are rounded in such a way | ||
| 32 | * that an integral number of pages is written. | ||
| 33 | * stack: We need the stack information in order to get a meaningful | ||
| 34 | * backtrace. We need to write the data from usp to | ||
| 35 | * current->start_stack, so we round each of these in order to be able | ||
| 36 | * to write an integer number of pages. | ||
| 37 | */ | ||
| 38 | struct user { | ||
| 39 | struct pt_regs regs; /* entire machine state */ | ||
| 40 | size_t u_tsize; /* text size (pages) */ | ||
| 41 | size_t u_dsize; /* data size (pages) */ | ||
| 42 | size_t u_ssize; /* stack size (pages) */ | ||
| 43 | unsigned long start_code; /* text starting address */ | ||
| 44 | unsigned long start_data; /* data starting address */ | ||
| 45 | unsigned long start_stack; /* stack starting address */ | ||
| 46 | long int signal; /* signal causing core dump */ | ||
| 47 | struct regs * u_ar0; /* help gdb find registers */ | ||
| 48 | unsigned long magic; /* identifies a core file */ | ||
| 49 | char u_comm[32]; /* user command name */ | ||
| 50 | }; | ||
| 51 | |||
| 52 | #define NBPG PAGE_SIZE | ||
| 53 | #define UPAGES 1 | ||
| 54 | #define HOST_TEXT_START_ADDR (u.start_code) | ||
| 55 | #define HOST_DATA_START_ADDR (u.start_data) | ||
| 56 | #define HOST_STACK_END_ADDR (u.start_stack + u.u_ssize * NBPG) | ||
| 57 | |||
| 58 | #endif /* _PPC_USER_H */ | ||
