diff options
Diffstat (limited to 'include')
135 files changed, 4502 insertions, 1008 deletions
diff --git a/include/acpi/acpi_hest.h b/include/acpi/acpi_hest.h new file mode 100644 index 000000000000..63194d03cb2d --- /dev/null +++ b/include/acpi/acpi_hest.h | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #ifndef __ACPI_HEST_H | ||
| 2 | #define __ACPI_HEST_H | ||
| 3 | |||
| 4 | #include <linux/pci.h> | ||
| 5 | |||
| 6 | #ifdef CONFIG_ACPI | ||
| 7 | extern int acpi_hest_firmware_first_pci(struct pci_dev *pci); | ||
| 8 | #else | ||
| 9 | static inline int acpi_hest_firmware_first_pci(struct pci_dev *pci) { return 0; } | ||
| 10 | #endif | ||
| 11 | |||
| 12 | #endif | ||
diff --git a/include/acpi/processor.h b/include/acpi/processor.h index 740ac3ad8fd0..8b668ead6d6e 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor.h | |||
| @@ -295,6 +295,7 @@ static inline void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx | |||
| 295 | void acpi_processor_ppc_init(void); | 295 | void acpi_processor_ppc_init(void); |
| 296 | void acpi_processor_ppc_exit(void); | 296 | void acpi_processor_ppc_exit(void); |
| 297 | int acpi_processor_ppc_has_changed(struct acpi_processor *pr); | 297 | int acpi_processor_ppc_has_changed(struct acpi_processor *pr); |
| 298 | extern int acpi_processor_get_bios_limit(int cpu, unsigned int *limit); | ||
| 298 | #else | 299 | #else |
| 299 | static inline void acpi_processor_ppc_init(void) | 300 | static inline void acpi_processor_ppc_init(void) |
| 300 | { | 301 | { |
| @@ -316,6 +317,11 @@ static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr) | |||
| 316 | } | 317 | } |
| 317 | return 0; | 318 | return 0; |
| 318 | } | 319 | } |
| 320 | static inline int acpi_processor_get_bios_limit(int cpu, unsigned int *limit) | ||
| 321 | { | ||
| 322 | return -ENODEV; | ||
| 323 | } | ||
| 324 | |||
| 319 | #endif /* CONFIG_CPU_FREQ */ | 325 | #endif /* CONFIG_CPU_FREQ */ |
| 320 | 326 | ||
| 321 | /* in processor_throttling.c */ | 327 | /* in processor_throttling.c */ |
diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h index 4b6755984d24..18c435d7c082 100644 --- a/include/asm-generic/bug.h +++ b/include/asm-generic/bug.h | |||
| @@ -113,22 +113,22 @@ extern void warn_slowpath_null(const char *file, const int line); | |||
| 113 | #endif | 113 | #endif |
| 114 | 114 | ||
| 115 | #define WARN_ON_ONCE(condition) ({ \ | 115 | #define WARN_ON_ONCE(condition) ({ \ |
| 116 | static int __warned; \ | 116 | static bool __warned; \ |
| 117 | int __ret_warn_once = !!(condition); \ | 117 | int __ret_warn_once = !!(condition); \ |
| 118 | \ | 118 | \ |
| 119 | if (unlikely(__ret_warn_once)) \ | 119 | if (unlikely(__ret_warn_once)) \ |
| 120 | if (WARN_ON(!__warned)) \ | 120 | if (WARN_ON(!__warned)) \ |
| 121 | __warned = 1; \ | 121 | __warned = true; \ |
| 122 | unlikely(__ret_warn_once); \ | 122 | unlikely(__ret_warn_once); \ |
| 123 | }) | 123 | }) |
| 124 | 124 | ||
| 125 | #define WARN_ONCE(condition, format...) ({ \ | 125 | #define WARN_ONCE(condition, format...) ({ \ |
| 126 | static int __warned; \ | 126 | static bool __warned; \ |
| 127 | int __ret_warn_once = !!(condition); \ | 127 | int __ret_warn_once = !!(condition); \ |
| 128 | \ | 128 | \ |
| 129 | if (unlikely(__ret_warn_once)) \ | 129 | if (unlikely(__ret_warn_once)) \ |
| 130 | if (WARN(!__warned, format)) \ | 130 | if (WARN(!__warned, format)) \ |
| 131 | __warned = 1; \ | 131 | __warned = true; \ |
| 132 | unlikely(__ret_warn_once); \ | 132 | unlikely(__ret_warn_once); \ |
| 133 | }) | 133 | }) |
| 134 | 134 | ||
diff --git a/include/asm-generic/fcntl.h b/include/asm-generic/fcntl.h index 495dc8af4044..681ddf3e844c 100644 --- a/include/asm-generic/fcntl.h +++ b/include/asm-generic/fcntl.h | |||
| @@ -3,8 +3,6 @@ | |||
| 3 | 3 | ||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | 5 | ||
| 6 | /* open/fcntl - O_SYNC is only implemented on blocks devices and on files | ||
| 7 | located on an ext2 file system */ | ||
| 8 | #define O_ACCMODE 00000003 | 6 | #define O_ACCMODE 00000003 |
| 9 | #define O_RDONLY 00000000 | 7 | #define O_RDONLY 00000000 |
| 10 | #define O_WRONLY 00000001 | 8 | #define O_WRONLY 00000001 |
| @@ -27,8 +25,8 @@ | |||
| 27 | #ifndef O_NONBLOCK | 25 | #ifndef O_NONBLOCK |
| 28 | #define O_NONBLOCK 00004000 | 26 | #define O_NONBLOCK 00004000 |
| 29 | #endif | 27 | #endif |
| 30 | #ifndef O_SYNC | 28 | #ifndef O_DSYNC |
| 31 | #define O_SYNC 00010000 | 29 | #define O_DSYNC 00010000 /* used to be O_SYNC, see below */ |
| 32 | #endif | 30 | #endif |
| 33 | #ifndef FASYNC | 31 | #ifndef FASYNC |
| 34 | #define FASYNC 00020000 /* fcntl, for BSD compatibility */ | 32 | #define FASYNC 00020000 /* fcntl, for BSD compatibility */ |
| @@ -51,6 +49,25 @@ | |||
| 51 | #ifndef O_CLOEXEC | 49 | #ifndef O_CLOEXEC |
| 52 | #define O_CLOEXEC 02000000 /* set close_on_exec */ | 50 | #define O_CLOEXEC 02000000 /* set close_on_exec */ |
| 53 | #endif | 51 | #endif |
| 52 | |||
| 53 | /* | ||
| 54 | * Before Linux 2.6.32 only O_DSYNC semantics were implemented, but using | ||
| 55 | * the O_SYNC flag. We continue to use the existing numerical value | ||
| 56 | * for O_DSYNC semantics now, but using the correct symbolic name for it. | ||
| 57 | * This new value is used to request true Posix O_SYNC semantics. It is | ||
| 58 | * defined in this strange way to make sure applications compiled against | ||
| 59 | * new headers get at least O_DSYNC semantics on older kernels. | ||
| 60 | * | ||
| 61 | * This has the nice side-effect that we can simply test for O_DSYNC | ||
| 62 | * wherever we do not care if O_DSYNC or O_SYNC is used. | ||
| 63 | * | ||
| 64 | * Note: __O_SYNC must never be used directly. | ||
| 65 | */ | ||
| 66 | #ifndef O_SYNC | ||
| 67 | #define __O_SYNC 04000000 | ||
| 68 | #define O_SYNC (__O_SYNC|O_DSYNC) | ||
| 69 | #endif | ||
| 70 | |||
| 54 | #ifndef O_NDELAY | 71 | #ifndef O_NDELAY |
| 55 | #define O_NDELAY O_NONBLOCK | 72 | #define O_NDELAY O_NONBLOCK |
| 56 | #endif | 73 | #endif |
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index 66d6106a2067..204bed37e82d 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h | |||
| @@ -28,6 +28,7 @@ static inline int gpio_is_valid(int number) | |||
| 28 | return ((unsigned)number) < ARCH_NR_GPIOS; | 28 | return ((unsigned)number) < ARCH_NR_GPIOS; |
| 29 | } | 29 | } |
| 30 | 30 | ||
| 31 | struct device; | ||
| 31 | struct seq_file; | 32 | struct seq_file; |
| 32 | struct module; | 33 | struct module; |
| 33 | 34 | ||
| @@ -181,6 +182,8 @@ static inline void gpio_set_value_cansleep(unsigned gpio, int value) | |||
| 181 | 182 | ||
| 182 | #ifndef CONFIG_GPIO_SYSFS | 183 | #ifndef CONFIG_GPIO_SYSFS |
| 183 | 184 | ||
| 185 | struct device; | ||
| 186 | |||
| 184 | /* sysfs support is only available with gpiolib, where it's optional */ | 187 | /* sysfs support is only available with gpiolib, where it's optional */ |
| 185 | 188 | ||
| 186 | static inline int gpio_export(unsigned gpio, bool direction_may_change) | 189 | static inline int gpio_export(unsigned gpio, bool direction_may_change) |
diff --git a/include/asm-generic/mman-common.h b/include/asm-generic/mman-common.h index 5ee13b2fd223..20111265afd8 100644 --- a/include/asm-generic/mman-common.h +++ b/include/asm-generic/mman-common.h | |||
| @@ -19,6 +19,11 @@ | |||
| 19 | #define MAP_TYPE 0x0f /* Mask for type of mapping */ | 19 | #define MAP_TYPE 0x0f /* Mask for type of mapping */ |
| 20 | #define MAP_FIXED 0x10 /* Interpret addr exactly */ | 20 | #define MAP_FIXED 0x10 /* Interpret addr exactly */ |
| 21 | #define MAP_ANONYMOUS 0x20 /* don't use a file */ | 21 | #define MAP_ANONYMOUS 0x20 /* don't use a file */ |
| 22 | #ifdef CONFIG_MMAP_ALLOW_UNINITIALIZED | ||
| 23 | # define MAP_UNINITIALIZED 0x4000000 /* For anonymous mmap, memory could be uninitialized */ | ||
| 24 | #else | ||
| 25 | # define MAP_UNINITIALIZED 0x0 /* Don't support this flag */ | ||
| 26 | #endif | ||
| 22 | 27 | ||
| 23 | #define MS_ASYNC 1 /* sync memory asynchronously */ | 28 | #define MS_ASYNC 1 /* sync memory asynchronously */ |
| 24 | #define MS_INVALIDATE 2 /* invalidate the caches */ | 29 | #define MS_INVALIDATE 2 /* invalidate the caches */ |
diff --git a/include/asm-generic/percpu.h b/include/asm-generic/percpu.h index 90079c373f1c..8087b90d4673 100644 --- a/include/asm-generic/percpu.h +++ b/include/asm-generic/percpu.h | |||
| @@ -56,6 +56,9 @@ extern unsigned long __per_cpu_offset[NR_CPUS]; | |||
| 56 | #define __raw_get_cpu_var(var) \ | 56 | #define __raw_get_cpu_var(var) \ |
| 57 | (*SHIFT_PERCPU_PTR(&per_cpu_var(var), __my_cpu_offset)) | 57 | (*SHIFT_PERCPU_PTR(&per_cpu_var(var), __my_cpu_offset)) |
| 58 | 58 | ||
| 59 | #define this_cpu_ptr(ptr) SHIFT_PERCPU_PTR(ptr, my_cpu_offset) | ||
| 60 | #define __this_cpu_ptr(ptr) SHIFT_PERCPU_PTR(ptr, __my_cpu_offset) | ||
| 61 | |||
| 59 | 62 | ||
| 60 | #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA | 63 | #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA |
| 61 | extern void setup_per_cpu_areas(void); | 64 | extern void setup_per_cpu_areas(void); |
| @@ -66,6 +69,8 @@ extern void setup_per_cpu_areas(void); | |||
| 66 | #define per_cpu(var, cpu) (*((void)(cpu), &per_cpu_var(var))) | 69 | #define per_cpu(var, cpu) (*((void)(cpu), &per_cpu_var(var))) |
| 67 | #define __get_cpu_var(var) per_cpu_var(var) | 70 | #define __get_cpu_var(var) per_cpu_var(var) |
| 68 | #define __raw_get_cpu_var(var) per_cpu_var(var) | 71 | #define __raw_get_cpu_var(var) per_cpu_var(var) |
| 72 | #define this_cpu_ptr(ptr) per_cpu_ptr(ptr, 0) | ||
| 73 | #define __this_cpu_ptr(ptr) this_cpu_ptr(ptr) | ||
| 69 | 74 | ||
| 70 | #endif /* SMP */ | 75 | #endif /* SMP */ |
| 71 | 76 | ||
diff --git a/include/asm-generic/unistd.h b/include/asm-generic/unistd.h index 7c38c147e5e6..6a0b30f78a62 100644 --- a/include/asm-generic/unistd.h +++ b/include/asm-generic/unistd.h | |||
| @@ -622,9 +622,13 @@ __SYSCALL(__NR_move_pages, sys_move_pages) | |||
| 622 | __SYSCALL(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo) | 622 | __SYSCALL(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo) |
| 623 | #define __NR_perf_event_open 241 | 623 | #define __NR_perf_event_open 241 |
| 624 | __SYSCALL(__NR_perf_event_open, sys_perf_event_open) | 624 | __SYSCALL(__NR_perf_event_open, sys_perf_event_open) |
| 625 | #define __NR_accept4 242 | ||
| 626 | __SYSCALL(__NR_accept4, sys_accept4) | ||
| 627 | #define __NR_recvmmsg 243 | ||
| 628 | __SYSCALL(__NR_recvmmsg, sys_recvmmsg) | ||
| 625 | 629 | ||
| 626 | #undef __NR_syscalls | 630 | #undef __NR_syscalls |
| 627 | #define __NR_syscalls 242 | 631 | #define __NR_syscalls 244 |
| 628 | 632 | ||
| 629 | /* | 633 | /* |
| 630 | * All syscalls below here should go away really, | 634 | * All syscalls below here should go away really, |
| @@ -802,7 +806,7 @@ __SYSCALL(__NR_fork, sys_ni_syscall) | |||
| 802 | #define __NR_statfs __NR3264_statfs | 806 | #define __NR_statfs __NR3264_statfs |
| 803 | #define __NR_fstatfs __NR3264_fstatfs | 807 | #define __NR_fstatfs __NR3264_fstatfs |
| 804 | #define __NR_truncate __NR3264_truncate | 808 | #define __NR_truncate __NR3264_truncate |
| 805 | #define __NR_ftruncate __NR3264_truncate | 809 | #define __NR_ftruncate __NR3264_ftruncate |
| 806 | #define __NR_lseek __NR3264_lseek | 810 | #define __NR_lseek __NR3264_lseek |
| 807 | #define __NR_sendfile __NR3264_sendfile | 811 | #define __NR_sendfile __NR3264_sendfile |
| 808 | #define __NR_newfstatat __NR3264_fstatat | 812 | #define __NR_newfstatat __NR3264_fstatat |
| @@ -818,7 +822,7 @@ __SYSCALL(__NR_fork, sys_ni_syscall) | |||
| 818 | #define __NR_statfs64 __NR3264_statfs | 822 | #define __NR_statfs64 __NR3264_statfs |
| 819 | #define __NR_fstatfs64 __NR3264_fstatfs | 823 | #define __NR_fstatfs64 __NR3264_fstatfs |
| 820 | #define __NR_truncate64 __NR3264_truncate | 824 | #define __NR_truncate64 __NR3264_truncate |
| 821 | #define __NR_ftruncate64 __NR3264_truncate | 825 | #define __NR_ftruncate64 __NR3264_ftruncate |
| 822 | #define __NR_llseek __NR3264_lseek | 826 | #define __NR_llseek __NR3264_lseek |
| 823 | #define __NR_sendfile64 __NR3264_sendfile | 827 | #define __NR_sendfile64 __NR3264_sendfile |
| 824 | #define __NR_fstatat64 __NR3264_fstatat | 828 | #define __NR_fstatat64 __NR3264_fstatat |
diff --git a/include/drm/Kbuild b/include/drm/Kbuild index b940fdfa3b25..cfa6af43c9ea 100644 --- a/include/drm/Kbuild +++ b/include/drm/Kbuild | |||
| @@ -8,3 +8,4 @@ unifdef-y += radeon_drm.h | |||
| 8 | unifdef-y += sis_drm.h | 8 | unifdef-y += sis_drm.h |
| 9 | unifdef-y += savage_drm.h | 9 | unifdef-y += savage_drm.h |
| 10 | unifdef-y += via_drm.h | 10 | unifdef-y += via_drm.h |
| 11 | unifdef-y += nouveau_drm.h | ||
diff --git a/include/drm/drm.h b/include/drm/drm.h index 7cb50bdde46d..e3f46e0cb7dc 100644 --- a/include/drm/drm.h +++ b/include/drm/drm.h | |||
| @@ -36,17 +36,27 @@ | |||
| 36 | #ifndef _DRM_H_ | 36 | #ifndef _DRM_H_ |
| 37 | #define _DRM_H_ | 37 | #define _DRM_H_ |
| 38 | 38 | ||
| 39 | #if defined(__linux__) | ||
| 40 | |||
| 39 | #include <linux/types.h> | 41 | #include <linux/types.h> |
| 40 | #include <asm/ioctl.h> /* For _IO* macros */ | 42 | #include <asm/ioctl.h> |
| 41 | #define DRM_IOCTL_NR(n) _IOC_NR(n) | 43 | typedef unsigned int drm_handle_t; |
| 42 | #define DRM_IOC_VOID _IOC_NONE | ||
| 43 | #define DRM_IOC_READ _IOC_READ | ||
| 44 | #define DRM_IOC_WRITE _IOC_WRITE | ||
| 45 | #define DRM_IOC_READWRITE _IOC_READ|_IOC_WRITE | ||
| 46 | #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size) | ||
| 47 | 44 | ||
| 48 | #define DRM_MAJOR 226 | 45 | #else /* One of the BSDs */ |
| 49 | #define DRM_MAX_MINOR 15 | 46 | |
| 47 | #include <sys/ioccom.h> | ||
| 48 | #include <sys/types.h> | ||
| 49 | typedef int8_t __s8; | ||
| 50 | typedef uint8_t __u8; | ||
| 51 | typedef int16_t __s16; | ||
| 52 | typedef uint16_t __u16; | ||
| 53 | typedef int32_t __s32; | ||
| 54 | typedef uint32_t __u32; | ||
| 55 | typedef int64_t __s64; | ||
| 56 | typedef uint64_t __u64; | ||
| 57 | typedef unsigned long drm_handle_t; | ||
| 58 | |||
| 59 | #endif | ||
| 50 | 60 | ||
| 51 | #define DRM_NAME "drm" /**< Name in kernel, /dev, and /proc */ | 61 | #define DRM_NAME "drm" /**< Name in kernel, /dev, and /proc */ |
| 52 | #define DRM_MIN_ORDER 5 /**< At least 2^5 bytes = 32 bytes */ | 62 | #define DRM_MIN_ORDER 5 /**< At least 2^5 bytes = 32 bytes */ |
| @@ -59,7 +69,6 @@ | |||
| 59 | #define _DRM_LOCK_IS_CONT(lock) ((lock) & _DRM_LOCK_CONT) | 69 | #define _DRM_LOCK_IS_CONT(lock) ((lock) & _DRM_LOCK_CONT) |
| 60 | #define _DRM_LOCKING_CONTEXT(lock) ((lock) & ~(_DRM_LOCK_HELD|_DRM_LOCK_CONT)) | 70 | #define _DRM_LOCKING_CONTEXT(lock) ((lock) & ~(_DRM_LOCK_HELD|_DRM_LOCK_CONT)) |
| 61 | 71 | ||
| 62 | typedef unsigned int drm_handle_t; | ||
| 63 | typedef unsigned int drm_context_t; | 72 | typedef unsigned int drm_context_t; |
| 64 | typedef unsigned int drm_drawable_t; | 73 | typedef unsigned int drm_drawable_t; |
| 65 | typedef unsigned int drm_magic_t; | 74 | typedef unsigned int drm_magic_t; |
| @@ -454,6 +463,7 @@ struct drm_irq_busid { | |||
| 454 | enum drm_vblank_seq_type { | 463 | enum drm_vblank_seq_type { |
| 455 | _DRM_VBLANK_ABSOLUTE = 0x0, /**< Wait for specific vblank sequence number */ | 464 | _DRM_VBLANK_ABSOLUTE = 0x0, /**< Wait for specific vblank sequence number */ |
| 456 | _DRM_VBLANK_RELATIVE = 0x1, /**< Wait for given number of vblanks */ | 465 | _DRM_VBLANK_RELATIVE = 0x1, /**< Wait for given number of vblanks */ |
| 466 | _DRM_VBLANK_EVENT = 0x4000000, /**< Send event instead of blocking */ | ||
| 457 | _DRM_VBLANK_FLIP = 0x8000000, /**< Scheduled buffer swap should flip */ | 467 | _DRM_VBLANK_FLIP = 0x8000000, /**< Scheduled buffer swap should flip */ |
| 458 | _DRM_VBLANK_NEXTONMISS = 0x10000000, /**< If missed, wait for next vblank */ | 468 | _DRM_VBLANK_NEXTONMISS = 0x10000000, /**< If missed, wait for next vblank */ |
| 459 | _DRM_VBLANK_SECONDARY = 0x20000000, /**< Secondary display controller */ | 469 | _DRM_VBLANK_SECONDARY = 0x20000000, /**< Secondary display controller */ |
| @@ -461,8 +471,8 @@ enum drm_vblank_seq_type { | |||
| 461 | }; | 471 | }; |
| 462 | 472 | ||
| 463 | #define _DRM_VBLANK_TYPES_MASK (_DRM_VBLANK_ABSOLUTE | _DRM_VBLANK_RELATIVE) | 473 | #define _DRM_VBLANK_TYPES_MASK (_DRM_VBLANK_ABSOLUTE | _DRM_VBLANK_RELATIVE) |
| 464 | #define _DRM_VBLANK_FLAGS_MASK (_DRM_VBLANK_SIGNAL | _DRM_VBLANK_SECONDARY | \ | 474 | #define _DRM_VBLANK_FLAGS_MASK (_DRM_VBLANK_EVENT | _DRM_VBLANK_SIGNAL | \ |
| 465 | _DRM_VBLANK_NEXTONMISS) | 475 | _DRM_VBLANK_SECONDARY | _DRM_VBLANK_NEXTONMISS) |
| 466 | 476 | ||
| 467 | struct drm_wait_vblank_request { | 477 | struct drm_wait_vblank_request { |
| 468 | enum drm_vblank_seq_type type; | 478 | enum drm_vblank_seq_type type; |
| @@ -686,6 +696,8 @@ struct drm_gem_open { | |||
| 686 | #define DRM_IOCTL_MODE_GETFB DRM_IOWR(0xAD, struct drm_mode_fb_cmd) | 696 | #define DRM_IOCTL_MODE_GETFB DRM_IOWR(0xAD, struct drm_mode_fb_cmd) |
| 687 | #define DRM_IOCTL_MODE_ADDFB DRM_IOWR(0xAE, struct drm_mode_fb_cmd) | 697 | #define DRM_IOCTL_MODE_ADDFB DRM_IOWR(0xAE, struct drm_mode_fb_cmd) |
| 688 | #define DRM_IOCTL_MODE_RMFB DRM_IOWR(0xAF, unsigned int) | 698 | #define DRM_IOCTL_MODE_RMFB DRM_IOWR(0xAF, unsigned int) |
| 699 | #define DRM_IOCTL_MODE_PAGE_FLIP DRM_IOWR(0xB0, struct drm_mode_crtc_page_flip) | ||
| 700 | #define DRM_IOCTL_MODE_DIRTYFB DRM_IOWR(0xB1, struct drm_mode_fb_dirty_cmd) | ||
| 689 | 701 | ||
| 690 | /** | 702 | /** |
| 691 | * Device specific ioctls should only be in their respective headers | 703 | * Device specific ioctls should only be in their respective headers |
| @@ -698,6 +710,35 @@ struct drm_gem_open { | |||
| 698 | #define DRM_COMMAND_BASE 0x40 | 710 | #define DRM_COMMAND_BASE 0x40 |
| 699 | #define DRM_COMMAND_END 0xA0 | 711 | #define DRM_COMMAND_END 0xA0 |
| 700 | 712 | ||
| 713 | /** | ||
| 714 | * Header for events written back to userspace on the drm fd. The | ||
| 715 | * type defines the type of event, the length specifies the total | ||
| 716 | * length of the event (including the header), and user_data is | ||
| 717 | * typically a 64 bit value passed with the ioctl that triggered the | ||
| 718 | * event. A read on the drm fd will always only return complete | ||
| 719 | * events, that is, if for example the read buffer is 100 bytes, and | ||
| 720 | * there are two 64 byte events pending, only one will be returned. | ||
| 721 | * | ||
| 722 | * Event types 0 - 0x7fffffff are generic drm events, 0x80000000 and | ||
| 723 | * up are chipset specific. | ||
| 724 | */ | ||
| 725 | struct drm_event { | ||
| 726 | __u32 type; | ||
| 727 | __u32 length; | ||
| 728 | }; | ||
| 729 | |||
| 730 | #define DRM_EVENT_VBLANK 0x01 | ||
| 731 | #define DRM_EVENT_FLIP_COMPLETE 0x02 | ||
| 732 | |||
| 733 | struct drm_event_vblank { | ||
| 734 | struct drm_event base; | ||
| 735 | __u64 user_data; | ||
| 736 | __u32 tv_sec; | ||
| 737 | __u32 tv_usec; | ||
| 738 | __u32 sequence; | ||
| 739 | __u32 reserved; | ||
| 740 | }; | ||
| 741 | |||
| 701 | /* typedef area */ | 742 | /* typedef area */ |
| 702 | #ifndef __KERNEL__ | 743 | #ifndef __KERNEL__ |
| 703 | typedef struct drm_clip_rect drm_clip_rect_t; | 744 | typedef struct drm_clip_rect drm_clip_rect_t; |
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index c8e64bbadbcf..19ef8ebdc662 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h | |||
| @@ -245,16 +245,6 @@ extern void drm_ut_debug_printk(unsigned int request_level, | |||
| 245 | 245 | ||
| 246 | #endif | 246 | #endif |
| 247 | 247 | ||
| 248 | #define DRM_PROC_LIMIT (PAGE_SIZE-80) | ||
| 249 | |||
| 250 | #define DRM_PROC_PRINT(fmt, arg...) \ | ||
| 251 | len += sprintf(&buf[len], fmt , ##arg); \ | ||
| 252 | if (len > DRM_PROC_LIMIT) { *eof = 1; return len - offset; } | ||
| 253 | |||
| 254 | #define DRM_PROC_PRINT_RET(ret, fmt, arg...) \ | ||
| 255 | len += sprintf(&buf[len], fmt , ##arg); \ | ||
| 256 | if (len > DRM_PROC_LIMIT) { ret; *eof = 1; return len - offset; } | ||
| 257 | |||
| 258 | /*@}*/ | 248 | /*@}*/ |
| 259 | 249 | ||
| 260 | /***********************************************************************/ | 250 | /***********************************************************************/ |
| @@ -265,19 +255,8 @@ extern void drm_ut_debug_printk(unsigned int request_level, | |||
| 265 | 255 | ||
| 266 | #define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1)) | 256 | #define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1)) |
| 267 | #define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x)) | 257 | #define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x)) |
| 268 | #define DRM_WAITCOUNT(dev,idx) DRM_BUFCOUNT(&dev->queuelist[idx]->waitlist) | ||
| 269 | 258 | ||
| 270 | #define DRM_IF_VERSION(maj, min) (maj << 16 | min) | 259 | #define DRM_IF_VERSION(maj, min) (maj << 16 | min) |
| 271 | /** | ||
| 272 | * Get the private SAREA mapping. | ||
| 273 | * | ||
| 274 | * \param _dev DRM device. | ||
| 275 | * \param _ctx context number. | ||
| 276 | * \param _map output mapping. | ||
| 277 | */ | ||
| 278 | #define DRM_GET_PRIV_SAREA(_dev, _ctx, _map) do { \ | ||
| 279 | (_map) = (_dev)->context_sareas[_ctx]; \ | ||
| 280 | } while(0) | ||
| 281 | 260 | ||
| 282 | /** | 261 | /** |
| 283 | * Test that the hardware lock is held by the caller, returning otherwise. | 262 | * Test that the hardware lock is held by the caller, returning otherwise. |
| @@ -297,18 +276,6 @@ do { \ | |||
| 297 | } while (0) | 276 | } while (0) |
| 298 | 277 | ||
| 299 | /** | 278 | /** |
| 300 | * Copy and IOCTL return string to user space | ||
| 301 | */ | ||
| 302 | #define DRM_COPY( name, value ) \ | ||
| 303 | len = strlen( value ); \ | ||
| 304 | if ( len > name##_len ) len = name##_len; \ | ||
| 305 | name##_len = strlen( value ); \ | ||
| 306 | if ( len && name ) { \ | ||
| 307 | if ( copy_to_user( name, value, len ) ) \ | ||
| 308 | return -EFAULT; \ | ||
| 309 | } | ||
| 310 | |||
| 311 | /** | ||
| 312 | * Ioctl function type. | 279 | * Ioctl function type. |
| 313 | * | 280 | * |
| 314 | * \param inode device inode. | 281 | * \param inode device inode. |
| @@ -322,6 +289,9 @@ typedef int drm_ioctl_t(struct drm_device *dev, void *data, | |||
| 322 | typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd, | 289 | typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd, |
| 323 | unsigned long arg); | 290 | unsigned long arg); |
| 324 | 291 | ||
| 292 | #define DRM_IOCTL_NR(n) _IOC_NR(n) | ||
| 293 | #define DRM_MAJOR 226 | ||
| 294 | |||
| 325 | #define DRM_AUTH 0x1 | 295 | #define DRM_AUTH 0x1 |
| 326 | #define DRM_MASTER 0x2 | 296 | #define DRM_MASTER 0x2 |
| 327 | #define DRM_ROOT_ONLY 0x4 | 297 | #define DRM_ROOT_ONLY 0x4 |
| @@ -426,6 +396,14 @@ struct drm_buf_entry { | |||
| 426 | struct drm_freelist freelist; | 396 | struct drm_freelist freelist; |
| 427 | }; | 397 | }; |
| 428 | 398 | ||
| 399 | /* Event queued up for userspace to read */ | ||
| 400 | struct drm_pending_event { | ||
| 401 | struct drm_event *event; | ||
| 402 | struct list_head link; | ||
| 403 | struct drm_file *file_priv; | ||
| 404 | void (*destroy)(struct drm_pending_event *event); | ||
| 405 | }; | ||
| 406 | |||
| 429 | /** File private data */ | 407 | /** File private data */ |
| 430 | struct drm_file { | 408 | struct drm_file { |
| 431 | int authenticated; | 409 | int authenticated; |
| @@ -449,6 +427,10 @@ struct drm_file { | |||
| 449 | struct drm_master *master; /* master this node is currently associated with | 427 | struct drm_master *master; /* master this node is currently associated with |
| 450 | N.B. not always minor->master */ | 428 | N.B. not always minor->master */ |
| 451 | struct list_head fbs; | 429 | struct list_head fbs; |
| 430 | |||
| 431 | wait_queue_head_t event_wait; | ||
| 432 | struct list_head event_list; | ||
| 433 | int event_space; | ||
| 452 | }; | 434 | }; |
| 453 | 435 | ||
| 454 | /** Wait queue */ | 436 | /** Wait queue */ |
| @@ -795,6 +777,15 @@ struct drm_driver { | |||
| 795 | /* Master routines */ | 777 | /* Master routines */ |
| 796 | int (*master_create)(struct drm_device *dev, struct drm_master *master); | 778 | int (*master_create)(struct drm_device *dev, struct drm_master *master); |
| 797 | void (*master_destroy)(struct drm_device *dev, struct drm_master *master); | 779 | void (*master_destroy)(struct drm_device *dev, struct drm_master *master); |
| 780 | /** | ||
| 781 | * master_set is called whenever the minor master is set. | ||
| 782 | * master_drop is called whenever the minor master is dropped. | ||
| 783 | */ | ||
| 784 | |||
| 785 | int (*master_set)(struct drm_device *dev, struct drm_file *file_priv, | ||
| 786 | bool from_open); | ||
| 787 | void (*master_drop)(struct drm_device *dev, struct drm_file *file_priv, | ||
| 788 | bool from_release); | ||
| 798 | 789 | ||
| 799 | int (*proc_init)(struct drm_minor *minor); | 790 | int (*proc_init)(struct drm_minor *minor); |
| 800 | void (*proc_cleanup)(struct drm_minor *minor); | 791 | void (*proc_cleanup)(struct drm_minor *minor); |
| @@ -900,6 +891,12 @@ struct drm_minor { | |||
| 900 | struct drm_mode_group mode_group; | 891 | struct drm_mode_group mode_group; |
| 901 | }; | 892 | }; |
| 902 | 893 | ||
| 894 | struct drm_pending_vblank_event { | ||
| 895 | struct drm_pending_event base; | ||
| 896 | int pipe; | ||
| 897 | struct drm_event_vblank event; | ||
| 898 | }; | ||
| 899 | |||
| 903 | /** | 900 | /** |
| 904 | * DRM device structure. This structure represent a complete card that | 901 | * DRM device structure. This structure represent a complete card that |
| 905 | * may contain multiple heads. | 902 | * may contain multiple heads. |
| @@ -999,6 +996,12 @@ struct drm_device { | |||
| 999 | 996 | ||
| 1000 | u32 max_vblank_count; /**< size of vblank counter register */ | 997 | u32 max_vblank_count; /**< size of vblank counter register */ |
| 1001 | 998 | ||
| 999 | /** | ||
| 1000 | * List of events | ||
| 1001 | */ | ||
| 1002 | struct list_head vblank_event_list; | ||
| 1003 | spinlock_t event_lock; | ||
| 1004 | |||
| 1002 | /*@} */ | 1005 | /*@} */ |
| 1003 | cycles_t ctx_start; | 1006 | cycles_t ctx_start; |
| 1004 | cycles_t lck_start; | 1007 | cycles_t lck_start; |
| @@ -1135,6 +1138,8 @@ extern int drm_lastclose(struct drm_device *dev); | |||
| 1135 | extern int drm_open(struct inode *inode, struct file *filp); | 1138 | extern int drm_open(struct inode *inode, struct file *filp); |
| 1136 | extern int drm_stub_open(struct inode *inode, struct file *filp); | 1139 | extern int drm_stub_open(struct inode *inode, struct file *filp); |
| 1137 | extern int drm_fasync(int fd, struct file *filp, int on); | 1140 | extern int drm_fasync(int fd, struct file *filp, int on); |
| 1141 | extern ssize_t drm_read(struct file *filp, char __user *buffer, | ||
| 1142 | size_t count, loff_t *offset); | ||
| 1138 | extern int drm_release(struct inode *inode, struct file *filp); | 1143 | extern int drm_release(struct inode *inode, struct file *filp); |
| 1139 | 1144 | ||
| 1140 | /* Mapping support (drm_vm.h) */ | 1145 | /* Mapping support (drm_vm.h) */ |
| @@ -1295,6 +1300,7 @@ extern u32 drm_vblank_count(struct drm_device *dev, int crtc); | |||
| 1295 | extern void drm_handle_vblank(struct drm_device *dev, int crtc); | 1300 | extern void drm_handle_vblank(struct drm_device *dev, int crtc); |
| 1296 | extern int drm_vblank_get(struct drm_device *dev, int crtc); | 1301 | extern int drm_vblank_get(struct drm_device *dev, int crtc); |
| 1297 | extern void drm_vblank_put(struct drm_device *dev, int crtc); | 1302 | extern void drm_vblank_put(struct drm_device *dev, int crtc); |
| 1303 | extern void drm_vblank_off(struct drm_device *dev, int crtc); | ||
| 1298 | extern void drm_vblank_cleanup(struct drm_device *dev); | 1304 | extern void drm_vblank_cleanup(struct drm_device *dev); |
| 1299 | /* Modesetting support */ | 1305 | /* Modesetting support */ |
| 1300 | extern void drm_vblank_pre_modeset(struct drm_device *dev, int crtc); | 1306 | extern void drm_vblank_pre_modeset(struct drm_device *dev, int crtc); |
| @@ -1519,14 +1525,27 @@ static __inline__ void drm_core_dropmap(struct drm_local_map *map) | |||
| 1519 | 1525 | ||
| 1520 | static __inline__ void *drm_calloc_large(size_t nmemb, size_t size) | 1526 | static __inline__ void *drm_calloc_large(size_t nmemb, size_t size) |
| 1521 | { | 1527 | { |
| 1528 | if (size != 0 && nmemb > ULONG_MAX / size) | ||
| 1529 | return NULL; | ||
| 1530 | |||
| 1522 | if (size * nmemb <= PAGE_SIZE) | 1531 | if (size * nmemb <= PAGE_SIZE) |
| 1523 | return kcalloc(nmemb, size, GFP_KERNEL); | 1532 | return kcalloc(nmemb, size, GFP_KERNEL); |
| 1524 | 1533 | ||
| 1534 | return __vmalloc(size * nmemb, | ||
| 1535 | GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO, PAGE_KERNEL); | ||
| 1536 | } | ||
| 1537 | |||
| 1538 | /* Modeled after cairo's malloc_ab, it's like calloc but without the zeroing. */ | ||
| 1539 | static __inline__ void *drm_malloc_ab(size_t nmemb, size_t size) | ||
| 1540 | { | ||
| 1525 | if (size != 0 && nmemb > ULONG_MAX / size) | 1541 | if (size != 0 && nmemb > ULONG_MAX / size) |
| 1526 | return NULL; | 1542 | return NULL; |
| 1527 | 1543 | ||
| 1544 | if (size * nmemb <= PAGE_SIZE) | ||
| 1545 | return kmalloc(nmemb * size, GFP_KERNEL); | ||
| 1546 | |||
| 1528 | return __vmalloc(size * nmemb, | 1547 | return __vmalloc(size * nmemb, |
| 1529 | GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO, PAGE_KERNEL); | 1548 | GFP_KERNEL | __GFP_HIGHMEM, PAGE_KERNEL); |
| 1530 | } | 1549 | } |
| 1531 | 1550 | ||
| 1532 | static __inline void drm_free_large(void *ptr) | 1551 | static __inline void drm_free_large(void *ptr) |
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index b69347b8904f..fdf43abc36db 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
| @@ -123,7 +123,7 @@ struct drm_display_mode { | |||
| 123 | int type; | 123 | int type; |
| 124 | 124 | ||
| 125 | /* Proposed mode values */ | 125 | /* Proposed mode values */ |
| 126 | int clock; | 126 | int clock; /* in kHz */ |
| 127 | int hdisplay; | 127 | int hdisplay; |
| 128 | int hsync_start; | 128 | int hsync_start; |
| 129 | int hsync_end; | 129 | int hsync_end; |
| @@ -164,8 +164,8 @@ struct drm_display_mode { | |||
| 164 | int *private; | 164 | int *private; |
| 165 | int private_flags; | 165 | int private_flags; |
| 166 | 166 | ||
| 167 | int vrefresh; | 167 | int vrefresh; /* in Hz */ |
| 168 | float hsync; | 168 | int hsync; /* in kHz */ |
| 169 | }; | 169 | }; |
| 170 | 170 | ||
| 171 | enum drm_connector_status { | 171 | enum drm_connector_status { |
| @@ -242,6 +242,21 @@ struct drm_framebuffer_funcs { | |||
| 242 | int (*create_handle)(struct drm_framebuffer *fb, | 242 | int (*create_handle)(struct drm_framebuffer *fb, |
| 243 | struct drm_file *file_priv, | 243 | struct drm_file *file_priv, |
| 244 | unsigned int *handle); | 244 | unsigned int *handle); |
| 245 | /** | ||
| 246 | * Optinal callback for the dirty fb ioctl. | ||
| 247 | * | ||
| 248 | * Userspace can notify the driver via this callback | ||
| 249 | * that a area of the framebuffer has changed and should | ||
| 250 | * be flushed to the display hardware. | ||
| 251 | * | ||
| 252 | * See documentation in drm_mode.h for the struct | ||
| 253 | * drm_mode_fb_dirty_cmd for more information as all | ||
| 254 | * the semantics and arguments have a one to one mapping | ||
| 255 | * on this function. | ||
| 256 | */ | ||
| 257 | int (*dirty)(struct drm_framebuffer *framebuffer, unsigned flags, | ||
| 258 | unsigned color, struct drm_clip_rect *clips, | ||
| 259 | unsigned num_clips); | ||
| 245 | }; | 260 | }; |
| 246 | 261 | ||
| 247 | struct drm_framebuffer { | 262 | struct drm_framebuffer { |
| @@ -256,7 +271,7 @@ struct drm_framebuffer { | |||
| 256 | unsigned int depth; | 271 | unsigned int depth; |
| 257 | int bits_per_pixel; | 272 | int bits_per_pixel; |
| 258 | int flags; | 273 | int flags; |
| 259 | void *fbdev; | 274 | struct fb_info *fbdev; |
| 260 | u32 pseudo_palette[17]; | 275 | u32 pseudo_palette[17]; |
| 261 | struct list_head filp_head; | 276 | struct list_head filp_head; |
| 262 | /* if you are using the helper */ | 277 | /* if you are using the helper */ |
| @@ -290,6 +305,7 @@ struct drm_property { | |||
| 290 | struct drm_crtc; | 305 | struct drm_crtc; |
| 291 | struct drm_connector; | 306 | struct drm_connector; |
| 292 | struct drm_encoder; | 307 | struct drm_encoder; |
| 308 | struct drm_pending_vblank_event; | ||
| 293 | 309 | ||
| 294 | /** | 310 | /** |
| 295 | * drm_crtc_funcs - control CRTCs for a given device | 311 | * drm_crtc_funcs - control CRTCs for a given device |
| @@ -333,6 +349,19 @@ struct drm_crtc_funcs { | |||
| 333 | void (*destroy)(struct drm_crtc *crtc); | 349 | void (*destroy)(struct drm_crtc *crtc); |
| 334 | 350 | ||
| 335 | int (*set_config)(struct drm_mode_set *set); | 351 | int (*set_config)(struct drm_mode_set *set); |
| 352 | |||
| 353 | /* | ||
| 354 | * Flip to the given framebuffer. This implements the page | ||
| 355 | * flip ioctl descibed in drm_mode.h, specifically, the | ||
| 356 | * implementation must return immediately and block all | ||
| 357 | * rendering to the current fb until the flip has completed. | ||
| 358 | * If userspace set the event flag in the ioctl, the event | ||
| 359 | * argument will point to an event to send back when the flip | ||
| 360 | * completes, otherwise it will be NULL. | ||
| 361 | */ | ||
| 362 | int (*page_flip)(struct drm_crtc *crtc, | ||
| 363 | struct drm_framebuffer *fb, | ||
| 364 | struct drm_pending_vblank_event *event); | ||
| 336 | }; | 365 | }; |
| 337 | 366 | ||
| 338 | /** | 367 | /** |
| @@ -596,6 +625,7 @@ struct drm_mode_config { | |||
| 596 | /* Optional properties */ | 625 | /* Optional properties */ |
| 597 | struct drm_property *scaling_mode_property; | 626 | struct drm_property *scaling_mode_property; |
| 598 | struct drm_property *dithering_mode_property; | 627 | struct drm_property *dithering_mode_property; |
| 628 | struct drm_property *dirty_info_property; | ||
| 599 | }; | 629 | }; |
| 600 | 630 | ||
| 601 | #define obj_to_crtc(x) container_of(x, struct drm_crtc, base) | 631 | #define obj_to_crtc(x) container_of(x, struct drm_crtc, base) |
| @@ -667,6 +697,7 @@ extern void drm_mode_validate_size(struct drm_device *dev, | |||
| 667 | extern void drm_mode_prune_invalid(struct drm_device *dev, | 697 | extern void drm_mode_prune_invalid(struct drm_device *dev, |
| 668 | struct list_head *mode_list, bool verbose); | 698 | struct list_head *mode_list, bool verbose); |
| 669 | extern void drm_mode_sort(struct list_head *mode_list); | 699 | extern void drm_mode_sort(struct list_head *mode_list); |
| 700 | extern int drm_mode_hsync(struct drm_display_mode *mode); | ||
| 670 | extern int drm_mode_vrefresh(struct drm_display_mode *mode); | 701 | extern int drm_mode_vrefresh(struct drm_display_mode *mode); |
| 671 | extern void drm_mode_set_crtcinfo(struct drm_display_mode *p, | 702 | extern void drm_mode_set_crtcinfo(struct drm_display_mode *p, |
| 672 | int adjust_flags); | 703 | int adjust_flags); |
| @@ -703,6 +734,7 @@ extern int drm_mode_create_tv_properties(struct drm_device *dev, int num_formats | |||
| 703 | char *formats[]); | 734 | char *formats[]); |
| 704 | extern int drm_mode_create_scaling_mode_property(struct drm_device *dev); | 735 | extern int drm_mode_create_scaling_mode_property(struct drm_device *dev); |
| 705 | extern int drm_mode_create_dithering_property(struct drm_device *dev); | 736 | extern int drm_mode_create_dithering_property(struct drm_device *dev); |
| 737 | extern int drm_mode_create_dirty_info_property(struct drm_device *dev); | ||
| 706 | extern char *drm_get_encoder_name(struct drm_encoder *encoder); | 738 | extern char *drm_get_encoder_name(struct drm_encoder *encoder); |
| 707 | 739 | ||
| 708 | extern int drm_mode_connector_attach_encoder(struct drm_connector *connector, | 740 | extern int drm_mode_connector_attach_encoder(struct drm_connector *connector, |
| @@ -711,7 +743,8 @@ extern void drm_mode_connector_detach_encoder(struct drm_connector *connector, | |||
| 711 | struct drm_encoder *encoder); | 743 | struct drm_encoder *encoder); |
| 712 | extern bool drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc, | 744 | extern bool drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc, |
| 713 | int gamma_size); | 745 | int gamma_size); |
| 714 | extern void *drm_mode_object_find(struct drm_device *dev, uint32_t id, uint32_t type); | 746 | extern struct drm_mode_object *drm_mode_object_find(struct drm_device *dev, |
| 747 | uint32_t id, uint32_t type); | ||
| 715 | /* IOCTLs */ | 748 | /* IOCTLs */ |
| 716 | extern int drm_mode_getresources(struct drm_device *dev, | 749 | extern int drm_mode_getresources(struct drm_device *dev, |
| 717 | void *data, struct drm_file *file_priv); | 750 | void *data, struct drm_file *file_priv); |
| @@ -730,6 +763,8 @@ extern int drm_mode_rmfb(struct drm_device *dev, | |||
| 730 | void *data, struct drm_file *file_priv); | 763 | void *data, struct drm_file *file_priv); |
| 731 | extern int drm_mode_getfb(struct drm_device *dev, | 764 | extern int drm_mode_getfb(struct drm_device *dev, |
| 732 | void *data, struct drm_file *file_priv); | 765 | void *data, struct drm_file *file_priv); |
| 766 | extern int drm_mode_dirtyfb_ioctl(struct drm_device *dev, | ||
| 767 | void *data, struct drm_file *file_priv); | ||
| 733 | extern int drm_mode_addmode_ioctl(struct drm_device *dev, | 768 | extern int drm_mode_addmode_ioctl(struct drm_device *dev, |
| 734 | void *data, struct drm_file *file_priv); | 769 | void *data, struct drm_file *file_priv); |
| 735 | extern int drm_mode_rmmode_ioctl(struct drm_device *dev, | 770 | extern int drm_mode_rmmode_ioctl(struct drm_device *dev, |
| @@ -756,6 +791,8 @@ extern int drm_mode_gamma_get_ioctl(struct drm_device *dev, | |||
| 756 | extern int drm_mode_gamma_set_ioctl(struct drm_device *dev, | 791 | extern int drm_mode_gamma_set_ioctl(struct drm_device *dev, |
| 757 | void *data, struct drm_file *file_priv); | 792 | void *data, struct drm_file *file_priv); |
| 758 | extern bool drm_detect_hdmi_monitor(struct edid *edid); | 793 | extern bool drm_detect_hdmi_monitor(struct edid *edid); |
| 794 | extern int drm_mode_page_flip_ioctl(struct drm_device *dev, | ||
| 795 | void *data, struct drm_file *file_priv); | ||
| 759 | extern struct drm_display_mode *drm_cvt_mode(struct drm_device *dev, | 796 | extern struct drm_display_mode *drm_cvt_mode(struct drm_device *dev, |
| 760 | int hdisplay, int vdisplay, int vrefresh, | 797 | int hdisplay, int vdisplay, int vrefresh, |
| 761 | bool reduced, bool interlaced, bool margins); | 798 | bool reduced, bool interlaced, bool margins); |
diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h new file mode 100644 index 000000000000..a49e791db0b0 --- /dev/null +++ b/include/drm/drm_dp_helper.h | |||
| @@ -0,0 +1,180 @@ | |||
| 1 | /* | ||
| 2 | * Copyright © 2008 Keith Packard | ||
| 3 | * | ||
| 4 | * Permission to use, copy, modify, distribute, and sell this software and its | ||
| 5 | * documentation for any purpose is hereby granted without fee, provided that | ||
| 6 | * the above copyright notice appear in all copies and that both that copyright | ||
| 7 | * notice and this permission notice appear in supporting documentation, and | ||
| 8 | * that the name of the copyright holders not be used in advertising or | ||
| 9 | * publicity pertaining to distribution of the software without specific, | ||
| 10 | * written prior permission. The copyright holders make no representations | ||
| 11 | * about the suitability of this software for any purpose. It is provided "as | ||
| 12 | * is" without express or implied warranty. | ||
| 13 | * | ||
| 14 | * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, | ||
| 15 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO | ||
| 16 | * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR | ||
| 17 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, | ||
| 18 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | ||
| 19 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE | ||
| 20 | * OF THIS SOFTWARE. | ||
| 21 | */ | ||
| 22 | |||
| 23 | #ifndef _DRM_DP_HELPER_H_ | ||
| 24 | #define _DRM_DP_HELPER_H_ | ||
| 25 | |||
| 26 | /* From the VESA DisplayPort spec */ | ||
| 27 | |||
| 28 | #define AUX_NATIVE_WRITE 0x8 | ||
| 29 | #define AUX_NATIVE_READ 0x9 | ||
| 30 | #define AUX_I2C_WRITE 0x0 | ||
| 31 | #define AUX_I2C_READ 0x1 | ||
| 32 | #define AUX_I2C_STATUS 0x2 | ||
| 33 | #define AUX_I2C_MOT 0x4 | ||
| 34 | |||
| 35 | #define AUX_NATIVE_REPLY_ACK (0x0 << 4) | ||
| 36 | #define AUX_NATIVE_REPLY_NACK (0x1 << 4) | ||
| 37 | #define AUX_NATIVE_REPLY_DEFER (0x2 << 4) | ||
| 38 | #define AUX_NATIVE_REPLY_MASK (0x3 << 4) | ||
| 39 | |||
| 40 | #define AUX_I2C_REPLY_ACK (0x0 << 6) | ||
| 41 | #define AUX_I2C_REPLY_NACK (0x1 << 6) | ||
| 42 | #define AUX_I2C_REPLY_DEFER (0x2 << 6) | ||
| 43 | #define AUX_I2C_REPLY_MASK (0x3 << 6) | ||
| 44 | |||
| 45 | /* AUX CH addresses */ | ||
| 46 | /* DPCD */ | ||
| 47 | #define DP_DPCD_REV 0x000 | ||
| 48 | |||
| 49 | #define DP_MAX_LINK_RATE 0x001 | ||
| 50 | |||
| 51 | #define DP_MAX_LANE_COUNT 0x002 | ||
| 52 | # define DP_MAX_LANE_COUNT_MASK 0x1f | ||
| 53 | # define DP_ENHANCED_FRAME_CAP (1 << 7) | ||
| 54 | |||
| 55 | #define DP_MAX_DOWNSPREAD 0x003 | ||
| 56 | # define DP_NO_AUX_HANDSHAKE_LINK_TRAINING (1 << 6) | ||
| 57 | |||
| 58 | #define DP_NORP 0x004 | ||
| 59 | |||
| 60 | #define DP_DOWNSTREAMPORT_PRESENT 0x005 | ||
| 61 | # define DP_DWN_STRM_PORT_PRESENT (1 << 0) | ||
| 62 | # define DP_DWN_STRM_PORT_TYPE_MASK 0x06 | ||
| 63 | /* 00b = DisplayPort */ | ||
| 64 | /* 01b = Analog */ | ||
| 65 | /* 10b = TMDS or HDMI */ | ||
| 66 | /* 11b = Other */ | ||
| 67 | # define DP_FORMAT_CONVERSION (1 << 3) | ||
| 68 | |||
| 69 | #define DP_MAIN_LINK_CHANNEL_CODING 0x006 | ||
| 70 | |||
| 71 | /* link configuration */ | ||
| 72 | #define DP_LINK_BW_SET 0x100 | ||
| 73 | # define DP_LINK_BW_1_62 0x06 | ||
| 74 | # define DP_LINK_BW_2_7 0x0a | ||
| 75 | |||
| 76 | #define DP_LANE_COUNT_SET 0x101 | ||
| 77 | # define DP_LANE_COUNT_MASK 0x0f | ||
| 78 | # define DP_LANE_COUNT_ENHANCED_FRAME_EN (1 << 7) | ||
| 79 | |||
| 80 | #define DP_TRAINING_PATTERN_SET 0x102 | ||
| 81 | # define DP_TRAINING_PATTERN_DISABLE 0 | ||
| 82 | # define DP_TRAINING_PATTERN_1 1 | ||
| 83 | # define DP_TRAINING_PATTERN_2 2 | ||
| 84 | # define DP_TRAINING_PATTERN_MASK 0x3 | ||
| 85 | |||
| 86 | # define DP_LINK_QUAL_PATTERN_DISABLE (0 << 2) | ||
| 87 | # define DP_LINK_QUAL_PATTERN_D10_2 (1 << 2) | ||
| 88 | # define DP_LINK_QUAL_PATTERN_ERROR_RATE (2 << 2) | ||
| 89 | # define DP_LINK_QUAL_PATTERN_PRBS7 (3 << 2) | ||
| 90 | # define DP_LINK_QUAL_PATTERN_MASK (3 << 2) | ||
| 91 | |||
| 92 | # define DP_RECOVERED_CLOCK_OUT_EN (1 << 4) | ||
| 93 | # define DP_LINK_SCRAMBLING_DISABLE (1 << 5) | ||
| 94 | |||
| 95 | # define DP_SYMBOL_ERROR_COUNT_BOTH (0 << 6) | ||
| 96 | # define DP_SYMBOL_ERROR_COUNT_DISPARITY (1 << 6) | ||
| 97 | # define DP_SYMBOL_ERROR_COUNT_SYMBOL (2 << 6) | ||
| 98 | # define DP_SYMBOL_ERROR_COUNT_MASK (3 << 6) | ||
| 99 | |||
| 100 | #define DP_TRAINING_LANE0_SET 0x103 | ||
| 101 | #define DP_TRAINING_LANE1_SET 0x104 | ||
| 102 | #define DP_TRAINING_LANE2_SET 0x105 | ||
| 103 | #define DP_TRAINING_LANE3_SET 0x106 | ||
| 104 | |||
| 105 | # define DP_TRAIN_VOLTAGE_SWING_MASK 0x3 | ||
| 106 | # define DP_TRAIN_VOLTAGE_SWING_SHIFT 0 | ||
| 107 | # define DP_TRAIN_MAX_SWING_REACHED (1 << 2) | ||
| 108 | # define DP_TRAIN_VOLTAGE_SWING_400 (0 << 0) | ||
| 109 | # define DP_TRAIN_VOLTAGE_SWING_600 (1 << 0) | ||
| 110 | # define DP_TRAIN_VOLTAGE_SWING_800 (2 << 0) | ||
| 111 | # define DP_TRAIN_VOLTAGE_SWING_1200 (3 << 0) | ||
| 112 | |||
| 113 | # define DP_TRAIN_PRE_EMPHASIS_MASK (3 << 3) | ||
| 114 | # define DP_TRAIN_PRE_EMPHASIS_0 (0 << 3) | ||
| 115 | # define DP_TRAIN_PRE_EMPHASIS_3_5 (1 << 3) | ||
| 116 | # define DP_TRAIN_PRE_EMPHASIS_6 (2 << 3) | ||
| 117 | # define DP_TRAIN_PRE_EMPHASIS_9_5 (3 << 3) | ||
| 118 | |||
| 119 | # define DP_TRAIN_PRE_EMPHASIS_SHIFT 3 | ||
| 120 | # define DP_TRAIN_MAX_PRE_EMPHASIS_REACHED (1 << 5) | ||
| 121 | |||
| 122 | #define DP_DOWNSPREAD_CTRL 0x107 | ||
| 123 | # define DP_SPREAD_AMP_0_5 (1 << 4) | ||
| 124 | |||
| 125 | #define DP_MAIN_LINK_CHANNEL_CODING_SET 0x108 | ||
| 126 | # define DP_SET_ANSI_8B10B (1 << 0) | ||
| 127 | |||
| 128 | #define DP_LANE0_1_STATUS 0x202 | ||
| 129 | #define DP_LANE2_3_STATUS 0x203 | ||
| 130 | # define DP_LANE_CR_DONE (1 << 0) | ||
| 131 | # define DP_LANE_CHANNEL_EQ_DONE (1 << 1) | ||
| 132 | # define DP_LANE_SYMBOL_LOCKED (1 << 2) | ||
| 133 | |||
| 134 | #define DP_CHANNEL_EQ_BITS (DP_LANE_CR_DONE | \ | ||
| 135 | DP_LANE_CHANNEL_EQ_DONE | \ | ||
| 136 | DP_LANE_SYMBOL_LOCKED) | ||
| 137 | |||
| 138 | #define DP_LANE_ALIGN_STATUS_UPDATED 0x204 | ||
| 139 | |||
| 140 | #define DP_INTERLANE_ALIGN_DONE (1 << 0) | ||
| 141 | #define DP_DOWNSTREAM_PORT_STATUS_CHANGED (1 << 6) | ||
| 142 | #define DP_LINK_STATUS_UPDATED (1 << 7) | ||
| 143 | |||
| 144 | #define DP_SINK_STATUS 0x205 | ||
| 145 | |||
| 146 | #define DP_RECEIVE_PORT_0_STATUS (1 << 0) | ||
| 147 | #define DP_RECEIVE_PORT_1_STATUS (1 << 1) | ||
| 148 | |||
| 149 | #define DP_ADJUST_REQUEST_LANE0_1 0x206 | ||
| 150 | #define DP_ADJUST_REQUEST_LANE2_3 0x207 | ||
| 151 | # define DP_ADJUST_VOLTAGE_SWING_LANE0_MASK 0x03 | ||
| 152 | # define DP_ADJUST_VOLTAGE_SWING_LANE0_SHIFT 0 | ||
| 153 | # define DP_ADJUST_PRE_EMPHASIS_LANE0_MASK 0x0c | ||
| 154 | # define DP_ADJUST_PRE_EMPHASIS_LANE0_SHIFT 2 | ||
| 155 | # define DP_ADJUST_VOLTAGE_SWING_LANE1_MASK 0x30 | ||
| 156 | # define DP_ADJUST_VOLTAGE_SWING_LANE1_SHIFT 4 | ||
| 157 | # define DP_ADJUST_PRE_EMPHASIS_LANE1_MASK 0xc0 | ||
| 158 | # define DP_ADJUST_PRE_EMPHASIS_LANE1_SHIFT 6 | ||
| 159 | |||
| 160 | #define DP_SET_POWER 0x600 | ||
| 161 | # define DP_SET_POWER_D0 0x1 | ||
| 162 | # define DP_SET_POWER_D3 0x2 | ||
| 163 | |||
| 164 | #define MODE_I2C_START 1 | ||
| 165 | #define MODE_I2C_WRITE 2 | ||
| 166 | #define MODE_I2C_READ 4 | ||
| 167 | #define MODE_I2C_STOP 8 | ||
| 168 | |||
| 169 | struct i2c_algo_dp_aux_data { | ||
| 170 | bool running; | ||
| 171 | u16 address; | ||
| 172 | int (*aux_ch) (struct i2c_adapter *adapter, | ||
| 173 | int mode, uint8_t write_byte, | ||
| 174 | uint8_t *read_byte); | ||
| 175 | }; | ||
| 176 | |||
| 177 | int | ||
| 178 | i2c_dp_aux_add_bus(struct i2c_adapter *adapter); | ||
| 179 | |||
| 180 | #endif /* _DRM_DP_HELPER_H_ */ | ||
diff --git a/include/drm/drm_edid.h b/include/drm/drm_edid.h index 7d6c9a2dfcbb..d33c3e038606 100644 --- a/include/drm/drm_edid.h +++ b/include/drm/drm_edid.h | |||
| @@ -106,6 +106,10 @@ struct detailed_data_color_point { | |||
| 106 | u8 wpindex2[3]; | 106 | u8 wpindex2[3]; |
| 107 | } __attribute__((packed)); | 107 | } __attribute__((packed)); |
| 108 | 108 | ||
| 109 | struct cvt_timing { | ||
| 110 | u8 code[3]; | ||
| 111 | } __attribute__((packed)); | ||
| 112 | |||
| 109 | struct detailed_non_pixel { | 113 | struct detailed_non_pixel { |
| 110 | u8 pad1; | 114 | u8 pad1; |
| 111 | u8 type; /* ff=serial, fe=string, fd=monitor range, fc=monitor name | 115 | u8 type; /* ff=serial, fe=string, fd=monitor range, fc=monitor name |
| @@ -117,9 +121,13 @@ struct detailed_non_pixel { | |||
| 117 | struct detailed_data_monitor_range range; | 121 | struct detailed_data_monitor_range range; |
| 118 | struct detailed_data_wpindex color; | 122 | struct detailed_data_wpindex color; |
| 119 | struct std_timing timings[5]; | 123 | struct std_timing timings[5]; |
| 124 | struct cvt_timing cvt[4]; | ||
| 120 | } data; | 125 | } data; |
| 121 | } __attribute__((packed)); | 126 | } __attribute__((packed)); |
| 122 | 127 | ||
| 128 | #define EDID_DETAIL_EST_TIMINGS 0xf7 | ||
| 129 | #define EDID_DETAIL_CVT_3BYTE 0xf8 | ||
| 130 | #define EDID_DETAIL_COLOR_MGMT_DATA 0xf9 | ||
| 123 | #define EDID_DETAIL_STD_MODES 0xfa | 131 | #define EDID_DETAIL_STD_MODES 0xfa |
| 124 | #define EDID_DETAIL_MONITOR_CPDATA 0xfb | 132 | #define EDID_DETAIL_MONITOR_CPDATA 0xfb |
| 125 | #define EDID_DETAIL_MONITOR_NAME 0xfc | 133 | #define EDID_DETAIL_MONITOR_NAME 0xfc |
diff --git a/include/drm/drm_mm.h b/include/drm/drm_mm.h index 62329f9a42cb..4c10be39a43b 100644 --- a/include/drm/drm_mm.h +++ b/include/drm/drm_mm.h | |||
| @@ -66,6 +66,13 @@ extern struct drm_mm_node *drm_mm_get_block_generic(struct drm_mm_node *node, | |||
| 66 | unsigned long size, | 66 | unsigned long size, |
| 67 | unsigned alignment, | 67 | unsigned alignment, |
| 68 | int atomic); | 68 | int atomic); |
| 69 | extern struct drm_mm_node *drm_mm_get_block_range_generic( | ||
| 70 | struct drm_mm_node *node, | ||
| 71 | unsigned long size, | ||
| 72 | unsigned alignment, | ||
| 73 | unsigned long start, | ||
| 74 | unsigned long end, | ||
| 75 | int atomic); | ||
| 69 | static inline struct drm_mm_node *drm_mm_get_block(struct drm_mm_node *parent, | 76 | static inline struct drm_mm_node *drm_mm_get_block(struct drm_mm_node *parent, |
| 70 | unsigned long size, | 77 | unsigned long size, |
| 71 | unsigned alignment) | 78 | unsigned alignment) |
| @@ -78,11 +85,38 @@ static inline struct drm_mm_node *drm_mm_get_block_atomic(struct drm_mm_node *pa | |||
| 78 | { | 85 | { |
| 79 | return drm_mm_get_block_generic(parent, size, alignment, 1); | 86 | return drm_mm_get_block_generic(parent, size, alignment, 1); |
| 80 | } | 87 | } |
| 88 | static inline struct drm_mm_node *drm_mm_get_block_range( | ||
| 89 | struct drm_mm_node *parent, | ||
| 90 | unsigned long size, | ||
| 91 | unsigned alignment, | ||
| 92 | unsigned long start, | ||
| 93 | unsigned long end) | ||
| 94 | { | ||
| 95 | return drm_mm_get_block_range_generic(parent, size, alignment, | ||
| 96 | start, end, 0); | ||
| 97 | } | ||
| 98 | static inline struct drm_mm_node *drm_mm_get_block_atomic_range( | ||
| 99 | struct drm_mm_node *parent, | ||
| 100 | unsigned long size, | ||
| 101 | unsigned alignment, | ||
| 102 | unsigned long start, | ||
| 103 | unsigned long end) | ||
| 104 | { | ||
| 105 | return drm_mm_get_block_range_generic(parent, size, alignment, | ||
| 106 | start, end, 1); | ||
| 107 | } | ||
| 81 | extern void drm_mm_put_block(struct drm_mm_node *cur); | 108 | extern void drm_mm_put_block(struct drm_mm_node *cur); |
| 82 | extern struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm, | 109 | extern struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm, |
| 83 | unsigned long size, | 110 | unsigned long size, |
| 84 | unsigned alignment, | 111 | unsigned alignment, |
| 85 | int best_match); | 112 | int best_match); |
| 113 | extern struct drm_mm_node *drm_mm_search_free_in_range( | ||
| 114 | const struct drm_mm *mm, | ||
| 115 | unsigned long size, | ||
| 116 | unsigned alignment, | ||
| 117 | unsigned long start, | ||
| 118 | unsigned long end, | ||
| 119 | int best_match); | ||
| 86 | extern int drm_mm_init(struct drm_mm *mm, unsigned long start, | 120 | extern int drm_mm_init(struct drm_mm *mm, unsigned long start, |
| 87 | unsigned long size); | 121 | unsigned long size); |
| 88 | extern void drm_mm_takedown(struct drm_mm *mm); | 122 | extern void drm_mm_takedown(struct drm_mm *mm); |
| @@ -99,6 +133,7 @@ static inline struct drm_mm *drm_get_mm(struct drm_mm_node *block) | |||
| 99 | return block->mm; | 133 | return block->mm; |
| 100 | } | 134 | } |
| 101 | 135 | ||
| 136 | extern void drm_mm_debug_table(struct drm_mm *mm, const char *prefix); | ||
| 102 | #ifdef CONFIG_DEBUG_FS | 137 | #ifdef CONFIG_DEBUG_FS |
| 103 | int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm); | 138 | int drm_mm_dump_table(struct seq_file *m, struct drm_mm *mm); |
| 104 | #endif | 139 | #endif |
diff --git a/include/drm/drm_mode.h b/include/drm/drm_mode.h index 1f908416aedb..43009bc2e757 100644 --- a/include/drm/drm_mode.h +++ b/include/drm/drm_mode.h | |||
| @@ -27,9 +27,6 @@ | |||
| 27 | #ifndef _DRM_MODE_H | 27 | #ifndef _DRM_MODE_H |
| 28 | #define _DRM_MODE_H | 28 | #define _DRM_MODE_H |
| 29 | 29 | ||
| 30 | #include <linux/kernel.h> | ||
| 31 | #include <linux/types.h> | ||
| 32 | |||
| 33 | #define DRM_DISPLAY_INFO_LEN 32 | 30 | #define DRM_DISPLAY_INFO_LEN 32 |
| 34 | #define DRM_CONNECTOR_NAME_LEN 32 | 31 | #define DRM_CONNECTOR_NAME_LEN 32 |
| 35 | #define DRM_DISPLAY_MODE_LEN 32 | 32 | #define DRM_DISPLAY_MODE_LEN 32 |
| @@ -78,6 +75,11 @@ | |||
| 78 | #define DRM_MODE_DITHERING_OFF 0 | 75 | #define DRM_MODE_DITHERING_OFF 0 |
| 79 | #define DRM_MODE_DITHERING_ON 1 | 76 | #define DRM_MODE_DITHERING_ON 1 |
| 80 | 77 | ||
| 78 | /* Dirty info options */ | ||
| 79 | #define DRM_MODE_DIRTY_OFF 0 | ||
| 80 | #define DRM_MODE_DIRTY_ON 1 | ||
| 81 | #define DRM_MODE_DIRTY_ANNOTATE 2 | ||
| 82 | |||
| 81 | struct drm_mode_modeinfo { | 83 | struct drm_mode_modeinfo { |
| 82 | __u32 clock; | 84 | __u32 clock; |
| 83 | __u16 hdisplay, hsync_start, hsync_end, htotal, hskew; | 85 | __u16 hdisplay, hsync_start, hsync_end, htotal, hskew; |
| @@ -225,6 +227,45 @@ struct drm_mode_fb_cmd { | |||
| 225 | __u32 handle; | 227 | __u32 handle; |
| 226 | }; | 228 | }; |
| 227 | 229 | ||
| 230 | #define DRM_MODE_FB_DIRTY_ANNOTATE_COPY 0x01 | ||
| 231 | #define DRM_MODE_FB_DIRTY_ANNOTATE_FILL 0x02 | ||
| 232 | #define DRM_MODE_FB_DIRTY_FLAGS 0x03 | ||
| 233 | |||
| 234 | /* | ||
| 235 | * Mark a region of a framebuffer as dirty. | ||
| 236 | * | ||
| 237 | * Some hardware does not automatically update display contents | ||
| 238 | * as a hardware or software draw to a framebuffer. This ioctl | ||
| 239 | * allows userspace to tell the kernel and the hardware what | ||
| 240 | * regions of the framebuffer have changed. | ||
| 241 | * | ||
| 242 | * The kernel or hardware is free to update more then just the | ||
| 243 | * region specified by the clip rects. The kernel or hardware | ||
| 244 | * may also delay and/or coalesce several calls to dirty into a | ||
| 245 | * single update. | ||
| 246 | * | ||
| 247 | * Userspace may annotate the updates, the annotates are a | ||
| 248 | * promise made by the caller that the change is either a copy | ||
| 249 | * of pixels or a fill of a single color in the region specified. | ||
| 250 | * | ||
| 251 | * If the DRM_MODE_FB_DIRTY_ANNOTATE_COPY flag is given then | ||
| 252 | * the number of updated regions are half of num_clips given, | ||
| 253 | * where the clip rects are paired in src and dst. The width and | ||
| 254 | * height of each one of the pairs must match. | ||
| 255 | * | ||
| 256 | * If the DRM_MODE_FB_DIRTY_ANNOTATE_FILL flag is given the caller | ||
| 257 | * promises that the region specified of the clip rects is filled | ||
| 258 | * completely with a single color as given in the color argument. | ||
| 259 | */ | ||
| 260 | |||
| 261 | struct drm_mode_fb_dirty_cmd { | ||
| 262 | __u32 fb_id; | ||
| 263 | __u32 flags; | ||
| 264 | __u32 color; | ||
| 265 | __u32 num_clips; | ||
| 266 | __u64 clips_ptr; | ||
| 267 | }; | ||
| 268 | |||
| 228 | struct drm_mode_mode_cmd { | 269 | struct drm_mode_mode_cmd { |
| 229 | __u32 connector_id; | 270 | __u32 connector_id; |
| 230 | struct drm_mode_modeinfo mode; | 271 | struct drm_mode_modeinfo mode; |
| @@ -268,4 +309,37 @@ struct drm_mode_crtc_lut { | |||
| 268 | __u64 blue; | 309 | __u64 blue; |
| 269 | }; | 310 | }; |
| 270 | 311 | ||
| 312 | #define DRM_MODE_PAGE_FLIP_EVENT 0x01 | ||
| 313 | #define DRM_MODE_PAGE_FLIP_FLAGS DRM_MODE_PAGE_FLIP_EVENT | ||
| 314 | |||
| 315 | /* | ||
| 316 | * Request a page flip on the specified crtc. | ||
| 317 | * | ||
| 318 | * This ioctl will ask KMS to schedule a page flip for the specified | ||
| 319 | * crtc. Once any pending rendering targeting the specified fb (as of | ||
| 320 | * ioctl time) has completed, the crtc will be reprogrammed to display | ||
| 321 | * that fb after the next vertical refresh. The ioctl returns | ||
| 322 | * immediately, but subsequent rendering to the current fb will block | ||
| 323 | * in the execbuffer ioctl until the page flip happens. If a page | ||
| 324 | * flip is already pending as the ioctl is called, EBUSY will be | ||
| 325 | * returned. | ||
| 326 | * | ||
| 327 | * The ioctl supports one flag, DRM_MODE_PAGE_FLIP_EVENT, which will | ||
| 328 | * request that drm sends back a vblank event (see drm.h: struct | ||
| 329 | * drm_event_vblank) when the page flip is done. The user_data field | ||
| 330 | * passed in with this ioctl will be returned as the user_data field | ||
| 331 | * in the vblank event struct. | ||
| 332 | * | ||
| 333 | * The reserved field must be zero until we figure out something | ||
| 334 | * clever to use it for. | ||
| 335 | */ | ||
| 336 | |||
| 337 | struct drm_mode_crtc_page_flip { | ||
| 338 | __u32 crtc_id; | ||
| 339 | __u32 fb_id; | ||
| 340 | __u32 flags; | ||
| 341 | __u32 reserved; | ||
| 342 | __u64 user_data; | ||
| 343 | }; | ||
| 344 | |||
| 271 | #endif | 345 | #endif |
diff --git a/include/drm/drm_os_linux.h b/include/drm/drm_os_linux.h index 26641e95e0a4..393369147a2d 100644 --- a/include/drm/drm_os_linux.h +++ b/include/drm/drm_os_linux.h | |||
| @@ -123,5 +123,5 @@ do { \ | |||
| 123 | remove_wait_queue(&(queue), &entry); \ | 123 | remove_wait_queue(&(queue), &entry); \ |
| 124 | } while (0) | 124 | } while (0) |
| 125 | 125 | ||
| 126 | #define DRM_WAKEUP( queue ) wake_up_interruptible( queue ) | 126 | #define DRM_WAKEUP( queue ) wake_up( queue ) |
| 127 | #define DRM_INIT_WAITQUEUE( queue ) init_waitqueue_head( queue ) | 127 | #define DRM_INIT_WAITQUEUE( queue ) init_waitqueue_head( queue ) |
diff --git a/include/drm/i2c/ch7006.h b/include/drm/i2c/ch7006.h new file mode 100644 index 000000000000..8390b437a1f8 --- /dev/null +++ b/include/drm/i2c/ch7006.h | |||
| @@ -0,0 +1,86 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2009 Francisco Jerez. | ||
| 3 | * All Rights Reserved. | ||
| 4 | * | ||
| 5 | * Permission is hereby granted, free of charge, to any person obtaining | ||
| 6 | * a copy of this software and associated documentation files (the | ||
| 7 | * "Software"), to deal in the Software without restriction, including | ||
| 8 | * without limitation the rights to use, copy, modify, merge, publish, | ||
| 9 | * distribute, sublicense, and/or sell copies of the Software, and to | ||
| 10 | * permit persons to whom the Software is furnished to do so, subject to | ||
| 11 | * the following conditions: | ||
| 12 | * | ||
| 13 | * The above copyright notice and this permission notice (including the | ||
| 14 | * next paragraph) shall be included in all copies or substantial | ||
| 15 | * portions of the Software. | ||
| 16 | * | ||
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
| 18 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
| 20 | * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE | ||
| 21 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
| 22 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
| 23 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
| 24 | * | ||
| 25 | */ | ||
| 26 | |||
| 27 | #ifndef __DRM_I2C_CH7006_H__ | ||
| 28 | #define __DRM_I2C_CH7006_H__ | ||
| 29 | |||
| 30 | /** | ||
| 31 | * struct ch7006_encoder_params | ||
| 32 | * | ||
| 33 | * Describes how the ch7006 is wired up with the GPU. It should be | ||
| 34 | * used as the @params parameter of its @set_config method. | ||
| 35 | * | ||
| 36 | * See "http://www.chrontel.com/pdf/7006.pdf" for their precise | ||
| 37 | * meaning. | ||
| 38 | */ | ||
| 39 | struct ch7006_encoder_params { | ||
| 40 | enum { | ||
| 41 | CH7006_FORMAT_RGB16 = 0, | ||
| 42 | CH7006_FORMAT_YCrCb24m16, | ||
| 43 | CH7006_FORMAT_RGB24m16, | ||
| 44 | CH7006_FORMAT_RGB15, | ||
| 45 | CH7006_FORMAT_RGB24m12C, | ||
| 46 | CH7006_FORMAT_RGB24m12I, | ||
| 47 | CH7006_FORMAT_RGB24m8, | ||
| 48 | CH7006_FORMAT_RGB16m8, | ||
| 49 | CH7006_FORMAT_RGB15m8, | ||
| 50 | CH7006_FORMAT_YCrCb24m8, | ||
| 51 | } input_format; | ||
| 52 | |||
| 53 | enum { | ||
| 54 | CH7006_CLOCK_SLAVE = 0, | ||
| 55 | CH7006_CLOCK_MASTER, | ||
| 56 | } clock_mode; | ||
| 57 | |||
| 58 | enum { | ||
| 59 | CH7006_CLOCK_EDGE_NEG = 0, | ||
| 60 | CH7006_CLOCK_EDGE_POS, | ||
| 61 | } clock_edge; | ||
| 62 | |||
| 63 | int xcm, pcm; | ||
| 64 | |||
| 65 | enum { | ||
| 66 | CH7006_SYNC_SLAVE = 0, | ||
| 67 | CH7006_SYNC_MASTER, | ||
| 68 | } sync_direction; | ||
| 69 | |||
| 70 | enum { | ||
| 71 | CH7006_SYNC_SEPARATED = 0, | ||
| 72 | CH7006_SYNC_EMBEDDED, | ||
| 73 | } sync_encoding; | ||
| 74 | |||
| 75 | enum { | ||
| 76 | CH7006_POUT_1_8V = 0, | ||
| 77 | CH7006_POUT_3_3V, | ||
| 78 | } pout_level; | ||
| 79 | |||
| 80 | enum { | ||
| 81 | CH7006_ACTIVE_HSYNC = 0, | ||
| 82 | CH7006_ACTIVE_DSTART, | ||
| 83 | } active_detect; | ||
| 84 | }; | ||
| 85 | |||
| 86 | #endif | ||
diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h index 7e0cb1da92e6..ec3f5e80a5df 100644 --- a/include/drm/i915_drm.h +++ b/include/drm/i915_drm.h | |||
| @@ -27,11 +27,11 @@ | |||
| 27 | #ifndef _I915_DRM_H_ | 27 | #ifndef _I915_DRM_H_ |
| 28 | #define _I915_DRM_H_ | 28 | #define _I915_DRM_H_ |
| 29 | 29 | ||
| 30 | #include "drm.h" | ||
| 31 | |||
| 30 | /* Please note that modifications to all structs defined here are | 32 | /* Please note that modifications to all structs defined here are |
| 31 | * subject to backwards-compatibility constraints. | 33 | * subject to backwards-compatibility constraints. |
| 32 | */ | 34 | */ |
| 33 | #include <linux/types.h> | ||
| 34 | #include "drm.h" | ||
| 35 | 35 | ||
| 36 | /* Each region is a minimum of 16k, and there are at most 255 of them. | 36 | /* Each region is a minimum of 16k, and there are at most 255 of them. |
| 37 | */ | 37 | */ |
| @@ -186,6 +186,8 @@ typedef struct _drm_i915_sarea { | |||
| 186 | #define DRM_I915_GEM_MMAP_GTT 0x24 | 186 | #define DRM_I915_GEM_MMAP_GTT 0x24 |
| 187 | #define DRM_I915_GET_PIPE_FROM_CRTC_ID 0x25 | 187 | #define DRM_I915_GET_PIPE_FROM_CRTC_ID 0x25 |
| 188 | #define DRM_I915_GEM_MADVISE 0x26 | 188 | #define DRM_I915_GEM_MADVISE 0x26 |
| 189 | #define DRM_I915_OVERLAY_PUT_IMAGE 0x27 | ||
| 190 | #define DRM_I915_OVERLAY_ATTRS 0x28 | ||
| 189 | 191 | ||
| 190 | #define DRM_IOCTL_I915_INIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t) | 192 | #define DRM_IOCTL_I915_INIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t) |
| 191 | #define DRM_IOCTL_I915_FLUSH DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH) | 193 | #define DRM_IOCTL_I915_FLUSH DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH) |
| @@ -221,8 +223,10 @@ typedef struct _drm_i915_sarea { | |||
| 221 | #define DRM_IOCTL_I915_GEM_SET_TILING DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_SET_TILING, struct drm_i915_gem_set_tiling) | 223 | #define DRM_IOCTL_I915_GEM_SET_TILING DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_SET_TILING, struct drm_i915_gem_set_tiling) |
| 222 | #define DRM_IOCTL_I915_GEM_GET_TILING DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_TILING, struct drm_i915_gem_get_tiling) | 224 | #define DRM_IOCTL_I915_GEM_GET_TILING DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_TILING, struct drm_i915_gem_get_tiling) |
| 223 | #define DRM_IOCTL_I915_GEM_GET_APERTURE DRM_IOR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_APERTURE, struct drm_i915_gem_get_aperture) | 225 | #define DRM_IOCTL_I915_GEM_GET_APERTURE DRM_IOR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_APERTURE, struct drm_i915_gem_get_aperture) |
| 224 | #define DRM_IOCTL_I915_GET_PIPE_FROM_CRTC_ID DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GET_PIPE_FROM_CRTC_ID, struct drm_intel_get_pipe_from_crtc_id) | 226 | #define DRM_IOCTL_I915_GET_PIPE_FROM_CRTC_ID DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GET_PIPE_FROM_CRTC_ID, struct drm_i915_get_pipe_from_crtc_id) |
| 225 | #define DRM_IOCTL_I915_GEM_MADVISE DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MADVISE, struct drm_i915_gem_madvise) | 227 | #define DRM_IOCTL_I915_GEM_MADVISE DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MADVISE, struct drm_i915_gem_madvise) |
| 228 | #define DRM_IOCTL_I915_OVERLAY_PUT_IMAGE DRM_IOW(DRM_COMMAND_BASE + DRM_IOCTL_I915_OVERLAY_ATTRS, struct drm_intel_overlay_put_image) | ||
| 229 | #define DRM_IOCTL_I915_OVERLAY_ATTRS DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_OVERLAY_ATTRS, struct drm_intel_overlay_attrs) | ||
| 226 | 230 | ||
| 227 | /* Allow drivers to submit batchbuffers directly to hardware, relying | 231 | /* Allow drivers to submit batchbuffers directly to hardware, relying |
| 228 | * on the security mechanisms provided by hardware. | 232 | * on the security mechanisms provided by hardware. |
| @@ -266,6 +270,8 @@ typedef struct drm_i915_irq_wait { | |||
| 266 | #define I915_PARAM_CHIPSET_ID 4 | 270 | #define I915_PARAM_CHIPSET_ID 4 |
| 267 | #define I915_PARAM_HAS_GEM 5 | 271 | #define I915_PARAM_HAS_GEM 5 |
| 268 | #define I915_PARAM_NUM_FENCES_AVAIL 6 | 272 | #define I915_PARAM_NUM_FENCES_AVAIL 6 |
| 273 | #define I915_PARAM_HAS_OVERLAY 7 | ||
| 274 | #define I915_PARAM_HAS_PAGEFLIPPING 8 | ||
| 269 | 275 | ||
| 270 | typedef struct drm_i915_getparam { | 276 | typedef struct drm_i915_getparam { |
| 271 | int param; | 277 | int param; |
| @@ -686,4 +692,70 @@ struct drm_i915_gem_madvise { | |||
| 686 | __u32 retained; | 692 | __u32 retained; |
| 687 | }; | 693 | }; |
| 688 | 694 | ||
| 695 | /* flags */ | ||
| 696 | #define I915_OVERLAY_TYPE_MASK 0xff | ||
| 697 | #define I915_OVERLAY_YUV_PLANAR 0x01 | ||
| 698 | #define I915_OVERLAY_YUV_PACKED 0x02 | ||
| 699 | #define I915_OVERLAY_RGB 0x03 | ||
| 700 | |||
| 701 | #define I915_OVERLAY_DEPTH_MASK 0xff00 | ||
| 702 | #define I915_OVERLAY_RGB24 0x1000 | ||
| 703 | #define I915_OVERLAY_RGB16 0x2000 | ||
| 704 | #define I915_OVERLAY_RGB15 0x3000 | ||
| 705 | #define I915_OVERLAY_YUV422 0x0100 | ||
| 706 | #define I915_OVERLAY_YUV411 0x0200 | ||
| 707 | #define I915_OVERLAY_YUV420 0x0300 | ||
| 708 | #define I915_OVERLAY_YUV410 0x0400 | ||
| 709 | |||
| 710 | #define I915_OVERLAY_SWAP_MASK 0xff0000 | ||
| 711 | #define I915_OVERLAY_NO_SWAP 0x000000 | ||
| 712 | #define I915_OVERLAY_UV_SWAP 0x010000 | ||
| 713 | #define I915_OVERLAY_Y_SWAP 0x020000 | ||
| 714 | #define I915_OVERLAY_Y_AND_UV_SWAP 0x030000 | ||
| 715 | |||
| 716 | #define I915_OVERLAY_FLAGS_MASK 0xff000000 | ||
| 717 | #define I915_OVERLAY_ENABLE 0x01000000 | ||
| 718 | |||
| 719 | struct drm_intel_overlay_put_image { | ||
| 720 | /* various flags and src format description */ | ||
| 721 | __u32 flags; | ||
| 722 | /* source picture description */ | ||
| 723 | __u32 bo_handle; | ||
| 724 | /* stride values and offsets are in bytes, buffer relative */ | ||
| 725 | __u16 stride_Y; /* stride for packed formats */ | ||
| 726 | __u16 stride_UV; | ||
| 727 | __u32 offset_Y; /* offset for packet formats */ | ||
| 728 | __u32 offset_U; | ||
| 729 | __u32 offset_V; | ||
| 730 | /* in pixels */ | ||
| 731 | __u16 src_width; | ||
| 732 | __u16 src_height; | ||
| 733 | /* to compensate the scaling factors for partially covered surfaces */ | ||
| 734 | __u16 src_scan_width; | ||
| 735 | __u16 src_scan_height; | ||
| 736 | /* output crtc description */ | ||
| 737 | __u32 crtc_id; | ||
| 738 | __u16 dst_x; | ||
| 739 | __u16 dst_y; | ||
| 740 | __u16 dst_width; | ||
| 741 | __u16 dst_height; | ||
| 742 | }; | ||
| 743 | |||
| 744 | /* flags */ | ||
| 745 | #define I915_OVERLAY_UPDATE_ATTRS (1<<0) | ||
| 746 | #define I915_OVERLAY_UPDATE_GAMMA (1<<1) | ||
| 747 | struct drm_intel_overlay_attrs { | ||
| 748 | __u32 flags; | ||
| 749 | __u32 color_key; | ||
| 750 | __s32 brightness; | ||
| 751 | __u32 contrast; | ||
| 752 | __u32 saturation; | ||
| 753 | __u32 gamma0; | ||
| 754 | __u32 gamma1; | ||
| 755 | __u32 gamma2; | ||
| 756 | __u32 gamma3; | ||
| 757 | __u32 gamma4; | ||
| 758 | __u32 gamma5; | ||
| 759 | }; | ||
| 760 | |||
| 689 | #endif /* _I915_DRM_H_ */ | 761 | #endif /* _I915_DRM_H_ */ |
diff --git a/include/drm/mga_drm.h b/include/drm/mga_drm.h index 325fd6fb4a42..3ffbc4798afa 100644 --- a/include/drm/mga_drm.h +++ b/include/drm/mga_drm.h | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | #ifndef __MGA_DRM_H__ | 35 | #ifndef __MGA_DRM_H__ |
| 36 | #define __MGA_DRM_H__ | 36 | #define __MGA_DRM_H__ |
| 37 | 37 | ||
| 38 | #include <linux/types.h> | 38 | #include "drm.h" |
| 39 | 39 | ||
| 40 | /* WARNING: If you change any of these defines, make sure to change the | 40 | /* WARNING: If you change any of these defines, make sure to change the |
| 41 | * defines in the Xserver file (mga_sarea.h) | 41 | * defines in the Xserver file (mga_sarea.h) |
diff --git a/include/drm/nouveau_drm.h b/include/drm/nouveau_drm.h new file mode 100644 index 000000000000..1e67c441ea82 --- /dev/null +++ b/include/drm/nouveau_drm.h | |||
| @@ -0,0 +1,220 @@ | |||
| 1 | /* | ||
| 2 | * Copyright 2005 Stephane Marchesin. | ||
| 3 | * All Rights Reserved. | ||
| 4 | * | ||
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
| 6 | * copy of this software and associated documentation files (the "Software"), | ||
| 7 | * to deal in the Software without restriction, including without limitation | ||
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
| 9 | * and/or sell copies of the Software, and to permit persons to whom the | ||
| 10 | * Software is furnished to do so, subject to the following conditions: | ||
| 11 | * | ||
| 12 | * The above copyright notice and this permission notice (including the next | ||
| 13 | * paragraph) shall be included in all copies or substantial portions of the | ||
| 14 | * Software. | ||
| 15 | * | ||
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
| 19 | * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
| 20 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
| 21 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
| 22 | * OTHER DEALINGS IN THE SOFTWARE. | ||
| 23 | */ | ||
| 24 | |||
| 25 | #ifndef __NOUVEAU_DRM_H__ | ||
| 26 | #define __NOUVEAU_DRM_H__ | ||
| 27 | |||
| 28 | #define NOUVEAU_DRM_HEADER_PATCHLEVEL 15 | ||
| 29 | |||
| 30 | struct drm_nouveau_channel_alloc { | ||
| 31 | uint32_t fb_ctxdma_handle; | ||
| 32 | uint32_t tt_ctxdma_handle; | ||
| 33 | |||
| 34 | int channel; | ||
| 35 | |||
| 36 | /* Notifier memory */ | ||
| 37 | uint32_t notifier_handle; | ||
| 38 | |||
| 39 | /* DRM-enforced subchannel assignments */ | ||
| 40 | struct { | ||
| 41 | uint32_t handle; | ||
| 42 | uint32_t grclass; | ||
| 43 | } subchan[8]; | ||
| 44 | uint32_t nr_subchan; | ||
| 45 | }; | ||
| 46 | |||
| 47 | struct drm_nouveau_channel_free { | ||
| 48 | int channel; | ||
| 49 | }; | ||
| 50 | |||
| 51 | struct drm_nouveau_grobj_alloc { | ||
| 52 | int channel; | ||
| 53 | uint32_t handle; | ||
| 54 | int class; | ||
| 55 | }; | ||
| 56 | |||
| 57 | struct drm_nouveau_notifierobj_alloc { | ||
| 58 | uint32_t channel; | ||
| 59 | uint32_t handle; | ||
| 60 | uint32_t size; | ||
| 61 | uint32_t offset; | ||
| 62 | }; | ||
| 63 | |||
| 64 | struct drm_nouveau_gpuobj_free { | ||
| 65 | int channel; | ||
| 66 | uint32_t handle; | ||
| 67 | }; | ||
| 68 | |||
| 69 | /* FIXME : maybe unify {GET,SET}PARAMs */ | ||
| 70 | #define NOUVEAU_GETPARAM_PCI_VENDOR 3 | ||
| 71 | #define NOUVEAU_GETPARAM_PCI_DEVICE 4 | ||
| 72 | #define NOUVEAU_GETPARAM_BUS_TYPE 5 | ||
| 73 | #define NOUVEAU_GETPARAM_FB_PHYSICAL 6 | ||
| 74 | #define NOUVEAU_GETPARAM_AGP_PHYSICAL 7 | ||
| 75 | #define NOUVEAU_GETPARAM_FB_SIZE 8 | ||
| 76 | #define NOUVEAU_GETPARAM_AGP_SIZE 9 | ||
| 77 | #define NOUVEAU_GETPARAM_PCI_PHYSICAL 10 | ||
| 78 | #define NOUVEAU_GETPARAM_CHIPSET_ID 11 | ||
| 79 | #define NOUVEAU_GETPARAM_VM_VRAM_BASE 12 | ||
| 80 | struct drm_nouveau_getparam { | ||
| 81 | uint64_t param; | ||
| 82 | uint64_t value; | ||
| 83 | }; | ||
| 84 | |||
| 85 | struct drm_nouveau_setparam { | ||
| 86 | uint64_t param; | ||
| 87 | uint64_t value; | ||
| 88 | }; | ||
| 89 | |||
| 90 | #define NOUVEAU_GEM_DOMAIN_CPU (1 << 0) | ||
| 91 | #define NOUVEAU_GEM_DOMAIN_VRAM (1 << 1) | ||
| 92 | #define NOUVEAU_GEM_DOMAIN_GART (1 << 2) | ||
| 93 | #define NOUVEAU_GEM_DOMAIN_MAPPABLE (1 << 3) | ||
| 94 | |||
| 95 | struct drm_nouveau_gem_info { | ||
| 96 | uint32_t handle; | ||
| 97 | uint32_t domain; | ||
| 98 | uint64_t size; | ||
| 99 | uint64_t offset; | ||
| 100 | uint64_t map_handle; | ||
| 101 | uint32_t tile_mode; | ||
| 102 | uint32_t tile_flags; | ||
| 103 | }; | ||
| 104 | |||
| 105 | struct drm_nouveau_gem_new { | ||
| 106 | struct drm_nouveau_gem_info info; | ||
| 107 | uint32_t channel_hint; | ||
| 108 | uint32_t align; | ||
| 109 | }; | ||
| 110 | |||
| 111 | struct drm_nouveau_gem_pushbuf_bo { | ||
| 112 | uint64_t user_priv; | ||
| 113 | uint32_t handle; | ||
| 114 | uint32_t read_domains; | ||
| 115 | uint32_t write_domains; | ||
| 116 | uint32_t valid_domains; | ||
| 117 | uint32_t presumed_ok; | ||
| 118 | uint32_t presumed_domain; | ||
| 119 | uint64_t presumed_offset; | ||
| 120 | }; | ||
| 121 | |||
| 122 | #define NOUVEAU_GEM_RELOC_LOW (1 << 0) | ||
| 123 | #define NOUVEAU_GEM_RELOC_HIGH (1 << 1) | ||
| 124 | #define NOUVEAU_GEM_RELOC_OR (1 << 2) | ||
| 125 | struct drm_nouveau_gem_pushbuf_reloc { | ||
| 126 | uint32_t bo_index; | ||
| 127 | uint32_t reloc_index; | ||
| 128 | uint32_t flags; | ||
| 129 | uint32_t data; | ||
| 130 | uint32_t vor; | ||
| 131 | uint32_t tor; | ||
| 132 | }; | ||
| 133 | |||
| 134 | #define NOUVEAU_GEM_MAX_BUFFERS 1024 | ||
| 135 | #define NOUVEAU_GEM_MAX_RELOCS 1024 | ||
| 136 | |||
| 137 | struct drm_nouveau_gem_pushbuf { | ||
| 138 | uint32_t channel; | ||
| 139 | uint32_t nr_dwords; | ||
| 140 | uint32_t nr_buffers; | ||
| 141 | uint32_t nr_relocs; | ||
| 142 | uint64_t dwords; | ||
| 143 | uint64_t buffers; | ||
| 144 | uint64_t relocs; | ||
| 145 | }; | ||
| 146 | |||
| 147 | struct drm_nouveau_gem_pushbuf_call { | ||
| 148 | uint32_t channel; | ||
| 149 | uint32_t handle; | ||
| 150 | uint32_t offset; | ||
| 151 | uint32_t nr_buffers; | ||
| 152 | uint32_t nr_relocs; | ||
| 153 | uint32_t nr_dwords; | ||
| 154 | uint64_t buffers; | ||
| 155 | uint64_t relocs; | ||
| 156 | uint32_t suffix0; | ||
| 157 | uint32_t suffix1; | ||
| 158 | /* below only accessed for CALL2 */ | ||
| 159 | uint64_t vram_available; | ||
| 160 | uint64_t gart_available; | ||
| 161 | }; | ||
| 162 | |||
| 163 | struct drm_nouveau_gem_pin { | ||
| 164 | uint32_t handle; | ||
| 165 | uint32_t domain; | ||
| 166 | uint64_t offset; | ||
| 167 | }; | ||
| 168 | |||
| 169 | struct drm_nouveau_gem_unpin { | ||
| 170 | uint32_t handle; | ||
| 171 | }; | ||
| 172 | |||
| 173 | #define NOUVEAU_GEM_CPU_PREP_NOWAIT 0x00000001 | ||
| 174 | #define NOUVEAU_GEM_CPU_PREP_NOBLOCK 0x00000002 | ||
| 175 | #define NOUVEAU_GEM_CPU_PREP_WRITE 0x00000004 | ||
| 176 | struct drm_nouveau_gem_cpu_prep { | ||
| 177 | uint32_t handle; | ||
| 178 | uint32_t flags; | ||
| 179 | }; | ||
| 180 | |||
| 181 | struct drm_nouveau_gem_cpu_fini { | ||
| 182 | uint32_t handle; | ||
| 183 | }; | ||
| 184 | |||
| 185 | struct drm_nouveau_gem_tile { | ||
| 186 | uint32_t handle; | ||
| 187 | uint32_t offset; | ||
| 188 | uint32_t size; | ||
| 189 | uint32_t tile_mode; | ||
| 190 | uint32_t tile_flags; | ||
| 191 | }; | ||
| 192 | |||
| 193 | enum nouveau_bus_type { | ||
| 194 | NV_AGP = 0, | ||
| 195 | NV_PCI = 1, | ||
| 196 | NV_PCIE = 2, | ||
| 197 | }; | ||
| 198 | |||
| 199 | struct drm_nouveau_sarea { | ||
| 200 | }; | ||
| 201 | |||
| 202 | #define DRM_NOUVEAU_CARD_INIT 0x00 | ||
| 203 | #define DRM_NOUVEAU_GETPARAM 0x01 | ||
| 204 | #define DRM_NOUVEAU_SETPARAM 0x02 | ||
| 205 | #define DRM_NOUVEAU_CHANNEL_ALLOC 0x03 | ||
| 206 | #define DRM_NOUVEAU_CHANNEL_FREE 0x04 | ||
| 207 | #define DRM_NOUVEAU_GROBJ_ALLOC 0x05 | ||
| 208 | #define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x06 | ||
| 209 | #define DRM_NOUVEAU_GPUOBJ_FREE 0x07 | ||
| 210 | #define DRM_NOUVEAU_GEM_NEW 0x40 | ||
| 211 | #define DRM_NOUVEAU_GEM_PUSHBUF 0x41 | ||
| 212 | #define DRM_NOUVEAU_GEM_PUSHBUF_CALL 0x42 | ||
| 213 | #define DRM_NOUVEAU_GEM_PIN 0x43 /* !KMS only */ | ||
| 214 | #define DRM_NOUVEAU_GEM_UNPIN 0x44 /* !KMS only */ | ||
| 215 | #define DRM_NOUVEAU_GEM_CPU_PREP 0x45 | ||
| 216 | #define DRM_NOUVEAU_GEM_CPU_FINI 0x46 | ||
| 217 | #define DRM_NOUVEAU_GEM_INFO 0x47 | ||
| 218 | #define DRM_NOUVEAU_GEM_PUSHBUF_CALL2 0x48 | ||
| 219 | |||
| 220 | #endif /* __NOUVEAU_DRM_H__ */ | ||
diff --git a/include/drm/radeon_drm.h b/include/drm/radeon_drm.h index 3b9932ab1756..39537f3cf98a 100644 --- a/include/drm/radeon_drm.h +++ b/include/drm/radeon_drm.h | |||
| @@ -33,7 +33,7 @@ | |||
| 33 | #ifndef __RADEON_DRM_H__ | 33 | #ifndef __RADEON_DRM_H__ |
| 34 | #define __RADEON_DRM_H__ | 34 | #define __RADEON_DRM_H__ |
| 35 | 35 | ||
| 36 | #include <linux/types.h> | 36 | #include "drm.h" |
| 37 | 37 | ||
| 38 | /* WARNING: If you change any of these defines, make sure to change the | 38 | /* WARNING: If you change any of these defines, make sure to change the |
| 39 | * defines in the X server file (radeon_sarea.h) | 39 | * defines in the X server file (radeon_sarea.h) |
diff --git a/include/drm/ttm/ttm_bo_api.h b/include/drm/ttm/ttm_bo_api.h index 491146170522..81eb9f45883c 100644 --- a/include/drm/ttm/ttm_bo_api.h +++ b/include/drm/ttm/ttm_bo_api.h | |||
| @@ -44,6 +44,29 @@ struct ttm_bo_device; | |||
| 44 | 44 | ||
| 45 | struct drm_mm_node; | 45 | struct drm_mm_node; |
| 46 | 46 | ||
| 47 | |||
| 48 | /** | ||
| 49 | * struct ttm_placement | ||
| 50 | * | ||
| 51 | * @fpfn: first valid page frame number to put the object | ||
| 52 | * @lpfn: last valid page frame number to put the object | ||
| 53 | * @num_placement: number of prefered placements | ||
| 54 | * @placement: prefered placements | ||
| 55 | * @num_busy_placement: number of prefered placements when need to evict buffer | ||
| 56 | * @busy_placement: prefered placements when need to evict buffer | ||
| 57 | * | ||
| 58 | * Structure indicating the placement you request for an object. | ||
| 59 | */ | ||
| 60 | struct ttm_placement { | ||
| 61 | unsigned fpfn; | ||
| 62 | unsigned lpfn; | ||
| 63 | unsigned num_placement; | ||
| 64 | const uint32_t *placement; | ||
| 65 | unsigned num_busy_placement; | ||
| 66 | const uint32_t *busy_placement; | ||
| 67 | }; | ||
| 68 | |||
| 69 | |||
| 47 | /** | 70 | /** |
| 48 | * struct ttm_mem_reg | 71 | * struct ttm_mem_reg |
| 49 | * | 72 | * |
| @@ -109,10 +132,6 @@ struct ttm_tt; | |||
| 109 | * the object is destroyed. | 132 | * the object is destroyed. |
| 110 | * @event_queue: Queue for processes waiting on buffer object status change. | 133 | * @event_queue: Queue for processes waiting on buffer object status change. |
| 111 | * @lock: spinlock protecting mostly synchronization members. | 134 | * @lock: spinlock protecting mostly synchronization members. |
| 112 | * @proposed_placement: Proposed placement for the buffer. Changed only by the | ||
| 113 | * creator prior to validation as opposed to bo->mem.proposed_flags which is | ||
| 114 | * changed by the implementation prior to a buffer move if it wants to outsmart | ||
| 115 | * the buffer creator / user. This latter happens, for example, at eviction. | ||
| 116 | * @mem: structure describing current placement. | 135 | * @mem: structure describing current placement. |
| 117 | * @persistant_swap_storage: Usually the swap storage is deleted for buffers | 136 | * @persistant_swap_storage: Usually the swap storage is deleted for buffers |
| 118 | * pinned in physical memory. If this behaviour is not desired, this member | 137 | * pinned in physical memory. If this behaviour is not desired, this member |
| @@ -177,7 +196,6 @@ struct ttm_buffer_object { | |||
| 177 | * Members protected by the bo::reserved lock. | 196 | * Members protected by the bo::reserved lock. |
| 178 | */ | 197 | */ |
| 179 | 198 | ||
| 180 | uint32_t proposed_placement; | ||
| 181 | struct ttm_mem_reg mem; | 199 | struct ttm_mem_reg mem; |
| 182 | struct file *persistant_swap_storage; | 200 | struct file *persistant_swap_storage; |
| 183 | struct ttm_tt *ttm; | 201 | struct ttm_tt *ttm; |
| @@ -285,29 +303,30 @@ ttm_bo_reference(struct ttm_buffer_object *bo) | |||
| 285 | * Note: It might be necessary to block validations before the | 303 | * Note: It might be necessary to block validations before the |
| 286 | * wait by reserving the buffer. | 304 | * wait by reserving the buffer. |
| 287 | * Returns -EBUSY if no_wait is true and the buffer is busy. | 305 | * Returns -EBUSY if no_wait is true and the buffer is busy. |
| 288 | * Returns -ERESTART if interrupted by a signal. | 306 | * Returns -ERESTARTSYS if interrupted by a signal. |
| 289 | */ | 307 | */ |
| 290 | extern int ttm_bo_wait(struct ttm_buffer_object *bo, bool lazy, | 308 | extern int ttm_bo_wait(struct ttm_buffer_object *bo, bool lazy, |
| 291 | bool interruptible, bool no_wait); | 309 | bool interruptible, bool no_wait); |
| 292 | /** | 310 | /** |
| 293 | * ttm_buffer_object_validate | 311 | * ttm_bo_validate |
| 294 | * | 312 | * |
| 295 | * @bo: The buffer object. | 313 | * @bo: The buffer object. |
| 296 | * @proposed_placement: Proposed_placement for the buffer object. | 314 | * @placement: Proposed placement for the buffer object. |
| 297 | * @interruptible: Sleep interruptible if sleeping. | 315 | * @interruptible: Sleep interruptible if sleeping. |
| 298 | * @no_wait: Return immediately if the buffer is busy. | 316 | * @no_wait: Return immediately if the buffer is busy. |
| 299 | * | 317 | * |
| 300 | * Changes placement and caching policy of the buffer object | 318 | * Changes placement and caching policy of the buffer object |
| 301 | * according to bo::proposed_flags. | 319 | * according proposed placement. |
| 302 | * Returns | 320 | * Returns |
| 303 | * -EINVAL on invalid proposed_flags. | 321 | * -EINVAL on invalid proposed placement. |
| 304 | * -ENOMEM on out-of-memory condition. | 322 | * -ENOMEM on out-of-memory condition. |
| 305 | * -EBUSY if no_wait is true and buffer busy. | 323 | * -EBUSY if no_wait is true and buffer busy. |
| 306 | * -ERESTART if interrupted by a signal. | 324 | * -ERESTARTSYS if interrupted by a signal. |
| 307 | */ | 325 | */ |
| 308 | extern int ttm_buffer_object_validate(struct ttm_buffer_object *bo, | 326 | extern int ttm_bo_validate(struct ttm_buffer_object *bo, |
| 309 | uint32_t proposed_placement, | 327 | struct ttm_placement *placement, |
| 310 | bool interruptible, bool no_wait); | 328 | bool interruptible, bool no_wait); |
| 329 | |||
| 311 | /** | 330 | /** |
| 312 | * ttm_bo_unref | 331 | * ttm_bo_unref |
| 313 | * | 332 | * |
| @@ -328,7 +347,7 @@ extern void ttm_bo_unref(struct ttm_buffer_object **bo); | |||
| 328 | * waiting for buffer idle. This lock is recursive. | 347 | * waiting for buffer idle. This lock is recursive. |
| 329 | * Returns | 348 | * Returns |
| 330 | * -EBUSY if the buffer is busy and no_wait is true. | 349 | * -EBUSY if the buffer is busy and no_wait is true. |
| 331 | * -ERESTART if interrupted by a signal. | 350 | * -ERESTARTSYS if interrupted by a signal. |
| 332 | */ | 351 | */ |
| 333 | 352 | ||
| 334 | extern int | 353 | extern int |
| @@ -343,7 +362,7 @@ ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait); | |||
| 343 | extern void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo); | 362 | extern void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo); |
| 344 | 363 | ||
| 345 | /** | 364 | /** |
| 346 | * ttm_buffer_object_init | 365 | * ttm_bo_init |
| 347 | * | 366 | * |
| 348 | * @bdev: Pointer to a ttm_bo_device struct. | 367 | * @bdev: Pointer to a ttm_bo_device struct. |
| 349 | * @bo: Pointer to a ttm_buffer_object to be initialized. | 368 | * @bo: Pointer to a ttm_buffer_object to be initialized. |
| @@ -371,20 +390,20 @@ extern void ttm_bo_synccpu_write_release(struct ttm_buffer_object *bo); | |||
| 371 | * Returns | 390 | * Returns |
| 372 | * -ENOMEM: Out of memory. | 391 | * -ENOMEM: Out of memory. |
| 373 | * -EINVAL: Invalid placement flags. | 392 | * -EINVAL: Invalid placement flags. |
| 374 | * -ERESTART: Interrupted by signal while sleeping waiting for resources. | 393 | * -ERESTARTSYS: Interrupted by signal while sleeping waiting for resources. |
| 375 | */ | 394 | */ |
| 376 | 395 | ||
| 377 | extern int ttm_buffer_object_init(struct ttm_bo_device *bdev, | 396 | extern int ttm_bo_init(struct ttm_bo_device *bdev, |
| 378 | struct ttm_buffer_object *bo, | 397 | struct ttm_buffer_object *bo, |
| 379 | unsigned long size, | 398 | unsigned long size, |
| 380 | enum ttm_bo_type type, | 399 | enum ttm_bo_type type, |
| 381 | uint32_t flags, | 400 | struct ttm_placement *placement, |
| 382 | uint32_t page_alignment, | 401 | uint32_t page_alignment, |
| 383 | unsigned long buffer_start, | 402 | unsigned long buffer_start, |
| 384 | bool interrubtible, | 403 | bool interrubtible, |
| 385 | struct file *persistant_swap_storage, | 404 | struct file *persistant_swap_storage, |
| 386 | size_t acc_size, | 405 | size_t acc_size, |
| 387 | void (*destroy) (struct ttm_buffer_object *)); | 406 | void (*destroy) (struct ttm_buffer_object *)); |
| 388 | /** | 407 | /** |
| 389 | * ttm_bo_synccpu_object_init | 408 | * ttm_bo_synccpu_object_init |
| 390 | * | 409 | * |
| @@ -405,47 +424,43 @@ extern int ttm_buffer_object_init(struct ttm_bo_device *bdev, | |||
| 405 | * GEM user interface. | 424 | * GEM user interface. |
| 406 | * @p_bo: On successful completion *p_bo points to the created object. | 425 | * @p_bo: On successful completion *p_bo points to the created object. |
| 407 | * | 426 | * |
| 408 | * This function allocates a ttm_buffer_object, and then calls | 427 | * This function allocates a ttm_buffer_object, and then calls ttm_bo_init |
| 409 | * ttm_buffer_object_init on that object. | 428 | * on that object. The destroy function is set to kfree(). |
| 410 | * The destroy function is set to kfree(). | ||
| 411 | * Returns | 429 | * Returns |
| 412 | * -ENOMEM: Out of memory. | 430 | * -ENOMEM: Out of memory. |
| 413 | * -EINVAL: Invalid placement flags. | 431 | * -EINVAL: Invalid placement flags. |
| 414 | * -ERESTART: Interrupted by signal while waiting for resources. | 432 | * -ERESTARTSYS: Interrupted by signal while waiting for resources. |
| 415 | */ | 433 | */ |
| 416 | 434 | ||
| 417 | extern int ttm_buffer_object_create(struct ttm_bo_device *bdev, | 435 | extern int ttm_bo_create(struct ttm_bo_device *bdev, |
| 418 | unsigned long size, | 436 | unsigned long size, |
| 419 | enum ttm_bo_type type, | 437 | enum ttm_bo_type type, |
| 420 | uint32_t flags, | 438 | struct ttm_placement *placement, |
| 421 | uint32_t page_alignment, | 439 | uint32_t page_alignment, |
| 422 | unsigned long buffer_start, | 440 | unsigned long buffer_start, |
| 423 | bool interruptible, | 441 | bool interruptible, |
| 424 | struct file *persistant_swap_storage, | 442 | struct file *persistant_swap_storage, |
| 425 | struct ttm_buffer_object **p_bo); | 443 | struct ttm_buffer_object **p_bo); |
| 426 | 444 | ||
| 427 | /** | 445 | /** |
| 428 | * ttm_bo_check_placement | 446 | * ttm_bo_check_placement |
| 429 | * | 447 | * |
| 430 | * @bo: the buffer object. | 448 | * @bo: the buffer object. |
| 431 | * @set_flags: placement flags to set. | 449 | * @placement: placements |
| 432 | * @clr_flags: placement flags to clear. | ||
| 433 | * | 450 | * |
| 434 | * Performs minimal validity checking on an intended change of | 451 | * Performs minimal validity checking on an intended change of |
| 435 | * placement flags. | 452 | * placement flags. |
| 436 | * Returns | 453 | * Returns |
| 437 | * -EINVAL: Intended change is invalid or not allowed. | 454 | * -EINVAL: Intended change is invalid or not allowed. |
| 438 | */ | 455 | */ |
| 439 | |||
| 440 | extern int ttm_bo_check_placement(struct ttm_buffer_object *bo, | 456 | extern int ttm_bo_check_placement(struct ttm_buffer_object *bo, |
| 441 | uint32_t set_flags, uint32_t clr_flags); | 457 | struct ttm_placement *placement); |
| 442 | 458 | ||
| 443 | /** | 459 | /** |
| 444 | * ttm_bo_init_mm | 460 | * ttm_bo_init_mm |
| 445 | * | 461 | * |
| 446 | * @bdev: Pointer to a ttm_bo_device struct. | 462 | * @bdev: Pointer to a ttm_bo_device struct. |
| 447 | * @mem_type: The memory type. | 463 | * @mem_type: The memory type. |
| 448 | * @p_offset: offset for managed area in pages. | ||
| 449 | * @p_size: size managed area in pages. | 464 | * @p_size: size managed area in pages. |
| 450 | * | 465 | * |
| 451 | * Initialize a manager for a given memory type. | 466 | * Initialize a manager for a given memory type. |
| @@ -458,7 +473,7 @@ extern int ttm_bo_check_placement(struct ttm_buffer_object *bo, | |||
| 458 | */ | 473 | */ |
| 459 | 474 | ||
| 460 | extern int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type, | 475 | extern int ttm_bo_init_mm(struct ttm_bo_device *bdev, unsigned type, |
| 461 | unsigned long p_offset, unsigned long p_size); | 476 | unsigned long p_size); |
| 462 | /** | 477 | /** |
| 463 | * ttm_bo_clean_mm | 478 | * ttm_bo_clean_mm |
| 464 | * | 479 | * |
| @@ -503,7 +518,7 @@ extern int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type); | |||
| 503 | * | 518 | * |
| 504 | * Returns: | 519 | * Returns: |
| 505 | * -EINVAL: Invalid or uninitialized memory type. | 520 | * -EINVAL: Invalid or uninitialized memory type. |
| 506 | * -ERESTART: The call was interrupted by a signal while waiting to | 521 | * -ERESTARTSYS: The call was interrupted by a signal while waiting to |
| 507 | * evict a buffer. | 522 | * evict a buffer. |
| 508 | */ | 523 | */ |
| 509 | 524 | ||
| @@ -606,7 +621,7 @@ extern int ttm_bo_mmap(struct file *filp, struct vm_area_struct *vma, | |||
| 606 | * be called from the fops::read and fops::write method. | 621 | * be called from the fops::read and fops::write method. |
| 607 | * Returns: | 622 | * Returns: |
| 608 | * See man (2) write, man(2) read. In particular, | 623 | * See man (2) write, man(2) read. In particular, |
| 609 | * the function may return -EINTR if | 624 | * the function may return -ERESTARTSYS if |
| 610 | * interrupted by a signal. | 625 | * interrupted by a signal. |
| 611 | */ | 626 | */ |
| 612 | 627 | ||
diff --git a/include/drm/ttm/ttm_bo_driver.h b/include/drm/ttm/ttm_bo_driver.h index e8cd6d20aed2..ff7664e0c3cd 100644 --- a/include/drm/ttm/ttm_bo_driver.h +++ b/include/drm/ttm/ttm_bo_driver.h | |||
| @@ -242,12 +242,6 @@ struct ttm_mem_type_manager { | |||
| 242 | /** | 242 | /** |
| 243 | * struct ttm_bo_driver | 243 | * struct ttm_bo_driver |
| 244 | * | 244 | * |
| 245 | * @mem_type_prio: Priority array of memory types to place a buffer object in | ||
| 246 | * if it fits without evicting buffers from any of these memory types. | ||
| 247 | * @mem_busy_prio: Priority array of memory types to place a buffer object in | ||
| 248 | * if it needs to evict buffers to make room. | ||
| 249 | * @num_mem_type_prio: Number of elements in the @mem_type_prio array. | ||
| 250 | * @num_mem_busy_prio: Number of elements in the @num_mem_busy_prio array. | ||
| 251 | * @create_ttm_backend_entry: Callback to create a struct ttm_backend. | 245 | * @create_ttm_backend_entry: Callback to create a struct ttm_backend. |
| 252 | * @invalidate_caches: Callback to invalidate read caches when a buffer object | 246 | * @invalidate_caches: Callback to invalidate read caches when a buffer object |
| 253 | * has been evicted. | 247 | * has been evicted. |
| @@ -265,11 +259,6 @@ struct ttm_mem_type_manager { | |||
| 265 | */ | 259 | */ |
| 266 | 260 | ||
| 267 | struct ttm_bo_driver { | 261 | struct ttm_bo_driver { |
| 268 | const uint32_t *mem_type_prio; | ||
| 269 | const uint32_t *mem_busy_prio; | ||
| 270 | uint32_t num_mem_type_prio; | ||
| 271 | uint32_t num_mem_busy_prio; | ||
| 272 | |||
| 273 | /** | 262 | /** |
| 274 | * struct ttm_bo_driver member create_ttm_backend_entry | 263 | * struct ttm_bo_driver member create_ttm_backend_entry |
| 275 | * | 264 | * |
| @@ -306,7 +295,8 @@ struct ttm_bo_driver { | |||
| 306 | * finished, they'll end up in bo->mem.flags | 295 | * finished, they'll end up in bo->mem.flags |
| 307 | */ | 296 | */ |
| 308 | 297 | ||
| 309 | uint32_t(*evict_flags) (struct ttm_buffer_object *bo); | 298 | void(*evict_flags) (struct ttm_buffer_object *bo, |
| 299 | struct ttm_placement *placement); | ||
| 310 | /** | 300 | /** |
| 311 | * struct ttm_bo_driver member move: | 301 | * struct ttm_bo_driver member move: |
| 312 | * | 302 | * |
| @@ -545,6 +535,15 @@ extern int ttm_tt_set_user(struct ttm_tt *ttm, | |||
| 545 | extern int ttm_tt_bind(struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem); | 535 | extern int ttm_tt_bind(struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem); |
| 546 | 536 | ||
| 547 | /** | 537 | /** |
| 538 | * ttm_tt_populate: | ||
| 539 | * | ||
| 540 | * @ttm: The struct ttm_tt to contain the backing pages. | ||
| 541 | * | ||
| 542 | * Add backing pages to all of @ttm | ||
| 543 | */ | ||
| 544 | extern int ttm_tt_populate(struct ttm_tt *ttm); | ||
| 545 | |||
| 546 | /** | ||
| 548 | * ttm_ttm_destroy: | 547 | * ttm_ttm_destroy: |
| 549 | * | 548 | * |
| 550 | * @ttm: The struct ttm_tt. | 549 | * @ttm: The struct ttm_tt. |
| @@ -639,12 +638,12 @@ extern bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev, | |||
| 639 | * -EBUSY: No space available (only if no_wait == 1). | 638 | * -EBUSY: No space available (only if no_wait == 1). |
| 640 | * -ENOMEM: Could not allocate memory for the buffer object, either due to | 639 | * -ENOMEM: Could not allocate memory for the buffer object, either due to |
| 641 | * fragmentation or concurrent allocators. | 640 | * fragmentation or concurrent allocators. |
| 642 | * -ERESTART: An interruptible sleep was interrupted by a signal. | 641 | * -ERESTARTSYS: An interruptible sleep was interrupted by a signal. |
| 643 | */ | 642 | */ |
| 644 | extern int ttm_bo_mem_space(struct ttm_buffer_object *bo, | 643 | extern int ttm_bo_mem_space(struct ttm_buffer_object *bo, |
| 645 | uint32_t proposed_placement, | 644 | struct ttm_placement *placement, |
| 646 | struct ttm_mem_reg *mem, | 645 | struct ttm_mem_reg *mem, |
| 647 | bool interruptible, bool no_wait); | 646 | bool interruptible, bool no_wait); |
| 648 | /** | 647 | /** |
| 649 | * ttm_bo_wait_for_cpu | 648 | * ttm_bo_wait_for_cpu |
| 650 | * | 649 | * |
| @@ -654,7 +653,7 @@ extern int ttm_bo_mem_space(struct ttm_buffer_object *bo, | |||
| 654 | * Wait until a buffer object is no longer sync'ed for CPU access. | 653 | * Wait until a buffer object is no longer sync'ed for CPU access. |
| 655 | * Returns: | 654 | * Returns: |
| 656 | * -EBUSY: Buffer object was sync'ed for CPU access. (only if no_wait == 1). | 655 | * -EBUSY: Buffer object was sync'ed for CPU access. (only if no_wait == 1). |
| 657 | * -ERESTART: An interruptible sleep was interrupted by a signal. | 656 | * -ERESTARTSYS: An interruptible sleep was interrupted by a signal. |
| 658 | */ | 657 | */ |
| 659 | 658 | ||
| 660 | extern int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait); | 659 | extern int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait); |
| @@ -758,7 +757,7 @@ extern void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo); | |||
| 758 | * -EAGAIN: The reservation may cause a deadlock. | 757 | * -EAGAIN: The reservation may cause a deadlock. |
| 759 | * Release all buffer reservations, wait for @bo to become unreserved and | 758 | * Release all buffer reservations, wait for @bo to become unreserved and |
| 760 | * try again. (only if use_sequence == 1). | 759 | * try again. (only if use_sequence == 1). |
| 761 | * -ERESTART: A wait for the buffer to become unreserved was interrupted by | 760 | * -ERESTARTSYS: A wait for the buffer to become unreserved was interrupted by |
| 762 | * a signal. Release all buffer reservations and return to user-space. | 761 | * a signal. Release all buffer reservations and return to user-space. |
| 763 | */ | 762 | */ |
| 764 | extern int ttm_bo_reserve(struct ttm_buffer_object *bo, | 763 | extern int ttm_bo_reserve(struct ttm_buffer_object *bo, |
| @@ -799,7 +798,7 @@ extern int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo, | |||
| 799 | * | 798 | * |
| 800 | * Returns: | 799 | * Returns: |
| 801 | * -EBUSY: If no_wait == 1 and the buffer is already reserved. | 800 | * -EBUSY: If no_wait == 1 and the buffer is already reserved. |
| 802 | * -ERESTART: If interruptible == 1 and the process received a signal | 801 | * -ERESTARTSYS: If interruptible == 1 and the process received a signal |
| 803 | * while sleeping. | 802 | * while sleeping. |
| 804 | */ | 803 | */ |
| 805 | extern int ttm_bo_block_reservation(struct ttm_buffer_object *bo, | 804 | extern int ttm_bo_block_reservation(struct ttm_buffer_object *bo, |
diff --git a/include/drm/ttm/ttm_execbuf_util.h b/include/drm/ttm/ttm_execbuf_util.h new file mode 100644 index 000000000000..cd2c475da9ea --- /dev/null +++ b/include/drm/ttm/ttm_execbuf_util.h | |||
| @@ -0,0 +1,107 @@ | |||
| 1 | /************************************************************************** | ||
| 2 | * | ||
| 3 | * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA | ||
| 4 | * All Rights Reserved. | ||
| 5 | * | ||
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
| 7 | * copy of this software and associated documentation files (the | ||
| 8 | * "Software"), to deal in the Software without restriction, including | ||
| 9 | * without limitation the rights to use, copy, modify, merge, publish, | ||
| 10 | * distribute, sub license, and/or sell copies of the Software, and to | ||
| 11 | * permit persons to whom the Software is furnished to do so, subject to | ||
| 12 | * the following conditions: | ||
| 13 | * | ||
| 14 | * The above copyright notice and this permission notice (including the | ||
| 15 | * next paragraph) shall be included in all copies or substantial portions | ||
| 16 | * of the Software. | ||
| 17 | * | ||
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL | ||
| 21 | * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, | ||
| 22 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
| 23 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE | ||
| 24 | * USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
| 25 | * | ||
| 26 | **************************************************************************/ | ||
| 27 | /* | ||
| 28 | * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | ||
| 29 | */ | ||
| 30 | |||
| 31 | #ifndef _TTM_EXECBUF_UTIL_H_ | ||
| 32 | #define _TTM_EXECBUF_UTIL_H_ | ||
| 33 | |||
| 34 | #include "ttm/ttm_bo_api.h" | ||
| 35 | #include <linux/list.h> | ||
| 36 | |||
| 37 | /** | ||
| 38 | * struct ttm_validate_buffer | ||
| 39 | * | ||
| 40 | * @head: list head for thread-private list. | ||
| 41 | * @bo: refcounted buffer object pointer. | ||
| 42 | * @new_sync_obj_arg: New sync_obj_arg for @bo, to be used once | ||
| 43 | * adding a new sync object. | ||
| 44 | * @reservied: Indicates whether @bo has been reserved for validation. | ||
| 45 | */ | ||
| 46 | |||
| 47 | struct ttm_validate_buffer { | ||
| 48 | struct list_head head; | ||
| 49 | struct ttm_buffer_object *bo; | ||
| 50 | void *new_sync_obj_arg; | ||
| 51 | bool reserved; | ||
| 52 | }; | ||
| 53 | |||
| 54 | /** | ||
| 55 | * function ttm_eu_backoff_reservation | ||
| 56 | * | ||
| 57 | * @list: thread private list of ttm_validate_buffer structs. | ||
| 58 | * | ||
| 59 | * Undoes all buffer validation reservations for bos pointed to by | ||
| 60 | * the list entries. | ||
| 61 | */ | ||
| 62 | |||
| 63 | extern void ttm_eu_backoff_reservation(struct list_head *list); | ||
| 64 | |||
| 65 | /** | ||
| 66 | * function ttm_eu_reserve_buffers | ||
| 67 | * | ||
| 68 | * @list: thread private list of ttm_validate_buffer structs. | ||
| 69 | * @val_seq: A unique sequence number. | ||
| 70 | * | ||
| 71 | * Tries to reserve bos pointed to by the list entries for validation. | ||
| 72 | * If the function returns 0, all buffers are marked as "unfenced", | ||
| 73 | * taken off the lru lists and are not synced for write CPU usage. | ||
| 74 | * | ||
| 75 | * If the function detects a deadlock due to multiple threads trying to | ||
| 76 | * reserve the same buffers in reverse order, all threads except one will | ||
| 77 | * back off and retry. This function may sleep while waiting for | ||
| 78 | * CPU write reservations to be cleared, and for other threads to | ||
| 79 | * unreserve their buffers. | ||
| 80 | * | ||
| 81 | * This function may return -ERESTART or -EAGAIN if the calling process | ||
| 82 | * receives a signal while waiting. In that case, no buffers on the list | ||
| 83 | * will be reserved upon return. | ||
| 84 | * | ||
| 85 | * Buffers reserved by this function should be unreserved by | ||
| 86 | * a call to either ttm_eu_backoff_reservation() or | ||
| 87 | * ttm_eu_fence_buffer_objects() when command submission is complete or | ||
| 88 | * has failed. | ||
| 89 | */ | ||
| 90 | |||
| 91 | extern int ttm_eu_reserve_buffers(struct list_head *list, uint32_t val_seq); | ||
| 92 | |||
| 93 | /** | ||
| 94 | * function ttm_eu_fence_buffer_objects. | ||
| 95 | * | ||
| 96 | * @list: thread private list of ttm_validate_buffer structs. | ||
| 97 | * @sync_obj: The new sync object for the buffers. | ||
| 98 | * | ||
| 99 | * This function should be called when command submission is complete, and | ||
| 100 | * it will add a new sync object to bos pointed to by entries on @list. | ||
| 101 | * It also unreserves all buffers, putting them on lru lists. | ||
| 102 | * | ||
| 103 | */ | ||
| 104 | |||
| 105 | extern void ttm_eu_fence_buffer_objects(struct list_head *list, void *sync_obj); | ||
| 106 | |||
| 107 | #endif | ||
diff --git a/include/drm/ttm/ttm_lock.h b/include/drm/ttm/ttm_lock.h new file mode 100644 index 000000000000..81ba0b0b891a --- /dev/null +++ b/include/drm/ttm/ttm_lock.h | |||
| @@ -0,0 +1,247 @@ | |||
| 1 | /************************************************************************** | ||
| 2 | * | ||
| 3 | * Copyright (c) 2007-2009 VMware, Inc., Palo Alto, CA., USA | ||
| 4 | * All Rights Reserved. | ||
| 5 | * | ||
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
| 7 | * copy of this software and associated documentation files (the | ||
| 8 | * "Software"), to deal in the Software without restriction, including | ||
| 9 | * without limitation the rights to use, copy, modify, merge, publish, | ||
| 10 | * distribute, sub license, and/or sell copies of the Software, and to | ||
| 11 | * permit persons to whom the Software is furnished to do so, subject to | ||
| 12 | * the following conditions: | ||
| 13 | * | ||
| 14 | * The above copyright notice and this permission notice (including the | ||
| 15 | * next paragraph) shall be included in all copies or substantial portions | ||
| 16 | * of the Software. | ||
| 17 | * | ||
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL | ||
| 21 | * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, | ||
| 22 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
| 23 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE | ||
| 24 | * USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
| 25 | * | ||
| 26 | **************************************************************************/ | ||
| 27 | /* | ||
| 28 | * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | ||
| 29 | */ | ||
| 30 | |||
| 31 | /** @file ttm_lock.h | ||
| 32 | * This file implements a simple replacement for the buffer manager use | ||
| 33 | * of the DRM heavyweight hardware lock. | ||
| 34 | * The lock is a read-write lock. Taking it in read mode and write mode | ||
| 35 | * is relatively fast, and intended for in-kernel use only. | ||
| 36 | * | ||
| 37 | * The vt mode is used only when there is a need to block all | ||
| 38 | * user-space processes from validating buffers. | ||
| 39 | * It's allowed to leave kernel space with the vt lock held. | ||
| 40 | * If a user-space process dies while having the vt-lock, | ||
| 41 | * it will be released during the file descriptor release. The vt lock | ||
| 42 | * excludes write lock and read lock. | ||
| 43 | * | ||
| 44 | * The suspend mode is used to lock out all TTM users when preparing for | ||
| 45 | * and executing suspend operations. | ||
| 46 | * | ||
| 47 | */ | ||
| 48 | |||
| 49 | #ifndef _TTM_LOCK_H_ | ||
| 50 | #define _TTM_LOCK_H_ | ||
| 51 | |||
| 52 | #include "ttm/ttm_object.h" | ||
| 53 | #include <linux/wait.h> | ||
| 54 | #include <asm/atomic.h> | ||
| 55 | |||
| 56 | /** | ||
| 57 | * struct ttm_lock | ||
| 58 | * | ||
| 59 | * @base: ttm base object used solely to release the lock if the client | ||
| 60 | * holding the lock dies. | ||
| 61 | * @queue: Queue for processes waiting for lock change-of-status. | ||
| 62 | * @lock: Spinlock protecting some lock members. | ||
| 63 | * @rw: Read-write lock counter. Protected by @lock. | ||
| 64 | * @flags: Lock state. Protected by @lock. | ||
| 65 | * @kill_takers: Boolean whether to kill takers of the lock. | ||
| 66 | * @signal: Signal to send when kill_takers is true. | ||
| 67 | */ | ||
| 68 | |||
| 69 | struct ttm_lock { | ||
| 70 | struct ttm_base_object base; | ||
| 71 | wait_queue_head_t queue; | ||
| 72 | spinlock_t lock; | ||
| 73 | int32_t rw; | ||
| 74 | uint32_t flags; | ||
| 75 | bool kill_takers; | ||
| 76 | int signal; | ||
| 77 | struct ttm_object_file *vt_holder; | ||
| 78 | }; | ||
| 79 | |||
| 80 | |||
| 81 | /** | ||
| 82 | * ttm_lock_init | ||
| 83 | * | ||
| 84 | * @lock: Pointer to a struct ttm_lock | ||
| 85 | * Initializes the lock. | ||
| 86 | */ | ||
| 87 | extern void ttm_lock_init(struct ttm_lock *lock); | ||
| 88 | |||
| 89 | /** | ||
| 90 | * ttm_read_unlock | ||
| 91 | * | ||
| 92 | * @lock: Pointer to a struct ttm_lock | ||
| 93 | * | ||
| 94 | * Releases a read lock. | ||
| 95 | */ | ||
| 96 | extern void ttm_read_unlock(struct ttm_lock *lock); | ||
| 97 | |||
| 98 | /** | ||
| 99 | * ttm_read_lock | ||
| 100 | * | ||
| 101 | * @lock: Pointer to a struct ttm_lock | ||
| 102 | * @interruptible: Interruptible sleeping while waiting for a lock. | ||
| 103 | * | ||
| 104 | * Takes the lock in read mode. | ||
| 105 | * Returns: | ||
| 106 | * -ERESTARTSYS If interrupted by a signal and interruptible is true. | ||
| 107 | */ | ||
| 108 | extern int ttm_read_lock(struct ttm_lock *lock, bool interruptible); | ||
| 109 | |||
| 110 | /** | ||
| 111 | * ttm_read_trylock | ||
| 112 | * | ||
| 113 | * @lock: Pointer to a struct ttm_lock | ||
| 114 | * @interruptible: Interruptible sleeping while waiting for a lock. | ||
| 115 | * | ||
| 116 | * Tries to take the lock in read mode. If the lock is already held | ||
| 117 | * in write mode, the function will return -EBUSY. If the lock is held | ||
| 118 | * in vt or suspend mode, the function will sleep until these modes | ||
| 119 | * are unlocked. | ||
| 120 | * | ||
| 121 | * Returns: | ||
| 122 | * -EBUSY The lock was already held in write mode. | ||
| 123 | * -ERESTARTSYS If interrupted by a signal and interruptible is true. | ||
| 124 | */ | ||
| 125 | extern int ttm_read_trylock(struct ttm_lock *lock, bool interruptible); | ||
| 126 | |||
| 127 | /** | ||
| 128 | * ttm_write_unlock | ||
| 129 | * | ||
| 130 | * @lock: Pointer to a struct ttm_lock | ||
| 131 | * | ||
| 132 | * Releases a write lock. | ||
| 133 | */ | ||
| 134 | extern void ttm_write_unlock(struct ttm_lock *lock); | ||
| 135 | |||
| 136 | /** | ||
| 137 | * ttm_write_lock | ||
| 138 | * | ||
| 139 | * @lock: Pointer to a struct ttm_lock | ||
| 140 | * @interruptible: Interruptible sleeping while waiting for a lock. | ||
| 141 | * | ||
| 142 | * Takes the lock in write mode. | ||
| 143 | * Returns: | ||
| 144 | * -ERESTARTSYS If interrupted by a signal and interruptible is true. | ||
| 145 | */ | ||
| 146 | extern int ttm_write_lock(struct ttm_lock *lock, bool interruptible); | ||
| 147 | |||
| 148 | /** | ||
| 149 | * ttm_lock_downgrade | ||
| 150 | * | ||
| 151 | * @lock: Pointer to a struct ttm_lock | ||
| 152 | * | ||
| 153 | * Downgrades a write lock to a read lock. | ||
| 154 | */ | ||
| 155 | extern void ttm_lock_downgrade(struct ttm_lock *lock); | ||
| 156 | |||
| 157 | /** | ||
| 158 | * ttm_suspend_lock | ||
| 159 | * | ||
| 160 | * @lock: Pointer to a struct ttm_lock | ||
| 161 | * | ||
| 162 | * Takes the lock in suspend mode. Excludes read and write mode. | ||
| 163 | */ | ||
| 164 | extern void ttm_suspend_lock(struct ttm_lock *lock); | ||
| 165 | |||
| 166 | /** | ||
| 167 | * ttm_suspend_unlock | ||
| 168 | * | ||
| 169 | * @lock: Pointer to a struct ttm_lock | ||
| 170 | * | ||
| 171 | * Releases a suspend lock | ||
| 172 | */ | ||
| 173 | extern void ttm_suspend_unlock(struct ttm_lock *lock); | ||
| 174 | |||
| 175 | /** | ||
| 176 | * ttm_vt_lock | ||
| 177 | * | ||
| 178 | * @lock: Pointer to a struct ttm_lock | ||
| 179 | * @interruptible: Interruptible sleeping while waiting for a lock. | ||
| 180 | * @tfile: Pointer to a struct ttm_object_file to register the lock with. | ||
| 181 | * | ||
| 182 | * Takes the lock in vt mode. | ||
| 183 | * Returns: | ||
| 184 | * -ERESTARTSYS If interrupted by a signal and interruptible is true. | ||
| 185 | * -ENOMEM: Out of memory when locking. | ||
| 186 | */ | ||
| 187 | extern int ttm_vt_lock(struct ttm_lock *lock, bool interruptible, | ||
| 188 | struct ttm_object_file *tfile); | ||
| 189 | |||
| 190 | /** | ||
| 191 | * ttm_vt_unlock | ||
| 192 | * | ||
| 193 | * @lock: Pointer to a struct ttm_lock | ||
| 194 | * | ||
| 195 | * Releases a vt lock. | ||
| 196 | * Returns: | ||
| 197 | * -EINVAL If the lock was not held. | ||
| 198 | */ | ||
| 199 | extern int ttm_vt_unlock(struct ttm_lock *lock); | ||
| 200 | |||
| 201 | /** | ||
| 202 | * ttm_write_unlock | ||
| 203 | * | ||
| 204 | * @lock: Pointer to a struct ttm_lock | ||
| 205 | * | ||
| 206 | * Releases a write lock. | ||
| 207 | */ | ||
| 208 | extern void ttm_write_unlock(struct ttm_lock *lock); | ||
| 209 | |||
| 210 | /** | ||
| 211 | * ttm_write_lock | ||
| 212 | * | ||
| 213 | * @lock: Pointer to a struct ttm_lock | ||
| 214 | * @interruptible: Interruptible sleeping while waiting for a lock. | ||
| 215 | * | ||
| 216 | * Takes the lock in write mode. | ||
| 217 | * Returns: | ||
| 218 | * -ERESTARTSYS If interrupted by a signal and interruptible is true. | ||
| 219 | */ | ||
| 220 | extern int ttm_write_lock(struct ttm_lock *lock, bool interruptible); | ||
| 221 | |||
| 222 | /** | ||
| 223 | * ttm_lock_set_kill | ||
| 224 | * | ||
| 225 | * @lock: Pointer to a struct ttm_lock | ||
| 226 | * @val: Boolean whether to kill processes taking the lock. | ||
| 227 | * @signal: Signal to send to the process taking the lock. | ||
| 228 | * | ||
| 229 | * The kill-when-taking-lock functionality is used to kill processes that keep | ||
| 230 | * on using the TTM functionality when its resources has been taken down, for | ||
| 231 | * example when the X server exits. A typical sequence would look like this: | ||
| 232 | * - X server takes lock in write mode. | ||
| 233 | * - ttm_lock_set_kill() is called with @val set to true. | ||
| 234 | * - As part of X server exit, TTM resources are taken down. | ||
| 235 | * - X server releases the lock on file release. | ||
| 236 | * - Another dri client wants to render, takes the lock and is killed. | ||
| 237 | * | ||
| 238 | */ | ||
| 239 | static inline void ttm_lock_set_kill(struct ttm_lock *lock, bool val, | ||
| 240 | int signal) | ||
| 241 | { | ||
| 242 | lock->kill_takers = val; | ||
| 243 | if (val) | ||
| 244 | lock->signal = signal; | ||
| 245 | } | ||
| 246 | |||
| 247 | #endif | ||
diff --git a/include/drm/ttm/ttm_memory.h b/include/drm/ttm/ttm_memory.h index 6983a7cf4da4..b199170b3c2c 100644 --- a/include/drm/ttm/ttm_memory.h +++ b/include/drm/ttm/ttm_memory.h | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include <linux/wait.h> | 33 | #include <linux/wait.h> |
| 34 | #include <linux/errno.h> | 34 | #include <linux/errno.h> |
| 35 | #include <linux/kobject.h> | 35 | #include <linux/kobject.h> |
| 36 | #include <linux/mm.h> | ||
| 36 | 37 | ||
| 37 | /** | 38 | /** |
| 38 | * struct ttm_mem_shrink - callback to shrink TTM memory usage. | 39 | * struct ttm_mem_shrink - callback to shrink TTM memory usage. |
diff --git a/include/drm/ttm/ttm_object.h b/include/drm/ttm/ttm_object.h new file mode 100644 index 000000000000..703ca4db0a29 --- /dev/null +++ b/include/drm/ttm/ttm_object.h | |||
| @@ -0,0 +1,267 @@ | |||
| 1 | /************************************************************************** | ||
| 2 | * | ||
| 3 | * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA | ||
| 4 | * All Rights Reserved. | ||
| 5 | * | ||
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
| 7 | * copy of this software and associated documentation files (the | ||
| 8 | * "Software"), to deal in the Software without restriction, including | ||
| 9 | * without limitation the rights to use, copy, modify, merge, publish, | ||
| 10 | * distribute, sub license, and/or sell copies of the Software, and to | ||
| 11 | * permit persons to whom the Software is furnished to do so, subject to | ||
| 12 | * the following conditions: | ||
| 13 | * | ||
| 14 | * The above copyright notice and this permission notice (including the | ||
| 15 | * next paragraph) shall be included in all copies or substantial portions | ||
| 16 | * of the Software. | ||
| 17 | * | ||
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL | ||
| 21 | * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, | ||
| 22 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
| 23 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE | ||
| 24 | * USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
| 25 | * | ||
| 26 | **************************************************************************/ | ||
| 27 | /* | ||
| 28 | * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | ||
| 29 | */ | ||
| 30 | /** @file ttm_object.h | ||
| 31 | * | ||
| 32 | * Base- and reference object implementation for the various | ||
| 33 | * ttm objects. Implements reference counting, minimal security checks | ||
| 34 | * and release on file close. | ||
| 35 | */ | ||
| 36 | |||
| 37 | #ifndef _TTM_OBJECT_H_ | ||
| 38 | #define _TTM_OBJECT_H_ | ||
| 39 | |||
| 40 | #include <linux/list.h> | ||
| 41 | #include "drm_hashtab.h" | ||
| 42 | #include <linux/kref.h> | ||
| 43 | #include <ttm/ttm_memory.h> | ||
| 44 | |||
| 45 | /** | ||
| 46 | * enum ttm_ref_type | ||
| 47 | * | ||
| 48 | * Describes what type of reference a ref object holds. | ||
| 49 | * | ||
| 50 | * TTM_REF_USAGE is a simple refcount on a base object. | ||
| 51 | * | ||
| 52 | * TTM_REF_SYNCCPU_READ is a SYNCCPU_READ reference on a | ||
| 53 | * buffer object. | ||
| 54 | * | ||
| 55 | * TTM_REF_SYNCCPU_WRITE is a SYNCCPU_WRITE reference on a | ||
| 56 | * buffer object. | ||
| 57 | * | ||
| 58 | */ | ||
| 59 | |||
| 60 | enum ttm_ref_type { | ||
| 61 | TTM_REF_USAGE, | ||
| 62 | TTM_REF_SYNCCPU_READ, | ||
| 63 | TTM_REF_SYNCCPU_WRITE, | ||
| 64 | TTM_REF_NUM | ||
| 65 | }; | ||
| 66 | |||
| 67 | /** | ||
| 68 | * enum ttm_object_type | ||
| 69 | * | ||
| 70 | * One entry per ttm object type. | ||
| 71 | * Device-specific types should use the | ||
| 72 | * ttm_driver_typex types. | ||
| 73 | */ | ||
| 74 | |||
| 75 | enum ttm_object_type { | ||
| 76 | ttm_fence_type, | ||
| 77 | ttm_buffer_type, | ||
| 78 | ttm_lock_type, | ||
| 79 | ttm_driver_type0 = 256, | ||
| 80 | ttm_driver_type1 | ||
| 81 | }; | ||
| 82 | |||
| 83 | struct ttm_object_file; | ||
| 84 | struct ttm_object_device; | ||
| 85 | |||
| 86 | /** | ||
| 87 | * struct ttm_base_object | ||
| 88 | * | ||
| 89 | * @hash: hash entry for the per-device object hash. | ||
| 90 | * @type: derived type this object is base class for. | ||
| 91 | * @shareable: Other ttm_object_files can access this object. | ||
| 92 | * | ||
| 93 | * @tfile: Pointer to ttm_object_file of the creator. | ||
| 94 | * NULL if the object was not created by a user request. | ||
| 95 | * (kernel object). | ||
| 96 | * | ||
| 97 | * @refcount: Number of references to this object, not | ||
| 98 | * including the hash entry. A reference to a base object can | ||
| 99 | * only be held by a ref object. | ||
| 100 | * | ||
| 101 | * @refcount_release: A function to be called when there are | ||
| 102 | * no more references to this object. This function should | ||
| 103 | * destroy the object (or make sure destruction eventually happens), | ||
| 104 | * and when it is called, the object has | ||
| 105 | * already been taken out of the per-device hash. The parameter | ||
| 106 | * "base" should be set to NULL by the function. | ||
| 107 | * | ||
| 108 | * @ref_obj_release: A function to be called when a reference object | ||
| 109 | * with another ttm_ref_type than TTM_REF_USAGE is deleted. | ||
| 110 | * this function may, for example, release a lock held by a user-space | ||
| 111 | * process. | ||
| 112 | * | ||
| 113 | * This struct is intended to be used as a base struct for objects that | ||
| 114 | * are visible to user-space. It provides a global name, race-safe | ||
| 115 | * access and refcounting, minimal access contol and hooks for unref actions. | ||
| 116 | */ | ||
| 117 | |||
| 118 | struct ttm_base_object { | ||
| 119 | struct drm_hash_item hash; | ||
| 120 | enum ttm_object_type object_type; | ||
| 121 | bool shareable; | ||
| 122 | struct ttm_object_file *tfile; | ||
| 123 | struct kref refcount; | ||
| 124 | void (*refcount_release) (struct ttm_base_object **base); | ||
| 125 | void (*ref_obj_release) (struct ttm_base_object *base, | ||
| 126 | enum ttm_ref_type ref_type); | ||
| 127 | }; | ||
| 128 | |||
| 129 | /** | ||
| 130 | * ttm_base_object_init | ||
| 131 | * | ||
| 132 | * @tfile: Pointer to a struct ttm_object_file. | ||
| 133 | * @base: The struct ttm_base_object to initialize. | ||
| 134 | * @shareable: This object is shareable with other applcations. | ||
| 135 | * (different @tfile pointers.) | ||
| 136 | * @type: The object type. | ||
| 137 | * @refcount_release: See the struct ttm_base_object description. | ||
| 138 | * @ref_obj_release: See the struct ttm_base_object description. | ||
| 139 | * | ||
| 140 | * Initializes a struct ttm_base_object. | ||
| 141 | */ | ||
| 142 | |||
| 143 | extern int ttm_base_object_init(struct ttm_object_file *tfile, | ||
| 144 | struct ttm_base_object *base, | ||
| 145 | bool shareable, | ||
| 146 | enum ttm_object_type type, | ||
| 147 | void (*refcount_release) (struct ttm_base_object | ||
| 148 | **), | ||
| 149 | void (*ref_obj_release) (struct ttm_base_object | ||
| 150 | *, | ||
| 151 | enum ttm_ref_type | ||
| 152 | ref_type)); | ||
| 153 | |||
| 154 | /** | ||
| 155 | * ttm_base_object_lookup | ||
| 156 | * | ||
| 157 | * @tfile: Pointer to a struct ttm_object_file. | ||
| 158 | * @key: Hash key | ||
| 159 | * | ||
| 160 | * Looks up a struct ttm_base_object with the key @key. | ||
| 161 | * Also verifies that the object is visible to the application, by | ||
| 162 | * comparing the @tfile argument and checking the object shareable flag. | ||
| 163 | */ | ||
| 164 | |||
| 165 | extern struct ttm_base_object *ttm_base_object_lookup(struct ttm_object_file | ||
| 166 | *tfile, uint32_t key); | ||
| 167 | |||
| 168 | /** | ||
| 169 | * ttm_base_object_unref | ||
| 170 | * | ||
| 171 | * @p_base: Pointer to a pointer referncing a struct ttm_base_object. | ||
| 172 | * | ||
| 173 | * Decrements the base object refcount and clears the pointer pointed to by | ||
| 174 | * p_base. | ||
| 175 | */ | ||
| 176 | |||
| 177 | extern void ttm_base_object_unref(struct ttm_base_object **p_base); | ||
| 178 | |||
| 179 | /** | ||
| 180 | * ttm_ref_object_add. | ||
| 181 | * | ||
| 182 | * @tfile: A struct ttm_object_file representing the application owning the | ||
| 183 | * ref_object. | ||
| 184 | * @base: The base object to reference. | ||
| 185 | * @ref_type: The type of reference. | ||
| 186 | * @existed: Upon completion, indicates that an identical reference object | ||
| 187 | * already existed, and the refcount was upped on that object instead. | ||
| 188 | * | ||
| 189 | * Adding a ref object to a base object is basically like referencing the | ||
| 190 | * base object, but a user-space application holds the reference. When the | ||
| 191 | * file corresponding to @tfile is closed, all its reference objects are | ||
| 192 | * deleted. A reference object can have different types depending on what | ||
| 193 | * it's intended for. It can be refcounting to prevent object destruction, | ||
| 194 | * When user-space takes a lock, it can add a ref object to that lock to | ||
| 195 | * make sure the lock is released if the application dies. A ref object | ||
| 196 | * will hold a single reference on a base object. | ||
| 197 | */ | ||
| 198 | extern int ttm_ref_object_add(struct ttm_object_file *tfile, | ||
| 199 | struct ttm_base_object *base, | ||
| 200 | enum ttm_ref_type ref_type, bool *existed); | ||
| 201 | /** | ||
| 202 | * ttm_ref_object_base_unref | ||
| 203 | * | ||
| 204 | * @key: Key representing the base object. | ||
| 205 | * @ref_type: Ref type of the ref object to be dereferenced. | ||
| 206 | * | ||
| 207 | * Unreference a ref object with type @ref_type | ||
| 208 | * on the base object identified by @key. If there are no duplicate | ||
| 209 | * references, the ref object will be destroyed and the base object | ||
| 210 | * will be unreferenced. | ||
| 211 | */ | ||
| 212 | extern int ttm_ref_object_base_unref(struct ttm_object_file *tfile, | ||
| 213 | unsigned long key, | ||
| 214 | enum ttm_ref_type ref_type); | ||
| 215 | |||
| 216 | /** | ||
| 217 | * ttm_object_file_init - initialize a struct ttm_object file | ||
| 218 | * | ||
| 219 | * @tdev: A struct ttm_object device this file is initialized on. | ||
| 220 | * @hash_order: Order of the hash table used to hold the reference objects. | ||
| 221 | * | ||
| 222 | * This is typically called by the file_ops::open function. | ||
| 223 | */ | ||
| 224 | |||
| 225 | extern struct ttm_object_file *ttm_object_file_init(struct ttm_object_device | ||
| 226 | *tdev, | ||
| 227 | unsigned int hash_order); | ||
| 228 | |||
| 229 | /** | ||
| 230 | * ttm_object_file_release - release data held by a ttm_object_file | ||
| 231 | * | ||
| 232 | * @p_tfile: Pointer to pointer to the ttm_object_file object to release. | ||
| 233 | * *p_tfile will be set to NULL by this function. | ||
| 234 | * | ||
| 235 | * Releases all data associated by a ttm_object_file. | ||
| 236 | * Typically called from file_ops::release. The caller must | ||
| 237 | * ensure that there are no concurrent users of tfile. | ||
| 238 | */ | ||
| 239 | |||
| 240 | extern void ttm_object_file_release(struct ttm_object_file **p_tfile); | ||
| 241 | |||
| 242 | /** | ||
| 243 | * ttm_object device init - initialize a struct ttm_object_device | ||
| 244 | * | ||
| 245 | * @hash_order: Order of hash table used to hash the base objects. | ||
| 246 | * | ||
| 247 | * This function is typically called on device initialization to prepare | ||
| 248 | * data structures needed for ttm base and ref objects. | ||
| 249 | */ | ||
| 250 | |||
| 251 | extern struct ttm_object_device *ttm_object_device_init | ||
| 252 | (struct ttm_mem_global *mem_glob, unsigned int hash_order); | ||
| 253 | |||
| 254 | /** | ||
| 255 | * ttm_object_device_release - release data held by a ttm_object_device | ||
| 256 | * | ||
| 257 | * @p_tdev: Pointer to pointer to the ttm_object_device object to release. | ||
| 258 | * *p_tdev will be set to NULL by this function. | ||
| 259 | * | ||
| 260 | * Releases all data associated by a ttm_object_device. | ||
| 261 | * Typically called from driver::unload before the destruction of the | ||
| 262 | * device private data structure. | ||
| 263 | */ | ||
| 264 | |||
| 265 | extern void ttm_object_device_release(struct ttm_object_device **p_tdev); | ||
| 266 | |||
| 267 | #endif | ||
diff --git a/include/drm/via_drm.h b/include/drm/via_drm.h index 170786e5c2ff..fd11a5bd892d 100644 --- a/include/drm/via_drm.h +++ b/include/drm/via_drm.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | #ifndef _VIA_DRM_H_ | 24 | #ifndef _VIA_DRM_H_ |
| 25 | #define _VIA_DRM_H_ | 25 | #define _VIA_DRM_H_ |
| 26 | 26 | ||
| 27 | #include <linux/types.h> | 27 | #include "drm.h" |
| 28 | 28 | ||
| 29 | /* WARNING: These defines must be the same as what the Xserver uses. | 29 | /* WARNING: These defines must be the same as what the Xserver uses. |
| 30 | * if you change them, you must change the defines in the Xserver. | 30 | * if you change them, you must change the defines in the Xserver. |
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index 5a5385749e16..f72914db2a11 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
| @@ -214,7 +214,6 @@ unifdef-y += futex.h | |||
| 214 | unifdef-y += fs.h | 214 | unifdef-y += fs.h |
| 215 | unifdef-y += gameport.h | 215 | unifdef-y += gameport.h |
| 216 | unifdef-y += generic_serial.h | 216 | unifdef-y += generic_serial.h |
| 217 | unifdef-y += hayesesp.h | ||
| 218 | unifdef-y += hdlcdrv.h | 217 | unifdef-y += hdlcdrv.h |
| 219 | unifdef-y += hdlc.h | 218 | unifdef-y += hdlc.h |
| 220 | unifdef-y += hdreg.h | 219 | unifdef-y += hdreg.h |
diff --git a/include/linux/atmel-mci.h b/include/linux/atmel-mci.h index 57b1846a3c87..3e09b345f4d6 100644 --- a/include/linux/atmel-mci.h +++ b/include/linux/atmel-mci.h | |||
| @@ -3,8 +3,6 @@ | |||
| 3 | 3 | ||
| 4 | #define ATMEL_MCI_MAX_NR_SLOTS 2 | 4 | #define ATMEL_MCI_MAX_NR_SLOTS 2 |
| 5 | 5 | ||
| 6 | #include <linux/dw_dmac.h> | ||
| 7 | |||
| 8 | /** | 6 | /** |
| 9 | * struct mci_slot_pdata - board-specific per-slot configuration | 7 | * struct mci_slot_pdata - board-specific per-slot configuration |
| 10 | * @bus_width: Number of data lines wired up the slot | 8 | * @bus_width: Number of data lines wired up the slot |
| @@ -34,7 +32,7 @@ struct mci_slot_pdata { | |||
| 34 | * @slot: Per-slot configuration data. | 32 | * @slot: Per-slot configuration data. |
| 35 | */ | 33 | */ |
| 36 | struct mci_platform_data { | 34 | struct mci_platform_data { |
| 37 | struct dw_dma_slave dma_slave; | 35 | struct mci_dma_data *dma_slave; |
| 38 | struct mci_slot_pdata slot[ATMEL_MCI_MAX_NR_SLOTS]; | 36 | struct mci_slot_pdata slot[ATMEL_MCI_MAX_NR_SLOTS]; |
| 39 | }; | 37 | }; |
| 40 | 38 | ||
diff --git a/include/linux/cpu.h b/include/linux/cpu.h index 47536197ffdd..e287863ac053 100644 --- a/include/linux/cpu.h +++ b/include/linux/cpu.h | |||
| @@ -43,6 +43,8 @@ extern int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls); | |||
| 43 | 43 | ||
| 44 | #ifdef CONFIG_HOTPLUG_CPU | 44 | #ifdef CONFIG_HOTPLUG_CPU |
| 45 | extern void unregister_cpu(struct cpu *cpu); | 45 | extern void unregister_cpu(struct cpu *cpu); |
| 46 | extern ssize_t arch_cpu_probe(const char *, size_t); | ||
| 47 | extern ssize_t arch_cpu_release(const char *, size_t); | ||
| 46 | #endif | 48 | #endif |
| 47 | struct notifier_block; | 49 | struct notifier_block; |
| 48 | 50 | ||
| @@ -115,6 +117,19 @@ extern void put_online_cpus(void); | |||
| 115 | #define unregister_hotcpu_notifier(nb) unregister_cpu_notifier(nb) | 117 | #define unregister_hotcpu_notifier(nb) unregister_cpu_notifier(nb) |
| 116 | int cpu_down(unsigned int cpu); | 118 | int cpu_down(unsigned int cpu); |
| 117 | 119 | ||
| 120 | #ifdef CONFIG_ARCH_CPU_PROBE_RELEASE | ||
| 121 | extern void cpu_hotplug_driver_lock(void); | ||
| 122 | extern void cpu_hotplug_driver_unlock(void); | ||
| 123 | #else | ||
| 124 | static inline void cpu_hotplug_driver_lock(void) | ||
| 125 | { | ||
| 126 | } | ||
| 127 | |||
| 128 | static inline void cpu_hotplug_driver_unlock(void) | ||
| 129 | { | ||
| 130 | } | ||
| 131 | #endif | ||
| 132 | |||
| 118 | #else /* CONFIG_HOTPLUG_CPU */ | 133 | #else /* CONFIG_HOTPLUG_CPU */ |
| 119 | 134 | ||
| 120 | #define get_online_cpus() do { } while (0) | 135 | #define get_online_cpus() do { } while (0) |
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index 79a2340d83cd..4de02b10007f 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h | |||
| @@ -232,6 +232,7 @@ struct cpufreq_driver { | |||
| 232 | /* optional */ | 232 | /* optional */ |
| 233 | unsigned int (*getavg) (struct cpufreq_policy *policy, | 233 | unsigned int (*getavg) (struct cpufreq_policy *policy, |
| 234 | unsigned int cpu); | 234 | unsigned int cpu); |
| 235 | int (*bios_limit) (int cpu, unsigned int *limit); | ||
| 235 | 236 | ||
| 236 | int (*exit) (struct cpufreq_policy *policy); | 237 | int (*exit) (struct cpufreq_policy *policy); |
| 237 | int (*suspend) (struct cpufreq_policy *policy, pm_message_t pmsg); | 238 | int (*suspend) (struct cpufreq_policy *policy, pm_message_t pmsg); |
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index 789cf5f920ce..d77b54733c5b 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
| @@ -84,6 +84,7 @@ extern const struct cpumask *const cpu_active_mask; | |||
| 84 | #define num_online_cpus() cpumask_weight(cpu_online_mask) | 84 | #define num_online_cpus() cpumask_weight(cpu_online_mask) |
| 85 | #define num_possible_cpus() cpumask_weight(cpu_possible_mask) | 85 | #define num_possible_cpus() cpumask_weight(cpu_possible_mask) |
| 86 | #define num_present_cpus() cpumask_weight(cpu_present_mask) | 86 | #define num_present_cpus() cpumask_weight(cpu_present_mask) |
| 87 | #define num_active_cpus() cpumask_weight(cpu_active_mask) | ||
| 87 | #define cpu_online(cpu) cpumask_test_cpu((cpu), cpu_online_mask) | 88 | #define cpu_online(cpu) cpumask_test_cpu((cpu), cpu_online_mask) |
| 88 | #define cpu_possible(cpu) cpumask_test_cpu((cpu), cpu_possible_mask) | 89 | #define cpu_possible(cpu) cpumask_test_cpu((cpu), cpu_possible_mask) |
| 89 | #define cpu_present(cpu) cpumask_test_cpu((cpu), cpu_present_mask) | 90 | #define cpu_present(cpu) cpumask_test_cpu((cpu), cpu_present_mask) |
| @@ -92,6 +93,7 @@ extern const struct cpumask *const cpu_active_mask; | |||
| 92 | #define num_online_cpus() 1 | 93 | #define num_online_cpus() 1 |
| 93 | #define num_possible_cpus() 1 | 94 | #define num_possible_cpus() 1 |
| 94 | #define num_present_cpus() 1 | 95 | #define num_present_cpus() 1 |
| 96 | #define num_active_cpus() 1 | ||
| 95 | #define cpu_online(cpu) ((cpu) == 0) | 97 | #define cpu_online(cpu) ((cpu) == 0) |
| 96 | #define cpu_possible(cpu) ((cpu) == 0) | 98 | #define cpu_possible(cpu) ((cpu) == 0) |
| 97 | #define cpu_present(cpu) ((cpu) == 0) | 99 | #define cpu_present(cpu) ((cpu) == 0) |
diff --git a/include/linux/cs5535.h b/include/linux/cs5535.h new file mode 100644 index 000000000000..d5a1d4810b80 --- /dev/null +++ b/include/linux/cs5535.h | |||
| @@ -0,0 +1,172 @@ | |||
| 1 | /* | ||
| 2 | * AMD CS5535/CS5536 definitions | ||
| 3 | * Copyright (C) 2006 Advanced Micro Devices, Inc. | ||
| 4 | * Copyright (C) 2009 Andres Salomon <dilinger@collabora.co.uk> | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or | ||
| 7 | * modify it under the terms of version 2 of the GNU General Public License | ||
| 8 | * as published by the Free Software Foundation. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef _CS5535_H | ||
| 12 | #define _CS5535_H | ||
| 13 | |||
| 14 | /* MSRs */ | ||
| 15 | #define MSR_GLIU_P2D_RO0 0x10000029 | ||
| 16 | |||
| 17 | #define MSR_LX_GLD_MSR_CONFIG 0x48002001 | ||
| 18 | #define MSR_LX_MSR_PADSEL 0x48002011 /* NOT 0x48000011; the data | ||
| 19 | * sheet has the wrong value */ | ||
| 20 | #define MSR_GLCP_SYS_RSTPLL 0x4C000014 | ||
| 21 | #define MSR_GLCP_DOTPLL 0x4C000015 | ||
| 22 | |||
| 23 | #define MSR_LBAR_SMB 0x5140000B | ||
| 24 | #define MSR_LBAR_GPIO 0x5140000C | ||
| 25 | #define MSR_LBAR_MFGPT 0x5140000D | ||
| 26 | #define MSR_LBAR_ACPI 0x5140000E | ||
| 27 | #define MSR_LBAR_PMS 0x5140000F | ||
| 28 | |||
| 29 | #define MSR_DIVIL_SOFT_RESET 0x51400017 | ||
| 30 | |||
| 31 | #define MSR_PIC_YSEL_LOW 0x51400020 | ||
| 32 | #define MSR_PIC_YSEL_HIGH 0x51400021 | ||
| 33 | #define MSR_PIC_ZSEL_LOW 0x51400022 | ||
| 34 | #define MSR_PIC_ZSEL_HIGH 0x51400023 | ||
| 35 | #define MSR_PIC_IRQM_LPC 0x51400025 | ||
| 36 | |||
| 37 | #define MSR_MFGPT_IRQ 0x51400028 | ||
| 38 | #define MSR_MFGPT_NR 0x51400029 | ||
| 39 | #define MSR_MFGPT_SETUP 0x5140002B | ||
| 40 | |||
| 41 | #define MSR_LX_SPARE_MSR 0x80000011 /* DC-specific */ | ||
| 42 | |||
| 43 | #define MSR_GX_GLD_MSR_CONFIG 0xC0002001 | ||
| 44 | #define MSR_GX_MSR_PADSEL 0xC0002011 | ||
| 45 | |||
| 46 | /* resource sizes */ | ||
| 47 | #define LBAR_GPIO_SIZE 0xFF | ||
| 48 | #define LBAR_MFGPT_SIZE 0x40 | ||
| 49 | #define LBAR_ACPI_SIZE 0x40 | ||
| 50 | #define LBAR_PMS_SIZE 0x80 | ||
| 51 | |||
| 52 | /* VSA2 magic values */ | ||
| 53 | #define VSA_VRC_INDEX 0xAC1C | ||
| 54 | #define VSA_VRC_DATA 0xAC1E | ||
| 55 | #define VSA_VR_UNLOCK 0xFC53 /* unlock virtual register */ | ||
| 56 | #define VSA_VR_SIGNATURE 0x0003 | ||
| 57 | #define VSA_VR_MEM_SIZE 0x0200 | ||
| 58 | #define AMD_VSA_SIG 0x4132 /* signature is ascii 'VSA2' */ | ||
| 59 | #define GSW_VSA_SIG 0x534d /* General Software signature */ | ||
| 60 | |||
| 61 | #include <linux/io.h> | ||
| 62 | |||
| 63 | static inline int cs5535_has_vsa2(void) | ||
| 64 | { | ||
| 65 | static int has_vsa2 = -1; | ||
| 66 | |||
| 67 | if (has_vsa2 == -1) { | ||
| 68 | uint16_t val; | ||
| 69 | |||
| 70 | /* | ||
| 71 | * The VSA has virtual registers that we can query for a | ||
| 72 | * signature. | ||
| 73 | */ | ||
| 74 | outw(VSA_VR_UNLOCK, VSA_VRC_INDEX); | ||
| 75 | outw(VSA_VR_SIGNATURE, VSA_VRC_INDEX); | ||
| 76 | |||
| 77 | val = inw(VSA_VRC_DATA); | ||
| 78 | has_vsa2 = (val == AMD_VSA_SIG || val == GSW_VSA_SIG); | ||
| 79 | } | ||
| 80 | |||
| 81 | return has_vsa2; | ||
| 82 | } | ||
| 83 | |||
| 84 | /* GPIOs */ | ||
| 85 | #define GPIO_OUTPUT_VAL 0x00 | ||
| 86 | #define GPIO_OUTPUT_ENABLE 0x04 | ||
| 87 | #define GPIO_OUTPUT_OPEN_DRAIN 0x08 | ||
| 88 | #define GPIO_OUTPUT_INVERT 0x0C | ||
| 89 | #define GPIO_OUTPUT_AUX1 0x10 | ||
| 90 | #define GPIO_OUTPUT_AUX2 0x14 | ||
| 91 | #define GPIO_PULL_UP 0x18 | ||
| 92 | #define GPIO_PULL_DOWN 0x1C | ||
| 93 | #define GPIO_INPUT_ENABLE 0x20 | ||
| 94 | #define GPIO_INPUT_INVERT 0x24 | ||
| 95 | #define GPIO_INPUT_FILTER 0x28 | ||
| 96 | #define GPIO_INPUT_EVENT_COUNT 0x2C | ||
| 97 | #define GPIO_READ_BACK 0x30 | ||
| 98 | #define GPIO_INPUT_AUX1 0x34 | ||
| 99 | #define GPIO_EVENTS_ENABLE 0x38 | ||
| 100 | #define GPIO_LOCK_ENABLE 0x3C | ||
| 101 | #define GPIO_POSITIVE_EDGE_EN 0x40 | ||
| 102 | #define GPIO_NEGATIVE_EDGE_EN 0x44 | ||
| 103 | #define GPIO_POSITIVE_EDGE_STS 0x48 | ||
| 104 | #define GPIO_NEGATIVE_EDGE_STS 0x4C | ||
| 105 | |||
| 106 | #define GPIO_MAP_X 0xE0 | ||
| 107 | #define GPIO_MAP_Y 0xE4 | ||
| 108 | #define GPIO_MAP_Z 0xE8 | ||
| 109 | #define GPIO_MAP_W 0xEC | ||
| 110 | |||
| 111 | void cs5535_gpio_set(unsigned offset, unsigned int reg); | ||
| 112 | void cs5535_gpio_clear(unsigned offset, unsigned int reg); | ||
| 113 | int cs5535_gpio_isset(unsigned offset, unsigned int reg); | ||
| 114 | |||
| 115 | /* MFGPTs */ | ||
| 116 | |||
| 117 | #define MFGPT_MAX_TIMERS 8 | ||
| 118 | #define MFGPT_TIMER_ANY (-1) | ||
| 119 | |||
| 120 | #define MFGPT_DOMAIN_WORKING 1 | ||
| 121 | #define MFGPT_DOMAIN_STANDBY 2 | ||
| 122 | #define MFGPT_DOMAIN_ANY (MFGPT_DOMAIN_WORKING | MFGPT_DOMAIN_STANDBY) | ||
| 123 | |||
| 124 | #define MFGPT_CMP1 0 | ||
| 125 | #define MFGPT_CMP2 1 | ||
| 126 | |||
| 127 | #define MFGPT_EVENT_IRQ 0 | ||
| 128 | #define MFGPT_EVENT_NMI 1 | ||
| 129 | #define MFGPT_EVENT_RESET 3 | ||
| 130 | |||
| 131 | #define MFGPT_REG_CMP1 0 | ||
| 132 | #define MFGPT_REG_CMP2 2 | ||
| 133 | #define MFGPT_REG_COUNTER 4 | ||
| 134 | #define MFGPT_REG_SETUP 6 | ||
| 135 | |||
| 136 | #define MFGPT_SETUP_CNTEN (1 << 15) | ||
| 137 | #define MFGPT_SETUP_CMP2 (1 << 14) | ||
| 138 | #define MFGPT_SETUP_CMP1 (1 << 13) | ||
| 139 | #define MFGPT_SETUP_SETUP (1 << 12) | ||
| 140 | #define MFGPT_SETUP_STOPEN (1 << 11) | ||
| 141 | #define MFGPT_SETUP_EXTEN (1 << 10) | ||
| 142 | #define MFGPT_SETUP_REVEN (1 << 5) | ||
| 143 | #define MFGPT_SETUP_CLKSEL (1 << 4) | ||
| 144 | |||
| 145 | struct cs5535_mfgpt_timer; | ||
| 146 | |||
| 147 | extern uint16_t cs5535_mfgpt_read(struct cs5535_mfgpt_timer *timer, | ||
| 148 | uint16_t reg); | ||
| 149 | extern void cs5535_mfgpt_write(struct cs5535_mfgpt_timer *timer, uint16_t reg, | ||
| 150 | uint16_t value); | ||
| 151 | |||
| 152 | extern int cs5535_mfgpt_toggle_event(struct cs5535_mfgpt_timer *timer, int cmp, | ||
| 153 | int event, int enable); | ||
| 154 | extern int cs5535_mfgpt_set_irq(struct cs5535_mfgpt_timer *timer, int cmp, | ||
| 155 | int *irq, int enable); | ||
| 156 | extern struct cs5535_mfgpt_timer *cs5535_mfgpt_alloc_timer(int timer, | ||
| 157 | int domain); | ||
| 158 | extern void cs5535_mfgpt_free_timer(struct cs5535_mfgpt_timer *timer); | ||
| 159 | |||
| 160 | static inline int cs5535_mfgpt_setup_irq(struct cs5535_mfgpt_timer *timer, | ||
| 161 | int cmp, int *irq) | ||
| 162 | { | ||
| 163 | return cs5535_mfgpt_set_irq(timer, cmp, irq, 1); | ||
| 164 | } | ||
| 165 | |||
| 166 | static inline int cs5535_mfgpt_release_irq(struct cs5535_mfgpt_timer *timer, | ||
| 167 | int cmp, int *irq) | ||
| 168 | { | ||
| 169 | return cs5535_mfgpt_set_irq(timer, cmp, irq, 0); | ||
| 170 | } | ||
| 171 | |||
| 172 | #endif | ||
diff --git a/include/linux/ctype.h b/include/linux/ctype.h index afa36392297a..a3d6ee0044f9 100644 --- a/include/linux/ctype.h +++ b/include/linux/ctype.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #define _X 0x40 /* hex digit */ | 15 | #define _X 0x40 /* hex digit */ |
| 16 | #define _SP 0x80 /* hard space (0x20) */ | 16 | #define _SP 0x80 /* hard space (0x20) */ |
| 17 | 17 | ||
| 18 | extern unsigned char _ctype[]; | 18 | extern const unsigned char _ctype[]; |
| 19 | 19 | ||
| 20 | #define __ismask(x) (_ctype[(int)(unsigned char)(x)]) | 20 | #define __ismask(x) (_ctype[(int)(unsigned char)(x)]) |
| 21 | 21 | ||
| @@ -27,6 +27,7 @@ extern unsigned char _ctype[]; | |||
| 27 | #define islower(c) ((__ismask(c)&(_L)) != 0) | 27 | #define islower(c) ((__ismask(c)&(_L)) != 0) |
| 28 | #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) | 28 | #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) |
| 29 | #define ispunct(c) ((__ismask(c)&(_P)) != 0) | 29 | #define ispunct(c) ((__ismask(c)&(_P)) != 0) |
| 30 | /* Note: isspace() must return false for %NUL-terminator */ | ||
| 30 | #define isspace(c) ((__ismask(c)&(_S)) != 0) | 31 | #define isspace(c) ((__ismask(c)&(_S)) != 0) |
| 31 | #define isupper(c) ((__ismask(c)&(_U)) != 0) | 32 | #define isupper(c) ((__ismask(c)&(_U)) != 0) |
| 32 | #define isxdigit(c) ((__ismask(c)&(_D|_X)) != 0) | 33 | #define isxdigit(c) ((__ismask(c)&(_D|_X)) != 0) |
diff --git a/include/linux/device.h b/include/linux/device.h index 2ea3e4921812..2a73d9bcbc9c 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
| @@ -558,7 +558,7 @@ extern void wait_for_device_probe(void); | |||
| 558 | #ifdef CONFIG_DEVTMPFS | 558 | #ifdef CONFIG_DEVTMPFS |
| 559 | extern int devtmpfs_create_node(struct device *dev); | 559 | extern int devtmpfs_create_node(struct device *dev); |
| 560 | extern int devtmpfs_delete_node(struct device *dev); | 560 | extern int devtmpfs_delete_node(struct device *dev); |
| 561 | extern int devtmpfs_mount(const char *mountpoint); | 561 | extern int devtmpfs_mount(const char *mntdir); |
| 562 | #else | 562 | #else |
| 563 | static inline int devtmpfs_create_node(struct device *dev) { return 0; } | 563 | static inline int devtmpfs_create_node(struct device *dev) { return 0; } |
| 564 | static inline int devtmpfs_delete_node(struct device *dev) { return 0; } | 564 | static inline int devtmpfs_delete_node(struct device *dev) { return 0; } |
diff --git a/include/linux/dynamic_debug.h b/include/linux/dynamic_debug.h index a0d9422a1569..f8c2e1767500 100644 --- a/include/linux/dynamic_debug.h +++ b/include/linux/dynamic_debug.h | |||
| @@ -57,8 +57,7 @@ extern int ddebug_remove_module(char *mod_name); | |||
| 57 | { KBUILD_MODNAME, __func__, __FILE__, fmt, DEBUG_HASH, \ | 57 | { KBUILD_MODNAME, __func__, __FILE__, fmt, DEBUG_HASH, \ |
| 58 | DEBUG_HASH2, __LINE__, _DPRINTK_FLAGS_DEFAULT }; \ | 58 | DEBUG_HASH2, __LINE__, _DPRINTK_FLAGS_DEFAULT }; \ |
| 59 | if (__dynamic_dbg_enabled(descriptor)) \ | 59 | if (__dynamic_dbg_enabled(descriptor)) \ |
| 60 | printk(KERN_DEBUG KBUILD_MODNAME ":" pr_fmt(fmt), \ | 60 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); \ |
| 61 | ##__VA_ARGS__); \ | ||
| 62 | } while (0) | 61 | } while (0) |
| 63 | 62 | ||
| 64 | 63 | ||
| @@ -69,9 +68,7 @@ extern int ddebug_remove_module(char *mod_name); | |||
| 69 | { KBUILD_MODNAME, __func__, __FILE__, fmt, DEBUG_HASH, \ | 68 | { KBUILD_MODNAME, __func__, __FILE__, fmt, DEBUG_HASH, \ |
| 70 | DEBUG_HASH2, __LINE__, _DPRINTK_FLAGS_DEFAULT }; \ | 69 | DEBUG_HASH2, __LINE__, _DPRINTK_FLAGS_DEFAULT }; \ |
| 71 | if (__dynamic_dbg_enabled(descriptor)) \ | 70 | if (__dynamic_dbg_enabled(descriptor)) \ |
| 72 | dev_printk(KERN_DEBUG, dev, \ | 71 | dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__); \ |
| 73 | KBUILD_MODNAME ": " fmt, \ | ||
| 74 | ##__VA_ARGS__); \ | ||
| 75 | } while (0) | 72 | } while (0) |
| 76 | 73 | ||
| 77 | #else | 74 | #else |
| @@ -81,8 +78,10 @@ static inline int ddebug_remove_module(char *mod) | |||
| 81 | return 0; | 78 | return 0; |
| 82 | } | 79 | } |
| 83 | 80 | ||
| 84 | #define dynamic_pr_debug(fmt, ...) do { } while (0) | 81 | #define dynamic_pr_debug(fmt, ...) \ |
| 85 | #define dynamic_dev_dbg(dev, format, ...) do { } while (0) | 82 | do { if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); } while (0) |
| 83 | #define dynamic_dev_dbg(dev, format, ...) \ | ||
| 84 | do { if (0) dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__); } while (0) | ||
| 86 | #endif | 85 | #endif |
| 87 | 86 | ||
| 88 | #endif | 87 | #endif |
diff --git a/include/linux/efi.h b/include/linux/efi.h index ce4581fbc08b..fb737bc19a8c 100644 --- a/include/linux/efi.h +++ b/include/linux/efi.h | |||
| @@ -280,11 +280,7 @@ efi_guidcmp (efi_guid_t left, efi_guid_t right) | |||
| 280 | static inline char * | 280 | static inline char * |
| 281 | efi_guid_unparse(efi_guid_t *guid, char *out) | 281 | efi_guid_unparse(efi_guid_t *guid, char *out) |
| 282 | { | 282 | { |
| 283 | sprintf(out, "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x", | 283 | sprintf(out, "%pUl", guid->b); |
| 284 | guid->b[3], guid->b[2], guid->b[1], guid->b[0], | ||
| 285 | guid->b[5], guid->b[4], guid->b[7], guid->b[6], | ||
| 286 | guid->b[8], guid->b[9], guid->b[10], guid->b[11], | ||
| 287 | guid->b[12], guid->b[13], guid->b[14], guid->b[15]); | ||
| 288 | return out; | 284 | return out; |
| 289 | } | 285 | } |
| 290 | 286 | ||
diff --git a/include/linux/err.h b/include/linux/err.h index ec87f3142bf3..1b12642636c7 100644 --- a/include/linux/err.h +++ b/include/linux/err.h | |||
| @@ -34,6 +34,11 @@ static inline long IS_ERR(const void *ptr) | |||
| 34 | return IS_ERR_VALUE((unsigned long)ptr); | 34 | return IS_ERR_VALUE((unsigned long)ptr); |
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | static inline long IS_ERR_OR_NULL(const void *ptr) | ||
| 38 | { | ||
| 39 | return !ptr || IS_ERR_VALUE((unsigned long)ptr); | ||
| 40 | } | ||
| 41 | |||
| 37 | /** | 42 | /** |
| 38 | * ERR_CAST - Explicitly cast an error-valued pointer to another pointer type | 43 | * ERR_CAST - Explicitly cast an error-valued pointer to another pointer type |
| 39 | * @ptr: The pointer to cast. | 44 | * @ptr: The pointer to cast. |
diff --git a/include/linux/ext2_fs.h b/include/linux/ext2_fs.h index 121720d74e15..2dfa7076e8b6 100644 --- a/include/linux/ext2_fs.h +++ b/include/linux/ext2_fs.h | |||
| @@ -565,14 +565,14 @@ struct ext2_dir_entry_2 { | |||
| 565 | * other bits are reserved for now. | 565 | * other bits are reserved for now. |
| 566 | */ | 566 | */ |
| 567 | enum { | 567 | enum { |
| 568 | EXT2_FT_UNKNOWN, | 568 | EXT2_FT_UNKNOWN = 0, |
| 569 | EXT2_FT_REG_FILE, | 569 | EXT2_FT_REG_FILE = 1, |
| 570 | EXT2_FT_DIR, | 570 | EXT2_FT_DIR = 2, |
| 571 | EXT2_FT_CHRDEV, | 571 | EXT2_FT_CHRDEV = 3, |
| 572 | EXT2_FT_BLKDEV, | 572 | EXT2_FT_BLKDEV = 4, |
| 573 | EXT2_FT_FIFO, | 573 | EXT2_FT_FIFO = 5, |
| 574 | EXT2_FT_SOCK, | 574 | EXT2_FT_SOCK = 6, |
| 575 | EXT2_FT_SYMLINK, | 575 | EXT2_FT_SYMLINK = 7, |
| 576 | EXT2_FT_MAX | 576 | EXT2_FT_MAX |
| 577 | }; | 577 | }; |
| 578 | 578 | ||
diff --git a/include/linux/ext3_fs.h b/include/linux/ext3_fs.h index 7499b3667798..6b049030fbe6 100644 --- a/include/linux/ext3_fs.h +++ b/include/linux/ext3_fs.h | |||
| @@ -918,6 +918,8 @@ extern void ext3_abort (struct super_block *, const char *, const char *, ...) | |||
| 918 | __attribute__ ((format (printf, 3, 4))); | 918 | __attribute__ ((format (printf, 3, 4))); |
| 919 | extern void ext3_warning (struct super_block *, const char *, const char *, ...) | 919 | extern void ext3_warning (struct super_block *, const char *, const char *, ...) |
| 920 | __attribute__ ((format (printf, 3, 4))); | 920 | __attribute__ ((format (printf, 3, 4))); |
| 921 | extern void ext3_msg(struct super_block *, const char *, const char *, ...) | ||
| 922 | __attribute__ ((format (printf, 3, 4))); | ||
| 921 | extern void ext3_update_dynamic_rev (struct super_block *sb); | 923 | extern void ext3_update_dynamic_rev (struct super_block *sb); |
| 922 | 924 | ||
| 923 | #define ext3_std_error(sb, errno) \ | 925 | #define ext3_std_error(sb, errno) \ |
diff --git a/include/linux/firmware.h b/include/linux/firmware.h index d31544628436..043811f0d277 100644 --- a/include/linux/firmware.h +++ b/include/linux/firmware.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | #include <linux/module.h> | 4 | #include <linux/module.h> |
| 5 | #include <linux/types.h> | 5 | #include <linux/types.h> |
| 6 | #include <linux/compiler.h> | 6 | #include <linux/compiler.h> |
| 7 | #include <linux/gfp.h> | ||
| 7 | 8 | ||
| 8 | #define FW_ACTION_NOHOTPLUG 0 | 9 | #define FW_ACTION_NOHOTPLUG 0 |
| 9 | #define FW_ACTION_HOTPLUG 1 | 10 | #define FW_ACTION_HOTPLUG 1 |
| @@ -38,7 +39,7 @@ int request_firmware(const struct firmware **fw, const char *name, | |||
| 38 | struct device *device); | 39 | struct device *device); |
| 39 | int request_firmware_nowait( | 40 | int request_firmware_nowait( |
| 40 | struct module *module, int uevent, | 41 | struct module *module, int uevent, |
| 41 | const char *name, struct device *device, void *context, | 42 | const char *name, struct device *device, gfp_t gfp, void *context, |
| 42 | void (*cont)(const struct firmware *fw, void *context)); | 43 | void (*cont)(const struct firmware *fw, void *context)); |
| 43 | 44 | ||
| 44 | void release_firmware(const struct firmware *fw); | 45 | void release_firmware(const struct firmware *fw); |
| @@ -51,7 +52,7 @@ static inline int request_firmware(const struct firmware **fw, | |||
| 51 | } | 52 | } |
| 52 | static inline int request_firmware_nowait( | 53 | static inline int request_firmware_nowait( |
| 53 | struct module *module, int uevent, | 54 | struct module *module, int uevent, |
| 54 | const char *name, struct device *device, void *context, | 55 | const char *name, struct device *device, gfp_t gfp, void *context, |
| 55 | void (*cont)(const struct firmware *fw, void *context)) | 56 | void (*cont)(const struct firmware *fw, void *context)) |
| 56 | { | 57 | { |
| 57 | return -EINVAL; | 58 | return -EINVAL; |
diff --git a/include/linux/fs.h b/include/linux/fs.h index 891f7d642e5c..a057f48eb156 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -2091,8 +2091,6 @@ extern int filemap_fdatawait_range(struct address_space *, loff_t lstart, | |||
| 2091 | extern int filemap_write_and_wait(struct address_space *mapping); | 2091 | extern int filemap_write_and_wait(struct address_space *mapping); |
| 2092 | extern int filemap_write_and_wait_range(struct address_space *mapping, | 2092 | extern int filemap_write_and_wait_range(struct address_space *mapping, |
| 2093 | loff_t lstart, loff_t lend); | 2093 | loff_t lstart, loff_t lend); |
| 2094 | extern int wait_on_page_writeback_range(struct address_space *mapping, | ||
| 2095 | pgoff_t start, pgoff_t end); | ||
| 2096 | extern int __filemap_fdatawrite_range(struct address_space *mapping, | 2094 | extern int __filemap_fdatawrite_range(struct address_space *mapping, |
| 2097 | loff_t start, loff_t end, int sync_mode); | 2095 | loff_t start, loff_t end, int sync_mode); |
| 2098 | extern int filemap_fdatawrite_range(struct address_space *mapping, | 2096 | extern int filemap_fdatawrite_range(struct address_space *mapping, |
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index 43fc95d822d5..28e33fea5107 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h | |||
| @@ -74,7 +74,12 @@ struct spi_device; | |||
| 74 | struct fsl_spi_platform_data { | 74 | struct fsl_spi_platform_data { |
| 75 | u32 initial_spmode; /* initial SPMODE value */ | 75 | u32 initial_spmode; /* initial SPMODE value */ |
| 76 | s16 bus_num; | 76 | s16 bus_num; |
| 77 | bool qe_mode; | 77 | unsigned int flags; |
| 78 | #define SPI_QE_CPU_MODE (1 << 0) /* QE CPU ("PIO") mode */ | ||
| 79 | #define SPI_CPM_MODE (1 << 1) /* CPM/QE ("DMA") mode */ | ||
| 80 | #define SPI_CPM1 (1 << 2) /* SPI unit is in CPM1 block */ | ||
| 81 | #define SPI_CPM2 (1 << 3) /* SPI unit is in CPM2 block */ | ||
| 82 | #define SPI_QE (1 << 4) /* SPI unit is in QE block */ | ||
| 78 | /* board specific information */ | 83 | /* board specific information */ |
| 79 | u16 max_chipselect; | 84 | u16 max_chipselect; |
| 80 | void (*cs_control)(struct spi_device *spi, bool on); | 85 | void (*cs_control)(struct spi_device *spi, bool on); |
| @@ -90,6 +95,10 @@ struct mpc8xx_pcmcia_ops { | |||
| 90 | * lead to a deep sleep (i.e. power removed from the core, | 95 | * lead to a deep sleep (i.e. power removed from the core, |
| 91 | * instead of just the clock). | 96 | * instead of just the clock). |
| 92 | */ | 97 | */ |
| 98 | #if defined(CONFIG_PPC_83xx) && defined(CONFIG_SUSPEND) | ||
| 93 | int fsl_deep_sleep(void); | 99 | int fsl_deep_sleep(void); |
| 100 | #else | ||
| 101 | static inline int fsl_deep_sleep(void) { return 0; } | ||
| 102 | #endif | ||
| 94 | 103 | ||
| 95 | #endif /* _FSL_DEVICE_H_ */ | 104 | #endif /* _FSL_DEVICE_H_ */ |
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index 47bbdf9c38d0..38f8d6553831 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h | |||
| @@ -57,6 +57,7 @@ struct trace_iterator { | |||
| 57 | /* The below is zeroed out in pipe_read */ | 57 | /* The below is zeroed out in pipe_read */ |
| 58 | struct trace_seq seq; | 58 | struct trace_seq seq; |
| 59 | struct trace_entry *ent; | 59 | struct trace_entry *ent; |
| 60 | int leftover; | ||
| 60 | int cpu; | 61 | int cpu; |
| 61 | u64 ts; | 62 | u64 ts; |
| 62 | 63 | ||
diff --git a/include/linux/gigaset_dev.h b/include/linux/gigaset_dev.h index 5dc4a316ca37..258ba82937e7 100644 --- a/include/linux/gigaset_dev.h +++ b/include/linux/gigaset_dev.h | |||
| @@ -16,15 +16,23 @@ | |||
| 16 | 16 | ||
| 17 | #include <linux/ioctl.h> | 17 | #include <linux/ioctl.h> |
| 18 | 18 | ||
| 19 | /* The magic IOCTL value for this interface. */ | ||
| 19 | #define GIGASET_IOCTL 0x47 | 20 | #define GIGASET_IOCTL 0x47 |
| 20 | 21 | ||
| 21 | #define GIGVER_DRIVER 0 | 22 | /* enable/disable device control via character device (lock out ISDN subsys) */ |
| 22 | #define GIGVER_COMPAT 1 | 23 | #define GIGASET_REDIR _IOWR(GIGASET_IOCTL, 0, int) |
| 23 | #define GIGVER_FWBASE 2 | ||
| 24 | 24 | ||
| 25 | #define GIGASET_REDIR _IOWR (GIGASET_IOCTL, 0, int) | 25 | /* enable adapter configuration mode (M10x only) */ |
| 26 | #define GIGASET_CONFIG _IOWR (GIGASET_IOCTL, 1, int) | 26 | #define GIGASET_CONFIG _IOWR(GIGASET_IOCTL, 1, int) |
| 27 | #define GIGASET_BRKCHARS _IOW (GIGASET_IOCTL, 2, unsigned char[6]) //FIXME [6] okay? | 27 | |
| 28 | #define GIGASET_VERSION _IOWR (GIGASET_IOCTL, 3, unsigned[4]) | 28 | /* set break characters (M105 only) */ |
| 29 | #define GIGASET_BRKCHARS _IOW(GIGASET_IOCTL, 2, unsigned char[6]) | ||
| 30 | |||
| 31 | /* get version information selected by arg[0] */ | ||
| 32 | #define GIGASET_VERSION _IOWR(GIGASET_IOCTL, 3, unsigned[4]) | ||
| 33 | /* values for GIGASET_VERSION arg[0] */ | ||
| 34 | #define GIGVER_DRIVER 0 /* get driver version */ | ||
| 35 | #define GIGVER_COMPAT 1 /* get interface compatibility version */ | ||
| 36 | #define GIGVER_FWBASE 2 /* get base station firmware version */ | ||
| 29 | 37 | ||
| 30 | #endif | 38 | #endif |
diff --git a/include/linux/hayesesp.h b/include/linux/hayesesp.h deleted file mode 100644 index 92b08cfe4a75..000000000000 --- a/include/linux/hayesesp.h +++ /dev/null | |||
| @@ -1,114 +0,0 @@ | |||
| 1 | #ifndef HAYESESP_H | ||
| 2 | #define HAYESESP_H | ||
| 3 | |||
| 4 | struct hayes_esp_config { | ||
| 5 | short flow_on; | ||
| 6 | short flow_off; | ||
| 7 | short rx_trigger; | ||
| 8 | short tx_trigger; | ||
| 9 | short pio_threshold; | ||
| 10 | unsigned char rx_timeout; | ||
| 11 | char dma_channel; | ||
| 12 | }; | ||
| 13 | |||
| 14 | #ifdef __KERNEL__ | ||
| 15 | |||
| 16 | #define ESP_DMA_CHANNEL 0 | ||
| 17 | #define ESP_RX_TRIGGER 768 | ||
| 18 | #define ESP_TX_TRIGGER 768 | ||
| 19 | #define ESP_FLOW_OFF 1016 | ||
| 20 | #define ESP_FLOW_ON 944 | ||
| 21 | #define ESP_RX_TMOUT 128 | ||
| 22 | #define ESP_PIO_THRESHOLD 32 | ||
| 23 | |||
| 24 | #define ESP_IN_MAJOR 57 /* major dev # for dial in */ | ||
| 25 | #define ESP_OUT_MAJOR 58 /* major dev # for dial out */ | ||
| 26 | #define ESPC_SCALE 3 | ||
| 27 | #define UART_ESI_BASE 0x00 | ||
| 28 | #define UART_ESI_SID 0x01 | ||
| 29 | #define UART_ESI_RX 0x02 | ||
| 30 | #define UART_ESI_TX 0x02 | ||
| 31 | #define UART_ESI_CMD1 0x04 | ||
| 32 | #define UART_ESI_CMD2 0x05 | ||
| 33 | #define UART_ESI_STAT1 0x04 | ||
| 34 | #define UART_ESI_STAT2 0x05 | ||
| 35 | #define UART_ESI_RWS 0x07 | ||
| 36 | |||
| 37 | #define UART_IER_DMA_TMOUT 0x80 | ||
| 38 | #define UART_IER_DMA_TC 0x08 | ||
| 39 | |||
| 40 | #define ESI_SET_IRQ 0x04 | ||
| 41 | #define ESI_SET_DMA_TMOUT 0x05 | ||
| 42 | #define ESI_SET_SRV_MASK 0x06 | ||
| 43 | #define ESI_SET_ERR_MASK 0x07 | ||
| 44 | #define ESI_SET_FLOW_CNTL 0x08 | ||
| 45 | #define ESI_SET_FLOW_CHARS 0x09 | ||
| 46 | #define ESI_SET_FLOW_LVL 0x0a | ||
| 47 | #define ESI_SET_TRIGGER 0x0b | ||
| 48 | #define ESI_SET_RX_TIMEOUT 0x0c | ||
| 49 | #define ESI_SET_FLOW_TMOUT 0x0d | ||
| 50 | #define ESI_WRITE_UART 0x0e | ||
| 51 | #define ESI_READ_UART 0x0f | ||
| 52 | #define ESI_SET_MODE 0x10 | ||
| 53 | #define ESI_GET_ERR_STAT 0x12 | ||
| 54 | #define ESI_GET_UART_STAT 0x13 | ||
| 55 | #define ESI_GET_RX_AVAIL 0x14 | ||
| 56 | #define ESI_GET_TX_AVAIL 0x15 | ||
| 57 | #define ESI_START_DMA_RX 0x16 | ||
| 58 | #define ESI_START_DMA_TX 0x17 | ||
| 59 | #define ESI_ISSUE_BREAK 0x1a | ||
| 60 | #define ESI_FLUSH_RX 0x1b | ||
| 61 | #define ESI_FLUSH_TX 0x1c | ||
| 62 | #define ESI_SET_BAUD 0x1d | ||
| 63 | #define ESI_SET_ENH_IRQ 0x1f | ||
| 64 | #define ESI_SET_REINTR 0x20 | ||
| 65 | #define ESI_SET_PRESCALAR 0x23 | ||
| 66 | #define ESI_NO_COMMAND 0xff | ||
| 67 | |||
| 68 | #define ESP_STAT_RX_TIMEOUT 0x01 | ||
| 69 | #define ESP_STAT_DMA_RX 0x02 | ||
| 70 | #define ESP_STAT_DMA_TX 0x04 | ||
| 71 | #define ESP_STAT_NEVER_DMA 0x08 | ||
| 72 | #define ESP_STAT_USE_PIO 0x10 | ||
| 73 | |||
| 74 | #define ESP_MAGIC 0x53ee | ||
| 75 | #define ESP_XMIT_SIZE 4096 | ||
| 76 | |||
| 77 | struct esp_struct { | ||
| 78 | int magic; | ||
| 79 | struct tty_port port; | ||
| 80 | spinlock_t lock; | ||
| 81 | int io_port; | ||
| 82 | int irq; | ||
| 83 | int read_status_mask; | ||
| 84 | int ignore_status_mask; | ||
| 85 | int timeout; | ||
| 86 | int stat_flags; | ||
| 87 | int custom_divisor; | ||
| 88 | int close_delay; | ||
| 89 | unsigned short closing_wait; | ||
| 90 | unsigned short closing_wait2; | ||
| 91 | int IER; /* Interrupt Enable Register */ | ||
| 92 | int MCR; /* Modem control register */ | ||
| 93 | unsigned long last_active; | ||
| 94 | int line; | ||
| 95 | unsigned char *xmit_buf; | ||
| 96 | int xmit_head; | ||
| 97 | int xmit_tail; | ||
| 98 | int xmit_cnt; | ||
| 99 | wait_queue_head_t break_wait; | ||
| 100 | struct async_icount icount; /* kernel counters for the 4 input interrupts */ | ||
| 101 | struct hayes_esp_config config; /* port configuration */ | ||
| 102 | struct esp_struct *next_port; /* For the linked list */ | ||
| 103 | }; | ||
| 104 | |||
| 105 | struct esp_pio_buffer { | ||
| 106 | unsigned char data[1024]; | ||
| 107 | struct esp_pio_buffer *next; | ||
| 108 | }; | ||
| 109 | |||
| 110 | #endif /* __KERNEL__ */ | ||
| 111 | |||
| 112 | |||
| 113 | #endif /* ESP_H */ | ||
| 114 | |||
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index 9bace4b9f4fe..af634e95871d 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
| @@ -162,10 +162,11 @@ struct hrtimer_clock_base { | |||
| 162 | * @expires_next: absolute time of the next event which was scheduled | 162 | * @expires_next: absolute time of the next event which was scheduled |
| 163 | * via clock_set_next_event() | 163 | * via clock_set_next_event() |
| 164 | * @hres_active: State of high resolution mode | 164 | * @hres_active: State of high resolution mode |
| 165 | * @check_clocks: Indictator, when set evaluate time source and clock | 165 | * @hang_detected: The last hrtimer interrupt detected a hang |
| 166 | * event devices whether high resolution mode can be | 166 | * @nr_events: Total number of hrtimer interrupt events |
| 167 | * activated. | 167 | * @nr_retries: Total number of hrtimer interrupt retries |
| 168 | * @nr_events: Total number of timer interrupt events | 168 | * @nr_hangs: Total number of hrtimer interrupt hangs |
| 169 | * @max_hang_time: Maximum time spent in hrtimer_interrupt | ||
| 169 | */ | 170 | */ |
| 170 | struct hrtimer_cpu_base { | 171 | struct hrtimer_cpu_base { |
| 171 | spinlock_t lock; | 172 | spinlock_t lock; |
| @@ -173,7 +174,11 @@ struct hrtimer_cpu_base { | |||
| 173 | #ifdef CONFIG_HIGH_RES_TIMERS | 174 | #ifdef CONFIG_HIGH_RES_TIMERS |
| 174 | ktime_t expires_next; | 175 | ktime_t expires_next; |
| 175 | int hres_active; | 176 | int hres_active; |
| 177 | int hang_detected; | ||
| 176 | unsigned long nr_events; | 178 | unsigned long nr_events; |
| 179 | unsigned long nr_retries; | ||
| 180 | unsigned long nr_hangs; | ||
| 181 | ktime_t max_hang_time; | ||
| 177 | #endif | 182 | #endif |
| 178 | }; | 183 | }; |
| 179 | 184 | ||
| @@ -435,47 +440,4 @@ extern u64 ktime_divns(const ktime_t kt, s64 div); | |||
| 435 | /* Show pending timers: */ | 440 | /* Show pending timers: */ |
| 436 | extern void sysrq_timer_list_show(void); | 441 | extern void sysrq_timer_list_show(void); |
| 437 | 442 | ||
| 438 | /* | ||
| 439 | * Timer-statistics info: | ||
| 440 | */ | ||
| 441 | #ifdef CONFIG_TIMER_STATS | ||
| 442 | |||
| 443 | extern void timer_stats_update_stats(void *timer, pid_t pid, void *startf, | ||
| 444 | void *timerf, char *comm, | ||
| 445 | unsigned int timer_flag); | ||
| 446 | |||
| 447 | static inline void timer_stats_account_hrtimer(struct hrtimer *timer) | ||
| 448 | { | ||
| 449 | if (likely(!timer_stats_active)) | ||
| 450 | return; | ||
| 451 | timer_stats_update_stats(timer, timer->start_pid, timer->start_site, | ||
| 452 | timer->function, timer->start_comm, 0); | ||
| 453 | } | ||
| 454 | |||
| 455 | extern void __timer_stats_hrtimer_set_start_info(struct hrtimer *timer, | ||
| 456 | void *addr); | ||
| 457 | |||
| 458 | static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer) | ||
| 459 | { | ||
| 460 | __timer_stats_hrtimer_set_start_info(timer, __builtin_return_address(0)); | ||
| 461 | } | ||
| 462 | |||
| 463 | static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer) | ||
| 464 | { | ||
| 465 | timer->start_site = NULL; | ||
| 466 | } | ||
| 467 | #else | ||
| 468 | static inline void timer_stats_account_hrtimer(struct hrtimer *timer) | ||
| 469 | { | ||
| 470 | } | ||
| 471 | |||
| 472 | static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer) | ||
| 473 | { | ||
| 474 | } | ||
| 475 | |||
| 476 | static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer) | ||
| 477 | { | ||
| 478 | } | ||
| 479 | #endif | ||
| 480 | |||
| 481 | #endif | 443 | #endif |
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index 41a59afc70fa..78b4bc64c006 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h | |||
| @@ -23,6 +23,12 @@ void reset_vma_resv_huge_pages(struct vm_area_struct *vma); | |||
| 23 | int hugetlb_sysctl_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *); | 23 | int hugetlb_sysctl_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *); |
| 24 | int hugetlb_overcommit_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *); | 24 | int hugetlb_overcommit_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *); |
| 25 | int hugetlb_treat_movable_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *); | 25 | int hugetlb_treat_movable_handler(struct ctl_table *, int, void __user *, size_t *, loff_t *); |
| 26 | |||
| 27 | #ifdef CONFIG_NUMA | ||
| 28 | int hugetlb_mempolicy_sysctl_handler(struct ctl_table *, int, | ||
| 29 | void __user *, size_t *, loff_t *); | ||
| 30 | #endif | ||
| 31 | |||
| 26 | int copy_hugetlb_page_range(struct mm_struct *, struct mm_struct *, struct vm_area_struct *); | 32 | int copy_hugetlb_page_range(struct mm_struct *, struct mm_struct *, struct vm_area_struct *); |
| 27 | int follow_hugetlb_page(struct mm_struct *, struct vm_area_struct *, | 33 | int follow_hugetlb_page(struct mm_struct *, struct vm_area_struct *, |
| 28 | struct page **, struct vm_area_struct **, | 34 | struct page **, struct vm_area_struct **, |
diff --git a/include/linux/hw_breakpoint.h b/include/linux/hw_breakpoint.h index a03daed08c59..41235c93e4e9 100644 --- a/include/linux/hw_breakpoint.h +++ b/include/linux/hw_breakpoint.h | |||
| @@ -20,19 +20,18 @@ enum { | |||
| 20 | 20 | ||
| 21 | #ifdef CONFIG_HAVE_HW_BREAKPOINT | 21 | #ifdef CONFIG_HAVE_HW_BREAKPOINT |
| 22 | 22 | ||
| 23 | /* As it's for in-kernel or ptrace use, we want it to be pinned */ | ||
| 24 | #define DEFINE_BREAKPOINT_ATTR(name) \ | ||
| 25 | struct perf_event_attr name = { \ | ||
| 26 | .type = PERF_TYPE_BREAKPOINT, \ | ||
| 27 | .size = sizeof(name), \ | ||
| 28 | .pinned = 1, \ | ||
| 29 | }; | ||
| 30 | |||
| 31 | static inline void hw_breakpoint_init(struct perf_event_attr *attr) | 23 | static inline void hw_breakpoint_init(struct perf_event_attr *attr) |
| 32 | { | 24 | { |
| 25 | memset(attr, 0, sizeof(*attr)); | ||
| 26 | |||
| 33 | attr->type = PERF_TYPE_BREAKPOINT; | 27 | attr->type = PERF_TYPE_BREAKPOINT; |
| 34 | attr->size = sizeof(*attr); | 28 | attr->size = sizeof(*attr); |
| 29 | /* | ||
| 30 | * As it's for in-kernel or ptrace use, we want it to be pinned | ||
| 31 | * and to call its callback every hits. | ||
| 32 | */ | ||
| 35 | attr->pinned = 1; | 33 | attr->pinned = 1; |
| 34 | attr->sample_period = 1; | ||
| 36 | } | 35 | } |
| 37 | 36 | ||
| 38 | static inline unsigned long hw_breakpoint_addr(struct perf_event *bp) | 37 | static inline unsigned long hw_breakpoint_addr(struct perf_event *bp) |
| @@ -52,27 +51,24 @@ static inline int hw_breakpoint_len(struct perf_event *bp) | |||
| 52 | 51 | ||
| 53 | extern struct perf_event * | 52 | extern struct perf_event * |
| 54 | register_user_hw_breakpoint(struct perf_event_attr *attr, | 53 | register_user_hw_breakpoint(struct perf_event_attr *attr, |
| 55 | perf_callback_t triggered, | 54 | perf_overflow_handler_t triggered, |
| 56 | struct task_struct *tsk); | 55 | struct task_struct *tsk); |
| 57 | 56 | ||
| 58 | /* FIXME: only change from the attr, and don't unregister */ | 57 | /* FIXME: only change from the attr, and don't unregister */ |
| 59 | extern struct perf_event * | 58 | extern int |
| 60 | modify_user_hw_breakpoint(struct perf_event *bp, | 59 | modify_user_hw_breakpoint(struct perf_event *bp, struct perf_event_attr *attr); |
| 61 | struct perf_event_attr *attr, | ||
| 62 | perf_callback_t triggered, | ||
| 63 | struct task_struct *tsk); | ||
| 64 | 60 | ||
| 65 | /* | 61 | /* |
| 66 | * Kernel breakpoints are not associated with any particular thread. | 62 | * Kernel breakpoints are not associated with any particular thread. |
| 67 | */ | 63 | */ |
| 68 | extern struct perf_event * | 64 | extern struct perf_event * |
| 69 | register_wide_hw_breakpoint_cpu(struct perf_event_attr *attr, | 65 | register_wide_hw_breakpoint_cpu(struct perf_event_attr *attr, |
| 70 | perf_callback_t triggered, | 66 | perf_overflow_handler_t triggered, |
| 71 | int cpu); | 67 | int cpu); |
| 72 | 68 | ||
| 73 | extern struct perf_event ** | 69 | extern struct perf_event ** |
| 74 | register_wide_hw_breakpoint(struct perf_event_attr *attr, | 70 | register_wide_hw_breakpoint(struct perf_event_attr *attr, |
| 75 | perf_callback_t triggered); | 71 | perf_overflow_handler_t triggered); |
| 76 | 72 | ||
| 77 | extern int register_perf_hw_breakpoint(struct perf_event *bp); | 73 | extern int register_perf_hw_breakpoint(struct perf_event *bp); |
| 78 | extern int __register_perf_hw_breakpoint(struct perf_event *bp); | 74 | extern int __register_perf_hw_breakpoint(struct perf_event *bp); |
| @@ -93,20 +89,18 @@ static inline struct arch_hw_breakpoint *counter_arch_bp(struct perf_event *bp) | |||
| 93 | 89 | ||
| 94 | static inline struct perf_event * | 90 | static inline struct perf_event * |
| 95 | register_user_hw_breakpoint(struct perf_event_attr *attr, | 91 | register_user_hw_breakpoint(struct perf_event_attr *attr, |
| 96 | perf_callback_t triggered, | 92 | perf_overflow_handler_t triggered, |
| 97 | struct task_struct *tsk) { return NULL; } | 93 | struct task_struct *tsk) { return NULL; } |
| 98 | static inline struct perf_event * | 94 | static inline int |
| 99 | modify_user_hw_breakpoint(struct perf_event *bp, | 95 | modify_user_hw_breakpoint(struct perf_event *bp, |
| 100 | struct perf_event_attr *attr, | 96 | struct perf_event_attr *attr) { return -ENOSYS; } |
| 101 | perf_callback_t triggered, | ||
| 102 | struct task_struct *tsk) { return NULL; } | ||
| 103 | static inline struct perf_event * | 97 | static inline struct perf_event * |
| 104 | register_wide_hw_breakpoint_cpu(struct perf_event_attr *attr, | 98 | register_wide_hw_breakpoint_cpu(struct perf_event_attr *attr, |
| 105 | perf_callback_t triggered, | 99 | perf_overflow_handler_t triggered, |
| 106 | int cpu) { return NULL; } | 100 | int cpu) { return NULL; } |
| 107 | static inline struct perf_event ** | 101 | static inline struct perf_event ** |
| 108 | register_wide_hw_breakpoint(struct perf_event_attr *attr, | 102 | register_wide_hw_breakpoint(struct perf_event_attr *attr, |
| 109 | perf_callback_t triggered) { return NULL; } | 103 | perf_overflow_handler_t triggered) { return NULL; } |
| 110 | static inline int | 104 | static inline int |
| 111 | register_perf_hw_breakpoint(struct perf_event *bp) { return -ENOSYS; } | 105 | register_perf_hw_breakpoint(struct perf_event *bp) { return -ENOSYS; } |
| 112 | static inline int | 106 | static inline int |
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index 419ab546b266..02fc617782ef 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
| @@ -110,7 +110,7 @@ extern s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client, | |||
| 110 | * @driver: Device driver model driver | 110 | * @driver: Device driver model driver |
| 111 | * @id_table: List of I2C devices supported by this driver | 111 | * @id_table: List of I2C devices supported by this driver |
| 112 | * @detect: Callback for device detection | 112 | * @detect: Callback for device detection |
| 113 | * @address_data: The I2C addresses to probe (for detect) | 113 | * @address_list: The I2C addresses to probe (for detect) |
| 114 | * @clients: List of detected clients we created (for i2c-core use only) | 114 | * @clients: List of detected clients we created (for i2c-core use only) |
| 115 | * | 115 | * |
| 116 | * The driver.owner field should be set to the module owner of this driver. | 116 | * The driver.owner field should be set to the module owner of this driver. |
| @@ -161,8 +161,8 @@ struct i2c_driver { | |||
| 161 | const struct i2c_device_id *id_table; | 161 | const struct i2c_device_id *id_table; |
| 162 | 162 | ||
| 163 | /* Device detection callback for automatic device creation */ | 163 | /* Device detection callback for automatic device creation */ |
| 164 | int (*detect)(struct i2c_client *, int kind, struct i2c_board_info *); | 164 | int (*detect)(struct i2c_client *, struct i2c_board_info *); |
| 165 | const struct i2c_client_address_data *address_data; | 165 | const unsigned short *address_list; |
| 166 | struct list_head clients; | 166 | struct list_head clients; |
| 167 | }; | 167 | }; |
| 168 | #define to_i2c_driver(d) container_of(d, struct i2c_driver, driver) | 168 | #define to_i2c_driver(d) container_of(d, struct i2c_driver, driver) |
| @@ -391,14 +391,6 @@ static inline void i2c_unlock_adapter(struct i2c_adapter *adapter) | |||
| 391 | #define I2C_CLASS_DDC (1<<3) /* DDC bus on graphics adapters */ | 391 | #define I2C_CLASS_DDC (1<<3) /* DDC bus on graphics adapters */ |
| 392 | #define I2C_CLASS_SPD (1<<7) /* SPD EEPROMs and similar */ | 392 | #define I2C_CLASS_SPD (1<<7) /* SPD EEPROMs and similar */ |
| 393 | 393 | ||
| 394 | /* i2c_client_address_data is the struct for holding default client | ||
| 395 | * addresses for a driver and for the parameters supplied on the | ||
| 396 | * command line | ||
| 397 | */ | ||
| 398 | struct i2c_client_address_data { | ||
| 399 | const unsigned short *normal_i2c; | ||
| 400 | }; | ||
| 401 | |||
| 402 | /* Internal numbers to terminate lists */ | 394 | /* Internal numbers to terminate lists */ |
| 403 | #define I2C_CLIENT_END 0xfffeU | 395 | #define I2C_CLIENT_END 0xfffeU |
| 404 | 396 | ||
| @@ -576,82 +568,4 @@ union i2c_smbus_data { | |||
| 576 | #define I2C_SMBUS_BLOCK_PROC_CALL 7 /* SMBus 2.0 */ | 568 | #define I2C_SMBUS_BLOCK_PROC_CALL 7 /* SMBus 2.0 */ |
| 577 | #define I2C_SMBUS_I2C_BLOCK_DATA 8 | 569 | #define I2C_SMBUS_I2C_BLOCK_DATA 8 |
| 578 | 570 | ||
| 579 | |||
| 580 | #ifdef __KERNEL__ | ||
| 581 | |||
| 582 | /* These defines are used for probing i2c client addresses */ | ||
| 583 | /* The length of the option lists */ | ||
| 584 | #define I2C_CLIENT_MAX_OPTS 48 | ||
| 585 | |||
| 586 | /* Default fill of many variables */ | ||
| 587 | #define I2C_CLIENT_DEFAULTS {I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 588 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 589 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 590 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 591 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 592 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 593 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 594 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 595 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 596 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 597 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 598 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 599 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 600 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 601 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, \ | ||
| 602 | I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END} | ||
| 603 | |||
| 604 | /* I2C_CLIENT_MODULE_PARM creates a module parameter, and puts it in the | ||
| 605 | module header */ | ||
| 606 | |||
| 607 | #define I2C_CLIENT_MODULE_PARM(var,desc) \ | ||
| 608 | static unsigned short var[I2C_CLIENT_MAX_OPTS] = I2C_CLIENT_DEFAULTS; \ | ||
| 609 | static unsigned int var##_num; \ | ||
| 610 | module_param_array(var, short, &var##_num, 0); \ | ||
| 611 | MODULE_PARM_DESC(var, desc) | ||
| 612 | |||
| 613 | #define I2C_CLIENT_INSMOD_COMMON \ | ||
| 614 | static const struct i2c_client_address_data addr_data = { \ | ||
| 615 | .normal_i2c = normal_i2c, \ | ||
| 616 | } | ||
| 617 | |||
| 618 | /* These are the ones you want to use in your own drivers. Pick the one | ||
| 619 | which matches the number of devices the driver differenciates between. */ | ||
| 620 | #define I2C_CLIENT_INSMOD \ | ||
| 621 | I2C_CLIENT_INSMOD_COMMON | ||
| 622 | |||
| 623 | #define I2C_CLIENT_INSMOD_1(chip1) \ | ||
| 624 | enum chips { any_chip, chip1 }; \ | ||
| 625 | I2C_CLIENT_INSMOD_COMMON | ||
| 626 | |||
| 627 | #define I2C_CLIENT_INSMOD_2(chip1, chip2) \ | ||
| 628 | enum chips { any_chip, chip1, chip2 }; \ | ||
| 629 | I2C_CLIENT_INSMOD_COMMON | ||
| 630 | |||
| 631 | #define I2C_CLIENT_INSMOD_3(chip1, chip2, chip3) \ | ||
| 632 | enum chips { any_chip, chip1, chip2, chip3 }; \ | ||
| 633 | I2C_CLIENT_INSMOD_COMMON | ||
| 634 | |||
| 635 | #define I2C_CLIENT_INSMOD_4(chip1, chip2, chip3, chip4) \ | ||
| 636 | enum chips { any_chip, chip1, chip2, chip3, chip4 }; \ | ||
| 637 | I2C_CLIENT_INSMOD_COMMON | ||
| 638 | |||
| 639 | #define I2C_CLIENT_INSMOD_5(chip1, chip2, chip3, chip4, chip5) \ | ||
| 640 | enum chips { any_chip, chip1, chip2, chip3, chip4, chip5 }; \ | ||
| 641 | I2C_CLIENT_INSMOD_COMMON | ||
| 642 | |||
| 643 | #define I2C_CLIENT_INSMOD_6(chip1, chip2, chip3, chip4, chip5, chip6) \ | ||
| 644 | enum chips { any_chip, chip1, chip2, chip3, chip4, chip5, chip6 }; \ | ||
| 645 | I2C_CLIENT_INSMOD_COMMON | ||
| 646 | |||
| 647 | #define I2C_CLIENT_INSMOD_7(chip1, chip2, chip3, chip4, chip5, chip6, chip7) \ | ||
| 648 | enum chips { any_chip, chip1, chip2, chip3, chip4, chip5, chip6, \ | ||
| 649 | chip7 }; \ | ||
| 650 | I2C_CLIENT_INSMOD_COMMON | ||
| 651 | |||
| 652 | #define I2C_CLIENT_INSMOD_8(chip1, chip2, chip3, chip4, chip5, chip6, chip7, chip8) \ | ||
| 653 | enum chips { any_chip, chip1, chip2, chip3, chip4, chip5, chip6, \ | ||
| 654 | chip7, chip8 }; \ | ||
| 655 | I2C_CLIENT_INSMOD_COMMON | ||
| 656 | #endif /* __KERNEL__ */ | ||
| 657 | #endif /* _LINUX_I2C_H */ | 571 | #endif /* _LINUX_I2C_H */ |
diff --git a/include/linux/i2c/tps65010.h b/include/linux/i2c/tps65010.h index 918c5354d9b8..08aa92278d71 100644 --- a/include/linux/i2c/tps65010.h +++ b/include/linux/i2c/tps65010.h | |||
| @@ -72,6 +72,21 @@ | |||
| 72 | #define TPS_VDCDC1 0x0c | 72 | #define TPS_VDCDC1 0x0c |
| 73 | # define TPS_ENABLE_LP (1 << 3) | 73 | # define TPS_ENABLE_LP (1 << 3) |
| 74 | #define TPS_VDCDC2 0x0d | 74 | #define TPS_VDCDC2 0x0d |
| 75 | # define TPS_LP_COREOFF (1 << 7) | ||
| 76 | # define TPS_VCORE_1_8V (7<<4) | ||
| 77 | # define TPS_VCORE_1_5V (6 << 4) | ||
| 78 | # define TPS_VCORE_1_4V (5 << 4) | ||
| 79 | # define TPS_VCORE_1_3V (4 << 4) | ||
| 80 | # define TPS_VCORE_1_2V (3 << 4) | ||
| 81 | # define TPS_VCORE_1_1V (2 << 4) | ||
| 82 | # define TPS_VCORE_1_0V (1 << 4) | ||
| 83 | # define TPS_VCORE_0_85V (0 << 4) | ||
| 84 | # define TPS_VCORE_LP_1_2V (3 << 2) | ||
| 85 | # define TPS_VCORE_LP_1_1V (2 << 2) | ||
| 86 | # define TPS_VCORE_LP_1_0V (1 << 2) | ||
| 87 | # define TPS_VCORE_LP_0_85V (0 << 2) | ||
| 88 | # define TPS_VIB (1 << 1) | ||
| 89 | # define TPS_VCORE_DISCH (1 << 0) | ||
| 75 | #define TPS_VREGS1 0x0e | 90 | #define TPS_VREGS1 0x0e |
| 76 | # define TPS_LDO2_ENABLE (1 << 7) | 91 | # define TPS_LDO2_ENABLE (1 << 7) |
| 77 | # define TPS_LDO2_OFF (1 << 6) | 92 | # define TPS_LDO2_OFF (1 << 6) |
| @@ -152,6 +167,10 @@ extern int tps65010_config_vregs1(unsigned value); | |||
| 152 | */ | 167 | */ |
| 153 | extern int tps65013_set_low_pwr(unsigned mode); | 168 | extern int tps65013_set_low_pwr(unsigned mode); |
| 154 | 169 | ||
| 170 | /* tps65010_set_vdcdc2 | ||
| 171 | * value to be written to VDCDC2 | ||
| 172 | */ | ||
| 173 | extern int tps65010_config_vdcdc2(unsigned value); | ||
| 155 | 174 | ||
| 156 | struct i2c_client; | 175 | struct i2c_client; |
| 157 | 176 | ||
diff --git a/include/linux/i2c/twl4030.h b/include/linux/i2c/twl.h index 5306a759cbde..bf1c5be1f5b6 100644 --- a/include/linux/i2c/twl4030.h +++ b/include/linux/i2c/twl.h | |||
| @@ -22,8 +22,8 @@ | |||
| 22 | * | 22 | * |
| 23 | */ | 23 | */ |
| 24 | 24 | ||
| 25 | #ifndef __TWL4030_H_ | 25 | #ifndef __TWL_H_ |
| 26 | #define __TWL4030_H_ | 26 | #define __TWL_H_ |
| 27 | 27 | ||
| 28 | #include <linux/types.h> | 28 | #include <linux/types.h> |
| 29 | #include <linux/input/matrix_keypad.h> | 29 | #include <linux/input/matrix_keypad.h> |
| @@ -61,28 +61,112 @@ | |||
| 61 | #define TWL4030_MODULE_PWMA 0x0E | 61 | #define TWL4030_MODULE_PWMA 0x0E |
| 62 | #define TWL4030_MODULE_PWMB 0x0F | 62 | #define TWL4030_MODULE_PWMB 0x0F |
| 63 | 63 | ||
| 64 | #define TWL5031_MODULE_ACCESSORY 0x10 | ||
| 65 | #define TWL5031_MODULE_INTERRUPTS 0x11 | ||
| 66 | |||
| 64 | /* Slave 3 (i2c address 0x4b) */ | 67 | /* Slave 3 (i2c address 0x4b) */ |
| 65 | #define TWL4030_MODULE_BACKUP 0x10 | 68 | #define TWL4030_MODULE_BACKUP 0x12 |
| 66 | #define TWL4030_MODULE_INT 0x11 | 69 | #define TWL4030_MODULE_INT 0x13 |
| 67 | #define TWL4030_MODULE_PM_MASTER 0x12 | 70 | #define TWL4030_MODULE_PM_MASTER 0x14 |
| 68 | #define TWL4030_MODULE_PM_RECEIVER 0x13 | 71 | #define TWL4030_MODULE_PM_RECEIVER 0x15 |
| 69 | #define TWL4030_MODULE_RTC 0x14 | 72 | #define TWL4030_MODULE_RTC 0x16 |
| 70 | #define TWL4030_MODULE_SECURED_REG 0x15 | 73 | #define TWL4030_MODULE_SECURED_REG 0x17 |
| 74 | |||
| 75 | #define TWL_MODULE_USB TWL4030_MODULE_USB | ||
| 76 | #define TWL_MODULE_AUDIO_VOICE TWL4030_MODULE_AUDIO_VOICE | ||
| 77 | #define TWL_MODULE_PIH TWL4030_MODULE_PIH | ||
| 78 | #define TWL_MODULE_MADC TWL4030_MODULE_MADC | ||
| 79 | #define TWL_MODULE_MAIN_CHARGE TWL4030_MODULE_MAIN_CHARGE | ||
| 80 | #define TWL_MODULE_PM_MASTER TWL4030_MODULE_PM_MASTER | ||
| 81 | #define TWL_MODULE_PM_RECEIVER TWL4030_MODULE_PM_RECEIVER | ||
| 82 | #define TWL_MODULE_RTC TWL4030_MODULE_RTC | ||
| 83 | |||
| 84 | #define GPIO_INTR_OFFSET 0 | ||
| 85 | #define KEYPAD_INTR_OFFSET 1 | ||
| 86 | #define BCI_INTR_OFFSET 2 | ||
| 87 | #define MADC_INTR_OFFSET 3 | ||
| 88 | #define USB_INTR_OFFSET 4 | ||
| 89 | #define BCI_PRES_INTR_OFFSET 9 | ||
| 90 | #define USB_PRES_INTR_OFFSET 10 | ||
| 91 | #define RTC_INTR_OFFSET 11 | ||
| 92 | |||
| 93 | /* | ||
| 94 | * Offset from TWL6030_IRQ_BASE / pdata->irq_base | ||
| 95 | */ | ||
| 96 | #define PWR_INTR_OFFSET 0 | ||
| 97 | #define HOTDIE_INTR_OFFSET 12 | ||
| 98 | #define SMPSLDO_INTR_OFFSET 13 | ||
| 99 | #define BATDETECT_INTR_OFFSET 14 | ||
| 100 | #define SIMDETECT_INTR_OFFSET 15 | ||
| 101 | #define MMCDETECT_INTR_OFFSET 16 | ||
| 102 | #define GASGAUGE_INTR_OFFSET 17 | ||
| 103 | #define USBOTG_INTR_OFFSET 4 | ||
| 104 | #define CHARGER_INTR_OFFSET 2 | ||
| 105 | #define RSV_INTR_OFFSET 0 | ||
| 106 | |||
| 107 | /* INT register offsets */ | ||
| 108 | #define REG_INT_STS_A 0x00 | ||
| 109 | #define REG_INT_STS_B 0x01 | ||
| 110 | #define REG_INT_STS_C 0x02 | ||
| 111 | |||
| 112 | #define REG_INT_MSK_LINE_A 0x03 | ||
| 113 | #define REG_INT_MSK_LINE_B 0x04 | ||
| 114 | #define REG_INT_MSK_LINE_C 0x05 | ||
| 115 | |||
| 116 | #define REG_INT_MSK_STS_A 0x06 | ||
| 117 | #define REG_INT_MSK_STS_B 0x07 | ||
| 118 | #define REG_INT_MSK_STS_C 0x08 | ||
| 119 | |||
| 120 | /* MASK INT REG GROUP A */ | ||
| 121 | #define TWL6030_PWR_INT_MASK 0x07 | ||
| 122 | #define TWL6030_RTC_INT_MASK 0x18 | ||
| 123 | #define TWL6030_HOTDIE_INT_MASK 0x20 | ||
| 124 | #define TWL6030_SMPSLDOA_INT_MASK 0xC0 | ||
| 125 | |||
| 126 | /* MASK INT REG GROUP B */ | ||
| 127 | #define TWL6030_SMPSLDOB_INT_MASK 0x01 | ||
| 128 | #define TWL6030_BATDETECT_INT_MASK 0x02 | ||
| 129 | #define TWL6030_SIMDETECT_INT_MASK 0x04 | ||
| 130 | #define TWL6030_MMCDETECT_INT_MASK 0x08 | ||
| 131 | #define TWL6030_GPADC_INT_MASK 0x60 | ||
| 132 | #define TWL6030_GASGAUGE_INT_MASK 0x80 | ||
| 133 | |||
| 134 | /* MASK INT REG GROUP C */ | ||
| 135 | #define TWL6030_USBOTG_INT_MASK 0x0F | ||
| 136 | #define TWL6030_CHARGER_CTRL_INT_MASK 0x10 | ||
| 137 | #define TWL6030_CHARGER_FAULT_INT_MASK 0x60 | ||
| 138 | |||
| 139 | |||
| 140 | #define TWL4030_CLASS_ID 0x4030 | ||
| 141 | #define TWL6030_CLASS_ID 0x6030 | ||
| 142 | unsigned int twl_rev(void); | ||
| 143 | #define GET_TWL_REV (twl_rev()) | ||
| 144 | #define TWL_CLASS_IS(class, id) \ | ||
| 145 | static inline int twl_class_is_ ##class(void) \ | ||
| 146 | { \ | ||
| 147 | return ((id) == (GET_TWL_REV)) ? 1 : 0; \ | ||
| 148 | } | ||
| 149 | |||
| 150 | TWL_CLASS_IS(4030, TWL4030_CLASS_ID) | ||
| 151 | TWL_CLASS_IS(6030, TWL6030_CLASS_ID) | ||
| 71 | 152 | ||
| 72 | /* | 153 | /* |
| 73 | * Read and write single 8-bit registers | 154 | * Read and write single 8-bit registers |
| 74 | */ | 155 | */ |
| 75 | int twl4030_i2c_write_u8(u8 mod_no, u8 val, u8 reg); | 156 | int twl_i2c_write_u8(u8 mod_no, u8 val, u8 reg); |
| 76 | int twl4030_i2c_read_u8(u8 mod_no, u8 *val, u8 reg); | 157 | int twl_i2c_read_u8(u8 mod_no, u8 *val, u8 reg); |
| 77 | 158 | ||
| 78 | /* | 159 | /* |
| 79 | * Read and write several 8-bit registers at once. | 160 | * Read and write several 8-bit registers at once. |
| 80 | * | 161 | * |
| 81 | * IMPORTANT: For twl4030_i2c_write(), allocate num_bytes + 1 | 162 | * IMPORTANT: For twl_i2c_write(), allocate num_bytes + 1 |
| 82 | * for the value, and populate your data starting at offset 1. | 163 | * for the value, and populate your data starting at offset 1. |
| 83 | */ | 164 | */ |
| 84 | int twl4030_i2c_write(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes); | 165 | int twl_i2c_write(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes); |
| 85 | int twl4030_i2c_read(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes); | 166 | int twl_i2c_read(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes); |
| 167 | |||
| 168 | int twl6030_interrupt_unmask(u8 bit_mask, u8 offset); | ||
| 169 | int twl6030_interrupt_mask(u8 bit_mask, u8 offset); | ||
| 86 | 170 | ||
| 87 | /*----------------------------------------------------------------------*/ | 171 | /*----------------------------------------------------------------------*/ |
| 88 | 172 | ||
| @@ -221,6 +305,38 @@ int twl4030_i2c_read(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes); | |||
| 221 | 305 | ||
| 222 | /*----------------------------------------------------------------------*/ | 306 | /*----------------------------------------------------------------------*/ |
| 223 | 307 | ||
| 308 | /* | ||
| 309 | * Accessory Interrupts | ||
| 310 | */ | ||
| 311 | #define TWL5031_ACIIMR_LSB 0x05 | ||
| 312 | #define TWL5031_ACIIMR_MSB 0x06 | ||
| 313 | #define TWL5031_ACIIDR_LSB 0x07 | ||
| 314 | #define TWL5031_ACIIDR_MSB 0x08 | ||
| 315 | #define TWL5031_ACCISR1 0x0F | ||
| 316 | #define TWL5031_ACCIMR1 0x10 | ||
| 317 | #define TWL5031_ACCISR2 0x11 | ||
| 318 | #define TWL5031_ACCIMR2 0x12 | ||
| 319 | #define TWL5031_ACCSIR 0x13 | ||
| 320 | #define TWL5031_ACCEDR1 0x14 | ||
| 321 | #define TWL5031_ACCSIHCTRL 0x15 | ||
| 322 | |||
| 323 | /*----------------------------------------------------------------------*/ | ||
| 324 | |||
| 325 | /* | ||
| 326 | * Battery Charger Controller | ||
| 327 | */ | ||
| 328 | |||
| 329 | #define TWL5031_INTERRUPTS_BCIISR1 0x0 | ||
| 330 | #define TWL5031_INTERRUPTS_BCIIMR1 0x1 | ||
| 331 | #define TWL5031_INTERRUPTS_BCIISR2 0x2 | ||
| 332 | #define TWL5031_INTERRUPTS_BCIIMR2 0x3 | ||
| 333 | #define TWL5031_INTERRUPTS_BCISIR 0x4 | ||
| 334 | #define TWL5031_INTERRUPTS_BCIEDR1 0x5 | ||
| 335 | #define TWL5031_INTERRUPTS_BCIEDR2 0x6 | ||
| 336 | #define TWL5031_INTERRUPTS_BCISIHCTRL 0x7 | ||
| 337 | |||
| 338 | /*----------------------------------------------------------------------*/ | ||
| 339 | |||
| 224 | /* Power bus message definitions */ | 340 | /* Power bus message definitions */ |
| 225 | 341 | ||
| 226 | /* The TWL4030/5030 splits its power-management resources (the various | 342 | /* The TWL4030/5030 splits its power-management resources (the various |
| @@ -250,6 +366,7 @@ int twl4030_i2c_read(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes); | |||
| 250 | 366 | ||
| 251 | #define RES_TYPE_ALL 0x7 | 367 | #define RES_TYPE_ALL 0x7 |
| 252 | 368 | ||
| 369 | /* Resource states */ | ||
| 253 | #define RES_STATE_WRST 0xF | 370 | #define RES_STATE_WRST 0xF |
| 254 | #define RES_STATE_ACTIVE 0xE | 371 | #define RES_STATE_ACTIVE 0xE |
| 255 | #define RES_STATE_SLEEP 0x8 | 372 | #define RES_STATE_SLEEP 0x8 |
| @@ -310,8 +427,18 @@ int twl4030_i2c_read(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes); | |||
| 310 | #define MSG_SINGULAR(devgrp, id, state) \ | 427 | #define MSG_SINGULAR(devgrp, id, state) \ |
| 311 | ((devgrp) << 13 | 0 << 12 | (id) << 4 | (state)) | 428 | ((devgrp) << 13 | 0 << 12 | (id) << 4 | (state)) |
| 312 | 429 | ||
| 430 | #define MSG_BROADCAST_ALL(devgrp, state) \ | ||
| 431 | ((devgrp) << 5 | (state)) | ||
| 432 | |||
| 433 | #define MSG_BROADCAST_REF MSG_BROADCAST_ALL | ||
| 434 | #define MSG_BROADCAST_PROV MSG_BROADCAST_ALL | ||
| 435 | #define MSG_BROADCAST__CLK_RST MSG_BROADCAST_ALL | ||
| 313 | /*----------------------------------------------------------------------*/ | 436 | /*----------------------------------------------------------------------*/ |
| 314 | 437 | ||
| 438 | struct twl4030_clock_init_data { | ||
| 439 | bool ck32k_lowpwr_enable; | ||
| 440 | }; | ||
| 441 | |||
| 315 | struct twl4030_bci_platform_data { | 442 | struct twl4030_bci_platform_data { |
| 316 | int *battery_tmp_tbl; | 443 | int *battery_tmp_tbl; |
| 317 | unsigned int tblsize; | 444 | unsigned int tblsize; |
| @@ -391,12 +518,15 @@ struct twl4030_resconfig { | |||
| 391 | u8 devgroup; /* Processor group that Power resource belongs to */ | 518 | u8 devgroup; /* Processor group that Power resource belongs to */ |
| 392 | u8 type; /* Power resource addressed, 6 / broadcast message */ | 519 | u8 type; /* Power resource addressed, 6 / broadcast message */ |
| 393 | u8 type2; /* Power resource addressed, 3 / broadcast message */ | 520 | u8 type2; /* Power resource addressed, 3 / broadcast message */ |
| 521 | u8 remap_off; /* off state remapping */ | ||
| 522 | u8 remap_sleep; /* sleep state remapping */ | ||
| 394 | }; | 523 | }; |
| 395 | 524 | ||
| 396 | struct twl4030_power_data { | 525 | struct twl4030_power_data { |
| 397 | struct twl4030_script **scripts; | 526 | struct twl4030_script **scripts; |
| 398 | unsigned num; | 527 | unsigned num; |
| 399 | struct twl4030_resconfig *resource_config; | 528 | struct twl4030_resconfig *resource_config; |
| 529 | #define TWL4030_RESCONFIG_UNDEF ((u8)-1) | ||
| 400 | }; | 530 | }; |
| 401 | 531 | ||
| 402 | extern void twl4030_power_init(struct twl4030_power_data *triton2_scripts); | 532 | extern void twl4030_power_init(struct twl4030_power_data *triton2_scripts); |
| @@ -421,6 +551,7 @@ struct twl4030_codec_data { | |||
| 421 | 551 | ||
| 422 | struct twl4030_platform_data { | 552 | struct twl4030_platform_data { |
| 423 | unsigned irq_base, irq_end; | 553 | unsigned irq_base, irq_end; |
| 554 | struct twl4030_clock_init_data *clock; | ||
| 424 | struct twl4030_bci_platform_data *bci; | 555 | struct twl4030_bci_platform_data *bci; |
| 425 | struct twl4030_gpio_platform_data *gpio; | 556 | struct twl4030_gpio_platform_data *gpio; |
| 426 | struct twl4030_madc_platform_data *madc; | 557 | struct twl4030_madc_platform_data *madc; |
| @@ -429,19 +560,31 @@ struct twl4030_platform_data { | |||
| 429 | struct twl4030_power_data *power; | 560 | struct twl4030_power_data *power; |
| 430 | struct twl4030_codec_data *codec; | 561 | struct twl4030_codec_data *codec; |
| 431 | 562 | ||
| 432 | /* LDO regulators */ | 563 | /* Common LDO regulators for TWL4030/TWL6030 */ |
| 433 | struct regulator_init_data *vdac; | 564 | struct regulator_init_data *vdac; |
| 565 | struct regulator_init_data *vaux1; | ||
| 566 | struct regulator_init_data *vaux2; | ||
| 567 | struct regulator_init_data *vaux3; | ||
| 568 | /* TWL4030 LDO regulators */ | ||
| 434 | struct regulator_init_data *vpll1; | 569 | struct regulator_init_data *vpll1; |
| 435 | struct regulator_init_data *vpll2; | 570 | struct regulator_init_data *vpll2; |
| 436 | struct regulator_init_data *vmmc1; | 571 | struct regulator_init_data *vmmc1; |
| 437 | struct regulator_init_data *vmmc2; | 572 | struct regulator_init_data *vmmc2; |
| 438 | struct regulator_init_data *vsim; | 573 | struct regulator_init_data *vsim; |
| 439 | struct regulator_init_data *vaux1; | ||
| 440 | struct regulator_init_data *vaux2; | ||
| 441 | struct regulator_init_data *vaux3; | ||
| 442 | struct regulator_init_data *vaux4; | 574 | struct regulator_init_data *vaux4; |
| 443 | 575 | struct regulator_init_data *vio; | |
| 444 | /* REVISIT more to come ... _nothing_ should be hard-wired */ | 576 | struct regulator_init_data *vdd1; |
| 577 | struct regulator_init_data *vdd2; | ||
| 578 | struct regulator_init_data *vintana1; | ||
| 579 | struct regulator_init_data *vintana2; | ||
| 580 | struct regulator_init_data *vintdig; | ||
| 581 | /* TWL6030 LDO regulators */ | ||
| 582 | struct regulator_init_data *vmmc; | ||
| 583 | struct regulator_init_data *vpp; | ||
| 584 | struct regulator_init_data *vusim; | ||
| 585 | struct regulator_init_data *vana; | ||
| 586 | struct regulator_init_data *vcxio; | ||
| 587 | struct regulator_init_data *vusb; | ||
| 445 | }; | 588 | }; |
| 446 | 589 | ||
| 447 | /*----------------------------------------------------------------------*/ | 590 | /*----------------------------------------------------------------------*/ |
| @@ -473,6 +616,7 @@ int twl4030_sih_setup(int module); | |||
| 473 | * VIO is generally fixed. | 616 | * VIO is generally fixed. |
| 474 | */ | 617 | */ |
| 475 | 618 | ||
| 619 | /* TWL4030 SMPS/LDO's */ | ||
| 476 | /* EXTERNAL dc-to-dc buck converters */ | 620 | /* EXTERNAL dc-to-dc buck converters */ |
| 477 | #define TWL4030_REG_VDD1 0 | 621 | #define TWL4030_REG_VDD1 0 |
| 478 | #define TWL4030_REG_VDD2 1 | 622 | #define TWL4030_REG_VDD2 1 |
| @@ -499,4 +643,31 @@ int twl4030_sih_setup(int module); | |||
| 499 | #define TWL4030_REG_VUSB1V8 18 | 643 | #define TWL4030_REG_VUSB1V8 18 |
| 500 | #define TWL4030_REG_VUSB3V1 19 | 644 | #define TWL4030_REG_VUSB3V1 19 |
| 501 | 645 | ||
| 646 | /* TWL6030 SMPS/LDO's */ | ||
| 647 | /* EXTERNAL dc-to-dc buck convertor contollable via SR */ | ||
| 648 | #define TWL6030_REG_VDD1 30 | ||
| 649 | #define TWL6030_REG_VDD2 31 | ||
| 650 | #define TWL6030_REG_VDD3 32 | ||
| 651 | |||
| 652 | /* Non SR compliant dc-to-dc buck convertors */ | ||
| 653 | #define TWL6030_REG_VMEM 33 | ||
| 654 | #define TWL6030_REG_V2V1 34 | ||
| 655 | #define TWL6030_REG_V1V29 35 | ||
| 656 | #define TWL6030_REG_V1V8 36 | ||
| 657 | |||
| 658 | /* EXTERNAL LDOs */ | ||
| 659 | #define TWL6030_REG_VAUX1_6030 37 | ||
| 660 | #define TWL6030_REG_VAUX2_6030 38 | ||
| 661 | #define TWL6030_REG_VAUX3_6030 39 | ||
| 662 | #define TWL6030_REG_VMMC 40 | ||
| 663 | #define TWL6030_REG_VPP 41 | ||
| 664 | #define TWL6030_REG_VUSIM 42 | ||
| 665 | #define TWL6030_REG_VANA 43 | ||
| 666 | #define TWL6030_REG_VCXIO 44 | ||
| 667 | #define TWL6030_REG_VDAC 45 | ||
| 668 | #define TWL6030_REG_VUSB 46 | ||
| 669 | |||
| 670 | /* INTERNAL LDOs */ | ||
| 671 | #define TWL6030_REG_VRTC 47 | ||
| 672 | |||
| 502 | #endif /* End of __TWL4030_H */ | 673 | #endif /* End of __TWL4030_H */ |
diff --git a/include/linux/if_ether.h b/include/linux/if_ether.h index 005e1525ab86..299b4121f914 100644 --- a/include/linux/if_ether.h +++ b/include/linux/if_ether.h | |||
| @@ -137,8 +137,6 @@ extern struct ctl_table ether_table[]; | |||
| 137 | extern ssize_t sysfs_format_mac(char *buf, const unsigned char *addr, int len); | 137 | extern ssize_t sysfs_format_mac(char *buf, const unsigned char *addr, int len); |
| 138 | 138 | ||
| 139 | #define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x" | 139 | #define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x" |
| 140 | #define MAC_BUF_SIZE 18 | ||
| 141 | #define DECLARE_MAC_BUF(var) char var[MAC_BUF_SIZE] | ||
| 142 | 140 | ||
| 143 | #endif | 141 | #endif |
| 144 | 142 | ||
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 8d10aa7fd4c9..8ed0abf06f89 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
| @@ -111,6 +111,12 @@ extern struct cred init_cred; | |||
| 111 | # define INIT_PERF_EVENTS(tsk) | 111 | # define INIT_PERF_EVENTS(tsk) |
| 112 | #endif | 112 | #endif |
| 113 | 113 | ||
| 114 | #ifdef CONFIG_FS_JOURNAL_INFO | ||
| 115 | #define INIT_JOURNAL_INFO .journal_info = NULL, | ||
| 116 | #else | ||
| 117 | #define INIT_JOURNAL_INFO | ||
| 118 | #endif | ||
| 119 | |||
| 114 | /* | 120 | /* |
| 115 | * INIT_TASK is used to set up the first task table, touch at | 121 | * INIT_TASK is used to set up the first task table, touch at |
| 116 | * your own risk!. Base=0, limit=0x1fffff (=2MB) | 122 | * your own risk!. Base=0, limit=0x1fffff (=2MB) |
| @@ -162,7 +168,6 @@ extern struct cred init_cred; | |||
| 162 | .signal = {{0}}}, \ | 168 | .signal = {{0}}}, \ |
| 163 | .blocked = {{0}}, \ | 169 | .blocked = {{0}}, \ |
| 164 | .alloc_lock = __SPIN_LOCK_UNLOCKED(tsk.alloc_lock), \ | 170 | .alloc_lock = __SPIN_LOCK_UNLOCKED(tsk.alloc_lock), \ |
| 165 | .journal_info = NULL, \ | ||
| 166 | .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \ | 171 | .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \ |
| 167 | .fs_excl = ATOMIC_INIT(0), \ | 172 | .fs_excl = ATOMIC_INIT(0), \ |
| 168 | .pi_lock = __SPIN_LOCK_UNLOCKED(tsk.pi_lock), \ | 173 | .pi_lock = __SPIN_LOCK_UNLOCKED(tsk.pi_lock), \ |
| @@ -173,6 +178,7 @@ extern struct cred init_cred; | |||
| 173 | [PIDTYPE_SID] = INIT_PID_LINK(PIDTYPE_SID), \ | 178 | [PIDTYPE_SID] = INIT_PID_LINK(PIDTYPE_SID), \ |
| 174 | }, \ | 179 | }, \ |
| 175 | .dirties = INIT_PROP_LOCAL_SINGLE(dirties), \ | 180 | .dirties = INIT_PROP_LOCAL_SINGLE(dirties), \ |
| 181 | INIT_JOURNAL_INFO \ | ||
| 176 | INIT_IDS \ | 182 | INIT_IDS \ |
| 177 | INIT_PERF_EVENTS(tsk) \ | 183 | INIT_PERF_EVENTS(tsk) \ |
| 178 | INIT_TRACE_IRQFLAGS \ | 184 | INIT_TRACE_IRQFLAGS \ |
diff --git a/include/linux/isicom.h b/include/linux/isicom.h index bbd42197298f..b92e05650639 100644 --- a/include/linux/isicom.h +++ b/include/linux/isicom.h | |||
| @@ -67,6 +67,7 @@ | |||
| 67 | 67 | ||
| 68 | #define FIRMWARE_LOADED 0x0001 | 68 | #define FIRMWARE_LOADED 0x0001 |
| 69 | #define BOARD_ACTIVE 0x0002 | 69 | #define BOARD_ACTIVE 0x0002 |
| 70 | #define BOARD_INIT 0x0004 | ||
| 70 | 71 | ||
| 71 | /* isi_port status bitmap */ | 72 | /* isi_port status bitmap */ |
| 72 | 73 | ||
diff --git a/include/linux/kallsyms.h b/include/linux/kallsyms.h index 792274269f2b..d8e9b3d1c23c 100644 --- a/include/linux/kallsyms.h +++ b/include/linux/kallsyms.h | |||
| @@ -107,18 +107,6 @@ static inline void print_symbol(const char *fmt, unsigned long addr) | |||
| 107 | __builtin_extract_return_addr((void *)addr)); | 107 | __builtin_extract_return_addr((void *)addr)); |
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | /* | ||
| 111 | * Pretty-print a function pointer. This function is deprecated. | ||
| 112 | * Please use the "%pF" vsprintf format instead. | ||
| 113 | */ | ||
| 114 | static inline void __deprecated print_fn_descriptor_symbol(const char *fmt, void *addr) | ||
| 115 | { | ||
| 116 | #if defined(CONFIG_IA64) || defined(CONFIG_PPC64) | ||
| 117 | addr = *(void **)addr; | ||
| 118 | #endif | ||
| 119 | print_symbol(fmt, (unsigned long)addr); | ||
| 120 | } | ||
| 121 | |||
| 122 | static inline void print_ip_sym(unsigned long ip) | 110 | static inline void print_ip_sym(unsigned long ip) |
| 123 | { | 111 | { |
| 124 | printk("[<%p>] %pS\n", (void *) ip, (void *) ip); | 112 | printk("[<%p>] %pS\n", (void *) ip, (void *) ip); |
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 3fa4c590cf12..4d9c916d06d9 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
| @@ -251,10 +251,10 @@ extern int printk_delay_msec; | |||
| 251 | * Print a one-time message (analogous to WARN_ONCE() et al): | 251 | * Print a one-time message (analogous to WARN_ONCE() et al): |
| 252 | */ | 252 | */ |
| 253 | #define printk_once(x...) ({ \ | 253 | #define printk_once(x...) ({ \ |
| 254 | static bool __print_once = true; \ | 254 | static bool __print_once; \ |
| 255 | \ | 255 | \ |
| 256 | if (__print_once) { \ | 256 | if (!__print_once) { \ |
| 257 | __print_once = false; \ | 257 | __print_once = true; \ |
| 258 | printk(x); \ | 258 | printk(x); \ |
| 259 | } \ | 259 | } \ |
| 260 | }) | 260 | }) |
| @@ -397,15 +397,58 @@ static inline char *pack_hex_byte(char *buf, u8 byte) | |||
| 397 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) | 397 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 398 | #elif defined(CONFIG_DYNAMIC_DEBUG) | 398 | #elif defined(CONFIG_DYNAMIC_DEBUG) |
| 399 | /* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */ | 399 | /* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */ |
| 400 | #define pr_debug(fmt, ...) do { \ | 400 | #define pr_debug(fmt, ...) \ |
| 401 | dynamic_pr_debug(fmt, ##__VA_ARGS__); \ | 401 | dynamic_pr_debug(fmt, ##__VA_ARGS__) |
| 402 | } while (0) | ||
| 403 | #else | 402 | #else |
| 404 | #define pr_debug(fmt, ...) \ | 403 | #define pr_debug(fmt, ...) \ |
| 405 | ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; }) | 404 | ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; }) |
| 406 | #endif | 405 | #endif |
| 407 | 406 | ||
| 408 | /* | 407 | /* |
| 408 | * ratelimited messages with local ratelimit_state, | ||
| 409 | * no local ratelimit_state used in the !PRINTK case | ||
| 410 | */ | ||
| 411 | #ifdef CONFIG_PRINTK | ||
| 412 | #define printk_ratelimited(fmt, ...) ({ \ | ||
| 413 | static struct ratelimit_state _rs = { \ | ||
| 414 | .interval = DEFAULT_RATELIMIT_INTERVAL, \ | ||
| 415 | .burst = DEFAULT_RATELIMIT_BURST, \ | ||
| 416 | }; \ | ||
| 417 | \ | ||
| 418 | if (!__ratelimit(&_rs)) \ | ||
| 419 | printk(fmt, ##__VA_ARGS__); \ | ||
| 420 | }) | ||
| 421 | #else | ||
| 422 | /* No effect, but we still get type checking even in the !PRINTK case: */ | ||
| 423 | #define printk_ratelimited printk | ||
| 424 | #endif | ||
| 425 | |||
| 426 | #define pr_emerg_ratelimited(fmt, ...) \ | ||
| 427 | printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) | ||
| 428 | #define pr_alert_ratelimited(fmt, ...) \ | ||
| 429 | printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) | ||
| 430 | #define pr_crit_ratelimited(fmt, ...) \ | ||
| 431 | printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) | ||
| 432 | #define pr_err_ratelimited(fmt, ...) \ | ||
| 433 | printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) | ||
| 434 | #define pr_warning_ratelimited(fmt, ...) \ | ||
| 435 | printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) | ||
| 436 | #define pr_notice_ratelimited(fmt, ...) \ | ||
| 437 | printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) | ||
| 438 | #define pr_info_ratelimited(fmt, ...) \ | ||
| 439 | printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) | ||
| 440 | /* no pr_cont_ratelimited, don't do that... */ | ||
| 441 | /* If you are writing a driver, please use dev_dbg instead */ | ||
| 442 | #if defined(DEBUG) | ||
| 443 | #define pr_debug_ratelimited(fmt, ...) \ | ||
| 444 | printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) | ||
| 445 | #else | ||
| 446 | #define pr_debug_ratelimited(fmt, ...) \ | ||
| 447 | ({ if (0) printk_ratelimited(KERN_DEBUG pr_fmt(fmt), \ | ||
| 448 | ##__VA_ARGS__); 0; }) | ||
| 449 | #endif | ||
| 450 | |||
| 451 | /* | ||
| 409 | * General tracing related utility functions - trace_printk(), | 452 | * General tracing related utility functions - trace_printk(), |
| 410 | * tracing_on/tracing_off and tracing_start()/tracing_stop | 453 | * tracing_on/tracing_off and tracing_start()/tracing_stop |
| 411 | * | 454 | * |
diff --git a/include/linux/ksm.h b/include/linux/ksm.h index a485c14ecd5d..bed5f16ba827 100644 --- a/include/linux/ksm.h +++ b/include/linux/ksm.h | |||
| @@ -9,8 +9,12 @@ | |||
| 9 | 9 | ||
| 10 | #include <linux/bitops.h> | 10 | #include <linux/bitops.h> |
| 11 | #include <linux/mm.h> | 11 | #include <linux/mm.h> |
| 12 | #include <linux/pagemap.h> | ||
| 13 | #include <linux/rmap.h> | ||
| 12 | #include <linux/sched.h> | 14 | #include <linux/sched.h> |
| 13 | #include <linux/vmstat.h> | 15 | |
| 16 | struct stable_node; | ||
| 17 | struct mem_cgroup; | ||
| 14 | 18 | ||
| 15 | #ifdef CONFIG_KSM | 19 | #ifdef CONFIG_KSM |
| 16 | int ksm_madvise(struct vm_area_struct *vma, unsigned long start, | 20 | int ksm_madvise(struct vm_area_struct *vma, unsigned long start, |
| @@ -34,23 +38,60 @@ static inline void ksm_exit(struct mm_struct *mm) | |||
| 34 | /* | 38 | /* |
| 35 | * A KSM page is one of those write-protected "shared pages" or "merged pages" | 39 | * A KSM page is one of those write-protected "shared pages" or "merged pages" |
| 36 | * which KSM maps into multiple mms, wherever identical anonymous page content | 40 | * which KSM maps into multiple mms, wherever identical anonymous page content |
| 37 | * is found in VM_MERGEABLE vmas. It's a PageAnon page, with NULL anon_vma. | 41 | * is found in VM_MERGEABLE vmas. It's a PageAnon page, pointing not to any |
| 42 | * anon_vma, but to that page's node of the stable tree. | ||
| 38 | */ | 43 | */ |
| 39 | static inline int PageKsm(struct page *page) | 44 | static inline int PageKsm(struct page *page) |
| 40 | { | 45 | { |
| 41 | return ((unsigned long)page->mapping == PAGE_MAPPING_ANON); | 46 | return ((unsigned long)page->mapping & PAGE_MAPPING_FLAGS) == |
| 47 | (PAGE_MAPPING_ANON | PAGE_MAPPING_KSM); | ||
| 48 | } | ||
| 49 | |||
| 50 | static inline struct stable_node *page_stable_node(struct page *page) | ||
| 51 | { | ||
| 52 | return PageKsm(page) ? page_rmapping(page) : NULL; | ||
| 53 | } | ||
| 54 | |||
| 55 | static inline void set_page_stable_node(struct page *page, | ||
| 56 | struct stable_node *stable_node) | ||
| 57 | { | ||
| 58 | page->mapping = (void *)stable_node + | ||
| 59 | (PAGE_MAPPING_ANON | PAGE_MAPPING_KSM); | ||
| 42 | } | 60 | } |
| 43 | 61 | ||
| 44 | /* | 62 | /* |
| 45 | * But we have to avoid the checking which page_add_anon_rmap() performs. | 63 | * When do_swap_page() first faults in from swap what used to be a KSM page, |
| 64 | * no problem, it will be assigned to this vma's anon_vma; but thereafter, | ||
| 65 | * it might be faulted into a different anon_vma (or perhaps to a different | ||
| 66 | * offset in the same anon_vma). do_swap_page() cannot do all the locking | ||
| 67 | * needed to reconstitute a cross-anon_vma KSM page: for now it has to make | ||
| 68 | * a copy, and leave remerging the pages to a later pass of ksmd. | ||
| 69 | * | ||
| 70 | * We'd like to make this conditional on vma->vm_flags & VM_MERGEABLE, | ||
| 71 | * but what if the vma was unmerged while the page was swapped out? | ||
| 46 | */ | 72 | */ |
| 47 | static inline void page_add_ksm_rmap(struct page *page) | 73 | struct page *ksm_does_need_to_copy(struct page *page, |
| 74 | struct vm_area_struct *vma, unsigned long address); | ||
| 75 | static inline struct page *ksm_might_need_to_copy(struct page *page, | ||
| 76 | struct vm_area_struct *vma, unsigned long address) | ||
| 48 | { | 77 | { |
| 49 | if (atomic_inc_and_test(&page->_mapcount)) { | 78 | struct anon_vma *anon_vma = page_anon_vma(page); |
| 50 | page->mapping = (void *) PAGE_MAPPING_ANON; | 79 | |
| 51 | __inc_zone_page_state(page, NR_ANON_PAGES); | 80 | if (!anon_vma || |
| 52 | } | 81 | (anon_vma == vma->anon_vma && |
| 82 | page->index == linear_page_index(vma, address))) | ||
| 83 | return page; | ||
| 84 | |||
| 85 | return ksm_does_need_to_copy(page, vma, address); | ||
| 53 | } | 86 | } |
| 87 | |||
| 88 | int page_referenced_ksm(struct page *page, | ||
| 89 | struct mem_cgroup *memcg, unsigned long *vm_flags); | ||
| 90 | int try_to_unmap_ksm(struct page *page, enum ttu_flags flags); | ||
| 91 | int rmap_walk_ksm(struct page *page, int (*rmap_one)(struct page *, | ||
| 92 | struct vm_area_struct *, unsigned long, void *), void *arg); | ||
| 93 | void ksm_migrate_page(struct page *newpage, struct page *oldpage); | ||
| 94 | |||
| 54 | #else /* !CONFIG_KSM */ | 95 | #else /* !CONFIG_KSM */ |
| 55 | 96 | ||
| 56 | static inline int ksm_madvise(struct vm_area_struct *vma, unsigned long start, | 97 | static inline int ksm_madvise(struct vm_area_struct *vma, unsigned long start, |
| @@ -73,7 +114,32 @@ static inline int PageKsm(struct page *page) | |||
| 73 | return 0; | 114 | return 0; |
| 74 | } | 115 | } |
| 75 | 116 | ||
| 76 | /* No stub required for page_add_ksm_rmap(page) */ | 117 | static inline struct page *ksm_might_need_to_copy(struct page *page, |
| 118 | struct vm_area_struct *vma, unsigned long address) | ||
| 119 | { | ||
| 120 | return page; | ||
| 121 | } | ||
| 122 | |||
| 123 | static inline int page_referenced_ksm(struct page *page, | ||
| 124 | struct mem_cgroup *memcg, unsigned long *vm_flags) | ||
| 125 | { | ||
| 126 | return 0; | ||
| 127 | } | ||
| 128 | |||
| 129 | static inline int try_to_unmap_ksm(struct page *page, enum ttu_flags flags) | ||
| 130 | { | ||
| 131 | return 0; | ||
| 132 | } | ||
| 133 | |||
| 134 | static inline int rmap_walk_ksm(struct page *page, int (*rmap_one)(struct page*, | ||
| 135 | struct vm_area_struct *, unsigned long, void *), void *arg) | ||
| 136 | { | ||
| 137 | return 0; | ||
| 138 | } | ||
| 139 | |||
| 140 | static inline void ksm_migrate_page(struct page *newpage, struct page *oldpage) | ||
| 141 | { | ||
| 142 | } | ||
| 77 | #endif /* !CONFIG_KSM */ | 143 | #endif /* !CONFIG_KSM */ |
| 78 | 144 | ||
| 79 | #endif | 145 | #endif /* __LINUX_KSM_H */ |
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index 2d241da07236..a24de0b1858e 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h | |||
| @@ -496,6 +496,7 @@ struct kvm_ioeventfd { | |||
| 496 | #define KVM_CAP_VCPU_EVENTS 41 | 496 | #define KVM_CAP_VCPU_EVENTS 41 |
| 497 | #endif | 497 | #endif |
| 498 | #define KVM_CAP_S390_PSW 42 | 498 | #define KVM_CAP_S390_PSW 42 |
| 499 | #define KVM_CAP_PPC_SEGSTATE 43 | ||
| 499 | 500 | ||
| 500 | #ifdef KVM_CAP_IRQ_ROUTING | 501 | #ifdef KVM_CAP_IRQ_ROUTING |
| 501 | 502 | ||
diff --git a/include/linux/lis3lv02d.h b/include/linux/lis3lv02d.h index 3cc2f2c53e4c..f1ca0dcc1628 100644 --- a/include/linux/lis3lv02d.h +++ b/include/linux/lis3lv02d.h | |||
| @@ -43,6 +43,21 @@ struct lis3lv02d_platform_data { | |||
| 43 | #define LIS3_WAKEUP_Z_HI (1 << 5) | 43 | #define LIS3_WAKEUP_Z_HI (1 << 5) |
| 44 | unsigned char wakeup_flags; | 44 | unsigned char wakeup_flags; |
| 45 | unsigned char wakeup_thresh; | 45 | unsigned char wakeup_thresh; |
| 46 | #define LIS3_NO_MAP 0 | ||
| 47 | #define LIS3_DEV_X 1 | ||
| 48 | #define LIS3_DEV_Y 2 | ||
| 49 | #define LIS3_DEV_Z 3 | ||
| 50 | #define LIS3_INV_DEV_X -1 | ||
| 51 | #define LIS3_INV_DEV_Y -2 | ||
| 52 | #define LIS3_INV_DEV_Z -3 | ||
| 53 | s8 axis_x; | ||
| 54 | s8 axis_y; | ||
| 55 | s8 axis_z; | ||
| 56 | int (*setup_resources)(void); | ||
| 57 | int (*release_resources)(void); | ||
| 58 | /* Limits for selftest are specified in chip data sheet */ | ||
| 59 | s16 st_min_limits[3]; /* min pass limit x, y, z */ | ||
| 60 | s16 st_max_limits[3]; /* max pass limit x, y, z */ | ||
| 46 | }; | 61 | }; |
| 47 | 62 | ||
| 48 | #endif /* __LIS3LV02D_H_ */ | 63 | #endif /* __LIS3LV02D_H_ */ |
diff --git a/include/linux/memory_hotplug.h b/include/linux/memory_hotplug.h index fed969281a41..35b07b773e6c 100644 --- a/include/linux/memory_hotplug.h +++ b/include/linux/memory_hotplug.h | |||
| @@ -69,7 +69,6 @@ extern void online_page(struct page *page); | |||
| 69 | /* VM interface that may be used by firmware interface */ | 69 | /* VM interface that may be used by firmware interface */ |
| 70 | extern int online_pages(unsigned long, unsigned long); | 70 | extern int online_pages(unsigned long, unsigned long); |
| 71 | extern void __offline_isolated_pages(unsigned long, unsigned long); | 71 | extern void __offline_isolated_pages(unsigned long, unsigned long); |
| 72 | extern int offline_pages(unsigned long, unsigned long, unsigned long); | ||
| 73 | 72 | ||
| 74 | /* reasonably generic interface to expand the physical pages in a zone */ | 73 | /* reasonably generic interface to expand the physical pages in a zone */ |
| 75 | extern int __add_pages(int nid, struct zone *zone, unsigned long start_pfn, | 74 | extern int __add_pages(int nid, struct zone *zone, unsigned long start_pfn, |
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 085c903fe0f1..1cc966cd3e5f 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h | |||
| @@ -201,6 +201,7 @@ extern void mpol_fix_fork_child_flag(struct task_struct *p); | |||
| 201 | extern struct zonelist *huge_zonelist(struct vm_area_struct *vma, | 201 | extern struct zonelist *huge_zonelist(struct vm_area_struct *vma, |
| 202 | unsigned long addr, gfp_t gfp_flags, | 202 | unsigned long addr, gfp_t gfp_flags, |
| 203 | struct mempolicy **mpol, nodemask_t **nodemask); | 203 | struct mempolicy **mpol, nodemask_t **nodemask); |
| 204 | extern bool init_nodemask_of_mempolicy(nodemask_t *mask); | ||
| 204 | extern unsigned slab_node(struct mempolicy *policy); | 205 | extern unsigned slab_node(struct mempolicy *policy); |
| 205 | 206 | ||
| 206 | extern enum zone_type policy_zone; | 207 | extern enum zone_type policy_zone; |
| @@ -328,6 +329,8 @@ static inline struct zonelist *huge_zonelist(struct vm_area_struct *vma, | |||
| 328 | return node_zonelist(0, gfp_flags); | 329 | return node_zonelist(0, gfp_flags); |
| 329 | } | 330 | } |
| 330 | 331 | ||
| 332 | static inline bool init_nodemask_of_mempolicy(nodemask_t *m) { return false; } | ||
| 333 | |||
| 331 | static inline int do_migrate_pages(struct mm_struct *mm, | 334 | static inline int do_migrate_pages(struct mm_struct *mm, |
| 332 | const nodemask_t *from_nodes, | 335 | const nodemask_t *from_nodes, |
| 333 | const nodemask_t *to_nodes, int flags) | 336 | const nodemask_t *to_nodes, int flags) |
diff --git a/include/linux/mfd/88pm8607.h b/include/linux/mfd/88pm8607.h new file mode 100644 index 000000000000..f41b428d2cec --- /dev/null +++ b/include/linux/mfd/88pm8607.h | |||
| @@ -0,0 +1,217 @@ | |||
| 1 | /* | ||
| 2 | * Marvell 88PM8607 Interface | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Marvell International Ltd. | ||
| 5 | * Haojian Zhuang <haojian.zhuang@marvell.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef __LINUX_MFD_88PM8607_H | ||
| 13 | #define __LINUX_MFD_88PM8607_H | ||
| 14 | |||
| 15 | enum { | ||
| 16 | PM8607_ID_BUCK1 = 0, | ||
| 17 | PM8607_ID_BUCK2, | ||
| 18 | PM8607_ID_BUCK3, | ||
| 19 | |||
| 20 | PM8607_ID_LDO1, | ||
| 21 | PM8607_ID_LDO2, | ||
| 22 | PM8607_ID_LDO3, | ||
| 23 | PM8607_ID_LDO4, | ||
| 24 | PM8607_ID_LDO5, | ||
| 25 | PM8607_ID_LDO6, | ||
| 26 | PM8607_ID_LDO7, | ||
| 27 | PM8607_ID_LDO8, | ||
| 28 | PM8607_ID_LDO9, | ||
| 29 | PM8607_ID_LDO10, | ||
| 30 | PM8607_ID_LDO12, | ||
| 31 | PM8607_ID_LDO14, | ||
| 32 | |||
| 33 | PM8607_ID_RG_MAX, | ||
| 34 | }; | ||
| 35 | |||
| 36 | #define CHIP_ID (0x40) | ||
| 37 | #define CHIP_ID_MASK (0xF8) | ||
| 38 | |||
| 39 | /* Interrupt Registers */ | ||
| 40 | #define PM8607_STATUS_1 (0x01) | ||
| 41 | #define PM8607_STATUS_2 (0x02) | ||
| 42 | #define PM8607_INT_STATUS1 (0x03) | ||
| 43 | #define PM8607_INT_STATUS2 (0x04) | ||
| 44 | #define PM8607_INT_STATUS3 (0x05) | ||
| 45 | #define PM8607_INT_MASK_1 (0x06) | ||
| 46 | #define PM8607_INT_MASK_2 (0x07) | ||
| 47 | #define PM8607_INT_MASK_3 (0x08) | ||
| 48 | |||
| 49 | /* Regulator Control Registers */ | ||
| 50 | #define PM8607_LDO1 (0x10) | ||
| 51 | #define PM8607_LDO2 (0x11) | ||
| 52 | #define PM8607_LDO3 (0x12) | ||
| 53 | #define PM8607_LDO4 (0x13) | ||
| 54 | #define PM8607_LDO5 (0x14) | ||
| 55 | #define PM8607_LDO6 (0x15) | ||
| 56 | #define PM8607_LDO7 (0x16) | ||
| 57 | #define PM8607_LDO8 (0x17) | ||
| 58 | #define PM8607_LDO9 (0x18) | ||
| 59 | #define PM8607_LDO10 (0x19) | ||
| 60 | #define PM8607_LDO12 (0x1A) | ||
| 61 | #define PM8607_LDO14 (0x1B) | ||
| 62 | #define PM8607_SLEEP_MODE1 (0x1C) | ||
| 63 | #define PM8607_SLEEP_MODE2 (0x1D) | ||
| 64 | #define PM8607_SLEEP_MODE3 (0x1E) | ||
| 65 | #define PM8607_SLEEP_MODE4 (0x1F) | ||
| 66 | #define PM8607_GO (0x20) | ||
| 67 | #define PM8607_SLEEP_BUCK1 (0x21) | ||
| 68 | #define PM8607_SLEEP_BUCK2 (0x22) | ||
| 69 | #define PM8607_SLEEP_BUCK3 (0x23) | ||
| 70 | #define PM8607_BUCK1 (0x24) | ||
| 71 | #define PM8607_BUCK2 (0x25) | ||
| 72 | #define PM8607_BUCK3 (0x26) | ||
| 73 | #define PM8607_BUCK_CONTROLS (0x27) | ||
| 74 | #define PM8607_SUPPLIES_EN11 (0x2B) | ||
| 75 | #define PM8607_SUPPLIES_EN12 (0x2C) | ||
| 76 | #define PM8607_GROUP1 (0x2D) | ||
| 77 | #define PM8607_GROUP2 (0x2E) | ||
| 78 | #define PM8607_GROUP3 (0x2F) | ||
| 79 | #define PM8607_GROUP4 (0x30) | ||
| 80 | #define PM8607_GROUP5 (0x31) | ||
| 81 | #define PM8607_GROUP6 (0x32) | ||
| 82 | #define PM8607_SUPPLIES_EN21 (0x33) | ||
| 83 | #define PM8607_SUPPLIES_EN22 (0x34) | ||
| 84 | |||
| 85 | /* RTC Control Registers */ | ||
| 86 | #define PM8607_RTC1 (0xA0) | ||
| 87 | #define PM8607_RTC_COUNTER1 (0xA1) | ||
| 88 | #define PM8607_RTC_COUNTER2 (0xA2) | ||
| 89 | #define PM8607_RTC_COUNTER3 (0xA3) | ||
| 90 | #define PM8607_RTC_COUNTER4 (0xA4) | ||
| 91 | #define PM8607_RTC_EXPIRE1 (0xA5) | ||
| 92 | #define PM8607_RTC_EXPIRE2 (0xA6) | ||
| 93 | #define PM8607_RTC_EXPIRE3 (0xA7) | ||
| 94 | #define PM8607_RTC_EXPIRE4 (0xA8) | ||
| 95 | #define PM8607_RTC_TRIM1 (0xA9) | ||
| 96 | #define PM8607_RTC_TRIM2 (0xAA) | ||
| 97 | #define PM8607_RTC_TRIM3 (0xAB) | ||
| 98 | #define PM8607_RTC_TRIM4 (0xAC) | ||
| 99 | #define PM8607_RTC_MISC1 (0xAD) | ||
| 100 | #define PM8607_RTC_MISC2 (0xAE) | ||
| 101 | #define PM8607_RTC_MISC3 (0xAF) | ||
| 102 | |||
| 103 | /* Misc Registers */ | ||
| 104 | #define PM8607_CHIP_ID (0x00) | ||
| 105 | #define PM8607_LDO1 (0x10) | ||
| 106 | #define PM8607_DVC3 (0x26) | ||
| 107 | #define PM8607_MISC1 (0x40) | ||
| 108 | |||
| 109 | /* bit definitions for PM8607 events */ | ||
| 110 | #define PM8607_EVENT_ONKEY (1 << 0) | ||
| 111 | #define PM8607_EVENT_EXTON (1 << 1) | ||
| 112 | #define PM8607_EVENT_CHG (1 << 2) | ||
| 113 | #define PM8607_EVENT_BAT (1 << 3) | ||
| 114 | #define PM8607_EVENT_RTC (1 << 4) | ||
| 115 | #define PM8607_EVENT_CC (1 << 5) | ||
| 116 | #define PM8607_EVENT_VBAT (1 << 8) | ||
| 117 | #define PM8607_EVENT_VCHG (1 << 9) | ||
| 118 | #define PM8607_EVENT_VSYS (1 << 10) | ||
| 119 | #define PM8607_EVENT_TINT (1 << 11) | ||
| 120 | #define PM8607_EVENT_GPADC0 (1 << 12) | ||
| 121 | #define PM8607_EVENT_GPADC1 (1 << 13) | ||
| 122 | #define PM8607_EVENT_GPADC2 (1 << 14) | ||
| 123 | #define PM8607_EVENT_GPADC3 (1 << 15) | ||
| 124 | #define PM8607_EVENT_AUDIO_SHORT (1 << 16) | ||
| 125 | #define PM8607_EVENT_PEN (1 << 17) | ||
| 126 | #define PM8607_EVENT_HEADSET (1 << 18) | ||
| 127 | #define PM8607_EVENT_HOOK (1 << 19) | ||
| 128 | #define PM8607_EVENT_MICIN (1 << 20) | ||
| 129 | #define PM8607_EVENT_CHG_TIMEOUT (1 << 21) | ||
| 130 | #define PM8607_EVENT_CHG_DONE (1 << 22) | ||
| 131 | #define PM8607_EVENT_CHG_FAULT (1 << 23) | ||
| 132 | |||
| 133 | /* bit definitions of Status Query Interface */ | ||
| 134 | #define PM8607_STATUS_CC (1 << 3) | ||
| 135 | #define PM8607_STATUS_PEN (1 << 4) | ||
| 136 | #define PM8607_STATUS_HEADSET (1 << 5) | ||
| 137 | #define PM8607_STATUS_HOOK (1 << 6) | ||
| 138 | #define PM8607_STATUS_MICIN (1 << 7) | ||
| 139 | #define PM8607_STATUS_ONKEY (1 << 8) | ||
| 140 | #define PM8607_STATUS_EXTON (1 << 9) | ||
| 141 | #define PM8607_STATUS_CHG (1 << 10) | ||
| 142 | #define PM8607_STATUS_BAT (1 << 11) | ||
| 143 | #define PM8607_STATUS_VBUS (1 << 12) | ||
| 144 | #define PM8607_STATUS_OV (1 << 13) | ||
| 145 | |||
| 146 | /* bit definitions of BUCK3 */ | ||
| 147 | #define PM8607_BUCK3_DOUBLE (1 << 6) | ||
| 148 | |||
| 149 | /* bit definitions of Misc1 */ | ||
| 150 | #define PM8607_MISC1_PI2C (1 << 0) | ||
| 151 | |||
| 152 | /* Interrupt Number in 88PM8607 */ | ||
| 153 | enum { | ||
| 154 | PM8607_IRQ_ONKEY = 0, | ||
| 155 | PM8607_IRQ_EXTON, | ||
| 156 | PM8607_IRQ_CHG, | ||
| 157 | PM8607_IRQ_BAT, | ||
| 158 | PM8607_IRQ_RTC, | ||
| 159 | PM8607_IRQ_VBAT = 8, | ||
| 160 | PM8607_IRQ_VCHG, | ||
| 161 | PM8607_IRQ_VSYS, | ||
| 162 | PM8607_IRQ_TINT, | ||
| 163 | PM8607_IRQ_GPADC0, | ||
| 164 | PM8607_IRQ_GPADC1, | ||
| 165 | PM8607_IRQ_GPADC2, | ||
| 166 | PM8607_IRQ_GPADC3, | ||
| 167 | PM8607_IRQ_AUDIO_SHORT = 16, | ||
| 168 | PM8607_IRQ_PEN, | ||
| 169 | PM8607_IRQ_HEADSET, | ||
| 170 | PM8607_IRQ_HOOK, | ||
| 171 | PM8607_IRQ_MICIN, | ||
| 172 | PM8607_IRQ_CHG_FAIL, | ||
| 173 | PM8607_IRQ_CHG_DONE, | ||
| 174 | PM8607_IRQ_CHG_FAULT, | ||
| 175 | }; | ||
| 176 | |||
| 177 | enum { | ||
| 178 | PM8607_CHIP_A0 = 0x40, | ||
| 179 | PM8607_CHIP_A1 = 0x41, | ||
| 180 | PM8607_CHIP_B0 = 0x48, | ||
| 181 | }; | ||
| 182 | |||
| 183 | |||
| 184 | struct pm8607_chip { | ||
| 185 | struct device *dev; | ||
| 186 | struct mutex io_lock; | ||
| 187 | struct i2c_client *client; | ||
| 188 | |||
| 189 | int (*read)(struct pm8607_chip *chip, int reg, int bytes, void *dest); | ||
| 190 | int (*write)(struct pm8607_chip *chip, int reg, int bytes, void *src); | ||
| 191 | |||
| 192 | int buck3_double; /* DVC ramp slope double */ | ||
| 193 | unsigned char chip_id; | ||
| 194 | |||
| 195 | }; | ||
| 196 | |||
| 197 | #define PM8607_MAX_REGULATOR 15 /* 3 Bucks, 12 LDOs */ | ||
| 198 | |||
| 199 | enum { | ||
| 200 | GI2C_PORT = 0, | ||
| 201 | PI2C_PORT, | ||
| 202 | }; | ||
| 203 | |||
| 204 | struct pm8607_platform_data { | ||
| 205 | int i2c_port; /* Controlled by GI2C or PI2C */ | ||
| 206 | struct regulator_init_data *regulator[PM8607_MAX_REGULATOR]; | ||
| 207 | }; | ||
| 208 | |||
| 209 | extern int pm8607_reg_read(struct pm8607_chip *, int); | ||
| 210 | extern int pm8607_reg_write(struct pm8607_chip *, int, unsigned char); | ||
| 211 | extern int pm8607_bulk_read(struct pm8607_chip *, int, int, | ||
| 212 | unsigned char *); | ||
| 213 | extern int pm8607_bulk_write(struct pm8607_chip *, int, int, | ||
| 214 | unsigned char *); | ||
| 215 | extern int pm8607_set_bits(struct pm8607_chip *, int, unsigned char, | ||
| 216 | unsigned char); | ||
| 217 | #endif /* __LINUX_MFD_88PM8607_H */ | ||
diff --git a/include/linux/mfd/ab4500.h b/include/linux/mfd/ab4500.h new file mode 100644 index 000000000000..a42a7033ae53 --- /dev/null +++ b/include/linux/mfd/ab4500.h | |||
| @@ -0,0 +1,262 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2009 ST-Ericsson | ||
| 3 | * | ||
| 4 | * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com> | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License version 2, as | ||
| 8 | * published by the Free Software Foundation. | ||
| 9 | * | ||
| 10 | * AB4500 device core funtions, for client access | ||
| 11 | */ | ||
| 12 | #ifndef MFD_AB4500_H | ||
| 13 | #define MFD_AB4500_H | ||
| 14 | |||
| 15 | #include <linux/device.h> | ||
| 16 | |||
| 17 | /* | ||
| 18 | * AB4500 bank addresses | ||
| 19 | */ | ||
| 20 | #define AB4500_SYS_CTRL1_BLOCK 0x1 | ||
| 21 | #define AB4500_SYS_CTRL2_BLOCK 0x2 | ||
| 22 | #define AB4500_REGU_CTRL1 0x3 | ||
| 23 | #define AB4500_REGU_CTRL2 0x4 | ||
| 24 | #define AB4500_USB 0x5 | ||
| 25 | #define AB4500_TVOUT 0x6 | ||
| 26 | #define AB4500_DBI 0x7 | ||
| 27 | #define AB4500_ECI_AV_ACC 0x8 | ||
| 28 | #define AB4500_RESERVED 0x9 | ||
| 29 | #define AB4500_GPADC 0xA | ||
| 30 | #define AB4500_CHARGER 0xB | ||
| 31 | #define AB4500_GAS_GAUGE 0xC | ||
| 32 | #define AB4500_AUDIO 0xD | ||
| 33 | #define AB4500_INTERRUPT 0xE | ||
| 34 | #define AB4500_RTC 0xF | ||
| 35 | #define AB4500_MISC 0x10 | ||
| 36 | #define AB4500_DEBUG 0x12 | ||
| 37 | #define AB4500_PROD_TEST 0x13 | ||
| 38 | #define AB4500_OTP_EMUL 0x15 | ||
| 39 | |||
| 40 | /* | ||
| 41 | * System control 1 register offsets. | ||
| 42 | * Bank = 0x01 | ||
| 43 | */ | ||
| 44 | #define AB4500_TURNON_STAT_REG 0x0100 | ||
| 45 | #define AB4500_RESET_STAT_REG 0x0101 | ||
| 46 | #define AB4500_PONKEY1_PRESS_STAT_REG 0x0102 | ||
| 47 | |||
| 48 | #define AB4500_FSM_STAT1_REG 0x0140 | ||
| 49 | #define AB4500_FSM_STAT2_REG 0x0141 | ||
| 50 | #define AB4500_SYSCLK_REQ_STAT_REG 0x0142 | ||
| 51 | #define AB4500_USB_STAT1_REG 0x0143 | ||
| 52 | #define AB4500_USB_STAT2_REG 0x0144 | ||
| 53 | #define AB4500_STATUS_SPARE1_REG 0x0145 | ||
| 54 | #define AB4500_STATUS_SPARE2_REG 0x0146 | ||
| 55 | |||
| 56 | #define AB4500_CTRL1_REG 0x0180 | ||
| 57 | #define AB4500_CTRL2_REG 0x0181 | ||
| 58 | |||
| 59 | /* | ||
| 60 | * System control 2 register offsets. | ||
| 61 | * bank = 0x02 | ||
| 62 | */ | ||
| 63 | #define AB4500_CTRL3_REG 0x0200 | ||
| 64 | #define AB4500_MAIN_WDOG_CTRL_REG 0x0201 | ||
| 65 | #define AB4500_MAIN_WDOG_TIMER_REG 0x0202 | ||
| 66 | #define AB4500_LOW_BAT_REG 0x0203 | ||
| 67 | #define AB4500_BATT_OK_REG 0x0204 | ||
| 68 | #define AB4500_SYSCLK_TIMER_REG 0x0205 | ||
| 69 | #define AB4500_SMPSCLK_CTRL_REG 0x0206 | ||
| 70 | #define AB4500_SMPSCLK_SEL1_REG 0x0207 | ||
| 71 | #define AB4500_SMPSCLK_SEL2_REG 0x0208 | ||
| 72 | #define AB4500_SMPSCLK_SEL3_REG 0x0209 | ||
| 73 | #define AB4500_SYSULPCLK_CONF_REG 0x020A | ||
| 74 | #define AB4500_SYSULPCLK_CTRL1_REG 0x020B | ||
| 75 | #define AB4500_SYSCLK_CTRL_REG 0x020C | ||
| 76 | #define AB4500_SYSCLK_REQ1_VALID_REG 0x020D | ||
| 77 | #define AB4500_SYSCLK_REQ_VALID_REG 0x020E | ||
| 78 | #define AB4500_SYSCTRL_SPARE_REG 0x020F | ||
| 79 | #define AB4500_PAD_CONF_REG 0x0210 | ||
| 80 | |||
| 81 | /* | ||
| 82 | * Regu control1 register offsets | ||
| 83 | * Bank = 0x03 | ||
| 84 | */ | ||
| 85 | #define AB4500_REGU_SERIAL_CTRL1_REG 0x0300 | ||
| 86 | #define AB4500_REGU_SERIAL_CTRL2_REG 0x0301 | ||
| 87 | #define AB4500_REGU_SERIAL_CTRL3_REG 0x0302 | ||
| 88 | #define AB4500_REGU_REQ_CTRL1_REG 0x0303 | ||
| 89 | #define AB4500_REGU_REQ_CTRL2_REG 0x0304 | ||
| 90 | #define AB4500_REGU_REQ_CTRL3_REG 0x0305 | ||
| 91 | #define AB4500_REGU_REQ_CTRL4_REG 0x0306 | ||
| 92 | #define AB4500_REGU_MISC1_REG 0x0380 | ||
| 93 | #define AB4500_REGU_OTGSUPPLY_CTRL_REG 0x0381 | ||
| 94 | #define AB4500_REGU_VUSB_CTRL_REG 0x0382 | ||
| 95 | #define AB4500_REGU_VAUDIO_SUPPLY_REG 0x0383 | ||
| 96 | #define AB4500_REGU_CTRL1_SPARE_REG 0x0384 | ||
| 97 | |||
| 98 | /* | ||
| 99 | * Regu control2 Vmod register offsets | ||
| 100 | */ | ||
| 101 | #define AB4500_REGU_VMOD_REGU_REG 0x0440 | ||
| 102 | #define AB4500_REGU_VMOD_SEL1_REG 0x0441 | ||
| 103 | #define AB4500_REGU_VMOD_SEL2_REG 0x0442 | ||
| 104 | #define AB4500_REGU_CTRL_DISCH_REG 0x0443 | ||
| 105 | #define AB4500_REGU_CTRL_DISCH2_REG 0x0444 | ||
| 106 | |||
| 107 | /* | ||
| 108 | * USB/ULPI register offsets | ||
| 109 | * Bank : 0x5 | ||
| 110 | */ | ||
| 111 | #define AB4500_USB_LINE_STAT_REG 0x0580 | ||
| 112 | #define AB4500_USB_LINE_CTRL1_REG 0x0581 | ||
| 113 | #define AB4500_USB_LINE_CTRL2_REG 0x0582 | ||
| 114 | #define AB4500_USB_LINE_CTRL3_REG 0x0583 | ||
| 115 | #define AB4500_USB_LINE_CTRL4_REG 0x0584 | ||
| 116 | #define AB4500_USB_LINE_CTRL5_REG 0x0585 | ||
| 117 | #define AB4500_USB_OTG_CTRL_REG 0x0587 | ||
| 118 | #define AB4500_USB_OTG_STAT_REG 0x0588 | ||
| 119 | #define AB4500_USB_OTG_STAT_REG 0x0588 | ||
| 120 | #define AB4500_USB_CTRL_SPARE_REG 0x0589 | ||
| 121 | #define AB4500_USB_PHY_CTRL_REG 0x058A | ||
| 122 | |||
| 123 | /* | ||
| 124 | * TVOUT / CTRL register offsets | ||
| 125 | * Bank : 0x06 | ||
| 126 | */ | ||
| 127 | #define AB4500_TVOUT_CTRL_REG 0x0680 | ||
| 128 | |||
| 129 | /* | ||
| 130 | * DBI register offsets | ||
| 131 | * Bank : 0x07 | ||
| 132 | */ | ||
| 133 | #define AB4500_DBI_REG1_REG 0x0700 | ||
| 134 | #define AB4500_DBI_REG2_REG 0x0701 | ||
| 135 | |||
| 136 | /* | ||
| 137 | * ECI regsiter offsets | ||
| 138 | * Bank : 0x08 | ||
| 139 | */ | ||
| 140 | #define AB4500_ECI_CTRL_REG 0x0800 | ||
| 141 | #define AB4500_ECI_HOOKLEVEL_REG 0x0801 | ||
| 142 | #define AB4500_ECI_DATAOUT_REG 0x0802 | ||
| 143 | #define AB4500_ECI_DATAIN_REG 0x0803 | ||
| 144 | |||
| 145 | /* | ||
| 146 | * AV Connector register offsets | ||
| 147 | * Bank : 0x08 | ||
| 148 | */ | ||
| 149 | #define AB4500_AV_CONN_REG 0x0840 | ||
| 150 | |||
| 151 | /* | ||
| 152 | * Accessory detection register offsets | ||
| 153 | * Bank : 0x08 | ||
| 154 | */ | ||
| 155 | #define AB4500_ACC_DET_DB1_REG 0x0880 | ||
| 156 | #define AB4500_ACC_DET_DB2_REG 0x0881 | ||
| 157 | |||
| 158 | /* | ||
| 159 | * GPADC register offsets | ||
| 160 | * Bank : 0x0A | ||
| 161 | */ | ||
| 162 | #define AB4500_GPADC_CTRL1_REG 0x0A00 | ||
| 163 | #define AB4500_GPADC_CTRL2_REG 0x0A01 | ||
| 164 | #define AB4500_GPADC_CTRL3_REG 0x0A02 | ||
| 165 | #define AB4500_GPADC_AUTO_TIMER_REG 0x0A03 | ||
| 166 | #define AB4500_GPADC_STAT_REG 0x0A04 | ||
| 167 | #define AB4500_GPADC_MANDATAL_REG 0x0A05 | ||
| 168 | #define AB4500_GPADC_MANDATAH_REG 0x0A06 | ||
| 169 | #define AB4500_GPADC_AUTODATAL_REG 0x0A07 | ||
| 170 | #define AB4500_GPADC_AUTODATAH_REG 0x0A08 | ||
| 171 | #define AB4500_GPADC_MUX_CTRL_REG 0x0A09 | ||
| 172 | |||
| 173 | /* | ||
| 174 | * Charger / status register offfsets | ||
| 175 | * Bank : 0x0B | ||
| 176 | */ | ||
| 177 | #define AB4500_CH_STATUS1_REG 0x0B00 | ||
| 178 | #define AB4500_CH_STATUS2_REG 0x0B01 | ||
| 179 | #define AB4500_CH_USBCH_STAT1_REG 0x0B02 | ||
| 180 | #define AB4500_CH_USBCH_STAT2_REG 0x0B03 | ||
| 181 | #define AB4500_CH_FSM_STAT_REG 0x0B04 | ||
| 182 | #define AB4500_CH_STAT_REG 0x0B05 | ||
| 183 | |||
| 184 | /* | ||
| 185 | * Charger / control register offfsets | ||
| 186 | * Bank : 0x0B | ||
| 187 | */ | ||
| 188 | #define AB4500_CH_VOLT_LVL_REG 0x0B40 | ||
| 189 | |||
| 190 | /* | ||
| 191 | * Charger / main control register offfsets | ||
| 192 | * Bank : 0x0B | ||
| 193 | */ | ||
| 194 | #define AB4500_MCH_CTRL1 0x0B80 | ||
| 195 | #define AB4500_MCH_CTRL2 0x0B81 | ||
| 196 | #define AB4500_MCH_IPT_CURLVL_REG 0x0B82 | ||
| 197 | #define AB4500_CH_WD_REG 0x0B83 | ||
| 198 | |||
| 199 | /* | ||
| 200 | * Charger / USB control register offsets | ||
| 201 | * Bank : 0x0B | ||
| 202 | */ | ||
| 203 | #define AB4500_USBCH_CTRL1_REG 0x0BC0 | ||
| 204 | #define AB4500_USBCH_CTRL2_REG 0x0BC1 | ||
| 205 | #define AB4500_USBCH_IPT_CRNTLVL_REG 0x0BC2 | ||
| 206 | |||
| 207 | /* | ||
| 208 | * RTC bank register offsets | ||
| 209 | * Bank : 0xF | ||
| 210 | */ | ||
| 211 | #define AB4500_RTC_SOFF_STAT_REG 0x0F00 | ||
| 212 | #define AB4500_RTC_CC_CONF_REG 0x0F01 | ||
| 213 | #define AB4500_RTC_READ_REQ_REG 0x0F02 | ||
| 214 | #define AB4500_RTC_WATCH_TSECMID_REG 0x0F03 | ||
| 215 | #define AB4500_RTC_WATCH_TSECHI_REG 0x0F04 | ||
| 216 | #define AB4500_RTC_WATCH_TMIN_LOW_REG 0x0F05 | ||
| 217 | #define AB4500_RTC_WATCH_TMIN_MID_REG 0x0F06 | ||
| 218 | #define AB4500_RTC_WATCH_TMIN_HI_REG 0x0F07 | ||
| 219 | #define AB4500_RTC_ALRM_MIN_LOW_REG 0x0F08 | ||
| 220 | #define AB4500_RTC_ALRM_MIN_MID_REG 0x0F09 | ||
| 221 | #define AB4500_RTC_ALRM_MIN_HI_REG 0x0F0A | ||
| 222 | #define AB4500_RTC_STAT_REG 0x0F0B | ||
| 223 | #define AB4500_RTC_BKUP_CHG_REG 0x0F0C | ||
| 224 | #define AB4500_RTC_FORCE_BKUP_REG 0x0F0D | ||
| 225 | #define AB4500_RTC_CALIB_REG 0x0F0E | ||
| 226 | #define AB4500_RTC_SWITCH_STAT_REG 0x0F0F | ||
| 227 | |||
| 228 | /* | ||
| 229 | * PWM Out generators | ||
| 230 | * Bank: 0x10 | ||
| 231 | */ | ||
| 232 | #define AB4500_PWM_OUT_CTRL1_REG 0x1060 | ||
| 233 | #define AB4500_PWM_OUT_CTRL2_REG 0x1061 | ||
| 234 | #define AB4500_PWM_OUT_CTRL3_REG 0x1062 | ||
| 235 | #define AB4500_PWM_OUT_CTRL4_REG 0x1063 | ||
| 236 | #define AB4500_PWM_OUT_CTRL5_REG 0x1064 | ||
| 237 | #define AB4500_PWM_OUT_CTRL6_REG 0x1065 | ||
| 238 | #define AB4500_PWM_OUT_CTRL7_REG 0x1066 | ||
| 239 | |||
| 240 | #define AB4500_I2C_PAD_CTRL_REG 0x1067 | ||
| 241 | #define AB4500_REV_REG 0x1080 | ||
| 242 | |||
| 243 | /** | ||
| 244 | * struct ab4500 | ||
| 245 | * @spi: spi device structure | ||
| 246 | * @tx_buf: transmit buffer | ||
| 247 | * @rx_buf: receive buffer | ||
| 248 | * @lock: sync primitive | ||
| 249 | */ | ||
| 250 | struct ab4500 { | ||
| 251 | struct spi_device *spi; | ||
| 252 | unsigned long tx_buf[4]; | ||
| 253 | unsigned long rx_buf[4]; | ||
| 254 | struct mutex lock; | ||
| 255 | }; | ||
| 256 | |||
| 257 | int ab4500_write(struct ab4500 *ab4500, unsigned char block, | ||
| 258 | unsigned long addr, unsigned char data); | ||
| 259 | int ab4500_read(struct ab4500 *ab4500, unsigned char block, | ||
| 260 | unsigned long addr); | ||
| 261 | |||
| 262 | #endif /* MFD_AB4500_H */ | ||
diff --git a/include/linux/mfd/adp5520.h b/include/linux/mfd/adp5520.h new file mode 100644 index 000000000000..ac37558a4673 --- /dev/null +++ b/include/linux/mfd/adp5520.h | |||
| @@ -0,0 +1,299 @@ | |||
| 1 | /* | ||
| 2 | * Definitions and platform data for Analog Devices | ||
| 3 | * ADP5520/ADP5501 MFD PMICs (Backlight, LED, GPIO and Keys) | ||
| 4 | * | ||
| 5 | * Copyright 2009 Analog Devices Inc. | ||
| 6 | * | ||
| 7 | * Licensed under the GPL-2 or later. | ||
| 8 | */ | ||
| 9 | |||
| 10 | |||
| 11 | #ifndef __LINUX_MFD_ADP5520_H | ||
| 12 | #define __LINUX_MFD_ADP5520_H | ||
| 13 | |||
| 14 | #define ID_ADP5520 5520 | ||
| 15 | #define ID_ADP5501 5501 | ||
| 16 | |||
| 17 | /* | ||
| 18 | * ADP5520/ADP5501 Register Map | ||
| 19 | */ | ||
| 20 | |||
| 21 | #define ADP5520_MODE_STATUS 0x00 | ||
| 22 | #define ADP5520_INTERRUPT_ENABLE 0x01 | ||
| 23 | #define ADP5520_BL_CONTROL 0x02 | ||
| 24 | #define ADP5520_BL_TIME 0x03 | ||
| 25 | #define ADP5520_BL_FADE 0x04 | ||
| 26 | #define ADP5520_DAYLIGHT_MAX 0x05 | ||
| 27 | #define ADP5520_DAYLIGHT_DIM 0x06 | ||
| 28 | #define ADP5520_OFFICE_MAX 0x07 | ||
| 29 | #define ADP5520_OFFICE_DIM 0x08 | ||
| 30 | #define ADP5520_DARK_MAX 0x09 | ||
| 31 | #define ADP5520_DARK_DIM 0x0A | ||
| 32 | #define ADP5520_BL_VALUE 0x0B | ||
| 33 | #define ADP5520_ALS_CMPR_CFG 0x0C | ||
| 34 | #define ADP5520_L2_TRIP 0x0D | ||
| 35 | #define ADP5520_L2_HYS 0x0E | ||
| 36 | #define ADP5520_L3_TRIP 0x0F | ||
| 37 | #define ADP5520_L3_HYS 0x10 | ||
| 38 | #define ADP5520_LED_CONTROL 0x11 | ||
| 39 | #define ADP5520_LED_TIME 0x12 | ||
| 40 | #define ADP5520_LED_FADE 0x13 | ||
| 41 | #define ADP5520_LED1_CURRENT 0x14 | ||
| 42 | #define ADP5520_LED2_CURRENT 0x15 | ||
| 43 | #define ADP5520_LED3_CURRENT 0x16 | ||
| 44 | |||
| 45 | /* | ||
| 46 | * ADP5520 Register Map | ||
| 47 | */ | ||
| 48 | |||
| 49 | #define ADP5520_GPIO_CFG_1 0x17 | ||
| 50 | #define ADP5520_GPIO_CFG_2 0x18 | ||
| 51 | #define ADP5520_GPIO_IN 0x19 | ||
| 52 | #define ADP5520_GPIO_OUT 0x1A | ||
| 53 | #define ADP5520_GPIO_INT_EN 0x1B | ||
| 54 | #define ADP5520_GPIO_INT_STAT 0x1C | ||
| 55 | #define ADP5520_GPIO_INT_LVL 0x1D | ||
| 56 | #define ADP5520_GPIO_DEBOUNCE 0x1E | ||
| 57 | #define ADP5520_GPIO_PULLUP 0x1F | ||
| 58 | #define ADP5520_KP_INT_STAT_1 0x20 | ||
| 59 | #define ADP5520_KP_INT_STAT_2 0x21 | ||
| 60 | #define ADP5520_KR_INT_STAT_1 0x22 | ||
| 61 | #define ADP5520_KR_INT_STAT_2 0x23 | ||
| 62 | #define ADP5520_KEY_STAT_1 0x24 | ||
| 63 | #define ADP5520_KEY_STAT_2 0x25 | ||
| 64 | |||
| 65 | /* | ||
| 66 | * MODE_STATUS bits | ||
| 67 | */ | ||
| 68 | |||
| 69 | #define ADP5520_nSTNBY (1 << 7) | ||
| 70 | #define ADP5520_BL_EN (1 << 6) | ||
| 71 | #define ADP5520_DIM_EN (1 << 5) | ||
| 72 | #define ADP5520_OVP_INT (1 << 4) | ||
| 73 | #define ADP5520_CMPR_INT (1 << 3) | ||
| 74 | #define ADP5520_GPI_INT (1 << 2) | ||
| 75 | #define ADP5520_KR_INT (1 << 1) | ||
| 76 | #define ADP5520_KP_INT (1 << 0) | ||
| 77 | |||
| 78 | /* | ||
| 79 | * INTERRUPT_ENABLE bits | ||
| 80 | */ | ||
| 81 | |||
| 82 | #define ADP5520_AUTO_LD_EN (1 << 4) | ||
| 83 | #define ADP5520_CMPR_IEN (1 << 3) | ||
| 84 | #define ADP5520_OVP_IEN (1 << 2) | ||
| 85 | #define ADP5520_KR_IEN (1 << 1) | ||
| 86 | #define ADP5520_KP_IEN (1 << 0) | ||
| 87 | |||
| 88 | /* | ||
| 89 | * BL_CONTROL bits | ||
| 90 | */ | ||
| 91 | |||
| 92 | #define ADP5520_BL_LVL ((x) << 5) | ||
| 93 | #define ADP5520_BL_LAW ((x) << 4) | ||
| 94 | #define ADP5520_BL_AUTO_ADJ (1 << 3) | ||
| 95 | #define ADP5520_OVP_EN (1 << 2) | ||
| 96 | #define ADP5520_FOVR (1 << 1) | ||
| 97 | #define ADP5520_KP_BL_EN (1 << 0) | ||
| 98 | |||
| 99 | /* | ||
| 100 | * ALS_CMPR_CFG bits | ||
| 101 | */ | ||
| 102 | |||
| 103 | #define ADP5520_L3_OUT (1 << 3) | ||
| 104 | #define ADP5520_L2_OUT (1 << 2) | ||
| 105 | #define ADP5520_L3_EN (1 << 1) | ||
| 106 | |||
| 107 | #define ADP5020_MAX_BRIGHTNESS 0x7F | ||
| 108 | |||
| 109 | #define FADE_VAL(in, out) ((0xF & (in)) | ((0xF & (out)) << 4)) | ||
| 110 | #define BL_CTRL_VAL(law, auto) (((1 & (auto)) << 3) | ((0x3 & (law)) << 4)) | ||
| 111 | #define ALS_CMPR_CFG_VAL(filt, l3_en) (((0x7 & filt) << 5) | l3_en) | ||
| 112 | |||
| 113 | /* | ||
| 114 | * LEDs subdevice bits and masks | ||
| 115 | */ | ||
| 116 | |||
| 117 | #define ADP5520_01_MAXLEDS 3 | ||
| 118 | |||
| 119 | #define ADP5520_FLAG_LED_MASK 0x3 | ||
| 120 | #define ADP5520_FLAG_OFFT_SHIFT 8 | ||
| 121 | #define ADP5520_FLAG_OFFT_MASK 0x3 | ||
| 122 | |||
| 123 | #define ADP5520_R3_MODE (1 << 5) | ||
| 124 | #define ADP5520_C3_MODE (1 << 4) | ||
| 125 | #define ADP5520_LED_LAW (1 << 3) | ||
| 126 | #define ADP5520_LED3_EN (1 << 2) | ||
| 127 | #define ADP5520_LED2_EN (1 << 1) | ||
| 128 | #define ADP5520_LED1_EN (1 << 0) | ||
| 129 | |||
| 130 | /* | ||
| 131 | * GPIO subdevice bits and masks | ||
| 132 | */ | ||
| 133 | |||
| 134 | #define ADP5520_MAXGPIOS 8 | ||
| 135 | |||
| 136 | #define ADP5520_GPIO_C3 (1 << 7) /* LED2 or GPIO7 aka C3 */ | ||
| 137 | #define ADP5520_GPIO_C2 (1 << 6) | ||
| 138 | #define ADP5520_GPIO_C1 (1 << 5) | ||
| 139 | #define ADP5520_GPIO_C0 (1 << 4) | ||
| 140 | #define ADP5520_GPIO_R3 (1 << 3) /* LED3 or GPIO3 aka R3 */ | ||
| 141 | #define ADP5520_GPIO_R2 (1 << 2) | ||
| 142 | #define ADP5520_GPIO_R1 (1 << 1) | ||
| 143 | #define ADP5520_GPIO_R0 (1 << 0) | ||
| 144 | |||
| 145 | struct adp5520_gpio_platform_data { | ||
| 146 | unsigned gpio_start; | ||
| 147 | u8 gpio_en_mask; | ||
| 148 | u8 gpio_pullup_mask; | ||
| 149 | }; | ||
| 150 | |||
| 151 | /* | ||
| 152 | * Keypad subdevice bits and masks | ||
| 153 | */ | ||
| 154 | |||
| 155 | #define ADP5520_MAXKEYS 16 | ||
| 156 | |||
| 157 | #define ADP5520_COL_C3 (1 << 7) /* LED2 or GPIO7 aka C3 */ | ||
| 158 | #define ADP5520_COL_C2 (1 << 6) | ||
| 159 | #define ADP5520_COL_C1 (1 << 5) | ||
| 160 | #define ADP5520_COL_C0 (1 << 4) | ||
| 161 | #define ADP5520_ROW_R3 (1 << 3) /* LED3 or GPIO3 aka R3 */ | ||
| 162 | #define ADP5520_ROW_R2 (1 << 2) | ||
| 163 | #define ADP5520_ROW_R1 (1 << 1) | ||
| 164 | #define ADP5520_ROW_R0 (1 << 0) | ||
| 165 | |||
| 166 | #define ADP5520_KEY(row, col) (col + row * 4) | ||
| 167 | #define ADP5520_KEYMAPSIZE ADP5520_MAXKEYS | ||
| 168 | |||
| 169 | struct adp5520_keys_platform_data { | ||
| 170 | int rows_en_mask; /* Number of rows */ | ||
| 171 | int cols_en_mask; /* Number of columns */ | ||
| 172 | const unsigned short *keymap; /* Pointer to keymap */ | ||
| 173 | unsigned short keymapsize; /* Keymap size */ | ||
| 174 | unsigned repeat:1; /* Enable key repeat */ | ||
| 175 | }; | ||
| 176 | |||
| 177 | |||
| 178 | /* | ||
| 179 | * LEDs subdevice platform data | ||
| 180 | */ | ||
| 181 | |||
| 182 | #define FLAG_ID_ADP5520_LED1_ADP5501_LED0 1 /* ADP5520 PIN ILED */ | ||
| 183 | #define FLAG_ID_ADP5520_LED2_ADP5501_LED1 2 /* ADP5520 PIN C3 */ | ||
| 184 | #define FLAG_ID_ADP5520_LED3_ADP5501_LED2 3 /* ADP5520 PIN R3 */ | ||
| 185 | |||
| 186 | #define ADP5520_LED_DIS_BLINK (0 << ADP5520_FLAG_OFFT_SHIFT) | ||
| 187 | #define ADP5520_LED_OFFT_600ms (1 << ADP5520_FLAG_OFFT_SHIFT) | ||
| 188 | #define ADP5520_LED_OFFT_800ms (2 << ADP5520_FLAG_OFFT_SHIFT) | ||
| 189 | #define ADP5520_LED_OFFT_1200ms (3 << ADP5520_FLAG_OFFT_SHIFT) | ||
| 190 | |||
| 191 | #define ADP5520_LED_ONT_200ms 0 | ||
| 192 | #define ADP5520_LED_ONT_600ms 1 | ||
| 193 | #define ADP5520_LED_ONT_800ms 2 | ||
| 194 | #define ADP5520_LED_ONT_1200ms 3 | ||
| 195 | |||
| 196 | struct adp5520_leds_platform_data { | ||
| 197 | int num_leds; | ||
| 198 | struct led_info *leds; | ||
| 199 | u8 fade_in; /* Backlight Fade-In Timer */ | ||
| 200 | u8 fade_out; /* Backlight Fade-Out Timer */ | ||
| 201 | u8 led_on_time; | ||
| 202 | }; | ||
| 203 | |||
| 204 | /* | ||
| 205 | * Backlight subdevice platform data | ||
| 206 | */ | ||
| 207 | |||
| 208 | #define ADP5520_FADE_T_DIS 0 /* Fade Timer Disabled */ | ||
| 209 | #define ADP5520_FADE_T_300ms 1 /* 0.3 Sec */ | ||
| 210 | #define ADP5520_FADE_T_600ms 2 | ||
| 211 | #define ADP5520_FADE_T_900ms 3 | ||
| 212 | #define ADP5520_FADE_T_1200ms 4 | ||
| 213 | #define ADP5520_FADE_T_1500ms 5 | ||
| 214 | #define ADP5520_FADE_T_1800ms 6 | ||
| 215 | #define ADP5520_FADE_T_2100ms 7 | ||
| 216 | #define ADP5520_FADE_T_2400ms 8 | ||
| 217 | #define ADP5520_FADE_T_2700ms 9 | ||
| 218 | #define ADP5520_FADE_T_3000ms 10 | ||
| 219 | #define ADP5520_FADE_T_3500ms 11 | ||
| 220 | #define ADP5520_FADE_T_4000ms 12 | ||
| 221 | #define ADP5520_FADE_T_4500ms 13 | ||
| 222 | #define ADP5520_FADE_T_5000ms 14 | ||
| 223 | #define ADP5520_FADE_T_5500ms 15 /* 5.5 Sec */ | ||
| 224 | |||
| 225 | #define ADP5520_BL_LAW_LINEAR 0 | ||
| 226 | #define ADP5520_BL_LAW_SQUARE 1 | ||
| 227 | #define ADP5520_BL_LAW_CUBIC1 2 | ||
| 228 | #define ADP5520_BL_LAW_CUBIC2 3 | ||
| 229 | |||
| 230 | #define ADP5520_BL_AMBL_FILT_80ms 0 /* Light sensor filter time */ | ||
| 231 | #define ADP5520_BL_AMBL_FILT_160ms 1 | ||
| 232 | #define ADP5520_BL_AMBL_FILT_320ms 2 | ||
| 233 | #define ADP5520_BL_AMBL_FILT_640ms 3 | ||
| 234 | #define ADP5520_BL_AMBL_FILT_1280ms 4 | ||
| 235 | #define ADP5520_BL_AMBL_FILT_2560ms 5 | ||
| 236 | #define ADP5520_BL_AMBL_FILT_5120ms 6 | ||
| 237 | #define ADP5520_BL_AMBL_FILT_10240ms 7 /* 10.24 sec */ | ||
| 238 | |||
| 239 | /* | ||
| 240 | * Blacklight current 0..30mA | ||
| 241 | */ | ||
| 242 | #define ADP5520_BL_CUR_mA(I) ((I * 127) / 30) | ||
| 243 | |||
| 244 | /* | ||
| 245 | * L2 comparator current 0..1000uA | ||
| 246 | */ | ||
| 247 | #define ADP5520_L2_COMP_CURR_uA(I) ((I * 255) / 1000) | ||
| 248 | |||
| 249 | /* | ||
| 250 | * L3 comparator current 0..127uA | ||
| 251 | */ | ||
| 252 | #define ADP5520_L3_COMP_CURR_uA(I) ((I * 255) / 127) | ||
| 253 | |||
| 254 | struct adp5520_backlight_platform_data { | ||
| 255 | u8 fade_in; /* Backlight Fade-In Timer */ | ||
| 256 | u8 fade_out; /* Backlight Fade-Out Timer */ | ||
| 257 | u8 fade_led_law; /* fade-on/fade-off transfer characteristic */ | ||
| 258 | |||
| 259 | u8 en_ambl_sens; /* 1 = enable ambient light sensor */ | ||
| 260 | u8 abml_filt; /* Light sensor filter time */ | ||
| 261 | u8 l1_daylight_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 262 | u8 l1_daylight_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 263 | u8 l2_office_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 264 | u8 l2_office_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 265 | u8 l3_dark_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 266 | u8 l3_dark_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 267 | u8 l2_trip; /* use L2_COMP_CURR_uA(I) 0 <= I <= 1000 uA */ | ||
| 268 | u8 l2_hyst; /* use L2_COMP_CURR_uA(I) 0 <= I <= 1000 uA */ | ||
| 269 | u8 l3_trip; /* use L3_COMP_CURR_uA(I) 0 <= I <= 127 uA */ | ||
| 270 | u8 l3_hyst; /* use L3_COMP_CURR_uA(I) 0 <= I <= 127 uA */ | ||
| 271 | }; | ||
| 272 | |||
| 273 | /* | ||
| 274 | * MFD chip platform data | ||
| 275 | */ | ||
| 276 | |||
| 277 | struct adp5520_platform_data { | ||
| 278 | struct adp5520_keys_platform_data *keys; | ||
| 279 | struct adp5520_gpio_platform_data *gpio; | ||
| 280 | struct adp5520_leds_platform_data *leds; | ||
| 281 | struct adp5520_backlight_platform_data *backlight; | ||
| 282 | }; | ||
| 283 | |||
| 284 | /* | ||
| 285 | * MFD chip functions | ||
| 286 | */ | ||
| 287 | |||
| 288 | extern int adp5520_read(struct device *dev, int reg, uint8_t *val); | ||
| 289 | extern int adp5520_write(struct device *dev, int reg, u8 val); | ||
| 290 | extern int adp5520_clr_bits(struct device *dev, int reg, uint8_t bit_mask); | ||
| 291 | extern int adp5520_set_bits(struct device *dev, int reg, uint8_t bit_mask); | ||
| 292 | |||
| 293 | extern int adp5520_register_notifier(struct device *dev, | ||
| 294 | struct notifier_block *nb, unsigned int events); | ||
| 295 | |||
| 296 | extern int adp5520_unregister_notifier(struct device *dev, | ||
| 297 | struct notifier_block *nb, unsigned int events); | ||
| 298 | |||
| 299 | #endif /* __LINUX_MFD_ADP5520_H */ | ||
diff --git a/include/linux/mfd/ezx-pcap.h b/include/linux/mfd/ezx-pcap.h index 3402042ddc31..40c372165f3e 100644 --- a/include/linux/mfd/ezx-pcap.h +++ b/include/linux/mfd/ezx-pcap.h | |||
| @@ -231,9 +231,6 @@ void pcap_set_ts_bits(struct pcap_chip *, u32); | |||
| 231 | #define PCAP_LED_4MA 1 | 231 | #define PCAP_LED_4MA 1 |
| 232 | #define PCAP_LED_5MA 2 | 232 | #define PCAP_LED_5MA 2 |
| 233 | #define PCAP_LED_9MA 3 | 233 | #define PCAP_LED_9MA 3 |
| 234 | #define PCAP_LED_GPIO_VAL_MASK 0x00ffffff | ||
| 235 | #define PCAP_LED_GPIO_EN 0x01000000 | ||
| 236 | #define PCAP_LED_GPIO_INVERT 0x02000000 | ||
| 237 | #define PCAP_LED_T_MASK 0xf | 234 | #define PCAP_LED_T_MASK 0xf |
| 238 | #define PCAP_LED_C_MASK 0x3 | 235 | #define PCAP_LED_C_MASK 0x3 |
| 239 | #define PCAP_BL_MASK 0x1f | 236 | #define PCAP_BL_MASK 0x1f |
diff --git a/include/linux/mfd/mc13783-private.h b/include/linux/mfd/mc13783-private.h index 47e698cb0f16..95cf9360553f 100644 --- a/include/linux/mfd/mc13783-private.h +++ b/include/linux/mfd/mc13783-private.h | |||
| @@ -24,52 +24,23 @@ | |||
| 24 | 24 | ||
| 25 | #include <linux/platform_device.h> | 25 | #include <linux/platform_device.h> |
| 26 | #include <linux/mfd/mc13783.h> | 26 | #include <linux/mfd/mc13783.h> |
| 27 | #include <linux/workqueue.h> | ||
| 28 | #include <linux/mutex.h> | 27 | #include <linux/mutex.h> |
| 29 | 28 | #include <linux/interrupt.h> | |
| 30 | struct mc13783_irq { | ||
| 31 | void (*handler)(int, void *); | ||
| 32 | void *data; | ||
| 33 | }; | ||
| 34 | |||
| 35 | #define MC13783_NUM_IRQ 2 | ||
| 36 | #define MC13783_IRQ_TS 0 | ||
| 37 | #define MC13783_IRQ_REGULATOR 1 | ||
| 38 | |||
| 39 | #define MC13783_ADC_MODE_TS 1 | ||
| 40 | #define MC13783_ADC_MODE_SINGLE_CHAN 2 | ||
| 41 | #define MC13783_ADC_MODE_MULT_CHAN 3 | ||
| 42 | 29 | ||
| 43 | struct mc13783 { | 30 | struct mc13783 { |
| 44 | int revision; | 31 | struct spi_device *spidev; |
| 45 | struct device *dev; | 32 | struct mutex lock; |
| 46 | struct spi_device *spi_device; | ||
| 47 | |||
| 48 | int (*read_dev)(void *data, char reg, int count, u32 *dst); | ||
| 49 | int (*write_dev)(void *data, char reg, int count, const u32 *src); | ||
| 50 | |||
| 51 | struct mutex io_lock; | ||
| 52 | void *io_data; | ||
| 53 | int irq; | 33 | int irq; |
| 54 | unsigned int flags; | 34 | int flags; |
| 55 | 35 | ||
| 56 | struct mc13783_irq irq_handler[MC13783_NUM_IRQ]; | 36 | irq_handler_t irqhandler[MC13783_NUM_IRQ]; |
| 57 | struct work_struct work; | 37 | void *irqdata[MC13783_NUM_IRQ]; |
| 58 | struct completion adc_done; | ||
| 59 | unsigned int ts_active; | ||
| 60 | struct mutex adc_conv_lock; | ||
| 61 | 38 | ||
| 39 | /* XXX these should go as platformdata to the regulator subdevice */ | ||
| 62 | struct mc13783_regulator_init_data *regulators; | 40 | struct mc13783_regulator_init_data *regulators; |
| 63 | int num_regulators; | 41 | int num_regulators; |
| 64 | }; | 42 | }; |
| 65 | 43 | ||
| 66 | int mc13783_reg_read(struct mc13783 *, int reg_num, u32 *); | ||
| 67 | int mc13783_reg_write(struct mc13783 *, int, u32); | ||
| 68 | int mc13783_set_bits(struct mc13783 *, int, u32, u32); | ||
| 69 | int mc13783_free_irq(struct mc13783 *mc13783, int irq); | ||
| 70 | int mc13783_register_irq(struct mc13783 *mc13783, int irq, | ||
| 71 | void (*handler) (int, void *), void *data); | ||
| 72 | |||
| 73 | #define MC13783_REG_INTERRUPT_STATUS_0 0 | 44 | #define MC13783_REG_INTERRUPT_STATUS_0 0 |
| 74 | #define MC13783_REG_INTERRUPT_MASK_0 1 | 45 | #define MC13783_REG_INTERRUPT_MASK_0 1 |
| 75 | #define MC13783_REG_INTERRUPT_SENSE_0 2 | 46 | #define MC13783_REG_INTERRUPT_SENSE_0 2 |
| @@ -136,55 +107,6 @@ int mc13783_register_irq(struct mc13783 *mc13783, int irq, | |||
| 136 | #define MC13783_REG_TEST_3 63 | 107 | #define MC13783_REG_TEST_3 63 |
| 137 | #define MC13783_REG_NB 64 | 108 | #define MC13783_REG_NB 64 |
| 138 | 109 | ||
| 139 | |||
| 140 | /* | ||
| 141 | * Interrupt Status | ||
| 142 | */ | ||
| 143 | #define MC13783_INT_STAT_ADCDONEI (1 << 0) | ||
| 144 | #define MC13783_INT_STAT_ADCBISDONEI (1 << 1) | ||
| 145 | #define MC13783_INT_STAT_TSI (1 << 2) | ||
| 146 | #define MC13783_INT_STAT_WHIGHI (1 << 3) | ||
| 147 | #define MC13783_INT_STAT_WLOWI (1 << 4) | ||
| 148 | #define MC13783_INT_STAT_CHGDETI (1 << 6) | ||
| 149 | #define MC13783_INT_STAT_CHGOVI (1 << 7) | ||
| 150 | #define MC13783_INT_STAT_CHGREVI (1 << 8) | ||
| 151 | #define MC13783_INT_STAT_CHGSHORTI (1 << 9) | ||
| 152 | #define MC13783_INT_STAT_CCCVI (1 << 10) | ||
| 153 | #define MC13783_INT_STAT_CHGCURRI (1 << 11) | ||
| 154 | #define MC13783_INT_STAT_BPONI (1 << 12) | ||
| 155 | #define MC13783_INT_STAT_LOBATLI (1 << 13) | ||
| 156 | #define MC13783_INT_STAT_LOBATHI (1 << 14) | ||
| 157 | #define MC13783_INT_STAT_UDPI (1 << 15) | ||
| 158 | #define MC13783_INT_STAT_USBI (1 << 16) | ||
| 159 | #define MC13783_INT_STAT_IDI (1 << 19) | ||
| 160 | #define MC13783_INT_STAT_Unused (1 << 20) | ||
| 161 | #define MC13783_INT_STAT_SE1I (1 << 21) | ||
| 162 | #define MC13783_INT_STAT_CKDETI (1 << 22) | ||
| 163 | #define MC13783_INT_STAT_UDMI (1 << 23) | ||
| 164 | |||
| 165 | /* | ||
| 166 | * Interrupt Mask | ||
| 167 | */ | ||
| 168 | #define MC13783_INT_MASK_ADCDONEM (1 << 0) | ||
| 169 | #define MC13783_INT_MASK_ADCBISDONEM (1 << 1) | ||
| 170 | #define MC13783_INT_MASK_TSM (1 << 2) | ||
| 171 | #define MC13783_INT_MASK_WHIGHM (1 << 3) | ||
| 172 | #define MC13783_INT_MASK_WLOWM (1 << 4) | ||
| 173 | #define MC13783_INT_MASK_CHGDETM (1 << 6) | ||
| 174 | #define MC13783_INT_MASK_CHGOVM (1 << 7) | ||
| 175 | #define MC13783_INT_MASK_CHGREVM (1 << 8) | ||
| 176 | #define MC13783_INT_MASK_CHGSHORTM (1 << 9) | ||
| 177 | #define MC13783_INT_MASK_CCCVM (1 << 10) | ||
| 178 | #define MC13783_INT_MASK_CHGCURRM (1 << 11) | ||
| 179 | #define MC13783_INT_MASK_BPONM (1 << 12) | ||
| 180 | #define MC13783_INT_MASK_LOBATLM (1 << 13) | ||
| 181 | #define MC13783_INT_MASK_LOBATHM (1 << 14) | ||
| 182 | #define MC13783_INT_MASK_UDPM (1 << 15) | ||
| 183 | #define MC13783_INT_MASK_USBM (1 << 16) | ||
| 184 | #define MC13783_INT_MASK_IDM (1 << 19) | ||
| 185 | #define MC13783_INT_MASK_SE1M (1 << 21) | ||
| 186 | #define MC13783_INT_MASK_CKDETM (1 << 22) | ||
| 187 | |||
| 188 | /* | 110 | /* |
| 189 | * Reg Regulator Mode 0 | 111 | * Reg Regulator Mode 0 |
| 190 | */ | 112 | */ |
| @@ -284,113 +206,15 @@ int mc13783_register_irq(struct mc13783 *mc13783, int irq, | |||
| 284 | #define MC13783_SWCTRL_SW3_STBY (1 << 21) | 206 | #define MC13783_SWCTRL_SW3_STBY (1 << 21) |
| 285 | #define MC13783_SWCTRL_SW3_MODE (1 << 22) | 207 | #define MC13783_SWCTRL_SW3_MODE (1 << 22) |
| 286 | 208 | ||
| 287 | /* | 209 | static inline int mc13783_set_bits(struct mc13783 *mc13783, unsigned int offset, |
| 288 | * ADC/Touch | 210 | u32 mask, u32 val) |
| 289 | */ | 211 | { |
| 290 | #define MC13783_ADC0_LICELLCON (1 << 0) | 212 | int ret; |
| 291 | #define MC13783_ADC0_CHRGICON (1 << 1) | 213 | mc13783_lock(mc13783); |
| 292 | #define MC13783_ADC0_BATICON (1 << 2) | 214 | ret = mc13783_reg_rmw(mc13783, offset, mask, val); |
| 293 | #define MC13783_ADC0_RTHEN (1 << 3) | 215 | mc13783_unlock(mc13783); |
| 294 | #define MC13783_ADC0_DTHEN (1 << 4) | ||
| 295 | #define MC13783_ADC0_UIDEN (1 << 5) | ||
| 296 | #define MC13783_ADC0_ADOUTEN (1 << 6) | ||
| 297 | #define MC13783_ADC0_ADOUTPER (1 << 7) | ||
| 298 | #define MC13783_ADC0_ADREFEN (1 << 10) | ||
| 299 | #define MC13783_ADC0_ADREFMODE (1 << 11) | ||
| 300 | #define MC13783_ADC0_TSMOD0 (1 << 12) | ||
| 301 | #define MC13783_ADC0_TSMOD1 (1 << 13) | ||
| 302 | #define MC13783_ADC0_TSMOD2 (1 << 14) | ||
| 303 | #define MC13783_ADC0_CHRGRAWDIV (1 << 15) | ||
| 304 | #define MC13783_ADC0_ADINC1 (1 << 16) | ||
| 305 | #define MC13783_ADC0_ADINC2 (1 << 17) | ||
| 306 | #define MC13783_ADC0_WCOMP (1 << 18) | ||
| 307 | #define MC13783_ADC0_ADCBIS0 (1 << 23) | ||
| 308 | |||
| 309 | #define MC13783_ADC1_ADEN (1 << 0) | ||
| 310 | #define MC13783_ADC1_RAND (1 << 1) | ||
| 311 | #define MC13783_ADC1_ADSEL (1 << 3) | ||
| 312 | #define MC13783_ADC1_TRIGMASK (1 << 4) | ||
| 313 | #define MC13783_ADC1_ADA10 (1 << 5) | ||
| 314 | #define MC13783_ADC1_ADA11 (1 << 6) | ||
| 315 | #define MC13783_ADC1_ADA12 (1 << 7) | ||
| 316 | #define MC13783_ADC1_ADA20 (1 << 8) | ||
| 317 | #define MC13783_ADC1_ADA21 (1 << 9) | ||
| 318 | #define MC13783_ADC1_ADA22 (1 << 10) | ||
| 319 | #define MC13783_ADC1_ATO0 (1 << 11) | ||
| 320 | #define MC13783_ADC1_ATO1 (1 << 12) | ||
| 321 | #define MC13783_ADC1_ATO2 (1 << 13) | ||
| 322 | #define MC13783_ADC1_ATO3 (1 << 14) | ||
| 323 | #define MC13783_ADC1_ATO4 (1 << 15) | ||
| 324 | #define MC13783_ADC1_ATO5 (1 << 16) | ||
| 325 | #define MC13783_ADC1_ATO6 (1 << 17) | ||
| 326 | #define MC13783_ADC1_ATO7 (1 << 18) | ||
| 327 | #define MC13783_ADC1_ATOX (1 << 19) | ||
| 328 | #define MC13783_ADC1_ASC (1 << 20) | ||
| 329 | #define MC13783_ADC1_ADTRIGIGN (1 << 21) | ||
| 330 | #define MC13783_ADC1_ADONESHOT (1 << 22) | ||
| 331 | #define MC13783_ADC1_ADCBIS1 (1 << 23) | ||
| 332 | |||
| 333 | #define MC13783_ADC1_CHAN0_SHIFT 5 | ||
| 334 | #define MC13783_ADC1_CHAN1_SHIFT 8 | ||
| 335 | |||
| 336 | #define MC13783_ADC2_ADD10 (1 << 2) | ||
| 337 | #define MC13783_ADC2_ADD11 (1 << 3) | ||
| 338 | #define MC13783_ADC2_ADD12 (1 << 4) | ||
| 339 | #define MC13783_ADC2_ADD13 (1 << 5) | ||
| 340 | #define MC13783_ADC2_ADD14 (1 << 6) | ||
| 341 | #define MC13783_ADC2_ADD15 (1 << 7) | ||
| 342 | #define MC13783_ADC2_ADD16 (1 << 8) | ||
| 343 | #define MC13783_ADC2_ADD17 (1 << 9) | ||
| 344 | #define MC13783_ADC2_ADD18 (1 << 10) | ||
| 345 | #define MC13783_ADC2_ADD19 (1 << 11) | ||
| 346 | #define MC13783_ADC2_ADD20 (1 << 14) | ||
| 347 | #define MC13783_ADC2_ADD21 (1 << 15) | ||
| 348 | #define MC13783_ADC2_ADD22 (1 << 16) | ||
| 349 | #define MC13783_ADC2_ADD23 (1 << 17) | ||
| 350 | #define MC13783_ADC2_ADD24 (1 << 18) | ||
| 351 | #define MC13783_ADC2_ADD25 (1 << 19) | ||
| 352 | #define MC13783_ADC2_ADD26 (1 << 20) | ||
| 353 | #define MC13783_ADC2_ADD27 (1 << 21) | ||
| 354 | #define MC13783_ADC2_ADD28 (1 << 22) | ||
| 355 | #define MC13783_ADC2_ADD29 (1 << 23) | ||
| 356 | 216 | ||
| 357 | #define MC13783_ADC3_WHIGH0 (1 << 0) | 217 | return ret; |
| 358 | #define MC13783_ADC3_WHIGH1 (1 << 1) | 218 | } |
| 359 | #define MC13783_ADC3_WHIGH2 (1 << 2) | ||
| 360 | #define MC13783_ADC3_WHIGH3 (1 << 3) | ||
| 361 | #define MC13783_ADC3_WHIGH4 (1 << 4) | ||
| 362 | #define MC13783_ADC3_WHIGH5 (1 << 5) | ||
| 363 | #define MC13783_ADC3_ICID0 (1 << 6) | ||
| 364 | #define MC13783_ADC3_ICID1 (1 << 7) | ||
| 365 | #define MC13783_ADC3_ICID2 (1 << 8) | ||
| 366 | #define MC13783_ADC3_WLOW0 (1 << 9) | ||
| 367 | #define MC13783_ADC3_WLOW1 (1 << 10) | ||
| 368 | #define MC13783_ADC3_WLOW2 (1 << 11) | ||
| 369 | #define MC13783_ADC3_WLOW3 (1 << 12) | ||
| 370 | #define MC13783_ADC3_WLOW4 (1 << 13) | ||
| 371 | #define MC13783_ADC3_WLOW5 (1 << 14) | ||
| 372 | #define MC13783_ADC3_ADCBIS2 (1 << 23) | ||
| 373 | |||
| 374 | #define MC13783_ADC4_ADDBIS10 (1 << 2) | ||
| 375 | #define MC13783_ADC4_ADDBIS11 (1 << 3) | ||
| 376 | #define MC13783_ADC4_ADDBIS12 (1 << 4) | ||
| 377 | #define MC13783_ADC4_ADDBIS13 (1 << 5) | ||
| 378 | #define MC13783_ADC4_ADDBIS14 (1 << 6) | ||
| 379 | #define MC13783_ADC4_ADDBIS15 (1 << 7) | ||
| 380 | #define MC13783_ADC4_ADDBIS16 (1 << 8) | ||
| 381 | #define MC13783_ADC4_ADDBIS17 (1 << 9) | ||
| 382 | #define MC13783_ADC4_ADDBIS18 (1 << 10) | ||
| 383 | #define MC13783_ADC4_ADDBIS19 (1 << 11) | ||
| 384 | #define MC13783_ADC4_ADDBIS20 (1 << 14) | ||
| 385 | #define MC13783_ADC4_ADDBIS21 (1 << 15) | ||
| 386 | #define MC13783_ADC4_ADDBIS22 (1 << 16) | ||
| 387 | #define MC13783_ADC4_ADDBIS23 (1 << 17) | ||
| 388 | #define MC13783_ADC4_ADDBIS24 (1 << 18) | ||
| 389 | #define MC13783_ADC4_ADDBIS25 (1 << 19) | ||
| 390 | #define MC13783_ADC4_ADDBIS26 (1 << 20) | ||
| 391 | #define MC13783_ADC4_ADDBIS27 (1 << 21) | ||
| 392 | #define MC13783_ADC4_ADDBIS28 (1 << 22) | ||
| 393 | #define MC13783_ADC4_ADDBIS29 (1 << 23) | ||
| 394 | 219 | ||
| 395 | #endif /* __LINUX_MFD_MC13783_PRIV_H */ | 220 | #endif /* __LINUX_MFD_MC13783_PRIV_H */ |
| 396 | |||
diff --git a/include/linux/mfd/mc13783.h b/include/linux/mfd/mc13783.h index b3a2a7243573..35680409b8cf 100644 --- a/include/linux/mfd/mc13783.h +++ b/include/linux/mfd/mc13783.h | |||
| @@ -1,28 +1,50 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright 2009 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de> | 2 | * Copyright 2009 Pengutronix |
| 3 | * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> | ||
| 3 | * | 4 | * |
| 4 | * Initial development of this code was funded by | 5 | * This program is free software; you can redistribute it and/or modify it under |
| 5 | * Phytec Messtechnik GmbH, http://www.phytec.de | 6 | * the terms of the GNU General Public License version 2 as published by the |
| 6 | * | 7 | * Free Software Foundation. |
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License as published by | ||
| 9 | * the Free Software Foundation; either version 2 of the License, or | ||
| 10 | * (at your option) any later version. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | * GNU General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License | ||
| 18 | * along with this program; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 20 | */ | 8 | */ |
| 9 | #ifndef __LINUX_MFD_MC13783_H | ||
| 10 | #define __LINUX_MFD_MC13783_H | ||
| 21 | 11 | ||
| 22 | #ifndef __INCLUDE_LINUX_MFD_MC13783_H | 12 | #include <linux/interrupt.h> |
| 23 | #define __INCLUDE_LINUX_MFD_MC13783_H | ||
| 24 | 13 | ||
| 25 | struct mc13783; | 14 | struct mc13783; |
| 15 | |||
| 16 | void mc13783_lock(struct mc13783 *mc13783); | ||
| 17 | void mc13783_unlock(struct mc13783 *mc13783); | ||
| 18 | |||
| 19 | int mc13783_reg_read(struct mc13783 *mc13783, unsigned int offset, u32 *val); | ||
| 20 | int mc13783_reg_write(struct mc13783 *mc13783, unsigned int offset, u32 val); | ||
| 21 | int mc13783_reg_rmw(struct mc13783 *mc13783, unsigned int offset, | ||
| 22 | u32 mask, u32 val); | ||
| 23 | |||
| 24 | int mc13783_irq_request(struct mc13783 *mc13783, int irq, | ||
| 25 | irq_handler_t handler, const char *name, void *dev); | ||
| 26 | int mc13783_irq_request_nounmask(struct mc13783 *mc13783, int irq, | ||
| 27 | irq_handler_t handler, const char *name, void *dev); | ||
| 28 | int mc13783_irq_free(struct mc13783 *mc13783, int irq, void *dev); | ||
| 29 | int mc13783_ackirq(struct mc13783 *mc13783, int irq); | ||
| 30 | |||
| 31 | int mc13783_mask(struct mc13783 *mc13783, int irq); | ||
| 32 | int mc13783_unmask(struct mc13783 *mc13783, int irq); | ||
| 33 | |||
| 34 | #define MC13783_ADC0 43 | ||
| 35 | #define MC13783_ADC0_ADREFEN (1 << 10) | ||
| 36 | #define MC13783_ADC0_ADREFMODE (1 << 11) | ||
| 37 | #define MC13783_ADC0_TSMOD0 (1 << 12) | ||
| 38 | #define MC13783_ADC0_TSMOD1 (1 << 13) | ||
| 39 | #define MC13783_ADC0_TSMOD2 (1 << 14) | ||
| 40 | #define MC13783_ADC0_ADINC1 (1 << 16) | ||
| 41 | #define MC13783_ADC0_ADINC2 (1 << 17) | ||
| 42 | |||
| 43 | #define MC13783_ADC0_TSMOD_MASK (MC13783_ADC0_TSMOD0 | \ | ||
| 44 | MC13783_ADC0_TSMOD1 | \ | ||
| 45 | MC13783_ADC0_TSMOD2) | ||
| 46 | |||
| 47 | /* to be cleaned up */ | ||
| 26 | struct regulator_init_data; | 48 | struct regulator_init_data; |
| 27 | 49 | ||
| 28 | struct mc13783_regulator_init_data { | 50 | struct mc13783_regulator_init_data { |
| @@ -30,23 +52,30 @@ struct mc13783_regulator_init_data { | |||
| 30 | struct regulator_init_data *init_data; | 52 | struct regulator_init_data *init_data; |
| 31 | }; | 53 | }; |
| 32 | 54 | ||
| 33 | struct mc13783_platform_data { | 55 | struct mc13783_regulator_platform_data { |
| 34 | struct mc13783_regulator_init_data *regulators; | ||
| 35 | int num_regulators; | 56 | int num_regulators; |
| 36 | unsigned int flags; | 57 | struct mc13783_regulator_init_data *regulators; |
| 37 | }; | 58 | }; |
| 38 | 59 | ||
| 39 | /* mc13783_platform_data flags */ | 60 | struct mc13783_platform_data { |
| 61 | int num_regulators; | ||
| 62 | struct mc13783_regulator_init_data *regulators; | ||
| 63 | |||
| 40 | #define MC13783_USE_TOUCHSCREEN (1 << 0) | 64 | #define MC13783_USE_TOUCHSCREEN (1 << 0) |
| 41 | #define MC13783_USE_CODEC (1 << 1) | 65 | #define MC13783_USE_CODEC (1 << 1) |
| 42 | #define MC13783_USE_ADC (1 << 2) | 66 | #define MC13783_USE_ADC (1 << 2) |
| 43 | #define MC13783_USE_RTC (1 << 3) | 67 | #define MC13783_USE_RTC (1 << 3) |
| 44 | #define MC13783_USE_REGULATOR (1 << 4) | 68 | #define MC13783_USE_REGULATOR (1 << 4) |
| 69 | unsigned int flags; | ||
| 70 | }; | ||
| 71 | |||
| 72 | #define MC13783_ADC_MODE_TS 1 | ||
| 73 | #define MC13783_ADC_MODE_SINGLE_CHAN 2 | ||
| 74 | #define MC13783_ADC_MODE_MULT_CHAN 3 | ||
| 45 | 75 | ||
| 46 | int mc13783_adc_do_conversion(struct mc13783 *mc13783, unsigned int mode, | 76 | int mc13783_adc_do_conversion(struct mc13783 *mc13783, unsigned int mode, |
| 47 | unsigned int channel, unsigned int *sample); | 77 | unsigned int channel, unsigned int *sample); |
| 48 | 78 | ||
| 49 | void mc13783_adc_set_ts_status(struct mc13783 *mc13783, unsigned int status); | ||
| 50 | 79 | ||
| 51 | #define MC13783_SW_SW1A 0 | 80 | #define MC13783_SW_SW1A 0 |
| 52 | #define MC13783_SW_SW1B 1 | 81 | #define MC13783_SW_SW1B 1 |
| @@ -80,5 +109,46 @@ void mc13783_adc_set_ts_status(struct mc13783 *mc13783, unsigned int status); | |||
| 80 | #define MC13783_REGU_V3 29 | 109 | #define MC13783_REGU_V3 29 |
| 81 | #define MC13783_REGU_V4 30 | 110 | #define MC13783_REGU_V4 30 |
| 82 | 111 | ||
| 83 | #endif /* __INCLUDE_LINUX_MFD_MC13783_H */ | 112 | #define MC13783_IRQ_ADCDONE 0 |
| 113 | #define MC13783_IRQ_ADCBISDONE 1 | ||
| 114 | #define MC13783_IRQ_TS 2 | ||
| 115 | #define MC13783_IRQ_WHIGH 3 | ||
| 116 | #define MC13783_IRQ_WLOW 4 | ||
| 117 | #define MC13783_IRQ_CHGDET 6 | ||
| 118 | #define MC13783_IRQ_CHGOV 7 | ||
| 119 | #define MC13783_IRQ_CHGREV 8 | ||
| 120 | #define MC13783_IRQ_CHGSHORT 9 | ||
| 121 | #define MC13783_IRQ_CCCV 10 | ||
| 122 | #define MC13783_IRQ_CHGCURR 11 | ||
| 123 | #define MC13783_IRQ_BPON 12 | ||
| 124 | #define MC13783_IRQ_LOBATL 13 | ||
| 125 | #define MC13783_IRQ_LOBATH 14 | ||
| 126 | #define MC13783_IRQ_UDP 15 | ||
| 127 | #define MC13783_IRQ_USB 16 | ||
| 128 | #define MC13783_IRQ_ID 19 | ||
| 129 | #define MC13783_IRQ_SE1 21 | ||
| 130 | #define MC13783_IRQ_CKDET 22 | ||
| 131 | #define MC13783_IRQ_UDM 23 | ||
| 132 | #define MC13783_IRQ_1HZ 24 | ||
| 133 | #define MC13783_IRQ_TODA 25 | ||
| 134 | #define MC13783_IRQ_ONOFD1 27 | ||
| 135 | #define MC13783_IRQ_ONOFD2 28 | ||
| 136 | #define MC13783_IRQ_ONOFD3 29 | ||
| 137 | #define MC13783_IRQ_SYSRST 30 | ||
| 138 | #define MC13783_IRQ_RTCRST 31 | ||
| 139 | #define MC13783_IRQ_PC 32 | ||
| 140 | #define MC13783_IRQ_WARM 33 | ||
| 141 | #define MC13783_IRQ_MEMHLD 34 | ||
| 142 | #define MC13783_IRQ_PWRRDY 35 | ||
| 143 | #define MC13783_IRQ_THWARNL 36 | ||
| 144 | #define MC13783_IRQ_THWARNH 37 | ||
| 145 | #define MC13783_IRQ_CLK 38 | ||
| 146 | #define MC13783_IRQ_SEMAF 39 | ||
| 147 | #define MC13783_IRQ_MC2B 41 | ||
| 148 | #define MC13783_IRQ_HSDET 42 | ||
| 149 | #define MC13783_IRQ_HSL 43 | ||
| 150 | #define MC13783_IRQ_ALSPTH 44 | ||
| 151 | #define MC13783_IRQ_AHSSHORT 45 | ||
| 152 | #define MC13783_NUM_IRQ 46 | ||
| 84 | 153 | ||
| 154 | #endif /* __LINUX_MFD_MC13783_H */ | ||
diff --git a/include/linux/mfd/pcf50633/core.h b/include/linux/mfd/pcf50633/core.h index 9aba7b779fbc..3398bd9aab11 100644 --- a/include/linux/mfd/pcf50633/core.h +++ b/include/linux/mfd/pcf50633/core.h | |||
| @@ -29,7 +29,12 @@ struct pcf50633_platform_data { | |||
| 29 | char **batteries; | 29 | char **batteries; |
| 30 | int num_batteries; | 30 | int num_batteries; |
| 31 | 31 | ||
| 32 | int charging_restart_interval; | 32 | /* |
| 33 | * Should be set accordingly to the reference resistor used, see | ||
| 34 | * I_{ch(ref)} charger reference current in the pcf50633 User | ||
| 35 | * Manual. | ||
| 36 | */ | ||
| 37 | int charger_reference_current_ma; | ||
| 33 | 38 | ||
| 34 | /* Callbacks */ | 39 | /* Callbacks */ |
| 35 | void (*probe_done)(struct pcf50633 *); | 40 | void (*probe_done)(struct pcf50633 *); |
| @@ -40,10 +45,6 @@ struct pcf50633_platform_data { | |||
| 40 | u8 resumers[5]; | 45 | u8 resumers[5]; |
| 41 | }; | 46 | }; |
| 42 | 47 | ||
| 43 | struct pcf50633_subdev_pdata { | ||
| 44 | struct pcf50633 *pcf; | ||
| 45 | }; | ||
| 46 | |||
| 47 | struct pcf50633_irq { | 48 | struct pcf50633_irq { |
| 48 | void (*handler) (int, void *); | 49 | void (*handler) (int, void *); |
| 49 | void *data; | 50 | void *data; |
| @@ -217,5 +218,9 @@ enum pcf50633_reg_int5 { | |||
| 217 | #define PCF50633_REG_LEDCTL 0x2a | 218 | #define PCF50633_REG_LEDCTL 0x2a |
| 218 | #define PCF50633_REG_LEDDIM 0x2b | 219 | #define PCF50633_REG_LEDDIM 0x2b |
| 219 | 220 | ||
| 220 | #endif | 221 | static inline struct pcf50633 *dev_to_pcf50633(struct device *dev) |
| 222 | { | ||
| 223 | return dev_get_drvdata(dev); | ||
| 224 | } | ||
| 221 | 225 | ||
| 226 | #endif | ||
diff --git a/include/linux/mfd/pcf50633/mbc.h b/include/linux/mfd/pcf50633/mbc.h index 4119579acf2c..df4f5fa88de3 100644 --- a/include/linux/mfd/pcf50633/mbc.h +++ b/include/linux/mfd/pcf50633/mbc.h | |||
| @@ -128,6 +128,7 @@ enum pcf50633_reg_mbcs3 { | |||
| 128 | int pcf50633_mbc_usb_curlim_set(struct pcf50633 *pcf, int ma); | 128 | int pcf50633_mbc_usb_curlim_set(struct pcf50633 *pcf, int ma); |
| 129 | 129 | ||
| 130 | int pcf50633_mbc_get_status(struct pcf50633 *); | 130 | int pcf50633_mbc_get_status(struct pcf50633 *); |
| 131 | int pcf50633_mbc_get_usb_online_status(struct pcf50633 *); | ||
| 131 | 132 | ||
| 132 | #endif | 133 | #endif |
| 133 | 134 | ||
diff --git a/include/linux/mfd/wm831x/core.h b/include/linux/mfd/wm831x/core.h index 91eb493bf14c..5184b79c700b 100644 --- a/include/linux/mfd/wm831x/core.h +++ b/include/linux/mfd/wm831x/core.h | |||
| @@ -16,7 +16,6 @@ | |||
| 16 | #define __MFD_WM831X_CORE_H__ | 16 | #define __MFD_WM831X_CORE_H__ |
| 17 | 17 | ||
| 18 | #include <linux/interrupt.h> | 18 | #include <linux/interrupt.h> |
| 19 | #include <linux/workqueue.h> | ||
| 20 | 19 | ||
| 21 | /* | 20 | /* |
| 22 | * Register values. | 21 | * Register values. |
| @@ -117,6 +116,7 @@ | |||
| 117 | #define WM831X_DC3_SLEEP_CONTROL 0x4063 | 116 | #define WM831X_DC3_SLEEP_CONTROL 0x4063 |
| 118 | #define WM831X_DC4_CONTROL 0x4064 | 117 | #define WM831X_DC4_CONTROL 0x4064 |
| 119 | #define WM831X_DC4_SLEEP_CONTROL 0x4065 | 118 | #define WM831X_DC4_SLEEP_CONTROL 0x4065 |
| 119 | #define WM832X_DC4_SLEEP_CONTROL 0x4067 | ||
| 120 | #define WM831X_EPE1_CONTROL 0x4066 | 120 | #define WM831X_EPE1_CONTROL 0x4066 |
| 121 | #define WM831X_EPE2_CONTROL 0x4067 | 121 | #define WM831X_EPE2_CONTROL 0x4067 |
| 122 | #define WM831X_LDO1_CONTROL 0x4068 | 122 | #define WM831X_LDO1_CONTROL 0x4068 |
| @@ -235,6 +235,8 @@ | |||
| 235 | 235 | ||
| 236 | struct regulator_dev; | 236 | struct regulator_dev; |
| 237 | 237 | ||
| 238 | #define WM831X_NUM_IRQ_REGS 5 | ||
| 239 | |||
| 238 | struct wm831x { | 240 | struct wm831x { |
| 239 | struct mutex io_lock; | 241 | struct mutex io_lock; |
| 240 | 242 | ||
| @@ -248,10 +250,11 @@ struct wm831x { | |||
| 248 | 250 | ||
| 249 | int irq; /* Our chip IRQ */ | 251 | int irq; /* Our chip IRQ */ |
| 250 | struct mutex irq_lock; | 252 | struct mutex irq_lock; |
| 251 | struct workqueue_struct *irq_wq; | ||
| 252 | struct work_struct irq_work; | ||
| 253 | unsigned int irq_base; | 253 | unsigned int irq_base; |
| 254 | int irq_masks[5]; | 254 | int irq_masks_cur[WM831X_NUM_IRQ_REGS]; /* Currently active value */ |
| 255 | int irq_masks_cache[WM831X_NUM_IRQ_REGS]; /* Cached hardware value */ | ||
| 256 | |||
| 257 | int num_gpio; | ||
| 255 | 258 | ||
| 256 | struct mutex auxadc_lock; | 259 | struct mutex auxadc_lock; |
| 257 | 260 | ||
| @@ -278,12 +281,30 @@ int wm831x_bulk_read(struct wm831x *wm831x, unsigned short reg, | |||
| 278 | int wm831x_irq_init(struct wm831x *wm831x, int irq); | 281 | int wm831x_irq_init(struct wm831x *wm831x, int irq); |
| 279 | void wm831x_irq_exit(struct wm831x *wm831x); | 282 | void wm831x_irq_exit(struct wm831x *wm831x); |
| 280 | 283 | ||
| 281 | int __must_check wm831x_request_irq(struct wm831x *wm831x, | 284 | static inline int __must_check wm831x_request_irq(struct wm831x *wm831x, |
| 282 | unsigned int irq, irq_handler_t handler, | 285 | unsigned int irq, |
| 283 | unsigned long flags, const char *name, | 286 | irq_handler_t handler, |
| 284 | void *dev); | 287 | unsigned long flags, |
| 285 | void wm831x_free_irq(struct wm831x *wm831x, unsigned int, void *); | 288 | const char *name, |
| 286 | void wm831x_disable_irq(struct wm831x *wm831x, int irq); | 289 | void *dev) |
| 287 | void wm831x_enable_irq(struct wm831x *wm831x, int irq); | 290 | { |
| 291 | return request_threaded_irq(irq, NULL, handler, flags, name, dev); | ||
| 292 | } | ||
| 293 | |||
| 294 | static inline void wm831x_free_irq(struct wm831x *wm831x, | ||
| 295 | unsigned int irq, void *dev) | ||
| 296 | { | ||
| 297 | free_irq(irq, dev); | ||
| 298 | } | ||
| 299 | |||
| 300 | static inline void wm831x_disable_irq(struct wm831x *wm831x, int irq) | ||
| 301 | { | ||
| 302 | disable_irq(irq); | ||
| 303 | } | ||
| 304 | |||
| 305 | static inline void wm831x_enable_irq(struct wm831x *wm831x, int irq) | ||
| 306 | { | ||
| 307 | enable_irq(irq); | ||
| 308 | } | ||
| 288 | 309 | ||
| 289 | #endif | 310 | #endif |
diff --git a/include/linux/mfd/wm831x/pdata.h b/include/linux/mfd/wm831x/pdata.h index 90d820260aad..415c228743d5 100644 --- a/include/linux/mfd/wm831x/pdata.h +++ b/include/linux/mfd/wm831x/pdata.h | |||
| @@ -91,6 +91,7 @@ struct wm831x_pdata { | |||
| 91 | /** Called after subdevices are set up */ | 91 | /** Called after subdevices are set up */ |
| 92 | int (*post_init)(struct wm831x *wm831x); | 92 | int (*post_init)(struct wm831x *wm831x); |
| 93 | 93 | ||
| 94 | int irq_base; | ||
| 94 | int gpio_base; | 95 | int gpio_base; |
| 95 | struct wm831x_backlight_pdata *backlight; | 96 | struct wm831x_backlight_pdata *backlight; |
| 96 | struct wm831x_backup_pdata *backup; | 97 | struct wm831x_backup_pdata *backup; |
diff --git a/include/linux/mfd/wm8350/core.h b/include/linux/mfd/wm8350/core.h index 1d595de6a055..43868899bf49 100644 --- a/include/linux/mfd/wm8350/core.h +++ b/include/linux/mfd/wm8350/core.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | 15 | ||
| 16 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
| 17 | #include <linux/mutex.h> | 17 | #include <linux/mutex.h> |
| 18 | #include <linux/workqueue.h> | 18 | #include <linux/interrupt.h> |
| 19 | 19 | ||
| 20 | #include <linux/mfd/wm8350/audio.h> | 20 | #include <linux/mfd/wm8350/audio.h> |
| 21 | #include <linux/mfd/wm8350/gpio.h> | 21 | #include <linux/mfd/wm8350/gpio.h> |
| @@ -601,7 +601,7 @@ extern const u16 wm8352_mode3_defaults[]; | |||
| 601 | struct wm8350; | 601 | struct wm8350; |
| 602 | 602 | ||
| 603 | struct wm8350_irq { | 603 | struct wm8350_irq { |
| 604 | void (*handler) (struct wm8350 *, int, void *); | 604 | irq_handler_t handler; |
| 605 | void *data; | 605 | void *data; |
| 606 | }; | 606 | }; |
| 607 | 607 | ||
| @@ -646,10 +646,12 @@ struct wm8350 { | |||
| 646 | * @init: Function called during driver initialisation. Should be | 646 | * @init: Function called during driver initialisation. Should be |
| 647 | * used by the platform to configure GPIO functions and similar. | 647 | * used by the platform to configure GPIO functions and similar. |
| 648 | * @irq_high: Set if WM8350 IRQ is active high. | 648 | * @irq_high: Set if WM8350 IRQ is active high. |
| 649 | * @irq_base: Base IRQ for genirq (not currently used). | ||
| 649 | */ | 650 | */ |
| 650 | struct wm8350_platform_data { | 651 | struct wm8350_platform_data { |
| 651 | int (*init)(struct wm8350 *wm8350); | 652 | int (*init)(struct wm8350 *wm8350); |
| 652 | int irq_high; | 653 | int irq_high; |
| 654 | int irq_base; | ||
| 653 | }; | 655 | }; |
| 654 | 656 | ||
| 655 | 657 | ||
| @@ -676,11 +678,13 @@ int wm8350_block_write(struct wm8350 *wm8350, int reg, int size, u16 *src); | |||
| 676 | * WM8350 internal interrupts | 678 | * WM8350 internal interrupts |
| 677 | */ | 679 | */ |
| 678 | int wm8350_register_irq(struct wm8350 *wm8350, int irq, | 680 | int wm8350_register_irq(struct wm8350 *wm8350, int irq, |
| 679 | void (*handler) (struct wm8350 *, int, void *), | 681 | irq_handler_t handler, unsigned long flags, |
| 680 | void *data); | 682 | const char *name, void *data); |
| 681 | int wm8350_free_irq(struct wm8350 *wm8350, int irq); | 683 | int wm8350_free_irq(struct wm8350 *wm8350, int irq); |
| 682 | int wm8350_mask_irq(struct wm8350 *wm8350, int irq); | 684 | int wm8350_mask_irq(struct wm8350 *wm8350, int irq); |
| 683 | int wm8350_unmask_irq(struct wm8350 *wm8350, int irq); | 685 | int wm8350_unmask_irq(struct wm8350 *wm8350, int irq); |
| 684 | 686 | int wm8350_irq_init(struct wm8350 *wm8350, int irq, | |
| 687 | struct wm8350_platform_data *pdata); | ||
| 688 | int wm8350_irq_exit(struct wm8350 *wm8350); | ||
| 685 | 689 | ||
| 686 | #endif | 690 | #endif |
diff --git a/include/linux/mfd/wm8350/gpio.h b/include/linux/mfd/wm8350/gpio.h index ed91e8f5d298..71af3d6ebe9d 100644 --- a/include/linux/mfd/wm8350/gpio.h +++ b/include/linux/mfd/wm8350/gpio.h | |||
| @@ -173,6 +173,24 @@ | |||
| 173 | #define WM8350_GPIO_DEBOUNCE_ON 1 | 173 | #define WM8350_GPIO_DEBOUNCE_ON 1 |
| 174 | 174 | ||
| 175 | /* | 175 | /* |
| 176 | * R30 (0x1E) - GPIO Interrupt Status | ||
| 177 | */ | ||
| 178 | #define WM8350_GP12_EINT 0x1000 | ||
| 179 | #define WM8350_GP11_EINT 0x0800 | ||
| 180 | #define WM8350_GP10_EINT 0x0400 | ||
| 181 | #define WM8350_GP9_EINT 0x0200 | ||
| 182 | #define WM8350_GP8_EINT 0x0100 | ||
| 183 | #define WM8350_GP7_EINT 0x0080 | ||
| 184 | #define WM8350_GP6_EINT 0x0040 | ||
| 185 | #define WM8350_GP5_EINT 0x0020 | ||
| 186 | #define WM8350_GP4_EINT 0x0010 | ||
| 187 | #define WM8350_GP3_EINT 0x0008 | ||
| 188 | #define WM8350_GP2_EINT 0x0004 | ||
| 189 | #define WM8350_GP1_EINT 0x0002 | ||
| 190 | #define WM8350_GP0_EINT 0x0001 | ||
| 191 | |||
| 192 | |||
| 193 | /* | ||
| 176 | * R128 (0x80) - GPIO Debounce | 194 | * R128 (0x80) - GPIO Debounce |
| 177 | */ | 195 | */ |
| 178 | #define WM8350_GP12_DB 0x1000 | 196 | #define WM8350_GP12_DB 0x1000 |
diff --git a/include/linux/migrate.h b/include/linux/migrate.h index 527602cdea1c..7f085c97c799 100644 --- a/include/linux/migrate.h +++ b/include/linux/migrate.h | |||
| @@ -12,7 +12,8 @@ typedef struct page *new_page_t(struct page *, unsigned long private, int **); | |||
| 12 | extern int putback_lru_pages(struct list_head *l); | 12 | extern int putback_lru_pages(struct list_head *l); |
| 13 | extern int migrate_page(struct address_space *, | 13 | extern int migrate_page(struct address_space *, |
| 14 | struct page *, struct page *); | 14 | struct page *, struct page *); |
| 15 | extern int migrate_pages(struct list_head *l, new_page_t x, unsigned long); | 15 | extern int migrate_pages(struct list_head *l, new_page_t x, |
| 16 | unsigned long private, int offlining); | ||
| 16 | 17 | ||
| 17 | extern int fail_migrate_page(struct address_space *, | 18 | extern int fail_migrate_page(struct address_space *, |
| 18 | struct page *, struct page *); | 19 | struct page *, struct page *); |
| @@ -26,10 +27,7 @@ extern int migrate_vmas(struct mm_struct *mm, | |||
| 26 | 27 | ||
| 27 | static inline int putback_lru_pages(struct list_head *l) { return 0; } | 28 | static inline int putback_lru_pages(struct list_head *l) { return 0; } |
| 28 | static inline int migrate_pages(struct list_head *l, new_page_t x, | 29 | static inline int migrate_pages(struct list_head *l, new_page_t x, |
| 29 | unsigned long private) { return -ENOSYS; } | 30 | unsigned long private, int offlining) { return -ENOSYS; } |
| 30 | |||
| 31 | static inline int migrate_pages_to(struct list_head *pagelist, | ||
| 32 | struct vm_area_struct *vma, int dest) { return 0; } | ||
| 33 | 31 | ||
| 34 | static inline int migrate_prep(void) { return -ENOSYS; } | 32 | static inline int migrate_prep(void) { return -ENOSYS; } |
| 35 | 33 | ||
diff --git a/include/linux/mm.h b/include/linux/mm.h index 24c395694f4d..9d65ae4ba0e0 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
| @@ -620,13 +620,22 @@ void page_address_init(void); | |||
| 620 | /* | 620 | /* |
| 621 | * On an anonymous page mapped into a user virtual memory area, | 621 | * On an anonymous page mapped into a user virtual memory area, |
| 622 | * page->mapping points to its anon_vma, not to a struct address_space; | 622 | * page->mapping points to its anon_vma, not to a struct address_space; |
| 623 | * with the PAGE_MAPPING_ANON bit set to distinguish it. | 623 | * with the PAGE_MAPPING_ANON bit set to distinguish it. See rmap.h. |
| 624 | * | ||
| 625 | * On an anonymous page in a VM_MERGEABLE area, if CONFIG_KSM is enabled, | ||
| 626 | * the PAGE_MAPPING_KSM bit may be set along with the PAGE_MAPPING_ANON bit; | ||
| 627 | * and then page->mapping points, not to an anon_vma, but to a private | ||
| 628 | * structure which KSM associates with that merged page. See ksm.h. | ||
| 629 | * | ||
| 630 | * PAGE_MAPPING_KSM without PAGE_MAPPING_ANON is currently never used. | ||
| 624 | * | 631 | * |
| 625 | * Please note that, confusingly, "page_mapping" refers to the inode | 632 | * Please note that, confusingly, "page_mapping" refers to the inode |
| 626 | * address_space which maps the page from disk; whereas "page_mapped" | 633 | * address_space which maps the page from disk; whereas "page_mapped" |
| 627 | * refers to user virtual address space into which the page is mapped. | 634 | * refers to user virtual address space into which the page is mapped. |
| 628 | */ | 635 | */ |
| 629 | #define PAGE_MAPPING_ANON 1 | 636 | #define PAGE_MAPPING_ANON 1 |
| 637 | #define PAGE_MAPPING_KSM 2 | ||
| 638 | #define PAGE_MAPPING_FLAGS (PAGE_MAPPING_ANON | PAGE_MAPPING_KSM) | ||
| 630 | 639 | ||
| 631 | extern struct address_space swapper_space; | 640 | extern struct address_space swapper_space; |
| 632 | static inline struct address_space *page_mapping(struct page *page) | 641 | static inline struct address_space *page_mapping(struct page *page) |
| @@ -634,16 +643,19 @@ static inline struct address_space *page_mapping(struct page *page) | |||
| 634 | struct address_space *mapping = page->mapping; | 643 | struct address_space *mapping = page->mapping; |
| 635 | 644 | ||
| 636 | VM_BUG_ON(PageSlab(page)); | 645 | VM_BUG_ON(PageSlab(page)); |
| 637 | #ifdef CONFIG_SWAP | ||
| 638 | if (unlikely(PageSwapCache(page))) | 646 | if (unlikely(PageSwapCache(page))) |
| 639 | mapping = &swapper_space; | 647 | mapping = &swapper_space; |
| 640 | else | 648 | else if (unlikely((unsigned long)mapping & PAGE_MAPPING_ANON)) |
| 641 | #endif | ||
| 642 | if (unlikely((unsigned long)mapping & PAGE_MAPPING_ANON)) | ||
| 643 | mapping = NULL; | 649 | mapping = NULL; |
| 644 | return mapping; | 650 | return mapping; |
| 645 | } | 651 | } |
| 646 | 652 | ||
| 653 | /* Neutral page->mapping pointer to address_space or anon_vma or other */ | ||
| 654 | static inline void *page_rmapping(struct page *page) | ||
| 655 | { | ||
| 656 | return (void *)((unsigned long)page->mapping & ~PAGE_MAPPING_FLAGS); | ||
| 657 | } | ||
| 658 | |||
| 647 | static inline int PageAnon(struct page *page) | 659 | static inline int PageAnon(struct page *page) |
| 648 | { | 660 | { |
| 649 | return ((unsigned long)page->mapping & PAGE_MAPPING_ANON) != 0; | 661 | return ((unsigned long)page->mapping & PAGE_MAPPING_ANON) != 0; |
| @@ -758,6 +770,7 @@ unsigned long unmap_vmas(struct mmu_gather **tlb, | |||
| 758 | * @pmd_entry: if set, called for each non-empty PMD (3rd-level) entry | 770 | * @pmd_entry: if set, called for each non-empty PMD (3rd-level) entry |
| 759 | * @pte_entry: if set, called for each non-empty PTE (4th-level) entry | 771 | * @pte_entry: if set, called for each non-empty PTE (4th-level) entry |
| 760 | * @pte_hole: if set, called for each hole at all levels | 772 | * @pte_hole: if set, called for each hole at all levels |
| 773 | * @hugetlb_entry: if set, called for each hugetlb entry | ||
| 761 | * | 774 | * |
| 762 | * (see walk_page_range for more details) | 775 | * (see walk_page_range for more details) |
| 763 | */ | 776 | */ |
| @@ -767,6 +780,8 @@ struct mm_walk { | |||
| 767 | int (*pmd_entry)(pmd_t *, unsigned long, unsigned long, struct mm_walk *); | 780 | int (*pmd_entry)(pmd_t *, unsigned long, unsigned long, struct mm_walk *); |
| 768 | int (*pte_entry)(pte_t *, unsigned long, unsigned long, struct mm_walk *); | 781 | int (*pte_entry)(pte_t *, unsigned long, unsigned long, struct mm_walk *); |
| 769 | int (*pte_hole)(unsigned long, unsigned long, struct mm_walk *); | 782 | int (*pte_hole)(unsigned long, unsigned long, struct mm_walk *); |
| 783 | int (*hugetlb_entry)(pte_t *, unsigned long, unsigned long, | ||
| 784 | struct mm_walk *); | ||
| 770 | struct mm_struct *mm; | 785 | struct mm_struct *mm; |
| 771 | void *private; | 786 | void *private; |
| 772 | }; | 787 | }; |
diff --git a/include/linux/namei.h b/include/linux/namei.h index ec0f607b364a..028946750289 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h | |||
| @@ -76,7 +76,6 @@ extern struct file *nameidata_to_filp(struct nameidata *nd, int flags); | |||
| 76 | extern void release_open_intent(struct nameidata *); | 76 | extern void release_open_intent(struct nameidata *); |
| 77 | 77 | ||
| 78 | extern struct dentry *lookup_one_len(const char *, struct dentry *, int); | 78 | extern struct dentry *lookup_one_len(const char *, struct dentry *, int); |
| 79 | extern struct dentry *lookup_one_noperm(const char *, struct dentry *); | ||
| 80 | 79 | ||
| 81 | extern int follow_down(struct path *); | 80 | extern int follow_down(struct path *); |
| 82 | extern int follow_up(struct path *); | 81 | extern int follow_up(struct path *); |
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index c4c060208109..9b8299af3741 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h | |||
| @@ -128,6 +128,8 @@ | |||
| 128 | #define SEQ4_STATUS_RECALLABLE_STATE_REVOKED 0x00000040 | 128 | #define SEQ4_STATUS_RECALLABLE_STATE_REVOKED 0x00000040 |
| 129 | #define SEQ4_STATUS_LEASE_MOVED 0x00000080 | 129 | #define SEQ4_STATUS_LEASE_MOVED 0x00000080 |
| 130 | #define SEQ4_STATUS_RESTART_RECLAIM_NEEDED 0x00000100 | 130 | #define SEQ4_STATUS_RESTART_RECLAIM_NEEDED 0x00000100 |
| 131 | #define SEQ4_STATUS_CB_PATH_DOWN_SESSION 0x00000200 | ||
| 132 | #define SEQ4_STATUS_BACKCHANNEL_FAULT 0x00000400 | ||
| 131 | 133 | ||
| 132 | #define NFS4_MAX_UINT64 (~(u64)0) | 134 | #define NFS4_MAX_UINT64 (~(u64)0) |
| 133 | 135 | ||
| @@ -528,6 +530,7 @@ enum { | |||
| 528 | NFSPROC4_CLNT_DESTROY_SESSION, | 530 | NFSPROC4_CLNT_DESTROY_SESSION, |
| 529 | NFSPROC4_CLNT_SEQUENCE, | 531 | NFSPROC4_CLNT_SEQUENCE, |
| 530 | NFSPROC4_CLNT_GET_LEASE_TIME, | 532 | NFSPROC4_CLNT_GET_LEASE_TIME, |
| 533 | NFSPROC4_CLNT_RECLAIM_COMPLETE, | ||
| 531 | }; | 534 | }; |
| 532 | 535 | ||
| 533 | /* nfs41 types */ | 536 | /* nfs41 types */ |
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index 320569eabe3b..34fc6be5bfcf 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h | |||
| @@ -209,6 +209,7 @@ struct nfs4_session { | |||
| 209 | unsigned long session_state; | 209 | unsigned long session_state; |
| 210 | u32 hash_alg; | 210 | u32 hash_alg; |
| 211 | u32 ssv_len; | 211 | u32 ssv_len; |
| 212 | struct completion complete; | ||
| 212 | 213 | ||
| 213 | /* The fore and back channel */ | 214 | /* The fore and back channel */ |
| 214 | struct nfs4_channel_attrs fc_attrs; | 215 | struct nfs4_channel_attrs fc_attrs; |
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 62f63fb0c4c8..51071b335751 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h | |||
| @@ -170,8 +170,9 @@ struct nfs4_sequence_args { | |||
| 170 | struct nfs4_sequence_res { | 170 | struct nfs4_sequence_res { |
| 171 | struct nfs4_session *sr_session; | 171 | struct nfs4_session *sr_session; |
| 172 | u8 sr_slotid; /* slot used to send request */ | 172 | u8 sr_slotid; /* slot used to send request */ |
| 173 | unsigned long sr_renewal_time; | ||
| 174 | int sr_status; /* sequence operation status */ | 173 | int sr_status; /* sequence operation status */ |
| 174 | unsigned long sr_renewal_time; | ||
| 175 | u32 sr_status_flags; | ||
| 175 | }; | 176 | }; |
| 176 | 177 | ||
| 177 | struct nfs4_get_lease_time_args { | 178 | struct nfs4_get_lease_time_args { |
| @@ -938,6 +939,16 @@ struct nfs41_create_session_args { | |||
| 938 | struct nfs41_create_session_res { | 939 | struct nfs41_create_session_res { |
| 939 | struct nfs_client *client; | 940 | struct nfs_client *client; |
| 940 | }; | 941 | }; |
| 942 | |||
| 943 | struct nfs41_reclaim_complete_args { | ||
| 944 | /* In the future extend to include curr_fh for use with migration */ | ||
| 945 | unsigned char one_fs:1; | ||
| 946 | struct nfs4_sequence_args seq_args; | ||
| 947 | }; | ||
| 948 | |||
| 949 | struct nfs41_reclaim_complete_res { | ||
| 950 | struct nfs4_sequence_res seq_res; | ||
| 951 | }; | ||
| 941 | #endif /* CONFIG_NFS_V4_1 */ | 952 | #endif /* CONFIG_NFS_V4_1 */ |
| 942 | 953 | ||
| 943 | struct nfs_page; | 954 | struct nfs_page; |
diff --git a/include/linux/nilfs2_fs.h b/include/linux/nilfs2_fs.h index ce520402e840..3fe02cf8b65a 100644 --- a/include/linux/nilfs2_fs.h +++ b/include/linux/nilfs2_fs.h | |||
| @@ -151,6 +151,8 @@ struct nilfs_super_root { | |||
| 151 | #define NILFS_MOUNT_BARRIER 0x1000 /* Use block barriers */ | 151 | #define NILFS_MOUNT_BARRIER 0x1000 /* Use block barriers */ |
| 152 | #define NILFS_MOUNT_STRICT_ORDER 0x2000 /* Apply strict in-order | 152 | #define NILFS_MOUNT_STRICT_ORDER 0x2000 /* Apply strict in-order |
| 153 | semantics also for data */ | 153 | semantics also for data */ |
| 154 | #define NILFS_MOUNT_NORECOVERY 0x4000 /* Disable write access during | ||
| 155 | mount-time recovery */ | ||
| 154 | 156 | ||
| 155 | 157 | ||
| 156 | /** | 158 | /** |
| @@ -403,6 +405,28 @@ struct nilfs_segment_summary { | |||
| 403 | #define NILFS_SS_GC 0x0010 /* segment written for cleaner operation */ | 405 | #define NILFS_SS_GC 0x0010 /* segment written for cleaner operation */ |
| 404 | 406 | ||
| 405 | /** | 407 | /** |
| 408 | * struct nilfs_btree_node - B-tree node | ||
| 409 | * @bn_flags: flags | ||
| 410 | * @bn_level: level | ||
| 411 | * @bn_nchildren: number of children | ||
| 412 | * @bn_pad: padding | ||
| 413 | */ | ||
| 414 | struct nilfs_btree_node { | ||
| 415 | __u8 bn_flags; | ||
| 416 | __u8 bn_level; | ||
| 417 | __le16 bn_nchildren; | ||
| 418 | __le32 bn_pad; | ||
| 419 | }; | ||
| 420 | |||
| 421 | /* flags */ | ||
| 422 | #define NILFS_BTREE_NODE_ROOT 0x01 | ||
| 423 | |||
| 424 | /* level */ | ||
| 425 | #define NILFS_BTREE_LEVEL_DATA 0 | ||
| 426 | #define NILFS_BTREE_LEVEL_NODE_MIN (NILFS_BTREE_LEVEL_DATA + 1) | ||
| 427 | #define NILFS_BTREE_LEVEL_MAX 14 | ||
| 428 | |||
| 429 | /** | ||
| 406 | * struct nilfs_palloc_group_desc - block group descriptor | 430 | * struct nilfs_palloc_group_desc - block group descriptor |
| 407 | * @pg_nfrees: number of free entries in block group | 431 | * @pg_nfrees: number of free entries in block group |
| 408 | */ | 432 | */ |
diff --git a/include/linux/node.h b/include/linux/node.h index 681a697b9a86..06292dac3eab 100644 --- a/include/linux/node.h +++ b/include/linux/node.h | |||
| @@ -21,13 +21,19 @@ | |||
| 21 | 21 | ||
| 22 | #include <linux/sysdev.h> | 22 | #include <linux/sysdev.h> |
| 23 | #include <linux/cpumask.h> | 23 | #include <linux/cpumask.h> |
| 24 | #include <linux/workqueue.h> | ||
| 24 | 25 | ||
| 25 | struct node { | 26 | struct node { |
| 26 | struct sys_device sysdev; | 27 | struct sys_device sysdev; |
| 28 | |||
| 29 | #if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_HUGETLBFS) | ||
| 30 | struct work_struct node_work; | ||
| 31 | #endif | ||
| 27 | }; | 32 | }; |
| 28 | 33 | ||
| 29 | struct memory_block; | 34 | struct memory_block; |
| 30 | extern struct node node_devices[]; | 35 | extern struct node node_devices[]; |
| 36 | typedef void (*node_registration_func_t)(struct node *); | ||
| 31 | 37 | ||
| 32 | extern int register_node(struct node *, int, struct node *); | 38 | extern int register_node(struct node *, int, struct node *); |
| 33 | extern void unregister_node(struct node *node); | 39 | extern void unregister_node(struct node *node); |
| @@ -39,6 +45,11 @@ extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid); | |||
| 39 | extern int register_mem_sect_under_node(struct memory_block *mem_blk, | 45 | extern int register_mem_sect_under_node(struct memory_block *mem_blk, |
| 40 | int nid); | 46 | int nid); |
| 41 | extern int unregister_mem_sect_under_nodes(struct memory_block *mem_blk); | 47 | extern int unregister_mem_sect_under_nodes(struct memory_block *mem_blk); |
| 48 | |||
| 49 | #ifdef CONFIG_HUGETLBFS | ||
| 50 | extern void register_hugetlbfs_with_node(node_registration_func_t doregister, | ||
| 51 | node_registration_func_t unregister); | ||
| 52 | #endif | ||
| 42 | #else | 53 | #else |
| 43 | static inline int register_one_node(int nid) | 54 | static inline int register_one_node(int nid) |
| 44 | { | 55 | { |
| @@ -65,6 +76,11 @@ static inline int unregister_mem_sect_under_nodes(struct memory_block *mem_blk) | |||
| 65 | { | 76 | { |
| 66 | return 0; | 77 | return 0; |
| 67 | } | 78 | } |
| 79 | |||
| 80 | static inline void register_hugetlbfs_with_node(node_registration_func_t reg, | ||
| 81 | node_registration_func_t unreg) | ||
| 82 | { | ||
| 83 | } | ||
| 68 | #endif | 84 | #endif |
| 69 | 85 | ||
| 70 | #define to_node(sys_device) container_of(sys_device, struct node, sysdev) | 86 | #define to_node(sys_device) container_of(sys_device, struct node, sysdev) |
diff --git a/include/linux/nodemask.h b/include/linux/nodemask.h index b359c4a9ec9e..454997cccbd8 100644 --- a/include/linux/nodemask.h +++ b/include/linux/nodemask.h | |||
| @@ -245,14 +245,19 @@ static inline int __next_node(int n, const nodemask_t *srcp) | |||
| 245 | return min_t(int,MAX_NUMNODES,find_next_bit(srcp->bits, MAX_NUMNODES, n+1)); | 245 | return min_t(int,MAX_NUMNODES,find_next_bit(srcp->bits, MAX_NUMNODES, n+1)); |
| 246 | } | 246 | } |
| 247 | 247 | ||
| 248 | static inline void init_nodemask_of_node(nodemask_t *mask, int node) | ||
| 249 | { | ||
| 250 | nodes_clear(*mask); | ||
| 251 | node_set(node, *mask); | ||
| 252 | } | ||
| 253 | |||
| 248 | #define nodemask_of_node(node) \ | 254 | #define nodemask_of_node(node) \ |
| 249 | ({ \ | 255 | ({ \ |
| 250 | typeof(_unused_nodemask_arg_) m; \ | 256 | typeof(_unused_nodemask_arg_) m; \ |
| 251 | if (sizeof(m) == sizeof(unsigned long)) { \ | 257 | if (sizeof(m) == sizeof(unsigned long)) { \ |
| 252 | m.bits[0] = 1UL<<(node); \ | 258 | m.bits[0] = 1UL << (node); \ |
| 253 | } else { \ | 259 | } else { \ |
| 254 | nodes_clear(m); \ | 260 | init_nodemask_of_node(&m, (node)); \ |
| 255 | node_set((node), m); \ | ||
| 256 | } \ | 261 | } \ |
| 257 | m; \ | 262 | m; \ |
| 258 | }) | 263 | }) |
| @@ -480,15 +485,17 @@ static inline int num_node_state(enum node_states state) | |||
| 480 | #define for_each_online_node(node) for_each_node_state(node, N_ONLINE) | 485 | #define for_each_online_node(node) for_each_node_state(node, N_ONLINE) |
| 481 | 486 | ||
| 482 | /* | 487 | /* |
| 483 | * For nodemask scrach area.(See CPUMASK_ALLOC() in cpumask.h) | 488 | * For nodemask scrach area. |
| 489 | * NODEMASK_ALLOC(type, name) allocates an object with a specified type and | ||
| 490 | * name. | ||
| 484 | */ | 491 | */ |
| 485 | 492 | #if NODES_SHIFT > 8 /* nodemask_t > 256 bytes */ | |
| 486 | #if NODES_SHIFT > 8 /* nodemask_t > 64 bytes */ | 493 | #define NODEMASK_ALLOC(type, name, gfp_flags) \ |
| 487 | #define NODEMASK_ALLOC(x, m) struct x *m = kmalloc(sizeof(*m), GFP_KERNEL) | 494 | type *name = kmalloc(sizeof(*name), gfp_flags) |
| 488 | #define NODEMASK_FREE(m) kfree(m) | 495 | #define NODEMASK_FREE(m) kfree(m) |
| 489 | #else | 496 | #else |
| 490 | #define NODEMASK_ALLOC(x, m) struct x _m, *m = &_m | 497 | #define NODEMASK_ALLOC(type, name, gfp_flags) type _name, *name = &_name |
| 491 | #define NODEMASK_FREE(m) | 498 | #define NODEMASK_FREE(m) do {} while (0) |
| 492 | #endif | 499 | #endif |
| 493 | 500 | ||
| 494 | /* A example struture for using NODEMASK_ALLOC, used in mempolicy. */ | 501 | /* A example struture for using NODEMASK_ALLOC, used in mempolicy. */ |
| @@ -497,8 +504,10 @@ struct nodemask_scratch { | |||
| 497 | nodemask_t mask2; | 504 | nodemask_t mask2; |
| 498 | }; | 505 | }; |
| 499 | 506 | ||
| 500 | #define NODEMASK_SCRATCH(x) NODEMASK_ALLOC(nodemask_scratch, x) | 507 | #define NODEMASK_SCRATCH(x) \ |
| 501 | #define NODEMASK_SCRATCH_FREE(x) NODEMASK_FREE(x) | 508 | NODEMASK_ALLOC(struct nodemask_scratch, x, \ |
| 509 | GFP_KERNEL | __GFP_NORETRY) | ||
| 510 | #define NODEMASK_SCRATCH_FREE(x) NODEMASK_FREE(x) | ||
| 502 | 511 | ||
| 503 | 512 | ||
| 504 | #endif /* __LINUX_NODEMASK_H */ | 513 | #endif /* __LINUX_NODEMASK_H */ |
diff --git a/include/linux/numa.h b/include/linux/numa.h index a31a7301b159..3aaa31603a86 100644 --- a/include/linux/numa.h +++ b/include/linux/numa.h | |||
| @@ -10,4 +10,6 @@ | |||
| 10 | 10 | ||
| 11 | #define MAX_NUMNODES (1 << NODES_SHIFT) | 11 | #define MAX_NUMNODES (1 << NODES_SHIFT) |
| 12 | 12 | ||
| 13 | #define NUMA_NO_NODE (-1) | ||
| 14 | |||
| 13 | #endif /* _LINUX_NUMA_H */ | 15 | #endif /* _LINUX_NUMA_H */ |
diff --git a/include/linux/omapfb.h b/include/linux/omapfb.h new file mode 100644 index 000000000000..f46c40ac6d45 --- /dev/null +++ b/include/linux/omapfb.h | |||
| @@ -0,0 +1,251 @@ | |||
| 1 | /* | ||
| 2 | * File: include/linux/omapfb.h | ||
| 3 | * | ||
| 4 | * Framebuffer driver for TI OMAP boards | ||
| 5 | * | ||
| 6 | * Copyright (C) 2004 Nokia Corporation | ||
| 7 | * Author: Imre Deak <imre.deak@nokia.com> | ||
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or modify it | ||
| 10 | * under the terms of the GNU General Public License as published by the | ||
| 11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 12 | * option) any later version. | ||
| 13 | * | ||
| 14 | * This program is distributed in the hope that it will be useful, but | ||
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 17 | * General Public License for more details. | ||
| 18 | * | ||
| 19 | * You should have received a copy of the GNU General Public License along | ||
| 20 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
| 21 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
| 22 | */ | ||
| 23 | |||
| 24 | #ifndef __LINUX_OMAPFB_H__ | ||
| 25 | #define __LINUX_OMAPFB_H__ | ||
| 26 | |||
| 27 | #include <linux/fb.h> | ||
| 28 | #include <linux/ioctl.h> | ||
| 29 | #include <linux/types.h> | ||
| 30 | |||
| 31 | /* IOCTL commands. */ | ||
| 32 | |||
| 33 | #define OMAP_IOW(num, dtype) _IOW('O', num, dtype) | ||
| 34 | #define OMAP_IOR(num, dtype) _IOR('O', num, dtype) | ||
| 35 | #define OMAP_IOWR(num, dtype) _IOWR('O', num, dtype) | ||
| 36 | #define OMAP_IO(num) _IO('O', num) | ||
| 37 | |||
| 38 | #define OMAPFB_MIRROR OMAP_IOW(31, int) | ||
| 39 | #define OMAPFB_SYNC_GFX OMAP_IO(37) | ||
| 40 | #define OMAPFB_VSYNC OMAP_IO(38) | ||
| 41 | #define OMAPFB_SET_UPDATE_MODE OMAP_IOW(40, int) | ||
| 42 | #define OMAPFB_GET_CAPS OMAP_IOR(42, struct omapfb_caps) | ||
| 43 | #define OMAPFB_GET_UPDATE_MODE OMAP_IOW(43, int) | ||
| 44 | #define OMAPFB_LCD_TEST OMAP_IOW(45, int) | ||
| 45 | #define OMAPFB_CTRL_TEST OMAP_IOW(46, int) | ||
| 46 | #define OMAPFB_UPDATE_WINDOW_OLD OMAP_IOW(47, struct omapfb_update_window_old) | ||
| 47 | #define OMAPFB_SET_COLOR_KEY OMAP_IOW(50, struct omapfb_color_key) | ||
| 48 | #define OMAPFB_GET_COLOR_KEY OMAP_IOW(51, struct omapfb_color_key) | ||
| 49 | #define OMAPFB_SETUP_PLANE OMAP_IOW(52, struct omapfb_plane_info) | ||
| 50 | #define OMAPFB_QUERY_PLANE OMAP_IOW(53, struct omapfb_plane_info) | ||
| 51 | #define OMAPFB_UPDATE_WINDOW OMAP_IOW(54, struct omapfb_update_window) | ||
| 52 | #define OMAPFB_SETUP_MEM OMAP_IOW(55, struct omapfb_mem_info) | ||
| 53 | #define OMAPFB_QUERY_MEM OMAP_IOW(56, struct omapfb_mem_info) | ||
| 54 | #define OMAPFB_WAITFORVSYNC OMAP_IO(57) | ||
| 55 | #define OMAPFB_MEMORY_READ OMAP_IOR(58, struct omapfb_memory_read) | ||
| 56 | #define OMAPFB_GET_OVERLAY_COLORMODE OMAP_IOR(59, struct omapfb_ovl_colormode) | ||
| 57 | #define OMAPFB_WAITFORGO OMAP_IO(60) | ||
| 58 | #define OMAPFB_GET_VRAM_INFO OMAP_IOR(61, struct omapfb_vram_info) | ||
| 59 | #define OMAPFB_SET_TEARSYNC OMAP_IOW(62, struct omapfb_tearsync_info) | ||
| 60 | |||
| 61 | #define OMAPFB_CAPS_GENERIC_MASK 0x00000fff | ||
| 62 | #define OMAPFB_CAPS_LCDC_MASK 0x00fff000 | ||
| 63 | #define OMAPFB_CAPS_PANEL_MASK 0xff000000 | ||
| 64 | |||
| 65 | #define OMAPFB_CAPS_MANUAL_UPDATE 0x00001000 | ||
| 66 | #define OMAPFB_CAPS_TEARSYNC 0x00002000 | ||
| 67 | #define OMAPFB_CAPS_PLANE_RELOCATE_MEM 0x00004000 | ||
| 68 | #define OMAPFB_CAPS_PLANE_SCALE 0x00008000 | ||
| 69 | #define OMAPFB_CAPS_WINDOW_PIXEL_DOUBLE 0x00010000 | ||
| 70 | #define OMAPFB_CAPS_WINDOW_SCALE 0x00020000 | ||
| 71 | #define OMAPFB_CAPS_WINDOW_OVERLAY 0x00040000 | ||
| 72 | #define OMAPFB_CAPS_WINDOW_ROTATE 0x00080000 | ||
| 73 | #define OMAPFB_CAPS_SET_BACKLIGHT 0x01000000 | ||
| 74 | |||
| 75 | /* Values from DSP must map to lower 16-bits */ | ||
| 76 | #define OMAPFB_FORMAT_MASK 0x00ff | ||
| 77 | #define OMAPFB_FORMAT_FLAG_DOUBLE 0x0100 | ||
| 78 | #define OMAPFB_FORMAT_FLAG_TEARSYNC 0x0200 | ||
| 79 | #define OMAPFB_FORMAT_FLAG_FORCE_VSYNC 0x0400 | ||
| 80 | #define OMAPFB_FORMAT_FLAG_ENABLE_OVERLAY 0x0800 | ||
| 81 | #define OMAPFB_FORMAT_FLAG_DISABLE_OVERLAY 0x1000 | ||
| 82 | |||
| 83 | #define OMAPFB_MEMTYPE_SDRAM 0 | ||
| 84 | #define OMAPFB_MEMTYPE_SRAM 1 | ||
| 85 | #define OMAPFB_MEMTYPE_MAX 1 | ||
| 86 | |||
| 87 | enum omapfb_color_format { | ||
| 88 | OMAPFB_COLOR_RGB565 = 0, | ||
| 89 | OMAPFB_COLOR_YUV422, | ||
| 90 | OMAPFB_COLOR_YUV420, | ||
| 91 | OMAPFB_COLOR_CLUT_8BPP, | ||
| 92 | OMAPFB_COLOR_CLUT_4BPP, | ||
| 93 | OMAPFB_COLOR_CLUT_2BPP, | ||
| 94 | OMAPFB_COLOR_CLUT_1BPP, | ||
| 95 | OMAPFB_COLOR_RGB444, | ||
| 96 | OMAPFB_COLOR_YUY422, | ||
| 97 | |||
| 98 | OMAPFB_COLOR_ARGB16, | ||
| 99 | OMAPFB_COLOR_RGB24U, /* RGB24, 32-bit container */ | ||
| 100 | OMAPFB_COLOR_RGB24P, /* RGB24, 24-bit container */ | ||
| 101 | OMAPFB_COLOR_ARGB32, | ||
| 102 | OMAPFB_COLOR_RGBA32, | ||
| 103 | OMAPFB_COLOR_RGBX32, | ||
| 104 | }; | ||
| 105 | |||
| 106 | struct omapfb_update_window { | ||
| 107 | __u32 x, y; | ||
| 108 | __u32 width, height; | ||
| 109 | __u32 format; | ||
| 110 | __u32 out_x, out_y; | ||
| 111 | __u32 out_width, out_height; | ||
| 112 | __u32 reserved[8]; | ||
| 113 | }; | ||
| 114 | |||
| 115 | struct omapfb_update_window_old { | ||
| 116 | __u32 x, y; | ||
| 117 | __u32 width, height; | ||
| 118 | __u32 format; | ||
| 119 | }; | ||
| 120 | |||
| 121 | enum omapfb_plane { | ||
| 122 | OMAPFB_PLANE_GFX = 0, | ||
| 123 | OMAPFB_PLANE_VID1, | ||
| 124 | OMAPFB_PLANE_VID2, | ||
| 125 | }; | ||
| 126 | |||
| 127 | enum omapfb_channel_out { | ||
| 128 | OMAPFB_CHANNEL_OUT_LCD = 0, | ||
| 129 | OMAPFB_CHANNEL_OUT_DIGIT, | ||
| 130 | }; | ||
| 131 | |||
| 132 | struct omapfb_plane_info { | ||
| 133 | __u32 pos_x; | ||
| 134 | __u32 pos_y; | ||
| 135 | __u8 enabled; | ||
| 136 | __u8 channel_out; | ||
| 137 | __u8 mirror; | ||
| 138 | __u8 reserved1; | ||
| 139 | __u32 out_width; | ||
| 140 | __u32 out_height; | ||
| 141 | __u32 reserved2[12]; | ||
| 142 | }; | ||
| 143 | |||
| 144 | struct omapfb_mem_info { | ||
| 145 | __u32 size; | ||
| 146 | __u8 type; | ||
| 147 | __u8 reserved[3]; | ||
| 148 | }; | ||
| 149 | |||
| 150 | struct omapfb_caps { | ||
| 151 | __u32 ctrl; | ||
| 152 | __u32 plane_color; | ||
| 153 | __u32 wnd_color; | ||
| 154 | }; | ||
| 155 | |||
| 156 | enum omapfb_color_key_type { | ||
| 157 | OMAPFB_COLOR_KEY_DISABLED = 0, | ||
| 158 | OMAPFB_COLOR_KEY_GFX_DST, | ||
| 159 | OMAPFB_COLOR_KEY_VID_SRC, | ||
| 160 | }; | ||
| 161 | |||
| 162 | struct omapfb_color_key { | ||
| 163 | __u8 channel_out; | ||
| 164 | __u32 background; | ||
| 165 | __u32 trans_key; | ||
| 166 | __u8 key_type; | ||
| 167 | }; | ||
| 168 | |||
| 169 | enum omapfb_update_mode { | ||
| 170 | OMAPFB_UPDATE_DISABLED = 0, | ||
| 171 | OMAPFB_AUTO_UPDATE, | ||
| 172 | OMAPFB_MANUAL_UPDATE | ||
| 173 | }; | ||
| 174 | |||
| 175 | struct omapfb_memory_read { | ||
| 176 | __u16 x; | ||
| 177 | __u16 y; | ||
| 178 | __u16 w; | ||
| 179 | __u16 h; | ||
| 180 | size_t buffer_size; | ||
| 181 | void __user *buffer; | ||
| 182 | }; | ||
| 183 | |||
| 184 | struct omapfb_ovl_colormode { | ||
| 185 | __u8 overlay_idx; | ||
| 186 | __u8 mode_idx; | ||
| 187 | __u32 bits_per_pixel; | ||
| 188 | __u32 nonstd; | ||
| 189 | struct fb_bitfield red; | ||
| 190 | struct fb_bitfield green; | ||
| 191 | struct fb_bitfield blue; | ||
| 192 | struct fb_bitfield transp; | ||
| 193 | }; | ||
| 194 | |||
| 195 | struct omapfb_vram_info { | ||
| 196 | __u32 total; | ||
| 197 | __u32 free; | ||
| 198 | __u32 largest_free_block; | ||
| 199 | __u32 reserved[5]; | ||
| 200 | }; | ||
| 201 | |||
| 202 | struct omapfb_tearsync_info { | ||
| 203 | __u8 enabled; | ||
| 204 | __u8 reserved1[3]; | ||
| 205 | __u16 line; | ||
| 206 | __u16 reserved2; | ||
| 207 | }; | ||
| 208 | |||
| 209 | #ifdef __KERNEL__ | ||
| 210 | |||
| 211 | #include <plat/board.h> | ||
| 212 | |||
| 213 | #ifdef CONFIG_ARCH_OMAP1 | ||
| 214 | #define OMAPFB_PLANE_NUM 1 | ||
| 215 | #else | ||
| 216 | #define OMAPFB_PLANE_NUM 3 | ||
| 217 | #endif | ||
| 218 | |||
| 219 | struct omapfb_mem_region { | ||
| 220 | u32 paddr; | ||
| 221 | void __iomem *vaddr; | ||
| 222 | unsigned long size; | ||
| 223 | u8 type; /* OMAPFB_PLANE_MEM_* */ | ||
| 224 | enum omapfb_color_format format;/* OMAPFB_COLOR_* */ | ||
| 225 | unsigned format_used:1; /* Must be set when format is set. | ||
| 226 | * Needed b/c of the badly chosen 0 | ||
| 227 | * base for OMAPFB_COLOR_* values | ||
| 228 | */ | ||
| 229 | unsigned alloc:1; /* allocated by the driver */ | ||
| 230 | unsigned map:1; /* kernel mapped by the driver */ | ||
| 231 | }; | ||
| 232 | |||
| 233 | struct omapfb_mem_desc { | ||
| 234 | int region_cnt; | ||
| 235 | struct omapfb_mem_region region[OMAPFB_PLANE_NUM]; | ||
| 236 | }; | ||
| 237 | |||
| 238 | struct omapfb_platform_data { | ||
| 239 | struct omap_lcd_config lcd; | ||
| 240 | struct omapfb_mem_desc mem_desc; | ||
| 241 | void *ctrl_platform_data; | ||
| 242 | }; | ||
| 243 | |||
| 244 | /* in arch/arm/plat-omap/fb.c */ | ||
| 245 | extern void omapfb_set_platform_data(struct omapfb_platform_data *data); | ||
| 246 | extern void omapfb_set_ctrl_platform_data(void *pdata); | ||
| 247 | extern void omapfb_reserve_sdram(void); | ||
| 248 | |||
| 249 | #endif | ||
| 250 | |||
| 251 | #endif /* __OMAPFB_H */ | ||
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index 6b202b173955..49e907bd067f 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h | |||
| @@ -99,7 +99,7 @@ enum pageflags { | |||
| 99 | PG_buddy, /* Page is free, on buddy lists */ | 99 | PG_buddy, /* Page is free, on buddy lists */ |
| 100 | PG_swapbacked, /* Page is backed by RAM/swap */ | 100 | PG_swapbacked, /* Page is backed by RAM/swap */ |
| 101 | PG_unevictable, /* Page is "unevictable" */ | 101 | PG_unevictable, /* Page is "unevictable" */ |
| 102 | #ifdef CONFIG_HAVE_MLOCKED_PAGE_BIT | 102 | #ifdef CONFIG_MMU |
| 103 | PG_mlocked, /* Page is vma mlocked */ | 103 | PG_mlocked, /* Page is vma mlocked */ |
| 104 | #endif | 104 | #endif |
| 105 | #ifdef CONFIG_ARCH_USES_PG_UNCACHED | 105 | #ifdef CONFIG_ARCH_USES_PG_UNCACHED |
| @@ -259,12 +259,10 @@ PAGEFLAG_FALSE(SwapCache) | |||
| 259 | PAGEFLAG(Unevictable, unevictable) __CLEARPAGEFLAG(Unevictable, unevictable) | 259 | PAGEFLAG(Unevictable, unevictable) __CLEARPAGEFLAG(Unevictable, unevictable) |
| 260 | TESTCLEARFLAG(Unevictable, unevictable) | 260 | TESTCLEARFLAG(Unevictable, unevictable) |
| 261 | 261 | ||
| 262 | #ifdef CONFIG_HAVE_MLOCKED_PAGE_BIT | 262 | #ifdef CONFIG_MMU |
| 263 | #define MLOCK_PAGES 1 | ||
| 264 | PAGEFLAG(Mlocked, mlocked) __CLEARPAGEFLAG(Mlocked, mlocked) | 263 | PAGEFLAG(Mlocked, mlocked) __CLEARPAGEFLAG(Mlocked, mlocked) |
| 265 | TESTSCFLAG(Mlocked, mlocked) __TESTCLEARFLAG(Mlocked, mlocked) | 264 | TESTSCFLAG(Mlocked, mlocked) __TESTCLEARFLAG(Mlocked, mlocked) |
| 266 | #else | 265 | #else |
| 267 | #define MLOCK_PAGES 0 | ||
| 268 | PAGEFLAG_FALSE(Mlocked) SETPAGEFLAG_NOOP(Mlocked) | 266 | PAGEFLAG_FALSE(Mlocked) SETPAGEFLAG_NOOP(Mlocked) |
| 269 | TESTCLEARFLAG_FALSE(Mlocked) __TESTCLEARFLAG_FALSE(Mlocked) | 267 | TESTCLEARFLAG_FALSE(Mlocked) __TESTCLEARFLAG_FALSE(Mlocked) |
| 270 | #endif | 268 | #endif |
| @@ -393,7 +391,7 @@ static inline void __ClearPageTail(struct page *page) | |||
| 393 | 391 | ||
| 394 | #endif /* !PAGEFLAGS_EXTENDED */ | 392 | #endif /* !PAGEFLAGS_EXTENDED */ |
| 395 | 393 | ||
| 396 | #ifdef CONFIG_HAVE_MLOCKED_PAGE_BIT | 394 | #ifdef CONFIG_MMU |
| 397 | #define __PG_MLOCKED (1 << PG_mlocked) | 395 | #define __PG_MLOCKED (1 << PG_mlocked) |
| 398 | #else | 396 | #else |
| 399 | #define __PG_MLOCKED 0 | 397 | #define __PG_MLOCKED 0 |
diff --git a/include/linux/pci.h b/include/linux/pci.h index f5c7cd343e56..bf1e67080849 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
| @@ -218,6 +218,7 @@ struct pci_dev { | |||
| 218 | unsigned int class; /* 3 bytes: (base,sub,prog-if) */ | 218 | unsigned int class; /* 3 bytes: (base,sub,prog-if) */ |
| 219 | u8 revision; /* PCI revision, low byte of class word */ | 219 | u8 revision; /* PCI revision, low byte of class word */ |
| 220 | u8 hdr_type; /* PCI header type (`multi' flag masked out) */ | 220 | u8 hdr_type; /* PCI header type (`multi' flag masked out) */ |
| 221 | u8 pcie_cap; /* PCI-E capability offset */ | ||
| 221 | u8 pcie_type; /* PCI-E device/port type */ | 222 | u8 pcie_type; /* PCI-E device/port type */ |
| 222 | u8 rom_base_reg; /* which config register controls the ROM */ | 223 | u8 rom_base_reg; /* which config register controls the ROM */ |
| 223 | u8 pin; /* which interrupt pin this device uses */ | 224 | u8 pin; /* which interrupt pin this device uses */ |
| @@ -280,6 +281,7 @@ struct pci_dev { | |||
| 280 | unsigned int is_virtfn:1; | 281 | unsigned int is_virtfn:1; |
| 281 | unsigned int reset_fn:1; | 282 | unsigned int reset_fn:1; |
| 282 | unsigned int is_hotplug_bridge:1; | 283 | unsigned int is_hotplug_bridge:1; |
| 284 | unsigned int aer_firmware_first:1; | ||
| 283 | pci_dev_flags_t dev_flags; | 285 | pci_dev_flags_t dev_flags; |
| 284 | atomic_t enable_cnt; /* pci_enable_device has been called */ | 286 | atomic_t enable_cnt; /* pci_enable_device has been called */ |
| 285 | 287 | ||
| @@ -635,7 +637,13 @@ struct pci_dev *pci_get_subsys(unsigned int vendor, unsigned int device, | |||
| 635 | unsigned int ss_vendor, unsigned int ss_device, | 637 | unsigned int ss_vendor, unsigned int ss_device, |
| 636 | struct pci_dev *from); | 638 | struct pci_dev *from); |
| 637 | struct pci_dev *pci_get_slot(struct pci_bus *bus, unsigned int devfn); | 639 | struct pci_dev *pci_get_slot(struct pci_bus *bus, unsigned int devfn); |
| 638 | struct pci_dev *pci_get_bus_and_slot(unsigned int bus, unsigned int devfn); | 640 | struct pci_dev *pci_get_domain_bus_and_slot(int domain, unsigned int bus, |
| 641 | unsigned int devfn); | ||
| 642 | static inline struct pci_dev *pci_get_bus_and_slot(unsigned int bus, | ||
| 643 | unsigned int devfn) | ||
| 644 | { | ||
| 645 | return pci_get_domain_bus_and_slot(0, bus, devfn); | ||
| 646 | } | ||
| 639 | struct pci_dev *pci_get_class(unsigned int class, struct pci_dev *from); | 647 | struct pci_dev *pci_get_class(unsigned int class, struct pci_dev *from); |
| 640 | int pci_dev_present(const struct pci_device_id *ids); | 648 | int pci_dev_present(const struct pci_device_id *ids); |
| 641 | 649 | ||
| @@ -701,6 +709,7 @@ void pci_disable_device(struct pci_dev *dev); | |||
| 701 | void pci_set_master(struct pci_dev *dev); | 709 | void pci_set_master(struct pci_dev *dev); |
| 702 | void pci_clear_master(struct pci_dev *dev); | 710 | void pci_clear_master(struct pci_dev *dev); |
| 703 | int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state); | 711 | int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state); |
| 712 | int pci_set_cacheline_size(struct pci_dev *dev); | ||
| 704 | #define HAVE_PCI_SET_MWI | 713 | #define HAVE_PCI_SET_MWI |
| 705 | int __must_check pci_set_mwi(struct pci_dev *dev); | 714 | int __must_check pci_set_mwi(struct pci_dev *dev); |
| 706 | int pci_try_set_mwi(struct pci_dev *dev); | 715 | int pci_try_set_mwi(struct pci_dev *dev); |
| @@ -1246,6 +1255,8 @@ extern int pci_pci_problems; | |||
| 1246 | 1255 | ||
| 1247 | extern unsigned long pci_cardbus_io_size; | 1256 | extern unsigned long pci_cardbus_io_size; |
| 1248 | extern unsigned long pci_cardbus_mem_size; | 1257 | extern unsigned long pci_cardbus_mem_size; |
| 1258 | extern u8 __devinitdata pci_dfl_cache_line_size; | ||
| 1259 | extern u8 pci_cache_line_size; | ||
| 1249 | 1260 | ||
| 1250 | extern unsigned long pci_hotplug_io_size; | 1261 | extern unsigned long pci_hotplug_io_size; |
| 1251 | extern unsigned long pci_hotplug_mem_size; | 1262 | extern unsigned long pci_hotplug_mem_size; |
| @@ -1290,5 +1301,34 @@ extern void pci_hp_create_module_link(struct pci_slot *pci_slot); | |||
| 1290 | extern void pci_hp_remove_module_link(struct pci_slot *pci_slot); | 1301 | extern void pci_hp_remove_module_link(struct pci_slot *pci_slot); |
| 1291 | #endif | 1302 | #endif |
| 1292 | 1303 | ||
| 1304 | /** | ||
| 1305 | * pci_pcie_cap - get the saved PCIe capability offset | ||
| 1306 | * @dev: PCI device | ||
| 1307 | * | ||
| 1308 | * PCIe capability offset is calculated at PCI device initialization | ||
| 1309 | * time and saved in the data structure. This function returns saved | ||
| 1310 | * PCIe capability offset. Using this instead of pci_find_capability() | ||
| 1311 | * reduces unnecessary search in the PCI configuration space. If you | ||
| 1312 | * need to calculate PCIe capability offset from raw device for some | ||
| 1313 | * reasons, please use pci_find_capability() instead. | ||
| 1314 | */ | ||
| 1315 | static inline int pci_pcie_cap(struct pci_dev *dev) | ||
| 1316 | { | ||
| 1317 | return dev->pcie_cap; | ||
| 1318 | } | ||
| 1319 | |||
| 1320 | /** | ||
| 1321 | * pci_is_pcie - check if the PCI device is PCI Express capable | ||
| 1322 | * @dev: PCI device | ||
| 1323 | * | ||
| 1324 | * Retrun true if the PCI device is PCI Express capable, false otherwise. | ||
| 1325 | */ | ||
| 1326 | static inline bool pci_is_pcie(struct pci_dev *dev) | ||
| 1327 | { | ||
| 1328 | return !!pci_pcie_cap(dev); | ||
| 1329 | } | ||
| 1330 | |||
| 1331 | void pci_request_acs(void); | ||
| 1332 | |||
| 1293 | #endif /* __KERNEL__ */ | 1333 | #endif /* __KERNEL__ */ |
| 1294 | #endif /* LINUX_PCI_H */ | 1334 | #endif /* LINUX_PCI_H */ |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index eae1f864c934..cca8a044e2b6 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
| @@ -2295,6 +2295,20 @@ | |||
| 2295 | #define PCI_DEVICE_ID_MPC8536 0x0051 | 2295 | #define PCI_DEVICE_ID_MPC8536 0x0051 |
| 2296 | #define PCI_DEVICE_ID_P2020E 0x0070 | 2296 | #define PCI_DEVICE_ID_P2020E 0x0070 |
| 2297 | #define PCI_DEVICE_ID_P2020 0x0071 | 2297 | #define PCI_DEVICE_ID_P2020 0x0071 |
| 2298 | #define PCI_DEVICE_ID_P2010E 0x0078 | ||
| 2299 | #define PCI_DEVICE_ID_P2010 0x0079 | ||
| 2300 | #define PCI_DEVICE_ID_P1020E 0x0100 | ||
| 2301 | #define PCI_DEVICE_ID_P1020 0x0101 | ||
| 2302 | #define PCI_DEVICE_ID_P1011E 0x0108 | ||
| 2303 | #define PCI_DEVICE_ID_P1011 0x0109 | ||
| 2304 | #define PCI_DEVICE_ID_P1022E 0x0110 | ||
| 2305 | #define PCI_DEVICE_ID_P1022 0x0111 | ||
| 2306 | #define PCI_DEVICE_ID_P1013E 0x0118 | ||
| 2307 | #define PCI_DEVICE_ID_P1013 0x0119 | ||
| 2308 | #define PCI_DEVICE_ID_P4080E 0x0400 | ||
| 2309 | #define PCI_DEVICE_ID_P4080 0x0401 | ||
| 2310 | #define PCI_DEVICE_ID_P4040E 0x0408 | ||
| 2311 | #define PCI_DEVICE_ID_P4040 0x0409 | ||
| 2298 | #define PCI_DEVICE_ID_MPC8641 0x7010 | 2312 | #define PCI_DEVICE_ID_MPC8641 0x7010 |
| 2299 | #define PCI_DEVICE_ID_MPC8641D 0x7011 | 2313 | #define PCI_DEVICE_ID_MPC8641D 0x7011 |
| 2300 | #define PCI_DEVICE_ID_MPC8610 0x7018 | 2314 | #define PCI_DEVICE_ID_MPC8610 0x7018 |
diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h index dd0bed4f1cf0..9f2ad0aa3c39 100644 --- a/include/linux/pci_regs.h +++ b/include/linux/pci_regs.h | |||
| @@ -365,6 +365,11 @@ | |||
| 365 | #define PCI_X_STATUS_266MHZ 0x40000000 /* 266 MHz capable */ | 365 | #define PCI_X_STATUS_266MHZ 0x40000000 /* 266 MHz capable */ |
| 366 | #define PCI_X_STATUS_533MHZ 0x80000000 /* 533 MHz capable */ | 366 | #define PCI_X_STATUS_533MHZ 0x80000000 /* 533 MHz capable */ |
| 367 | 367 | ||
| 368 | /* PCI Bridge Subsystem ID registers */ | ||
| 369 | |||
| 370 | #define PCI_SSVID_VENDOR_ID 4 /* PCI-Bridge subsystem vendor id register */ | ||
| 371 | #define PCI_SSVID_DEVICE_ID 6 /* PCI-Bridge subsystem device id register */ | ||
| 372 | |||
| 368 | /* PCI Express capability registers */ | 373 | /* PCI Express capability registers */ |
| 369 | 374 | ||
| 370 | #define PCI_EXP_FLAGS 2 /* Capabilities register */ | 375 | #define PCI_EXP_FLAGS 2 /* Capabilities register */ |
| @@ -502,6 +507,7 @@ | |||
| 502 | #define PCI_EXT_CAP_ID_VC 2 | 507 | #define PCI_EXT_CAP_ID_VC 2 |
| 503 | #define PCI_EXT_CAP_ID_DSN 3 | 508 | #define PCI_EXT_CAP_ID_DSN 3 |
| 504 | #define PCI_EXT_CAP_ID_PWR 4 | 509 | #define PCI_EXT_CAP_ID_PWR 4 |
| 510 | #define PCI_EXT_CAP_ID_ACS 13 | ||
| 505 | #define PCI_EXT_CAP_ID_ARI 14 | 511 | #define PCI_EXT_CAP_ID_ARI 14 |
| 506 | #define PCI_EXT_CAP_ID_ATS 15 | 512 | #define PCI_EXT_CAP_ID_ATS 15 |
| 507 | #define PCI_EXT_CAP_ID_SRIOV 16 | 513 | #define PCI_EXT_CAP_ID_SRIOV 16 |
| @@ -662,4 +668,16 @@ | |||
| 662 | #define PCI_SRIOV_VFM_MO 0x2 /* Active.MigrateOut */ | 668 | #define PCI_SRIOV_VFM_MO 0x2 /* Active.MigrateOut */ |
| 663 | #define PCI_SRIOV_VFM_AV 0x3 /* Active.Available */ | 669 | #define PCI_SRIOV_VFM_AV 0x3 /* Active.Available */ |
| 664 | 670 | ||
| 671 | /* Access Control Service */ | ||
| 672 | #define PCI_ACS_CAP 0x04 /* ACS Capability Register */ | ||
| 673 | #define PCI_ACS_SV 0x01 /* Source Validation */ | ||
| 674 | #define PCI_ACS_TB 0x02 /* Translation Blocking */ | ||
| 675 | #define PCI_ACS_RR 0x04 /* P2P Request Redirect */ | ||
| 676 | #define PCI_ACS_CR 0x08 /* P2P Completion Redirect */ | ||
| 677 | #define PCI_ACS_UF 0x10 /* Upstream Forwarding */ | ||
| 678 | #define PCI_ACS_EC 0x20 /* P2P Egress Control */ | ||
| 679 | #define PCI_ACS_DT 0x40 /* Direct Translated P2P */ | ||
| 680 | #define PCI_ACS_CTRL 0x06 /* ACS Control Register */ | ||
| 681 | #define PCI_ACS_EGRESS_CTL_V 0x08 /* ACS Egress Control Vector */ | ||
| 682 | |||
| 665 | #endif /* LINUX_PCI_REGS_H */ | 683 | #endif /* LINUX_PCI_REGS_H */ |
diff --git a/include/linux/pcieport_if.h b/include/linux/pcieport_if.h index b4c79545330b..6775532b92a9 100644 --- a/include/linux/pcieport_if.h +++ b/include/linux/pcieport_if.h | |||
| @@ -10,10 +10,7 @@ | |||
| 10 | #define _PCIEPORT_IF_H_ | 10 | #define _PCIEPORT_IF_H_ |
| 11 | 11 | ||
| 12 | /* Port Type */ | 12 | /* Port Type */ |
| 13 | #define PCIE_RC_PORT 4 /* Root port of RC */ | 13 | #define PCIE_ANY_PORT (~0) |
| 14 | #define PCIE_SW_UPSTREAM_PORT 5 /* Upstream port of Switch */ | ||
| 15 | #define PCIE_SW_DOWNSTREAM_PORT 6 /* Downstream port of Switch */ | ||
| 16 | #define PCIE_ANY_PORT 7 | ||
| 17 | 14 | ||
| 18 | /* Service Type */ | 15 | /* Service Type */ |
| 19 | #define PCIE_PORT_SERVICE_PME_SHIFT 0 /* Power Management Event */ | 16 | #define PCIE_PORT_SERVICE_PME_SHIFT 0 /* Power Management Event */ |
| @@ -25,17 +22,6 @@ | |||
| 25 | #define PCIE_PORT_SERVICE_VC_SHIFT 3 /* Virtual Channel */ | 22 | #define PCIE_PORT_SERVICE_VC_SHIFT 3 /* Virtual Channel */ |
| 26 | #define PCIE_PORT_SERVICE_VC (1 << PCIE_PORT_SERVICE_VC_SHIFT) | 23 | #define PCIE_PORT_SERVICE_VC (1 << PCIE_PORT_SERVICE_VC_SHIFT) |
| 27 | 24 | ||
| 28 | /* Root/Upstream/Downstream Port's Interrupt Mode */ | ||
| 29 | #define PCIE_PORT_NO_IRQ (-1) | ||
| 30 | #define PCIE_PORT_INTx_MODE 0 | ||
| 31 | #define PCIE_PORT_MSI_MODE 1 | ||
| 32 | #define PCIE_PORT_MSIX_MODE 2 | ||
| 33 | |||
| 34 | struct pcie_port_data { | ||
| 35 | int port_type; /* Type of the port */ | ||
| 36 | int port_irq_mode; /* [0:INTx | 1:MSI | 2:MSI-X] */ | ||
| 37 | }; | ||
| 38 | |||
| 39 | struct pcie_device { | 25 | struct pcie_device { |
| 40 | int irq; /* Service IRQ/MSI/MSI-X Vector */ | 26 | int irq; /* Service IRQ/MSI/MSI-X Vector */ |
| 41 | struct pci_dev *port; /* Root/Upstream/Downstream Port */ | 27 | struct pci_dev *port; /* Root/Upstream/Downstream Port */ |
diff --git a/include/linux/percpu-defs.h b/include/linux/percpu-defs.h index 9bd03193ecd4..5a5d6ce4bd55 100644 --- a/include/linux/percpu-defs.h +++ b/include/linux/percpu-defs.h | |||
| @@ -60,6 +60,7 @@ | |||
| 60 | 60 | ||
| 61 | #define DEFINE_PER_CPU_SECTION(type, name, sec) \ | 61 | #define DEFINE_PER_CPU_SECTION(type, name, sec) \ |
| 62 | __PCPU_DUMMY_ATTRS char __pcpu_scope_##name; \ | 62 | __PCPU_DUMMY_ATTRS char __pcpu_scope_##name; \ |
| 63 | extern __PCPU_DUMMY_ATTRS char __pcpu_unique_##name; \ | ||
| 63 | __PCPU_DUMMY_ATTRS char __pcpu_unique_##name; \ | 64 | __PCPU_DUMMY_ATTRS char __pcpu_unique_##name; \ |
| 64 | __PCPU_ATTRS(sec) PER_CPU_DEF_ATTRIBUTES __weak \ | 65 | __PCPU_ATTRS(sec) PER_CPU_DEF_ATTRIBUTES __weak \ |
| 65 | __typeof__(type) per_cpu__##name | 66 | __typeof__(type) per_cpu__##name |
diff --git a/include/linux/percpu.h b/include/linux/percpu.h index 878836ca999c..cf5efbcf716c 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h | |||
| @@ -34,8 +34,6 @@ | |||
| 34 | 34 | ||
| 35 | #ifdef CONFIG_SMP | 35 | #ifdef CONFIG_SMP |
| 36 | 36 | ||
| 37 | #ifndef CONFIG_HAVE_LEGACY_PER_CPU_AREA | ||
| 38 | |||
| 39 | /* minimum unit size, also is the maximum supported allocation size */ | 37 | /* minimum unit size, also is the maximum supported allocation size */ |
| 40 | #define PCPU_MIN_UNIT_SIZE PFN_ALIGN(64 << 10) | 38 | #define PCPU_MIN_UNIT_SIZE PFN_ALIGN(64 << 10) |
| 41 | 39 | ||
| @@ -130,30 +128,9 @@ extern int __init pcpu_page_first_chunk(size_t reserved_size, | |||
| 130 | #define per_cpu_ptr(ptr, cpu) SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu))) | 128 | #define per_cpu_ptr(ptr, cpu) SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu))) |
| 131 | 129 | ||
| 132 | extern void *__alloc_reserved_percpu(size_t size, size_t align); | 130 | extern void *__alloc_reserved_percpu(size_t size, size_t align); |
| 133 | |||
| 134 | #else /* CONFIG_HAVE_LEGACY_PER_CPU_AREA */ | ||
| 135 | |||
| 136 | struct percpu_data { | ||
| 137 | void *ptrs[1]; | ||
| 138 | }; | ||
| 139 | |||
| 140 | /* pointer disguising messes up the kmemleak objects tracking */ | ||
| 141 | #ifndef CONFIG_DEBUG_KMEMLEAK | ||
| 142 | #define __percpu_disguise(pdata) (struct percpu_data *)~(unsigned long)(pdata) | ||
| 143 | #else | ||
| 144 | #define __percpu_disguise(pdata) (struct percpu_data *)(pdata) | ||
| 145 | #endif | ||
| 146 | |||
| 147 | #define per_cpu_ptr(ptr, cpu) \ | ||
| 148 | ({ \ | ||
| 149 | struct percpu_data *__p = __percpu_disguise(ptr); \ | ||
| 150 | (__typeof__(ptr))__p->ptrs[(cpu)]; \ | ||
| 151 | }) | ||
| 152 | |||
| 153 | #endif /* CONFIG_HAVE_LEGACY_PER_CPU_AREA */ | ||
| 154 | |||
| 155 | extern void *__alloc_percpu(size_t size, size_t align); | 131 | extern void *__alloc_percpu(size_t size, size_t align); |
| 156 | extern void free_percpu(void *__pdata); | 132 | extern void free_percpu(void *__pdata); |
| 133 | extern phys_addr_t per_cpu_ptr_to_phys(void *addr); | ||
| 157 | 134 | ||
| 158 | #ifndef CONFIG_HAVE_SETUP_PER_CPU_AREA | 135 | #ifndef CONFIG_HAVE_SETUP_PER_CPU_AREA |
| 159 | extern void __init setup_per_cpu_areas(void); | 136 | extern void __init setup_per_cpu_areas(void); |
| @@ -179,6 +156,11 @@ static inline void free_percpu(void *p) | |||
| 179 | kfree(p); | 156 | kfree(p); |
| 180 | } | 157 | } |
| 181 | 158 | ||
| 159 | static inline phys_addr_t per_cpu_ptr_to_phys(void *addr) | ||
| 160 | { | ||
| 161 | return __pa(addr); | ||
| 162 | } | ||
| 163 | |||
| 182 | static inline void __init setup_per_cpu_areas(void) { } | 164 | static inline void __init setup_per_cpu_areas(void) { } |
| 183 | 165 | ||
| 184 | static inline void *pcpu_lpage_remapped(void *kaddr) | 166 | static inline void *pcpu_lpage_remapped(void *kaddr) |
| @@ -188,8 +170,8 @@ static inline void *pcpu_lpage_remapped(void *kaddr) | |||
| 188 | 170 | ||
| 189 | #endif /* CONFIG_SMP */ | 171 | #endif /* CONFIG_SMP */ |
| 190 | 172 | ||
| 191 | #define alloc_percpu(type) (type *)__alloc_percpu(sizeof(type), \ | 173 | #define alloc_percpu(type) \ |
| 192 | __alignof__(type)) | 174 | (typeof(type) *)__alloc_percpu(sizeof(type), __alignof__(type)) |
| 193 | 175 | ||
| 194 | /* | 176 | /* |
| 195 | * Optional methods for optimized non-lvalue per-cpu variable access. | 177 | * Optional methods for optimized non-lvalue per-cpu variable access. |
| @@ -243,4 +225,404 @@ do { \ | |||
| 243 | # define percpu_xor(var, val) __percpu_generic_to_op(var, (val), ^=) | 225 | # define percpu_xor(var, val) __percpu_generic_to_op(var, (val), ^=) |
| 244 | #endif | 226 | #endif |
| 245 | 227 | ||
| 228 | /* | ||
| 229 | * Branching function to split up a function into a set of functions that | ||
| 230 | * are called for different scalar sizes of the objects handled. | ||
| 231 | */ | ||
| 232 | |||
| 233 | extern void __bad_size_call_parameter(void); | ||
| 234 | |||
| 235 | #define __pcpu_size_call_return(stem, variable) \ | ||
| 236 | ({ typeof(variable) pscr_ret__; \ | ||
| 237 | switch(sizeof(variable)) { \ | ||
| 238 | case 1: pscr_ret__ = stem##1(variable);break; \ | ||
| 239 | case 2: pscr_ret__ = stem##2(variable);break; \ | ||
| 240 | case 4: pscr_ret__ = stem##4(variable);break; \ | ||
| 241 | case 8: pscr_ret__ = stem##8(variable);break; \ | ||
| 242 | default: \ | ||
| 243 | __bad_size_call_parameter();break; \ | ||
| 244 | } \ | ||
| 245 | pscr_ret__; \ | ||
| 246 | }) | ||
| 247 | |||
| 248 | #define __pcpu_size_call(stem, variable, ...) \ | ||
| 249 | do { \ | ||
| 250 | switch(sizeof(variable)) { \ | ||
| 251 | case 1: stem##1(variable, __VA_ARGS__);break; \ | ||
| 252 | case 2: stem##2(variable, __VA_ARGS__);break; \ | ||
| 253 | case 4: stem##4(variable, __VA_ARGS__);break; \ | ||
| 254 | case 8: stem##8(variable, __VA_ARGS__);break; \ | ||
| 255 | default: \ | ||
| 256 | __bad_size_call_parameter();break; \ | ||
| 257 | } \ | ||
| 258 | } while (0) | ||
| 259 | |||
| 260 | /* | ||
| 261 | * Optimized manipulation for memory allocated through the per cpu | ||
| 262 | * allocator or for addresses of per cpu variables (can be determined | ||
| 263 | * using per_cpu_var(xx). | ||
| 264 | * | ||
| 265 | * These operation guarantee exclusivity of access for other operations | ||
| 266 | * on the *same* processor. The assumption is that per cpu data is only | ||
| 267 | * accessed by a single processor instance (the current one). | ||
| 268 | * | ||
| 269 | * The first group is used for accesses that must be done in a | ||
| 270 | * preemption safe way since we know that the context is not preempt | ||
| 271 | * safe. Interrupts may occur. If the interrupt modifies the variable | ||
| 272 | * too then RMW actions will not be reliable. | ||
| 273 | * | ||
| 274 | * The arch code can provide optimized functions in two ways: | ||
| 275 | * | ||
| 276 | * 1. Override the function completely. F.e. define this_cpu_add(). | ||
| 277 | * The arch must then ensure that the various scalar format passed | ||
| 278 | * are handled correctly. | ||
| 279 | * | ||
| 280 | * 2. Provide functions for certain scalar sizes. F.e. provide | ||
| 281 | * this_cpu_add_2() to provide per cpu atomic operations for 2 byte | ||
| 282 | * sized RMW actions. If arch code does not provide operations for | ||
| 283 | * a scalar size then the fallback in the generic code will be | ||
| 284 | * used. | ||
| 285 | */ | ||
| 286 | |||
| 287 | #define _this_cpu_generic_read(pcp) \ | ||
| 288 | ({ typeof(pcp) ret__; \ | ||
| 289 | preempt_disable(); \ | ||
| 290 | ret__ = *this_cpu_ptr(&(pcp)); \ | ||
| 291 | preempt_enable(); \ | ||
| 292 | ret__; \ | ||
| 293 | }) | ||
| 294 | |||
| 295 | #ifndef this_cpu_read | ||
| 296 | # ifndef this_cpu_read_1 | ||
| 297 | # define this_cpu_read_1(pcp) _this_cpu_generic_read(pcp) | ||
| 298 | # endif | ||
| 299 | # ifndef this_cpu_read_2 | ||
| 300 | # define this_cpu_read_2(pcp) _this_cpu_generic_read(pcp) | ||
| 301 | # endif | ||
| 302 | # ifndef this_cpu_read_4 | ||
| 303 | # define this_cpu_read_4(pcp) _this_cpu_generic_read(pcp) | ||
| 304 | # endif | ||
| 305 | # ifndef this_cpu_read_8 | ||
| 306 | # define this_cpu_read_8(pcp) _this_cpu_generic_read(pcp) | ||
| 307 | # endif | ||
| 308 | # define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, (pcp)) | ||
| 309 | #endif | ||
| 310 | |||
| 311 | #define _this_cpu_generic_to_op(pcp, val, op) \ | ||
| 312 | do { \ | ||
| 313 | preempt_disable(); \ | ||
| 314 | *__this_cpu_ptr(&pcp) op val; \ | ||
| 315 | preempt_enable(); \ | ||
| 316 | } while (0) | ||
| 317 | |||
| 318 | #ifndef this_cpu_write | ||
| 319 | # ifndef this_cpu_write_1 | ||
| 320 | # define this_cpu_write_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) | ||
| 321 | # endif | ||
| 322 | # ifndef this_cpu_write_2 | ||
| 323 | # define this_cpu_write_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) | ||
| 324 | # endif | ||
| 325 | # ifndef this_cpu_write_4 | ||
| 326 | # define this_cpu_write_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) | ||
| 327 | # endif | ||
| 328 | # ifndef this_cpu_write_8 | ||
| 329 | # define this_cpu_write_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), =) | ||
| 330 | # endif | ||
| 331 | # define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, (pcp), (val)) | ||
| 332 | #endif | ||
| 333 | |||
| 334 | #ifndef this_cpu_add | ||
| 335 | # ifndef this_cpu_add_1 | ||
| 336 | # define this_cpu_add_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) | ||
| 337 | # endif | ||
| 338 | # ifndef this_cpu_add_2 | ||
| 339 | # define this_cpu_add_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) | ||
| 340 | # endif | ||
| 341 | # ifndef this_cpu_add_4 | ||
| 342 | # define this_cpu_add_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) | ||
| 343 | # endif | ||
| 344 | # ifndef this_cpu_add_8 | ||
| 345 | # define this_cpu_add_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=) | ||
| 346 | # endif | ||
| 347 | # define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, (pcp), (val)) | ||
| 348 | #endif | ||
| 349 | |||
| 350 | #ifndef this_cpu_sub | ||
| 351 | # define this_cpu_sub(pcp, val) this_cpu_add((pcp), -(val)) | ||
| 352 | #endif | ||
| 353 | |||
| 354 | #ifndef this_cpu_inc | ||
| 355 | # define this_cpu_inc(pcp) this_cpu_add((pcp), 1) | ||
| 356 | #endif | ||
| 357 | |||
| 358 | #ifndef this_cpu_dec | ||
| 359 | # define this_cpu_dec(pcp) this_cpu_sub((pcp), 1) | ||
| 360 | #endif | ||
| 361 | |||
| 362 | #ifndef this_cpu_and | ||
| 363 | # ifndef this_cpu_and_1 | ||
| 364 | # define this_cpu_and_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) | ||
| 365 | # endif | ||
| 366 | # ifndef this_cpu_and_2 | ||
| 367 | # define this_cpu_and_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) | ||
| 368 | # endif | ||
| 369 | # ifndef this_cpu_and_4 | ||
| 370 | # define this_cpu_and_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) | ||
| 371 | # endif | ||
| 372 | # ifndef this_cpu_and_8 | ||
| 373 | # define this_cpu_and_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=) | ||
| 374 | # endif | ||
| 375 | # define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, (pcp), (val)) | ||
| 376 | #endif | ||
| 377 | |||
| 378 | #ifndef this_cpu_or | ||
| 379 | # ifndef this_cpu_or_1 | ||
| 380 | # define this_cpu_or_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) | ||
| 381 | # endif | ||
| 382 | # ifndef this_cpu_or_2 | ||
| 383 | # define this_cpu_or_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) | ||
| 384 | # endif | ||
| 385 | # ifndef this_cpu_or_4 | ||
| 386 | # define this_cpu_or_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) | ||
| 387 | # endif | ||
| 388 | # ifndef this_cpu_or_8 | ||
| 389 | # define this_cpu_or_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=) | ||
| 390 | # endif | ||
| 391 | # define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, (pcp), (val)) | ||
| 392 | #endif | ||
| 393 | |||
| 394 | #ifndef this_cpu_xor | ||
| 395 | # ifndef this_cpu_xor_1 | ||
| 396 | # define this_cpu_xor_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) | ||
| 397 | # endif | ||
| 398 | # ifndef this_cpu_xor_2 | ||
| 399 | # define this_cpu_xor_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) | ||
| 400 | # endif | ||
| 401 | # ifndef this_cpu_xor_4 | ||
| 402 | # define this_cpu_xor_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) | ||
| 403 | # endif | ||
| 404 | # ifndef this_cpu_xor_8 | ||
| 405 | # define this_cpu_xor_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), ^=) | ||
| 406 | # endif | ||
| 407 | # define this_cpu_xor(pcp, val) __pcpu_size_call(this_cpu_or_, (pcp), (val)) | ||
| 408 | #endif | ||
| 409 | |||
| 410 | /* | ||
| 411 | * Generic percpu operations that do not require preemption handling. | ||
| 412 | * Either we do not care about races or the caller has the | ||
| 413 | * responsibility of handling preemptions issues. Arch code can still | ||
| 414 | * override these instructions since the arch per cpu code may be more | ||
| 415 | * efficient and may actually get race freeness for free (that is the | ||
| 416 | * case for x86 for example). | ||
| 417 | * | ||
| 418 | * If there is no other protection through preempt disable and/or | ||
| 419 | * disabling interupts then one of these RMW operations can show unexpected | ||
| 420 | * behavior because the execution thread was rescheduled on another processor | ||
| 421 | * or an interrupt occurred and the same percpu variable was modified from | ||
| 422 | * the interrupt context. | ||
| 423 | */ | ||
| 424 | #ifndef __this_cpu_read | ||
| 425 | # ifndef __this_cpu_read_1 | ||
| 426 | # define __this_cpu_read_1(pcp) (*__this_cpu_ptr(&(pcp))) | ||
| 427 | # endif | ||
| 428 | # ifndef __this_cpu_read_2 | ||
| 429 | # define __this_cpu_read_2(pcp) (*__this_cpu_ptr(&(pcp))) | ||
| 430 | # endif | ||
| 431 | # ifndef __this_cpu_read_4 | ||
| 432 | # define __this_cpu_read_4(pcp) (*__this_cpu_ptr(&(pcp))) | ||
| 433 | # endif | ||
| 434 | # ifndef __this_cpu_read_8 | ||
| 435 | # define __this_cpu_read_8(pcp) (*__this_cpu_ptr(&(pcp))) | ||
| 436 | # endif | ||
| 437 | # define __this_cpu_read(pcp) __pcpu_size_call_return(__this_cpu_read_, (pcp)) | ||
| 438 | #endif | ||
| 439 | |||
| 440 | #define __this_cpu_generic_to_op(pcp, val, op) \ | ||
| 441 | do { \ | ||
| 442 | *__this_cpu_ptr(&(pcp)) op val; \ | ||
| 443 | } while (0) | ||
| 444 | |||
| 445 | #ifndef __this_cpu_write | ||
| 446 | # ifndef __this_cpu_write_1 | ||
| 447 | # define __this_cpu_write_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) | ||
| 448 | # endif | ||
| 449 | # ifndef __this_cpu_write_2 | ||
| 450 | # define __this_cpu_write_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) | ||
| 451 | # endif | ||
| 452 | # ifndef __this_cpu_write_4 | ||
| 453 | # define __this_cpu_write_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) | ||
| 454 | # endif | ||
| 455 | # ifndef __this_cpu_write_8 | ||
| 456 | # define __this_cpu_write_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), =) | ||
| 457 | # endif | ||
| 458 | # define __this_cpu_write(pcp, val) __pcpu_size_call(__this_cpu_write_, (pcp), (val)) | ||
| 459 | #endif | ||
| 460 | |||
| 461 | #ifndef __this_cpu_add | ||
| 462 | # ifndef __this_cpu_add_1 | ||
| 463 | # define __this_cpu_add_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) | ||
| 464 | # endif | ||
| 465 | # ifndef __this_cpu_add_2 | ||
| 466 | # define __this_cpu_add_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) | ||
| 467 | # endif | ||
| 468 | # ifndef __this_cpu_add_4 | ||
| 469 | # define __this_cpu_add_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) | ||
| 470 | # endif | ||
| 471 | # ifndef __this_cpu_add_8 | ||
| 472 | # define __this_cpu_add_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), +=) | ||
| 473 | # endif | ||
| 474 | # define __this_cpu_add(pcp, val) __pcpu_size_call(__this_cpu_add_, (pcp), (val)) | ||
| 475 | #endif | ||
| 476 | |||
| 477 | #ifndef __this_cpu_sub | ||
| 478 | # define __this_cpu_sub(pcp, val) __this_cpu_add((pcp), -(val)) | ||
| 479 | #endif | ||
| 480 | |||
| 481 | #ifndef __this_cpu_inc | ||
| 482 | # define __this_cpu_inc(pcp) __this_cpu_add((pcp), 1) | ||
| 483 | #endif | ||
| 484 | |||
| 485 | #ifndef __this_cpu_dec | ||
| 486 | # define __this_cpu_dec(pcp) __this_cpu_sub((pcp), 1) | ||
| 487 | #endif | ||
| 488 | |||
| 489 | #ifndef __this_cpu_and | ||
| 490 | # ifndef __this_cpu_and_1 | ||
| 491 | # define __this_cpu_and_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) | ||
| 492 | # endif | ||
| 493 | # ifndef __this_cpu_and_2 | ||
| 494 | # define __this_cpu_and_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) | ||
| 495 | # endif | ||
| 496 | # ifndef __this_cpu_and_4 | ||
| 497 | # define __this_cpu_and_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) | ||
| 498 | # endif | ||
| 499 | # ifndef __this_cpu_and_8 | ||
| 500 | # define __this_cpu_and_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), &=) | ||
| 501 | # endif | ||
| 502 | # define __this_cpu_and(pcp, val) __pcpu_size_call(__this_cpu_and_, (pcp), (val)) | ||
| 503 | #endif | ||
| 504 | |||
| 505 | #ifndef __this_cpu_or | ||
| 506 | # ifndef __this_cpu_or_1 | ||
| 507 | # define __this_cpu_or_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) | ||
| 508 | # endif | ||
| 509 | # ifndef __this_cpu_or_2 | ||
| 510 | # define __this_cpu_or_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) | ||
| 511 | # endif | ||
| 512 | # ifndef __this_cpu_or_4 | ||
| 513 | # define __this_cpu_or_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) | ||
| 514 | # endif | ||
| 515 | # ifndef __this_cpu_or_8 | ||
| 516 | # define __this_cpu_or_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), |=) | ||
| 517 | # endif | ||
| 518 | # define __this_cpu_or(pcp, val) __pcpu_size_call(__this_cpu_or_, (pcp), (val)) | ||
| 519 | #endif | ||
| 520 | |||
| 521 | #ifndef __this_cpu_xor | ||
| 522 | # ifndef __this_cpu_xor_1 | ||
| 523 | # define __this_cpu_xor_1(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) | ||
| 524 | # endif | ||
| 525 | # ifndef __this_cpu_xor_2 | ||
| 526 | # define __this_cpu_xor_2(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) | ||
| 527 | # endif | ||
| 528 | # ifndef __this_cpu_xor_4 | ||
| 529 | # define __this_cpu_xor_4(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) | ||
| 530 | # endif | ||
| 531 | # ifndef __this_cpu_xor_8 | ||
| 532 | # define __this_cpu_xor_8(pcp, val) __this_cpu_generic_to_op((pcp), (val), ^=) | ||
| 533 | # endif | ||
| 534 | # define __this_cpu_xor(pcp, val) __pcpu_size_call(__this_cpu_xor_, (pcp), (val)) | ||
| 535 | #endif | ||
| 536 | |||
| 537 | /* | ||
| 538 | * IRQ safe versions of the per cpu RMW operations. Note that these operations | ||
| 539 | * are *not* safe against modification of the same variable from another | ||
| 540 | * processors (which one gets when using regular atomic operations) | ||
| 541 | . They are guaranteed to be atomic vs. local interrupts and | ||
| 542 | * preemption only. | ||
| 543 | */ | ||
| 544 | #define irqsafe_cpu_generic_to_op(pcp, val, op) \ | ||
| 545 | do { \ | ||
| 546 | unsigned long flags; \ | ||
| 547 | local_irq_save(flags); \ | ||
| 548 | *__this_cpu_ptr(&(pcp)) op val; \ | ||
| 549 | local_irq_restore(flags); \ | ||
| 550 | } while (0) | ||
| 551 | |||
| 552 | #ifndef irqsafe_cpu_add | ||
| 553 | # ifndef irqsafe_cpu_add_1 | ||
| 554 | # define irqsafe_cpu_add_1(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), +=) | ||
| 555 | # endif | ||
| 556 | # ifndef irqsafe_cpu_add_2 | ||
| 557 | # define irqsafe_cpu_add_2(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), +=) | ||
| 558 | # endif | ||
| 559 | # ifndef irqsafe_cpu_add_4 | ||
| 560 | # define irqsafe_cpu_add_4(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), +=) | ||
| 561 | # endif | ||
| 562 | # ifndef irqsafe_cpu_add_8 | ||
| 563 | # define irqsafe_cpu_add_8(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), +=) | ||
| 564 | # endif | ||
| 565 | # define irqsafe_cpu_add(pcp, val) __pcpu_size_call(irqsafe_cpu_add_, (pcp), (val)) | ||
| 566 | #endif | ||
| 567 | |||
| 568 | #ifndef irqsafe_cpu_sub | ||
| 569 | # define irqsafe_cpu_sub(pcp, val) irqsafe_cpu_add((pcp), -(val)) | ||
| 570 | #endif | ||
| 571 | |||
| 572 | #ifndef irqsafe_cpu_inc | ||
| 573 | # define irqsafe_cpu_inc(pcp) irqsafe_cpu_add((pcp), 1) | ||
| 574 | #endif | ||
| 575 | |||
| 576 | #ifndef irqsafe_cpu_dec | ||
| 577 | # define irqsafe_cpu_dec(pcp) irqsafe_cpu_sub((pcp), 1) | ||
| 578 | #endif | ||
| 579 | |||
| 580 | #ifndef irqsafe_cpu_and | ||
| 581 | # ifndef irqsafe_cpu_and_1 | ||
| 582 | # define irqsafe_cpu_and_1(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), &=) | ||
| 583 | # endif | ||
| 584 | # ifndef irqsafe_cpu_and_2 | ||
| 585 | # define irqsafe_cpu_and_2(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), &=) | ||
| 586 | # endif | ||
| 587 | # ifndef irqsafe_cpu_and_4 | ||
| 588 | # define irqsafe_cpu_and_4(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), &=) | ||
| 589 | # endif | ||
| 590 | # ifndef irqsafe_cpu_and_8 | ||
| 591 | # define irqsafe_cpu_and_8(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), &=) | ||
| 592 | # endif | ||
| 593 | # define irqsafe_cpu_and(pcp, val) __pcpu_size_call(irqsafe_cpu_and_, (val)) | ||
| 594 | #endif | ||
| 595 | |||
| 596 | #ifndef irqsafe_cpu_or | ||
| 597 | # ifndef irqsafe_cpu_or_1 | ||
| 598 | # define irqsafe_cpu_or_1(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), |=) | ||
| 599 | # endif | ||
| 600 | # ifndef irqsafe_cpu_or_2 | ||
| 601 | # define irqsafe_cpu_or_2(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), |=) | ||
| 602 | # endif | ||
| 603 | # ifndef irqsafe_cpu_or_4 | ||
| 604 | # define irqsafe_cpu_or_4(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), |=) | ||
| 605 | # endif | ||
| 606 | # ifndef irqsafe_cpu_or_8 | ||
| 607 | # define irqsafe_cpu_or_8(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), |=) | ||
| 608 | # endif | ||
| 609 | # define irqsafe_cpu_or(pcp, val) __pcpu_size_call(irqsafe_cpu_or_, (val)) | ||
| 610 | #endif | ||
| 611 | |||
| 612 | #ifndef irqsafe_cpu_xor | ||
| 613 | # ifndef irqsafe_cpu_xor_1 | ||
| 614 | # define irqsafe_cpu_xor_1(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), ^=) | ||
| 615 | # endif | ||
| 616 | # ifndef irqsafe_cpu_xor_2 | ||
| 617 | # define irqsafe_cpu_xor_2(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), ^=) | ||
| 618 | # endif | ||
| 619 | # ifndef irqsafe_cpu_xor_4 | ||
| 620 | # define irqsafe_cpu_xor_4(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), ^=) | ||
| 621 | # endif | ||
| 622 | # ifndef irqsafe_cpu_xor_8 | ||
| 623 | # define irqsafe_cpu_xor_8(pcp, val) irqsafe_cpu_generic_to_op((pcp), (val), ^=) | ||
| 624 | # endif | ||
| 625 | # define irqsafe_cpu_xor(pcp, val) __pcpu_size_call(irqsafe_cpu_xor_, (val)) | ||
| 626 | #endif | ||
| 627 | |||
| 246 | #endif /* __LINUX_PERCPU_H */ | 628 | #endif /* __LINUX_PERCPU_H */ |
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 43adbd7f0010..64a53f74c9a9 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h | |||
| @@ -18,10 +18,6 @@ | |||
| 18 | #include <linux/ioctl.h> | 18 | #include <linux/ioctl.h> |
| 19 | #include <asm/byteorder.h> | 19 | #include <asm/byteorder.h> |
| 20 | 20 | ||
| 21 | #ifdef CONFIG_HAVE_HW_BREAKPOINT | ||
| 22 | #include <asm/hw_breakpoint.h> | ||
| 23 | #endif | ||
| 24 | |||
| 25 | /* | 21 | /* |
| 26 | * User-space ABI bits: | 22 | * User-space ABI bits: |
| 27 | */ | 23 | */ |
| @@ -215,12 +211,12 @@ struct perf_event_attr { | |||
| 215 | __u32 wakeup_watermark; /* bytes before wakeup */ | 211 | __u32 wakeup_watermark; /* bytes before wakeup */ |
| 216 | }; | 212 | }; |
| 217 | 213 | ||
| 218 | union { | 214 | struct { /* Hardware breakpoint info */ |
| 219 | struct { /* Hardware breakpoint info */ | 215 | __u64 bp_addr; |
| 220 | __u64 bp_addr; | 216 | __u32 bp_type; |
| 221 | __u32 bp_type; | 217 | __u32 bp_len; |
| 222 | __u32 bp_len; | 218 | __u64 __bp_reserved_1; |
| 223 | }; | 219 | __u64 __bp_reserved_2; |
| 224 | }; | 220 | }; |
| 225 | 221 | ||
| 226 | __u32 __reserved_2; | 222 | __u32 __reserved_2; |
| @@ -451,6 +447,10 @@ enum perf_callchain_context { | |||
| 451 | # include <asm/perf_event.h> | 447 | # include <asm/perf_event.h> |
| 452 | #endif | 448 | #endif |
| 453 | 449 | ||
| 450 | #ifdef CONFIG_HAVE_HW_BREAKPOINT | ||
| 451 | #include <asm/hw_breakpoint.h> | ||
| 452 | #endif | ||
| 453 | |||
| 454 | #include <linux/list.h> | 454 | #include <linux/list.h> |
| 455 | #include <linux/mutex.h> | 455 | #include <linux/mutex.h> |
| 456 | #include <linux/rculist.h> | 456 | #include <linux/rculist.h> |
| @@ -565,10 +565,12 @@ struct perf_pending_entry { | |||
| 565 | void (*func)(struct perf_pending_entry *); | 565 | void (*func)(struct perf_pending_entry *); |
| 566 | }; | 566 | }; |
| 567 | 567 | ||
| 568 | typedef void (*perf_callback_t)(struct perf_event *, void *); | ||
| 569 | |||
| 570 | struct perf_sample_data; | 568 | struct perf_sample_data; |
| 571 | 569 | ||
| 570 | typedef void (*perf_overflow_handler_t)(struct perf_event *, int, | ||
| 571 | struct perf_sample_data *, | ||
| 572 | struct pt_regs *regs); | ||
| 573 | |||
| 572 | /** | 574 | /** |
| 573 | * struct perf_event - performance event kernel representation: | 575 | * struct perf_event - performance event kernel representation: |
| 574 | */ | 576 | */ |
| @@ -660,18 +662,12 @@ struct perf_event { | |||
| 660 | struct pid_namespace *ns; | 662 | struct pid_namespace *ns; |
| 661 | u64 id; | 663 | u64 id; |
| 662 | 664 | ||
| 663 | void (*overflow_handler)(struct perf_event *event, | 665 | perf_overflow_handler_t overflow_handler; |
| 664 | int nmi, struct perf_sample_data *data, | ||
| 665 | struct pt_regs *regs); | ||
| 666 | 666 | ||
| 667 | #ifdef CONFIG_EVENT_PROFILE | 667 | #ifdef CONFIG_EVENT_PROFILE |
| 668 | struct event_filter *filter; | 668 | struct event_filter *filter; |
| 669 | #endif | 669 | #endif |
| 670 | 670 | ||
| 671 | perf_callback_t callback; | ||
| 672 | |||
| 673 | perf_callback_t event_callback; | ||
| 674 | |||
| 675 | #endif /* CONFIG_PERF_EVENTS */ | 671 | #endif /* CONFIG_PERF_EVENTS */ |
| 676 | }; | 672 | }; |
| 677 | 673 | ||
| @@ -781,7 +777,7 @@ extern struct perf_event * | |||
| 781 | perf_event_create_kernel_counter(struct perf_event_attr *attr, | 777 | perf_event_create_kernel_counter(struct perf_event_attr *attr, |
| 782 | int cpu, | 778 | int cpu, |
| 783 | pid_t pid, | 779 | pid_t pid, |
| 784 | perf_callback_t callback); | 780 | perf_overflow_handler_t callback); |
| 785 | extern u64 perf_event_read_value(struct perf_event *event, | 781 | extern u64 perf_event_read_value(struct perf_event *event, |
| 786 | u64 *enabled, u64 *running); | 782 | u64 *enabled, u64 *running); |
| 787 | 783 | ||
| @@ -876,6 +872,8 @@ extern void perf_output_copy(struct perf_output_handle *handle, | |||
| 876 | const void *buf, unsigned int len); | 872 | const void *buf, unsigned int len); |
| 877 | extern int perf_swevent_get_recursion_context(void); | 873 | extern int perf_swevent_get_recursion_context(void); |
| 878 | extern void perf_swevent_put_recursion_context(int rctx); | 874 | extern void perf_swevent_put_recursion_context(int rctx); |
| 875 | extern void perf_event_enable(struct perf_event *event); | ||
| 876 | extern void perf_event_disable(struct perf_event *event); | ||
| 879 | #else | 877 | #else |
| 880 | static inline void | 878 | static inline void |
| 881 | perf_event_task_sched_in(struct task_struct *task, int cpu) { } | 879 | perf_event_task_sched_in(struct task_struct *task, int cpu) { } |
| @@ -906,7 +904,8 @@ static inline void perf_event_fork(struct task_struct *tsk) { } | |||
| 906 | static inline void perf_event_init(void) { } | 904 | static inline void perf_event_init(void) { } |
| 907 | static inline int perf_swevent_get_recursion_context(void) { return -1; } | 905 | static inline int perf_swevent_get_recursion_context(void) { return -1; } |
| 908 | static inline void perf_swevent_put_recursion_context(int rctx) { } | 906 | static inline void perf_swevent_put_recursion_context(int rctx) { } |
| 909 | 907 | static inline void perf_event_enable(struct perf_event *event) { } | |
| 908 | static inline void perf_event_disable(struct perf_event *event) { } | ||
| 910 | #endif | 909 | #endif |
| 911 | 910 | ||
| 912 | #define perf_output_put(handle, x) \ | 911 | #define perf_output_put(handle, x) \ |
diff --git a/include/linux/platform_device.h b/include/linux/platform_device.h index 3c6675c2444b..71ff887ca44e 100644 --- a/include/linux/platform_device.h +++ b/include/linux/platform_device.h | |||
| @@ -83,6 +83,8 @@ struct early_platform_driver { | |||
| 83 | struct platform_driver *pdrv; | 83 | struct platform_driver *pdrv; |
| 84 | struct list_head list; | 84 | struct list_head list; |
| 85 | int requested_id; | 85 | int requested_id; |
| 86 | char *buffer; | ||
| 87 | int bufsize; | ||
| 86 | }; | 88 | }; |
| 87 | 89 | ||
| 88 | #define EARLY_PLATFORM_ID_UNSET -2 | 90 | #define EARLY_PLATFORM_ID_UNSET -2 |
| @@ -102,21 +104,29 @@ extern int early_platform_driver_probe(char *class_str, | |||
| 102 | int nr_probe, int user_only); | 104 | int nr_probe, int user_only); |
| 103 | extern void early_platform_cleanup(void); | 105 | extern void early_platform_cleanup(void); |
| 104 | 106 | ||
| 107 | #define early_platform_init(class_string, platdrv) \ | ||
| 108 | early_platform_init_buffer(class_string, platdrv, NULL, 0) | ||
| 105 | 109 | ||
| 106 | #ifndef MODULE | 110 | #ifndef MODULE |
| 107 | #define early_platform_init(class_string, platform_driver) \ | 111 | #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \ |
| 108 | static __initdata struct early_platform_driver early_driver = { \ | 112 | static __initdata struct early_platform_driver early_driver = { \ |
| 109 | .class_str = class_string, \ | 113 | .class_str = class_string, \ |
| 110 | .pdrv = platform_driver, \ | 114 | .buffer = buf, \ |
| 115 | .bufsize = bufsiz, \ | ||
| 116 | .pdrv = platdrv, \ | ||
| 111 | .requested_id = EARLY_PLATFORM_ID_UNSET, \ | 117 | .requested_id = EARLY_PLATFORM_ID_UNSET, \ |
| 112 | }; \ | 118 | }; \ |
| 113 | static int __init early_platform_driver_setup_func(char *buf) \ | 119 | static int __init early_platform_driver_setup_func(char *buffer) \ |
| 114 | { \ | 120 | { \ |
| 115 | return early_platform_driver_register(&early_driver, buf); \ | 121 | return early_platform_driver_register(&early_driver, buffer); \ |
| 116 | } \ | 122 | } \ |
| 117 | early_param(class_string, early_platform_driver_setup_func) | 123 | early_param(class_string, early_platform_driver_setup_func) |
| 118 | #else /* MODULE */ | 124 | #else /* MODULE */ |
| 119 | #define early_platform_init(class_string, platform_driver) | 125 | #define early_platform_init_buffer(class_string, platdrv, buf, bufsiz) \ |
| 126 | static inline char *early_platform_driver_setup_func(void) \ | ||
| 127 | { \ | ||
| 128 | return bufsiz ? buf : NULL; \ | ||
| 129 | } | ||
| 120 | #endif /* MODULE */ | 130 | #endif /* MODULE */ |
| 121 | 131 | ||
| 122 | #endif /* _PLATFORM_DEVICE_H_ */ | 132 | #endif /* _PLATFORM_DEVICE_H_ */ |
diff --git a/include/linux/pm.h b/include/linux/pm.h index 0d65934246af..198b8f9fe05e 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h | |||
| @@ -219,7 +219,7 @@ struct dev_pm_ops { | |||
| 219 | * to RAM and hibernation. | 219 | * to RAM and hibernation. |
| 220 | */ | 220 | */ |
| 221 | #define SIMPLE_DEV_PM_OPS(name, suspend_fn, resume_fn) \ | 221 | #define SIMPLE_DEV_PM_OPS(name, suspend_fn, resume_fn) \ |
| 222 | struct dev_pm_ops name = { \ | 222 | const struct dev_pm_ops name = { \ |
| 223 | .suspend = suspend_fn, \ | 223 | .suspend = suspend_fn, \ |
| 224 | .resume = resume_fn, \ | 224 | .resume = resume_fn, \ |
| 225 | .freeze = suspend_fn, \ | 225 | .freeze = suspend_fn, \ |
diff --git a/include/linux/quota.h b/include/linux/quota.h index ce9a9b2e5cd4..e70e62194243 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
| @@ -73,6 +73,8 @@ | |||
| 73 | /* Quota format type IDs */ | 73 | /* Quota format type IDs */ |
| 74 | #define QFMT_VFS_OLD 1 | 74 | #define QFMT_VFS_OLD 1 |
| 75 | #define QFMT_VFS_V0 2 | 75 | #define QFMT_VFS_V0 2 |
| 76 | #define QFMT_OCFS2 3 | ||
| 77 | #define QFMT_VFS_V1 4 | ||
| 76 | 78 | ||
| 77 | /* Size of block in which space limits are passed through the quota | 79 | /* Size of block in which space limits are passed through the quota |
| 78 | * interface */ | 80 | * interface */ |
| @@ -334,7 +336,7 @@ struct quotactl_ops { | |||
| 334 | 336 | ||
| 335 | struct quota_format_type { | 337 | struct quota_format_type { |
| 336 | int qf_fmt_id; /* Quota format id */ | 338 | int qf_fmt_id; /* Quota format id */ |
| 337 | struct quota_format_ops *qf_ops; /* Operations of format */ | 339 | const struct quota_format_ops *qf_ops; /* Operations of format */ |
| 338 | struct module *qf_owner; /* Module implementing quota format */ | 340 | struct module *qf_owner; /* Module implementing quota format */ |
| 339 | struct quota_format_type *qf_next; | 341 | struct quota_format_type *qf_next; |
| 340 | }; | 342 | }; |
| @@ -394,7 +396,7 @@ struct quota_info { | |||
| 394 | struct rw_semaphore dqptr_sem; /* serialize ops using quota_info struct, pointers from inode to dquots */ | 396 | struct rw_semaphore dqptr_sem; /* serialize ops using quota_info struct, pointers from inode to dquots */ |
| 395 | struct inode *files[MAXQUOTAS]; /* inodes of quotafiles */ | 397 | struct inode *files[MAXQUOTAS]; /* inodes of quotafiles */ |
| 396 | struct mem_dqinfo info[MAXQUOTAS]; /* Information for each quota type */ | 398 | struct mem_dqinfo info[MAXQUOTAS]; /* Information for each quota type */ |
| 397 | struct quota_format_ops *ops[MAXQUOTAS]; /* Operations for each type */ | 399 | const struct quota_format_ops *ops[MAXQUOTAS]; /* Operations for each type */ |
| 398 | }; | 400 | }; |
| 399 | 401 | ||
| 400 | int register_quota_format(struct quota_format_type *fmt); | 402 | int register_quota_format(struct quota_format_type *fmt); |
diff --git a/include/linux/raid/pq.h b/include/linux/raid/pq.h index d92480f8285c..1cbbd2c11aa9 100644 --- a/include/linux/raid/pq.h +++ b/include/linux/raid/pq.h | |||
| @@ -78,6 +78,25 @@ struct raid6_calls { | |||
| 78 | /* Selected algorithm */ | 78 | /* Selected algorithm */ |
| 79 | extern struct raid6_calls raid6_call; | 79 | extern struct raid6_calls raid6_call; |
| 80 | 80 | ||
| 81 | /* Various routine sets */ | ||
| 82 | extern const struct raid6_calls raid6_intx1; | ||
| 83 | extern const struct raid6_calls raid6_intx2; | ||
| 84 | extern const struct raid6_calls raid6_intx4; | ||
| 85 | extern const struct raid6_calls raid6_intx8; | ||
| 86 | extern const struct raid6_calls raid6_intx16; | ||
| 87 | extern const struct raid6_calls raid6_intx32; | ||
| 88 | extern const struct raid6_calls raid6_mmxx1; | ||
| 89 | extern const struct raid6_calls raid6_mmxx2; | ||
| 90 | extern const struct raid6_calls raid6_sse1x1; | ||
| 91 | extern const struct raid6_calls raid6_sse1x2; | ||
| 92 | extern const struct raid6_calls raid6_sse2x1; | ||
| 93 | extern const struct raid6_calls raid6_sse2x2; | ||
| 94 | extern const struct raid6_calls raid6_sse2x4; | ||
| 95 | extern const struct raid6_calls raid6_altivec1; | ||
| 96 | extern const struct raid6_calls raid6_altivec2; | ||
| 97 | extern const struct raid6_calls raid6_altivec4; | ||
| 98 | extern const struct raid6_calls raid6_altivec8; | ||
| 99 | |||
| 81 | /* Algorithm list */ | 100 | /* Algorithm list */ |
| 82 | extern const struct raid6_calls * const raid6_algos[]; | 101 | extern const struct raid6_calls * const raid6_algos[]; |
| 83 | int raid6_select_algo(void); | 102 | int raid6_select_algo(void); |
diff --git a/include/linux/rmap.h b/include/linux/rmap.h index cb0ba7032609..b019ae64e2ab 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h | |||
| @@ -26,6 +26,9 @@ | |||
| 26 | */ | 26 | */ |
| 27 | struct anon_vma { | 27 | struct anon_vma { |
| 28 | spinlock_t lock; /* Serialize access to vma list */ | 28 | spinlock_t lock; /* Serialize access to vma list */ |
| 29 | #ifdef CONFIG_KSM | ||
| 30 | atomic_t ksm_refcount; | ||
| 31 | #endif | ||
| 29 | /* | 32 | /* |
| 30 | * NOTE: the LSB of the head.next is set by | 33 | * NOTE: the LSB of the head.next is set by |
| 31 | * mm_take_all_locks() _after_ taking the above lock. So the | 34 | * mm_take_all_locks() _after_ taking the above lock. So the |
| @@ -38,6 +41,34 @@ struct anon_vma { | |||
| 38 | }; | 41 | }; |
| 39 | 42 | ||
| 40 | #ifdef CONFIG_MMU | 43 | #ifdef CONFIG_MMU |
| 44 | #ifdef CONFIG_KSM | ||
| 45 | static inline void ksm_refcount_init(struct anon_vma *anon_vma) | ||
| 46 | { | ||
| 47 | atomic_set(&anon_vma->ksm_refcount, 0); | ||
| 48 | } | ||
| 49 | |||
| 50 | static inline int ksm_refcount(struct anon_vma *anon_vma) | ||
| 51 | { | ||
| 52 | return atomic_read(&anon_vma->ksm_refcount); | ||
| 53 | } | ||
| 54 | #else | ||
| 55 | static inline void ksm_refcount_init(struct anon_vma *anon_vma) | ||
| 56 | { | ||
| 57 | } | ||
| 58 | |||
| 59 | static inline int ksm_refcount(struct anon_vma *anon_vma) | ||
| 60 | { | ||
| 61 | return 0; | ||
| 62 | } | ||
| 63 | #endif /* CONFIG_KSM */ | ||
| 64 | |||
| 65 | static inline struct anon_vma *page_anon_vma(struct page *page) | ||
| 66 | { | ||
| 67 | if (((unsigned long)page->mapping & PAGE_MAPPING_FLAGS) != | ||
| 68 | PAGE_MAPPING_ANON) | ||
| 69 | return NULL; | ||
| 70 | return page_rmapping(page); | ||
| 71 | } | ||
| 41 | 72 | ||
| 42 | static inline void anon_vma_lock(struct vm_area_struct *vma) | 73 | static inline void anon_vma_lock(struct vm_area_struct *vma) |
| 43 | { | 74 | { |
| @@ -62,6 +93,7 @@ void __anon_vma_merge(struct vm_area_struct *, struct vm_area_struct *); | |||
| 62 | void anon_vma_unlink(struct vm_area_struct *); | 93 | void anon_vma_unlink(struct vm_area_struct *); |
| 63 | void anon_vma_link(struct vm_area_struct *); | 94 | void anon_vma_link(struct vm_area_struct *); |
| 64 | void __anon_vma_link(struct vm_area_struct *); | 95 | void __anon_vma_link(struct vm_area_struct *); |
| 96 | void anon_vma_free(struct anon_vma *); | ||
| 65 | 97 | ||
| 66 | /* | 98 | /* |
| 67 | * rmap interfaces called when adding or removing pte of page | 99 | * rmap interfaces called when adding or removing pte of page |
| @@ -81,6 +113,9 @@ static inline void page_dup_rmap(struct page *page) | |||
| 81 | */ | 113 | */ |
| 82 | int page_referenced(struct page *, int is_locked, | 114 | int page_referenced(struct page *, int is_locked, |
| 83 | struct mem_cgroup *cnt, unsigned long *vm_flags); | 115 | struct mem_cgroup *cnt, unsigned long *vm_flags); |
| 116 | int page_referenced_one(struct page *, struct vm_area_struct *, | ||
| 117 | unsigned long address, unsigned int *mapcount, unsigned long *vm_flags); | ||
| 118 | |||
| 84 | enum ttu_flags { | 119 | enum ttu_flags { |
| 85 | TTU_UNMAP = 0, /* unmap mode */ | 120 | TTU_UNMAP = 0, /* unmap mode */ |
| 86 | TTU_MIGRATION = 1, /* migration mode */ | 121 | TTU_MIGRATION = 1, /* migration mode */ |
| @@ -94,6 +129,8 @@ enum ttu_flags { | |||
| 94 | #define TTU_ACTION(x) ((x) & TTU_ACTION_MASK) | 129 | #define TTU_ACTION(x) ((x) & TTU_ACTION_MASK) |
| 95 | 130 | ||
| 96 | int try_to_unmap(struct page *, enum ttu_flags flags); | 131 | int try_to_unmap(struct page *, enum ttu_flags flags); |
| 132 | int try_to_unmap_one(struct page *, struct vm_area_struct *, | ||
| 133 | unsigned long address, enum ttu_flags flags); | ||
| 97 | 134 | ||
| 98 | /* | 135 | /* |
| 99 | * Called from mm/filemap_xip.c to unmap empty zero page | 136 | * Called from mm/filemap_xip.c to unmap empty zero page |
| @@ -127,6 +164,12 @@ struct anon_vma *page_lock_anon_vma(struct page *page); | |||
| 127 | void page_unlock_anon_vma(struct anon_vma *anon_vma); | 164 | void page_unlock_anon_vma(struct anon_vma *anon_vma); |
| 128 | int page_mapped_in_vma(struct page *page, struct vm_area_struct *vma); | 165 | int page_mapped_in_vma(struct page *page, struct vm_area_struct *vma); |
| 129 | 166 | ||
| 167 | /* | ||
| 168 | * Called by migrate.c to remove migration ptes, but might be used more later. | ||
| 169 | */ | ||
| 170 | int rmap_walk(struct page *page, int (*rmap_one)(struct page *, | ||
| 171 | struct vm_area_struct *, unsigned long, void *), void *arg); | ||
| 172 | |||
| 130 | #else /* !CONFIG_MMU */ | 173 | #else /* !CONFIG_MMU */ |
| 131 | 174 | ||
| 132 | #define anon_vma_init() do {} while (0) | 175 | #define anon_vma_init() do {} while (0) |
diff --git a/include/linux/rwsem-spinlock.h b/include/linux/rwsem-spinlock.h index 6c3c0f6c261f..bdfcc2527970 100644 --- a/include/linux/rwsem-spinlock.h +++ b/include/linux/rwsem-spinlock.h | |||
| @@ -68,11 +68,7 @@ extern int __down_write_trylock(struct rw_semaphore *sem); | |||
| 68 | extern void __up_read(struct rw_semaphore *sem); | 68 | extern void __up_read(struct rw_semaphore *sem); |
| 69 | extern void __up_write(struct rw_semaphore *sem); | 69 | extern void __up_write(struct rw_semaphore *sem); |
| 70 | extern void __downgrade_write(struct rw_semaphore *sem); | 70 | extern void __downgrade_write(struct rw_semaphore *sem); |
| 71 | 71 | extern int rwsem_is_locked(struct rw_semaphore *sem); | |
| 72 | static inline int rwsem_is_locked(struct rw_semaphore *sem) | ||
| 73 | { | ||
| 74 | return (sem->activity != 0); | ||
| 75 | } | ||
| 76 | 72 | ||
| 77 | #endif /* __KERNEL__ */ | 73 | #endif /* __KERNEL__ */ |
| 78 | #endif /* _LINUX_RWSEM_SPINLOCK_H */ | 74 | #endif /* _LINUX_RWSEM_SPINLOCK_H */ |
diff --git a/include/linux/sched.h b/include/linux/sched.h index 89115ec7d43f..7d388494f45d 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -1102,7 +1102,7 @@ struct sched_class { | |||
| 1102 | 1102 | ||
| 1103 | void (*set_curr_task) (struct rq *rq); | 1103 | void (*set_curr_task) (struct rq *rq); |
| 1104 | void (*task_tick) (struct rq *rq, struct task_struct *p, int queued); | 1104 | void (*task_tick) (struct rq *rq, struct task_struct *p, int queued); |
| 1105 | void (*task_new) (struct rq *rq, struct task_struct *p); | 1105 | void (*task_fork) (struct task_struct *p); |
| 1106 | 1106 | ||
| 1107 | void (*switched_from) (struct rq *this_rq, struct task_struct *task, | 1107 | void (*switched_from) (struct rq *this_rq, struct task_struct *task, |
| 1108 | int running); | 1108 | int running); |
| @@ -1111,7 +1111,8 @@ struct sched_class { | |||
| 1111 | void (*prio_changed) (struct rq *this_rq, struct task_struct *task, | 1111 | void (*prio_changed) (struct rq *this_rq, struct task_struct *task, |
| 1112 | int oldprio, int running); | 1112 | int oldprio, int running); |
| 1113 | 1113 | ||
| 1114 | unsigned int (*get_rr_interval) (struct task_struct *task); | 1114 | unsigned int (*get_rr_interval) (struct rq *rq, |
| 1115 | struct task_struct *task); | ||
| 1115 | 1116 | ||
| 1116 | #ifdef CONFIG_FAIR_GROUP_SCHED | 1117 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 1117 | void (*moved_group) (struct task_struct *p); | 1118 | void (*moved_group) (struct task_struct *p); |
| @@ -1151,8 +1152,6 @@ struct sched_entity { | |||
| 1151 | u64 start_runtime; | 1152 | u64 start_runtime; |
| 1152 | u64 avg_wakeup; | 1153 | u64 avg_wakeup; |
| 1153 | 1154 | ||
| 1154 | u64 avg_running; | ||
| 1155 | |||
| 1156 | #ifdef CONFIG_SCHEDSTATS | 1155 | #ifdef CONFIG_SCHEDSTATS |
| 1157 | u64 wait_start; | 1156 | u64 wait_start; |
| 1158 | u64 wait_max; | 1157 | u64 wait_max; |
| @@ -1175,7 +1174,6 @@ struct sched_entity { | |||
| 1175 | u64 nr_failed_migrations_running; | 1174 | u64 nr_failed_migrations_running; |
| 1176 | u64 nr_failed_migrations_hot; | 1175 | u64 nr_failed_migrations_hot; |
| 1177 | u64 nr_forced_migrations; | 1176 | u64 nr_forced_migrations; |
| 1178 | u64 nr_forced2_migrations; | ||
| 1179 | 1177 | ||
| 1180 | u64 nr_wakeups; | 1178 | u64 nr_wakeups; |
| 1181 | u64 nr_wakeups_sync; | 1179 | u64 nr_wakeups_sync; |
| @@ -1448,8 +1446,10 @@ struct task_struct { | |||
| 1448 | gfp_t lockdep_reclaim_gfp; | 1446 | gfp_t lockdep_reclaim_gfp; |
| 1449 | #endif | 1447 | #endif |
| 1450 | 1448 | ||
| 1449 | #ifdef CONFIG_FS_JOURNAL_INFO | ||
| 1451 | /* journalling filesystem info */ | 1450 | /* journalling filesystem info */ |
| 1452 | void *journal_info; | 1451 | void *journal_info; |
| 1452 | #endif | ||
| 1453 | 1453 | ||
| 1454 | /* stacked block device info */ | 1454 | /* stacked block device info */ |
| 1455 | struct bio *bio_list, **bio_tail; | 1455 | struct bio *bio_list, **bio_tail; |
| @@ -1840,7 +1840,8 @@ static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) | |||
| 1840 | extern int sched_clock_stable; | 1840 | extern int sched_clock_stable; |
| 1841 | #endif | 1841 | #endif |
| 1842 | 1842 | ||
| 1843 | extern unsigned long long sched_clock(void); | 1843 | /* ftrace calls sched_clock() directly */ |
| 1844 | extern unsigned long long notrace sched_clock(void); | ||
| 1844 | 1845 | ||
| 1845 | extern void sched_clock_init(void); | 1846 | extern void sched_clock_init(void); |
| 1846 | extern u64 sched_clock_cpu(int cpu); | 1847 | extern u64 sched_clock_cpu(int cpu); |
| @@ -1903,14 +1904,22 @@ extern unsigned int sysctl_sched_wakeup_granularity; | |||
| 1903 | extern unsigned int sysctl_sched_shares_ratelimit; | 1904 | extern unsigned int sysctl_sched_shares_ratelimit; |
| 1904 | extern unsigned int sysctl_sched_shares_thresh; | 1905 | extern unsigned int sysctl_sched_shares_thresh; |
| 1905 | extern unsigned int sysctl_sched_child_runs_first; | 1906 | extern unsigned int sysctl_sched_child_runs_first; |
| 1907 | |||
| 1908 | enum sched_tunable_scaling { | ||
| 1909 | SCHED_TUNABLESCALING_NONE, | ||
| 1910 | SCHED_TUNABLESCALING_LOG, | ||
| 1911 | SCHED_TUNABLESCALING_LINEAR, | ||
| 1912 | SCHED_TUNABLESCALING_END, | ||
| 1913 | }; | ||
| 1914 | extern enum sched_tunable_scaling sysctl_sched_tunable_scaling; | ||
| 1915 | |||
| 1906 | #ifdef CONFIG_SCHED_DEBUG | 1916 | #ifdef CONFIG_SCHED_DEBUG |
| 1907 | extern unsigned int sysctl_sched_features; | ||
| 1908 | extern unsigned int sysctl_sched_migration_cost; | 1917 | extern unsigned int sysctl_sched_migration_cost; |
| 1909 | extern unsigned int sysctl_sched_nr_migrate; | 1918 | extern unsigned int sysctl_sched_nr_migrate; |
| 1910 | extern unsigned int sysctl_sched_time_avg; | 1919 | extern unsigned int sysctl_sched_time_avg; |
| 1911 | extern unsigned int sysctl_timer_migration; | 1920 | extern unsigned int sysctl_timer_migration; |
| 1912 | 1921 | ||
| 1913 | int sched_nr_latency_handler(struct ctl_table *table, int write, | 1922 | int sched_proc_update_handler(struct ctl_table *table, int write, |
| 1914 | void __user *buffer, size_t *length, | 1923 | void __user *buffer, size_t *length, |
| 1915 | loff_t *ppos); | 1924 | loff_t *ppos); |
| 1916 | #endif | 1925 | #endif |
diff --git a/include/linux/slab_def.h b/include/linux/slab_def.h index 850d057500de..ca6b2b317991 100644 --- a/include/linux/slab_def.h +++ b/include/linux/slab_def.h | |||
| @@ -110,7 +110,7 @@ extern struct cache_sizes malloc_sizes[]; | |||
| 110 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); | 110 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); |
| 111 | void *__kmalloc(size_t size, gfp_t flags); | 111 | void *__kmalloc(size_t size, gfp_t flags); |
| 112 | 112 | ||
| 113 | #ifdef CONFIG_KMEMTRACE | 113 | #ifdef CONFIG_TRACING |
| 114 | extern void *kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags); | 114 | extern void *kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags); |
| 115 | extern size_t slab_buffer_size(struct kmem_cache *cachep); | 115 | extern size_t slab_buffer_size(struct kmem_cache *cachep); |
| 116 | #else | 116 | #else |
| @@ -166,7 +166,7 @@ found: | |||
| 166 | extern void *__kmalloc_node(size_t size, gfp_t flags, int node); | 166 | extern void *__kmalloc_node(size_t size, gfp_t flags, int node); |
| 167 | extern void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node); | 167 | extern void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node); |
| 168 | 168 | ||
| 169 | #ifdef CONFIG_KMEMTRACE | 169 | #ifdef CONFIG_TRACING |
| 170 | extern void *kmem_cache_alloc_node_notrace(struct kmem_cache *cachep, | 170 | extern void *kmem_cache_alloc_node_notrace(struct kmem_cache *cachep, |
| 171 | gfp_t flags, | 171 | gfp_t flags, |
| 172 | int nodeid); | 172 | int nodeid); |
diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index 5ad70a60fd74..1e14beb23f9b 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h | |||
| @@ -217,7 +217,7 @@ static __always_inline struct kmem_cache *kmalloc_slab(size_t size) | |||
| 217 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); | 217 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); |
| 218 | void *__kmalloc(size_t size, gfp_t flags); | 218 | void *__kmalloc(size_t size, gfp_t flags); |
| 219 | 219 | ||
| 220 | #ifdef CONFIG_KMEMTRACE | 220 | #ifdef CONFIG_TRACING |
| 221 | extern void *kmem_cache_alloc_notrace(struct kmem_cache *s, gfp_t gfpflags); | 221 | extern void *kmem_cache_alloc_notrace(struct kmem_cache *s, gfp_t gfpflags); |
| 222 | #else | 222 | #else |
| 223 | static __always_inline void * | 223 | static __always_inline void * |
| @@ -266,7 +266,7 @@ static __always_inline void *kmalloc(size_t size, gfp_t flags) | |||
| 266 | void *__kmalloc_node(size_t size, gfp_t flags, int node); | 266 | void *__kmalloc_node(size_t size, gfp_t flags, int node); |
| 267 | void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node); | 267 | void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node); |
| 268 | 268 | ||
| 269 | #ifdef CONFIG_KMEMTRACE | 269 | #ifdef CONFIG_TRACING |
| 270 | extern void *kmem_cache_alloc_node_notrace(struct kmem_cache *s, | 270 | extern void *kmem_cache_alloc_node_notrace(struct kmem_cache *s, |
| 271 | gfp_t gfpflags, | 271 | gfp_t gfpflags, |
| 272 | int node); | 272 | int node); |
diff --git a/include/linux/spi/sh_msiof.h b/include/linux/spi/sh_msiof.h new file mode 100644 index 000000000000..2e8db3d2d2e5 --- /dev/null +++ b/include/linux/spi/sh_msiof.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #ifndef __SPI_SH_MSIOF_H__ | ||
| 2 | #define __SPI_SH_MSIOF_H__ | ||
| 3 | |||
| 4 | struct sh_msiof_spi_info { | ||
| 5 | int tx_fifo_override; | ||
| 6 | int rx_fifo_override; | ||
| 7 | u16 num_chipselect; | ||
| 8 | }; | ||
| 9 | |||
| 10 | #endif /* __SPI_SH_MSIOF_H__ */ | ||
diff --git a/include/linux/spi/xilinx_spi.h b/include/linux/spi/xilinx_spi.h new file mode 100644 index 000000000000..6f17278810b0 --- /dev/null +++ b/include/linux/spi/xilinx_spi.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #ifndef __LINUX_SPI_XILINX_SPI_H | ||
| 2 | #define __LINUX_SPI_XILINX_SPI_H | ||
| 3 | |||
| 4 | /** | ||
| 5 | * struct xspi_platform_data - Platform data of the Xilinx SPI driver | ||
| 6 | * @num_chipselect: Number of chip select by the IP. | ||
| 7 | * @little_endian: If registers should be accessed little endian or not. | ||
| 8 | * @bits_per_word: Number of bits per word. | ||
| 9 | * @devices: Devices to add when the driver is probed. | ||
| 10 | * @num_devices: Number of devices in the devices array. | ||
| 11 | */ | ||
| 12 | struct xspi_platform_data { | ||
| 13 | u16 num_chipselect; | ||
| 14 | bool little_endian; | ||
| 15 | u8 bits_per_word; | ||
| 16 | struct spi_board_info *devices; | ||
| 17 | u8 num_devices; | ||
| 18 | }; | ||
| 19 | |||
| 20 | #endif /* __LINUX_SPI_XILINX_SPI_H */ | ||
diff --git a/include/linux/string.h b/include/linux/string.h index b8508868d5ad..651839a2a755 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
| @@ -62,7 +62,15 @@ extern char * strnchr(const char *, size_t, int); | |||
| 62 | #ifndef __HAVE_ARCH_STRRCHR | 62 | #ifndef __HAVE_ARCH_STRRCHR |
| 63 | extern char * strrchr(const char *,int); | 63 | extern char * strrchr(const char *,int); |
| 64 | #endif | 64 | #endif |
| 65 | extern char * __must_check strstrip(char *); | 65 | extern char * __must_check skip_spaces(const char *); |
| 66 | |||
| 67 | extern char *strim(char *); | ||
| 68 | |||
| 69 | static inline __must_check char *strstrip(char *str) | ||
| 70 | { | ||
| 71 | return strim(str); | ||
| 72 | } | ||
| 73 | |||
| 66 | #ifndef __HAVE_ARCH_STRSTR | 74 | #ifndef __HAVE_ARCH_STRSTR |
| 67 | extern char * strstr(const char *,const char *); | 75 | extern char * strstr(const char *,const char *); |
| 68 | #endif | 76 | #endif |
diff --git a/include/linux/sunrpc/sched.h b/include/linux/sunrpc/sched.h index 401097781fc0..1906782ec86b 100644 --- a/include/linux/sunrpc/sched.h +++ b/include/linux/sunrpc/sched.h | |||
| @@ -130,12 +130,14 @@ struct rpc_task_setup { | |||
| 130 | #define RPC_TASK_DYNAMIC 0x0080 /* task was kmalloc'ed */ | 130 | #define RPC_TASK_DYNAMIC 0x0080 /* task was kmalloc'ed */ |
| 131 | #define RPC_TASK_KILLED 0x0100 /* task was killed */ | 131 | #define RPC_TASK_KILLED 0x0100 /* task was killed */ |
| 132 | #define RPC_TASK_SOFT 0x0200 /* Use soft timeouts */ | 132 | #define RPC_TASK_SOFT 0x0200 /* Use soft timeouts */ |
| 133 | #define RPC_TASK_SOFTCONN 0x0400 /* Fail if can't connect */ | ||
| 133 | 134 | ||
| 134 | #define RPC_IS_ASYNC(t) ((t)->tk_flags & RPC_TASK_ASYNC) | 135 | #define RPC_IS_ASYNC(t) ((t)->tk_flags & RPC_TASK_ASYNC) |
| 135 | #define RPC_IS_SWAPPER(t) ((t)->tk_flags & RPC_TASK_SWAPPER) | 136 | #define RPC_IS_SWAPPER(t) ((t)->tk_flags & RPC_TASK_SWAPPER) |
| 136 | #define RPC_DO_ROOTOVERRIDE(t) ((t)->tk_flags & RPC_TASK_ROOTCREDS) | 137 | #define RPC_DO_ROOTOVERRIDE(t) ((t)->tk_flags & RPC_TASK_ROOTCREDS) |
| 137 | #define RPC_ASSASSINATED(t) ((t)->tk_flags & RPC_TASK_KILLED) | 138 | #define RPC_ASSASSINATED(t) ((t)->tk_flags & RPC_TASK_KILLED) |
| 138 | #define RPC_IS_SOFT(t) ((t)->tk_flags & RPC_TASK_SOFT) | 139 | #define RPC_IS_SOFT(t) ((t)->tk_flags & RPC_TASK_SOFT) |
| 140 | #define RPC_IS_SOFTCONN(t) ((t)->tk_flags & RPC_TASK_SOFTCONN) | ||
| 139 | 141 | ||
| 140 | #define RPC_TASK_RUNNING 0 | 142 | #define RPC_TASK_RUNNING 0 |
| 141 | #define RPC_TASK_QUEUED 1 | 143 | #define RPC_TASK_QUEUED 1 |
diff --git a/include/linux/swap.h b/include/linux/swap.h index 4ec90019c1a4..a2602a8207a6 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
| @@ -145,38 +145,43 @@ enum { | |||
| 145 | SWP_DISCARDABLE = (1 << 2), /* blkdev supports discard */ | 145 | SWP_DISCARDABLE = (1 << 2), /* blkdev supports discard */ |
| 146 | SWP_DISCARDING = (1 << 3), /* now discarding a free cluster */ | 146 | SWP_DISCARDING = (1 << 3), /* now discarding a free cluster */ |
| 147 | SWP_SOLIDSTATE = (1 << 4), /* blkdev seeks are cheap */ | 147 | SWP_SOLIDSTATE = (1 << 4), /* blkdev seeks are cheap */ |
| 148 | SWP_CONTINUED = (1 << 5), /* swap_map has count continuation */ | ||
| 148 | /* add others here before... */ | 149 | /* add others here before... */ |
| 149 | SWP_SCANNING = (1 << 8), /* refcount in scan_swap_map */ | 150 | SWP_SCANNING = (1 << 8), /* refcount in scan_swap_map */ |
| 150 | }; | 151 | }; |
| 151 | 152 | ||
| 152 | #define SWAP_CLUSTER_MAX 32 | 153 | #define SWAP_CLUSTER_MAX 32 |
| 153 | 154 | ||
| 154 | #define SWAP_MAP_MAX 0x7ffe | 155 | #define SWAP_MAP_MAX 0x3e /* Max duplication count, in first swap_map */ |
| 155 | #define SWAP_MAP_BAD 0x7fff | 156 | #define SWAP_MAP_BAD 0x3f /* Note pageblock is bad, in first swap_map */ |
| 156 | #define SWAP_HAS_CACHE 0x8000 /* There is a swap cache of entry. */ | 157 | #define SWAP_HAS_CACHE 0x40 /* Flag page is cached, in first swap_map */ |
| 157 | #define SWAP_COUNT_MASK (~SWAP_HAS_CACHE) | 158 | #define SWAP_CONT_MAX 0x7f /* Max count, in each swap_map continuation */ |
| 159 | #define COUNT_CONTINUED 0x80 /* See swap_map continuation for full count */ | ||
| 160 | #define SWAP_MAP_SHMEM 0xbf /* Owned by shmem/tmpfs, in first swap_map */ | ||
| 161 | |||
| 158 | /* | 162 | /* |
| 159 | * The in-memory structure used to track swap areas. | 163 | * The in-memory structure used to track swap areas. |
| 160 | */ | 164 | */ |
| 161 | struct swap_info_struct { | 165 | struct swap_info_struct { |
| 162 | unsigned long flags; | 166 | unsigned long flags; /* SWP_USED etc: see above */ |
| 163 | int prio; /* swap priority */ | 167 | signed short prio; /* swap priority of this type */ |
| 164 | int next; /* next entry on swap list */ | 168 | signed char type; /* strange name for an index */ |
| 165 | struct file *swap_file; | 169 | signed char next; /* next type on the swap list */ |
| 166 | struct block_device *bdev; | 170 | unsigned int max; /* extent of the swap_map */ |
| 167 | struct list_head extent_list; | 171 | unsigned char *swap_map; /* vmalloc'ed array of usage counts */ |
| 168 | struct swap_extent *curr_swap_extent; | 172 | unsigned int lowest_bit; /* index of first free in swap_map */ |
| 169 | unsigned short *swap_map; | 173 | unsigned int highest_bit; /* index of last free in swap_map */ |
| 170 | unsigned int lowest_bit; | 174 | unsigned int pages; /* total of usable pages of swap */ |
| 171 | unsigned int highest_bit; | 175 | unsigned int inuse_pages; /* number of those currently in use */ |
| 176 | unsigned int cluster_next; /* likely index for next allocation */ | ||
| 177 | unsigned int cluster_nr; /* countdown to next cluster search */ | ||
| 172 | unsigned int lowest_alloc; /* while preparing discard cluster */ | 178 | unsigned int lowest_alloc; /* while preparing discard cluster */ |
| 173 | unsigned int highest_alloc; /* while preparing discard cluster */ | 179 | unsigned int highest_alloc; /* while preparing discard cluster */ |
| 174 | unsigned int cluster_next; | 180 | struct swap_extent *curr_swap_extent; |
| 175 | unsigned int cluster_nr; | 181 | struct swap_extent first_swap_extent; |
| 176 | unsigned int pages; | 182 | struct block_device *bdev; /* swap device or bdev of swap file */ |
| 177 | unsigned int max; | 183 | struct file *swap_file; /* seldom referenced */ |
| 178 | unsigned int inuse_pages; | 184 | unsigned int old_block_size; /* seldom referenced */ |
| 179 | unsigned int old_block_size; | ||
| 180 | }; | 185 | }; |
| 181 | 186 | ||
| 182 | struct swap_list_t { | 187 | struct swap_list_t { |
| @@ -273,6 +278,7 @@ extern int scan_unevictable_register_node(struct node *node); | |||
| 273 | extern void scan_unevictable_unregister_node(struct node *node); | 278 | extern void scan_unevictable_unregister_node(struct node *node); |
| 274 | 279 | ||
| 275 | extern int kswapd_run(int nid); | 280 | extern int kswapd_run(int nid); |
| 281 | extern void kswapd_stop(int nid); | ||
| 276 | 282 | ||
| 277 | #ifdef CONFIG_MMU | 283 | #ifdef CONFIG_MMU |
| 278 | /* linux/mm/shmem.c */ | 284 | /* linux/mm/shmem.c */ |
| @@ -309,17 +315,18 @@ extern long total_swap_pages; | |||
| 309 | extern void si_swapinfo(struct sysinfo *); | 315 | extern void si_swapinfo(struct sysinfo *); |
| 310 | extern swp_entry_t get_swap_page(void); | 316 | extern swp_entry_t get_swap_page(void); |
| 311 | extern swp_entry_t get_swap_page_of_type(int); | 317 | extern swp_entry_t get_swap_page_of_type(int); |
| 312 | extern void swap_duplicate(swp_entry_t); | ||
| 313 | extern int swapcache_prepare(swp_entry_t); | ||
| 314 | extern int valid_swaphandles(swp_entry_t, unsigned long *); | 318 | extern int valid_swaphandles(swp_entry_t, unsigned long *); |
| 319 | extern int add_swap_count_continuation(swp_entry_t, gfp_t); | ||
| 320 | extern void swap_shmem_alloc(swp_entry_t); | ||
| 321 | extern int swap_duplicate(swp_entry_t); | ||
| 322 | extern int swapcache_prepare(swp_entry_t); | ||
| 315 | extern void swap_free(swp_entry_t); | 323 | extern void swap_free(swp_entry_t); |
| 316 | extern void swapcache_free(swp_entry_t, struct page *page); | 324 | extern void swapcache_free(swp_entry_t, struct page *page); |
| 317 | extern int free_swap_and_cache(swp_entry_t); | 325 | extern int free_swap_and_cache(swp_entry_t); |
| 318 | extern int swap_type_of(dev_t, sector_t, struct block_device **); | 326 | extern int swap_type_of(dev_t, sector_t, struct block_device **); |
| 319 | extern unsigned int count_swap_pages(int, int); | 327 | extern unsigned int count_swap_pages(int, int); |
| 320 | extern sector_t map_swap_page(struct swap_info_struct *, pgoff_t); | 328 | extern sector_t map_swap_page(struct page *, struct block_device **); |
| 321 | extern sector_t swapdev_block(int, pgoff_t); | 329 | extern sector_t swapdev_block(int, pgoff_t); |
| 322 | extern struct swap_info_struct *get_swap_info_struct(unsigned); | ||
| 323 | extern int reuse_swap_page(struct page *); | 330 | extern int reuse_swap_page(struct page *); |
| 324 | extern int try_to_free_swap(struct page *); | 331 | extern int try_to_free_swap(struct page *); |
| 325 | struct backing_dev_info; | 332 | struct backing_dev_info; |
| @@ -384,8 +391,18 @@ static inline void show_swap_cache_info(void) | |||
| 384 | #define free_swap_and_cache(swp) is_migration_entry(swp) | 391 | #define free_swap_and_cache(swp) is_migration_entry(swp) |
| 385 | #define swapcache_prepare(swp) is_migration_entry(swp) | 392 | #define swapcache_prepare(swp) is_migration_entry(swp) |
| 386 | 393 | ||
| 387 | static inline void swap_duplicate(swp_entry_t swp) | 394 | static inline int add_swap_count_continuation(swp_entry_t swp, gfp_t gfp_mask) |
| 388 | { | 395 | { |
| 396 | return 0; | ||
| 397 | } | ||
| 398 | |||
| 399 | static inline void swap_shmem_alloc(swp_entry_t swp) | ||
| 400 | { | ||
| 401 | } | ||
| 402 | |||
| 403 | static inline int swap_duplicate(swp_entry_t swp) | ||
| 404 | { | ||
| 405 | return 0; | ||
| 389 | } | 406 | } |
| 390 | 407 | ||
| 391 | static inline void swap_free(swp_entry_t swp) | 408 | static inline void swap_free(swp_entry_t swp) |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index bc70c5810fec..939a61507ac5 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
| @@ -834,4 +834,8 @@ int kernel_execve(const char *filename, char *const argv[], char *const envp[]); | |||
| 834 | asmlinkage long sys_perf_event_open( | 834 | asmlinkage long sys_perf_event_open( |
| 835 | struct perf_event_attr __user *attr_uptr, | 835 | struct perf_event_attr __user *attr_uptr, |
| 836 | pid_t pid, int cpu, int group_fd, unsigned long flags); | 836 | pid_t pid, int cpu, int group_fd, unsigned long flags); |
| 837 | |||
| 838 | asmlinkage long sys_mmap_pgoff(unsigned long addr, unsigned long len, | ||
| 839 | unsigned long prot, unsigned long flags, | ||
| 840 | unsigned long fd, unsigned long pgoff); | ||
| 837 | #endif | 841 | #endif |
diff --git a/include/linux/trace_seq.h b/include/linux/trace_seq.h index 09077f6ed128..5cf397ceb726 100644 --- a/include/linux/trace_seq.h +++ b/include/linux/trace_seq.h | |||
| @@ -14,6 +14,7 @@ struct trace_seq { | |||
| 14 | unsigned char buffer[PAGE_SIZE]; | 14 | unsigned char buffer[PAGE_SIZE]; |
| 15 | unsigned int len; | 15 | unsigned int len; |
| 16 | unsigned int readpos; | 16 | unsigned int readpos; |
| 17 | int full; | ||
| 17 | }; | 18 | }; |
| 18 | 19 | ||
| 19 | static inline void | 20 | static inline void |
| @@ -21,6 +22,7 @@ trace_seq_init(struct trace_seq *s) | |||
| 21 | { | 22 | { |
| 22 | s->len = 0; | 23 | s->len = 0; |
| 23 | s->readpos = 0; | 24 | s->readpos = 0; |
| 25 | s->full = 0; | ||
| 24 | } | 26 | } |
| 25 | 27 | ||
| 26 | /* | 28 | /* |
| @@ -33,7 +35,7 @@ extern int trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args) | |||
| 33 | __attribute__ ((format (printf, 2, 0))); | 35 | __attribute__ ((format (printf, 2, 0))); |
| 34 | extern int | 36 | extern int |
| 35 | trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary); | 37 | trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary); |
| 36 | extern void trace_print_seq(struct seq_file *m, struct trace_seq *s); | 38 | extern int trace_print_seq(struct seq_file *m, struct trace_seq *s); |
| 37 | extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, | 39 | extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, |
| 38 | size_t cnt); | 40 | size_t cnt); |
| 39 | extern int trace_seq_puts(struct trace_seq *s, const char *str); | 41 | extern int trace_seq_puts(struct trace_seq *s, const char *str); |
| @@ -55,8 +57,9 @@ trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) | |||
| 55 | return 0; | 57 | return 0; |
| 56 | } | 58 | } |
| 57 | 59 | ||
| 58 | static inline void trace_print_seq(struct seq_file *m, struct trace_seq *s) | 60 | static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s) |
| 59 | { | 61 | { |
| 62 | return 0; | ||
| 60 | } | 63 | } |
| 61 | static inline ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, | 64 | static inline ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, |
| 62 | size_t cnt) | 65 | size_t cnt) |
diff --git a/include/linux/tty.h b/include/linux/tty.h index f0f43d08d8b8..ef3a2947b102 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
| @@ -190,9 +190,17 @@ struct tty_port_operations { | |||
| 190 | /* Control the DTR line */ | 190 | /* Control the DTR line */ |
| 191 | void (*dtr_rts)(struct tty_port *port, int raise); | 191 | void (*dtr_rts)(struct tty_port *port, int raise); |
| 192 | /* Called when the last close completes or a hangup finishes | 192 | /* Called when the last close completes or a hangup finishes |
| 193 | IFF the port was initialized. Do not use to free resources */ | 193 | IFF the port was initialized. Do not use to free resources. Called |
| 194 | under the port mutex to serialize against activate/shutdowns */ | ||
| 194 | void (*shutdown)(struct tty_port *port); | 195 | void (*shutdown)(struct tty_port *port); |
| 195 | void (*drop)(struct tty_port *port); | 196 | void (*drop)(struct tty_port *port); |
| 197 | /* Called under the port mutex from tty_port_open, serialized using | ||
| 198 | the port mutex */ | ||
| 199 | /* FIXME: long term getting the tty argument *out* of this would be | ||
| 200 | good for consoles */ | ||
| 201 | int (*activate)(struct tty_port *port, struct tty_struct *tty); | ||
| 202 | /* Called on the final put of a port */ | ||
| 203 | void (*destruct)(struct tty_port *port); | ||
| 196 | }; | 204 | }; |
| 197 | 205 | ||
| 198 | struct tty_port { | 206 | struct tty_port { |
| @@ -206,12 +214,14 @@ struct tty_port { | |||
| 206 | wait_queue_head_t delta_msr_wait; /* Modem status change */ | 214 | wait_queue_head_t delta_msr_wait; /* Modem status change */ |
| 207 | unsigned long flags; /* TTY flags ASY_*/ | 215 | unsigned long flags; /* TTY flags ASY_*/ |
| 208 | struct mutex mutex; /* Locking */ | 216 | struct mutex mutex; /* Locking */ |
| 217 | struct mutex buf_mutex; /* Buffer alloc lock */ | ||
| 209 | unsigned char *xmit_buf; /* Optional buffer */ | 218 | unsigned char *xmit_buf; /* Optional buffer */ |
| 210 | unsigned int close_delay; /* Close port delay */ | 219 | unsigned int close_delay; /* Close port delay */ |
| 211 | unsigned int closing_wait; /* Delay for output */ | 220 | unsigned int closing_wait; /* Delay for output */ |
| 212 | int drain_delay; /* Set to zero if no pure time | 221 | int drain_delay; /* Set to zero if no pure time |
| 213 | based drain is needed else | 222 | based drain is needed else |
| 214 | set to size of fifo */ | 223 | set to size of fifo */ |
| 224 | struct kref kref; /* Ref counter */ | ||
| 215 | }; | 225 | }; |
| 216 | 226 | ||
| 217 | /* | 227 | /* |
| @@ -340,8 +350,6 @@ extern void tty_write_flush(struct tty_struct *); | |||
| 340 | 350 | ||
| 341 | extern struct ktermios tty_std_termios; | 351 | extern struct ktermios tty_std_termios; |
| 342 | 352 | ||
| 343 | extern int kmsg_redirect; | ||
| 344 | |||
| 345 | extern void console_init(void); | 353 | extern void console_init(void); |
| 346 | extern int vcs_init(void); | 354 | extern int vcs_init(void); |
| 347 | 355 | ||
| @@ -439,7 +447,7 @@ extern void initialize_tty_struct(struct tty_struct *tty, | |||
| 439 | struct tty_driver *driver, int idx); | 447 | struct tty_driver *driver, int idx); |
| 440 | extern struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx, | 448 | extern struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx, |
| 441 | int first_ok); | 449 | int first_ok); |
| 442 | extern void tty_release_dev(struct file *filp); | 450 | extern int tty_release(struct inode *inode, struct file *filp); |
| 443 | extern int tty_init_termios(struct tty_struct *tty); | 451 | extern int tty_init_termios(struct tty_struct *tty); |
| 444 | 452 | ||
| 445 | extern struct tty_struct *tty_pair_get_tty(struct tty_struct *tty); | 453 | extern struct tty_struct *tty_pair_get_tty(struct tty_struct *tty); |
| @@ -454,6 +462,15 @@ extern int tty_write_lock(struct tty_struct *tty, int ndelay); | |||
| 454 | extern void tty_port_init(struct tty_port *port); | 462 | extern void tty_port_init(struct tty_port *port); |
| 455 | extern int tty_port_alloc_xmit_buf(struct tty_port *port); | 463 | extern int tty_port_alloc_xmit_buf(struct tty_port *port); |
| 456 | extern void tty_port_free_xmit_buf(struct tty_port *port); | 464 | extern void tty_port_free_xmit_buf(struct tty_port *port); |
| 465 | extern void tty_port_put(struct tty_port *port); | ||
| 466 | |||
| 467 | extern inline struct tty_port *tty_port_get(struct tty_port *port) | ||
| 468 | { | ||
| 469 | if (port) | ||
| 470 | kref_get(&port->kref); | ||
| 471 | return port; | ||
| 472 | } | ||
| 473 | |||
| 457 | extern struct tty_struct *tty_port_tty_get(struct tty_port *port); | 474 | extern struct tty_struct *tty_port_tty_get(struct tty_port *port); |
| 458 | extern void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty); | 475 | extern void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty); |
| 459 | extern int tty_port_carrier_raised(struct tty_port *port); | 476 | extern int tty_port_carrier_raised(struct tty_port *port); |
| @@ -467,6 +484,8 @@ extern int tty_port_close_start(struct tty_port *port, | |||
| 467 | extern void tty_port_close_end(struct tty_port *port, struct tty_struct *tty); | 484 | extern void tty_port_close_end(struct tty_port *port, struct tty_struct *tty); |
| 468 | extern void tty_port_close(struct tty_port *port, | 485 | extern void tty_port_close(struct tty_port *port, |
| 469 | struct tty_struct *tty, struct file *filp); | 486 | struct tty_struct *tty, struct file *filp); |
| 487 | extern int tty_port_open(struct tty_port *port, | ||
| 488 | struct tty_struct *tty, struct file *filp); | ||
| 470 | extern inline int tty_port_users(struct tty_port *port) | 489 | extern inline int tty_port_users(struct tty_port *port) |
| 471 | { | 490 | { |
| 472 | return port->count + port->blocked_open; | 491 | return port->count + port->blocked_open; |
diff --git a/include/linux/usb.h b/include/linux/usb.h index a34fa89f1474..e101a2d04d75 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
| @@ -331,6 +331,7 @@ struct usb_bus { | |||
| 331 | u8 otg_port; /* 0, or number of OTG/HNP port */ | 331 | u8 otg_port; /* 0, or number of OTG/HNP port */ |
| 332 | unsigned is_b_host:1; /* true during some HNP roleswitches */ | 332 | unsigned is_b_host:1; /* true during some HNP roleswitches */ |
| 333 | unsigned b_hnp_enable:1; /* OTG: did A-Host enable HNP? */ | 333 | unsigned b_hnp_enable:1; /* OTG: did A-Host enable HNP? */ |
| 334 | unsigned sg_tablesize; /* 0 or largest number of sg list entries */ | ||
| 334 | 335 | ||
| 335 | int devnum_next; /* Next open device number in | 336 | int devnum_next; /* Next open device number in |
| 336 | * round-robin allocation */ | 337 | * round-robin allocation */ |
| @@ -428,11 +429,9 @@ struct usb_tt; | |||
| 428 | * @last_busy: time of last use | 429 | * @last_busy: time of last use |
| 429 | * @autosuspend_delay: in jiffies | 430 | * @autosuspend_delay: in jiffies |
| 430 | * @connect_time: time device was first connected | 431 | * @connect_time: time device was first connected |
| 431 | * @auto_pm: autosuspend/resume in progress | ||
| 432 | * @do_remote_wakeup: remote wakeup should be enabled | 432 | * @do_remote_wakeup: remote wakeup should be enabled |
| 433 | * @reset_resume: needs reset instead of resume | 433 | * @reset_resume: needs reset instead of resume |
| 434 | * @autosuspend_disabled: autosuspend disabled by the user | 434 | * @autosuspend_disabled: autosuspend disabled by the user |
| 435 | * @autoresume_disabled: autoresume disabled by the user | ||
| 436 | * @skip_sys_resume: skip the next system resume | 435 | * @skip_sys_resume: skip the next system resume |
| 437 | * @wusb_dev: if this is a Wireless USB device, link to the WUSB | 436 | * @wusb_dev: if this is a Wireless USB device, link to the WUSB |
| 438 | * specific data for the device. | 437 | * specific data for the device. |
| @@ -513,11 +512,9 @@ struct usb_device { | |||
| 513 | int autosuspend_delay; | 512 | int autosuspend_delay; |
| 514 | unsigned long connect_time; | 513 | unsigned long connect_time; |
| 515 | 514 | ||
| 516 | unsigned auto_pm:1; | ||
| 517 | unsigned do_remote_wakeup:1; | 515 | unsigned do_remote_wakeup:1; |
| 518 | unsigned reset_resume:1; | 516 | unsigned reset_resume:1; |
| 519 | unsigned autosuspend_disabled:1; | 517 | unsigned autosuspend_disabled:1; |
| 520 | unsigned autoresume_disabled:1; | ||
| 521 | unsigned skip_sys_resume:1; | 518 | unsigned skip_sys_resume:1; |
| 522 | #endif | 519 | #endif |
| 523 | struct wusb_dev *wusb_dev; | 520 | struct wusb_dev *wusb_dev; |
| @@ -543,22 +540,20 @@ extern struct usb_device *usb_find_device(u16 vendor_id, u16 product_id); | |||
| 543 | 540 | ||
| 544 | /* USB autosuspend and autoresume */ | 541 | /* USB autosuspend and autoresume */ |
| 545 | #ifdef CONFIG_USB_SUSPEND | 542 | #ifdef CONFIG_USB_SUSPEND |
| 546 | extern int usb_autopm_set_interface(struct usb_interface *intf); | ||
| 547 | extern int usb_autopm_get_interface(struct usb_interface *intf); | 543 | extern int usb_autopm_get_interface(struct usb_interface *intf); |
| 548 | extern void usb_autopm_put_interface(struct usb_interface *intf); | 544 | extern void usb_autopm_put_interface(struct usb_interface *intf); |
| 549 | extern int usb_autopm_get_interface_async(struct usb_interface *intf); | 545 | extern int usb_autopm_get_interface_async(struct usb_interface *intf); |
| 550 | extern void usb_autopm_put_interface_async(struct usb_interface *intf); | 546 | extern void usb_autopm_put_interface_async(struct usb_interface *intf); |
| 551 | 547 | ||
| 552 | static inline void usb_autopm_enable(struct usb_interface *intf) | 548 | static inline void usb_autopm_get_interface_no_resume( |
| 549 | struct usb_interface *intf) | ||
| 553 | { | 550 | { |
| 554 | atomic_set(&intf->pm_usage_cnt, 0); | 551 | atomic_inc(&intf->pm_usage_cnt); |
| 555 | usb_autopm_set_interface(intf); | ||
| 556 | } | 552 | } |
| 557 | 553 | static inline void usb_autopm_put_interface_no_suspend( | |
| 558 | static inline void usb_autopm_disable(struct usb_interface *intf) | 554 | struct usb_interface *intf) |
| 559 | { | 555 | { |
| 560 | atomic_set(&intf->pm_usage_cnt, 1); | 556 | atomic_dec(&intf->pm_usage_cnt); |
| 561 | usb_autopm_set_interface(intf); | ||
| 562 | } | 557 | } |
| 563 | 558 | ||
| 564 | static inline void usb_mark_last_busy(struct usb_device *udev) | 559 | static inline void usb_mark_last_busy(struct usb_device *udev) |
| @@ -568,12 +563,8 @@ static inline void usb_mark_last_busy(struct usb_device *udev) | |||
| 568 | 563 | ||
| 569 | #else | 564 | #else |
| 570 | 565 | ||
| 571 | static inline int usb_autopm_set_interface(struct usb_interface *intf) | ||
| 572 | { return 0; } | ||
| 573 | |||
| 574 | static inline int usb_autopm_get_interface(struct usb_interface *intf) | 566 | static inline int usb_autopm_get_interface(struct usb_interface *intf) |
| 575 | { return 0; } | 567 | { return 0; } |
| 576 | |||
| 577 | static inline int usb_autopm_get_interface_async(struct usb_interface *intf) | 568 | static inline int usb_autopm_get_interface_async(struct usb_interface *intf) |
| 578 | { return 0; } | 569 | { return 0; } |
| 579 | 570 | ||
| @@ -581,9 +572,11 @@ static inline void usb_autopm_put_interface(struct usb_interface *intf) | |||
| 581 | { } | 572 | { } |
| 582 | static inline void usb_autopm_put_interface_async(struct usb_interface *intf) | 573 | static inline void usb_autopm_put_interface_async(struct usb_interface *intf) |
| 583 | { } | 574 | { } |
| 584 | static inline void usb_autopm_enable(struct usb_interface *intf) | 575 | static inline void usb_autopm_get_interface_no_resume( |
| 576 | struct usb_interface *intf) | ||
| 585 | { } | 577 | { } |
| 586 | static inline void usb_autopm_disable(struct usb_interface *intf) | 578 | static inline void usb_autopm_put_interface_no_suspend( |
| 579 | struct usb_interface *intf) | ||
| 587 | { } | 580 | { } |
| 588 | static inline void usb_mark_last_busy(struct usb_device *udev) | 581 | static inline void usb_mark_last_busy(struct usb_device *udev) |
| 589 | { } | 582 | { } |
| @@ -626,6 +619,10 @@ extern struct usb_interface *usb_ifnum_to_if(const struct usb_device *dev, | |||
| 626 | unsigned ifnum); | 619 | unsigned ifnum); |
| 627 | extern struct usb_host_interface *usb_altnum_to_altsetting( | 620 | extern struct usb_host_interface *usb_altnum_to_altsetting( |
| 628 | const struct usb_interface *intf, unsigned int altnum); | 621 | const struct usb_interface *intf, unsigned int altnum); |
| 622 | extern struct usb_host_interface *usb_find_alt_setting( | ||
| 623 | struct usb_host_config *config, | ||
| 624 | unsigned int iface_num, | ||
| 625 | unsigned int alt_num); | ||
| 629 | 626 | ||
| 630 | 627 | ||
| 631 | /** | 628 | /** |
diff --git a/include/linux/usb/composite.h b/include/linux/usb/composite.h index 4f6bb3d2160e..738ea1a691cb 100644 --- a/include/linux/usb/composite.h +++ b/include/linux/usb/composite.h | |||
| @@ -127,6 +127,7 @@ struct usb_function { | |||
| 127 | /* private: */ | 127 | /* private: */ |
| 128 | /* internals */ | 128 | /* internals */ |
| 129 | struct list_head list; | 129 | struct list_head list; |
| 130 | DECLARE_BITMAP(endpoints, 32); | ||
| 130 | }; | 131 | }; |
| 131 | 132 | ||
| 132 | int usb_add_function(struct usb_configuration *, struct usb_function *); | 133 | int usb_add_function(struct usb_configuration *, struct usb_function *); |
diff --git a/include/linux/usb/otg.h b/include/linux/usb/otg.h index 2443c0e7a80c..52bb917641f0 100644 --- a/include/linux/usb/otg.h +++ b/include/linux/usb/otg.h | |||
| @@ -33,6 +33,23 @@ enum usb_otg_state { | |||
| 33 | OTG_STATE_A_VBUS_ERR, | 33 | OTG_STATE_A_VBUS_ERR, |
| 34 | }; | 34 | }; |
| 35 | 35 | ||
| 36 | #define USB_OTG_PULLUP_ID (1 << 0) | ||
| 37 | #define USB_OTG_PULLDOWN_DP (1 << 1) | ||
| 38 | #define USB_OTG_PULLDOWN_DM (1 << 2) | ||
| 39 | #define USB_OTG_EXT_VBUS_INDICATOR (1 << 3) | ||
| 40 | #define USB_OTG_DRV_VBUS (1 << 4) | ||
| 41 | #define USB_OTG_DRV_VBUS_EXT (1 << 5) | ||
| 42 | |||
| 43 | struct otg_transceiver; | ||
| 44 | |||
| 45 | /* for transceivers connected thru an ULPI interface, the user must | ||
| 46 | * provide access ops | ||
| 47 | */ | ||
| 48 | struct otg_io_access_ops { | ||
| 49 | int (*read)(struct otg_transceiver *otg, u32 reg); | ||
| 50 | int (*write)(struct otg_transceiver *otg, u32 val, u32 reg); | ||
| 51 | }; | ||
| 52 | |||
| 36 | /* | 53 | /* |
| 37 | * the otg driver needs to interact with both device side and host side | 54 | * the otg driver needs to interact with both device side and host side |
| 38 | * usb controllers. it decides which controller is active at a given | 55 | * usb controllers. it decides which controller is active at a given |
| @@ -42,6 +59,7 @@ enum usb_otg_state { | |||
| 42 | struct otg_transceiver { | 59 | struct otg_transceiver { |
| 43 | struct device *dev; | 60 | struct device *dev; |
| 44 | const char *label; | 61 | const char *label; |
| 62 | unsigned int flags; | ||
| 45 | 63 | ||
| 46 | u8 default_a; | 64 | u8 default_a; |
| 47 | enum usb_otg_state state; | 65 | enum usb_otg_state state; |
| @@ -49,10 +67,17 @@ struct otg_transceiver { | |||
| 49 | struct usb_bus *host; | 67 | struct usb_bus *host; |
| 50 | struct usb_gadget *gadget; | 68 | struct usb_gadget *gadget; |
| 51 | 69 | ||
| 70 | struct otg_io_access_ops *io_ops; | ||
| 71 | void __iomem *io_priv; | ||
| 72 | |||
| 52 | /* to pass extra port status to the root hub */ | 73 | /* to pass extra port status to the root hub */ |
| 53 | u16 port_status; | 74 | u16 port_status; |
| 54 | u16 port_change; | 75 | u16 port_change; |
| 55 | 76 | ||
| 77 | /* initialize/shutdown the OTG controller */ | ||
| 78 | int (*init)(struct otg_transceiver *otg); | ||
| 79 | void (*shutdown)(struct otg_transceiver *otg); | ||
| 80 | |||
| 56 | /* bind/unbind the host controller */ | 81 | /* bind/unbind the host controller */ |
| 57 | int (*set_host)(struct otg_transceiver *otg, | 82 | int (*set_host)(struct otg_transceiver *otg, |
| 58 | struct usb_bus *host); | 83 | struct usb_bus *host); |
| @@ -65,6 +90,10 @@ struct otg_transceiver { | |||
| 65 | int (*set_power)(struct otg_transceiver *otg, | 90 | int (*set_power)(struct otg_transceiver *otg, |
| 66 | unsigned mA); | 91 | unsigned mA); |
| 67 | 92 | ||
| 93 | /* effective for A-peripheral, ignored for B devices */ | ||
| 94 | int (*set_vbus)(struct otg_transceiver *otg, | ||
| 95 | bool enabled); | ||
| 96 | |||
| 68 | /* for non-OTG B devices: set transceiver into suspend mode */ | 97 | /* for non-OTG B devices: set transceiver into suspend mode */ |
| 69 | int (*set_suspend)(struct otg_transceiver *otg, | 98 | int (*set_suspend)(struct otg_transceiver *otg, |
| 70 | int suspend); | 99 | int suspend); |
| @@ -85,6 +114,38 @@ extern int otg_set_transceiver(struct otg_transceiver *); | |||
| 85 | extern void usb_nop_xceiv_register(void); | 114 | extern void usb_nop_xceiv_register(void); |
| 86 | extern void usb_nop_xceiv_unregister(void); | 115 | extern void usb_nop_xceiv_unregister(void); |
| 87 | 116 | ||
| 117 | /* helpers for direct access thru low-level io interface */ | ||
| 118 | static inline int otg_io_read(struct otg_transceiver *otg, u32 reg) | ||
| 119 | { | ||
| 120 | if (otg->io_ops && otg->io_ops->read) | ||
| 121 | return otg->io_ops->read(otg, reg); | ||
| 122 | |||
| 123 | return -EINVAL; | ||
| 124 | } | ||
| 125 | |||
| 126 | static inline int otg_io_write(struct otg_transceiver *otg, u32 reg, u32 val) | ||
| 127 | { | ||
| 128 | if (otg->io_ops && otg->io_ops->write) | ||
| 129 | return otg->io_ops->write(otg, reg, val); | ||
| 130 | |||
| 131 | return -EINVAL; | ||
| 132 | } | ||
| 133 | |||
| 134 | static inline int | ||
| 135 | otg_init(struct otg_transceiver *otg) | ||
| 136 | { | ||
| 137 | if (otg->init) | ||
| 138 | return otg->init(otg); | ||
| 139 | |||
| 140 | return 0; | ||
| 141 | } | ||
| 142 | |||
| 143 | static inline void | ||
| 144 | otg_shutdown(struct otg_transceiver *otg) | ||
| 145 | { | ||
| 146 | if (otg->shutdown) | ||
| 147 | otg->shutdown(otg); | ||
| 148 | } | ||
| 88 | 149 | ||
| 89 | /* for usb host and peripheral controller drivers */ | 150 | /* for usb host and peripheral controller drivers */ |
| 90 | extern struct otg_transceiver *otg_get_transceiver(void); | 151 | extern struct otg_transceiver *otg_get_transceiver(void); |
| @@ -97,6 +158,12 @@ otg_start_hnp(struct otg_transceiver *otg) | |||
| 97 | return otg->start_hnp(otg); | 158 | return otg->start_hnp(otg); |
| 98 | } | 159 | } |
| 99 | 160 | ||
| 161 | /* Context: can sleep */ | ||
| 162 | static inline int | ||
| 163 | otg_set_vbus(struct otg_transceiver *otg, bool enabled) | ||
| 164 | { | ||
| 165 | return otg->set_vbus(otg, enabled); | ||
| 166 | } | ||
| 100 | 167 | ||
| 101 | /* for HCDs */ | 168 | /* for HCDs */ |
| 102 | static inline int | 169 | static inline int |
| @@ -105,7 +172,6 @@ otg_set_host(struct otg_transceiver *otg, struct usb_bus *host) | |||
| 105 | return otg->set_host(otg, host); | 172 | return otg->set_host(otg, host); |
| 106 | } | 173 | } |
| 107 | 174 | ||
| 108 | |||
| 109 | /* for usb peripheral controller drivers */ | 175 | /* for usb peripheral controller drivers */ |
| 110 | 176 | ||
| 111 | /* Context: can sleep */ | 177 | /* Context: can sleep */ |
diff --git a/include/linux/usb/serial.h b/include/linux/usb/serial.h index ce911ebf91e8..acf6e457c04b 100644 --- a/include/linux/usb/serial.h +++ b/include/linux/usb/serial.h | |||
| @@ -39,8 +39,6 @@ enum port_dev_state { | |||
| 39 | * @serial: pointer back to the struct usb_serial owner of this port. | 39 | * @serial: pointer back to the struct usb_serial owner of this port. |
| 40 | * @port: pointer to the corresponding tty_port for this port. | 40 | * @port: pointer to the corresponding tty_port for this port. |
| 41 | * @lock: spinlock to grab when updating portions of this structure. | 41 | * @lock: spinlock to grab when updating portions of this structure. |
| 42 | * @mutex: mutex used to synchronize serial_open() and serial_close() | ||
| 43 | * access for this port. | ||
| 44 | * @number: the number of the port (the minor number). | 42 | * @number: the number of the port (the minor number). |
| 45 | * @interrupt_in_buffer: pointer to the interrupt in buffer for this port. | 43 | * @interrupt_in_buffer: pointer to the interrupt in buffer for this port. |
| 46 | * @interrupt_in_urb: pointer to the interrupt in struct urb for this port. | 44 | * @interrupt_in_urb: pointer to the interrupt in struct urb for this port. |
| @@ -77,7 +75,6 @@ struct usb_serial_port { | |||
| 77 | struct usb_serial *serial; | 75 | struct usb_serial *serial; |
| 78 | struct tty_port port; | 76 | struct tty_port port; |
| 79 | spinlock_t lock; | 77 | spinlock_t lock; |
| 80 | struct mutex mutex; | ||
| 81 | unsigned char number; | 78 | unsigned char number; |
| 82 | 79 | ||
| 83 | unsigned char *interrupt_in_buffer; | 80 | unsigned char *interrupt_in_buffer; |
diff --git a/include/linux/usb/ulpi.h b/include/linux/usb/ulpi.h new file mode 100644 index 000000000000..20675c6ebc4d --- /dev/null +++ b/include/linux/usb/ulpi.h | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | #ifndef __LINUX_USB_ULPI_H | ||
| 2 | #define __LINUX_USB_ULPI_H | ||
| 3 | |||
| 4 | struct otg_transceiver *otg_ulpi_create(struct otg_io_access_ops *ops, | ||
| 5 | unsigned int flags); | ||
| 6 | |||
| 7 | #endif /* __LINUX_USB_ULPI_H */ | ||
diff --git a/include/linux/usb_usual.h b/include/linux/usb_usual.h index 3d15fb9bc116..a4b947e470a5 100644 --- a/include/linux/usb_usual.h +++ b/include/linux/usb_usual.h | |||
| @@ -56,7 +56,9 @@ | |||
| 56 | US_FLAG(SANE_SENSE, 0x00008000) \ | 56 | US_FLAG(SANE_SENSE, 0x00008000) \ |
| 57 | /* Sane Sense (> 18 bytes) */ \ | 57 | /* Sane Sense (> 18 bytes) */ \ |
| 58 | US_FLAG(CAPACITY_OK, 0x00010000) \ | 58 | US_FLAG(CAPACITY_OK, 0x00010000) \ |
| 59 | /* READ CAPACITY response is correct */ | 59 | /* READ CAPACITY response is correct */ \ |
| 60 | US_FLAG(BAD_SENSE, 0x00020000) \ | ||
| 61 | /* Bad Sense (never more than 18 bytes) */ | ||
| 60 | 62 | ||
| 61 | #define US_FLAG(name, value) US_FL_##name = value , | 63 | #define US_FLAG(name, value) US_FL_##name = value , |
| 62 | enum { US_DO_ALL_FLAGS }; | 64 | enum { US_DO_ALL_FLAGS }; |
diff --git a/include/linux/usbdevice_fs.h b/include/linux/usbdevice_fs.h index b2a7d8ba6ee3..15591d2ea400 100644 --- a/include/linux/usbdevice_fs.h +++ b/include/linux/usbdevice_fs.h | |||
| @@ -128,6 +128,29 @@ struct usbdevfs_hub_portinfo { | |||
| 128 | #ifdef __KERNEL__ | 128 | #ifdef __KERNEL__ |
| 129 | #ifdef CONFIG_COMPAT | 129 | #ifdef CONFIG_COMPAT |
| 130 | #include <linux/compat.h> | 130 | #include <linux/compat.h> |
| 131 | |||
| 132 | struct usbdevfs_ctrltransfer32 { | ||
| 133 | u8 bRequestType; | ||
| 134 | u8 bRequest; | ||
| 135 | u16 wValue; | ||
| 136 | u16 wIndex; | ||
| 137 | u16 wLength; | ||
| 138 | u32 timeout; /* in milliseconds */ | ||
| 139 | compat_caddr_t data; | ||
| 140 | }; | ||
| 141 | |||
| 142 | struct usbdevfs_bulktransfer32 { | ||
| 143 | compat_uint_t ep; | ||
| 144 | compat_uint_t len; | ||
| 145 | compat_uint_t timeout; /* in milliseconds */ | ||
| 146 | compat_caddr_t data; | ||
| 147 | }; | ||
| 148 | |||
| 149 | struct usbdevfs_disconnectsignal32 { | ||
| 150 | compat_int_t signr; | ||
| 151 | compat_caddr_t context; | ||
| 152 | }; | ||
| 153 | |||
| 131 | struct usbdevfs_urb32 { | 154 | struct usbdevfs_urb32 { |
| 132 | unsigned char type; | 155 | unsigned char type; |
| 133 | unsigned char endpoint; | 156 | unsigned char endpoint; |
| @@ -153,7 +176,9 @@ struct usbdevfs_ioctl32 { | |||
| 153 | #endif /* __KERNEL__ */ | 176 | #endif /* __KERNEL__ */ |
| 154 | 177 | ||
| 155 | #define USBDEVFS_CONTROL _IOWR('U', 0, struct usbdevfs_ctrltransfer) | 178 | #define USBDEVFS_CONTROL _IOWR('U', 0, struct usbdevfs_ctrltransfer) |
| 179 | #define USBDEVFS_CONTROL32 _IOWR('U', 0, struct usbdevfs_ctrltransfer32) | ||
| 156 | #define USBDEVFS_BULK _IOWR('U', 2, struct usbdevfs_bulktransfer) | 180 | #define USBDEVFS_BULK _IOWR('U', 2, struct usbdevfs_bulktransfer) |
| 181 | #define USBDEVFS_BULK32 _IOWR('U', 2, struct usbdevfs_bulktransfer32) | ||
| 157 | #define USBDEVFS_RESETEP _IOR('U', 3, unsigned int) | 182 | #define USBDEVFS_RESETEP _IOR('U', 3, unsigned int) |
| 158 | #define USBDEVFS_SETINTERFACE _IOR('U', 4, struct usbdevfs_setinterface) | 183 | #define USBDEVFS_SETINTERFACE _IOR('U', 4, struct usbdevfs_setinterface) |
| 159 | #define USBDEVFS_SETCONFIGURATION _IOR('U', 5, unsigned int) | 184 | #define USBDEVFS_SETCONFIGURATION _IOR('U', 5, unsigned int) |
| @@ -166,6 +191,7 @@ struct usbdevfs_ioctl32 { | |||
| 166 | #define USBDEVFS_REAPURBNDELAY _IOW('U', 13, void *) | 191 | #define USBDEVFS_REAPURBNDELAY _IOW('U', 13, void *) |
| 167 | #define USBDEVFS_REAPURBNDELAY32 _IOW('U', 13, __u32) | 192 | #define USBDEVFS_REAPURBNDELAY32 _IOW('U', 13, __u32) |
| 168 | #define USBDEVFS_DISCSIGNAL _IOR('U', 14, struct usbdevfs_disconnectsignal) | 193 | #define USBDEVFS_DISCSIGNAL _IOR('U', 14, struct usbdevfs_disconnectsignal) |
| 194 | #define USBDEVFS_DISCSIGNAL32 _IOR('U', 14, struct usbdevfs_disconnectsignal32) | ||
| 169 | #define USBDEVFS_CLAIMINTERFACE _IOR('U', 15, unsigned int) | 195 | #define USBDEVFS_CLAIMINTERFACE _IOR('U', 15, unsigned int) |
| 170 | #define USBDEVFS_RELEASEINTERFACE _IOR('U', 16, unsigned int) | 196 | #define USBDEVFS_RELEASEINTERFACE _IOR('U', 16, unsigned int) |
| 171 | #define USBDEVFS_CONNECTINFO _IOW('U', 17, struct usbdevfs_connectinfo) | 197 | #define USBDEVFS_CONNECTINFO _IOW('U', 17, struct usbdevfs_connectinfo) |
diff --git a/include/linux/vmstat.h b/include/linux/vmstat.h index 2d0f222388a8..ee03bba9c5df 100644 --- a/include/linux/vmstat.h +++ b/include/linux/vmstat.h | |||
| @@ -40,6 +40,8 @@ enum vm_event_item { PGPGIN, PGPGOUT, PSWPIN, PSWPOUT, | |||
| 40 | PGSCAN_ZONE_RECLAIM_FAILED, | 40 | PGSCAN_ZONE_RECLAIM_FAILED, |
| 41 | #endif | 41 | #endif |
| 42 | PGINODESTEAL, SLABS_SCANNED, KSWAPD_STEAL, KSWAPD_INODESTEAL, | 42 | PGINODESTEAL, SLABS_SCANNED, KSWAPD_STEAL, KSWAPD_INODESTEAL, |
| 43 | KSWAPD_LOW_WMARK_HIT_QUICKLY, KSWAPD_HIGH_WMARK_HIT_QUICKLY, | ||
| 44 | KSWAPD_SKIP_CONGESTION_WAIT, | ||
| 43 | PAGEOUTRUN, ALLOCSTALL, PGROTATED, | 45 | PAGEOUTRUN, ALLOCSTALL, PGROTATED, |
| 44 | #ifdef CONFIG_HUGETLB_PAGE | 46 | #ifdef CONFIG_HUGETLB_PAGE |
| 45 | HTLB_BUDDY_PGALLOC, HTLB_BUDDY_PGALLOC_FAIL, | 47 | HTLB_BUDDY_PGALLOC, HTLB_BUDDY_PGALLOC_FAIL, |
| @@ -76,24 +78,22 @@ DECLARE_PER_CPU(struct vm_event_state, vm_event_states); | |||
| 76 | 78 | ||
| 77 | static inline void __count_vm_event(enum vm_event_item item) | 79 | static inline void __count_vm_event(enum vm_event_item item) |
| 78 | { | 80 | { |
| 79 | __get_cpu_var(vm_event_states).event[item]++; | 81 | __this_cpu_inc(per_cpu_var(vm_event_states).event[item]); |
| 80 | } | 82 | } |
| 81 | 83 | ||
| 82 | static inline void count_vm_event(enum vm_event_item item) | 84 | static inline void count_vm_event(enum vm_event_item item) |
| 83 | { | 85 | { |
| 84 | get_cpu_var(vm_event_states).event[item]++; | 86 | this_cpu_inc(per_cpu_var(vm_event_states).event[item]); |
| 85 | put_cpu(); | ||
| 86 | } | 87 | } |
| 87 | 88 | ||
| 88 | static inline void __count_vm_events(enum vm_event_item item, long delta) | 89 | static inline void __count_vm_events(enum vm_event_item item, long delta) |
| 89 | { | 90 | { |
| 90 | __get_cpu_var(vm_event_states).event[item] += delta; | 91 | __this_cpu_add(per_cpu_var(vm_event_states).event[item], delta); |
| 91 | } | 92 | } |
| 92 | 93 | ||
| 93 | static inline void count_vm_events(enum vm_event_item item, long delta) | 94 | static inline void count_vm_events(enum vm_event_item item, long delta) |
| 94 | { | 95 | { |
| 95 | get_cpu_var(vm_event_states).event[item] += delta; | 96 | this_cpu_add(per_cpu_var(vm_event_states).event[item], delta); |
| 96 | put_cpu(); | ||
| 97 | } | 97 | } |
| 98 | 98 | ||
| 99 | extern void all_vm_events(unsigned long *); | 99 | extern void all_vm_events(unsigned long *); |
diff --git a/include/linux/vt.h b/include/linux/vt.h index 7ffa11f06232..3fb9944e50a6 100644 --- a/include/linux/vt.h +++ b/include/linux/vt.h | |||
| @@ -84,4 +84,19 @@ struct vt_setactivate { | |||
| 84 | 84 | ||
| 85 | #define VT_SETACTIVATE 0x560F /* Activate and set the mode of a console */ | 85 | #define VT_SETACTIVATE 0x560F /* Activate and set the mode of a console */ |
| 86 | 86 | ||
| 87 | #ifdef CONFIG_VT_CONSOLE | ||
| 88 | |||
| 89 | extern int vt_kmsg_redirect(int new); | ||
| 90 | |||
| 91 | #else | ||
| 92 | |||
| 93 | static inline int vt_kmsg_redirect(int new) | ||
| 94 | { | ||
| 95 | return 0; | ||
| 96 | } | ||
| 97 | |||
| 98 | #endif | ||
| 99 | |||
| 100 | #define vt_get_kmsg_redirect() vt_kmsg_redirect(-1) | ||
| 101 | |||
| 87 | #endif /* _LINUX_VT_H */ | 102 | #endif /* _LINUX_VT_H */ |
diff --git a/include/net/compat.h b/include/net/compat.h index 3c7d4e38fa1d..28d5428ec6a2 100644 --- a/include/net/compat.h +++ b/include/net/compat.h | |||
| @@ -46,7 +46,7 @@ extern asmlinkage long compat_sys_sendmsg(int,struct compat_msghdr __user *,unsi | |||
| 46 | extern asmlinkage long compat_sys_recvmsg(int,struct compat_msghdr __user *,unsigned); | 46 | extern asmlinkage long compat_sys_recvmsg(int,struct compat_msghdr __user *,unsigned); |
| 47 | extern asmlinkage long compat_sys_recvmmsg(int, struct compat_mmsghdr __user *, | 47 | extern asmlinkage long compat_sys_recvmmsg(int, struct compat_mmsghdr __user *, |
| 48 | unsigned, unsigned, | 48 | unsigned, unsigned, |
| 49 | struct timespec __user *); | 49 | struct compat_timespec __user *); |
| 50 | extern asmlinkage long compat_sys_getsockopt(int, int, int, char __user *, int __user *); | 50 | extern asmlinkage long compat_sys_getsockopt(int, int, int, char __user *, int __user *); |
| 51 | extern int put_cmsg_compat(struct msghdr*, int, int, int, void *); | 51 | extern int put_cmsg_compat(struct msghdr*, int, int, int, void *); |
| 52 | 52 | ||
diff --git a/include/net/inet6_hashtables.h b/include/net/inet6_hashtables.h index 92838d3a1ab7..e46674d5daea 100644 --- a/include/net/inet6_hashtables.h +++ b/include/net/inet6_hashtables.h | |||
| @@ -53,7 +53,7 @@ static inline int inet6_sk_ehashfn(const struct sock *sk) | |||
| 53 | return inet6_ehashfn(net, laddr, lport, faddr, fport); | 53 | return inet6_ehashfn(net, laddr, lport, faddr, fport); |
| 54 | } | 54 | } |
| 55 | 55 | ||
| 56 | extern void __inet6_hash(struct sock *sk); | 56 | extern int __inet6_hash(struct sock *sk, struct inet_timewait_sock *twp); |
| 57 | 57 | ||
| 58 | /* | 58 | /* |
| 59 | * Sockets in TCP_CLOSE state are _always_ taken out of the hash, so | 59 | * Sockets in TCP_CLOSE state are _always_ taken out of the hash, so |
diff --git a/include/net/inet_hashtables.h b/include/net/inet_hashtables.h index 41cbddd25b70..74358d1b3f43 100644 --- a/include/net/inet_hashtables.h +++ b/include/net/inet_hashtables.h | |||
| @@ -251,7 +251,7 @@ extern void inet_put_port(struct sock *sk); | |||
| 251 | 251 | ||
| 252 | void inet_hashinfo_init(struct inet_hashinfo *h); | 252 | void inet_hashinfo_init(struct inet_hashinfo *h); |
| 253 | 253 | ||
| 254 | extern void __inet_hash_nolisten(struct sock *sk); | 254 | extern int __inet_hash_nolisten(struct sock *sk, struct inet_timewait_sock *tw); |
| 255 | extern void inet_hash(struct sock *sk); | 255 | extern void inet_hash(struct sock *sk); |
| 256 | extern void inet_unhash(struct sock *sk); | 256 | extern void inet_unhash(struct sock *sk); |
| 257 | 257 | ||
| @@ -391,10 +391,12 @@ static inline struct sock *__inet_lookup_skb(struct inet_hashinfo *hashinfo, | |||
| 391 | } | 391 | } |
| 392 | 392 | ||
| 393 | extern int __inet_hash_connect(struct inet_timewait_death_row *death_row, | 393 | extern int __inet_hash_connect(struct inet_timewait_death_row *death_row, |
| 394 | struct sock *sk, u32 port_offset, | 394 | struct sock *sk, |
| 395 | u32 port_offset, | ||
| 395 | int (*check_established)(struct inet_timewait_death_row *, | 396 | int (*check_established)(struct inet_timewait_death_row *, |
| 396 | struct sock *, __u16, struct inet_timewait_sock **), | 397 | struct sock *, __u16, struct inet_timewait_sock **), |
| 397 | void (*hash)(struct sock *sk)); | 398 | int (*hash)(struct sock *sk, struct inet_timewait_sock *twp)); |
| 399 | |||
| 398 | extern int inet_hash_connect(struct inet_timewait_death_row *death_row, | 400 | extern int inet_hash_connect(struct inet_timewait_death_row *death_row, |
| 399 | struct sock *sk); | 401 | struct sock *sk); |
| 400 | #endif /* _INET_HASHTABLES_H */ | 402 | #endif /* _INET_HASHTABLES_H */ |
diff --git a/include/net/inet_timewait_sock.h b/include/net/inet_timewait_sock.h index b801ade2295e..79f67eae8a7e 100644 --- a/include/net/inet_timewait_sock.h +++ b/include/net/inet_timewait_sock.h | |||
| @@ -201,6 +201,9 @@ extern void inet_twsk_put(struct inet_timewait_sock *tw); | |||
| 201 | 201 | ||
| 202 | extern int inet_twsk_unhash(struct inet_timewait_sock *tw); | 202 | extern int inet_twsk_unhash(struct inet_timewait_sock *tw); |
| 203 | 203 | ||
| 204 | extern int inet_twsk_bind_unhash(struct inet_timewait_sock *tw, | ||
| 205 | struct inet_hashinfo *hashinfo); | ||
| 206 | |||
| 204 | extern struct inet_timewait_sock *inet_twsk_alloc(const struct sock *sk, | 207 | extern struct inet_timewait_sock *inet_twsk_alloc(const struct sock *sk, |
| 205 | const int state); | 208 | const int state); |
| 206 | 209 | ||
diff --git a/include/net/neighbour.h b/include/net/neighbour.h index 0302f31a2fb7..b0173202cad9 100644 --- a/include/net/neighbour.h +++ b/include/net/neighbour.h | |||
| @@ -88,12 +88,7 @@ struct neigh_statistics { | |||
| 88 | unsigned long unres_discards; /* number of unresolved drops */ | 88 | unsigned long unres_discards; /* number of unresolved drops */ |
| 89 | }; | 89 | }; |
| 90 | 90 | ||
| 91 | #define NEIGH_CACHE_STAT_INC(tbl, field) \ | 91 | #define NEIGH_CACHE_STAT_INC(tbl, field) this_cpu_inc((tbl)->stats->field) |
| 92 | do { \ | ||
| 93 | preempt_disable(); \ | ||
| 94 | (per_cpu_ptr((tbl)->stats, smp_processor_id())->field)++; \ | ||
| 95 | preempt_enable(); \ | ||
| 96 | } while (0) | ||
| 97 | 92 | ||
| 98 | struct neighbour { | 93 | struct neighbour { |
| 99 | struct neighbour *next; | 94 | struct neighbour *next; |
diff --git a/include/net/netfilter/nf_conntrack.h b/include/net/netfilter/nf_conntrack.h index 5cf7270e3ffc..a0904adfb8f7 100644 --- a/include/net/netfilter/nf_conntrack.h +++ b/include/net/netfilter/nf_conntrack.h | |||
| @@ -293,11 +293,11 @@ extern unsigned int nf_conntrack_htable_size; | |||
| 293 | extern unsigned int nf_conntrack_max; | 293 | extern unsigned int nf_conntrack_max; |
| 294 | 294 | ||
| 295 | #define NF_CT_STAT_INC(net, count) \ | 295 | #define NF_CT_STAT_INC(net, count) \ |
| 296 | (per_cpu_ptr((net)->ct.stat, raw_smp_processor_id())->count++) | 296 | __this_cpu_inc((net)->ct.stat->count) |
| 297 | #define NF_CT_STAT_INC_ATOMIC(net, count) \ | 297 | #define NF_CT_STAT_INC_ATOMIC(net, count) \ |
| 298 | do { \ | 298 | do { \ |
| 299 | local_bh_disable(); \ | 299 | local_bh_disable(); \ |
| 300 | per_cpu_ptr((net)->ct.stat, raw_smp_processor_id())->count++; \ | 300 | __this_cpu_inc((net)->ct.stat->count); \ |
| 301 | local_bh_enable(); \ | 301 | local_bh_enable(); \ |
| 302 | } while (0) | 302 | } while (0) |
| 303 | 303 | ||
diff --git a/include/net/snmp.h b/include/net/snmp.h index 8c842e06bec8..f0d756f2ac99 100644 --- a/include/net/snmp.h +++ b/include/net/snmp.h | |||
| @@ -136,45 +136,31 @@ struct linux_xfrm_mib { | |||
| 136 | #define SNMP_STAT_BHPTR(name) (name[0]) | 136 | #define SNMP_STAT_BHPTR(name) (name[0]) |
| 137 | #define SNMP_STAT_USRPTR(name) (name[1]) | 137 | #define SNMP_STAT_USRPTR(name) (name[1]) |
| 138 | 138 | ||
| 139 | #define SNMP_INC_STATS_BH(mib, field) \ | 139 | #define SNMP_INC_STATS_BH(mib, field) \ |
| 140 | (per_cpu_ptr(mib[0], raw_smp_processor_id())->mibs[field]++) | 140 | __this_cpu_inc(mib[0]->mibs[field]) |
| 141 | #define SNMP_INC_STATS_USER(mib, field) \ | 141 | #define SNMP_INC_STATS_USER(mib, field) \ |
| 142 | do { \ | 142 | this_cpu_inc(mib[1]->mibs[field]) |
| 143 | per_cpu_ptr(mib[1], get_cpu())->mibs[field]++; \ | 143 | #define SNMP_INC_STATS(mib, field) \ |
| 144 | put_cpu(); \ | 144 | this_cpu_inc(mib[!in_softirq()]->mibs[field]) |
| 145 | } while (0) | 145 | #define SNMP_DEC_STATS(mib, field) \ |
| 146 | #define SNMP_INC_STATS(mib, field) \ | 146 | this_cpu_dec(mib[!in_softirq()]->mibs[field]) |
| 147 | do { \ | 147 | #define SNMP_ADD_STATS_BH(mib, field, addend) \ |
| 148 | per_cpu_ptr(mib[!in_softirq()], get_cpu())->mibs[field]++; \ | 148 | __this_cpu_add(mib[0]->mibs[field], addend) |
| 149 | put_cpu(); \ | 149 | #define SNMP_ADD_STATS_USER(mib, field, addend) \ |
| 150 | } while (0) | 150 | this_cpu_add(mib[1]->mibs[field], addend) |
| 151 | #define SNMP_DEC_STATS(mib, field) \ | ||
| 152 | do { \ | ||
| 153 | per_cpu_ptr(mib[!in_softirq()], get_cpu())->mibs[field]--; \ | ||
| 154 | put_cpu(); \ | ||
| 155 | } while (0) | ||
| 156 | #define SNMP_ADD_STATS(mib, field, addend) \ | ||
| 157 | do { \ | ||
| 158 | per_cpu_ptr(mib[!in_softirq()], get_cpu())->mibs[field] += addend; \ | ||
| 159 | put_cpu(); \ | ||
| 160 | } while (0) | ||
| 161 | #define SNMP_ADD_STATS_BH(mib, field, addend) \ | ||
| 162 | (per_cpu_ptr(mib[0], raw_smp_processor_id())->mibs[field] += addend) | ||
| 163 | #define SNMP_ADD_STATS_USER(mib, field, addend) \ | ||
| 164 | do { \ | ||
| 165 | per_cpu_ptr(mib[1], get_cpu())->mibs[field] += addend; \ | ||
| 166 | put_cpu(); \ | ||
| 167 | } while (0) | ||
| 168 | #define SNMP_UPD_PO_STATS(mib, basefield, addend) \ | 151 | #define SNMP_UPD_PO_STATS(mib, basefield, addend) \ |
| 169 | do { \ | 152 | do { \ |
| 170 | __typeof__(mib[0]) ptr = per_cpu_ptr(mib[!in_softirq()], get_cpu());\ | 153 | __typeof__(mib[0]) ptr; \ |
| 154 | preempt_disable(); \ | ||
| 155 | ptr = this_cpu_ptr((mib)[!in_softirq()]); \ | ||
| 171 | ptr->mibs[basefield##PKTS]++; \ | 156 | ptr->mibs[basefield##PKTS]++; \ |
| 172 | ptr->mibs[basefield##OCTETS] += addend;\ | 157 | ptr->mibs[basefield##OCTETS] += addend;\ |
| 173 | put_cpu(); \ | 158 | preempt_enable(); \ |
| 174 | } while (0) | 159 | } while (0) |
| 175 | #define SNMP_UPD_PO_STATS_BH(mib, basefield, addend) \ | 160 | #define SNMP_UPD_PO_STATS_BH(mib, basefield, addend) \ |
| 176 | do { \ | 161 | do { \ |
| 177 | __typeof__(mib[0]) ptr = per_cpu_ptr(mib[!in_softirq()], raw_smp_processor_id());\ | 162 | __typeof__(mib[0]) ptr = \ |
| 163 | __this_cpu_ptr((mib)[!in_softirq()]); \ | ||
| 178 | ptr->mibs[basefield##PKTS]++; \ | 164 | ptr->mibs[basefield##PKTS]++; \ |
| 179 | ptr->mibs[basefield##OCTETS] += addend;\ | 165 | ptr->mibs[basefield##OCTETS] += addend;\ |
| 180 | } while (0) | 166 | } while (0) |
diff --git a/include/net/tcp.h b/include/net/tcp.h index 5740b85bc5a0..1b6f7d348cee 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
| @@ -1261,29 +1261,6 @@ static inline struct sk_buff *tcp_write_queue_prev(struct sock *sk, struct sk_bu | |||
| 1261 | #define tcp_for_write_queue_from_safe(skb, tmp, sk) \ | 1261 | #define tcp_for_write_queue_from_safe(skb, tmp, sk) \ |
| 1262 | skb_queue_walk_from_safe(&(sk)->sk_write_queue, skb, tmp) | 1262 | skb_queue_walk_from_safe(&(sk)->sk_write_queue, skb, tmp) |
| 1263 | 1263 | ||
| 1264 | /* This function calculates a "timeout" which is equivalent to the timeout of a | ||
| 1265 | * TCP connection after "boundary" unsuccessful, exponentially backed-off | ||
| 1266 | * retransmissions with an initial RTO of TCP_RTO_MIN. | ||
| 1267 | */ | ||
| 1268 | static inline bool retransmits_timed_out(const struct sock *sk, | ||
| 1269 | unsigned int boundary) | ||
| 1270 | { | ||
| 1271 | unsigned int timeout, linear_backoff_thresh; | ||
| 1272 | |||
| 1273 | if (!inet_csk(sk)->icsk_retransmits) | ||
| 1274 | return false; | ||
| 1275 | |||
| 1276 | linear_backoff_thresh = ilog2(TCP_RTO_MAX/TCP_RTO_MIN); | ||
| 1277 | |||
| 1278 | if (boundary <= linear_backoff_thresh) | ||
| 1279 | timeout = ((2 << boundary) - 1) * TCP_RTO_MIN; | ||
| 1280 | else | ||
| 1281 | timeout = ((2 << linear_backoff_thresh) - 1) * TCP_RTO_MIN + | ||
| 1282 | (boundary - linear_backoff_thresh) * TCP_RTO_MAX; | ||
| 1283 | |||
| 1284 | return (tcp_time_stamp - tcp_sk(sk)->retrans_stamp) >= timeout; | ||
| 1285 | } | ||
| 1286 | |||
| 1287 | static inline struct sk_buff *tcp_send_head(struct sock *sk) | 1264 | static inline struct sk_buff *tcp_send_head(struct sock *sk) |
| 1288 | { | 1265 | { |
| 1289 | return sk->sk_send_head; | 1266 | return sk->sk_send_head; |
diff --git a/include/pcmcia/cs.h b/include/pcmcia/cs.h index afc2bfb9e917..75fa3530345b 100644 --- a/include/pcmcia/cs.h +++ b/include/pcmcia/cs.h | |||
| @@ -126,8 +126,8 @@ typedef struct irq_req_t { | |||
| 126 | #define IRQ_TYPE_TIME 0x01 | 126 | #define IRQ_TYPE_TIME 0x01 |
| 127 | #define IRQ_TYPE_DYNAMIC_SHARING 0x02 | 127 | #define IRQ_TYPE_DYNAMIC_SHARING 0x02 |
| 128 | #define IRQ_FORCED_PULSE 0x04 | 128 | #define IRQ_FORCED_PULSE 0x04 |
| 129 | #define IRQ_FIRST_SHARED 0x08 | 129 | #define IRQ_FIRST_SHARED 0x08 /* unused */ |
| 130 | //#define IRQ_HANDLE_PRESENT 0x10 | 130 | #define IRQ_HANDLE_PRESENT 0x10 /* unused */ |
| 131 | #define IRQ_PULSE_ALLOCATED 0x100 | 131 | #define IRQ_PULSE_ALLOCATED 0x100 |
| 132 | 132 | ||
| 133 | /* Bits in IRQInfo1 field */ | 133 | /* Bits in IRQInfo1 field */ |
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h index d403c12f7978..ee148573c114 100644 --- a/include/pcmcia/ds.h +++ b/include/pcmcia/ds.h | |||
| @@ -82,7 +82,7 @@ struct pcmcia_device { | |||
| 82 | /* the hardware "function" device; certain subdevices can | 82 | /* the hardware "function" device; certain subdevices can |
| 83 | * share one hardware "function" device. */ | 83 | * share one hardware "function" device. */ |
| 84 | u8 func; | 84 | u8 func; |
| 85 | struct config_t* function_config; | 85 | struct config_t *function_config; |
| 86 | 86 | ||
| 87 | struct list_head socket_device_list; | 87 | struct list_head socket_device_list; |
| 88 | 88 | ||
| @@ -121,14 +121,14 @@ struct pcmcia_device { | |||
| 121 | u16 manf_id; | 121 | u16 manf_id; |
| 122 | u16 card_id; | 122 | u16 card_id; |
| 123 | 123 | ||
| 124 | char * prod_id[4]; | 124 | char *prod_id[4]; |
| 125 | 125 | ||
| 126 | u64 dma_mask; | 126 | u64 dma_mask; |
| 127 | struct device dev; | 127 | struct device dev; |
| 128 | 128 | ||
| 129 | #ifdef CONFIG_PCMCIA_IOCTL | 129 | #ifdef CONFIG_PCMCIA_IOCTL |
| 130 | /* device driver wanted by cardmgr */ | 130 | /* device driver wanted by cardmgr */ |
| 131 | struct pcmcia_driver * cardmgr; | 131 | struct pcmcia_driver *cardmgr; |
| 132 | #endif | 132 | #endif |
| 133 | 133 | ||
| 134 | /* data private to drivers */ | 134 | /* data private to drivers */ |
diff --git a/include/pcmcia/mem_op.h b/include/pcmcia/mem_op.h index 8d19b9401a5b..0fa06e5d5376 100644 --- a/include/pcmcia/mem_op.h +++ b/include/pcmcia/mem_op.h | |||
| @@ -15,8 +15,8 @@ | |||
| 15 | #ifndef _LINUX_MEM_OP_H | 15 | #ifndef _LINUX_MEM_OP_H |
| 16 | #define _LINUX_MEM_OP_H | 16 | #define _LINUX_MEM_OP_H |
| 17 | 17 | ||
| 18 | #include <linux/io.h> | ||
| 18 | #include <asm/uaccess.h> | 19 | #include <asm/uaccess.h> |
| 19 | #include <asm/io.h> | ||
| 20 | 20 | ||
| 21 | /* | 21 | /* |
| 22 | If UNSAFE_MEMCPY is defined, we use the (optimized) system routines | 22 | If UNSAFE_MEMCPY is defined, we use the (optimized) system routines |
diff --git a/include/pcmcia/ss.h b/include/pcmcia/ss.h index 7c23be706f12..cbfba885eb85 100644 --- a/include/pcmcia/ss.h +++ b/include/pcmcia/ss.h | |||
| @@ -154,7 +154,7 @@ struct pcmcia_socket { | |||
| 154 | struct list_head socket_list; | 154 | struct list_head socket_list; |
| 155 | struct completion socket_released; | 155 | struct completion socket_released; |
| 156 | 156 | ||
| 157 | /* deprecated */ | 157 | /* deprecated */ |
| 158 | unsigned int sock; /* socket number */ | 158 | unsigned int sock; /* socket number */ |
| 159 | 159 | ||
| 160 | 160 | ||
| @@ -164,7 +164,7 @@ struct pcmcia_socket { | |||
| 164 | u_int map_size; | 164 | u_int map_size; |
| 165 | u_int io_offset; | 165 | u_int io_offset; |
| 166 | u_int pci_irq; | 166 | u_int pci_irq; |
| 167 | struct pci_dev * cb_dev; | 167 | struct pci_dev *cb_dev; |
| 168 | 168 | ||
| 169 | 169 | ||
| 170 | /* socket setup is done so resources should be able to be allocated. | 170 | /* socket setup is done so resources should be able to be allocated. |
| @@ -179,9 +179,9 @@ struct pcmcia_socket { | |||
| 179 | u8 reserved:5; | 179 | u8 reserved:5; |
| 180 | 180 | ||
| 181 | /* socket operations */ | 181 | /* socket operations */ |
| 182 | struct pccard_operations * ops; | 182 | struct pccard_operations *ops; |
| 183 | struct pccard_resource_ops * resource_ops; | 183 | struct pccard_resource_ops *resource_ops; |
| 184 | void * resource_data; | 184 | void *resource_data; |
| 185 | 185 | ||
| 186 | /* Zoom video behaviour is so chip specific its not worth adding | 186 | /* Zoom video behaviour is so chip specific its not worth adding |
| 187 | this to _ops */ | 187 | this to _ops */ |
| @@ -245,7 +245,7 @@ struct pcmcia_socket { | |||
| 245 | 245 | ||
| 246 | /* cardbus (32-bit) */ | 246 | /* cardbus (32-bit) */ |
| 247 | #ifdef CONFIG_CARDBUS | 247 | #ifdef CONFIG_CARDBUS |
| 248 | struct resource * cb_cis_res; | 248 | struct resource *cb_cis_res; |
| 249 | void __iomem *cb_cis_virt; | 249 | void __iomem *cb_cis_virt; |
| 250 | #endif /* CONFIG_CARDBUS */ | 250 | #endif /* CONFIG_CARDBUS */ |
| 251 | 251 | ||
diff --git a/include/trace/events/timer.h b/include/trace/events/timer.h index e5ce87a0498d..9496b965d62a 100644 --- a/include/trace/events/timer.h +++ b/include/trace/events/timer.h | |||
| @@ -301,8 +301,8 @@ TRACE_EVENT(itimer_state, | |||
| 301 | __entry->interval_usec = value->it_interval.tv_usec; | 301 | __entry->interval_usec = value->it_interval.tv_usec; |
| 302 | ), | 302 | ), |
| 303 | 303 | ||
| 304 | TP_printk("which=%d expires=%lu it_value=%lu.%lu it_interval=%lu.%lu", | 304 | TP_printk("which=%d expires=%llu it_value=%ld.%ld it_interval=%ld.%ld", |
| 305 | __entry->which, __entry->expires, | 305 | __entry->which, (unsigned long long)__entry->expires, |
| 306 | __entry->value_sec, __entry->value_usec, | 306 | __entry->value_sec, __entry->value_usec, |
| 307 | __entry->interval_sec, __entry->interval_usec) | 307 | __entry->interval_sec, __entry->interval_usec) |
| 308 | ); | 308 | ); |
| @@ -331,8 +331,8 @@ TRACE_EVENT(itimer_expire, | |||
| 331 | __entry->pid = pid_nr(pid); | 331 | __entry->pid = pid_nr(pid); |
| 332 | ), | 332 | ), |
| 333 | 333 | ||
| 334 | TP_printk("which=%d pid=%d now=%lu", __entry->which, | 334 | TP_printk("which=%d pid=%d now=%llu", __entry->which, |
| 335 | (int) __entry->pid, __entry->now) | 335 | (int) __entry->pid, (unsigned long long)__entry->now) |
| 336 | ); | 336 | ); |
| 337 | 337 | ||
| 338 | #endif /* _TRACE_TIMER_H */ | 338 | #endif /* _TRACE_TIMER_H */ |
diff --git a/include/xen/xen.h b/include/xen/xen.h new file mode 100644 index 000000000000..a16402418d31 --- /dev/null +++ b/include/xen/xen.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | #ifndef _XEN_XEN_H | ||
| 2 | #define _XEN_XEN_H | ||
| 3 | |||
| 4 | enum xen_domain_type { | ||
| 5 | XEN_NATIVE, /* running on bare hardware */ | ||
| 6 | XEN_PV_DOMAIN, /* running in a PV domain */ | ||
| 7 | XEN_HVM_DOMAIN, /* running in a Xen hvm domain */ | ||
| 8 | }; | ||
| 9 | |||
| 10 | #ifdef CONFIG_XEN | ||
| 11 | extern enum xen_domain_type xen_domain_type; | ||
| 12 | #else | ||
| 13 | #define xen_domain_type XEN_NATIVE | ||
| 14 | #endif | ||
| 15 | |||
| 16 | #define xen_domain() (xen_domain_type != XEN_NATIVE) | ||
| 17 | #define xen_pv_domain() (xen_domain() && \ | ||
| 18 | xen_domain_type == XEN_PV_DOMAIN) | ||
| 19 | #define xen_hvm_domain() (xen_domain() && \ | ||
| 20 | xen_domain_type == XEN_HVM_DOMAIN) | ||
| 21 | |||
| 22 | #ifdef CONFIG_XEN_DOM0 | ||
| 23 | #include <xen/interface/xen.h> | ||
| 24 | #include <asm/xen/hypervisor.h> | ||
| 25 | |||
| 26 | #define xen_initial_domain() (xen_pv_domain() && \ | ||
| 27 | xen_start_info->flags & SIF_INITDOMAIN) | ||
| 28 | #else /* !CONFIG_XEN_DOM0 */ | ||
| 29 | #define xen_initial_domain() (0) | ||
| 30 | #endif /* CONFIG_XEN_DOM0 */ | ||
| 31 | |||
| 32 | #endif /* _XEN_XEN_H */ | ||
