diff options
Diffstat (limited to 'include/linux')
68 files changed, 1631 insertions, 335 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 3da73f5f0ae9..224a38c960d4 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
| @@ -248,11 +248,12 @@ int acpi_check_region(resource_size_t start, resource_size_t n, | |||
| 248 | int acpi_check_mem_region(resource_size_t start, resource_size_t n, | 248 | int acpi_check_mem_region(resource_size_t start, resource_size_t n, |
| 249 | const char *name); | 249 | const char *name); |
| 250 | 250 | ||
| 251 | int acpi_resources_are_enforced(void); | ||
| 252 | |||
| 251 | #ifdef CONFIG_PM_SLEEP | 253 | #ifdef CONFIG_PM_SLEEP |
| 252 | void __init acpi_no_s4_hw_signature(void); | 254 | void __init acpi_no_s4_hw_signature(void); |
| 253 | void __init acpi_old_suspend_ordering(void); | 255 | void __init acpi_old_suspend_ordering(void); |
| 254 | void __init acpi_s4_no_nvs(void); | 256 | void __init acpi_s4_no_nvs(void); |
| 255 | void __init acpi_set_sci_en_on_resume(void); | ||
| 256 | #endif /* CONFIG_PM_SLEEP */ | 257 | #endif /* CONFIG_PM_SLEEP */ |
| 257 | 258 | ||
| 258 | struct acpi_osc_context { | 259 | struct acpi_osc_context { |
diff --git a/include/linux/aio.h b/include/linux/aio.h index 811dbb369379..7a8db4155281 100644 --- a/include/linux/aio.h +++ b/include/linux/aio.h | |||
| @@ -212,6 +212,8 @@ extern void kick_iocb(struct kiocb *iocb); | |||
| 212 | extern int aio_complete(struct kiocb *iocb, long res, long res2); | 212 | extern int aio_complete(struct kiocb *iocb, long res, long res2); |
| 213 | struct mm_struct; | 213 | struct mm_struct; |
| 214 | extern void exit_aio(struct mm_struct *mm); | 214 | extern void exit_aio(struct mm_struct *mm); |
| 215 | extern long do_io_submit(aio_context_t ctx_id, long nr, | ||
| 216 | struct iocb __user *__user *iocbpp, bool compat); | ||
| 215 | #else | 217 | #else |
| 216 | static inline ssize_t wait_on_sync_kiocb(struct kiocb *iocb) { return 0; } | 218 | static inline ssize_t wait_on_sync_kiocb(struct kiocb *iocb) { return 0; } |
| 217 | static inline int aio_put_req(struct kiocb *iocb) { return 0; } | 219 | static inline int aio_put_req(struct kiocb *iocb) { return 0; } |
| @@ -219,6 +221,9 @@ static inline void kick_iocb(struct kiocb *iocb) { } | |||
| 219 | static inline int aio_complete(struct kiocb *iocb, long res, long res2) { return 0; } | 221 | static inline int aio_complete(struct kiocb *iocb, long res, long res2) { return 0; } |
| 220 | struct mm_struct; | 222 | struct mm_struct; |
| 221 | static inline void exit_aio(struct mm_struct *mm) { } | 223 | static inline void exit_aio(struct mm_struct *mm) { } |
| 224 | static inline long do_io_submit(aio_context_t ctx_id, long nr, | ||
| 225 | struct iocb __user * __user *iocbpp, | ||
| 226 | bool compat) { return 0; } | ||
| 222 | #endif /* CONFIG_AIO */ | 227 | #endif /* CONFIG_AIO */ |
| 223 | 228 | ||
| 224 | static inline struct kiocb *list_kiocb(struct list_head *h) | 229 | static inline struct kiocb *list_kiocb(struct list_head *h) |
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 16ed0284d780..1b9ba193b789 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h | |||
| @@ -203,6 +203,9 @@ int block_write_full_page_endio(struct page *page, get_block_t *get_block, | |||
| 203 | int block_read_full_page(struct page*, get_block_t*); | 203 | int block_read_full_page(struct page*, get_block_t*); |
| 204 | int block_is_partially_uptodate(struct page *page, read_descriptor_t *desc, | 204 | int block_is_partially_uptodate(struct page *page, read_descriptor_t *desc, |
| 205 | unsigned long from); | 205 | unsigned long from); |
| 206 | int block_write_begin_newtrunc(struct file *, struct address_space *, | ||
| 207 | loff_t, unsigned, unsigned, | ||
| 208 | struct page **, void **, get_block_t*); | ||
| 206 | int block_write_begin(struct file *, struct address_space *, | 209 | int block_write_begin(struct file *, struct address_space *, |
| 207 | loff_t, unsigned, unsigned, | 210 | loff_t, unsigned, unsigned, |
| 208 | struct page **, void **, get_block_t*); | 211 | struct page **, void **, get_block_t*); |
| @@ -214,6 +217,9 @@ int generic_write_end(struct file *, struct address_space *, | |||
| 214 | struct page *, void *); | 217 | struct page *, void *); |
| 215 | void page_zero_new_buffers(struct page *page, unsigned from, unsigned to); | 218 | void page_zero_new_buffers(struct page *page, unsigned from, unsigned to); |
| 216 | int block_prepare_write(struct page*, unsigned, unsigned, get_block_t*); | 219 | int block_prepare_write(struct page*, unsigned, unsigned, get_block_t*); |
| 220 | int cont_write_begin_newtrunc(struct file *, struct address_space *, loff_t, | ||
| 221 | unsigned, unsigned, struct page **, void **, | ||
| 222 | get_block_t *, loff_t *); | ||
| 217 | int cont_write_begin(struct file *, struct address_space *, loff_t, | 223 | int cont_write_begin(struct file *, struct address_space *, loff_t, |
| 218 | unsigned, unsigned, struct page **, void **, | 224 | unsigned, unsigned, struct page **, void **, |
| 219 | get_block_t *, loff_t *); | 225 | get_block_t *, loff_t *); |
| @@ -224,7 +230,10 @@ int block_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf, | |||
| 224 | void block_sync_page(struct page *); | 230 | void block_sync_page(struct page *); |
| 225 | sector_t generic_block_bmap(struct address_space *, sector_t, get_block_t *); | 231 | sector_t generic_block_bmap(struct address_space *, sector_t, get_block_t *); |
| 226 | int block_truncate_page(struct address_space *, loff_t, get_block_t *); | 232 | int block_truncate_page(struct address_space *, loff_t, get_block_t *); |
| 227 | int file_fsync(struct file *, struct dentry *, int); | 233 | int file_fsync(struct file *, int); |
| 234 | int nobh_write_begin_newtrunc(struct file *, struct address_space *, | ||
| 235 | loff_t, unsigned, unsigned, | ||
| 236 | struct page **, void **, get_block_t*); | ||
| 228 | int nobh_write_begin(struct file *, struct address_space *, | 237 | int nobh_write_begin(struct file *, struct address_space *, |
| 229 | loff_t, unsigned, unsigned, | 238 | loff_t, unsigned, unsigned, |
| 230 | struct page **, void **, get_block_t*); | 239 | struct page **, void **, get_block_t*); |
diff --git a/include/linux/byteorder/big_endian.h b/include/linux/byteorder/big_endian.h index d53a67dff018..3c80fd7e8b56 100644 --- a/include/linux/byteorder/big_endian.h +++ b/include/linux/byteorder/big_endian.h | |||
| @@ -7,9 +7,6 @@ | |||
| 7 | #ifndef __BIG_ENDIAN_BITFIELD | 7 | #ifndef __BIG_ENDIAN_BITFIELD |
| 8 | #define __BIG_ENDIAN_BITFIELD | 8 | #define __BIG_ENDIAN_BITFIELD |
| 9 | #endif | 9 | #endif |
| 10 | #ifndef __BYTE_ORDER | ||
| 11 | #define __BYTE_ORDER __BIG_ENDIAN | ||
| 12 | #endif | ||
| 13 | 10 | ||
| 14 | #include <linux/types.h> | 11 | #include <linux/types.h> |
| 15 | #include <linux/swab.h> | 12 | #include <linux/swab.h> |
diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h index f7f8ad13adb6..83195fb82962 100644 --- a/include/linux/byteorder/little_endian.h +++ b/include/linux/byteorder/little_endian.h | |||
| @@ -7,9 +7,6 @@ | |||
| 7 | #ifndef __LITTLE_ENDIAN_BITFIELD | 7 | #ifndef __LITTLE_ENDIAN_BITFIELD |
| 8 | #define __LITTLE_ENDIAN_BITFIELD | 8 | #define __LITTLE_ENDIAN_BITFIELD |
| 9 | #endif | 9 | #endif |
| 10 | #ifndef __BYTE_ORDER | ||
| 11 | #define __BYTE_ORDER __LITTLE_ENDIAN | ||
| 12 | #endif | ||
| 13 | 10 | ||
| 14 | #include <linux/types.h> | 11 | #include <linux/types.h> |
| 15 | #include <linux/swab.h> | 12 | #include <linux/swab.h> |
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index 8f78073d7caa..0c621604baa1 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h | |||
| @@ -397,7 +397,7 @@ struct cftype { | |||
| 397 | * This callback must be implemented, if you want provide | 397 | * This callback must be implemented, if you want provide |
| 398 | * notification functionality. | 398 | * notification functionality. |
| 399 | */ | 399 | */ |
| 400 | int (*unregister_event)(struct cgroup *cgrp, struct cftype *cft, | 400 | void (*unregister_event)(struct cgroup *cgrp, struct cftype *cft, |
| 401 | struct eventfd_ctx *eventfd); | 401 | struct eventfd_ctx *eventfd); |
| 402 | }; | 402 | }; |
| 403 | 403 | ||
diff --git a/include/linux/compat.h b/include/linux/compat.h index 717c691ecd8e..168f7daa7bde 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h | |||
| @@ -356,5 +356,9 @@ asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user * filename, | |||
| 356 | asmlinkage long compat_sys_openat(unsigned int dfd, const char __user *filename, | 356 | asmlinkage long compat_sys_openat(unsigned int dfd, const char __user *filename, |
| 357 | int flags, int mode); | 357 | int flags, int mode); |
| 358 | 358 | ||
| 359 | extern ssize_t compat_rw_copy_check_uvector(int type, | ||
| 360 | const struct compat_iovec __user *uvector, unsigned long nr_segs, | ||
| 361 | unsigned long fast_segs, struct iovec *fast_pointer, | ||
| 362 | struct iovec **ret_pointer); | ||
| 359 | #endif /* CONFIG_COMPAT */ | 363 | #endif /* CONFIG_COMPAT */ |
| 360 | #endif /* _LINUX_COMPAT_H */ | 364 | #endif /* _LINUX_COMPAT_H */ |
diff --git a/include/linux/completion.h b/include/linux/completion.h index 4a6b604ef7e4..51e3145196f6 100644 --- a/include/linux/completion.h +++ b/include/linux/completion.h | |||
| @@ -83,6 +83,8 @@ extern unsigned long wait_for_completion_timeout(struct completion *x, | |||
| 83 | unsigned long timeout); | 83 | unsigned long timeout); |
| 84 | extern unsigned long wait_for_completion_interruptible_timeout( | 84 | extern unsigned long wait_for_completion_interruptible_timeout( |
| 85 | struct completion *x, unsigned long timeout); | 85 | struct completion *x, unsigned long timeout); |
| 86 | extern unsigned long wait_for_completion_killable_timeout( | ||
| 87 | struct completion *x, unsigned long timeout); | ||
| 86 | extern bool try_wait_for_completion(struct completion *x); | 88 | extern bool try_wait_for_completion(struct completion *x); |
| 87 | extern bool completion_done(struct completion *x); | 89 | extern bool completion_done(struct completion *x); |
| 88 | 90 | ||
diff --git a/include/linux/cper.h b/include/linux/cper.h new file mode 100644 index 000000000000..4b38f905b705 --- /dev/null +++ b/include/linux/cper.h | |||
| @@ -0,0 +1,314 @@ | |||
| 1 | /* | ||
| 2 | * UEFI Common Platform Error Record | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010, Intel Corp. | ||
| 5 | * Author: Huang Ying <ying.huang@intel.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU General Public License version | ||
| 9 | * 2 as published by the Free Software Foundation. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU General Public License | ||
| 17 | * along with this program; if not, write to the Free Software | ||
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef LINUX_CPER_H | ||
| 22 | #define LINUX_CPER_H | ||
| 23 | |||
| 24 | #include <linux/uuid.h> | ||
| 25 | |||
| 26 | /* CPER record signature and the size */ | ||
| 27 | #define CPER_SIG_RECORD "CPER" | ||
| 28 | #define CPER_SIG_SIZE 4 | ||
| 29 | /* Used in signature_end field in struct cper_record_header */ | ||
| 30 | #define CPER_SIG_END 0xffffffff | ||
| 31 | |||
| 32 | /* | ||
| 33 | * CPER record header revision, used in revision field in struct | ||
| 34 | * cper_record_header | ||
| 35 | */ | ||
| 36 | #define CPER_RECORD_REV 0x0100 | ||
| 37 | |||
| 38 | /* | ||
| 39 | * Severity difinition for error_severity in struct cper_record_header | ||
| 40 | * and section_severity in struct cper_section_descriptor | ||
| 41 | */ | ||
| 42 | #define CPER_SER_RECOVERABLE 0x0 | ||
| 43 | #define CPER_SER_FATAL 0x1 | ||
| 44 | #define CPER_SER_CORRECTED 0x2 | ||
| 45 | #define CPER_SER_INFORMATIONAL 0x3 | ||
| 46 | |||
| 47 | /* | ||
| 48 | * Validation bits difinition for validation_bits in struct | ||
| 49 | * cper_record_header. If set, corresponding fields in struct | ||
| 50 | * cper_record_header contain valid information. | ||
| 51 | * | ||
| 52 | * corresponds platform_id | ||
| 53 | */ | ||
| 54 | #define CPER_VALID_PLATFORM_ID 0x0001 | ||
| 55 | /* corresponds timestamp */ | ||
| 56 | #define CPER_VALID_TIMESTAMP 0x0002 | ||
| 57 | /* corresponds partition_id */ | ||
| 58 | #define CPER_VALID_PARTITION_ID 0x0004 | ||
| 59 | |||
| 60 | /* | ||
| 61 | * Notification type used to generate error record, used in | ||
| 62 | * notification_type in struct cper_record_header | ||
| 63 | * | ||
| 64 | * Corrected Machine Check | ||
| 65 | */ | ||
| 66 | #define CPER_NOTIFY_CMC \ | ||
| 67 | UUID_LE(0x2DCE8BB1, 0xBDD7, 0x450e, 0xB9, 0xAD, 0x9C, 0xF4, \ | ||
| 68 | 0xEB, 0xD4, 0xF8, 0x90) | ||
| 69 | /* Corrected Platform Error */ | ||
| 70 | #define CPER_NOTIFY_CPE \ | ||
| 71 | UUID_LE(0x4E292F96, 0xD843, 0x4a55, 0xA8, 0xC2, 0xD4, 0x81, \ | ||
| 72 | 0xF2, 0x7E, 0xBE, 0xEE) | ||
| 73 | /* Machine Check Exception */ | ||
| 74 | #define CPER_NOTIFY_MCE \ | ||
| 75 | UUID_LE(0xE8F56FFE, 0x919C, 0x4cc5, 0xBA, 0x88, 0x65, 0xAB, \ | ||
| 76 | 0xE1, 0x49, 0x13, 0xBB) | ||
| 77 | /* PCI Express Error */ | ||
| 78 | #define CPER_NOTIFY_PCIE \ | ||
| 79 | UUID_LE(0xCF93C01F, 0x1A16, 0x4dfc, 0xB8, 0xBC, 0x9C, 0x4D, \ | ||
| 80 | 0xAF, 0x67, 0xC1, 0x04) | ||
| 81 | /* INIT Record (for IPF) */ | ||
| 82 | #define CPER_NOTIFY_INIT \ | ||
| 83 | UUID_LE(0xCC5263E8, 0x9308, 0x454a, 0x89, 0xD0, 0x34, 0x0B, \ | ||
| 84 | 0xD3, 0x9B, 0xC9, 0x8E) | ||
| 85 | /* Non-Maskable Interrupt */ | ||
| 86 | #define CPER_NOTIFY_NMI \ | ||
| 87 | UUID_LE(0x5BAD89FF, 0xB7E6, 0x42c9, 0x81, 0x4A, 0xCF, 0x24, \ | ||
| 88 | 0x85, 0xD6, 0xE9, 0x8A) | ||
| 89 | /* BOOT Error Record */ | ||
| 90 | #define CPER_NOTIFY_BOOT \ | ||
| 91 | UUID_LE(0x3D61A466, 0xAB40, 0x409a, 0xA6, 0x98, 0xF3, 0x62, \ | ||
| 92 | 0xD4, 0x64, 0xB3, 0x8F) | ||
| 93 | /* DMA Remapping Error */ | ||
| 94 | #define CPER_NOTIFY_DMAR \ | ||
| 95 | UUID_LE(0x667DD791, 0xC6B3, 0x4c27, 0x8A, 0x6B, 0x0F, 0x8E, \ | ||
| 96 | 0x72, 0x2D, 0xEB, 0x41) | ||
| 97 | |||
| 98 | /* | ||
| 99 | * Flags bits definitions for flags in struct cper_record_header | ||
| 100 | * If set, the error has been recovered | ||
| 101 | */ | ||
| 102 | #define CPER_HW_ERROR_FLAGS_RECOVERED 0x1 | ||
| 103 | /* If set, the error is for previous boot */ | ||
| 104 | #define CPER_HW_ERROR_FLAGS_PREVERR 0x2 | ||
| 105 | /* If set, the error is injected for testing */ | ||
| 106 | #define CPER_HW_ERROR_FLAGS_SIMULATED 0x4 | ||
| 107 | |||
| 108 | /* | ||
| 109 | * CPER section header revision, used in revision field in struct | ||
| 110 | * cper_section_descriptor | ||
| 111 | */ | ||
| 112 | #define CPER_SEC_REV 0x0100 | ||
| 113 | |||
| 114 | /* | ||
| 115 | * Validation bits difinition for validation_bits in struct | ||
| 116 | * cper_section_descriptor. If set, corresponding fields in struct | ||
| 117 | * cper_section_descriptor contain valid information. | ||
| 118 | * | ||
| 119 | * corresponds fru_id | ||
| 120 | */ | ||
| 121 | #define CPER_SEC_VALID_FRU_ID 0x1 | ||
| 122 | /* corresponds fru_text */ | ||
| 123 | #define CPER_SEC_VALID_FRU_TEXT 0x2 | ||
| 124 | |||
| 125 | /* | ||
| 126 | * Flags bits definitions for flags in struct cper_section_descriptor | ||
| 127 | * | ||
| 128 | * If set, the section is associated with the error condition | ||
| 129 | * directly, and should be focused on | ||
| 130 | */ | ||
| 131 | #define CPER_SEC_PRIMARY 0x0001 | ||
| 132 | /* | ||
| 133 | * If set, the error was not contained within the processor or memory | ||
| 134 | * hierarchy and the error may have propagated to persistent storage | ||
| 135 | * or network | ||
| 136 | */ | ||
| 137 | #define CPER_SEC_CONTAINMENT_WARNING 0x0002 | ||
| 138 | /* If set, the component must be re-initialized or re-enabled prior to use */ | ||
| 139 | #define CPER_SEC_RESET 0x0004 | ||
| 140 | /* If set, Linux may choose to discontinue use of the resource */ | ||
| 141 | #define CPER_SEC_ERROR_THRESHOLD_EXCEEDED 0x0008 | ||
| 142 | /* | ||
| 143 | * If set, resource could not be queried for error information due to | ||
| 144 | * conflicts with other system software or resources. Some fields of | ||
| 145 | * the section will be invalid | ||
| 146 | */ | ||
| 147 | #define CPER_SEC_RESOURCE_NOT_ACCESSIBLE 0x0010 | ||
| 148 | /* | ||
| 149 | * If set, action has been taken to ensure error containment (such as | ||
| 150 | * poisoning data), but the error has not been fully corrected and the | ||
| 151 | * data has not been consumed. Linux may choose to take further | ||
| 152 | * corrective action before the data is consumed | ||
| 153 | */ | ||
| 154 | #define CPER_SEC_LATENT_ERROR 0x0020 | ||
| 155 | |||
| 156 | /* | ||
| 157 | * Section type definitions, used in section_type field in struct | ||
| 158 | * cper_section_descriptor | ||
| 159 | * | ||
| 160 | * Processor Generic | ||
| 161 | */ | ||
| 162 | #define CPER_SEC_PROC_GENERIC \ | ||
| 163 | UUID_LE(0x9876CCAD, 0x47B4, 0x4bdb, 0xB6, 0x5E, 0x16, 0xF1, \ | ||
| 164 | 0x93, 0xC4, 0xF3, 0xDB) | ||
| 165 | /* Processor Specific: X86/X86_64 */ | ||
| 166 | #define CPER_SEC_PROC_IA \ | ||
| 167 | UUID_LE(0xDC3EA0B0, 0xA144, 0x4797, 0xB9, 0x5B, 0x53, 0xFA, \ | ||
| 168 | 0x24, 0x2B, 0x6E, 0x1D) | ||
| 169 | /* Processor Specific: IA64 */ | ||
| 170 | #define CPER_SEC_PROC_IPF \ | ||
| 171 | UUID_LE(0xE429FAF1, 0x3CB7, 0x11D4, 0x0B, 0xCA, 0x07, 0x00, \ | ||
| 172 | 0x80, 0xC7, 0x3C, 0x88, 0x81) | ||
| 173 | /* Platform Memory */ | ||
| 174 | #define CPER_SEC_PLATFORM_MEM \ | ||
| 175 | UUID_LE(0xA5BC1114, 0x6F64, 0x4EDE, 0xB8, 0x63, 0x3E, 0x83, \ | ||
| 176 | 0xED, 0x7C, 0x83, 0xB1) | ||
| 177 | #define CPER_SEC_PCIE \ | ||
| 178 | UUID_LE(0xD995E954, 0xBBC1, 0x430F, 0xAD, 0x91, 0xB4, 0x4D, \ | ||
| 179 | 0xCB, 0x3C, 0x6F, 0x35) | ||
| 180 | /* Firmware Error Record Reference */ | ||
| 181 | #define CPER_SEC_FW_ERR_REC_REF \ | ||
| 182 | UUID_LE(0x81212A96, 0x09ED, 0x4996, 0x94, 0x71, 0x8D, 0x72, \ | ||
| 183 | 0x9C, 0x8E, 0x69, 0xED) | ||
| 184 | /* PCI/PCI-X Bus */ | ||
| 185 | #define CPER_SEC_PCI_X_BUS \ | ||
| 186 | UUID_LE(0xC5753963, 0x3B84, 0x4095, 0xBF, 0x78, 0xED, 0xDA, \ | ||
| 187 | 0xD3, 0xF9, 0xC9, 0xDD) | ||
| 188 | /* PCI Component/Device */ | ||
| 189 | #define CPER_SEC_PCI_DEV \ | ||
| 190 | UUID_LE(0xEB5E4685, 0xCA66, 0x4769, 0xB6, 0xA2, 0x26, 0x06, \ | ||
| 191 | 0x8B, 0x00, 0x13, 0x26) | ||
| 192 | #define CPER_SEC_DMAR_GENERIC \ | ||
| 193 | UUID_LE(0x5B51FEF7, 0xC79D, 0x4434, 0x8F, 0x1B, 0xAA, 0x62, \ | ||
| 194 | 0xDE, 0x3E, 0x2C, 0x64) | ||
| 195 | /* Intel VT for Directed I/O specific DMAr */ | ||
| 196 | #define CPER_SEC_DMAR_VT \ | ||
| 197 | UUID_LE(0x71761D37, 0x32B2, 0x45cd, 0xA7, 0xD0, 0xB0, 0xFE, \ | ||
| 198 | 0xDD, 0x93, 0xE8, 0xCF) | ||
| 199 | /* IOMMU specific DMAr */ | ||
| 200 | #define CPER_SEC_DMAR_IOMMU \ | ||
| 201 | UUID_LE(0x036F84E1, 0x7F37, 0x428c, 0xA7, 0x9E, 0x57, 0x5F, \ | ||
| 202 | 0xDF, 0xAA, 0x84, 0xEC) | ||
| 203 | |||
| 204 | /* | ||
| 205 | * All tables and structs must be byte-packed to match CPER | ||
| 206 | * specification, since the tables are provided by the system BIOS | ||
| 207 | */ | ||
| 208 | #pragma pack(1) | ||
| 209 | |||
| 210 | struct cper_record_header { | ||
| 211 | char signature[CPER_SIG_SIZE]; /* must be CPER_SIG_RECORD */ | ||
| 212 | __u16 revision; /* must be CPER_RECORD_REV */ | ||
| 213 | __u32 signature_end; /* must be CPER_SIG_END */ | ||
| 214 | __u16 section_count; | ||
| 215 | __u32 error_severity; | ||
| 216 | __u32 validation_bits; | ||
| 217 | __u32 record_length; | ||
| 218 | __u64 timestamp; | ||
| 219 | uuid_le platform_id; | ||
| 220 | uuid_le partition_id; | ||
| 221 | uuid_le creator_id; | ||
| 222 | uuid_le notification_type; | ||
| 223 | __u64 record_id; | ||
| 224 | __u32 flags; | ||
| 225 | __u64 persistence_information; | ||
| 226 | __u8 reserved[12]; /* must be zero */ | ||
| 227 | }; | ||
| 228 | |||
| 229 | struct cper_section_descriptor { | ||
| 230 | __u32 section_offset; /* Offset in bytes of the | ||
| 231 | * section body from the base | ||
| 232 | * of the record header */ | ||
| 233 | __u32 section_length; | ||
| 234 | __u16 revision; /* must be CPER_RECORD_REV */ | ||
| 235 | __u8 validation_bits; | ||
| 236 | __u8 reserved; /* must be zero */ | ||
| 237 | __u32 flags; | ||
| 238 | uuid_le section_type; | ||
| 239 | uuid_le fru_id; | ||
| 240 | __u32 section_severity; | ||
| 241 | __u8 fru_text[20]; | ||
| 242 | }; | ||
| 243 | |||
| 244 | /* Generic Processor Error Section */ | ||
| 245 | struct cper_sec_proc_generic { | ||
| 246 | __u64 validation_bits; | ||
| 247 | __u8 proc_type; | ||
| 248 | __u8 proc_isa; | ||
| 249 | __u8 proc_error_type; | ||
| 250 | __u8 operation; | ||
| 251 | __u8 flags; | ||
| 252 | __u8 level; | ||
| 253 | __u16 reserved; | ||
| 254 | __u64 cpu_version; | ||
| 255 | char cpu_brand[128]; | ||
| 256 | __u64 proc_id; | ||
| 257 | __u64 target_addr; | ||
| 258 | __u64 requestor_id; | ||
| 259 | __u64 responder_id; | ||
| 260 | __u64 ip; | ||
| 261 | }; | ||
| 262 | |||
| 263 | /* IA32/X64 Processor Error Section */ | ||
| 264 | struct cper_sec_proc_ia { | ||
| 265 | __u64 validation_bits; | ||
| 266 | __u8 lapic_id; | ||
| 267 | __u8 cpuid[48]; | ||
| 268 | }; | ||
| 269 | |||
| 270 | /* IA32/X64 Processor Error Infomation Structure */ | ||
| 271 | struct cper_ia_err_info { | ||
| 272 | uuid_le err_type; | ||
| 273 | __u64 validation_bits; | ||
| 274 | __u64 check_info; | ||
| 275 | __u64 target_id; | ||
| 276 | __u64 requestor_id; | ||
| 277 | __u64 responder_id; | ||
| 278 | __u64 ip; | ||
| 279 | }; | ||
| 280 | |||
| 281 | /* IA32/X64 Processor Context Information Structure */ | ||
| 282 | struct cper_ia_proc_ctx { | ||
| 283 | __u16 reg_ctx_type; | ||
| 284 | __u16 reg_arr_size; | ||
| 285 | __u32 msr_addr; | ||
| 286 | __u64 mm_reg_addr; | ||
| 287 | }; | ||
| 288 | |||
| 289 | /* Memory Error Section */ | ||
| 290 | struct cper_sec_mem_err { | ||
| 291 | __u64 validation_bits; | ||
| 292 | __u64 error_status; | ||
| 293 | __u64 physical_addr; | ||
| 294 | __u64 physical_addr_mask; | ||
| 295 | __u16 node; | ||
| 296 | __u16 card; | ||
| 297 | __u16 module; | ||
| 298 | __u16 bank; | ||
| 299 | __u16 device; | ||
| 300 | __u16 row; | ||
| 301 | __u16 column; | ||
| 302 | __u16 bit_pos; | ||
| 303 | __u64 requestor_id; | ||
| 304 | __u64 responder_id; | ||
| 305 | __u64 target_id; | ||
| 306 | __u8 error_type; | ||
| 307 | }; | ||
| 308 | |||
| 309 | /* Reset to default packing */ | ||
| 310 | #pragma pack() | ||
| 311 | |||
| 312 | u64 cper_next_record_id(void); | ||
| 313 | |||
| 314 | #endif | ||
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index dcf77fa826b5..55215cce5005 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
| @@ -125,6 +125,7 @@ struct cpuidle_driver { | |||
| 125 | #ifdef CONFIG_CPU_IDLE | 125 | #ifdef CONFIG_CPU_IDLE |
| 126 | 126 | ||
| 127 | extern int cpuidle_register_driver(struct cpuidle_driver *drv); | 127 | extern int cpuidle_register_driver(struct cpuidle_driver *drv); |
| 128 | struct cpuidle_driver *cpuidle_get_driver(void); | ||
| 128 | extern void cpuidle_unregister_driver(struct cpuidle_driver *drv); | 129 | extern void cpuidle_unregister_driver(struct cpuidle_driver *drv); |
| 129 | extern int cpuidle_register_device(struct cpuidle_device *dev); | 130 | extern int cpuidle_register_device(struct cpuidle_device *dev); |
| 130 | extern void cpuidle_unregister_device(struct cpuidle_device *dev); | 131 | extern void cpuidle_unregister_device(struct cpuidle_device *dev); |
| @@ -137,16 +138,17 @@ extern void cpuidle_disable_device(struct cpuidle_device *dev); | |||
| 137 | #else | 138 | #else |
| 138 | 139 | ||
| 139 | static inline int cpuidle_register_driver(struct cpuidle_driver *drv) | 140 | static inline int cpuidle_register_driver(struct cpuidle_driver *drv) |
| 140 | {return 0;} | 141 | {return -ENODEV; } |
| 142 | static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; } | ||
| 141 | static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { } | 143 | static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { } |
| 142 | static inline int cpuidle_register_device(struct cpuidle_device *dev) | 144 | static inline int cpuidle_register_device(struct cpuidle_device *dev) |
| 143 | {return 0;} | 145 | {return -ENODEV; } |
| 144 | static inline void cpuidle_unregister_device(struct cpuidle_device *dev) { } | 146 | static inline void cpuidle_unregister_device(struct cpuidle_device *dev) { } |
| 145 | 147 | ||
| 146 | static inline void cpuidle_pause_and_lock(void) { } | 148 | static inline void cpuidle_pause_and_lock(void) { } |
| 147 | static inline void cpuidle_resume_and_unlock(void) { } | 149 | static inline void cpuidle_resume_and_unlock(void) { } |
| 148 | static inline int cpuidle_enable_device(struct cpuidle_device *dev) | 150 | static inline int cpuidle_enable_device(struct cpuidle_device *dev) |
| 149 | {return 0;} | 151 | {return -ENODEV; } |
| 150 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } | 152 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } |
| 151 | 153 | ||
| 152 | #endif | 154 | #endif |
diff --git a/include/linux/cpuset.h b/include/linux/cpuset.h index 20b51cab6593..457ed765a116 100644 --- a/include/linux/cpuset.h +++ b/include/linux/cpuset.h | |||
| @@ -69,6 +69,7 @@ extern void cpuset_task_status_allowed(struct seq_file *m, | |||
| 69 | struct task_struct *task); | 69 | struct task_struct *task); |
| 70 | 70 | ||
| 71 | extern int cpuset_mem_spread_node(void); | 71 | extern int cpuset_mem_spread_node(void); |
| 72 | extern int cpuset_slab_spread_node(void); | ||
| 72 | 73 | ||
| 73 | static inline int cpuset_do_page_mem_spread(void) | 74 | static inline int cpuset_do_page_mem_spread(void) |
| 74 | { | 75 | { |
| @@ -194,6 +195,11 @@ static inline int cpuset_mem_spread_node(void) | |||
| 194 | return 0; | 195 | return 0; |
| 195 | } | 196 | } |
| 196 | 197 | ||
| 198 | static inline int cpuset_slab_spread_node(void) | ||
| 199 | { | ||
| 200 | return 0; | ||
| 201 | } | ||
| 202 | |||
| 197 | static inline int cpuset_do_page_mem_spread(void) | 203 | static inline int cpuset_do_page_mem_spread(void) |
| 198 | { | 204 | { |
| 199 | return 0; | 205 | return 0; |
diff --git a/include/linux/cred.h b/include/linux/cred.h index 52507c3e1387..75c0fa881308 100644 --- a/include/linux/cred.h +++ b/include/linux/cred.h | |||
| @@ -156,7 +156,6 @@ extern int copy_creds(struct task_struct *, unsigned long); | |||
| 156 | extern struct cred *cred_alloc_blank(void); | 156 | extern struct cred *cred_alloc_blank(void); |
| 157 | extern struct cred *prepare_creds(void); | 157 | extern struct cred *prepare_creds(void); |
| 158 | extern struct cred *prepare_exec_creds(void); | 158 | extern struct cred *prepare_exec_creds(void); |
| 159 | extern struct cred *prepare_usermodehelper_creds(void); | ||
| 160 | extern int commit_creds(struct cred *); | 159 | extern int commit_creds(struct cred *); |
| 161 | extern void abort_creds(struct cred *); | 160 | extern void abort_creds(struct cred *); |
| 162 | extern const struct cred *override_creds(const struct cred *); | 161 | extern const struct cred *override_creds(const struct cred *); |
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h index fc1b930f246c..e7d9b20ddc5b 100644 --- a/include/linux/debugfs.h +++ b/include/linux/debugfs.h | |||
| @@ -63,6 +63,8 @@ struct dentry *debugfs_create_x16(const char *name, mode_t mode, | |||
| 63 | struct dentry *parent, u16 *value); | 63 | struct dentry *parent, u16 *value); |
| 64 | struct dentry *debugfs_create_x32(const char *name, mode_t mode, | 64 | struct dentry *debugfs_create_x32(const char *name, mode_t mode, |
| 65 | struct dentry *parent, u32 *value); | 65 | struct dentry *parent, u32 *value); |
| 66 | struct dentry *debugfs_create_x64(const char *name, mode_t mode, | ||
| 67 | struct dentry *parent, u64 *value); | ||
| 66 | struct dentry *debugfs_create_size_t(const char *name, mode_t mode, | 68 | struct dentry *debugfs_create_size_t(const char *name, mode_t mode, |
| 67 | struct dentry *parent, size_t *value); | 69 | struct dentry *parent, size_t *value); |
| 68 | struct dentry *debugfs_create_bool(const char *name, mode_t mode, | 70 | struct dentry *debugfs_create_bool(const char *name, mode_t mode, |
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h index ca32ed78b057..89b7e1a605b8 100644 --- a/include/linux/dma-mapping.h +++ b/include/linux/dma-mapping.h | |||
| @@ -40,16 +40,6 @@ struct dma_map_ops { | |||
| 40 | void (*sync_single_for_device)(struct device *dev, | 40 | void (*sync_single_for_device)(struct device *dev, |
| 41 | dma_addr_t dma_handle, size_t size, | 41 | dma_addr_t dma_handle, size_t size, |
| 42 | enum dma_data_direction dir); | 42 | enum dma_data_direction dir); |
| 43 | void (*sync_single_range_for_cpu)(struct device *dev, | ||
| 44 | dma_addr_t dma_handle, | ||
| 45 | unsigned long offset, | ||
| 46 | size_t size, | ||
| 47 | enum dma_data_direction dir); | ||
| 48 | void (*sync_single_range_for_device)(struct device *dev, | ||
| 49 | dma_addr_t dma_handle, | ||
| 50 | unsigned long offset, | ||
| 51 | size_t size, | ||
| 52 | enum dma_data_direction dir); | ||
| 53 | void (*sync_sg_for_cpu)(struct device *dev, | 43 | void (*sync_sg_for_cpu)(struct device *dev, |
| 54 | struct scatterlist *sg, int nents, | 44 | struct scatterlist *sg, int nents, |
| 55 | enum dma_data_direction dir); | 45 | enum dma_data_direction dir); |
| @@ -105,21 +95,6 @@ static inline int is_device_dma_capable(struct device *dev) | |||
| 105 | #include <asm-generic/dma-mapping-broken.h> | 95 | #include <asm-generic/dma-mapping-broken.h> |
| 106 | #endif | 96 | #endif |
| 107 | 97 | ||
| 108 | /* for backwards compatibility, removed soon */ | ||
| 109 | static inline void __deprecated dma_sync_single(struct device *dev, | ||
| 110 | dma_addr_t addr, size_t size, | ||
| 111 | enum dma_data_direction dir) | ||
| 112 | { | ||
| 113 | dma_sync_single_for_cpu(dev, addr, size, dir); | ||
| 114 | } | ||
| 115 | |||
| 116 | static inline void __deprecated dma_sync_sg(struct device *dev, | ||
| 117 | struct scatterlist *sg, int nelems, | ||
| 118 | enum dma_data_direction dir) | ||
| 119 | { | ||
| 120 | dma_sync_sg_for_cpu(dev, sg, nelems, dir); | ||
| 121 | } | ||
| 122 | |||
| 123 | static inline u64 dma_get_mask(struct device *dev) | 98 | static inline u64 dma_get_mask(struct device *dev) |
| 124 | { | 99 | { |
| 125 | if (dev && dev->dma_mask && *dev->dma_mask) | 100 | if (dev && dev->dma_mask && *dev->dma_mask) |
diff --git a/include/linux/ext3_fs.h b/include/linux/ext3_fs.h index 5f494b465097..7fc62d4550b2 100644 --- a/include/linux/ext3_fs.h +++ b/include/linux/ext3_fs.h | |||
| @@ -868,7 +868,7 @@ extern int ext3_htree_store_dirent(struct file *dir_file, __u32 hash, | |||
| 868 | extern void ext3_htree_free_dir_info(struct dir_private_info *p); | 868 | extern void ext3_htree_free_dir_info(struct dir_private_info *p); |
| 869 | 869 | ||
| 870 | /* fsync.c */ | 870 | /* fsync.c */ |
| 871 | extern int ext3_sync_file (struct file *, struct dentry *, int); | 871 | extern int ext3_sync_file(struct file *, int); |
| 872 | 872 | ||
| 873 | /* hash.c */ | 873 | /* hash.c */ |
| 874 | extern int ext3fs_dirhash(const char *name, int len, struct | 874 | extern int ext3fs_dirhash(const char *name, int len, struct |
diff --git a/include/linux/fb.h b/include/linux/fb.h index f3793ebc241c..907ace3a64c8 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h | |||
| @@ -4,8 +4,6 @@ | |||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | #include <linux/i2c.h> | 5 | #include <linux/i2c.h> |
| 6 | 6 | ||
| 7 | struct dentry; | ||
| 8 | |||
| 9 | /* Definitions of frame buffers */ | 7 | /* Definitions of frame buffers */ |
| 10 | 8 | ||
| 11 | #define FB_MAX 32 /* sufficient for now */ | 9 | #define FB_MAX 32 /* sufficient for now */ |
| @@ -1017,8 +1015,7 @@ extern void fb_deferred_io_open(struct fb_info *info, | |||
| 1017 | struct inode *inode, | 1015 | struct inode *inode, |
| 1018 | struct file *file); | 1016 | struct file *file); |
| 1019 | extern void fb_deferred_io_cleanup(struct fb_info *info); | 1017 | extern void fb_deferred_io_cleanup(struct fb_info *info); |
| 1020 | extern int fb_deferred_io_fsync(struct file *file, struct dentry *dentry, | 1018 | extern int fb_deferred_io_fsync(struct file *file, int datasync); |
| 1021 | int datasync); | ||
| 1022 | 1019 | ||
| 1023 | static inline bool fb_be_math(struct fb_info *info) | 1020 | static inline bool fb_be_math(struct fb_info *info) |
| 1024 | { | 1021 | { |
diff --git a/include/linux/fec.h b/include/linux/fec.h new file mode 100644 index 000000000000..5d3523d8dd0c --- /dev/null +++ b/include/linux/fec.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | /* include/linux/fec.h | ||
| 2 | * | ||
| 3 | * Copyright (c) 2009 Orex Computed Radiography | ||
| 4 | * Baruch Siach <baruch@tkos.co.il> | ||
| 5 | * | ||
| 6 | * Header file for the FEC platform data | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | */ | ||
| 12 | #ifndef __LINUX_FEC_H__ | ||
| 13 | #define __LINUX_FEC_H__ | ||
| 14 | |||
| 15 | #include <linux/phy.h> | ||
| 16 | |||
| 17 | struct fec_platform_data { | ||
| 18 | phy_interface_t phy; | ||
| 19 | }; | ||
| 20 | |||
| 21 | #endif | ||
diff --git a/include/linux/file.h b/include/linux/file.h index 5555508fd517..b1e12970f617 100644 --- a/include/linux/file.h +++ b/include/linux/file.h | |||
| @@ -11,7 +11,6 @@ | |||
| 11 | 11 | ||
| 12 | struct file; | 12 | struct file; |
| 13 | 13 | ||
| 14 | extern void __fput(struct file *); | ||
| 15 | extern void fput(struct file *); | 14 | extern void fput(struct file *); |
| 16 | extern void drop_file_write_access(struct file *file); | 15 | extern void drop_file_write_access(struct file *file); |
| 17 | 16 | ||
diff --git a/include/linux/firewire.h b/include/linux/firewire.h index 4bd94bf5e739..72e2b8ac2a5a 100644 --- a/include/linux/firewire.h +++ b/include/linux/firewire.h | |||
| @@ -55,13 +55,11 @@ | |||
| 55 | #define CSR_DESCRIPTOR 0x01 | 55 | #define CSR_DESCRIPTOR 0x01 |
| 56 | #define CSR_VENDOR 0x03 | 56 | #define CSR_VENDOR 0x03 |
| 57 | #define CSR_HARDWARE_VERSION 0x04 | 57 | #define CSR_HARDWARE_VERSION 0x04 |
| 58 | #define CSR_NODE_CAPABILITIES 0x0c | ||
| 59 | #define CSR_UNIT 0x11 | 58 | #define CSR_UNIT 0x11 |
| 60 | #define CSR_SPECIFIER_ID 0x12 | 59 | #define CSR_SPECIFIER_ID 0x12 |
| 61 | #define CSR_VERSION 0x13 | 60 | #define CSR_VERSION 0x13 |
| 62 | #define CSR_DEPENDENT_INFO 0x14 | 61 | #define CSR_DEPENDENT_INFO 0x14 |
| 63 | #define CSR_MODEL 0x17 | 62 | #define CSR_MODEL 0x17 |
| 64 | #define CSR_INSTANCE 0x18 | ||
| 65 | #define CSR_DIRECTORY_ID 0x20 | 63 | #define CSR_DIRECTORY_ID 0x20 |
| 66 | 64 | ||
| 67 | struct fw_csr_iterator { | 65 | struct fw_csr_iterator { |
| @@ -89,7 +87,6 @@ struct fw_card { | |||
| 89 | int current_tlabel; | 87 | int current_tlabel; |
| 90 | u64 tlabel_mask; | 88 | u64 tlabel_mask; |
| 91 | struct list_head transaction_list; | 89 | struct list_head transaction_list; |
| 92 | struct timer_list flush_timer; | ||
| 93 | unsigned long reset_jiffies; | 90 | unsigned long reset_jiffies; |
| 94 | 91 | ||
| 95 | unsigned long long guid; | 92 | unsigned long long guid; |
| @@ -290,6 +287,8 @@ struct fw_transaction { | |||
| 290 | int tlabel; | 287 | int tlabel; |
| 291 | int timestamp; | 288 | int timestamp; |
| 292 | struct list_head link; | 289 | struct list_head link; |
| 290 | struct fw_card *card; | ||
| 291 | struct timer_list split_timeout_timer; | ||
| 293 | 292 | ||
| 294 | struct fw_packet packet; | 293 | struct fw_packet packet; |
| 295 | 294 | ||
diff --git a/include/linux/fs.h b/include/linux/fs.h index b336cb9ca9a0..3428393942a6 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -954,6 +954,7 @@ extern spinlock_t files_lock; | |||
| 954 | #define file_list_unlock() spin_unlock(&files_lock); | 954 | #define file_list_unlock() spin_unlock(&files_lock); |
| 955 | 955 | ||
| 956 | #define get_file(x) atomic_long_inc(&(x)->f_count) | 956 | #define get_file(x) atomic_long_inc(&(x)->f_count) |
| 957 | #define fput_atomic(x) atomic_long_add_unless(&(x)->f_count, -1, 1) | ||
| 957 | #define file_count(x) atomic_long_read(&(x)->f_count) | 958 | #define file_count(x) atomic_long_read(&(x)->f_count) |
| 958 | 959 | ||
| 959 | #ifdef CONFIG_DEBUG_WRITECOUNT | 960 | #ifdef CONFIG_DEBUG_WRITECOUNT |
| @@ -1497,7 +1498,7 @@ struct file_operations { | |||
| 1497 | int (*open) (struct inode *, struct file *); | 1498 | int (*open) (struct inode *, struct file *); |
| 1498 | int (*flush) (struct file *, fl_owner_t id); | 1499 | int (*flush) (struct file *, fl_owner_t id); |
| 1499 | int (*release) (struct inode *, struct file *); | 1500 | int (*release) (struct inode *, struct file *); |
| 1500 | int (*fsync) (struct file *, struct dentry *, int datasync); | 1501 | int (*fsync) (struct file *, int datasync); |
| 1501 | int (*aio_fsync) (struct kiocb *, int datasync); | 1502 | int (*aio_fsync) (struct kiocb *, int datasync); |
| 1502 | int (*fasync) (int, struct file *, int); | 1503 | int (*fasync) (int, struct file *, int); |
| 1503 | int (*lock) (struct file *, int, struct file_lock *); | 1504 | int (*lock) (struct file *, int, struct file_lock *); |
| @@ -2212,7 +2213,7 @@ extern int generic_segment_checks(const struct iovec *iov, | |||
| 2212 | /* fs/block_dev.c */ | 2213 | /* fs/block_dev.c */ |
| 2213 | extern ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov, | 2214 | extern ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov, |
| 2214 | unsigned long nr_segs, loff_t pos); | 2215 | unsigned long nr_segs, loff_t pos); |
| 2215 | extern int blkdev_fsync(struct file *filp, struct dentry *dentry, int datasync); | 2216 | extern int blkdev_fsync(struct file *filp, int datasync); |
| 2216 | 2217 | ||
| 2217 | /* fs/splice.c */ | 2218 | /* fs/splice.c */ |
| 2218 | extern ssize_t generic_file_splice_read(struct file *, loff_t *, | 2219 | extern ssize_t generic_file_splice_read(struct file *, loff_t *, |
| @@ -2228,6 +2229,7 @@ extern long do_splice_direct(struct file *in, loff_t *ppos, struct file *out, | |||
| 2228 | 2229 | ||
| 2229 | extern void | 2230 | extern void |
| 2230 | file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping); | 2231 | file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping); |
| 2232 | extern loff_t noop_llseek(struct file *file, loff_t offset, int origin); | ||
| 2231 | extern loff_t no_llseek(struct file *file, loff_t offset, int origin); | 2233 | extern loff_t no_llseek(struct file *file, loff_t offset, int origin); |
| 2232 | extern loff_t generic_file_llseek(struct file *file, loff_t offset, int origin); | 2234 | extern loff_t generic_file_llseek(struct file *file, loff_t offset, int origin); |
| 2233 | extern loff_t generic_file_llseek_unlocked(struct file *file, loff_t offset, | 2235 | extern loff_t generic_file_llseek_unlocked(struct file *file, loff_t offset, |
| @@ -2250,10 +2252,19 @@ static inline int xip_truncate_page(struct address_space *mapping, loff_t from) | |||
| 2250 | #endif | 2252 | #endif |
| 2251 | 2253 | ||
| 2252 | #ifdef CONFIG_BLOCK | 2254 | #ifdef CONFIG_BLOCK |
| 2255 | struct bio; | ||
| 2256 | typedef void (dio_submit_t)(int rw, struct bio *bio, struct inode *inode, | ||
| 2257 | loff_t file_offset); | ||
| 2258 | void dio_end_io(struct bio *bio, int error); | ||
| 2259 | |||
| 2260 | ssize_t __blockdev_direct_IO_newtrunc(int rw, struct kiocb *iocb, struct inode *inode, | ||
| 2261 | struct block_device *bdev, const struct iovec *iov, loff_t offset, | ||
| 2262 | unsigned long nr_segs, get_block_t get_block, dio_iodone_t end_io, | ||
| 2263 | dio_submit_t submit_io, int lock_type); | ||
| 2253 | ssize_t __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode, | 2264 | ssize_t __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode, |
| 2254 | struct block_device *bdev, const struct iovec *iov, loff_t offset, | 2265 | struct block_device *bdev, const struct iovec *iov, loff_t offset, |
| 2255 | unsigned long nr_segs, get_block_t get_block, dio_iodone_t end_io, | 2266 | unsigned long nr_segs, get_block_t get_block, dio_iodone_t end_io, |
| 2256 | int lock_type); | 2267 | dio_submit_t submit_io, int lock_type); |
| 2257 | 2268 | ||
| 2258 | enum { | 2269 | enum { |
| 2259 | /* need locking between buffered and direct access */ | 2270 | /* need locking between buffered and direct access */ |
| @@ -2263,13 +2274,31 @@ enum { | |||
| 2263 | DIO_SKIP_HOLES = 0x02, | 2274 | DIO_SKIP_HOLES = 0x02, |
| 2264 | }; | 2275 | }; |
| 2265 | 2276 | ||
| 2277 | static inline ssize_t blockdev_direct_IO_newtrunc(int rw, struct kiocb *iocb, | ||
| 2278 | struct inode *inode, struct block_device *bdev, const struct iovec *iov, | ||
| 2279 | loff_t offset, unsigned long nr_segs, get_block_t get_block, | ||
| 2280 | dio_iodone_t end_io) | ||
| 2281 | { | ||
| 2282 | return __blockdev_direct_IO_newtrunc(rw, iocb, inode, bdev, iov, offset, | ||
| 2283 | nr_segs, get_block, end_io, NULL, | ||
| 2284 | DIO_LOCKING | DIO_SKIP_HOLES); | ||
| 2285 | } | ||
| 2286 | |||
| 2287 | static inline ssize_t blockdev_direct_IO_no_locking_newtrunc(int rw, struct kiocb *iocb, | ||
| 2288 | struct inode *inode, struct block_device *bdev, const struct iovec *iov, | ||
| 2289 | loff_t offset, unsigned long nr_segs, get_block_t get_block, | ||
| 2290 | dio_iodone_t end_io) | ||
| 2291 | { | ||
| 2292 | return __blockdev_direct_IO_newtrunc(rw, iocb, inode, bdev, iov, offset, | ||
| 2293 | nr_segs, get_block, end_io, NULL, 0); | ||
| 2294 | } | ||
| 2266 | static inline ssize_t blockdev_direct_IO(int rw, struct kiocb *iocb, | 2295 | static inline ssize_t blockdev_direct_IO(int rw, struct kiocb *iocb, |
| 2267 | struct inode *inode, struct block_device *bdev, const struct iovec *iov, | 2296 | struct inode *inode, struct block_device *bdev, const struct iovec *iov, |
| 2268 | loff_t offset, unsigned long nr_segs, get_block_t get_block, | 2297 | loff_t offset, unsigned long nr_segs, get_block_t get_block, |
| 2269 | dio_iodone_t end_io) | 2298 | dio_iodone_t end_io) |
| 2270 | { | 2299 | { |
| 2271 | return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset, | 2300 | return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset, |
| 2272 | nr_segs, get_block, end_io, | 2301 | nr_segs, get_block, end_io, NULL, |
| 2273 | DIO_LOCKING | DIO_SKIP_HOLES); | 2302 | DIO_LOCKING | DIO_SKIP_HOLES); |
| 2274 | } | 2303 | } |
| 2275 | 2304 | ||
| @@ -2279,7 +2308,7 @@ static inline ssize_t blockdev_direct_IO_no_locking(int rw, struct kiocb *iocb, | |||
| 2279 | dio_iodone_t end_io) | 2308 | dio_iodone_t end_io) |
| 2280 | { | 2309 | { |
| 2281 | return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset, | 2310 | return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset, |
| 2282 | nr_segs, get_block, end_io, 0); | 2311 | nr_segs, get_block, end_io, NULL, 0); |
| 2283 | } | 2312 | } |
| 2284 | #endif | 2313 | #endif |
| 2285 | 2314 | ||
| @@ -2335,13 +2364,15 @@ extern int dcache_dir_open(struct inode *, struct file *); | |||
| 2335 | extern int dcache_dir_close(struct inode *, struct file *); | 2364 | extern int dcache_dir_close(struct inode *, struct file *); |
| 2336 | extern loff_t dcache_dir_lseek(struct file *, loff_t, int); | 2365 | extern loff_t dcache_dir_lseek(struct file *, loff_t, int); |
| 2337 | extern int dcache_readdir(struct file *, void *, filldir_t); | 2366 | extern int dcache_readdir(struct file *, void *, filldir_t); |
| 2367 | extern int simple_setattr(struct dentry *, struct iattr *); | ||
| 2338 | extern int simple_getattr(struct vfsmount *, struct dentry *, struct kstat *); | 2368 | extern int simple_getattr(struct vfsmount *, struct dentry *, struct kstat *); |
| 2339 | extern int simple_statfs(struct dentry *, struct kstatfs *); | 2369 | extern int simple_statfs(struct dentry *, struct kstatfs *); |
| 2340 | extern int simple_link(struct dentry *, struct inode *, struct dentry *); | 2370 | extern int simple_link(struct dentry *, struct inode *, struct dentry *); |
| 2341 | extern int simple_unlink(struct inode *, struct dentry *); | 2371 | extern int simple_unlink(struct inode *, struct dentry *); |
| 2342 | extern int simple_rmdir(struct inode *, struct dentry *); | 2372 | extern int simple_rmdir(struct inode *, struct dentry *); |
| 2343 | extern int simple_rename(struct inode *, struct dentry *, struct inode *, struct dentry *); | 2373 | extern int simple_rename(struct inode *, struct dentry *, struct inode *, struct dentry *); |
| 2344 | extern int simple_sync_file(struct file *, struct dentry *, int); | 2374 | extern int simple_setsize(struct inode *, loff_t); |
| 2375 | extern int noop_fsync(struct file *, int); | ||
| 2345 | extern int simple_empty(struct dentry *); | 2376 | extern int simple_empty(struct dentry *); |
| 2346 | extern int simple_readpage(struct file *file, struct page *page); | 2377 | extern int simple_readpage(struct file *file, struct page *page); |
| 2347 | extern int simple_write_begin(struct file *file, struct address_space *mapping, | 2378 | extern int simple_write_begin(struct file *file, struct address_space *mapping, |
| @@ -2366,7 +2397,7 @@ extern ssize_t simple_read_from_buffer(void __user *to, size_t count, | |||
| 2366 | extern ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos, | 2397 | extern ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos, |
| 2367 | const void __user *from, size_t count); | 2398 | const void __user *from, size_t count); |
| 2368 | 2399 | ||
| 2369 | extern int simple_fsync(struct file *, struct dentry *, int); | 2400 | extern int generic_file_fsync(struct file *, int); |
| 2370 | 2401 | ||
| 2371 | #ifdef CONFIG_MIGRATION | 2402 | #ifdef CONFIG_MIGRATION |
| 2372 | extern int buffer_migrate_page(struct address_space *, | 2403 | extern int buffer_migrate_page(struct address_space *, |
| @@ -2377,7 +2408,8 @@ extern int buffer_migrate_page(struct address_space *, | |||
| 2377 | 2408 | ||
| 2378 | extern int inode_change_ok(const struct inode *, struct iattr *); | 2409 | extern int inode_change_ok(const struct inode *, struct iattr *); |
| 2379 | extern int inode_newsize_ok(const struct inode *, loff_t offset); | 2410 | extern int inode_newsize_ok(const struct inode *, loff_t offset); |
| 2380 | extern int __must_check inode_setattr(struct inode *, struct iattr *); | 2411 | extern int __must_check inode_setattr(struct inode *, const struct iattr *); |
| 2412 | extern void generic_setattr(struct inode *inode, const struct iattr *attr); | ||
| 2381 | 2413 | ||
| 2382 | extern void file_update_time(struct file *file); | 2414 | extern void file_update_time(struct file *file); |
| 2383 | 2415 | ||
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index c082f223e2fe..3167f2df4126 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h | |||
| @@ -73,18 +73,25 @@ struct trace_iterator { | |||
| 73 | }; | 73 | }; |
| 74 | 74 | ||
| 75 | 75 | ||
| 76 | struct trace_event; | ||
| 77 | |||
| 76 | typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter, | 78 | typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter, |
| 77 | int flags); | 79 | int flags, struct trace_event *event); |
| 78 | struct trace_event { | 80 | |
| 79 | struct hlist_node node; | 81 | struct trace_event_functions { |
| 80 | struct list_head list; | ||
| 81 | int type; | ||
| 82 | trace_print_func trace; | 82 | trace_print_func trace; |
| 83 | trace_print_func raw; | 83 | trace_print_func raw; |
| 84 | trace_print_func hex; | 84 | trace_print_func hex; |
| 85 | trace_print_func binary; | 85 | trace_print_func binary; |
| 86 | }; | 86 | }; |
| 87 | 87 | ||
| 88 | struct trace_event { | ||
| 89 | struct hlist_node node; | ||
| 90 | struct list_head list; | ||
| 91 | int type; | ||
| 92 | struct trace_event_functions *funcs; | ||
| 93 | }; | ||
| 94 | |||
| 88 | extern int register_ftrace_event(struct trace_event *event); | 95 | extern int register_ftrace_event(struct trace_event *event); |
| 89 | extern int unregister_ftrace_event(struct trace_event *event); | 96 | extern int unregister_ftrace_event(struct trace_event *event); |
| 90 | 97 | ||
| @@ -116,28 +123,70 @@ void tracing_record_cmdline(struct task_struct *tsk); | |||
| 116 | 123 | ||
| 117 | struct event_filter; | 124 | struct event_filter; |
| 118 | 125 | ||
| 126 | enum trace_reg { | ||
| 127 | TRACE_REG_REGISTER, | ||
| 128 | TRACE_REG_UNREGISTER, | ||
| 129 | TRACE_REG_PERF_REGISTER, | ||
| 130 | TRACE_REG_PERF_UNREGISTER, | ||
| 131 | }; | ||
| 132 | |||
| 133 | struct ftrace_event_call; | ||
| 134 | |||
| 135 | struct ftrace_event_class { | ||
| 136 | char *system; | ||
| 137 | void *probe; | ||
| 138 | #ifdef CONFIG_PERF_EVENTS | ||
| 139 | void *perf_probe; | ||
| 140 | #endif | ||
| 141 | int (*reg)(struct ftrace_event_call *event, | ||
| 142 | enum trace_reg type); | ||
| 143 | int (*define_fields)(struct ftrace_event_call *); | ||
| 144 | struct list_head *(*get_fields)(struct ftrace_event_call *); | ||
| 145 | struct list_head fields; | ||
| 146 | int (*raw_init)(struct ftrace_event_call *); | ||
| 147 | }; | ||
| 148 | |||
| 149 | enum { | ||
| 150 | TRACE_EVENT_FL_ENABLED_BIT, | ||
| 151 | TRACE_EVENT_FL_FILTERED_BIT, | ||
| 152 | }; | ||
| 153 | |||
| 154 | enum { | ||
| 155 | TRACE_EVENT_FL_ENABLED = (1 << TRACE_EVENT_FL_ENABLED_BIT), | ||
| 156 | TRACE_EVENT_FL_FILTERED = (1 << TRACE_EVENT_FL_FILTERED_BIT), | ||
| 157 | }; | ||
| 158 | |||
| 119 | struct ftrace_event_call { | 159 | struct ftrace_event_call { |
| 120 | struct list_head list; | 160 | struct list_head list; |
| 161 | struct ftrace_event_class *class; | ||
| 121 | char *name; | 162 | char *name; |
| 122 | char *system; | ||
| 123 | struct dentry *dir; | 163 | struct dentry *dir; |
| 124 | struct trace_event *event; | 164 | struct trace_event event; |
| 125 | int enabled; | ||
| 126 | int (*regfunc)(struct ftrace_event_call *); | ||
| 127 | void (*unregfunc)(struct ftrace_event_call *); | ||
| 128 | int id; | ||
| 129 | const char *print_fmt; | 165 | const char *print_fmt; |
| 130 | int (*raw_init)(struct ftrace_event_call *); | ||
| 131 | int (*define_fields)(struct ftrace_event_call *); | ||
| 132 | struct list_head fields; | ||
| 133 | int filter_active; | ||
| 134 | struct event_filter *filter; | 166 | struct event_filter *filter; |
| 135 | void *mod; | 167 | void *mod; |
| 136 | void *data; | 168 | void *data; |
| 137 | 169 | ||
| 170 | /* | ||
| 171 | * 32 bit flags: | ||
| 172 | * bit 1: enabled | ||
| 173 | * bit 2: filter_active | ||
| 174 | * | ||
| 175 | * Changes to flags must hold the event_mutex. | ||
| 176 | * | ||
| 177 | * Note: Reads of flags do not hold the event_mutex since | ||
| 178 | * they occur in critical sections. But the way flags | ||
| 179 | * is currently used, these changes do no affect the code | ||
| 180 | * except that when a change is made, it may have a slight | ||
| 181 | * delay in propagating the changes to other CPUs due to | ||
| 182 | * caching and such. | ||
| 183 | */ | ||
| 184 | unsigned int flags; | ||
| 185 | |||
| 186 | #ifdef CONFIG_PERF_EVENTS | ||
| 138 | int perf_refcount; | 187 | int perf_refcount; |
| 139 | int (*perf_event_enable)(struct ftrace_event_call *); | 188 | struct hlist_head *perf_events; |
| 140 | void (*perf_event_disable)(struct ftrace_event_call *); | 189 | #endif |
| 141 | }; | 190 | }; |
| 142 | 191 | ||
| 143 | #define PERF_MAX_TRACE_SIZE 2048 | 192 | #define PERF_MAX_TRACE_SIZE 2048 |
| @@ -194,24 +243,22 @@ struct perf_event; | |||
| 194 | 243 | ||
| 195 | DECLARE_PER_CPU(struct pt_regs, perf_trace_regs); | 244 | DECLARE_PER_CPU(struct pt_regs, perf_trace_regs); |
| 196 | 245 | ||
| 197 | extern int perf_trace_enable(int event_id); | 246 | extern int perf_trace_init(struct perf_event *event); |
| 198 | extern void perf_trace_disable(int event_id); | 247 | extern void perf_trace_destroy(struct perf_event *event); |
| 199 | extern int ftrace_profile_set_filter(struct perf_event *event, int event_id, | 248 | extern int perf_trace_enable(struct perf_event *event); |
| 249 | extern void perf_trace_disable(struct perf_event *event); | ||
| 250 | extern int ftrace_profile_set_filter(struct perf_event *event, int event_id, | ||
| 200 | char *filter_str); | 251 | char *filter_str); |
| 201 | extern void ftrace_profile_free_filter(struct perf_event *event); | 252 | extern void ftrace_profile_free_filter(struct perf_event *event); |
| 202 | extern void * | 253 | extern void *perf_trace_buf_prepare(int size, unsigned short type, |
| 203 | perf_trace_buf_prepare(int size, unsigned short type, int *rctxp, | 254 | struct pt_regs *regs, int *rctxp); |
| 204 | unsigned long *irq_flags); | ||
| 205 | 255 | ||
| 206 | static inline void | 256 | static inline void |
| 207 | perf_trace_buf_submit(void *raw_data, int size, int rctx, u64 addr, | 257 | perf_trace_buf_submit(void *raw_data, int size, int rctx, u64 addr, |
| 208 | u64 count, unsigned long irq_flags, struct pt_regs *regs) | 258 | u64 count, struct pt_regs *regs, void *head) |
| 209 | { | 259 | { |
| 210 | struct trace_entry *entry = raw_data; | 260 | perf_tp_event(addr, count, raw_data, size, regs, head); |
| 211 | |||
| 212 | perf_tp_event(entry->type, addr, count, raw_data, size, regs); | ||
| 213 | perf_swevent_put_recursion_context(rctx); | 261 | perf_swevent_put_recursion_context(rctx); |
| 214 | local_irq_restore(irq_flags); | ||
| 215 | } | 262 | } |
| 216 | #endif | 263 | #endif |
| 217 | 264 | ||
diff --git a/include/linux/gpio.h b/include/linux/gpio.h index 4e949a5b5b85..03f616b78cfa 100644 --- a/include/linux/gpio.h +++ b/include/linux/gpio.h | |||
| @@ -51,6 +51,11 @@ static inline int gpio_direction_output(unsigned gpio, int value) | |||
| 51 | return -ENOSYS; | 51 | return -ENOSYS; |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | static inline int gpio_set_debounce(unsigned gpio, unsigned debounce) | ||
| 55 | { | ||
| 56 | return -ENOSYS; | ||
| 57 | } | ||
| 58 | |||
| 54 | static inline int gpio_get_value(unsigned gpio) | 59 | static inline int gpio_get_value(unsigned gpio) |
| 55 | { | 60 | { |
| 56 | /* GPIO can never have been requested or set as {in,out}put */ | 61 | /* GPIO can never have been requested or set as {in,out}put */ |
diff --git a/include/linux/i2c/adp8860.h b/include/linux/i2c/adp8860.h new file mode 100644 index 000000000000..0b4d39855c91 --- /dev/null +++ b/include/linux/i2c/adp8860.h | |||
| @@ -0,0 +1,154 @@ | |||
| 1 | /* | ||
| 2 | * Definitions and platform data for Analog Devices | ||
| 3 | * Backlight drivers ADP8860 | ||
| 4 | * | ||
| 5 | * Copyright 2009-2010 Analog Devices Inc. | ||
| 6 | * | ||
| 7 | * Licensed under the GPL-2 or later. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __LINUX_I2C_ADP8860_H | ||
| 11 | #define __LINUX_I2C_ADP8860_H | ||
| 12 | |||
| 13 | #include <linux/leds.h> | ||
| 14 | #include <linux/types.h> | ||
| 15 | |||
| 16 | #define ID_ADP8860 8860 | ||
| 17 | |||
| 18 | #define ADP8860_MAX_BRIGHTNESS 0x7F | ||
| 19 | #define FLAG_OFFT_SHIFT 8 | ||
| 20 | |||
| 21 | /* | ||
| 22 | * LEDs subdevice platform data | ||
| 23 | */ | ||
| 24 | |||
| 25 | #define ADP8860_LED_DIS_BLINK (0 << FLAG_OFFT_SHIFT) | ||
| 26 | #define ADP8860_LED_OFFT_600ms (1 << FLAG_OFFT_SHIFT) | ||
| 27 | #define ADP8860_LED_OFFT_1200ms (2 << FLAG_OFFT_SHIFT) | ||
| 28 | #define ADP8860_LED_OFFT_1800ms (3 << FLAG_OFFT_SHIFT) | ||
| 29 | |||
| 30 | #define ADP8860_LED_ONT_200ms 0 | ||
| 31 | #define ADP8860_LED_ONT_600ms 1 | ||
| 32 | #define ADP8860_LED_ONT_800ms 2 | ||
| 33 | #define ADP8860_LED_ONT_1200ms 3 | ||
| 34 | |||
| 35 | #define ADP8860_LED_D7 (7) | ||
| 36 | #define ADP8860_LED_D6 (6) | ||
| 37 | #define ADP8860_LED_D5 (5) | ||
| 38 | #define ADP8860_LED_D4 (4) | ||
| 39 | #define ADP8860_LED_D3 (3) | ||
| 40 | #define ADP8860_LED_D2 (2) | ||
| 41 | #define ADP8860_LED_D1 (1) | ||
| 42 | |||
| 43 | /* | ||
| 44 | * Backlight subdevice platform data | ||
| 45 | */ | ||
| 46 | |||
| 47 | #define ADP8860_BL_D7 (1 << 6) | ||
| 48 | #define ADP8860_BL_D6 (1 << 5) | ||
| 49 | #define ADP8860_BL_D5 (1 << 4) | ||
| 50 | #define ADP8860_BL_D4 (1 << 3) | ||
| 51 | #define ADP8860_BL_D3 (1 << 2) | ||
| 52 | #define ADP8860_BL_D2 (1 << 1) | ||
| 53 | #define ADP8860_BL_D1 (1 << 0) | ||
| 54 | |||
| 55 | #define ADP8860_FADE_T_DIS 0 /* Fade Timer Disabled */ | ||
| 56 | #define ADP8860_FADE_T_300ms 1 /* 0.3 Sec */ | ||
| 57 | #define ADP8860_FADE_T_600ms 2 | ||
| 58 | #define ADP8860_FADE_T_900ms 3 | ||
| 59 | #define ADP8860_FADE_T_1200ms 4 | ||
| 60 | #define ADP8860_FADE_T_1500ms 5 | ||
| 61 | #define ADP8860_FADE_T_1800ms 6 | ||
| 62 | #define ADP8860_FADE_T_2100ms 7 | ||
| 63 | #define ADP8860_FADE_T_2400ms 8 | ||
| 64 | #define ADP8860_FADE_T_2700ms 9 | ||
| 65 | #define ADP8860_FADE_T_3000ms 10 | ||
| 66 | #define ADP8860_FADE_T_3500ms 11 | ||
| 67 | #define ADP8860_FADE_T_4000ms 12 | ||
| 68 | #define ADP8860_FADE_T_4500ms 13 | ||
| 69 | #define ADP8860_FADE_T_5000ms 14 | ||
| 70 | #define ADP8860_FADE_T_5500ms 15 /* 5.5 Sec */ | ||
| 71 | |||
| 72 | #define ADP8860_FADE_LAW_LINEAR 0 | ||
| 73 | #define ADP8860_FADE_LAW_SQUARE 1 | ||
| 74 | #define ADP8860_FADE_LAW_CUBIC1 2 | ||
| 75 | #define ADP8860_FADE_LAW_CUBIC2 3 | ||
| 76 | |||
| 77 | #define ADP8860_BL_AMBL_FILT_80ms 0 /* Light sensor filter time */ | ||
| 78 | #define ADP8860_BL_AMBL_FILT_160ms 1 | ||
| 79 | #define ADP8860_BL_AMBL_FILT_320ms 2 | ||
| 80 | #define ADP8860_BL_AMBL_FILT_640ms 3 | ||
| 81 | #define ADP8860_BL_AMBL_FILT_1280ms 4 | ||
| 82 | #define ADP8860_BL_AMBL_FILT_2560ms 5 | ||
| 83 | #define ADP8860_BL_AMBL_FILT_5120ms 6 | ||
| 84 | #define ADP8860_BL_AMBL_FILT_10240ms 7 /* 10.24 sec */ | ||
| 85 | |||
| 86 | /* | ||
| 87 | * Blacklight current 0..30mA | ||
| 88 | */ | ||
| 89 | #define ADP8860_BL_CUR_mA(I) ((I * 127) / 30) | ||
| 90 | |||
| 91 | /* | ||
| 92 | * L2 comparator current 0..1106uA | ||
| 93 | */ | ||
| 94 | #define ADP8860_L2_COMP_CURR_uA(I) ((I * 255) / 1106) | ||
| 95 | |||
| 96 | /* | ||
| 97 | * L3 comparator current 0..138uA | ||
| 98 | */ | ||
| 99 | #define ADP8860_L3_COMP_CURR_uA(I) ((I * 255) / 138) | ||
| 100 | |||
| 101 | struct adp8860_backlight_platform_data { | ||
| 102 | u8 bl_led_assign; /* 1 = Backlight 0 = Individual LED */ | ||
| 103 | |||
| 104 | u8 bl_fade_in; /* Backlight Fade-In Timer */ | ||
| 105 | u8 bl_fade_out; /* Backlight Fade-Out Timer */ | ||
| 106 | u8 bl_fade_law; /* fade-on/fade-off transfer characteristic */ | ||
| 107 | |||
| 108 | u8 en_ambl_sens; /* 1 = enable ambient light sensor */ | ||
| 109 | u8 abml_filt; /* Light sensor filter time */ | ||
| 110 | |||
| 111 | u8 l1_daylight_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 112 | u8 l1_daylight_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 113 | u8 l2_office_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 114 | u8 l2_office_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 115 | u8 l3_dark_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 116 | u8 l3_dark_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ | ||
| 117 | |||
| 118 | u8 l2_trip; /* use L2_COMP_CURR_uA(I) 0 <= I <= 1106 uA */ | ||
| 119 | u8 l2_hyst; /* use L2_COMP_CURR_uA(I) 0 <= I <= 1106 uA */ | ||
| 120 | u8 l3_trip; /* use L3_COMP_CURR_uA(I) 0 <= I <= 551 uA */ | ||
| 121 | u8 l3_hyst; /* use L3_COMP_CURR_uA(I) 0 <= I <= 551 uA */ | ||
| 122 | |||
| 123 | /** | ||
| 124 | * Independent Current Sinks / LEDS | ||
| 125 | * Sinks not assigned to the Backlight can be exposed to | ||
| 126 | * user space using the LEDS CLASS interface | ||
| 127 | */ | ||
| 128 | |||
| 129 | int num_leds; | ||
| 130 | struct led_info *leds; | ||
| 131 | u8 led_fade_in; /* LED Fade-In Timer */ | ||
| 132 | u8 led_fade_out; /* LED Fade-Out Timer */ | ||
| 133 | u8 led_fade_law; /* fade-on/fade-off transfer characteristic */ | ||
| 134 | u8 led_on_time; | ||
| 135 | |||
| 136 | /** | ||
| 137 | * Gain down disable. Setting this option does not allow the | ||
| 138 | * charge pump to switch to lower gains. NOT AVAILABLE on ADP8860 | ||
| 139 | * 1 = the charge pump doesn't switch down in gain until all LEDs are 0. | ||
| 140 | * The charge pump switches up in gain as needed. This feature is | ||
| 141 | * useful if the ADP8863 charge pump is used to drive an external load. | ||
| 142 | * This feature must be used when utilizing small fly capacitors | ||
| 143 | * (0402 or smaller). | ||
| 144 | * 0 = the charge pump automatically switches up and down in gain. | ||
| 145 | * This provides optimal efficiency, but is not suitable for driving | ||
| 146 | * loads that are not connected through the ADP8863 diode drivers. | ||
| 147 | * Additionally, the charge pump fly capacitors should be low ESR | ||
| 148 | * and sized 0603 or greater. | ||
| 149 | */ | ||
| 150 | |||
| 151 | u8 gdwn_dis; | ||
| 152 | }; | ||
| 153 | |||
| 154 | #endif /* __LINUX_I2C_ADP8860_H */ | ||
diff --git a/include/linux/i2c/max732x.h b/include/linux/i2c/max732x.h index e10336631c62..c04bac8bf2fe 100644 --- a/include/linux/i2c/max732x.h +++ b/include/linux/i2c/max732x.h | |||
| @@ -7,6 +7,9 @@ struct max732x_platform_data { | |||
| 7 | /* number of the first GPIO */ | 7 | /* number of the first GPIO */ |
| 8 | unsigned gpio_base; | 8 | unsigned gpio_base; |
| 9 | 9 | ||
| 10 | /* interrupt base */ | ||
| 11 | int irq_base; | ||
| 12 | |||
| 10 | void *context; /* param to setup/teardown */ | 13 | void *context; /* param to setup/teardown */ |
| 11 | 14 | ||
| 12 | int (*setup)(struct i2c_client *client, | 15 | int (*setup)(struct i2c_client *client, |
diff --git a/include/linux/i2c/pca953x.h b/include/linux/i2c/pca953x.h index d5c5a60c8a0b..139ba52667c8 100644 --- a/include/linux/i2c/pca953x.h +++ b/include/linux/i2c/pca953x.h | |||
| @@ -24,7 +24,7 @@ struct pca953x_platform_data { | |||
| 24 | int (*teardown)(struct i2c_client *client, | 24 | int (*teardown)(struct i2c_client *client, |
| 25 | unsigned gpio, unsigned ngpio, | 25 | unsigned gpio, unsigned ngpio, |
| 26 | void *context); | 26 | void *context); |
| 27 | char **names; | 27 | const char *const *names; |
| 28 | }; | 28 | }; |
| 29 | 29 | ||
| 30 | #endif /* _LINUX_PCA953X_H */ | 30 | #endif /* _LINUX_PCA953X_H */ |
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 7996fc2c9ba9..2beaa13492be 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
| @@ -16,7 +16,7 @@ extern struct files_struct init_files; | |||
| 16 | extern struct fs_struct init_fs; | 16 | extern struct fs_struct init_fs; |
| 17 | 17 | ||
| 18 | #define INIT_SIGNALS(sig) { \ | 18 | #define INIT_SIGNALS(sig) { \ |
| 19 | .count = ATOMIC_INIT(1), \ | 19 | .nr_threads = 1, \ |
| 20 | .wait_chldexit = __WAIT_QUEUE_HEAD_INITIALIZER(sig.wait_chldexit),\ | 20 | .wait_chldexit = __WAIT_QUEUE_HEAD_INITIALIZER(sig.wait_chldexit),\ |
| 21 | .shared_pending = { \ | 21 | .shared_pending = { \ |
| 22 | .list = LIST_HEAD_INIT(sig.shared_pending.list), \ | 22 | .list = LIST_HEAD_INIT(sig.shared_pending.list), \ |
| @@ -35,7 +35,7 @@ extern struct nsproxy init_nsproxy; | |||
| 35 | 35 | ||
| 36 | #define INIT_SIGHAND(sighand) { \ | 36 | #define INIT_SIGHAND(sighand) { \ |
| 37 | .count = ATOMIC_INIT(1), \ | 37 | .count = ATOMIC_INIT(1), \ |
| 38 | .action = { { { .sa_handler = NULL, } }, }, \ | 38 | .action = { { { .sa_handler = SIG_DFL, } }, }, \ |
| 39 | .siglock = __SPIN_LOCK_UNLOCKED(sighand.siglock), \ | 39 | .siglock = __SPIN_LOCK_UNLOCKED(sighand.siglock), \ |
| 40 | .signalfd_wqh = __WAIT_QUEUE_HEAD_INITIALIZER(sighand.signalfd_wqh), \ | 40 | .signalfd_wqh = __WAIT_QUEUE_HEAD_INITIALIZER(sighand.signalfd_wqh), \ |
| 41 | } | 41 | } |
| @@ -45,9 +45,9 @@ extern struct group_info init_groups; | |||
| 45 | #define INIT_STRUCT_PID { \ | 45 | #define INIT_STRUCT_PID { \ |
| 46 | .count = ATOMIC_INIT(1), \ | 46 | .count = ATOMIC_INIT(1), \ |
| 47 | .tasks = { \ | 47 | .tasks = { \ |
| 48 | { .first = &init_task.pids[PIDTYPE_PID].node }, \ | 48 | { .first = NULL }, \ |
| 49 | { .first = &init_task.pids[PIDTYPE_PGID].node }, \ | 49 | { .first = NULL }, \ |
| 50 | { .first = &init_task.pids[PIDTYPE_SID].node }, \ | 50 | { .first = NULL }, \ |
| 51 | }, \ | 51 | }, \ |
| 52 | .level = 0, \ | 52 | .level = 0, \ |
| 53 | .numbers = { { \ | 53 | .numbers = { { \ |
| @@ -61,7 +61,7 @@ extern struct group_info init_groups; | |||
| 61 | { \ | 61 | { \ |
| 62 | .node = { \ | 62 | .node = { \ |
| 63 | .next = NULL, \ | 63 | .next = NULL, \ |
| 64 | .pprev = &init_struct_pid.tasks[type].first, \ | 64 | .pprev = NULL, \ |
| 65 | }, \ | 65 | }, \ |
| 66 | .pid = &init_struct_pid, \ | 66 | .pid = &init_struct_pid, \ |
| 67 | } | 67 | } |
| @@ -163,6 +163,7 @@ extern struct cred init_cred; | |||
| 163 | [PIDTYPE_PGID] = INIT_PID_LINK(PIDTYPE_PGID), \ | 163 | [PIDTYPE_PGID] = INIT_PID_LINK(PIDTYPE_PGID), \ |
| 164 | [PIDTYPE_SID] = INIT_PID_LINK(PIDTYPE_SID), \ | 164 | [PIDTYPE_SID] = INIT_PID_LINK(PIDTYPE_SID), \ |
| 165 | }, \ | 165 | }, \ |
| 166 | .thread_group = LIST_HEAD_INIT(tsk.thread_group), \ | ||
| 166 | .dirties = INIT_PROP_LOCAL_SINGLE(dirties), \ | 167 | .dirties = INIT_PROP_LOCAL_SINGLE(dirties), \ |
| 167 | INIT_IDS \ | 168 | INIT_IDS \ |
| 168 | INIT_PERF_EVENTS(tsk) \ | 169 | INIT_PERF_EVENTS(tsk) \ |
diff --git a/include/linux/input.h b/include/linux/input.h index 83524e4f3290..6fcc9101beeb 100644 --- a/include/linux/input.h +++ b/include/linux/input.h | |||
| @@ -1155,7 +1155,7 @@ struct input_dev { | |||
| 1155 | 1155 | ||
| 1156 | int sync; | 1156 | int sync; |
| 1157 | 1157 | ||
| 1158 | int abs[ABS_MAX + 1]; | 1158 | int abs[ABS_CNT]; |
| 1159 | int rep[REP_MAX + 1]; | 1159 | int rep[REP_MAX + 1]; |
| 1160 | 1160 | ||
| 1161 | unsigned long key[BITS_TO_LONGS(KEY_CNT)]; | 1161 | unsigned long key[BITS_TO_LONGS(KEY_CNT)]; |
| @@ -1163,11 +1163,11 @@ struct input_dev { | |||
| 1163 | unsigned long snd[BITS_TO_LONGS(SND_CNT)]; | 1163 | unsigned long snd[BITS_TO_LONGS(SND_CNT)]; |
| 1164 | unsigned long sw[BITS_TO_LONGS(SW_CNT)]; | 1164 | unsigned long sw[BITS_TO_LONGS(SW_CNT)]; |
| 1165 | 1165 | ||
| 1166 | int absmax[ABS_MAX + 1]; | 1166 | int absmax[ABS_CNT]; |
| 1167 | int absmin[ABS_MAX + 1]; | 1167 | int absmin[ABS_CNT]; |
| 1168 | int absfuzz[ABS_MAX + 1]; | 1168 | int absfuzz[ABS_CNT]; |
| 1169 | int absflat[ABS_MAX + 1]; | 1169 | int absflat[ABS_CNT]; |
| 1170 | int absres[ABS_MAX + 1]; | 1170 | int absres[ABS_CNT]; |
| 1171 | 1171 | ||
| 1172 | int (*open)(struct input_dev *dev); | 1172 | int (*open)(struct input_dev *dev); |
| 1173 | void (*close)(struct input_dev *dev); | 1173 | void (*close)(struct input_dev *dev); |
diff --git a/include/linux/joystick.h b/include/linux/joystick.h index 9e20c29c1e14..47199b13e0eb 100644 --- a/include/linux/joystick.h +++ b/include/linux/joystick.h | |||
| @@ -64,8 +64,8 @@ struct js_event { | |||
| 64 | #define JSIOCSCORR _IOW('j', 0x21, struct js_corr) /* set correction values */ | 64 | #define JSIOCSCORR _IOW('j', 0x21, struct js_corr) /* set correction values */ |
| 65 | #define JSIOCGCORR _IOR('j', 0x22, struct js_corr) /* get correction values */ | 65 | #define JSIOCGCORR _IOR('j', 0x22, struct js_corr) /* get correction values */ |
| 66 | 66 | ||
| 67 | #define JSIOCSAXMAP _IOW('j', 0x31, __u8[ABS_MAX + 1]) /* set axis mapping */ | 67 | #define JSIOCSAXMAP _IOW('j', 0x31, __u8[ABS_CNT]) /* set axis mapping */ |
| 68 | #define JSIOCGAXMAP _IOR('j', 0x32, __u8[ABS_MAX + 1]) /* get axis mapping */ | 68 | #define JSIOCGAXMAP _IOR('j', 0x32, __u8[ABS_CNT]) /* get axis mapping */ |
| 69 | #define JSIOCSBTNMAP _IOW('j', 0x33, __u16[KEY_MAX - BTN_MISC + 1]) /* set button mapping */ | 69 | #define JSIOCSBTNMAP _IOW('j', 0x33, __u16[KEY_MAX - BTN_MISC + 1]) /* set button mapping */ |
| 70 | #define JSIOCGBTNMAP _IOR('j', 0x34, __u16[KEY_MAX - BTN_MISC + 1]) /* get button mapping */ | 70 | #define JSIOCGBTNMAP _IOR('j', 0x34, __u16[KEY_MAX - BTN_MISC + 1]) /* get button mapping */ |
| 71 | 71 | ||
diff --git a/include/linux/kmod.h b/include/linux/kmod.h index facb27fe7de0..6efd7a78de6a 100644 --- a/include/linux/kmod.h +++ b/include/linux/kmod.h | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #include <linux/stddef.h> | 23 | #include <linux/stddef.h> |
| 24 | #include <linux/errno.h> | 24 | #include <linux/errno.h> |
| 25 | #include <linux/compiler.h> | 25 | #include <linux/compiler.h> |
| 26 | #include <linux/workqueue.h> | ||
| 26 | 27 | ||
| 27 | #define KMOD_PATH_LEN 256 | 28 | #define KMOD_PATH_LEN 256 |
| 28 | 29 | ||
| @@ -45,19 +46,6 @@ static inline int request_module_nowait(const char *name, ...) { return -ENOSYS; | |||
| 45 | 46 | ||
| 46 | struct key; | 47 | struct key; |
| 47 | struct file; | 48 | struct file; |
| 48 | struct subprocess_info; | ||
| 49 | |||
| 50 | /* Allocate a subprocess_info structure */ | ||
| 51 | struct subprocess_info *call_usermodehelper_setup(char *path, char **argv, | ||
| 52 | char **envp, gfp_t gfp_mask); | ||
| 53 | |||
| 54 | /* Set various pieces of state into the subprocess_info structure */ | ||
| 55 | void call_usermodehelper_setkeys(struct subprocess_info *info, | ||
| 56 | struct key *session_keyring); | ||
| 57 | int call_usermodehelper_stdinpipe(struct subprocess_info *sub_info, | ||
| 58 | struct file **filp); | ||
| 59 | void call_usermodehelper_setcleanup(struct subprocess_info *info, | ||
| 60 | void (*cleanup)(char **argv, char **envp)); | ||
| 61 | 49 | ||
| 62 | enum umh_wait { | 50 | enum umh_wait { |
| 63 | UMH_NO_WAIT = -1, /* don't wait at all */ | 51 | UMH_NO_WAIT = -1, /* don't wait at all */ |
| @@ -65,6 +53,29 @@ enum umh_wait { | |||
| 65 | UMH_WAIT_PROC = 1, /* wait for the process to complete */ | 53 | UMH_WAIT_PROC = 1, /* wait for the process to complete */ |
| 66 | }; | 54 | }; |
| 67 | 55 | ||
| 56 | struct subprocess_info { | ||
| 57 | struct work_struct work; | ||
| 58 | struct completion *complete; | ||
| 59 | char *path; | ||
| 60 | char **argv; | ||
| 61 | char **envp; | ||
| 62 | enum umh_wait wait; | ||
| 63 | int retval; | ||
| 64 | int (*init)(struct subprocess_info *info); | ||
| 65 | void (*cleanup)(struct subprocess_info *info); | ||
| 66 | void *data; | ||
| 67 | }; | ||
| 68 | |||
| 69 | /* Allocate a subprocess_info structure */ | ||
| 70 | struct subprocess_info *call_usermodehelper_setup(char *path, char **argv, | ||
| 71 | char **envp, gfp_t gfp_mask); | ||
| 72 | |||
| 73 | /* Set various pieces of state into the subprocess_info structure */ | ||
| 74 | void call_usermodehelper_setfns(struct subprocess_info *info, | ||
| 75 | int (*init)(struct subprocess_info *info), | ||
| 76 | void (*cleanup)(struct subprocess_info *info), | ||
| 77 | void *data); | ||
| 78 | |||
| 68 | /* Actually execute the sub-process */ | 79 | /* Actually execute the sub-process */ |
| 69 | int call_usermodehelper_exec(struct subprocess_info *info, enum umh_wait wait); | 80 | int call_usermodehelper_exec(struct subprocess_info *info, enum umh_wait wait); |
| 70 | 81 | ||
| @@ -73,38 +84,33 @@ int call_usermodehelper_exec(struct subprocess_info *info, enum umh_wait wait); | |||
| 73 | void call_usermodehelper_freeinfo(struct subprocess_info *info); | 84 | void call_usermodehelper_freeinfo(struct subprocess_info *info); |
| 74 | 85 | ||
| 75 | static inline int | 86 | static inline int |
| 76 | call_usermodehelper(char *path, char **argv, char **envp, enum umh_wait wait) | 87 | call_usermodehelper_fns(char *path, char **argv, char **envp, |
| 88 | enum umh_wait wait, | ||
| 89 | int (*init)(struct subprocess_info *info), | ||
| 90 | void (*cleanup)(struct subprocess_info *), void *data) | ||
| 77 | { | 91 | { |
| 78 | struct subprocess_info *info; | 92 | struct subprocess_info *info; |
| 79 | gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL; | 93 | gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL; |
| 80 | 94 | ||
| 81 | info = call_usermodehelper_setup(path, argv, envp, gfp_mask); | 95 | info = call_usermodehelper_setup(path, argv, envp, gfp_mask); |
| 96 | |||
| 82 | if (info == NULL) | 97 | if (info == NULL) |
| 83 | return -ENOMEM; | 98 | return -ENOMEM; |
| 99 | |||
| 100 | call_usermodehelper_setfns(info, init, cleanup, data); | ||
| 101 | |||
| 84 | return call_usermodehelper_exec(info, wait); | 102 | return call_usermodehelper_exec(info, wait); |
| 85 | } | 103 | } |
| 86 | 104 | ||
| 87 | static inline int | 105 | static inline int |
| 88 | call_usermodehelper_keys(char *path, char **argv, char **envp, | 106 | call_usermodehelper(char *path, char **argv, char **envp, enum umh_wait wait) |
| 89 | struct key *session_keyring, enum umh_wait wait) | ||
| 90 | { | 107 | { |
| 91 | struct subprocess_info *info; | 108 | return call_usermodehelper_fns(path, argv, envp, wait, |
| 92 | gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL; | 109 | NULL, NULL, NULL); |
| 93 | |||
| 94 | info = call_usermodehelper_setup(path, argv, envp, gfp_mask); | ||
| 95 | if (info == NULL) | ||
| 96 | return -ENOMEM; | ||
| 97 | |||
| 98 | call_usermodehelper_setkeys(info, session_keyring); | ||
| 99 | return call_usermodehelper_exec(info, wait); | ||
| 100 | } | 110 | } |
| 101 | 111 | ||
| 102 | extern void usermodehelper_init(void); | 112 | extern void usermodehelper_init(void); |
| 103 | 113 | ||
| 104 | struct file; | ||
| 105 | extern int call_usermodehelper_pipe(char *path, char *argv[], char *envp[], | ||
| 106 | struct file **filp); | ||
| 107 | |||
| 108 | extern int usermodehelper_disable(void); | 114 | extern int usermodehelper_disable(void); |
| 109 | extern void usermodehelper_enable(void); | 115 | extern void usermodehelper_enable(void); |
| 110 | 116 | ||
diff --git a/include/linux/lcd.h b/include/linux/lcd.h index c67fecafff90..8877123f2d6e 100644 --- a/include/linux/lcd.h +++ b/include/linux/lcd.h | |||
| @@ -69,6 +69,29 @@ struct lcd_device { | |||
| 69 | struct device dev; | 69 | struct device dev; |
| 70 | }; | 70 | }; |
| 71 | 71 | ||
| 72 | struct lcd_platform_data { | ||
| 73 | /* reset lcd panel device. */ | ||
| 74 | int (*reset)(struct lcd_device *ld); | ||
| 75 | /* on or off to lcd panel. if 'enable' is 0 then | ||
| 76 | lcd power off and 1, lcd power on. */ | ||
| 77 | int (*power_on)(struct lcd_device *ld, int enable); | ||
| 78 | |||
| 79 | /* it indicates whether lcd panel was enabled | ||
| 80 | from bootloader or not. */ | ||
| 81 | int lcd_enabled; | ||
| 82 | /* it means delay for stable time when it becomes low to high | ||
| 83 | or high to low that is dependent on whether reset gpio is | ||
| 84 | low active or high active. */ | ||
| 85 | unsigned int reset_delay; | ||
| 86 | /* stable time needing to become lcd power on. */ | ||
| 87 | unsigned int power_on_delay; | ||
| 88 | /* stable time needing to become lcd power off. */ | ||
| 89 | unsigned int power_off_delay; | ||
| 90 | |||
| 91 | /* it could be used for any purpose. */ | ||
| 92 | void *pdata; | ||
| 93 | }; | ||
| 94 | |||
| 72 | static inline void lcd_set_power(struct lcd_device *ld, int power) | 95 | static inline void lcd_set_power(struct lcd_device *ld, int power) |
| 73 | { | 96 | { |
| 74 | mutex_lock(&ld->update_lock); | 97 | mutex_lock(&ld->update_lock); |
diff --git a/include/linux/leds.h b/include/linux/leds.h index d8bf9665e70c..ba6986a11663 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h | |||
| @@ -149,14 +149,18 @@ struct gpio_led { | |||
| 149 | unsigned default_state : 2; | 149 | unsigned default_state : 2; |
| 150 | /* default_state should be one of LEDS_GPIO_DEFSTATE_(ON|OFF|KEEP) */ | 150 | /* default_state should be one of LEDS_GPIO_DEFSTATE_(ON|OFF|KEEP) */ |
| 151 | }; | 151 | }; |
| 152 | #define LEDS_GPIO_DEFSTATE_OFF 0 | 152 | #define LEDS_GPIO_DEFSTATE_OFF 0 |
| 153 | #define LEDS_GPIO_DEFSTATE_ON 1 | 153 | #define LEDS_GPIO_DEFSTATE_ON 1 |
| 154 | #define LEDS_GPIO_DEFSTATE_KEEP 2 | 154 | #define LEDS_GPIO_DEFSTATE_KEEP 2 |
| 155 | 155 | ||
| 156 | struct gpio_led_platform_data { | 156 | struct gpio_led_platform_data { |
| 157 | int num_leds; | 157 | int num_leds; |
| 158 | struct gpio_led *leds; | 158 | struct gpio_led *leds; |
| 159 | int (*gpio_blink_set)(unsigned gpio, | 159 | |
| 160 | #define GPIO_LED_NO_BLINK_LOW 0 /* No blink GPIO state low */ | ||
| 161 | #define GPIO_LED_NO_BLINK_HIGH 1 /* No blink GPIO state high */ | ||
| 162 | #define GPIO_LED_BLINK 2 /* Plase, blink */ | ||
| 163 | int (*gpio_blink_set)(unsigned gpio, int state, | ||
| 160 | unsigned long *delay_on, | 164 | unsigned long *delay_on, |
| 161 | unsigned long *delay_off); | 165 | unsigned long *delay_off); |
| 162 | }; | 166 | }; |
diff --git a/include/linux/libata.h b/include/linux/libata.h index ee84e7e12039..3bad2701bfa6 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
| @@ -386,6 +386,7 @@ enum { | |||
| 386 | ATA_HORKAGE_1_5_GBPS = (1 << 13), /* force 1.5 Gbps */ | 386 | ATA_HORKAGE_1_5_GBPS = (1 << 13), /* force 1.5 Gbps */ |
| 387 | ATA_HORKAGE_NOSETXFER = (1 << 14), /* skip SETXFER, SATA only */ | 387 | ATA_HORKAGE_NOSETXFER = (1 << 14), /* skip SETXFER, SATA only */ |
| 388 | ATA_HORKAGE_BROKEN_FPDMA_AA = (1 << 15), /* skip AA */ | 388 | ATA_HORKAGE_BROKEN_FPDMA_AA = (1 << 15), /* skip AA */ |
| 389 | ATA_HORKAGE_DUMP_ID = (1 << 16), /* dump IDENTIFY data */ | ||
| 389 | 390 | ||
| 390 | /* DMA mask for user DMA control: User visible values; DO NOT | 391 | /* DMA mask for user DMA control: User visible values; DO NOT |
| 391 | renumber */ | 392 | renumber */ |
| @@ -513,7 +514,9 @@ struct ata_ioports { | |||
| 513 | void __iomem *command_addr; | 514 | void __iomem *command_addr; |
| 514 | void __iomem *altstatus_addr; | 515 | void __iomem *altstatus_addr; |
| 515 | void __iomem *ctl_addr; | 516 | void __iomem *ctl_addr; |
| 517 | #ifdef CONFIG_ATA_BMDMA | ||
| 516 | void __iomem *bmdma_addr; | 518 | void __iomem *bmdma_addr; |
| 519 | #endif /* CONFIG_ATA_BMDMA */ | ||
| 517 | void __iomem *scr_addr; | 520 | void __iomem *scr_addr; |
| 518 | }; | 521 | }; |
| 519 | #endif /* CONFIG_ATA_SFF */ | 522 | #endif /* CONFIG_ATA_SFF */ |
| @@ -721,8 +724,10 @@ struct ata_port { | |||
| 721 | u8 ctl; /* cache of ATA control register */ | 724 | u8 ctl; /* cache of ATA control register */ |
| 722 | u8 last_ctl; /* Cache last written value */ | 725 | u8 last_ctl; /* Cache last written value */ |
| 723 | struct delayed_work sff_pio_task; | 726 | struct delayed_work sff_pio_task; |
| 727 | #ifdef CONFIG_ATA_BMDMA | ||
| 724 | struct ata_bmdma_prd *bmdma_prd; /* BMDMA SG list */ | 728 | struct ata_bmdma_prd *bmdma_prd; /* BMDMA SG list */ |
| 725 | dma_addr_t bmdma_prd_dma; /* and its DMA mapping */ | 729 | dma_addr_t bmdma_prd_dma; /* and its DMA mapping */ |
| 730 | #endif /* CONFIG_ATA_BMDMA */ | ||
| 726 | #endif /* CONFIG_ATA_SFF */ | 731 | #endif /* CONFIG_ATA_SFF */ |
| 727 | 732 | ||
| 728 | unsigned int pio_mask; | 733 | unsigned int pio_mask; |
| @@ -856,10 +861,12 @@ struct ata_port_operations { | |||
| 856 | void (*sff_irq_clear)(struct ata_port *); | 861 | void (*sff_irq_clear)(struct ata_port *); |
| 857 | void (*sff_drain_fifo)(struct ata_queued_cmd *qc); | 862 | void (*sff_drain_fifo)(struct ata_queued_cmd *qc); |
| 858 | 863 | ||
| 864 | #ifdef CONFIG_ATA_BMDMA | ||
| 859 | void (*bmdma_setup)(struct ata_queued_cmd *qc); | 865 | void (*bmdma_setup)(struct ata_queued_cmd *qc); |
| 860 | void (*bmdma_start)(struct ata_queued_cmd *qc); | 866 | void (*bmdma_start)(struct ata_queued_cmd *qc); |
| 861 | void (*bmdma_stop)(struct ata_queued_cmd *qc); | 867 | void (*bmdma_stop)(struct ata_queued_cmd *qc); |
| 862 | u8 (*bmdma_status)(struct ata_port *ap); | 868 | u8 (*bmdma_status)(struct ata_port *ap); |
| 869 | #endif /* CONFIG_ATA_BMDMA */ | ||
| 863 | #endif /* CONFIG_ATA_SFF */ | 870 | #endif /* CONFIG_ATA_SFF */ |
| 864 | 871 | ||
| 865 | ssize_t (*em_show)(struct ata_port *ap, char *buf); | 872 | ssize_t (*em_show)(struct ata_port *ap, char *buf); |
| @@ -1555,7 +1562,6 @@ extern void sata_pmp_error_handler(struct ata_port *ap); | |||
| 1555 | #ifdef CONFIG_ATA_SFF | 1562 | #ifdef CONFIG_ATA_SFF |
| 1556 | 1563 | ||
| 1557 | extern const struct ata_port_operations ata_sff_port_ops; | 1564 | extern const struct ata_port_operations ata_sff_port_ops; |
| 1558 | extern const struct ata_port_operations ata_bmdma_port_ops; | ||
| 1559 | extern const struct ata_port_operations ata_bmdma32_port_ops; | 1565 | extern const struct ata_port_operations ata_bmdma32_port_ops; |
| 1560 | 1566 | ||
| 1561 | /* PIO only, sg_tablesize and dma_boundary limits can be removed */ | 1567 | /* PIO only, sg_tablesize and dma_boundary limits can be removed */ |
| @@ -1564,11 +1570,6 @@ extern const struct ata_port_operations ata_bmdma32_port_ops; | |||
| 1564 | .sg_tablesize = LIBATA_MAX_PRD, \ | 1570 | .sg_tablesize = LIBATA_MAX_PRD, \ |
| 1565 | .dma_boundary = ATA_DMA_BOUNDARY | 1571 | .dma_boundary = ATA_DMA_BOUNDARY |
| 1566 | 1572 | ||
| 1567 | #define ATA_BMDMA_SHT(drv_name) \ | ||
| 1568 | ATA_BASE_SHT(drv_name), \ | ||
| 1569 | .sg_tablesize = LIBATA_MAX_PRD, \ | ||
| 1570 | .dma_boundary = ATA_DMA_BOUNDARY | ||
| 1571 | |||
| 1572 | extern void ata_sff_dev_select(struct ata_port *ap, unsigned int device); | 1573 | extern void ata_sff_dev_select(struct ata_port *ap, unsigned int device); |
| 1573 | extern u8 ata_sff_check_status(struct ata_port *ap); | 1574 | extern u8 ata_sff_check_status(struct ata_port *ap); |
| 1574 | extern void ata_sff_pause(struct ata_port *ap); | 1575 | extern void ata_sff_pause(struct ata_port *ap); |
| @@ -1593,7 +1594,7 @@ extern int ata_sff_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc, | |||
| 1593 | extern void ata_sff_queue_pio_task(struct ata_port *ap, unsigned long delay); | 1594 | extern void ata_sff_queue_pio_task(struct ata_port *ap, unsigned long delay); |
| 1594 | extern unsigned int ata_sff_qc_issue(struct ata_queued_cmd *qc); | 1595 | extern unsigned int ata_sff_qc_issue(struct ata_queued_cmd *qc); |
| 1595 | extern bool ata_sff_qc_fill_rtf(struct ata_queued_cmd *qc); | 1596 | extern bool ata_sff_qc_fill_rtf(struct ata_queued_cmd *qc); |
| 1596 | extern unsigned int ata_sff_host_intr(struct ata_port *ap, | 1597 | extern unsigned int ata_sff_port_intr(struct ata_port *ap, |
| 1597 | struct ata_queued_cmd *qc); | 1598 | struct ata_queued_cmd *qc); |
| 1598 | extern irqreturn_t ata_sff_interrupt(int irq, void *dev_instance); | 1599 | extern irqreturn_t ata_sff_interrupt(int irq, void *dev_instance); |
| 1599 | extern void ata_sff_lost_interrupt(struct ata_port *ap); | 1600 | extern void ata_sff_lost_interrupt(struct ata_port *ap); |
| @@ -1625,11 +1626,24 @@ extern int ata_pci_sff_init_one(struct pci_dev *pdev, | |||
| 1625 | struct scsi_host_template *sht, void *host_priv, int hflags); | 1626 | struct scsi_host_template *sht, void *host_priv, int hflags); |
| 1626 | #endif /* CONFIG_PCI */ | 1627 | #endif /* CONFIG_PCI */ |
| 1627 | 1628 | ||
| 1629 | #ifdef CONFIG_ATA_BMDMA | ||
| 1630 | |||
| 1631 | extern const struct ata_port_operations ata_bmdma_port_ops; | ||
| 1632 | |||
| 1633 | #define ATA_BMDMA_SHT(drv_name) \ | ||
| 1634 | ATA_BASE_SHT(drv_name), \ | ||
| 1635 | .sg_tablesize = LIBATA_MAX_PRD, \ | ||
| 1636 | .dma_boundary = ATA_DMA_BOUNDARY | ||
| 1637 | |||
| 1628 | extern void ata_bmdma_qc_prep(struct ata_queued_cmd *qc); | 1638 | extern void ata_bmdma_qc_prep(struct ata_queued_cmd *qc); |
| 1629 | extern unsigned int ata_bmdma_qc_issue(struct ata_queued_cmd *qc); | 1639 | extern unsigned int ata_bmdma_qc_issue(struct ata_queued_cmd *qc); |
| 1630 | extern void ata_bmdma_dumb_qc_prep(struct ata_queued_cmd *qc); | 1640 | extern void ata_bmdma_dumb_qc_prep(struct ata_queued_cmd *qc); |
| 1641 | extern unsigned int ata_bmdma_port_intr(struct ata_port *ap, | ||
| 1642 | struct ata_queued_cmd *qc); | ||
| 1643 | extern irqreturn_t ata_bmdma_interrupt(int irq, void *dev_instance); | ||
| 1631 | extern void ata_bmdma_error_handler(struct ata_port *ap); | 1644 | extern void ata_bmdma_error_handler(struct ata_port *ap); |
| 1632 | extern void ata_bmdma_post_internal_cmd(struct ata_queued_cmd *qc); | 1645 | extern void ata_bmdma_post_internal_cmd(struct ata_queued_cmd *qc); |
| 1646 | extern void ata_bmdma_irq_clear(struct ata_port *ap); | ||
| 1633 | extern void ata_bmdma_setup(struct ata_queued_cmd *qc); | 1647 | extern void ata_bmdma_setup(struct ata_queued_cmd *qc); |
| 1634 | extern void ata_bmdma_start(struct ata_queued_cmd *qc); | 1648 | extern void ata_bmdma_start(struct ata_queued_cmd *qc); |
| 1635 | extern void ata_bmdma_stop(struct ata_queued_cmd *qc); | 1649 | extern void ata_bmdma_stop(struct ata_queued_cmd *qc); |
| @@ -1640,7 +1654,15 @@ extern int ata_bmdma_port_start32(struct ata_port *ap); | |||
| 1640 | #ifdef CONFIG_PCI | 1654 | #ifdef CONFIG_PCI |
| 1641 | extern int ata_pci_bmdma_clear_simplex(struct pci_dev *pdev); | 1655 | extern int ata_pci_bmdma_clear_simplex(struct pci_dev *pdev); |
| 1642 | extern void ata_pci_bmdma_init(struct ata_host *host); | 1656 | extern void ata_pci_bmdma_init(struct ata_host *host); |
| 1657 | extern int ata_pci_bmdma_prepare_host(struct pci_dev *pdev, | ||
| 1658 | const struct ata_port_info * const * ppi, | ||
| 1659 | struct ata_host **r_host); | ||
| 1660 | extern int ata_pci_bmdma_init_one(struct pci_dev *pdev, | ||
| 1661 | const struct ata_port_info * const * ppi, | ||
| 1662 | struct scsi_host_template *sht, | ||
| 1663 | void *host_priv, int hflags); | ||
| 1643 | #endif /* CONFIG_PCI */ | 1664 | #endif /* CONFIG_PCI */ |
| 1665 | #endif /* CONFIG_ATA_BMDMA */ | ||
| 1644 | 1666 | ||
| 1645 | /** | 1667 | /** |
| 1646 | * ata_sff_busy_wait - Wait for a port status register | 1668 | * ata_sff_busy_wait - Wait for a port status register |
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index 05894795fdc1..9411d32840b0 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h | |||
| @@ -90,7 +90,8 @@ int mm_match_cgroup(const struct mm_struct *mm, const struct mem_cgroup *cgroup) | |||
| 90 | extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *mem); | 90 | extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *mem); |
| 91 | 91 | ||
| 92 | extern int | 92 | extern int |
| 93 | mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr); | 93 | mem_cgroup_prepare_migration(struct page *page, |
| 94 | struct page *newpage, struct mem_cgroup **ptr); | ||
| 94 | extern void mem_cgroup_end_migration(struct mem_cgroup *mem, | 95 | extern void mem_cgroup_end_migration(struct mem_cgroup *mem, |
| 95 | struct page *oldpage, struct page *newpage); | 96 | struct page *oldpage, struct page *newpage); |
| 96 | 97 | ||
| @@ -227,7 +228,8 @@ static inline struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *mem) | |||
| 227 | } | 228 | } |
| 228 | 229 | ||
| 229 | static inline int | 230 | static inline int |
| 230 | mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr) | 231 | mem_cgroup_prepare_migration(struct page *page, struct page *newpage, |
| 232 | struct mem_cgroup **ptr) | ||
| 231 | { | 233 | { |
| 232 | return 0; | 234 | return 0; |
| 233 | } | 235 | } |
diff --git a/include/linux/mfd/mc13783.h b/include/linux/mfd/mc13783.h index 8895d9d8879c..4a894f688549 100644 --- a/include/linux/mfd/mc13783.h +++ b/include/linux/mfd/mc13783.h | |||
| @@ -64,6 +64,70 @@ static inline int mc13783_ackirq(struct mc13783 *mc13783, int irq) | |||
| 64 | MC13783_ADC0_TSMOD1 | \ | 64 | MC13783_ADC0_TSMOD1 | \ |
| 65 | MC13783_ADC0_TSMOD2) | 65 | MC13783_ADC0_TSMOD2) |
| 66 | 66 | ||
| 67 | struct mc13783_led_platform_data { | ||
| 68 | #define MC13783_LED_MD 0 | ||
| 69 | #define MC13783_LED_AD 1 | ||
| 70 | #define MC13783_LED_KP 2 | ||
| 71 | #define MC13783_LED_R1 3 | ||
| 72 | #define MC13783_LED_G1 4 | ||
| 73 | #define MC13783_LED_B1 5 | ||
| 74 | #define MC13783_LED_R2 6 | ||
| 75 | #define MC13783_LED_G2 7 | ||
| 76 | #define MC13783_LED_B2 8 | ||
| 77 | #define MC13783_LED_R3 9 | ||
| 78 | #define MC13783_LED_G3 10 | ||
| 79 | #define MC13783_LED_B3 11 | ||
| 80 | #define MC13783_LED_MAX MC13783_LED_B3 | ||
| 81 | int id; | ||
| 82 | const char *name; | ||
| 83 | const char *default_trigger; | ||
| 84 | |||
| 85 | /* Three or two bits current selection depending on the led */ | ||
| 86 | char max_current; | ||
| 87 | }; | ||
| 88 | |||
| 89 | struct mc13783_leds_platform_data { | ||
| 90 | int num_leds; | ||
| 91 | struct mc13783_led_platform_data *led; | ||
| 92 | |||
| 93 | #define MC13783_LED_TRIODE_MD (1 << 0) | ||
| 94 | #define MC13783_LED_TRIODE_AD (1 << 1) | ||
| 95 | #define MC13783_LED_TRIODE_KP (1 << 2) | ||
| 96 | #define MC13783_LED_BOOST_EN (1 << 3) | ||
| 97 | #define MC13783_LED_TC1HALF (1 << 4) | ||
| 98 | #define MC13783_LED_SLEWLIMTC (1 << 5) | ||
| 99 | #define MC13783_LED_SLEWLIMBL (1 << 6) | ||
| 100 | #define MC13783_LED_TRIODE_TC1 (1 << 7) | ||
| 101 | #define MC13783_LED_TRIODE_TC2 (1 << 8) | ||
| 102 | #define MC13783_LED_TRIODE_TC3 (1 << 9) | ||
| 103 | int flags; | ||
| 104 | |||
| 105 | #define MC13783_LED_AB_DISABLED 0 | ||
| 106 | #define MC13783_LED_AB_MD1 1 | ||
| 107 | #define MC13783_LED_AB_MD12 2 | ||
| 108 | #define MC13783_LED_AB_MD123 3 | ||
| 109 | #define MC13783_LED_AB_MD1234 4 | ||
| 110 | #define MC13783_LED_AB_MD1234_AD1 5 | ||
| 111 | #define MC13783_LED_AB_MD1234_AD12 6 | ||
| 112 | #define MC13783_LED_AB_MD1_AD 7 | ||
| 113 | char abmode; | ||
| 114 | |||
| 115 | #define MC13783_LED_ABREF_200MV 0 | ||
| 116 | #define MC13783_LED_ABREF_400MV 1 | ||
| 117 | #define MC13783_LED_ABREF_600MV 2 | ||
| 118 | #define MC13783_LED_ABREF_800MV 3 | ||
| 119 | char abref; | ||
| 120 | |||
| 121 | #define MC13783_LED_PERIOD_10MS 0 | ||
| 122 | #define MC13783_LED_PERIOD_100MS 1 | ||
| 123 | #define MC13783_LED_PERIOD_500MS 2 | ||
| 124 | #define MC13783_LED_PERIOD_2S 3 | ||
| 125 | char bl_period; | ||
| 126 | char tc1_period; | ||
| 127 | char tc2_period; | ||
| 128 | char tc3_period; | ||
| 129 | }; | ||
| 130 | |||
| 67 | /* to be cleaned up */ | 131 | /* to be cleaned up */ |
| 68 | struct regulator_init_data; | 132 | struct regulator_init_data; |
| 69 | 133 | ||
| @@ -80,12 +144,14 @@ struct mc13783_regulator_platform_data { | |||
| 80 | struct mc13783_platform_data { | 144 | struct mc13783_platform_data { |
| 81 | int num_regulators; | 145 | int num_regulators; |
| 82 | struct mc13783_regulator_init_data *regulators; | 146 | struct mc13783_regulator_init_data *regulators; |
| 147 | struct mc13783_leds_platform_data *leds; | ||
| 83 | 148 | ||
| 84 | #define MC13783_USE_TOUCHSCREEN (1 << 0) | 149 | #define MC13783_USE_TOUCHSCREEN (1 << 0) |
| 85 | #define MC13783_USE_CODEC (1 << 1) | 150 | #define MC13783_USE_CODEC (1 << 1) |
| 86 | #define MC13783_USE_ADC (1 << 2) | 151 | #define MC13783_USE_ADC (1 << 2) |
| 87 | #define MC13783_USE_RTC (1 << 3) | 152 | #define MC13783_USE_RTC (1 << 3) |
| 88 | #define MC13783_USE_REGULATOR (1 << 4) | 153 | #define MC13783_USE_REGULATOR (1 << 4) |
| 154 | #define MC13783_USE_LED (1 << 5) | ||
| 89 | unsigned int flags; | 155 | unsigned int flags; |
| 90 | }; | 156 | }; |
| 91 | 157 | ||
diff --git a/include/linux/mfd/pcf50633/backlight.h b/include/linux/mfd/pcf50633/backlight.h new file mode 100644 index 000000000000..83747e217b27 --- /dev/null +++ b/include/linux/mfd/pcf50633/backlight.h | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2009-2010, Lars-Peter Clausen <lars@metafoo.de> | ||
| 3 | * PCF50633 backlight device driver | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify it | ||
| 6 | * under the terms of the GNU General Public License as published by the | ||
| 7 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 8 | * option) any later version. | ||
| 9 | * | ||
| 10 | * You should have received a copy of the GNU General Public License along | ||
| 11 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
| 12 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 13 | * | ||
| 14 | */ | ||
| 15 | |||
| 16 | #ifndef __LINUX_MFD_PCF50633_BACKLIGHT | ||
| 17 | #define __LINUX_MFD_PCF50633_BACKLIGHT | ||
| 18 | |||
| 19 | /* | ||
| 20 | * @default_brightness: Backlight brightness is initialized to this value | ||
| 21 | * | ||
| 22 | * Brightness to be used after the driver has been probed. | ||
| 23 | * Valid range 0-63. | ||
| 24 | * | ||
| 25 | * @default_brightness_limit: The actual brightness is limited by this value | ||
| 26 | * | ||
| 27 | * Brightness limit to be used after the driver has been probed. This is useful | ||
| 28 | * when it is not known how much power is available for the backlight during | ||
| 29 | * probe. | ||
| 30 | * Valid range 0-63. Can be changed later with pcf50633_bl_set_brightness_limit. | ||
| 31 | * | ||
| 32 | * @ramp_time: Display ramp time when changing brightness | ||
| 33 | * | ||
| 34 | * When changing the backlights brightness the change is not instant, instead | ||
| 35 | * it fades smooth from one state to another. This value specifies how long | ||
| 36 | * the fade should take. The lower the value the higher the fade time. | ||
| 37 | * Valid range 0-255 | ||
| 38 | */ | ||
| 39 | struct pcf50633_bl_platform_data { | ||
| 40 | unsigned int default_brightness; | ||
| 41 | unsigned int default_brightness_limit; | ||
| 42 | uint8_t ramp_time; | ||
| 43 | }; | ||
| 44 | |||
| 45 | |||
| 46 | struct pcf50633; | ||
| 47 | |||
| 48 | int pcf50633_bl_set_brightness_limit(struct pcf50633 *pcf, unsigned int limit); | ||
| 49 | |||
| 50 | #endif | ||
| 51 | |||
diff --git a/include/linux/mfd/pcf50633/core.h b/include/linux/mfd/pcf50633/core.h index 3398bd9aab11..ad411a78870c 100644 --- a/include/linux/mfd/pcf50633/core.h +++ b/include/linux/mfd/pcf50633/core.h | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/regulator/driver.h> | 18 | #include <linux/regulator/driver.h> |
| 19 | #include <linux/regulator/machine.h> | 19 | #include <linux/regulator/machine.h> |
| 20 | #include <linux/power_supply.h> | 20 | #include <linux/power_supply.h> |
| 21 | #include <linux/mfd/pcf50633/backlight.h> | ||
| 21 | 22 | ||
| 22 | struct pcf50633; | 23 | struct pcf50633; |
| 23 | 24 | ||
| @@ -43,6 +44,8 @@ struct pcf50633_platform_data { | |||
| 43 | void (*force_shutdown)(struct pcf50633 *); | 44 | void (*force_shutdown)(struct pcf50633 *); |
| 44 | 45 | ||
| 45 | u8 resumers[5]; | 46 | u8 resumers[5]; |
| 47 | |||
| 48 | struct pcf50633_bl_platform_data *backlight_data; | ||
| 46 | }; | 49 | }; |
| 47 | 50 | ||
| 48 | struct pcf50633_irq { | 51 | struct pcf50633_irq { |
| @@ -152,6 +155,7 @@ struct pcf50633 { | |||
| 152 | struct platform_device *mbc_pdev; | 155 | struct platform_device *mbc_pdev; |
| 153 | struct platform_device *adc_pdev; | 156 | struct platform_device *adc_pdev; |
| 154 | struct platform_device *input_pdev; | 157 | struct platform_device *input_pdev; |
| 158 | struct platform_device *bl_pdev; | ||
| 155 | struct platform_device *regulator_pdev[PCF50633_NUM_REGULATORS]; | 159 | struct platform_device *regulator_pdev[PCF50633_NUM_REGULATORS]; |
| 156 | }; | 160 | }; |
| 157 | 161 | ||
diff --git a/include/linux/miscdevice.h b/include/linux/miscdevice.h index 8b5f7cc0fba6..b631c46cffd9 100644 --- a/include/linux/miscdevice.h +++ b/include/linux/miscdevice.h | |||
| @@ -31,6 +31,8 @@ | |||
| 31 | #define FUSE_MINOR 229 | 31 | #define FUSE_MINOR 229 |
| 32 | #define KVM_MINOR 232 | 32 | #define KVM_MINOR 232 |
| 33 | #define VHOST_NET_MINOR 233 | 33 | #define VHOST_NET_MINOR 233 |
| 34 | #define BTRFS_MINOR 234 | ||
| 35 | #define AUTOFS_MINOR 235 | ||
| 34 | #define MISC_DYNAMIC_MINOR 255 | 36 | #define MISC_DYNAMIC_MINOR 255 |
| 35 | 37 | ||
| 36 | struct device; | 38 | struct device; |
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 3196c84cc630..f65913c9f5a4 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h | |||
| @@ -230,7 +230,7 @@ static inline void *mmc_priv(struct mmc_host *host) | |||
| 230 | #define mmc_classdev(x) (&(x)->class_dev) | 230 | #define mmc_classdev(x) (&(x)->class_dev) |
| 231 | #define mmc_hostname(x) (dev_name(&(x)->class_dev)) | 231 | #define mmc_hostname(x) (dev_name(&(x)->class_dev)) |
| 232 | 232 | ||
| 233 | extern int mmc_suspend_host(struct mmc_host *, pm_message_t); | 233 | extern int mmc_suspend_host(struct mmc_host *); |
| 234 | extern int mmc_resume_host(struct mmc_host *); | 234 | extern int mmc_resume_host(struct mmc_host *); |
| 235 | 235 | ||
| 236 | extern void mmc_power_save_host(struct mmc_host *host); | 236 | extern void mmc_power_save_host(struct mmc_host *host); |
diff --git a/include/linux/mmc/sdhci-spear.h b/include/linux/mmc/sdhci-spear.h new file mode 100644 index 000000000000..9188c973f3e1 --- /dev/null +++ b/include/linux/mmc/sdhci-spear.h | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | /* | ||
| 2 | * include/linux/mmc/sdhci-spear.h | ||
| 3 | * | ||
| 4 | * SDHCI declarations specific to ST SPEAr platform | ||
| 5 | * | ||
| 6 | * Copyright (C) 2010 ST Microelectronics | ||
| 7 | * Viresh Kumar<viresh.kumar@st.com> | ||
| 8 | * | ||
| 9 | * This file is licensed under the terms of the GNU General Public | ||
| 10 | * License version 2. This program is licensed "as is" without any | ||
| 11 | * warranty of any kind, whether express or implied. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef MMC_SDHCI_SPEAR_H | ||
| 15 | #define MMC_SDHCI_SPEAR_H | ||
| 16 | |||
| 17 | #include <linux/platform_device.h> | ||
| 18 | /* | ||
| 19 | * struct sdhci_plat_data: spear sdhci platform data structure | ||
| 20 | * | ||
| 21 | * @card_power_gpio: gpio pin for enabling/disabling power to sdhci socket | ||
| 22 | * @power_active_high: if set, enable power to sdhci socket by setting | ||
| 23 | * card_power_gpio | ||
| 24 | * @power_always_enb: If set, then enable power on probe, otherwise enable only | ||
| 25 | * on card insertion and disable on card removal. | ||
| 26 | * card_int_gpio: gpio pin used for card detection | ||
| 27 | */ | ||
| 28 | struct sdhci_plat_data { | ||
| 29 | int card_power_gpio; | ||
| 30 | int power_active_high; | ||
| 31 | int power_always_enb; | ||
| 32 | int card_int_gpio; | ||
| 33 | }; | ||
| 34 | |||
| 35 | /* This function is used to set platform_data field of pdev->dev */ | ||
| 36 | static inline void | ||
| 37 | sdhci_set_plat_data(struct platform_device *pdev, struct sdhci_plat_data *data) | ||
| 38 | { | ||
| 39 | pdev->dev.platform_data = data; | ||
| 40 | } | ||
| 41 | |||
| 42 | #endif /* MMC_SDHCI_SPEAR_H */ | ||
diff --git a/include/linux/mmc/sdio_func.h b/include/linux/mmc/sdio_func.h index c6c0cceba5fe..31baaf82f458 100644 --- a/include/linux/mmc/sdio_func.h +++ b/include/linux/mmc/sdio_func.h | |||
| @@ -145,6 +145,9 @@ extern void sdio_writew(struct sdio_func *func, u16 b, | |||
| 145 | extern void sdio_writel(struct sdio_func *func, u32 b, | 145 | extern void sdio_writel(struct sdio_func *func, u32 b, |
| 146 | unsigned int addr, int *err_ret); | 146 | unsigned int addr, int *err_ret); |
| 147 | 147 | ||
| 148 | extern u8 sdio_writeb_readb(struct sdio_func *func, u8 write_byte, | ||
| 149 | unsigned int addr, int *err_ret); | ||
| 150 | |||
| 148 | extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr, | 151 | extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr, |
| 149 | void *src, int count); | 152 | void *src, int count); |
| 150 | extern int sdio_writesb(struct sdio_func *func, unsigned int addr, | 153 | extern int sdio_writesb(struct sdio_func *func, unsigned int addr, |
diff --git a/include/linux/mmc/sh_mmcif.h b/include/linux/mmc/sh_mmcif.h new file mode 100644 index 000000000000..aafe832f18aa --- /dev/null +++ b/include/linux/mmc/sh_mmcif.h | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | /* | ||
| 2 | * include/linux/mmc/sh_mmcif.h | ||
| 3 | * | ||
| 4 | * platform data for eMMC driver | ||
| 5 | * | ||
| 6 | * Copyright (C) 2010 Renesas Solutions Corp. | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License as published by | ||
| 10 | * the Free Software Foundation; either version 2 of the License. | ||
| 11 | * | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef __SH_MMCIF_H__ | ||
| 15 | #define __SH_MMCIF_H__ | ||
| 16 | |||
| 17 | /* | ||
| 18 | * MMCIF : CE_CLK_CTRL [19:16] | ||
| 19 | * 1000 : Peripheral clock / 512 | ||
| 20 | * 0111 : Peripheral clock / 256 | ||
| 21 | * 0110 : Peripheral clock / 128 | ||
| 22 | * 0101 : Peripheral clock / 64 | ||
| 23 | * 0100 : Peripheral clock / 32 | ||
| 24 | * 0011 : Peripheral clock / 16 | ||
| 25 | * 0010 : Peripheral clock / 8 | ||
| 26 | * 0001 : Peripheral clock / 4 | ||
| 27 | * 0000 : Peripheral clock / 2 | ||
| 28 | * 1111 : Peripheral clock (sup_pclk set '1') | ||
| 29 | */ | ||
| 30 | |||
| 31 | struct sh_mmcif_plat_data { | ||
| 32 | void (*set_pwr)(struct platform_device *pdev, int state); | ||
| 33 | void (*down_pwr)(struct platform_device *pdev); | ||
| 34 | u8 sup_pclk; /* 1 :SH7757, 0: SH7724/SH7372 */ | ||
| 35 | unsigned long caps; | ||
| 36 | u32 ocr; | ||
| 37 | }; | ||
| 38 | |||
| 39 | #endif /* __SH_MMCIF_H__ */ | ||
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 0fa491326c4a..b4d109e389b8 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
| @@ -671,6 +671,12 @@ void memory_present(int nid, unsigned long start, unsigned long end); | |||
| 671 | static inline void memory_present(int nid, unsigned long start, unsigned long end) {} | 671 | static inline void memory_present(int nid, unsigned long start, unsigned long end) {} |
| 672 | #endif | 672 | #endif |
| 673 | 673 | ||
| 674 | #ifdef CONFIG_HAVE_MEMORYLESS_NODES | ||
| 675 | int local_memory_node(int node_id); | ||
| 676 | #else | ||
| 677 | static inline int local_memory_node(int node_id) { return node_id; }; | ||
| 678 | #endif | ||
| 679 | |||
| 674 | #ifdef CONFIG_NEED_NODE_MEMMAP_SIZE | 680 | #ifdef CONFIG_NEED_NODE_MEMMAP_SIZE |
| 675 | unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long); | 681 | unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long); |
| 676 | #endif | 682 | #endif |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index a1bff6518166..40291f375024 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
| @@ -1407,17 +1407,25 @@ struct softnet_data { | |||
| 1407 | struct softnet_data *rps_ipi_next; | 1407 | struct softnet_data *rps_ipi_next; |
| 1408 | unsigned int cpu; | 1408 | unsigned int cpu; |
| 1409 | unsigned int input_queue_head; | 1409 | unsigned int input_queue_head; |
| 1410 | unsigned int input_queue_tail; | ||
| 1410 | #endif | 1411 | #endif |
| 1411 | unsigned dropped; | 1412 | unsigned dropped; |
| 1412 | struct sk_buff_head input_pkt_queue; | 1413 | struct sk_buff_head input_pkt_queue; |
| 1413 | struct napi_struct backlog; | 1414 | struct napi_struct backlog; |
| 1414 | }; | 1415 | }; |
| 1415 | 1416 | ||
| 1416 | static inline void input_queue_head_add(struct softnet_data *sd, | 1417 | static inline void input_queue_head_incr(struct softnet_data *sd) |
| 1417 | unsigned int len) | ||
| 1418 | { | 1418 | { |
| 1419 | #ifdef CONFIG_RPS | 1419 | #ifdef CONFIG_RPS |
| 1420 | sd->input_queue_head += len; | 1420 | sd->input_queue_head++; |
| 1421 | #endif | ||
| 1422 | } | ||
| 1423 | |||
| 1424 | static inline void input_queue_tail_incr_save(struct softnet_data *sd, | ||
| 1425 | unsigned int *qtail) | ||
| 1426 | { | ||
| 1427 | #ifdef CONFIG_RPS | ||
| 1428 | *qtail = ++sd->input_queue_tail; | ||
| 1421 | #endif | 1429 | #endif |
| 1422 | } | 1430 | } |
| 1423 | 1431 | ||
| @@ -2326,7 +2334,7 @@ do { \ | |||
| 2326 | #define netif_vdbg(priv, type, dev, format, args...) \ | 2334 | #define netif_vdbg(priv, type, dev, format, args...) \ |
| 2327 | ({ \ | 2335 | ({ \ |
| 2328 | if (0) \ | 2336 | if (0) \ |
| 2329 | netif_printk(KERN_DEBUG, dev, format, ##args); \ | 2337 | netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \ |
| 2330 | 0; \ | 2338 | 0; \ |
| 2331 | }) | 2339 | }) |
| 2332 | #endif | 2340 | #endif |
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h index c2ee5d8550cf..c00cc0c4d0b7 100644 --- a/include/linux/netfilter/x_tables.h +++ b/include/linux/netfilter/x_tables.h | |||
| @@ -333,7 +333,7 @@ struct xt_target { | |||
| 333 | /* Called when user tries to insert an entry of this type: | 333 | /* Called when user tries to insert an entry of this type: |
| 334 | hook_mask is a bitmask of hooks from which it can be | 334 | hook_mask is a bitmask of hooks from which it can be |
| 335 | called. */ | 335 | called. */ |
| 336 | /* Should return true or false, or an error code (-Exxxx). */ | 336 | /* Should return 0 on success or an error code otherwise (-Exxxx). */ |
| 337 | int (*checkentry)(const struct xt_tgchk_param *); | 337 | int (*checkentry)(const struct xt_tgchk_param *); |
| 338 | 338 | ||
| 339 | /* Called when entry of this type deleted. */ | 339 | /* Called when entry of this type deleted. */ |
diff --git a/include/linux/notifier.h b/include/linux/notifier.h index 7c3609622334..540703b555cb 100644 --- a/include/linux/notifier.h +++ b/include/linux/notifier.h | |||
| @@ -164,7 +164,10 @@ extern int __srcu_notifier_call_chain(struct srcu_notifier_head *nh, | |||
| 164 | /* Encapsulate (negative) errno value (in particular, NOTIFY_BAD <=> EPERM). */ | 164 | /* Encapsulate (negative) errno value (in particular, NOTIFY_BAD <=> EPERM). */ |
| 165 | static inline int notifier_from_errno(int err) | 165 | static inline int notifier_from_errno(int err) |
| 166 | { | 166 | { |
| 167 | return NOTIFY_STOP_MASK | (NOTIFY_OK - err); | 167 | if (err) |
| 168 | return NOTIFY_STOP_MASK | (NOTIFY_OK - err); | ||
| 169 | |||
| 170 | return NOTIFY_OK; | ||
| 168 | } | 171 | } |
| 169 | 172 | ||
| 170 | /* Restore (negative) errno value from notify return value. */ | 173 | /* Restore (negative) errno value from notify return value. */ |
diff --git a/include/linux/page_cgroup.h b/include/linux/page_cgroup.h index aef22ae2af47..5bb13b3db84d 100644 --- a/include/linux/page_cgroup.h +++ b/include/linux/page_cgroup.h | |||
| @@ -40,6 +40,7 @@ enum { | |||
| 40 | PCG_USED, /* this object is in use. */ | 40 | PCG_USED, /* this object is in use. */ |
| 41 | PCG_ACCT_LRU, /* page has been accounted for */ | 41 | PCG_ACCT_LRU, /* page has been accounted for */ |
| 42 | PCG_FILE_MAPPED, /* page is accounted as "mapped" */ | 42 | PCG_FILE_MAPPED, /* page is accounted as "mapped" */ |
| 43 | PCG_MIGRATION, /* under page migration */ | ||
| 43 | }; | 44 | }; |
| 44 | 45 | ||
| 45 | #define TESTPCGFLAG(uname, lname) \ | 46 | #define TESTPCGFLAG(uname, lname) \ |
| @@ -79,6 +80,10 @@ SETPCGFLAG(FileMapped, FILE_MAPPED) | |||
| 79 | CLEARPCGFLAG(FileMapped, FILE_MAPPED) | 80 | CLEARPCGFLAG(FileMapped, FILE_MAPPED) |
| 80 | TESTPCGFLAG(FileMapped, FILE_MAPPED) | 81 | TESTPCGFLAG(FileMapped, FILE_MAPPED) |
| 81 | 82 | ||
| 83 | SETPCGFLAG(Migration, MIGRATION) | ||
| 84 | CLEARPCGFLAG(Migration, MIGRATION) | ||
| 85 | TESTPCGFLAG(Migration, MIGRATION) | ||
| 86 | |||
| 82 | static inline int page_cgroup_nid(struct page_cgroup *pc) | 87 | static inline int page_cgroup_nid(struct page_cgroup *pc) |
| 83 | { | 88 | { |
| 84 | return page_to_nid(pc->page); | 89 | return page_to_nid(pc->page); |
diff --git a/include/linux/pci.h b/include/linux/pci.h index a327322a33ab..6a471aba3b07 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
| @@ -311,7 +311,8 @@ struct pci_dev { | |||
| 311 | unsigned int is_virtfn:1; | 311 | unsigned int is_virtfn:1; |
| 312 | unsigned int reset_fn:1; | 312 | unsigned int reset_fn:1; |
| 313 | unsigned int is_hotplug_bridge:1; | 313 | unsigned int is_hotplug_bridge:1; |
| 314 | unsigned int aer_firmware_first:1; | 314 | unsigned int __aer_firmware_first_valid:1; |
| 315 | unsigned int __aer_firmware_first:1; | ||
| 315 | pci_dev_flags_t dev_flags; | 316 | pci_dev_flags_t dev_flags; |
| 316 | atomic_t enable_cnt; /* pci_enable_device has been called */ | 317 | atomic_t enable_cnt; /* pci_enable_device has been called */ |
| 317 | 318 | ||
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 3fd5c82e0e18..fb6c91eac7e3 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h | |||
| @@ -485,6 +485,7 @@ struct perf_guest_info_callbacks { | |||
| 485 | #include <linux/ftrace.h> | 485 | #include <linux/ftrace.h> |
| 486 | #include <linux/cpu.h> | 486 | #include <linux/cpu.h> |
| 487 | #include <asm/atomic.h> | 487 | #include <asm/atomic.h> |
| 488 | #include <asm/local.h> | ||
| 488 | 489 | ||
| 489 | #define PERF_MAX_STACK_DEPTH 255 | 490 | #define PERF_MAX_STACK_DEPTH 255 |
| 490 | 491 | ||
| @@ -587,21 +588,19 @@ struct perf_mmap_data { | |||
| 587 | struct rcu_head rcu_head; | 588 | struct rcu_head rcu_head; |
| 588 | #ifdef CONFIG_PERF_USE_VMALLOC | 589 | #ifdef CONFIG_PERF_USE_VMALLOC |
| 589 | struct work_struct work; | 590 | struct work_struct work; |
| 591 | int page_order; /* allocation order */ | ||
| 590 | #endif | 592 | #endif |
| 591 | int data_order; | ||
| 592 | int nr_pages; /* nr of data pages */ | 593 | int nr_pages; /* nr of data pages */ |
| 593 | int writable; /* are we writable */ | 594 | int writable; /* are we writable */ |
| 594 | int nr_locked; /* nr pages mlocked */ | 595 | int nr_locked; /* nr pages mlocked */ |
| 595 | 596 | ||
| 596 | atomic_t poll; /* POLL_ for wakeups */ | 597 | atomic_t poll; /* POLL_ for wakeups */ |
| 597 | atomic_t events; /* event_id limit */ | ||
| 598 | 598 | ||
| 599 | atomic_long_t head; /* write position */ | 599 | local_t head; /* write position */ |
| 600 | atomic_long_t done_head; /* completed head */ | 600 | local_t nest; /* nested writers */ |
| 601 | 601 | local_t events; /* event limit */ | |
| 602 | atomic_t lock; /* concurrent writes */ | 602 | local_t wakeup; /* wakeup stamp */ |
| 603 | atomic_t wakeup; /* needs a wakeup */ | 603 | local_t lost; /* nr records lost */ |
| 604 | atomic_t lost; /* nr records lost */ | ||
| 605 | 604 | ||
| 606 | long watermark; /* wakeup watermark */ | 605 | long watermark; /* wakeup watermark */ |
| 607 | 606 | ||
| @@ -728,6 +727,7 @@ struct perf_event { | |||
| 728 | perf_overflow_handler_t overflow_handler; | 727 | perf_overflow_handler_t overflow_handler; |
| 729 | 728 | ||
| 730 | #ifdef CONFIG_EVENT_TRACING | 729 | #ifdef CONFIG_EVENT_TRACING |
| 730 | struct ftrace_event_call *tp_event; | ||
| 731 | struct event_filter *filter; | 731 | struct event_filter *filter; |
| 732 | #endif | 732 | #endif |
| 733 | 733 | ||
| @@ -803,11 +803,12 @@ struct perf_cpu_context { | |||
| 803 | struct perf_output_handle { | 803 | struct perf_output_handle { |
| 804 | struct perf_event *event; | 804 | struct perf_event *event; |
| 805 | struct perf_mmap_data *data; | 805 | struct perf_mmap_data *data; |
| 806 | unsigned long head; | 806 | unsigned long wakeup; |
| 807 | unsigned long offset; | 807 | unsigned long size; |
| 808 | void *addr; | ||
| 809 | int page; | ||
| 808 | int nmi; | 810 | int nmi; |
| 809 | int sample; | 811 | int sample; |
| 810 | int locked; | ||
| 811 | }; | 812 | }; |
| 812 | 813 | ||
| 813 | #ifdef CONFIG_PERF_EVENTS | 814 | #ifdef CONFIG_PERF_EVENTS |
| @@ -993,8 +994,9 @@ static inline bool perf_paranoid_kernel(void) | |||
| 993 | } | 994 | } |
| 994 | 995 | ||
| 995 | extern void perf_event_init(void); | 996 | extern void perf_event_init(void); |
| 996 | extern void perf_tp_event(int event_id, u64 addr, u64 count, void *record, | 997 | extern void perf_tp_event(u64 addr, u64 count, void *record, |
| 997 | int entry_size, struct pt_regs *regs); | 998 | int entry_size, struct pt_regs *regs, |
| 999 | struct hlist_head *head); | ||
| 998 | extern void perf_bp_event(struct perf_event *event, void *data); | 1000 | extern void perf_bp_event(struct perf_event *event, void *data); |
| 999 | 1001 | ||
| 1000 | #ifndef perf_misc_flags | 1002 | #ifndef perf_misc_flags |
diff --git a/include/linux/quota.h b/include/linux/quota.h index 7126a15467f1..94c1f03b50eb 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
| @@ -174,8 +174,7 @@ enum { | |||
| 174 | #include <linux/rwsem.h> | 174 | #include <linux/rwsem.h> |
| 175 | #include <linux/spinlock.h> | 175 | #include <linux/spinlock.h> |
| 176 | #include <linux/wait.h> | 176 | #include <linux/wait.h> |
| 177 | #include <linux/percpu.h> | 177 | #include <linux/percpu_counter.h> |
| 178 | #include <linux/smp.h> | ||
| 179 | 178 | ||
| 180 | #include <linux/dqblk_xfs.h> | 179 | #include <linux/dqblk_xfs.h> |
| 181 | #include <linux/dqblk_v1.h> | 180 | #include <linux/dqblk_v1.h> |
| @@ -254,6 +253,7 @@ enum { | |||
| 254 | 253 | ||
| 255 | struct dqstats { | 254 | struct dqstats { |
| 256 | int stat[_DQST_DQSTAT_LAST]; | 255 | int stat[_DQST_DQSTAT_LAST]; |
| 256 | struct percpu_counter counter[_DQST_DQSTAT_LAST]; | ||
| 257 | }; | 257 | }; |
| 258 | 258 | ||
| 259 | extern struct dqstats *dqstats_pcpu; | 259 | extern struct dqstats *dqstats_pcpu; |
| @@ -261,20 +261,12 @@ extern struct dqstats dqstats; | |||
| 261 | 261 | ||
| 262 | static inline void dqstats_inc(unsigned int type) | 262 | static inline void dqstats_inc(unsigned int type) |
| 263 | { | 263 | { |
| 264 | #ifdef CONFIG_SMP | 264 | percpu_counter_inc(&dqstats.counter[type]); |
| 265 | per_cpu_ptr(dqstats_pcpu, smp_processor_id())->stat[type]++; | ||
| 266 | #else | ||
| 267 | dqstats.stat[type]++; | ||
| 268 | #endif | ||
| 269 | } | 265 | } |
| 270 | 266 | ||
| 271 | static inline void dqstats_dec(unsigned int type) | 267 | static inline void dqstats_dec(unsigned int type) |
| 272 | { | 268 | { |
| 273 | #ifdef CONFIG_SMP | 269 | percpu_counter_dec(&dqstats.counter[type]); |
| 274 | per_cpu_ptr(dqstats_pcpu, smp_processor_id())->stat[type]--; | ||
| 275 | #else | ||
| 276 | dqstats.stat[type]--; | ||
| 277 | #endif | ||
| 278 | } | 270 | } |
| 279 | 271 | ||
| 280 | #define DQ_MOD_B 0 /* dquot modified since read */ | 272 | #define DQ_MOD_B 0 /* dquot modified since read */ |
| @@ -332,8 +324,8 @@ struct dquot_operations { | |||
| 332 | 324 | ||
| 333 | /* Operations handling requests from userspace */ | 325 | /* Operations handling requests from userspace */ |
| 334 | struct quotactl_ops { | 326 | struct quotactl_ops { |
| 335 | int (*quota_on)(struct super_block *, int, int, char *, int); | 327 | int (*quota_on)(struct super_block *, int, int, char *); |
| 336 | int (*quota_off)(struct super_block *, int, int); | 328 | int (*quota_off)(struct super_block *, int); |
| 337 | int (*quota_sync)(struct super_block *, int, int); | 329 | int (*quota_sync)(struct super_block *, int, int); |
| 338 | int (*get_info)(struct super_block *, int, struct if_dqinfo *); | 330 | int (*get_info)(struct super_block *, int, struct if_dqinfo *); |
| 339 | int (*set_info)(struct super_block *, int, struct if_dqinfo *); | 331 | int (*set_info)(struct super_block *, int, struct if_dqinfo *); |
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index 370abb1e99cb..aa36793b48bd 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h | |||
| @@ -9,6 +9,10 @@ | |||
| 9 | 9 | ||
| 10 | #include <linux/fs.h> | 10 | #include <linux/fs.h> |
| 11 | 11 | ||
| 12 | #define DQUOT_SPACE_WARN 0x1 | ||
| 13 | #define DQUOT_SPACE_RESERVE 0x2 | ||
| 14 | #define DQUOT_SPACE_NOFAIL 0x4 | ||
| 15 | |||
| 12 | static inline struct quota_info *sb_dqopt(struct super_block *sb) | 16 | static inline struct quota_info *sb_dqopt(struct super_block *sb) |
| 13 | { | 17 | { |
| 14 | return &sb->s_dquot; | 18 | return &sb->s_dquot; |
| @@ -41,15 +45,22 @@ int dquot_scan_active(struct super_block *sb, | |||
| 41 | struct dquot *dquot_alloc(struct super_block *sb, int type); | 45 | struct dquot *dquot_alloc(struct super_block *sb, int type); |
| 42 | void dquot_destroy(struct dquot *dquot); | 46 | void dquot_destroy(struct dquot *dquot); |
| 43 | 47 | ||
| 44 | int __dquot_alloc_space(struct inode *inode, qsize_t number, | 48 | int __dquot_alloc_space(struct inode *inode, qsize_t number, int flags); |
| 45 | int warn, int reserve); | 49 | void __dquot_free_space(struct inode *inode, qsize_t number, int flags); |
| 46 | void __dquot_free_space(struct inode *inode, qsize_t number, int reserve); | ||
| 47 | 50 | ||
| 48 | int dquot_alloc_inode(const struct inode *inode); | 51 | int dquot_alloc_inode(const struct inode *inode); |
| 49 | 52 | ||
| 50 | int dquot_claim_space_nodirty(struct inode *inode, qsize_t number); | 53 | int dquot_claim_space_nodirty(struct inode *inode, qsize_t number); |
| 51 | void dquot_free_inode(const struct inode *inode); | 54 | void dquot_free_inode(const struct inode *inode); |
| 52 | 55 | ||
| 56 | int dquot_disable(struct super_block *sb, int type, unsigned int flags); | ||
| 57 | /* Suspend quotas on remount RO */ | ||
| 58 | static inline int dquot_suspend(struct super_block *sb, int type) | ||
| 59 | { | ||
| 60 | return dquot_disable(sb, type, DQUOT_SUSPENDED); | ||
| 61 | } | ||
| 62 | int dquot_resume(struct super_block *sb, int type); | ||
| 63 | |||
| 53 | int dquot_commit(struct dquot *dquot); | 64 | int dquot_commit(struct dquot *dquot); |
| 54 | int dquot_acquire(struct dquot *dquot); | 65 | int dquot_acquire(struct dquot *dquot); |
| 55 | int dquot_release(struct dquot *dquot); | 66 | int dquot_release(struct dquot *dquot); |
| @@ -58,27 +69,25 @@ int dquot_mark_dquot_dirty(struct dquot *dquot); | |||
| 58 | 69 | ||
| 59 | int dquot_file_open(struct inode *inode, struct file *file); | 70 | int dquot_file_open(struct inode *inode, struct file *file); |
| 60 | 71 | ||
| 61 | int vfs_quota_on(struct super_block *sb, int type, int format_id, | 72 | int dquot_quota_on(struct super_block *sb, int type, int format_id, |
| 62 | char *path, int remount); | 73 | char *path); |
| 63 | int vfs_quota_enable(struct inode *inode, int type, int format_id, | 74 | int dquot_enable(struct inode *inode, int type, int format_id, |
| 64 | unsigned int flags); | 75 | unsigned int flags); |
| 65 | int vfs_quota_on_path(struct super_block *sb, int type, int format_id, | 76 | int dquot_quota_on_path(struct super_block *sb, int type, int format_id, |
| 66 | struct path *path); | 77 | struct path *path); |
| 67 | int vfs_quota_on_mount(struct super_block *sb, char *qf_name, | 78 | int dquot_quota_on_mount(struct super_block *sb, char *qf_name, |
| 68 | int format_id, int type); | 79 | int format_id, int type); |
| 69 | int vfs_quota_off(struct super_block *sb, int type, int remount); | 80 | int dquot_quota_off(struct super_block *sb, int type); |
| 70 | int vfs_quota_disable(struct super_block *sb, int type, unsigned int flags); | 81 | int dquot_quota_sync(struct super_block *sb, int type, int wait); |
| 71 | int vfs_quota_sync(struct super_block *sb, int type, int wait); | 82 | int dquot_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
| 72 | int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 83 | int dquot_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
| 73 | int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 84 | int dquot_get_dqblk(struct super_block *sb, int type, qid_t id, |
| 74 | int vfs_get_dqblk(struct super_block *sb, int type, qid_t id, | ||
| 75 | struct fs_disk_quota *di); | 85 | struct fs_disk_quota *di); |
| 76 | int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, | 86 | int dquot_set_dqblk(struct super_block *sb, int type, qid_t id, |
| 77 | struct fs_disk_quota *di); | 87 | struct fs_disk_quota *di); |
| 78 | 88 | ||
| 79 | int __dquot_transfer(struct inode *inode, struct dquot **transfer_to); | 89 | int __dquot_transfer(struct inode *inode, struct dquot **transfer_to); |
| 80 | int dquot_transfer(struct inode *inode, struct iattr *iattr); | 90 | int dquot_transfer(struct inode *inode, struct iattr *iattr); |
| 81 | int vfs_dq_quota_on_remount(struct super_block *sb); | ||
| 82 | 91 | ||
| 83 | static inline struct mem_dqinfo *sb_dqinfo(struct super_block *sb, int type) | 92 | static inline struct mem_dqinfo *sb_dqinfo(struct super_block *sb, int type) |
| 84 | { | 93 | { |
| @@ -145,20 +154,7 @@ static inline unsigned sb_any_quota_active(struct super_block *sb) | |||
| 145 | * Operations supported for diskquotas. | 154 | * Operations supported for diskquotas. |
| 146 | */ | 155 | */ |
| 147 | extern const struct dquot_operations dquot_operations; | 156 | extern const struct dquot_operations dquot_operations; |
| 148 | extern const struct quotactl_ops vfs_quotactl_ops; | 157 | extern const struct quotactl_ops dquot_quotactl_ops; |
| 149 | |||
| 150 | #define sb_dquot_ops (&dquot_operations) | ||
| 151 | #define sb_quotactl_ops (&vfs_quotactl_ops) | ||
| 152 | |||
| 153 | /* Cannot be called inside a transaction */ | ||
| 154 | static inline int vfs_dq_off(struct super_block *sb, int remount) | ||
| 155 | { | ||
| 156 | int ret = -ENOSYS; | ||
| 157 | |||
| 158 | if (sb->s_qcop && sb->s_qcop->quota_off) | ||
| 159 | ret = sb->s_qcop->quota_off(sb, -1, remount); | ||
| 160 | return ret; | ||
| 161 | } | ||
| 162 | 158 | ||
| 163 | #else | 159 | #else |
| 164 | 160 | ||
| @@ -203,12 +199,6 @@ static inline int sb_any_quota_active(struct super_block *sb) | |||
| 203 | return 0; | 199 | return 0; |
| 204 | } | 200 | } |
| 205 | 201 | ||
| 206 | /* | ||
| 207 | * NO-OP when quota not configured. | ||
| 208 | */ | ||
| 209 | #define sb_dquot_ops (NULL) | ||
| 210 | #define sb_quotactl_ops (NULL) | ||
| 211 | |||
| 212 | static inline void dquot_initialize(struct inode *inode) | 202 | static inline void dquot_initialize(struct inode *inode) |
| 213 | { | 203 | { |
| 214 | } | 204 | } |
| @@ -226,39 +216,45 @@ static inline void dquot_free_inode(const struct inode *inode) | |||
| 226 | { | 216 | { |
| 227 | } | 217 | } |
| 228 | 218 | ||
| 229 | static inline int vfs_dq_off(struct super_block *sb, int remount) | 219 | static inline int dquot_transfer(struct inode *inode, struct iattr *iattr) |
| 230 | { | 220 | { |
| 231 | return 0; | 221 | return 0; |
| 232 | } | 222 | } |
| 233 | 223 | ||
| 234 | static inline int vfs_dq_quota_on_remount(struct super_block *sb) | 224 | static inline int __dquot_alloc_space(struct inode *inode, qsize_t number, |
| 225 | int flags) | ||
| 235 | { | 226 | { |
| 227 | if (!(flags & DQUOT_SPACE_RESERVE)) | ||
| 228 | inode_add_bytes(inode, number); | ||
| 236 | return 0; | 229 | return 0; |
| 237 | } | 230 | } |
| 238 | 231 | ||
| 239 | static inline int dquot_transfer(struct inode *inode, struct iattr *iattr) | 232 | static inline void __dquot_free_space(struct inode *inode, qsize_t number, |
| 233 | int flags) | ||
| 234 | { | ||
| 235 | if (!(flags & DQUOT_SPACE_RESERVE)) | ||
| 236 | inode_sub_bytes(inode, number); | ||
| 237 | } | ||
| 238 | |||
| 239 | static inline int dquot_claim_space_nodirty(struct inode *inode, qsize_t number) | ||
| 240 | { | 240 | { |
| 241 | inode_add_bytes(inode, number); | ||
| 241 | return 0; | 242 | return 0; |
| 242 | } | 243 | } |
| 243 | 244 | ||
| 244 | static inline int __dquot_alloc_space(struct inode *inode, qsize_t number, | 245 | static inline int dquot_disable(struct super_block *sb, int type, |
| 245 | int warn, int reserve) | 246 | unsigned int flags) |
| 246 | { | 247 | { |
| 247 | if (!reserve) | ||
| 248 | inode_add_bytes(inode, number); | ||
| 249 | return 0; | 248 | return 0; |
| 250 | } | 249 | } |
| 251 | 250 | ||
| 252 | static inline void __dquot_free_space(struct inode *inode, qsize_t number, | 251 | static inline int dquot_suspend(struct super_block *sb, int type) |
| 253 | int reserve) | ||
| 254 | { | 252 | { |
| 255 | if (!reserve) | 253 | return 0; |
| 256 | inode_sub_bytes(inode, number); | ||
| 257 | } | 254 | } |
| 258 | 255 | ||
| 259 | static inline int dquot_claim_space_nodirty(struct inode *inode, qsize_t number) | 256 | static inline int dquot_resume(struct super_block *sb, int type) |
| 260 | { | 257 | { |
| 261 | inode_add_bytes(inode, number); | ||
| 262 | return 0; | 258 | return 0; |
| 263 | } | 259 | } |
| 264 | 260 | ||
| @@ -268,7 +264,13 @@ static inline int dquot_claim_space_nodirty(struct inode *inode, qsize_t number) | |||
| 268 | 264 | ||
| 269 | static inline int dquot_alloc_space_nodirty(struct inode *inode, qsize_t nr) | 265 | static inline int dquot_alloc_space_nodirty(struct inode *inode, qsize_t nr) |
| 270 | { | 266 | { |
| 271 | return __dquot_alloc_space(inode, nr, 1, 0); | 267 | return __dquot_alloc_space(inode, nr, DQUOT_SPACE_WARN); |
| 268 | } | ||
| 269 | |||
| 270 | static inline void dquot_alloc_space_nofail(struct inode *inode, qsize_t nr) | ||
| 271 | { | ||
| 272 | __dquot_alloc_space(inode, nr, DQUOT_SPACE_WARN|DQUOT_SPACE_NOFAIL); | ||
| 273 | mark_inode_dirty(inode); | ||
| 272 | } | 274 | } |
| 273 | 275 | ||
| 274 | static inline int dquot_alloc_space(struct inode *inode, qsize_t nr) | 276 | static inline int dquot_alloc_space(struct inode *inode, qsize_t nr) |
| @@ -286,6 +288,11 @@ static inline int dquot_alloc_block_nodirty(struct inode *inode, qsize_t nr) | |||
| 286 | return dquot_alloc_space_nodirty(inode, nr << inode->i_blkbits); | 288 | return dquot_alloc_space_nodirty(inode, nr << inode->i_blkbits); |
| 287 | } | 289 | } |
| 288 | 290 | ||
| 291 | static inline void dquot_alloc_block_nofail(struct inode *inode, qsize_t nr) | ||
| 292 | { | ||
| 293 | dquot_alloc_space_nofail(inode, nr << inode->i_blkbits); | ||
| 294 | } | ||
| 295 | |||
| 289 | static inline int dquot_alloc_block(struct inode *inode, qsize_t nr) | 296 | static inline int dquot_alloc_block(struct inode *inode, qsize_t nr) |
| 290 | { | 297 | { |
| 291 | return dquot_alloc_space(inode, nr << inode->i_blkbits); | 298 | return dquot_alloc_space(inode, nr << inode->i_blkbits); |
| @@ -293,7 +300,7 @@ static inline int dquot_alloc_block(struct inode *inode, qsize_t nr) | |||
| 293 | 300 | ||
| 294 | static inline int dquot_prealloc_block_nodirty(struct inode *inode, qsize_t nr) | 301 | static inline int dquot_prealloc_block_nodirty(struct inode *inode, qsize_t nr) |
| 295 | { | 302 | { |
| 296 | return __dquot_alloc_space(inode, nr << inode->i_blkbits, 0, 0); | 303 | return __dquot_alloc_space(inode, nr << inode->i_blkbits, 0); |
| 297 | } | 304 | } |
| 298 | 305 | ||
| 299 | static inline int dquot_prealloc_block(struct inode *inode, qsize_t nr) | 306 | static inline int dquot_prealloc_block(struct inode *inode, qsize_t nr) |
| @@ -308,7 +315,8 @@ static inline int dquot_prealloc_block(struct inode *inode, qsize_t nr) | |||
| 308 | 315 | ||
| 309 | static inline int dquot_reserve_block(struct inode *inode, qsize_t nr) | 316 | static inline int dquot_reserve_block(struct inode *inode, qsize_t nr) |
| 310 | { | 317 | { |
| 311 | return __dquot_alloc_space(inode, nr << inode->i_blkbits, 1, 1); | 318 | return __dquot_alloc_space(inode, nr << inode->i_blkbits, |
| 319 | DQUOT_SPACE_WARN|DQUOT_SPACE_RESERVE); | ||
| 312 | } | 320 | } |
| 313 | 321 | ||
| 314 | static inline int dquot_claim_block(struct inode *inode, qsize_t nr) | 322 | static inline int dquot_claim_block(struct inode *inode, qsize_t nr) |
| @@ -345,7 +353,7 @@ static inline void dquot_free_block(struct inode *inode, qsize_t nr) | |||
| 345 | static inline void dquot_release_reservation_block(struct inode *inode, | 353 | static inline void dquot_release_reservation_block(struct inode *inode, |
| 346 | qsize_t nr) | 354 | qsize_t nr) |
| 347 | { | 355 | { |
| 348 | __dquot_free_space(inode, nr << inode->i_blkbits, 1); | 356 | __dquot_free_space(inode, nr << inode->i_blkbits, DQUOT_SPACE_RESERVE); |
| 349 | } | 357 | } |
| 350 | 358 | ||
| 351 | #endif /* _LINUX_QUOTAOPS_ */ | 359 | #endif /* _LINUX_QUOTAOPS_ */ |
diff --git a/include/linux/random.h b/include/linux/random.h index 25d02fe5c9b5..fb7ab9de5f36 100644 --- a/include/linux/random.h +++ b/include/linux/random.h | |||
| @@ -40,6 +40,10 @@ struct rand_pool_info { | |||
| 40 | __u32 buf[0]; | 40 | __u32 buf[0]; |
| 41 | }; | 41 | }; |
| 42 | 42 | ||
| 43 | struct rnd_state { | ||
| 44 | __u32 s1, s2, s3; | ||
| 45 | }; | ||
| 46 | |||
| 43 | /* Exported functions */ | 47 | /* Exported functions */ |
| 44 | 48 | ||
| 45 | #ifdef __KERNEL__ | 49 | #ifdef __KERNEL__ |
| @@ -74,6 +78,30 @@ unsigned long randomize_range(unsigned long start, unsigned long end, unsigned l | |||
| 74 | u32 random32(void); | 78 | u32 random32(void); |
| 75 | void srandom32(u32 seed); | 79 | void srandom32(u32 seed); |
| 76 | 80 | ||
| 81 | u32 prandom32(struct rnd_state *); | ||
| 82 | |||
| 83 | /* | ||
| 84 | * Handle minimum values for seeds | ||
| 85 | */ | ||
| 86 | static inline u32 __seed(u32 x, u32 m) | ||
| 87 | { | ||
| 88 | return (x < m) ? x + m : x; | ||
| 89 | } | ||
| 90 | |||
| 91 | /** | ||
| 92 | * prandom32_seed - set seed for prandom32(). | ||
| 93 | * @state: pointer to state structure to receive the seed. | ||
| 94 | * @seed: arbitrary 64-bit value to use as a seed. | ||
| 95 | */ | ||
| 96 | static inline void prandom32_seed(struct rnd_state *state, u64 seed) | ||
| 97 | { | ||
| 98 | u32 i = (seed >> 32) ^ (seed << 10) ^ seed; | ||
| 99 | |||
| 100 | state->s1 = __seed(i, 1); | ||
| 101 | state->s2 = __seed(i, 7); | ||
| 102 | state->s3 = __seed(i, 15); | ||
| 103 | } | ||
| 104 | |||
| 77 | #endif /* __KERNEL___ */ | 105 | #endif /* __KERNEL___ */ |
| 78 | 106 | ||
| 79 | #endif /* _LINUX_RANDOM_H */ | 107 | #endif /* _LINUX_RANDOM_H */ |
diff --git a/include/linux/rio.h b/include/linux/rio.h index dc0c75556c63..bd6eb0ed34a7 100644 --- a/include/linux/rio.h +++ b/include/linux/rio.h | |||
| @@ -64,10 +64,13 @@ | |||
| 64 | #define RIO_INB_MBOX_RESOURCE 1 | 64 | #define RIO_INB_MBOX_RESOURCE 1 |
| 65 | #define RIO_OUTB_MBOX_RESOURCE 2 | 65 | #define RIO_OUTB_MBOX_RESOURCE 2 |
| 66 | 66 | ||
| 67 | #define RIO_PW_MSG_SIZE 64 | ||
| 68 | |||
| 67 | extern struct bus_type rio_bus_type; | 69 | extern struct bus_type rio_bus_type; |
| 68 | extern struct list_head rio_devices; /* list of all devices */ | 70 | extern struct list_head rio_devices; /* list of all devices */ |
| 69 | 71 | ||
| 70 | struct rio_mport; | 72 | struct rio_mport; |
| 73 | union rio_pw_msg; | ||
| 71 | 74 | ||
| 72 | /** | 75 | /** |
| 73 | * struct rio_dev - RIO device info | 76 | * struct rio_dev - RIO device info |
| @@ -85,11 +88,15 @@ struct rio_mport; | |||
| 85 | * @swpinfo: Switch port info | 88 | * @swpinfo: Switch port info |
| 86 | * @src_ops: Source operation capabilities | 89 | * @src_ops: Source operation capabilities |
| 87 | * @dst_ops: Destination operation capabilities | 90 | * @dst_ops: Destination operation capabilities |
| 91 | * @comp_tag: RIO component tag | ||
| 92 | * @phys_efptr: RIO device extended features pointer | ||
| 93 | * @em_efptr: RIO Error Management features pointer | ||
| 88 | * @dma_mask: Mask of bits of RIO address this device implements | 94 | * @dma_mask: Mask of bits of RIO address this device implements |
| 89 | * @rswitch: Pointer to &struct rio_switch if valid for this device | 95 | * @rswitch: Pointer to &struct rio_switch if valid for this device |
| 90 | * @driver: Driver claiming this device | 96 | * @driver: Driver claiming this device |
| 91 | * @dev: Device model device | 97 | * @dev: Device model device |
| 92 | * @riores: RIO resources this device owns | 98 | * @riores: RIO resources this device owns |
| 99 | * @pwcback: port-write callback function for this device | ||
| 93 | * @destid: Network destination ID | 100 | * @destid: Network destination ID |
| 94 | */ | 101 | */ |
| 95 | struct rio_dev { | 102 | struct rio_dev { |
| @@ -107,11 +114,15 @@ struct rio_dev { | |||
| 107 | u32 swpinfo; /* Only used for switches */ | 114 | u32 swpinfo; /* Only used for switches */ |
| 108 | u32 src_ops; | 115 | u32 src_ops; |
| 109 | u32 dst_ops; | 116 | u32 dst_ops; |
| 117 | u32 comp_tag; | ||
| 118 | u32 phys_efptr; | ||
| 119 | u32 em_efptr; | ||
| 110 | u64 dma_mask; | 120 | u64 dma_mask; |
| 111 | struct rio_switch *rswitch; /* RIO switch info */ | 121 | struct rio_switch *rswitch; /* RIO switch info */ |
| 112 | struct rio_driver *driver; /* RIO driver claiming this device */ | 122 | struct rio_driver *driver; /* RIO driver claiming this device */ |
| 113 | struct device dev; /* LDM device structure */ | 123 | struct device dev; /* LDM device structure */ |
| 114 | struct resource riores[RIO_MAX_DEV_RESOURCES]; | 124 | struct resource riores[RIO_MAX_DEV_RESOURCES]; |
| 125 | int (*pwcback) (struct rio_dev *rdev, union rio_pw_msg *msg, int step); | ||
| 115 | u16 destid; | 126 | u16 destid; |
| 116 | }; | 127 | }; |
| 117 | 128 | ||
| @@ -211,8 +222,14 @@ struct rio_net { | |||
| 211 | * @hopcount: Hopcount to this switch | 222 | * @hopcount: Hopcount to this switch |
| 212 | * @destid: Associated destid in the path | 223 | * @destid: Associated destid in the path |
| 213 | * @route_table: Copy of switch routing table | 224 | * @route_table: Copy of switch routing table |
| 225 | * @port_ok: Status of each port (one bit per port) - OK=1 or UNINIT=0 | ||
| 214 | * @add_entry: Callback for switch-specific route add function | 226 | * @add_entry: Callback for switch-specific route add function |
| 215 | * @get_entry: Callback for switch-specific route get function | 227 | * @get_entry: Callback for switch-specific route get function |
| 228 | * @clr_table: Callback for switch-specific clear route table function | ||
| 229 | * @set_domain: Callback for switch-specific domain setting function | ||
| 230 | * @get_domain: Callback for switch-specific domain get function | ||
| 231 | * @em_init: Callback for switch-specific error management initialization function | ||
| 232 | * @em_handle: Callback for switch-specific error management handler function | ||
| 216 | */ | 233 | */ |
| 217 | struct rio_switch { | 234 | struct rio_switch { |
| 218 | struct list_head node; | 235 | struct list_head node; |
| @@ -220,10 +237,19 @@ struct rio_switch { | |||
| 220 | u16 hopcount; | 237 | u16 hopcount; |
| 221 | u16 destid; | 238 | u16 destid; |
| 222 | u8 *route_table; | 239 | u8 *route_table; |
| 240 | u32 port_ok; | ||
| 223 | int (*add_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, | 241 | int (*add_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, |
| 224 | u16 table, u16 route_destid, u8 route_port); | 242 | u16 table, u16 route_destid, u8 route_port); |
| 225 | int (*get_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, | 243 | int (*get_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, |
| 226 | u16 table, u16 route_destid, u8 * route_port); | 244 | u16 table, u16 route_destid, u8 * route_port); |
| 245 | int (*clr_table) (struct rio_mport *mport, u16 destid, u8 hopcount, | ||
| 246 | u16 table); | ||
| 247 | int (*set_domain) (struct rio_mport *mport, u16 destid, u8 hopcount, | ||
| 248 | u8 sw_domain); | ||
| 249 | int (*get_domain) (struct rio_mport *mport, u16 destid, u8 hopcount, | ||
| 250 | u8 *sw_domain); | ||
| 251 | int (*em_init) (struct rio_dev *dev); | ||
| 252 | int (*em_handle) (struct rio_dev *dev, u8 swport); | ||
| 227 | }; | 253 | }; |
| 228 | 254 | ||
| 229 | /* Low-level architecture-dependent routines */ | 255 | /* Low-level architecture-dependent routines */ |
| @@ -235,6 +261,7 @@ struct rio_switch { | |||
| 235 | * @cread: Callback to perform network read of config space. | 261 | * @cread: Callback to perform network read of config space. |
| 236 | * @cwrite: Callback to perform network write of config space. | 262 | * @cwrite: Callback to perform network write of config space. |
| 237 | * @dsend: Callback to send a doorbell message. | 263 | * @dsend: Callback to send a doorbell message. |
| 264 | * @pwenable: Callback to enable/disable port-write message handling. | ||
| 238 | */ | 265 | */ |
| 239 | struct rio_ops { | 266 | struct rio_ops { |
| 240 | int (*lcread) (struct rio_mport *mport, int index, u32 offset, int len, | 267 | int (*lcread) (struct rio_mport *mport, int index, u32 offset, int len, |
| @@ -246,6 +273,7 @@ struct rio_ops { | |||
| 246 | int (*cwrite) (struct rio_mport *mport, int index, u16 destid, | 273 | int (*cwrite) (struct rio_mport *mport, int index, u16 destid, |
| 247 | u8 hopcount, u32 offset, int len, u32 data); | 274 | u8 hopcount, u32 offset, int len, u32 data); |
| 248 | int (*dsend) (struct rio_mport *mport, int index, u16 destid, u16 data); | 275 | int (*dsend) (struct rio_mport *mport, int index, u16 destid, u16 data); |
| 276 | int (*pwenable) (struct rio_mport *mport, int enable); | ||
| 249 | }; | 277 | }; |
| 250 | 278 | ||
| 251 | #define RIO_RESOURCE_MEM 0x00000100 | 279 | #define RIO_RESOURCE_MEM 0x00000100 |
| @@ -302,21 +330,28 @@ struct rio_device_id { | |||
| 302 | }; | 330 | }; |
| 303 | 331 | ||
| 304 | /** | 332 | /** |
| 305 | * struct rio_route_ops - Per-switch route operations | 333 | * struct rio_switch_ops - Per-switch operations |
| 306 | * @vid: RIO vendor ID | 334 | * @vid: RIO vendor ID |
| 307 | * @did: RIO device ID | 335 | * @did: RIO device ID |
| 308 | * @add_hook: Callback that adds a route entry | 336 | * @init_hook: Callback that performs switch device initialization |
| 309 | * @get_hook: Callback that gets a route entry | ||
| 310 | * | 337 | * |
| 311 | * Defines the operations that are necessary to manipulate the route | 338 | * Defines the operations that are necessary to initialize/control |
| 312 | * tables for a particular RIO switch device. | 339 | * a particular RIO switch device. |
| 313 | */ | 340 | */ |
| 314 | struct rio_route_ops { | 341 | struct rio_switch_ops { |
| 315 | u16 vid, did; | 342 | u16 vid, did; |
| 316 | int (*add_hook) (struct rio_mport * mport, u16 destid, u8 hopcount, | 343 | int (*init_hook) (struct rio_dev *rdev, int do_enum); |
| 317 | u16 table, u16 route_destid, u8 route_port); | 344 | }; |
| 318 | int (*get_hook) (struct rio_mport * mport, u16 destid, u8 hopcount, | 345 | |
| 319 | u16 table, u16 route_destid, u8 * route_port); | 346 | union rio_pw_msg { |
| 347 | struct { | ||
| 348 | u32 comptag; /* Component Tag CSR */ | ||
| 349 | u32 errdetect; /* Port N Error Detect CSR */ | ||
| 350 | u32 is_port; /* Implementation specific + PortID */ | ||
| 351 | u32 ltlerrdet; /* LTL Error Detect CSR */ | ||
| 352 | u32 padding[12]; | ||
| 353 | } em; | ||
| 354 | u32 raw[RIO_PW_MSG_SIZE/sizeof(u32)]; | ||
| 320 | }; | 355 | }; |
| 321 | 356 | ||
| 322 | /* Architecture and hardware-specific functions */ | 357 | /* Architecture and hardware-specific functions */ |
diff --git a/include/linux/rio_drv.h b/include/linux/rio_drv.h index c93a58a40033..edc55da717b3 100644 --- a/include/linux/rio_drv.h +++ b/include/linux/rio_drv.h | |||
| @@ -413,6 +413,12 @@ void rio_release_regions(struct rio_dev *); | |||
| 413 | int rio_request_region(struct rio_dev *, int, char *); | 413 | int rio_request_region(struct rio_dev *, int, char *); |
| 414 | void rio_release_region(struct rio_dev *, int); | 414 | void rio_release_region(struct rio_dev *, int); |
| 415 | 415 | ||
| 416 | /* Port-Write management */ | ||
| 417 | extern int rio_request_inb_pwrite(struct rio_dev *, | ||
| 418 | int (*)(struct rio_dev *, union rio_pw_msg*, int)); | ||
| 419 | extern int rio_release_inb_pwrite(struct rio_dev *); | ||
| 420 | extern int rio_inb_pwrite_handler(union rio_pw_msg *pw_msg); | ||
| 421 | |||
| 416 | /* LDM support */ | 422 | /* LDM support */ |
| 417 | int rio_register_driver(struct rio_driver *); | 423 | int rio_register_driver(struct rio_driver *); |
| 418 | void rio_unregister_driver(struct rio_driver *); | 424 | void rio_unregister_driver(struct rio_driver *); |
diff --git a/include/linux/rio_ids.h b/include/linux/rio_ids.h index 919d4e07d54e..db50e1c288b7 100644 --- a/include/linux/rio_ids.h +++ b/include/linux/rio_ids.h | |||
| @@ -20,5 +20,19 @@ | |||
| 20 | 20 | ||
| 21 | #define RIO_VID_TUNDRA 0x000d | 21 | #define RIO_VID_TUNDRA 0x000d |
| 22 | #define RIO_DID_TSI500 0x0500 | 22 | #define RIO_DID_TSI500 0x0500 |
| 23 | #define RIO_DID_TSI568 0x0568 | ||
| 24 | #define RIO_DID_TSI572 0x0572 | ||
| 25 | #define RIO_DID_TSI574 0x0574 | ||
| 26 | #define RIO_DID_TSI576 0x0578 /* Same ID as Tsi578 */ | ||
| 27 | #define RIO_DID_TSI577 0x0577 | ||
| 28 | #define RIO_DID_TSI578 0x0578 | ||
| 29 | |||
| 30 | #define RIO_VID_IDT 0x0038 | ||
| 31 | #define RIO_DID_IDT70K200 0x0310 | ||
| 32 | #define RIO_DID_IDTCPS8 0x035c | ||
| 33 | #define RIO_DID_IDTCPS12 0x035d | ||
| 34 | #define RIO_DID_IDTCPS16 0x035b | ||
| 35 | #define RIO_DID_IDTCPS6Q 0x035f | ||
| 36 | #define RIO_DID_IDTCPS10Q 0x035e | ||
| 23 | 37 | ||
| 24 | #endif /* LINUX_RIO_IDS_H */ | 38 | #endif /* LINUX_RIO_IDS_H */ |
diff --git a/include/linux/rio_regs.h b/include/linux/rio_regs.h index 326540f9b54e..aedee0489fb4 100644 --- a/include/linux/rio_regs.h +++ b/include/linux/rio_regs.h | |||
| @@ -39,6 +39,8 @@ | |||
| 39 | #define RIO_PEF_INB_MBOX2 0x00200000 /* [II] Mailbox 2 */ | 39 | #define RIO_PEF_INB_MBOX2 0x00200000 /* [II] Mailbox 2 */ |
| 40 | #define RIO_PEF_INB_MBOX3 0x00100000 /* [II] Mailbox 3 */ | 40 | #define RIO_PEF_INB_MBOX3 0x00100000 /* [II] Mailbox 3 */ |
| 41 | #define RIO_PEF_INB_DOORBELL 0x00080000 /* [II] Doorbells */ | 41 | #define RIO_PEF_INB_DOORBELL 0x00080000 /* [II] Doorbells */ |
| 42 | #define RIO_PEF_EXT_RT 0x00000200 /* [III, 1.3] Extended route table support */ | ||
| 43 | #define RIO_PEF_STD_RT 0x00000100 /* [III, 1.3] Standard route table support */ | ||
| 42 | #define RIO_PEF_CTLS 0x00000010 /* [III] CTLS */ | 44 | #define RIO_PEF_CTLS 0x00000010 /* [III] CTLS */ |
| 43 | #define RIO_PEF_EXT_FEATURES 0x00000008 /* [I] EFT_PTR valid */ | 45 | #define RIO_PEF_EXT_FEATURES 0x00000008 /* [I] EFT_PTR valid */ |
| 44 | #define RIO_PEF_ADDR_66 0x00000004 /* [I] 66 bits */ | 46 | #define RIO_PEF_ADDR_66 0x00000004 /* [I] 66 bits */ |
| @@ -91,7 +93,10 @@ | |||
| 91 | #define RIO_OPS_ATOMIC_CLR 0x00000010 /* [I] Atomic clr op */ | 93 | #define RIO_OPS_ATOMIC_CLR 0x00000010 /* [I] Atomic clr op */ |
| 92 | #define RIO_OPS_PORT_WRITE 0x00000004 /* [I] Port-write op */ | 94 | #define RIO_OPS_PORT_WRITE 0x00000004 /* [I] Port-write op */ |
| 93 | 95 | ||
| 94 | /* 0x20-0x3c *//* Reserved */ | 96 | /* 0x20-0x30 *//* Reserved */ |
| 97 | |||
| 98 | #define RIO_SWITCH_RT_LIMIT 0x34 /* [III, 1.3] Switch Route Table Destination ID Limit CAR */ | ||
| 99 | #define RIO_RT_MAX_DESTID 0x0000ffff | ||
| 95 | 100 | ||
| 96 | #define RIO_MBOX_CSR 0x40 /* [II] Mailbox CSR */ | 101 | #define RIO_MBOX_CSR 0x40 /* [II] Mailbox CSR */ |
| 97 | #define RIO_MBOX0_AVAIL 0x80000000 /* [II] Mbox 0 avail */ | 102 | #define RIO_MBOX0_AVAIL 0x80000000 /* [II] Mbox 0 avail */ |
| @@ -153,7 +158,11 @@ | |||
| 153 | #define RIO_HOST_DID_LOCK_CSR 0x68 /* [III] Host Base Device ID Lock CSR */ | 158 | #define RIO_HOST_DID_LOCK_CSR 0x68 /* [III] Host Base Device ID Lock CSR */ |
| 154 | #define RIO_COMPONENT_TAG_CSR 0x6c /* [III] Component Tag CSR */ | 159 | #define RIO_COMPONENT_TAG_CSR 0x6c /* [III] Component Tag CSR */ |
| 155 | 160 | ||
| 156 | /* 0x70-0xf8 *//* Reserved */ | 161 | #define RIO_STD_RTE_CONF_DESTID_SEL_CSR 0x70 |
| 162 | #define RIO_STD_RTE_CONF_PORT_SEL_CSR 0x74 | ||
| 163 | #define RIO_STD_RTE_DEFAULT_PORT 0x78 | ||
| 164 | |||
| 165 | /* 0x7c-0xf8 *//* Reserved */ | ||
| 157 | /* 0x100-0xfff8 *//* [I] Extended Features Space */ | 166 | /* 0x100-0xfff8 *//* [I] Extended Features Space */ |
| 158 | /* 0x10000-0xfffff8 *//* [I] Implementation-defined Space */ | 167 | /* 0x10000-0xfffff8 *//* [I] Implementation-defined Space */ |
| 159 | 168 | ||
| @@ -183,9 +192,14 @@ | |||
| 183 | #define RIO_EFB_PAR_EP_ID 0x0001 /* [IV] LP/LVDS EP Devices */ | 192 | #define RIO_EFB_PAR_EP_ID 0x0001 /* [IV] LP/LVDS EP Devices */ |
| 184 | #define RIO_EFB_PAR_EP_REC_ID 0x0002 /* [IV] LP/LVDS EP Recovery Devices */ | 193 | #define RIO_EFB_PAR_EP_REC_ID 0x0002 /* [IV] LP/LVDS EP Recovery Devices */ |
| 185 | #define RIO_EFB_PAR_EP_FREE_ID 0x0003 /* [IV] LP/LVDS EP Free Devices */ | 194 | #define RIO_EFB_PAR_EP_FREE_ID 0x0003 /* [IV] LP/LVDS EP Free Devices */ |
| 195 | #define RIO_EFB_SER_EP_ID_V13P 0x0001 /* [VI] LP/Serial EP Devices, RapidIO Spec ver 1.3 and above */ | ||
| 196 | #define RIO_EFB_SER_EP_REC_ID_V13P 0x0002 /* [VI] LP/Serial EP Recovery Devices, RapidIO Spec ver 1.3 and above */ | ||
| 197 | #define RIO_EFB_SER_EP_FREE_ID_V13P 0x0003 /* [VI] LP/Serial EP Free Devices, RapidIO Spec ver 1.3 and above */ | ||
| 186 | #define RIO_EFB_SER_EP_ID 0x0004 /* [VI] LP/Serial EP Devices */ | 198 | #define RIO_EFB_SER_EP_ID 0x0004 /* [VI] LP/Serial EP Devices */ |
| 187 | #define RIO_EFB_SER_EP_REC_ID 0x0005 /* [VI] LP/Serial EP Recovery Devices */ | 199 | #define RIO_EFB_SER_EP_REC_ID 0x0005 /* [VI] LP/Serial EP Recovery Devices */ |
| 188 | #define RIO_EFB_SER_EP_FREE_ID 0x0006 /* [VI] LP/Serial EP Free Devices */ | 200 | #define RIO_EFB_SER_EP_FREE_ID 0x0006 /* [VI] LP/Serial EP Free Devices */ |
| 201 | #define RIO_EFB_SER_EP_FREC_ID 0x0009 /* [VI] LP/Serial EP Free Recovery Devices */ | ||
| 202 | #define RIO_EFB_ERR_MGMNT 0x0007 /* [VIII] Error Management Extensions */ | ||
| 189 | 203 | ||
| 190 | /* | 204 | /* |
| 191 | * Physical 8/16 LP-LVDS | 205 | * Physical 8/16 LP-LVDS |
| @@ -201,15 +215,71 @@ | |||
| 201 | #define RIO_PORT_MNT_HEADER 0x0000 | 215 | #define RIO_PORT_MNT_HEADER 0x0000 |
| 202 | #define RIO_PORT_REQ_CTL_CSR 0x0020 | 216 | #define RIO_PORT_REQ_CTL_CSR 0x0020 |
| 203 | #define RIO_PORT_RSP_CTL_CSR 0x0024 /* 0x0001/0x0002 */ | 217 | #define RIO_PORT_RSP_CTL_CSR 0x0024 /* 0x0001/0x0002 */ |
| 218 | #define RIO_PORT_LINKTO_CTL_CSR 0x0020 /* Serial */ | ||
| 219 | #define RIO_PORT_RSPTO_CTL_CSR 0x0024 /* Serial */ | ||
| 204 | #define RIO_PORT_GEN_CTL_CSR 0x003c | 220 | #define RIO_PORT_GEN_CTL_CSR 0x003c |
| 205 | #define RIO_PORT_GEN_HOST 0x80000000 | 221 | #define RIO_PORT_GEN_HOST 0x80000000 |
| 206 | #define RIO_PORT_GEN_MASTER 0x40000000 | 222 | #define RIO_PORT_GEN_MASTER 0x40000000 |
| 207 | #define RIO_PORT_GEN_DISCOVERED 0x20000000 | 223 | #define RIO_PORT_GEN_DISCOVERED 0x20000000 |
| 208 | #define RIO_PORT_N_MNT_REQ_CSR(x) (0x0040 + x*0x20) /* 0x0002 */ | 224 | #define RIO_PORT_N_MNT_REQ_CSR(x) (0x0040 + x*0x20) /* 0x0002 */ |
| 209 | #define RIO_PORT_N_MNT_RSP_CSR(x) (0x0044 + x*0x20) /* 0x0002 */ | 225 | #define RIO_PORT_N_MNT_RSP_CSR(x) (0x0044 + x*0x20) /* 0x0002 */ |
| 226 | #define RIO_PORT_N_MNT_RSP_RVAL 0x80000000 /* Response Valid */ | ||
| 227 | #define RIO_PORT_N_MNT_RSP_ASTAT 0x000003e0 /* ackID Status */ | ||
| 228 | #define RIO_PORT_N_MNT_RSP_LSTAT 0x0000001f /* Link Status */ | ||
| 210 | #define RIO_PORT_N_ACK_STS_CSR(x) (0x0048 + x*0x20) /* 0x0002 */ | 229 | #define RIO_PORT_N_ACK_STS_CSR(x) (0x0048 + x*0x20) /* 0x0002 */ |
| 211 | #define RIO_PORT_N_ERR_STS_CSR(x) (0x58 + x*0x20) | 230 | #define RIO_PORT_N_ACK_CLEAR 0x80000000 |
| 212 | #define PORT_N_ERR_STS_PORT_OK 0x00000002 | 231 | #define RIO_PORT_N_ACK_INBOUND 0x1f000000 |
| 213 | #define RIO_PORT_N_CTL_CSR(x) (0x5c + x*0x20) | 232 | #define RIO_PORT_N_ACK_OUTSTAND 0x00001f00 |
| 233 | #define RIO_PORT_N_ACK_OUTBOUND 0x0000001f | ||
| 234 | #define RIO_PORT_N_ERR_STS_CSR(x) (0x0058 + x*0x20) | ||
| 235 | #define RIO_PORT_N_ERR_STS_PW_OUT_ES 0x00010000 /* Output Error-stopped */ | ||
| 236 | #define RIO_PORT_N_ERR_STS_PW_INP_ES 0x00000100 /* Input Error-stopped */ | ||
| 237 | #define RIO_PORT_N_ERR_STS_PW_PEND 0x00000010 /* Port-Write Pending */ | ||
| 238 | #define RIO_PORT_N_ERR_STS_PORT_ERR 0x00000004 | ||
| 239 | #define RIO_PORT_N_ERR_STS_PORT_OK 0x00000002 | ||
| 240 | #define RIO_PORT_N_ERR_STS_PORT_UNINIT 0x00000001 | ||
| 241 | #define RIO_PORT_N_ERR_STS_CLR_MASK 0x07120204 | ||
| 242 | #define RIO_PORT_N_CTL_CSR(x) (0x005c + x*0x20) | ||
| 243 | #define RIO_PORT_N_CTL_PWIDTH 0xc0000000 | ||
| 244 | #define RIO_PORT_N_CTL_PWIDTH_1 0x00000000 | ||
| 245 | #define RIO_PORT_N_CTL_PWIDTH_4 0x40000000 | ||
| 246 | #define RIO_PORT_N_CTL_P_TYP_SER 0x00000001 | ||
| 247 | #define RIO_PORT_N_CTL_LOCKOUT 0x00000002 | ||
| 248 | #define RIO_PORT_N_CTL_EN_RX_SER 0x00200000 | ||
| 249 | #define RIO_PORT_N_CTL_EN_TX_SER 0x00400000 | ||
| 250 | #define RIO_PORT_N_CTL_EN_RX_PAR 0x08000000 | ||
| 251 | #define RIO_PORT_N_CTL_EN_TX_PAR 0x40000000 | ||
| 252 | |||
| 253 | /* | ||
| 254 | * Error Management Extensions (RapidIO 1.3+, Part 8) | ||
| 255 | * | ||
| 256 | * Extended Features Block ID=0x0007 | ||
| 257 | */ | ||
| 258 | |||
| 259 | /* General EM Registers (Common for all Ports) */ | ||
| 260 | |||
| 261 | #define RIO_EM_EFB_HEADER 0x000 /* Error Management Extensions Block Header */ | ||
| 262 | #define RIO_EM_LTL_ERR_DETECT 0x008 /* Logical/Transport Layer Error Detect CSR */ | ||
| 263 | #define RIO_EM_LTL_ERR_EN 0x00c /* Logical/Transport Layer Error Enable CSR */ | ||
| 264 | #define RIO_EM_LTL_HIADDR_CAP 0x010 /* Logical/Transport Layer High Address Capture CSR */ | ||
| 265 | #define RIO_EM_LTL_ADDR_CAP 0x014 /* Logical/Transport Layer Address Capture CSR */ | ||
| 266 | #define RIO_EM_LTL_DEVID_CAP 0x018 /* Logical/Transport Layer Device ID Capture CSR */ | ||
| 267 | #define RIO_EM_LTL_CTRL_CAP 0x01c /* Logical/Transport Layer Control Capture CSR */ | ||
| 268 | #define RIO_EM_PW_TGT_DEVID 0x028 /* Port-write Target deviceID CSR */ | ||
| 269 | #define RIO_EM_PKT_TTL 0x02c /* Packet Time-to-live CSR */ | ||
| 270 | |||
| 271 | /* Per-Port EM Registers */ | ||
| 272 | |||
| 273 | #define RIO_EM_PN_ERR_DETECT(x) (0x040 + x*0x40) /* Port N Error Detect CSR */ | ||
| 274 | #define REM_PED_IMPL_SPEC 0x80000000 | ||
| 275 | #define REM_PED_LINK_TO 0x00000001 | ||
| 276 | #define RIO_EM_PN_ERRRATE_EN(x) (0x044 + x*0x40) /* Port N Error Rate Enable CSR */ | ||
| 277 | #define RIO_EM_PN_ATTRIB_CAP(x) (0x048 + x*0x40) /* Port N Attributes Capture CSR */ | ||
| 278 | #define RIO_EM_PN_PKT_CAP_0(x) (0x04c + x*0x40) /* Port N Packet/Control Symbol Capture 0 CSR */ | ||
| 279 | #define RIO_EM_PN_PKT_CAP_1(x) (0x050 + x*0x40) /* Port N Packet Capture 1 CSR */ | ||
| 280 | #define RIO_EM_PN_PKT_CAP_2(x) (0x054 + x*0x40) /* Port N Packet Capture 2 CSR */ | ||
| 281 | #define RIO_EM_PN_PKT_CAP_3(x) (0x058 + x*0x40) /* Port N Packet Capture 3 CSR */ | ||
| 282 | #define RIO_EM_PN_ERRRATE(x) (0x068 + x*0x40) /* Port N Error Rate CSR */ | ||
| 283 | #define RIO_EM_PN_ERRRATE_TR(x) (0x06c + x*0x40) /* Port N Error Rate Threshold CSR */ | ||
| 214 | 284 | ||
| 215 | #endif /* LINUX_RIO_REGS_H */ | 285 | #endif /* LINUX_RIO_REGS_H */ |
diff --git a/include/linux/sched.h b/include/linux/sched.h index c0151ffd3541..f118809c953f 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -268,7 +268,6 @@ extern void init_idle(struct task_struct *idle, int cpu); | |||
| 268 | extern void init_idle_bootup_task(struct task_struct *idle); | 268 | extern void init_idle_bootup_task(struct task_struct *idle); |
| 269 | 269 | ||
| 270 | extern int runqueue_is_locked(int cpu); | 270 | extern int runqueue_is_locked(int cpu); |
| 271 | extern void task_rq_unlock_wait(struct task_struct *p); | ||
| 272 | 271 | ||
| 273 | extern cpumask_var_t nohz_cpu_mask; | 272 | extern cpumask_var_t nohz_cpu_mask; |
| 274 | #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ) | 273 | #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ) |
| @@ -527,8 +526,9 @@ struct thread_group_cputimer { | |||
| 527 | * the locking of signal_struct. | 526 | * the locking of signal_struct. |
| 528 | */ | 527 | */ |
| 529 | struct signal_struct { | 528 | struct signal_struct { |
| 530 | atomic_t count; | 529 | atomic_t sigcnt; |
| 531 | atomic_t live; | 530 | atomic_t live; |
| 531 | int nr_threads; | ||
| 532 | 532 | ||
| 533 | wait_queue_head_t wait_chldexit; /* for wait4() */ | 533 | wait_queue_head_t wait_chldexit; /* for wait4() */ |
| 534 | 534 | ||
| @@ -1423,6 +1423,7 @@ struct task_struct { | |||
| 1423 | nodemask_t mems_allowed; /* Protected by alloc_lock */ | 1423 | nodemask_t mems_allowed; /* Protected by alloc_lock */ |
| 1424 | int mems_allowed_change_disable; | 1424 | int mems_allowed_change_disable; |
| 1425 | int cpuset_mem_spread_rotor; | 1425 | int cpuset_mem_spread_rotor; |
| 1426 | int cpuset_slab_spread_rotor; | ||
| 1426 | #endif | 1427 | #endif |
| 1427 | #ifdef CONFIG_CGROUPS | 1428 | #ifdef CONFIG_CGROUPS |
| 1428 | /* Control Group info protected by css_set_lock */ | 1429 | /* Control Group info protected by css_set_lock */ |
| @@ -2035,7 +2036,7 @@ extern int do_notify_parent(struct task_struct *, int); | |||
| 2035 | extern void __wake_up_parent(struct task_struct *p, struct task_struct *parent); | 2036 | extern void __wake_up_parent(struct task_struct *p, struct task_struct *parent); |
| 2036 | extern void force_sig(int, struct task_struct *); | 2037 | extern void force_sig(int, struct task_struct *); |
| 2037 | extern int send_sig(int, struct task_struct *, int); | 2038 | extern int send_sig(int, struct task_struct *, int); |
| 2038 | extern void zap_other_threads(struct task_struct *p); | 2039 | extern int zap_other_threads(struct task_struct *p); |
| 2039 | extern struct sigqueue *sigqueue_alloc(void); | 2040 | extern struct sigqueue *sigqueue_alloc(void); |
| 2040 | extern void sigqueue_free(struct sigqueue *); | 2041 | extern void sigqueue_free(struct sigqueue *); |
| 2041 | extern int send_sigqueue(struct sigqueue *, struct task_struct *, int group); | 2042 | extern int send_sigqueue(struct sigqueue *, struct task_struct *, int group); |
| @@ -2100,7 +2101,6 @@ extern void flush_thread(void); | |||
| 2100 | extern void exit_thread(void); | 2101 | extern void exit_thread(void); |
| 2101 | 2102 | ||
| 2102 | extern void exit_files(struct task_struct *); | 2103 | extern void exit_files(struct task_struct *); |
| 2103 | extern void __cleanup_signal(struct signal_struct *); | ||
| 2104 | extern void __cleanup_sighand(struct sighand_struct *); | 2104 | extern void __cleanup_sighand(struct sighand_struct *); |
| 2105 | 2105 | ||
| 2106 | extern void exit_itimers(struct signal_struct *); | 2106 | extern void exit_itimers(struct signal_struct *); |
| @@ -2147,6 +2147,11 @@ extern bool current_is_single_threaded(void); | |||
| 2147 | #define while_each_thread(g, t) \ | 2147 | #define while_each_thread(g, t) \ |
| 2148 | while ((t = next_thread(t)) != g) | 2148 | while ((t = next_thread(t)) != g) |
| 2149 | 2149 | ||
| 2150 | static inline int get_nr_threads(struct task_struct *tsk) | ||
| 2151 | { | ||
| 2152 | return tsk->signal->nr_threads; | ||
| 2153 | } | ||
| 2154 | |||
| 2150 | /* de_thread depends on thread_group_leader not being a pid based check */ | 2155 | /* de_thread depends on thread_group_leader not being a pid based check */ |
| 2151 | #define thread_group_leader(p) (p == p->group_leader) | 2156 | #define thread_group_leader(p) (p == p->group_leader) |
| 2152 | 2157 | ||
| @@ -2393,10 +2398,6 @@ static inline void thread_group_cputime_init(struct signal_struct *sig) | |||
| 2393 | spin_lock_init(&sig->cputimer.lock); | 2398 | spin_lock_init(&sig->cputimer.lock); |
| 2394 | } | 2399 | } |
| 2395 | 2400 | ||
| 2396 | static inline void thread_group_cputime_free(struct signal_struct *sig) | ||
| 2397 | { | ||
| 2398 | } | ||
| 2399 | |||
| 2400 | /* | 2401 | /* |
| 2401 | * Reevaluate whether the task has signals pending delivery. | 2402 | * Reevaluate whether the task has signals pending delivery. |
| 2402 | * Wake the task if so. | 2403 | * Wake the task if so. |
diff --git a/include/linux/sdhci-pltfm.h b/include/linux/sdhci-pltfm.h new file mode 100644 index 000000000000..0239bd70241e --- /dev/null +++ b/include/linux/sdhci-pltfm.h | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | /* | ||
| 2 | * Platform data declarations for the sdhci-pltfm driver. | ||
| 3 | * | ||
| 4 | * Copyright (c) 2010 MontaVista Software, LLC. | ||
| 5 | * | ||
| 6 | * Author: Anton Vorontsov <avorontsov@ru.mvista.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License as published by | ||
| 10 | * the Free Software Foundation; either version 2 of the License, or (at | ||
| 11 | * your option) any later version. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef _SDHCI_PLTFM_H | ||
| 15 | #define _SDHCI_PLTFM_H | ||
| 16 | |||
| 17 | struct sdhci_ops; | ||
| 18 | struct sdhci_host; | ||
| 19 | |||
| 20 | /** | ||
| 21 | * struct sdhci_pltfm_data - SDHCI platform-specific information & hooks | ||
| 22 | * @ops: optional pointer to the platform-provided SDHCI ops | ||
| 23 | * @quirks: optional SDHCI quirks | ||
| 24 | * @init: optional hook that is called during device probe, before the | ||
| 25 | * driver tries to access any SDHCI registers | ||
| 26 | * @exit: optional hook that is called during device removal | ||
| 27 | */ | ||
| 28 | struct sdhci_pltfm_data { | ||
| 29 | struct sdhci_ops *ops; | ||
| 30 | unsigned int quirks; | ||
| 31 | int (*init)(struct sdhci_host *host); | ||
| 32 | void (*exit)(struct sdhci_host *host); | ||
| 33 | }; | ||
| 34 | |||
| 35 | #endif /* _SDHCI_PLTFM_H */ | ||
diff --git a/include/linux/sem.h b/include/linux/sem.h index 8a4adbef8a0f..f2961afa2f66 100644 --- a/include/linux/sem.h +++ b/include/linux/sem.h | |||
| @@ -79,6 +79,7 @@ struct seminfo { | |||
| 79 | #ifdef __KERNEL__ | 79 | #ifdef __KERNEL__ |
| 80 | #include <asm/atomic.h> | 80 | #include <asm/atomic.h> |
| 81 | #include <linux/rcupdate.h> | 81 | #include <linux/rcupdate.h> |
| 82 | #include <linux/cache.h> | ||
| 82 | 83 | ||
| 83 | struct task_struct; | 84 | struct task_struct; |
| 84 | 85 | ||
| @@ -91,7 +92,8 @@ struct sem { | |||
| 91 | 92 | ||
| 92 | /* One sem_array data structure for each set of semaphores in the system. */ | 93 | /* One sem_array data structure for each set of semaphores in the system. */ |
| 93 | struct sem_array { | 94 | struct sem_array { |
| 94 | struct kern_ipc_perm sem_perm; /* permissions .. see ipc.h */ | 95 | struct kern_ipc_perm ____cacheline_aligned_in_smp |
| 96 | sem_perm; /* permissions .. see ipc.h */ | ||
| 95 | time_t sem_otime; /* last semop time */ | 97 | time_t sem_otime; /* last semop time */ |
| 96 | time_t sem_ctime; /* last change time */ | 98 | time_t sem_ctime; /* last change time */ |
| 97 | struct sem *sem_base; /* ptr to first semaphore in array */ | 99 | struct sem *sem_base; /* ptr to first semaphore in array */ |
diff --git a/include/linux/sfi.h b/include/linux/sfi.h index 9a6f7607174e..0299b4ce63db 100644 --- a/include/linux/sfi.h +++ b/include/linux/sfi.h | |||
| @@ -73,6 +73,8 @@ | |||
| 73 | #define SFI_SIG_SPIB "SPIB" | 73 | #define SFI_SIG_SPIB "SPIB" |
| 74 | #define SFI_SIG_I2CB "I2CB" | 74 | #define SFI_SIG_I2CB "I2CB" |
| 75 | #define SFI_SIG_GPEM "GPEM" | 75 | #define SFI_SIG_GPEM "GPEM" |
| 76 | #define SFI_SIG_DEVS "DEVS" | ||
| 77 | #define SFI_SIG_GPIO "GPIO" | ||
| 76 | 78 | ||
| 77 | #define SFI_SIGNATURE_SIZE 4 | 79 | #define SFI_SIGNATURE_SIZE 4 |
| 78 | #define SFI_OEM_ID_SIZE 6 | 80 | #define SFI_OEM_ID_SIZE 6 |
| @@ -145,6 +147,27 @@ struct sfi_rtc_table_entry { | |||
| 145 | u32 irq; | 147 | u32 irq; |
| 146 | } __packed; | 148 | } __packed; |
| 147 | 149 | ||
| 150 | struct sfi_device_table_entry { | ||
| 151 | u8 type; /* bus type, I2C, SPI or ...*/ | ||
| 152 | #define SFI_DEV_TYPE_SPI 0 | ||
| 153 | #define SFI_DEV_TYPE_I2C 1 | ||
| 154 | #define SFI_DEV_TYPE_UART 2 | ||
| 155 | #define SFI_DEV_TYPE_HSI 3 | ||
| 156 | #define SFI_DEV_TYPE_IPC 4 | ||
| 157 | |||
| 158 | u8 host_num; /* attached to host 0, 1...*/ | ||
| 159 | u16 addr; | ||
| 160 | u8 irq; | ||
| 161 | u32 max_freq; | ||
| 162 | char name[16]; | ||
| 163 | } __packed; | ||
| 164 | |||
| 165 | struct sfi_gpio_table_entry { | ||
| 166 | char controller_name[16]; | ||
| 167 | u16 pin_no; | ||
| 168 | char pin_name[16]; | ||
| 169 | } __packed; | ||
| 170 | |||
| 148 | struct sfi_spi_table_entry { | 171 | struct sfi_spi_table_entry { |
| 149 | u16 host_num; /* attached to host 0, 1...*/ | 172 | u16 host_num; /* attached to host 0, 1...*/ |
| 150 | u16 cs; /* chip select */ | 173 | u16 cs; /* chip select */ |
| @@ -166,7 +189,6 @@ struct sfi_gpe_table_entry { | |||
| 166 | u16 phys_id; /* physical GPE id */ | 189 | u16 phys_id; /* physical GPE id */ |
| 167 | } __packed; | 190 | } __packed; |
| 168 | 191 | ||
| 169 | |||
| 170 | typedef int (*sfi_table_handler) (struct sfi_table_header *table); | 192 | typedef int (*sfi_table_handler) (struct sfi_table_header *table); |
| 171 | 193 | ||
| 172 | #ifdef CONFIG_SFI | 194 | #ifdef CONFIG_SFI |
diff --git a/include/linux/swap.h b/include/linux/swap.h index b6b614364dd8..ff4acea9bbdb 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
| @@ -282,6 +282,11 @@ extern void kswapd_stop(int nid); | |||
| 282 | extern int shmem_unuse(swp_entry_t entry, struct page *page); | 282 | extern int shmem_unuse(swp_entry_t entry, struct page *page); |
| 283 | #endif /* CONFIG_MMU */ | 283 | #endif /* CONFIG_MMU */ |
| 284 | 284 | ||
| 285 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR | ||
| 286 | extern void mem_cgroup_get_shmem_target(struct inode *inode, pgoff_t pgoff, | ||
| 287 | struct page **pagep, swp_entry_t *ent); | ||
| 288 | #endif | ||
| 289 | |||
| 285 | extern void swap_unplug_io_fn(struct backing_dev_info *, struct page *); | 290 | extern void swap_unplug_io_fn(struct backing_dev_info *, struct page *); |
| 286 | 291 | ||
| 287 | #ifdef CONFIG_SWAP | 292 | #ifdef CONFIG_SWAP |
diff --git a/include/linux/swiotlb.h b/include/linux/swiotlb.h index febedcf67c7e..81a4e213c6cf 100644 --- a/include/linux/swiotlb.h +++ b/include/linux/swiotlb.h | |||
| @@ -73,16 +73,6 @@ extern void | |||
| 73 | swiotlb_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg, | 73 | swiotlb_sync_sg_for_device(struct device *hwdev, struct scatterlist *sg, |
| 74 | int nelems, enum dma_data_direction dir); | 74 | int nelems, enum dma_data_direction dir); |
| 75 | 75 | ||
| 76 | extern void | ||
| 77 | swiotlb_sync_single_range_for_cpu(struct device *hwdev, dma_addr_t dev_addr, | ||
| 78 | unsigned long offset, size_t size, | ||
| 79 | enum dma_data_direction dir); | ||
| 80 | |||
| 81 | extern void | ||
| 82 | swiotlb_sync_single_range_for_device(struct device *hwdev, dma_addr_t dev_addr, | ||
| 83 | unsigned long offset, size_t size, | ||
| 84 | enum dma_data_direction dir); | ||
| 85 | |||
| 86 | extern int | 76 | extern int |
| 87 | swiotlb_dma_mapping_error(struct device *hwdev, dma_addr_t dma_addr); | 77 | swiotlb_dma_mapping_error(struct device *hwdev, dma_addr_t dma_addr); |
| 88 | 78 | ||
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 057929b0a651..a1a86a53bc73 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
| @@ -103,22 +103,6 @@ struct perf_event_attr; | |||
| 103 | #define __SC_TEST5(t5, a5, ...) __SC_TEST(t5); __SC_TEST4(__VA_ARGS__) | 103 | #define __SC_TEST5(t5, a5, ...) __SC_TEST(t5); __SC_TEST4(__VA_ARGS__) |
| 104 | #define __SC_TEST6(t6, a6, ...) __SC_TEST(t6); __SC_TEST5(__VA_ARGS__) | 104 | #define __SC_TEST6(t6, a6, ...) __SC_TEST(t6); __SC_TEST5(__VA_ARGS__) |
| 105 | 105 | ||
| 106 | #ifdef CONFIG_PERF_EVENTS | ||
| 107 | |||
| 108 | #define TRACE_SYS_ENTER_PERF_INIT(sname) \ | ||
| 109 | .perf_event_enable = perf_sysenter_enable, \ | ||
| 110 | .perf_event_disable = perf_sysenter_disable, | ||
| 111 | |||
| 112 | #define TRACE_SYS_EXIT_PERF_INIT(sname) \ | ||
| 113 | .perf_event_enable = perf_sysexit_enable, \ | ||
| 114 | .perf_event_disable = perf_sysexit_disable, | ||
| 115 | #else | ||
| 116 | #define TRACE_SYS_ENTER_PERF(sname) | ||
| 117 | #define TRACE_SYS_ENTER_PERF_INIT(sname) | ||
| 118 | #define TRACE_SYS_EXIT_PERF(sname) | ||
| 119 | #define TRACE_SYS_EXIT_PERF_INIT(sname) | ||
| 120 | #endif /* CONFIG_PERF_EVENTS */ | ||
| 121 | |||
| 122 | #ifdef CONFIG_FTRACE_SYSCALLS | 106 | #ifdef CONFIG_FTRACE_SYSCALLS |
| 123 | #define __SC_STR_ADECL1(t, a) #a | 107 | #define __SC_STR_ADECL1(t, a) #a |
| 124 | #define __SC_STR_ADECL2(t, a, ...) #a, __SC_STR_ADECL1(__VA_ARGS__) | 108 | #define __SC_STR_ADECL2(t, a, ...) #a, __SC_STR_ADECL1(__VA_ARGS__) |
| @@ -134,54 +118,43 @@ struct perf_event_attr; | |||
| 134 | #define __SC_STR_TDECL5(t, a, ...) #t, __SC_STR_TDECL4(__VA_ARGS__) | 118 | #define __SC_STR_TDECL5(t, a, ...) #t, __SC_STR_TDECL4(__VA_ARGS__) |
| 135 | #define __SC_STR_TDECL6(t, a, ...) #t, __SC_STR_TDECL5(__VA_ARGS__) | 119 | #define __SC_STR_TDECL6(t, a, ...) #t, __SC_STR_TDECL5(__VA_ARGS__) |
| 136 | 120 | ||
| 121 | extern struct ftrace_event_class event_class_syscall_enter; | ||
| 122 | extern struct ftrace_event_class event_class_syscall_exit; | ||
| 123 | extern struct trace_event_functions enter_syscall_print_funcs; | ||
| 124 | extern struct trace_event_functions exit_syscall_print_funcs; | ||
| 125 | |||
| 137 | #define SYSCALL_TRACE_ENTER_EVENT(sname) \ | 126 | #define SYSCALL_TRACE_ENTER_EVENT(sname) \ |
| 138 | static const struct syscall_metadata __syscall_meta_##sname; \ | 127 | static struct syscall_metadata __syscall_meta_##sname; \ |
| 139 | static struct ftrace_event_call \ | 128 | static struct ftrace_event_call \ |
| 140 | __attribute__((__aligned__(4))) event_enter_##sname; \ | 129 | __attribute__((__aligned__(4))) event_enter_##sname; \ |
| 141 | static struct trace_event enter_syscall_print_##sname = { \ | ||
| 142 | .trace = print_syscall_enter, \ | ||
| 143 | }; \ | ||
| 144 | static struct ftrace_event_call __used \ | 130 | static struct ftrace_event_call __used \ |
| 145 | __attribute__((__aligned__(4))) \ | 131 | __attribute__((__aligned__(4))) \ |
| 146 | __attribute__((section("_ftrace_events"))) \ | 132 | __attribute__((section("_ftrace_events"))) \ |
| 147 | event_enter_##sname = { \ | 133 | event_enter_##sname = { \ |
| 148 | .name = "sys_enter"#sname, \ | 134 | .name = "sys_enter"#sname, \ |
| 149 | .system = "syscalls", \ | 135 | .class = &event_class_syscall_enter, \ |
| 150 | .event = &enter_syscall_print_##sname, \ | 136 | .event.funcs = &enter_syscall_print_funcs, \ |
| 151 | .raw_init = init_syscall_trace, \ | ||
| 152 | .define_fields = syscall_enter_define_fields, \ | ||
| 153 | .regfunc = reg_event_syscall_enter, \ | ||
| 154 | .unregfunc = unreg_event_syscall_enter, \ | ||
| 155 | .data = (void *)&__syscall_meta_##sname,\ | 137 | .data = (void *)&__syscall_meta_##sname,\ |
| 156 | TRACE_SYS_ENTER_PERF_INIT(sname) \ | ||
| 157 | } | 138 | } |
| 158 | 139 | ||
| 159 | #define SYSCALL_TRACE_EXIT_EVENT(sname) \ | 140 | #define SYSCALL_TRACE_EXIT_EVENT(sname) \ |
| 160 | static const struct syscall_metadata __syscall_meta_##sname; \ | 141 | static struct syscall_metadata __syscall_meta_##sname; \ |
| 161 | static struct ftrace_event_call \ | 142 | static struct ftrace_event_call \ |
| 162 | __attribute__((__aligned__(4))) event_exit_##sname; \ | 143 | __attribute__((__aligned__(4))) event_exit_##sname; \ |
| 163 | static struct trace_event exit_syscall_print_##sname = { \ | ||
| 164 | .trace = print_syscall_exit, \ | ||
| 165 | }; \ | ||
| 166 | static struct ftrace_event_call __used \ | 144 | static struct ftrace_event_call __used \ |
| 167 | __attribute__((__aligned__(4))) \ | 145 | __attribute__((__aligned__(4))) \ |
| 168 | __attribute__((section("_ftrace_events"))) \ | 146 | __attribute__((section("_ftrace_events"))) \ |
| 169 | event_exit_##sname = { \ | 147 | event_exit_##sname = { \ |
| 170 | .name = "sys_exit"#sname, \ | 148 | .name = "sys_exit"#sname, \ |
| 171 | .system = "syscalls", \ | 149 | .class = &event_class_syscall_exit, \ |
| 172 | .event = &exit_syscall_print_##sname, \ | 150 | .event.funcs = &exit_syscall_print_funcs, \ |
| 173 | .raw_init = init_syscall_trace, \ | ||
| 174 | .define_fields = syscall_exit_define_fields, \ | ||
| 175 | .regfunc = reg_event_syscall_exit, \ | ||
| 176 | .unregfunc = unreg_event_syscall_exit, \ | ||
| 177 | .data = (void *)&__syscall_meta_##sname,\ | 151 | .data = (void *)&__syscall_meta_##sname,\ |
| 178 | TRACE_SYS_EXIT_PERF_INIT(sname) \ | ||
| 179 | } | 152 | } |
| 180 | 153 | ||
| 181 | #define SYSCALL_METADATA(sname, nb) \ | 154 | #define SYSCALL_METADATA(sname, nb) \ |
| 182 | SYSCALL_TRACE_ENTER_EVENT(sname); \ | 155 | SYSCALL_TRACE_ENTER_EVENT(sname); \ |
| 183 | SYSCALL_TRACE_EXIT_EVENT(sname); \ | 156 | SYSCALL_TRACE_EXIT_EVENT(sname); \ |
| 184 | static const struct syscall_metadata __used \ | 157 | static struct syscall_metadata __used \ |
| 185 | __attribute__((__aligned__(4))) \ | 158 | __attribute__((__aligned__(4))) \ |
| 186 | __attribute__((section("__syscalls_metadata"))) \ | 159 | __attribute__((section("__syscalls_metadata"))) \ |
| 187 | __syscall_meta_##sname = { \ | 160 | __syscall_meta_##sname = { \ |
| @@ -191,12 +164,14 @@ struct perf_event_attr; | |||
| 191 | .args = args_##sname, \ | 164 | .args = args_##sname, \ |
| 192 | .enter_event = &event_enter_##sname, \ | 165 | .enter_event = &event_enter_##sname, \ |
| 193 | .exit_event = &event_exit_##sname, \ | 166 | .exit_event = &event_exit_##sname, \ |
| 167 | .enter_fields = LIST_HEAD_INIT(__syscall_meta_##sname.enter_fields), \ | ||
| 168 | .exit_fields = LIST_HEAD_INIT(__syscall_meta_##sname.exit_fields), \ | ||
| 194 | }; | 169 | }; |
| 195 | 170 | ||
| 196 | #define SYSCALL_DEFINE0(sname) \ | 171 | #define SYSCALL_DEFINE0(sname) \ |
| 197 | SYSCALL_TRACE_ENTER_EVENT(_##sname); \ | 172 | SYSCALL_TRACE_ENTER_EVENT(_##sname); \ |
| 198 | SYSCALL_TRACE_EXIT_EVENT(_##sname); \ | 173 | SYSCALL_TRACE_EXIT_EVENT(_##sname); \ |
| 199 | static const struct syscall_metadata __used \ | 174 | static struct syscall_metadata __used \ |
| 200 | __attribute__((__aligned__(4))) \ | 175 | __attribute__((__aligned__(4))) \ |
| 201 | __attribute__((section("__syscalls_metadata"))) \ | 176 | __attribute__((section("__syscalls_metadata"))) \ |
| 202 | __syscall_meta__##sname = { \ | 177 | __syscall_meta__##sname = { \ |
| @@ -204,6 +179,8 @@ struct perf_event_attr; | |||
| 204 | .nb_args = 0, \ | 179 | .nb_args = 0, \ |
| 205 | .enter_event = &event_enter__##sname, \ | 180 | .enter_event = &event_enter__##sname, \ |
| 206 | .exit_event = &event_exit__##sname, \ | 181 | .exit_event = &event_exit__##sname, \ |
| 182 | .enter_fields = LIST_HEAD_INIT(__syscall_meta__##sname.enter_fields), \ | ||
| 183 | .exit_fields = LIST_HEAD_INIT(__syscall_meta__##sname.exit_fields), \ | ||
| 207 | }; \ | 184 | }; \ |
| 208 | asmlinkage long sys_##sname(void) | 185 | asmlinkage long sys_##sname(void) |
| 209 | #else | 186 | #else |
diff --git a/include/linux/threads.h b/include/linux/threads.h index 052b12bec8bd..383ab9592bec 100644 --- a/include/linux/threads.h +++ b/include/linux/threads.h | |||
| @@ -33,4 +33,13 @@ | |||
| 33 | #define PID_MAX_LIMIT (CONFIG_BASE_SMALL ? PAGE_SIZE * 8 : \ | 33 | #define PID_MAX_LIMIT (CONFIG_BASE_SMALL ? PAGE_SIZE * 8 : \ |
| 34 | (sizeof(long) > 4 ? 4 * 1024 * 1024 : PID_MAX_DEFAULT)) | 34 | (sizeof(long) > 4 ? 4 * 1024 * 1024 : PID_MAX_DEFAULT)) |
| 35 | 35 | ||
| 36 | /* | ||
| 37 | * Define a minimum number of pids per cpu. Heuristically based | ||
| 38 | * on original pid max of 32k for 32 cpus. Also, increase the | ||
| 39 | * minimum settable value for pid_max on the running system based | ||
| 40 | * on similar defaults. See kernel/pid.c:pidmap_init() for details. | ||
| 41 | */ | ||
| 42 | #define PIDS_PER_CPU_DEFAULT 1024 | ||
| 43 | #define PIDS_PER_CPU_MIN 8 | ||
| 44 | |||
| 36 | #endif | 45 | #endif |
diff --git a/include/linux/topology.h b/include/linux/topology.h index 5b81156780b1..c44df50a05ab 100644 --- a/include/linux/topology.h +++ b/include/linux/topology.h | |||
| @@ -31,6 +31,7 @@ | |||
| 31 | #include <linux/bitops.h> | 31 | #include <linux/bitops.h> |
| 32 | #include <linux/mmzone.h> | 32 | #include <linux/mmzone.h> |
| 33 | #include <linux/smp.h> | 33 | #include <linux/smp.h> |
| 34 | #include <linux/percpu.h> | ||
| 34 | #include <asm/topology.h> | 35 | #include <asm/topology.h> |
| 35 | 36 | ||
| 36 | #ifndef node_has_online_mem | 37 | #ifndef node_has_online_mem |
| @@ -203,8 +204,114 @@ int arch_update_cpu_topology(void); | |||
| 203 | #ifndef SD_NODE_INIT | 204 | #ifndef SD_NODE_INIT |
| 204 | #error Please define an appropriate SD_NODE_INIT in include/asm/topology.h!!! | 205 | #error Please define an appropriate SD_NODE_INIT in include/asm/topology.h!!! |
| 205 | #endif | 206 | #endif |
| 207 | |||
| 206 | #endif /* CONFIG_NUMA */ | 208 | #endif /* CONFIG_NUMA */ |
| 207 | 209 | ||
| 210 | #ifdef CONFIG_USE_PERCPU_NUMA_NODE_ID | ||
| 211 | DECLARE_PER_CPU(int, numa_node); | ||
| 212 | |||
| 213 | #ifndef numa_node_id | ||
| 214 | /* Returns the number of the current Node. */ | ||
| 215 | static inline int numa_node_id(void) | ||
| 216 | { | ||
| 217 | return __this_cpu_read(numa_node); | ||
| 218 | } | ||
| 219 | #endif | ||
| 220 | |||
| 221 | #ifndef cpu_to_node | ||
| 222 | static inline int cpu_to_node(int cpu) | ||
| 223 | { | ||
| 224 | return per_cpu(numa_node, cpu); | ||
| 225 | } | ||
| 226 | #endif | ||
| 227 | |||
| 228 | #ifndef set_numa_node | ||
| 229 | static inline void set_numa_node(int node) | ||
| 230 | { | ||
| 231 | percpu_write(numa_node, node); | ||
| 232 | } | ||
| 233 | #endif | ||
| 234 | |||
| 235 | #ifndef set_cpu_numa_node | ||
| 236 | static inline void set_cpu_numa_node(int cpu, int node) | ||
| 237 | { | ||
| 238 | per_cpu(numa_node, cpu) = node; | ||
| 239 | } | ||
| 240 | #endif | ||
| 241 | |||
| 242 | #else /* !CONFIG_USE_PERCPU_NUMA_NODE_ID */ | ||
| 243 | |||
| 244 | /* Returns the number of the current Node. */ | ||
| 245 | #ifndef numa_node_id | ||
| 246 | static inline int numa_node_id(void) | ||
| 247 | { | ||
| 248 | return cpu_to_node(raw_smp_processor_id()); | ||
| 249 | } | ||
| 250 | #endif | ||
| 251 | |||
| 252 | #endif /* [!]CONFIG_USE_PERCPU_NUMA_NODE_ID */ | ||
| 253 | |||
| 254 | #ifdef CONFIG_HAVE_MEMORYLESS_NODES | ||
| 255 | |||
| 256 | /* | ||
| 257 | * N.B., Do NOT reference the '_numa_mem_' per cpu variable directly. | ||
| 258 | * It will not be defined when CONFIG_HAVE_MEMORYLESS_NODES is not defined. | ||
| 259 | * Use the accessor functions set_numa_mem(), numa_mem_id() and cpu_to_mem(). | ||
| 260 | */ | ||
| 261 | DECLARE_PER_CPU(int, _numa_mem_); | ||
| 262 | |||
| 263 | #ifndef set_numa_mem | ||
| 264 | static inline void set_numa_mem(int node) | ||
| 265 | { | ||
| 266 | percpu_write(_numa_mem_, node); | ||
| 267 | } | ||
| 268 | #endif | ||
| 269 | |||
| 270 | #ifndef numa_mem_id | ||
| 271 | /* Returns the number of the nearest Node with memory */ | ||
| 272 | static inline int numa_mem_id(void) | ||
| 273 | { | ||
| 274 | return __this_cpu_read(_numa_mem_); | ||
| 275 | } | ||
| 276 | #endif | ||
| 277 | |||
| 278 | #ifndef cpu_to_mem | ||
| 279 | static inline int cpu_to_mem(int cpu) | ||
| 280 | { | ||
| 281 | return per_cpu(_numa_mem_, cpu); | ||
| 282 | } | ||
| 283 | #endif | ||
| 284 | |||
| 285 | #ifndef set_cpu_numa_mem | ||
| 286 | static inline void set_cpu_numa_mem(int cpu, int node) | ||
| 287 | { | ||
| 288 | per_cpu(_numa_mem_, cpu) = node; | ||
| 289 | } | ||
| 290 | #endif | ||
| 291 | |||
| 292 | #else /* !CONFIG_HAVE_MEMORYLESS_NODES */ | ||
| 293 | |||
| 294 | static inline void set_numa_mem(int node) {} | ||
| 295 | |||
| 296 | static inline void set_cpu_numa_mem(int cpu, int node) {} | ||
| 297 | |||
| 298 | #ifndef numa_mem_id | ||
| 299 | /* Returns the number of the nearest Node with memory */ | ||
| 300 | static inline int numa_mem_id(void) | ||
| 301 | { | ||
| 302 | return numa_node_id(); | ||
| 303 | } | ||
| 304 | #endif | ||
| 305 | |||
| 306 | #ifndef cpu_to_mem | ||
| 307 | static inline int cpu_to_mem(int cpu) | ||
| 308 | { | ||
| 309 | return cpu_to_node(cpu); | ||
| 310 | } | ||
| 311 | #endif | ||
| 312 | |||
| 313 | #endif /* [!]CONFIG_HAVE_MEMORYLESS_NODES */ | ||
| 314 | |||
| 208 | #ifndef topology_physical_package_id | 315 | #ifndef topology_physical_package_id |
| 209 | #define topology_physical_package_id(cpu) ((void)(cpu), -1) | 316 | #define topology_physical_package_id(cpu) ((void)(cpu), -1) |
| 210 | #endif | 317 | #endif |
| @@ -218,9 +325,4 @@ int arch_update_cpu_topology(void); | |||
| 218 | #define topology_core_cpumask(cpu) cpumask_of(cpu) | 325 | #define topology_core_cpumask(cpu) cpumask_of(cpu) |
| 219 | #endif | 326 | #endif |
| 220 | 327 | ||
| 221 | /* Returns the number of the current Node. */ | ||
| 222 | #ifndef numa_node_id | ||
| 223 | #define numa_node_id() (cpu_to_node(raw_smp_processor_id())) | ||
| 224 | #endif | ||
| 225 | |||
| 226 | #endif /* _LINUX_TOPOLOGY_H */ | 328 | #endif /* _LINUX_TOPOLOGY_H */ |
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h index 1d85f9a6a199..9a59d1f98cd4 100644 --- a/include/linux/tracepoint.h +++ b/include/linux/tracepoint.h | |||
| @@ -20,12 +20,17 @@ | |||
| 20 | struct module; | 20 | struct module; |
| 21 | struct tracepoint; | 21 | struct tracepoint; |
| 22 | 22 | ||
| 23 | struct tracepoint_func { | ||
| 24 | void *func; | ||
| 25 | void *data; | ||
| 26 | }; | ||
| 27 | |||
| 23 | struct tracepoint { | 28 | struct tracepoint { |
| 24 | const char *name; /* Tracepoint name */ | 29 | const char *name; /* Tracepoint name */ |
| 25 | int state; /* State. */ | 30 | int state; /* State. */ |
| 26 | void (*regfunc)(void); | 31 | void (*regfunc)(void); |
| 27 | void (*unregfunc)(void); | 32 | void (*unregfunc)(void); |
| 28 | void **funcs; | 33 | struct tracepoint_func *funcs; |
| 29 | } __attribute__((aligned(32))); /* | 34 | } __attribute__((aligned(32))); /* |
| 30 | * Aligned on 32 bytes because it is | 35 | * Aligned on 32 bytes because it is |
| 31 | * globally visible and gcc happily | 36 | * globally visible and gcc happily |
| @@ -37,16 +42,19 @@ struct tracepoint { | |||
| 37 | * Connect a probe to a tracepoint. | 42 | * Connect a probe to a tracepoint. |
| 38 | * Internal API, should not be used directly. | 43 | * Internal API, should not be used directly. |
| 39 | */ | 44 | */ |
| 40 | extern int tracepoint_probe_register(const char *name, void *probe); | 45 | extern int tracepoint_probe_register(const char *name, void *probe, void *data); |
| 41 | 46 | ||
| 42 | /* | 47 | /* |
| 43 | * Disconnect a probe from a tracepoint. | 48 | * Disconnect a probe from a tracepoint. |
| 44 | * Internal API, should not be used directly. | 49 | * Internal API, should not be used directly. |
| 45 | */ | 50 | */ |
| 46 | extern int tracepoint_probe_unregister(const char *name, void *probe); | 51 | extern int |
| 52 | tracepoint_probe_unregister(const char *name, void *probe, void *data); | ||
| 47 | 53 | ||
| 48 | extern int tracepoint_probe_register_noupdate(const char *name, void *probe); | 54 | extern int tracepoint_probe_register_noupdate(const char *name, void *probe, |
| 49 | extern int tracepoint_probe_unregister_noupdate(const char *name, void *probe); | 55 | void *data); |
| 56 | extern int tracepoint_probe_unregister_noupdate(const char *name, void *probe, | ||
| 57 | void *data); | ||
| 50 | extern void tracepoint_probe_update_all(void); | 58 | extern void tracepoint_probe_update_all(void); |
| 51 | 59 | ||
| 52 | struct tracepoint_iter { | 60 | struct tracepoint_iter { |
| @@ -102,17 +110,27 @@ static inline void tracepoint_update_probe_range(struct tracepoint *begin, | |||
| 102 | /* | 110 | /* |
| 103 | * it_func[0] is never NULL because there is at least one element in the array | 111 | * it_func[0] is never NULL because there is at least one element in the array |
| 104 | * when the array itself is non NULL. | 112 | * when the array itself is non NULL. |
| 113 | * | ||
| 114 | * Note, the proto and args passed in includes "__data" as the first parameter. | ||
| 115 | * The reason for this is to handle the "void" prototype. If a tracepoint | ||
| 116 | * has a "void" prototype, then it is invalid to declare a function | ||
| 117 | * as "(void *, void)". The DECLARE_TRACE_NOARGS() will pass in just | ||
| 118 | * "void *data", where as the DECLARE_TRACE() will pass in "void *data, proto". | ||
| 105 | */ | 119 | */ |
| 106 | #define __DO_TRACE(tp, proto, args) \ | 120 | #define __DO_TRACE(tp, proto, args) \ |
| 107 | do { \ | 121 | do { \ |
| 108 | void **it_func; \ | 122 | struct tracepoint_func *it_func_ptr; \ |
| 123 | void *it_func; \ | ||
| 124 | void *__data; \ | ||
| 109 | \ | 125 | \ |
| 110 | rcu_read_lock_sched_notrace(); \ | 126 | rcu_read_lock_sched_notrace(); \ |
| 111 | it_func = rcu_dereference_sched((tp)->funcs); \ | 127 | it_func_ptr = rcu_dereference_sched((tp)->funcs); \ |
| 112 | if (it_func) { \ | 128 | if (it_func_ptr) { \ |
| 113 | do { \ | 129 | do { \ |
| 114 | ((void(*)(proto))(*it_func))(args); \ | 130 | it_func = (it_func_ptr)->func; \ |
| 115 | } while (*(++it_func)); \ | 131 | __data = (it_func_ptr)->data; \ |
| 132 | ((void(*)(proto))(it_func))(args); \ | ||
| 133 | } while ((++it_func_ptr)->func); \ | ||
| 116 | } \ | 134 | } \ |
| 117 | rcu_read_unlock_sched_notrace(); \ | 135 | rcu_read_unlock_sched_notrace(); \ |
| 118 | } while (0) | 136 | } while (0) |
| @@ -122,24 +140,32 @@ static inline void tracepoint_update_probe_range(struct tracepoint *begin, | |||
| 122 | * not add unwanted padding between the beginning of the section and the | 140 | * not add unwanted padding between the beginning of the section and the |
| 123 | * structure. Force alignment to the same alignment as the section start. | 141 | * structure. Force alignment to the same alignment as the section start. |
| 124 | */ | 142 | */ |
| 125 | #define DECLARE_TRACE(name, proto, args) \ | 143 | #define __DECLARE_TRACE(name, proto, args, data_proto, data_args) \ |
| 126 | extern struct tracepoint __tracepoint_##name; \ | 144 | extern struct tracepoint __tracepoint_##name; \ |
| 127 | static inline void trace_##name(proto) \ | 145 | static inline void trace_##name(proto) \ |
| 128 | { \ | 146 | { \ |
| 129 | if (unlikely(__tracepoint_##name.state)) \ | 147 | if (unlikely(__tracepoint_##name.state)) \ |
| 130 | __DO_TRACE(&__tracepoint_##name, \ | 148 | __DO_TRACE(&__tracepoint_##name, \ |
| 131 | TP_PROTO(proto), TP_ARGS(args)); \ | 149 | TP_PROTO(data_proto), \ |
| 150 | TP_ARGS(data_args)); \ | ||
| 151 | } \ | ||
| 152 | static inline int \ | ||
| 153 | register_trace_##name(void (*probe)(data_proto), void *data) \ | ||
| 154 | { \ | ||
| 155 | return tracepoint_probe_register(#name, (void *)probe, \ | ||
| 156 | data); \ | ||
| 132 | } \ | 157 | } \ |
| 133 | static inline int register_trace_##name(void (*probe)(proto)) \ | 158 | static inline int \ |
| 159 | unregister_trace_##name(void (*probe)(data_proto), void *data) \ | ||
| 134 | { \ | 160 | { \ |
| 135 | return tracepoint_probe_register(#name, (void *)probe); \ | 161 | return tracepoint_probe_unregister(#name, (void *)probe, \ |
| 162 | data); \ | ||
| 136 | } \ | 163 | } \ |
| 137 | static inline int unregister_trace_##name(void (*probe)(proto)) \ | 164 | static inline void \ |
| 165 | check_trace_callback_type_##name(void (*cb)(data_proto)) \ | ||
| 138 | { \ | 166 | { \ |
| 139 | return tracepoint_probe_unregister(#name, (void *)probe);\ | ||
| 140 | } | 167 | } |
| 141 | 168 | ||
| 142 | |||
| 143 | #define DEFINE_TRACE_FN(name, reg, unreg) \ | 169 | #define DEFINE_TRACE_FN(name, reg, unreg) \ |
| 144 | static const char __tpstrtab_##name[] \ | 170 | static const char __tpstrtab_##name[] \ |
| 145 | __attribute__((section("__tracepoints_strings"))) = #name; \ | 171 | __attribute__((section("__tracepoints_strings"))) = #name; \ |
| @@ -156,18 +182,23 @@ static inline void tracepoint_update_probe_range(struct tracepoint *begin, | |||
| 156 | EXPORT_SYMBOL(__tracepoint_##name) | 182 | EXPORT_SYMBOL(__tracepoint_##name) |
| 157 | 183 | ||
| 158 | #else /* !CONFIG_TRACEPOINTS */ | 184 | #else /* !CONFIG_TRACEPOINTS */ |
| 159 | #define DECLARE_TRACE(name, proto, args) \ | 185 | #define __DECLARE_TRACE(name, proto, args, data_proto, data_args) \ |
| 160 | static inline void _do_trace_##name(struct tracepoint *tp, proto) \ | ||
| 161 | { } \ | ||
| 162 | static inline void trace_##name(proto) \ | 186 | static inline void trace_##name(proto) \ |
| 163 | { } \ | 187 | { } \ |
| 164 | static inline int register_trace_##name(void (*probe)(proto)) \ | 188 | static inline int \ |
| 189 | register_trace_##name(void (*probe)(data_proto), \ | ||
| 190 | void *data) \ | ||
| 165 | { \ | 191 | { \ |
| 166 | return -ENOSYS; \ | 192 | return -ENOSYS; \ |
| 167 | } \ | 193 | } \ |
| 168 | static inline int unregister_trace_##name(void (*probe)(proto)) \ | 194 | static inline int \ |
| 195 | unregister_trace_##name(void (*probe)(data_proto), \ | ||
| 196 | void *data) \ | ||
| 169 | { \ | 197 | { \ |
| 170 | return -ENOSYS; \ | 198 | return -ENOSYS; \ |
| 199 | } \ | ||
| 200 | static inline void check_trace_callback_type_##name(void (*cb)(data_proto)) \ | ||
| 201 | { \ | ||
| 171 | } | 202 | } |
| 172 | 203 | ||
| 173 | #define DEFINE_TRACE_FN(name, reg, unreg) | 204 | #define DEFINE_TRACE_FN(name, reg, unreg) |
| @@ -176,6 +207,29 @@ static inline void tracepoint_update_probe_range(struct tracepoint *begin, | |||
| 176 | #define EXPORT_TRACEPOINT_SYMBOL(name) | 207 | #define EXPORT_TRACEPOINT_SYMBOL(name) |
| 177 | 208 | ||
| 178 | #endif /* CONFIG_TRACEPOINTS */ | 209 | #endif /* CONFIG_TRACEPOINTS */ |
| 210 | |||
| 211 | /* | ||
| 212 | * The need for the DECLARE_TRACE_NOARGS() is to handle the prototype | ||
| 213 | * (void). "void" is a special value in a function prototype and can | ||
| 214 | * not be combined with other arguments. Since the DECLARE_TRACE() | ||
| 215 | * macro adds a data element at the beginning of the prototype, | ||
| 216 | * we need a way to differentiate "(void *data, proto)" from | ||
| 217 | * "(void *data, void)". The second prototype is invalid. | ||
| 218 | * | ||
| 219 | * DECLARE_TRACE_NOARGS() passes "void" as the tracepoint prototype | ||
| 220 | * and "void *__data" as the callback prototype. | ||
| 221 | * | ||
| 222 | * DECLARE_TRACE() passes "proto" as the tracepoint protoype and | ||
| 223 | * "void *__data, proto" as the callback prototype. | ||
| 224 | */ | ||
| 225 | #define DECLARE_TRACE_NOARGS(name) \ | ||
| 226 | __DECLARE_TRACE(name, void, , void *__data, __data) | ||
| 227 | |||
| 228 | #define DECLARE_TRACE(name, proto, args) \ | ||
| 229 | __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \ | ||
| 230 | PARAMS(void *__data, proto), \ | ||
| 231 | PARAMS(__data, args)) | ||
| 232 | |||
| 179 | #endif /* DECLARE_TRACE */ | 233 | #endif /* DECLARE_TRACE */ |
| 180 | 234 | ||
| 181 | #ifndef TRACE_EVENT | 235 | #ifndef TRACE_EVENT |
diff --git a/include/linux/uinput.h b/include/linux/uinput.h index 15ddd4483b09..60c81da77f0f 100644 --- a/include/linux/uinput.h +++ b/include/linux/uinput.h | |||
| @@ -166,11 +166,11 @@ struct uinput_ff_erase { | |||
| 166 | struct uinput_user_dev { | 166 | struct uinput_user_dev { |
| 167 | char name[UINPUT_MAX_NAME_SIZE]; | 167 | char name[UINPUT_MAX_NAME_SIZE]; |
| 168 | struct input_id id; | 168 | struct input_id id; |
| 169 | int ff_effects_max; | 169 | int ff_effects_max; |
| 170 | int absmax[ABS_MAX + 1]; | 170 | int absmax[ABS_CNT]; |
| 171 | int absmin[ABS_MAX + 1]; | 171 | int absmin[ABS_CNT]; |
| 172 | int absfuzz[ABS_MAX + 1]; | 172 | int absfuzz[ABS_CNT]; |
| 173 | int absflat[ABS_MAX + 1]; | 173 | int absflat[ABS_CNT]; |
| 174 | }; | 174 | }; |
| 175 | #endif /* __UINPUT_H_ */ | 175 | #endif /* __UINPUT_H_ */ |
| 176 | 176 | ||
diff --git a/include/linux/usb/audio-v2.h b/include/linux/usb/audio-v2.h index 2389f93a28b5..92f1d99f0f17 100644 --- a/include/linux/usb/audio-v2.h +++ b/include/linux/usb/audio-v2.h | |||
| @@ -105,6 +105,22 @@ struct uac_as_header_descriptor_v2 { | |||
| 105 | __u8 iChannelNames; | 105 | __u8 iChannelNames; |
| 106 | } __attribute__((packed)); | 106 | } __attribute__((packed)); |
| 107 | 107 | ||
| 108 | /* 4.10.1.2 Class-Specific AS Isochronous Audio Data Endpoint Descriptor */ | ||
| 109 | |||
| 110 | struct uac2_iso_endpoint_descriptor { | ||
| 111 | __u8 bLength; /* in bytes: 8 */ | ||
| 112 | __u8 bDescriptorType; /* USB_DT_CS_ENDPOINT */ | ||
| 113 | __u8 bDescriptorSubtype; /* EP_GENERAL */ | ||
| 114 | __u8 bmAttributes; | ||
| 115 | __u8 bmControls; | ||
| 116 | __u8 bLockDelayUnits; | ||
| 117 | __le16 wLockDelay; | ||
| 118 | } __attribute__((packed)); | ||
| 119 | |||
| 120 | #define UAC2_CONTROL_PITCH (3 << 0) | ||
| 121 | #define UAC2_CONTROL_DATA_OVERRUN (3 << 2) | ||
| 122 | #define UAC2_CONTROL_DATA_UNDERRUN (3 << 4) | ||
| 123 | |||
| 108 | /* 6.1 Interrupt Data Message */ | 124 | /* 6.1 Interrupt Data Message */ |
| 109 | 125 | ||
| 110 | #define UAC2_INTERRUPT_DATA_MSG_VENDOR (1 << 0) | 126 | #define UAC2_INTERRUPT_DATA_MSG_VENDOR (1 << 0) |
diff --git a/include/linux/uuid.h b/include/linux/uuid.h new file mode 100644 index 000000000000..5b7efbfcee4e --- /dev/null +++ b/include/linux/uuid.h | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | /* | ||
| 2 | * UUID/GUID definition | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010, Intel Corp. | ||
| 5 | * Huang Ying <ying.huang@intel.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU General Public License version | ||
| 9 | * 2 as published by the Free Software Foundation; | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU General Public License | ||
| 17 | * along with this program; if not, write to the Free Software | ||
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef _LINUX_UUID_H_ | ||
| 22 | #define _LINUX_UUID_H_ | ||
| 23 | |||
| 24 | #include <linux/types.h> | ||
| 25 | #include <linux/string.h> | ||
| 26 | |||
| 27 | typedef struct { | ||
| 28 | __u8 b[16]; | ||
| 29 | } uuid_le; | ||
| 30 | |||
| 31 | typedef struct { | ||
| 32 | __u8 b[16]; | ||
| 33 | } uuid_be; | ||
| 34 | |||
| 35 | #define UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ | ||
| 36 | ((uuid_le) \ | ||
| 37 | {{ (a) & 0xff, ((a) >> 8) & 0xff, ((a) >> 16) & 0xff, ((a) >> 24) & 0xff, \ | ||
| 38 | (b) & 0xff, ((b) >> 8) & 0xff, \ | ||
| 39 | (c) & 0xff, ((c) >> 8) & 0xff, \ | ||
| 40 | (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) }}) | ||
| 41 | |||
| 42 | #define UUID_BE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ | ||
| 43 | ((uuid_be) \ | ||
| 44 | {{ ((a) >> 24) & 0xff, ((a) >> 16) & 0xff, ((a) >> 8) & 0xff, (a) & 0xff, \ | ||
| 45 | ((b) >> 8) & 0xff, (b) & 0xff, \ | ||
| 46 | ((c) >> 8) & 0xff, (c) & 0xff, \ | ||
| 47 | (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) }}) | ||
| 48 | |||
| 49 | #define NULL_UUID_LE \ | ||
| 50 | UUID_LE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \ | ||
| 51 | 0x00, 0x00, 0x00, 0x00) | ||
| 52 | |||
| 53 | #define NULL_UUID_BE \ | ||
| 54 | UUID_BE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \ | ||
| 55 | 0x00, 0x00, 0x00, 0x00) | ||
| 56 | |||
| 57 | static inline int uuid_le_cmp(const uuid_le u1, const uuid_le u2) | ||
| 58 | { | ||
| 59 | return memcmp(&u1, &u2, sizeof(uuid_le)); | ||
| 60 | } | ||
| 61 | |||
| 62 | static inline int uuid_be_cmp(const uuid_be u1, const uuid_be u2) | ||
| 63 | { | ||
| 64 | return memcmp(&u1, &u2, sizeof(uuid_be)); | ||
| 65 | } | ||
| 66 | |||
| 67 | extern void uuid_le_gen(uuid_le *u); | ||
| 68 | extern void uuid_be_gen(uuid_be *u); | ||
| 69 | |||
| 70 | #endif | ||
