diff options
Diffstat (limited to 'include/linux')
274 files changed, 6495 insertions, 2880 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index d459cd17b477..24c7aa8b1d20 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
@@ -27,6 +27,7 @@ | |||
27 | 27 | ||
28 | #include <linux/errno.h> | 28 | #include <linux/errno.h> |
29 | #include <linux/ioport.h> /* for struct resource */ | 29 | #include <linux/ioport.h> /* for struct resource */ |
30 | #include <linux/resource_ext.h> | ||
30 | #include <linux/device.h> | 31 | #include <linux/device.h> |
31 | #include <linux/property.h> | 32 | #include <linux/property.h> |
32 | 33 | ||
@@ -151,6 +152,10 @@ int acpi_map_cpu(acpi_handle handle, int physid, int *pcpu); | |||
151 | int acpi_unmap_cpu(int cpu); | 152 | int acpi_unmap_cpu(int cpu); |
152 | #endif /* CONFIG_ACPI_HOTPLUG_CPU */ | 153 | #endif /* CONFIG_ACPI_HOTPLUG_CPU */ |
153 | 154 | ||
155 | #ifdef CONFIG_ACPI_HOTPLUG_IOAPIC | ||
156 | int acpi_get_ioapic_id(acpi_handle handle, u32 gsi_base, u64 *phys_addr); | ||
157 | #endif | ||
158 | |||
154 | int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base); | 159 | int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base); |
155 | int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base); | 160 | int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base); |
156 | int acpi_ioapic_registered(acpi_handle handle, u32 gsi_base); | 161 | int acpi_ioapic_registered(acpi_handle handle, u32 gsi_base); |
@@ -288,22 +293,25 @@ extern int pnpacpi_disabled; | |||
288 | bool acpi_dev_resource_memory(struct acpi_resource *ares, struct resource *res); | 293 | bool acpi_dev_resource_memory(struct acpi_resource *ares, struct resource *res); |
289 | bool acpi_dev_resource_io(struct acpi_resource *ares, struct resource *res); | 294 | bool acpi_dev_resource_io(struct acpi_resource *ares, struct resource *res); |
290 | bool acpi_dev_resource_address_space(struct acpi_resource *ares, | 295 | bool acpi_dev_resource_address_space(struct acpi_resource *ares, |
291 | struct resource *res); | 296 | struct resource_win *win); |
292 | bool acpi_dev_resource_ext_address_space(struct acpi_resource *ares, | 297 | bool acpi_dev_resource_ext_address_space(struct acpi_resource *ares, |
293 | struct resource *res); | 298 | struct resource_win *win); |
294 | unsigned long acpi_dev_irq_flags(u8 triggering, u8 polarity, u8 shareable); | 299 | unsigned long acpi_dev_irq_flags(u8 triggering, u8 polarity, u8 shareable); |
295 | bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index, | 300 | bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index, |
296 | struct resource *res); | 301 | struct resource *res); |
297 | 302 | ||
298 | struct resource_list_entry { | ||
299 | struct list_head node; | ||
300 | struct resource res; | ||
301 | }; | ||
302 | |||
303 | void acpi_dev_free_resource_list(struct list_head *list); | 303 | void acpi_dev_free_resource_list(struct list_head *list); |
304 | int acpi_dev_get_resources(struct acpi_device *adev, struct list_head *list, | 304 | int acpi_dev_get_resources(struct acpi_device *adev, struct list_head *list, |
305 | int (*preproc)(struct acpi_resource *, void *), | 305 | int (*preproc)(struct acpi_resource *, void *), |
306 | void *preproc_data); | 306 | void *preproc_data); |
307 | int acpi_dev_filter_resource_type(struct acpi_resource *ares, | ||
308 | unsigned long types); | ||
309 | |||
310 | static inline int acpi_dev_filter_resource_type_cb(struct acpi_resource *ares, | ||
311 | void *arg) | ||
312 | { | ||
313 | return acpi_dev_filter_resource_type(ares, (unsigned long)arg); | ||
314 | } | ||
307 | 315 | ||
308 | int acpi_check_resource_conflict(const struct resource *res); | 316 | int acpi_check_resource_conflict(const struct resource *res); |
309 | 317 | ||
diff --git a/include/linux/ahci_platform.h b/include/linux/ahci_platform.h index 642d6ae4030c..a270f25ee7c7 100644 --- a/include/linux/ahci_platform.h +++ b/include/linux/ahci_platform.h | |||
@@ -21,16 +21,20 @@ struct device; | |||
21 | struct ata_port_info; | 21 | struct ata_port_info; |
22 | struct ahci_host_priv; | 22 | struct ahci_host_priv; |
23 | struct platform_device; | 23 | struct platform_device; |
24 | struct scsi_host_template; | ||
24 | 25 | ||
25 | int ahci_platform_enable_clks(struct ahci_host_priv *hpriv); | 26 | int ahci_platform_enable_clks(struct ahci_host_priv *hpriv); |
26 | void ahci_platform_disable_clks(struct ahci_host_priv *hpriv); | 27 | void ahci_platform_disable_clks(struct ahci_host_priv *hpriv); |
28 | int ahci_platform_enable_regulators(struct ahci_host_priv *hpriv); | ||
29 | void ahci_platform_disable_regulators(struct ahci_host_priv *hpriv); | ||
27 | int ahci_platform_enable_resources(struct ahci_host_priv *hpriv); | 30 | int ahci_platform_enable_resources(struct ahci_host_priv *hpriv); |
28 | void ahci_platform_disable_resources(struct ahci_host_priv *hpriv); | 31 | void ahci_platform_disable_resources(struct ahci_host_priv *hpriv); |
29 | struct ahci_host_priv *ahci_platform_get_resources( | 32 | struct ahci_host_priv *ahci_platform_get_resources( |
30 | struct platform_device *pdev); | 33 | struct platform_device *pdev); |
31 | int ahci_platform_init_host(struct platform_device *pdev, | 34 | int ahci_platform_init_host(struct platform_device *pdev, |
32 | struct ahci_host_priv *hpriv, | 35 | struct ahci_host_priv *hpriv, |
33 | const struct ata_port_info *pi_template); | 36 | const struct ata_port_info *pi_template, |
37 | struct scsi_host_template *sht); | ||
34 | 38 | ||
35 | int ahci_platform_suspend_host(struct device *dev); | 39 | int ahci_platform_suspend_host(struct device *dev); |
36 | int ahci_platform_resume_host(struct device *dev); | 40 | int ahci_platform_resume_host(struct device *dev); |
diff --git a/include/linux/amba/bus.h b/include/linux/amba/bus.h index 2afc618b15ce..50fc66868402 100644 --- a/include/linux/amba/bus.h +++ b/include/linux/amba/bus.h | |||
@@ -33,6 +33,7 @@ struct amba_device { | |||
33 | struct clk *pclk; | 33 | struct clk *pclk; |
34 | unsigned int periphid; | 34 | unsigned int periphid; |
35 | unsigned int irq[AMBA_NR_IRQS]; | 35 | unsigned int irq[AMBA_NR_IRQS]; |
36 | char *driver_override; | ||
36 | }; | 37 | }; |
37 | 38 | ||
38 | struct amba_driver { | 39 | struct amba_driver { |
@@ -92,11 +93,15 @@ struct amba_device *amba_find_device(const char *, struct device *, unsigned int | |||
92 | int amba_request_regions(struct amba_device *, const char *); | 93 | int amba_request_regions(struct amba_device *, const char *); |
93 | void amba_release_regions(struct amba_device *); | 94 | void amba_release_regions(struct amba_device *); |
94 | 95 | ||
95 | #define amba_pclk_enable(d) \ | 96 | static inline int amba_pclk_enable(struct amba_device *dev) |
96 | (IS_ERR((d)->pclk) ? 0 : clk_enable((d)->pclk)) | 97 | { |
98 | return clk_enable(dev->pclk); | ||
99 | } | ||
97 | 100 | ||
98 | #define amba_pclk_disable(d) \ | 101 | static inline void amba_pclk_disable(struct amba_device *dev) |
99 | do { if (!IS_ERR((d)->pclk)) clk_disable((d)->pclk); } while (0) | 102 | { |
103 | clk_disable(dev->pclk); | ||
104 | } | ||
100 | 105 | ||
101 | static inline int amba_pclk_prepare(struct amba_device *dev) | 106 | static inline int amba_pclk_prepare(struct amba_device *dev) |
102 | { | 107 | { |
diff --git a/include/linux/ata.h b/include/linux/ata.h index f2f4d8da97c0..1648026e06b4 100644 --- a/include/linux/ata.h +++ b/include/linux/ata.h | |||
@@ -503,7 +503,7 @@ struct ata_bmdma_prd { | |||
503 | #define ata_id_has_dma(id) ((id)[ATA_ID_CAPABILITY] & (1 << 8)) | 503 | #define ata_id_has_dma(id) ((id)[ATA_ID_CAPABILITY] & (1 << 8)) |
504 | #define ata_id_has_ncq(id) ((id)[ATA_ID_SATA_CAPABILITY] & (1 << 8)) | 504 | #define ata_id_has_ncq(id) ((id)[ATA_ID_SATA_CAPABILITY] & (1 << 8)) |
505 | #define ata_id_queue_depth(id) (((id)[ATA_ID_QUEUE_DEPTH] & 0x1f) + 1) | 505 | #define ata_id_queue_depth(id) (((id)[ATA_ID_QUEUE_DEPTH] & 0x1f) + 1) |
506 | #define ata_id_removeable(id) ((id)[ATA_ID_CONFIG] & (1 << 7)) | 506 | #define ata_id_removable(id) ((id)[ATA_ID_CONFIG] & (1 << 7)) |
507 | #define ata_id_has_atapi_AN(id) \ | 507 | #define ata_id_has_atapi_AN(id) \ |
508 | ((((id)[ATA_ID_SATA_CAPABILITY] != 0x0000) && \ | 508 | ((((id)[ATA_ID_SATA_CAPABILITY] != 0x0000) && \ |
509 | ((id)[ATA_ID_SATA_CAPABILITY] != 0xffff)) && \ | 509 | ((id)[ATA_ID_SATA_CAPABILITY] != 0xffff)) && \ |
diff --git a/include/linux/ata_platform.h b/include/linux/ata_platform.h index 5c618a084225..619d9e78e644 100644 --- a/include/linux/ata_platform.h +++ b/include/linux/ata_platform.h | |||
@@ -10,12 +10,15 @@ struct pata_platform_info { | |||
10 | unsigned int ioport_shift; | 10 | unsigned int ioport_shift; |
11 | }; | 11 | }; |
12 | 12 | ||
13 | struct scsi_host_template; | ||
14 | |||
13 | extern int __pata_platform_probe(struct device *dev, | 15 | extern int __pata_platform_probe(struct device *dev, |
14 | struct resource *io_res, | 16 | struct resource *io_res, |
15 | struct resource *ctl_res, | 17 | struct resource *ctl_res, |
16 | struct resource *irq_res, | 18 | struct resource *irq_res, |
17 | unsigned int ioport_shift, | 19 | unsigned int ioport_shift, |
18 | int __pio_mask); | 20 | int __pio_mask, |
21 | struct scsi_host_template *sht); | ||
19 | 22 | ||
20 | /* | 23 | /* |
21 | * Marvell SATA private data | 24 | * Marvell SATA private data |
diff --git a/include/linux/audit.h b/include/linux/audit.h index af84234e1f6e..c2e7e3a83965 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h | |||
@@ -46,7 +46,6 @@ struct audit_tree; | |||
46 | struct sk_buff; | 46 | struct sk_buff; |
47 | 47 | ||
48 | struct audit_krule { | 48 | struct audit_krule { |
49 | int vers_ops; | ||
50 | u32 pflags; | 49 | u32 pflags; |
51 | u32 flags; | 50 | u32 flags; |
52 | u32 listnr; | 51 | u32 listnr; |
@@ -128,7 +127,6 @@ extern void __audit_syscall_entry(int major, unsigned long a0, unsigned long a1, | |||
128 | extern void __audit_syscall_exit(int ret_success, long ret_value); | 127 | extern void __audit_syscall_exit(int ret_success, long ret_value); |
129 | extern struct filename *__audit_reusename(const __user char *uptr); | 128 | extern struct filename *__audit_reusename(const __user char *uptr); |
130 | extern void __audit_getname(struct filename *name); | 129 | extern void __audit_getname(struct filename *name); |
131 | extern void audit_putname(struct filename *name); | ||
132 | 130 | ||
133 | #define AUDIT_INODE_PARENT 1 /* dentry represents the parent */ | 131 | #define AUDIT_INODE_PARENT 1 /* dentry represents the parent */ |
134 | #define AUDIT_INODE_HIDDEN 2 /* audit record should be hidden */ | 132 | #define AUDIT_INODE_HIDDEN 2 /* audit record should be hidden */ |
@@ -353,8 +351,6 @@ static inline struct filename *audit_reusename(const __user char *name) | |||
353 | } | 351 | } |
354 | static inline void audit_getname(struct filename *name) | 352 | static inline void audit_getname(struct filename *name) |
355 | { } | 353 | { } |
356 | static inline void audit_putname(struct filename *name) | ||
357 | { } | ||
358 | static inline void __audit_inode(struct filename *name, | 354 | static inline void __audit_inode(struct filename *name, |
359 | const struct dentry *dentry, | 355 | const struct dentry *dentry, |
360 | unsigned int flags) | 356 | unsigned int flags) |
diff --git a/include/linux/backing-dev.h b/include/linux/backing-dev.h index 5da6012b7a14..aff923ae8c4b 100644 --- a/include/linux/backing-dev.h +++ b/include/linux/backing-dev.h | |||
@@ -55,6 +55,7 @@ struct bdi_writeback { | |||
55 | struct list_head b_dirty; /* dirty inodes */ | 55 | struct list_head b_dirty; /* dirty inodes */ |
56 | struct list_head b_io; /* parked for writeback */ | 56 | struct list_head b_io; /* parked for writeback */ |
57 | struct list_head b_more_io; /* parked for more writeback */ | 57 | struct list_head b_more_io; /* parked for more writeback */ |
58 | struct list_head b_dirty_time; /* time stamps are dirty */ | ||
58 | spinlock_t list_lock; /* protects the b_* lists */ | 59 | spinlock_t list_lock; /* protects the b_* lists */ |
59 | }; | 60 | }; |
60 | 61 | ||
@@ -106,6 +107,8 @@ struct backing_dev_info { | |||
106 | #endif | 107 | #endif |
107 | }; | 108 | }; |
108 | 109 | ||
110 | struct backing_dev_info *inode_to_bdi(struct inode *inode); | ||
111 | |||
109 | int __must_check bdi_init(struct backing_dev_info *bdi); | 112 | int __must_check bdi_init(struct backing_dev_info *bdi); |
110 | void bdi_destroy(struct backing_dev_info *bdi); | 113 | void bdi_destroy(struct backing_dev_info *bdi); |
111 | 114 | ||
@@ -114,7 +117,7 @@ int bdi_register(struct backing_dev_info *bdi, struct device *parent, | |||
114 | const char *fmt, ...); | 117 | const char *fmt, ...); |
115 | int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev); | 118 | int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev); |
116 | void bdi_unregister(struct backing_dev_info *bdi); | 119 | void bdi_unregister(struct backing_dev_info *bdi); |
117 | int __must_check bdi_setup_and_register(struct backing_dev_info *, char *, unsigned int); | 120 | int __must_check bdi_setup_and_register(struct backing_dev_info *, char *); |
118 | void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages, | 121 | void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages, |
119 | enum wb_reason reason); | 122 | enum wb_reason reason); |
120 | void bdi_start_background_writeback(struct backing_dev_info *bdi); | 123 | void bdi_start_background_writeback(struct backing_dev_info *bdi); |
@@ -228,46 +231,17 @@ int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio); | |||
228 | * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting | 231 | * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting |
229 | * BDI_CAP_NO_WRITEBACK: Don't write pages back | 232 | * BDI_CAP_NO_WRITEBACK: Don't write pages back |
230 | * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages | 233 | * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages |
231 | * | ||
232 | * These flags let !MMU mmap() govern direct device mapping vs immediate | ||
233 | * copying more easily for MAP_PRIVATE, especially for ROM filesystems. | ||
234 | * | ||
235 | * BDI_CAP_MAP_COPY: Copy can be mapped (MAP_PRIVATE) | ||
236 | * BDI_CAP_MAP_DIRECT: Can be mapped directly (MAP_SHARED) | ||
237 | * BDI_CAP_READ_MAP: Can be mapped for reading | ||
238 | * BDI_CAP_WRITE_MAP: Can be mapped for writing | ||
239 | * BDI_CAP_EXEC_MAP: Can be mapped for execution | ||
240 | * | ||
241 | * BDI_CAP_SWAP_BACKED: Count shmem/tmpfs objects as swap-backed. | ||
242 | * | ||
243 | * BDI_CAP_STRICTLIMIT: Keep number of dirty pages below bdi threshold. | 234 | * BDI_CAP_STRICTLIMIT: Keep number of dirty pages below bdi threshold. |
244 | */ | 235 | */ |
245 | #define BDI_CAP_NO_ACCT_DIRTY 0x00000001 | 236 | #define BDI_CAP_NO_ACCT_DIRTY 0x00000001 |
246 | #define BDI_CAP_NO_WRITEBACK 0x00000002 | 237 | #define BDI_CAP_NO_WRITEBACK 0x00000002 |
247 | #define BDI_CAP_MAP_COPY 0x00000004 | 238 | #define BDI_CAP_NO_ACCT_WB 0x00000004 |
248 | #define BDI_CAP_MAP_DIRECT 0x00000008 | 239 | #define BDI_CAP_STABLE_WRITES 0x00000008 |
249 | #define BDI_CAP_READ_MAP 0x00000010 | 240 | #define BDI_CAP_STRICTLIMIT 0x00000010 |
250 | #define BDI_CAP_WRITE_MAP 0x00000020 | ||
251 | #define BDI_CAP_EXEC_MAP 0x00000040 | ||
252 | #define BDI_CAP_NO_ACCT_WB 0x00000080 | ||
253 | #define BDI_CAP_SWAP_BACKED 0x00000100 | ||
254 | #define BDI_CAP_STABLE_WRITES 0x00000200 | ||
255 | #define BDI_CAP_STRICTLIMIT 0x00000400 | ||
256 | |||
257 | #define BDI_CAP_VMFLAGS \ | ||
258 | (BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP | BDI_CAP_EXEC_MAP) | ||
259 | 241 | ||
260 | #define BDI_CAP_NO_ACCT_AND_WRITEBACK \ | 242 | #define BDI_CAP_NO_ACCT_AND_WRITEBACK \ |
261 | (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB) | 243 | (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB) |
262 | 244 | ||
263 | #if defined(VM_MAYREAD) && \ | ||
264 | (BDI_CAP_READ_MAP != VM_MAYREAD || \ | ||
265 | BDI_CAP_WRITE_MAP != VM_MAYWRITE || \ | ||
266 | BDI_CAP_EXEC_MAP != VM_MAYEXEC) | ||
267 | #error please change backing_dev_info::capabilities flags | ||
268 | #endif | ||
269 | |||
270 | extern struct backing_dev_info default_backing_dev_info; | ||
271 | extern struct backing_dev_info noop_backing_dev_info; | 245 | extern struct backing_dev_info noop_backing_dev_info; |
272 | 246 | ||
273 | int writeback_in_progress(struct backing_dev_info *bdi); | 247 | int writeback_in_progress(struct backing_dev_info *bdi); |
@@ -329,24 +303,14 @@ static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi) | |||
329 | BDI_CAP_NO_WRITEBACK)); | 303 | BDI_CAP_NO_WRITEBACK)); |
330 | } | 304 | } |
331 | 305 | ||
332 | static inline bool bdi_cap_swap_backed(struct backing_dev_info *bdi) | ||
333 | { | ||
334 | return bdi->capabilities & BDI_CAP_SWAP_BACKED; | ||
335 | } | ||
336 | |||
337 | static inline bool mapping_cap_writeback_dirty(struct address_space *mapping) | 306 | static inline bool mapping_cap_writeback_dirty(struct address_space *mapping) |
338 | { | 307 | { |
339 | return bdi_cap_writeback_dirty(mapping->backing_dev_info); | 308 | return bdi_cap_writeback_dirty(inode_to_bdi(mapping->host)); |
340 | } | 309 | } |
341 | 310 | ||
342 | static inline bool mapping_cap_account_dirty(struct address_space *mapping) | 311 | static inline bool mapping_cap_account_dirty(struct address_space *mapping) |
343 | { | 312 | { |
344 | return bdi_cap_account_dirty(mapping->backing_dev_info); | 313 | return bdi_cap_account_dirty(inode_to_bdi(mapping->host)); |
345 | } | ||
346 | |||
347 | static inline bool mapping_cap_swap_backed(struct address_space *mapping) | ||
348 | { | ||
349 | return bdi_cap_swap_backed(mapping->backing_dev_info); | ||
350 | } | 314 | } |
351 | 315 | ||
352 | static inline int bdi_sched_wait(void *word) | 316 | static inline int bdi_sched_wait(void *word) |
diff --git a/include/linux/bcm47xx_wdt.h b/include/linux/bcm47xx_wdt.h index b708786d4cbf..5582c211f594 100644 --- a/include/linux/bcm47xx_wdt.h +++ b/include/linux/bcm47xx_wdt.h | |||
@@ -16,6 +16,7 @@ struct bcm47xx_wdt { | |||
16 | 16 | ||
17 | struct watchdog_device wdd; | 17 | struct watchdog_device wdd; |
18 | struct notifier_block notifier; | 18 | struct notifier_block notifier; |
19 | struct notifier_block restart_handler; | ||
19 | 20 | ||
20 | struct timer_list soft_timer; | 21 | struct timer_list soft_timer; |
21 | atomic_t soft_ticks; | 22 | atomic_t soft_ticks; |
diff --git a/include/linux/bcma/bcma.h b/include/linux/bcma/bcma.h index eb1c6a47b67f..994739da827f 100644 --- a/include/linux/bcma/bcma.h +++ b/include/linux/bcma/bcma.h | |||
@@ -318,6 +318,7 @@ struct bcma_bus { | |||
318 | const struct bcma_host_ops *ops; | 318 | const struct bcma_host_ops *ops; |
319 | 319 | ||
320 | enum bcma_hosttype hosttype; | 320 | enum bcma_hosttype hosttype; |
321 | bool host_is_pcie2; /* Used for BCMA_HOSTTYPE_PCI only */ | ||
321 | union { | 322 | union { |
322 | /* Pointer to the PCI bus (only for BCMA_HOSTTYPE_PCI) */ | 323 | /* Pointer to the PCI bus (only for BCMA_HOSTTYPE_PCI) */ |
323 | struct pci_dev *host_pci; | 324 | struct pci_dev *host_pci; |
diff --git a/include/linux/bcma/bcma_driver_pci.h b/include/linux/bcma/bcma_driver_pci.h index 0333e605ea0d..3f809ae372c4 100644 --- a/include/linux/bcma/bcma_driver_pci.h +++ b/include/linux/bcma/bcma_driver_pci.h | |||
@@ -223,6 +223,7 @@ struct bcma_drv_pci_host { | |||
223 | 223 | ||
224 | struct bcma_drv_pci { | 224 | struct bcma_drv_pci { |
225 | struct bcma_device *core; | 225 | struct bcma_device *core; |
226 | u8 early_setup_done:1; | ||
226 | u8 setup_done:1; | 227 | u8 setup_done:1; |
227 | u8 hostmode:1; | 228 | u8 hostmode:1; |
228 | 229 | ||
@@ -237,6 +238,7 @@ struct bcma_drv_pci { | |||
237 | #define pcicore_write16(pc, offset, val) bcma_write16((pc)->core, offset, val) | 238 | #define pcicore_write16(pc, offset, val) bcma_write16((pc)->core, offset, val) |
238 | #define pcicore_write32(pc, offset, val) bcma_write32((pc)->core, offset, val) | 239 | #define pcicore_write32(pc, offset, val) bcma_write32((pc)->core, offset, val) |
239 | 240 | ||
241 | extern void bcma_core_pci_early_init(struct bcma_drv_pci *pc); | ||
240 | extern void bcma_core_pci_init(struct bcma_drv_pci *pc); | 242 | extern void bcma_core_pci_init(struct bcma_drv_pci *pc); |
241 | extern int bcma_core_pci_irq_ctl(struct bcma_drv_pci *pc, | 243 | extern int bcma_core_pci_irq_ctl(struct bcma_drv_pci *pc, |
242 | struct bcma_device *core, bool enable); | 244 | struct bcma_device *core, bool enable); |
diff --git a/include/linux/bcma/bcma_regs.h b/include/linux/bcma/bcma_regs.h index e64ae7bf80a1..ebd5c1fcdea4 100644 --- a/include/linux/bcma/bcma_regs.h +++ b/include/linux/bcma/bcma_regs.h | |||
@@ -64,6 +64,8 @@ | |||
64 | #define BCMA_PCI_GPIO_XTAL 0x40 /* PCI config space GPIO 14 for Xtal powerup */ | 64 | #define BCMA_PCI_GPIO_XTAL 0x40 /* PCI config space GPIO 14 for Xtal powerup */ |
65 | #define BCMA_PCI_GPIO_PLL 0x80 /* PCI config space GPIO 15 for PLL powerdown */ | 65 | #define BCMA_PCI_GPIO_PLL 0x80 /* PCI config space GPIO 15 for PLL powerdown */ |
66 | 66 | ||
67 | #define BCMA_PCIE2_BAR0_WIN2 0x70 | ||
68 | |||
67 | /* SiliconBackplane Address Map. | 69 | /* SiliconBackplane Address Map. |
68 | * All regions may not exist on all chips. | 70 | * All regions may not exist on all chips. |
69 | */ | 71 | */ |
diff --git a/include/linux/bcma/bcma_soc.h b/include/linux/bcma/bcma_soc.h index f24d245f8394..1b5fc0c3b1b5 100644 --- a/include/linux/bcma/bcma_soc.h +++ b/include/linux/bcma/bcma_soc.h | |||
@@ -5,8 +5,6 @@ | |||
5 | 5 | ||
6 | struct bcma_soc { | 6 | struct bcma_soc { |
7 | struct bcma_bus bus; | 7 | struct bcma_bus bus; |
8 | struct bcma_device core_cc; | ||
9 | struct bcma_device core_mips; | ||
10 | }; | 8 | }; |
11 | 9 | ||
12 | int __init bcma_host_soc_register(struct bcma_soc *soc); | 10 | int __init bcma_host_soc_register(struct bcma_soc *soc); |
diff --git a/include/linux/bio.h b/include/linux/bio.h index efead0b532c4..da3a127c9958 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h | |||
@@ -428,13 +428,9 @@ extern int bio_add_page(struct bio *, struct page *, unsigned int,unsigned int); | |||
428 | extern int bio_add_pc_page(struct request_queue *, struct bio *, struct page *, | 428 | extern int bio_add_pc_page(struct request_queue *, struct bio *, struct page *, |
429 | unsigned int, unsigned int); | 429 | unsigned int, unsigned int); |
430 | extern int bio_get_nr_vecs(struct block_device *); | 430 | extern int bio_get_nr_vecs(struct block_device *); |
431 | extern struct bio *bio_map_user(struct request_queue *, struct block_device *, | ||
432 | unsigned long, unsigned int, int, gfp_t); | ||
433 | struct sg_iovec; | ||
434 | struct rq_map_data; | 431 | struct rq_map_data; |
435 | extern struct bio *bio_map_user_iov(struct request_queue *, | 432 | extern struct bio *bio_map_user_iov(struct request_queue *, |
436 | struct block_device *, | 433 | const struct iov_iter *, gfp_t); |
437 | const struct sg_iovec *, int, int, gfp_t); | ||
438 | extern void bio_unmap_user(struct bio *); | 434 | extern void bio_unmap_user(struct bio *); |
439 | extern struct bio *bio_map_kern(struct request_queue *, void *, unsigned int, | 435 | extern struct bio *bio_map_kern(struct request_queue *, void *, unsigned int, |
440 | gfp_t); | 436 | gfp_t); |
@@ -462,12 +458,10 @@ static inline void bio_flush_dcache_pages(struct bio *bi) | |||
462 | extern void bio_copy_data(struct bio *dst, struct bio *src); | 458 | extern void bio_copy_data(struct bio *dst, struct bio *src); |
463 | extern int bio_alloc_pages(struct bio *bio, gfp_t gfp); | 459 | extern int bio_alloc_pages(struct bio *bio, gfp_t gfp); |
464 | 460 | ||
465 | extern struct bio *bio_copy_user(struct request_queue *, struct rq_map_data *, | ||
466 | unsigned long, unsigned int, int, gfp_t); | ||
467 | extern struct bio *bio_copy_user_iov(struct request_queue *, | 461 | extern struct bio *bio_copy_user_iov(struct request_queue *, |
468 | struct rq_map_data *, | 462 | struct rq_map_data *, |
469 | const struct sg_iovec *, | 463 | const struct iov_iter *, |
470 | int, int, gfp_t); | 464 | gfp_t); |
471 | extern int bio_uncopy_user(struct bio *); | 465 | extern int bio_uncopy_user(struct bio *); |
472 | void zero_fill_bio(struct bio *bio); | 466 | void zero_fill_bio(struct bio *bio); |
473 | extern struct bio_vec *bvec_alloc(gfp_t, int, unsigned long *, mempool_t *); | 467 | extern struct bio_vec *bvec_alloc(gfp_t, int, unsigned long *, mempool_t *); |
diff --git a/include/linux/bitmap.h b/include/linux/bitmap.h index 202e4034fe26..dbfbf4990005 100644 --- a/include/linux/bitmap.h +++ b/include/linux/bitmap.h | |||
@@ -52,16 +52,13 @@ | |||
52 | * bitmap_bitremap(oldbit, old, new, nbits) newbit = map(old, new)(oldbit) | 52 | * bitmap_bitremap(oldbit, old, new, nbits) newbit = map(old, new)(oldbit) |
53 | * bitmap_onto(dst, orig, relmap, nbits) *dst = orig relative to relmap | 53 | * bitmap_onto(dst, orig, relmap, nbits) *dst = orig relative to relmap |
54 | * bitmap_fold(dst, orig, sz, nbits) dst bits = orig bits mod sz | 54 | * bitmap_fold(dst, orig, sz, nbits) dst bits = orig bits mod sz |
55 | * bitmap_scnprintf(buf, len, src, nbits) Print bitmap src to buf | ||
56 | * bitmap_parse(buf, buflen, dst, nbits) Parse bitmap dst from kernel buf | 55 | * bitmap_parse(buf, buflen, dst, nbits) Parse bitmap dst from kernel buf |
57 | * bitmap_parse_user(ubuf, ulen, dst, nbits) Parse bitmap dst from user buf | 56 | * bitmap_parse_user(ubuf, ulen, dst, nbits) Parse bitmap dst from user buf |
58 | * bitmap_scnlistprintf(buf, len, src, nbits) Print bitmap src as list to buf | ||
59 | * bitmap_parselist(buf, dst, nbits) Parse bitmap dst from kernel buf | 57 | * bitmap_parselist(buf, dst, nbits) Parse bitmap dst from kernel buf |
60 | * bitmap_parselist_user(buf, dst, nbits) Parse bitmap dst from user buf | 58 | * bitmap_parselist_user(buf, dst, nbits) Parse bitmap dst from user buf |
61 | * bitmap_find_free_region(bitmap, bits, order) Find and allocate bit region | 59 | * bitmap_find_free_region(bitmap, bits, order) Find and allocate bit region |
62 | * bitmap_release_region(bitmap, pos, order) Free specified bit region | 60 | * bitmap_release_region(bitmap, pos, order) Free specified bit region |
63 | * bitmap_allocate_region(bitmap, pos, order) Allocate specified bit region | 61 | * bitmap_allocate_region(bitmap, pos, order) Allocate specified bit region |
64 | * bitmap_print_to_pagebuf(list, buf, mask, nbits) Print bitmap src as list/hex | ||
65 | */ | 62 | */ |
66 | 63 | ||
67 | /* | 64 | /* |
@@ -96,10 +93,10 @@ extern int __bitmap_equal(const unsigned long *bitmap1, | |||
96 | const unsigned long *bitmap2, unsigned int nbits); | 93 | const unsigned long *bitmap2, unsigned int nbits); |
97 | extern void __bitmap_complement(unsigned long *dst, const unsigned long *src, | 94 | extern void __bitmap_complement(unsigned long *dst, const unsigned long *src, |
98 | unsigned int nbits); | 95 | unsigned int nbits); |
99 | extern void __bitmap_shift_right(unsigned long *dst, | 96 | extern void __bitmap_shift_right(unsigned long *dst, const unsigned long *src, |
100 | const unsigned long *src, int shift, int bits); | 97 | unsigned int shift, unsigned int nbits); |
101 | extern void __bitmap_shift_left(unsigned long *dst, | 98 | extern void __bitmap_shift_left(unsigned long *dst, const unsigned long *src, |
102 | const unsigned long *src, int shift, int bits); | 99 | unsigned int shift, unsigned int nbits); |
103 | extern int __bitmap_and(unsigned long *dst, const unsigned long *bitmap1, | 100 | extern int __bitmap_and(unsigned long *dst, const unsigned long *bitmap1, |
104 | const unsigned long *bitmap2, unsigned int nbits); | 101 | const unsigned long *bitmap2, unsigned int nbits); |
105 | extern void __bitmap_or(unsigned long *dst, const unsigned long *bitmap1, | 102 | extern void __bitmap_or(unsigned long *dst, const unsigned long *bitmap1, |
@@ -147,31 +144,31 @@ bitmap_find_next_zero_area(unsigned long *map, | |||
147 | align_mask, 0); | 144 | align_mask, 0); |
148 | } | 145 | } |
149 | 146 | ||
150 | extern int bitmap_scnprintf(char *buf, unsigned int len, | ||
151 | const unsigned long *src, int nbits); | ||
152 | extern int __bitmap_parse(const char *buf, unsigned int buflen, int is_user, | 147 | extern int __bitmap_parse(const char *buf, unsigned int buflen, int is_user, |
153 | unsigned long *dst, int nbits); | 148 | unsigned long *dst, int nbits); |
154 | extern int bitmap_parse_user(const char __user *ubuf, unsigned int ulen, | 149 | extern int bitmap_parse_user(const char __user *ubuf, unsigned int ulen, |
155 | unsigned long *dst, int nbits); | 150 | unsigned long *dst, int nbits); |
156 | extern int bitmap_scnlistprintf(char *buf, unsigned int len, | ||
157 | const unsigned long *src, int nbits); | ||
158 | extern int bitmap_parselist(const char *buf, unsigned long *maskp, | 151 | extern int bitmap_parselist(const char *buf, unsigned long *maskp, |
159 | int nmaskbits); | 152 | int nmaskbits); |
160 | extern int bitmap_parselist_user(const char __user *ubuf, unsigned int ulen, | 153 | extern int bitmap_parselist_user(const char __user *ubuf, unsigned int ulen, |
161 | unsigned long *dst, int nbits); | 154 | unsigned long *dst, int nbits); |
162 | extern void bitmap_remap(unsigned long *dst, const unsigned long *src, | 155 | extern void bitmap_remap(unsigned long *dst, const unsigned long *src, |
163 | const unsigned long *old, const unsigned long *new, int bits); | 156 | const unsigned long *old, const unsigned long *new, unsigned int nbits); |
164 | extern int bitmap_bitremap(int oldbit, | 157 | extern int bitmap_bitremap(int oldbit, |
165 | const unsigned long *old, const unsigned long *new, int bits); | 158 | const unsigned long *old, const unsigned long *new, int bits); |
166 | extern void bitmap_onto(unsigned long *dst, const unsigned long *orig, | 159 | extern void bitmap_onto(unsigned long *dst, const unsigned long *orig, |
167 | const unsigned long *relmap, int bits); | 160 | const unsigned long *relmap, unsigned int bits); |
168 | extern void bitmap_fold(unsigned long *dst, const unsigned long *orig, | 161 | extern void bitmap_fold(unsigned long *dst, const unsigned long *orig, |
169 | int sz, int bits); | 162 | unsigned int sz, unsigned int nbits); |
170 | extern int bitmap_find_free_region(unsigned long *bitmap, unsigned int bits, int order); | 163 | extern int bitmap_find_free_region(unsigned long *bitmap, unsigned int bits, int order); |
171 | extern void bitmap_release_region(unsigned long *bitmap, unsigned int pos, int order); | 164 | extern void bitmap_release_region(unsigned long *bitmap, unsigned int pos, int order); |
172 | extern int bitmap_allocate_region(unsigned long *bitmap, unsigned int pos, int order); | 165 | extern int bitmap_allocate_region(unsigned long *bitmap, unsigned int pos, int order); |
173 | extern void bitmap_copy_le(void *dst, const unsigned long *src, int nbits); | 166 | #ifdef __BIG_ENDIAN |
174 | extern int bitmap_ord_to_pos(const unsigned long *bitmap, int n, int bits); | 167 | extern void bitmap_copy_le(unsigned long *dst, const unsigned long *src, unsigned int nbits); |
168 | #else | ||
169 | #define bitmap_copy_le bitmap_copy | ||
170 | #endif | ||
171 | extern unsigned int bitmap_ord_to_pos(const unsigned long *bitmap, unsigned int ord, unsigned int nbits); | ||
175 | extern int bitmap_print_to_pagebuf(bool list, char *buf, | 172 | extern int bitmap_print_to_pagebuf(bool list, char *buf, |
176 | const unsigned long *maskp, int nmaskbits); | 173 | const unsigned long *maskp, int nmaskbits); |
177 | 174 | ||
@@ -185,33 +182,33 @@ extern int bitmap_print_to_pagebuf(bool list, char *buf, | |||
185 | #define small_const_nbits(nbits) \ | 182 | #define small_const_nbits(nbits) \ |
186 | (__builtin_constant_p(nbits) && (nbits) <= BITS_PER_LONG) | 183 | (__builtin_constant_p(nbits) && (nbits) <= BITS_PER_LONG) |
187 | 184 | ||
188 | static inline void bitmap_zero(unsigned long *dst, int nbits) | 185 | static inline void bitmap_zero(unsigned long *dst, unsigned int nbits) |
189 | { | 186 | { |
190 | if (small_const_nbits(nbits)) | 187 | if (small_const_nbits(nbits)) |
191 | *dst = 0UL; | 188 | *dst = 0UL; |
192 | else { | 189 | else { |
193 | int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); | 190 | unsigned int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); |
194 | memset(dst, 0, len); | 191 | memset(dst, 0, len); |
195 | } | 192 | } |
196 | } | 193 | } |
197 | 194 | ||
198 | static inline void bitmap_fill(unsigned long *dst, int nbits) | 195 | static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) |
199 | { | 196 | { |
200 | size_t nlongs = BITS_TO_LONGS(nbits); | 197 | unsigned int nlongs = BITS_TO_LONGS(nbits); |
201 | if (!small_const_nbits(nbits)) { | 198 | if (!small_const_nbits(nbits)) { |
202 | int len = (nlongs - 1) * sizeof(unsigned long); | 199 | unsigned int len = (nlongs - 1) * sizeof(unsigned long); |
203 | memset(dst, 0xff, len); | 200 | memset(dst, 0xff, len); |
204 | } | 201 | } |
205 | dst[nlongs - 1] = BITMAP_LAST_WORD_MASK(nbits); | 202 | dst[nlongs - 1] = BITMAP_LAST_WORD_MASK(nbits); |
206 | } | 203 | } |
207 | 204 | ||
208 | static inline void bitmap_copy(unsigned long *dst, const unsigned long *src, | 205 | static inline void bitmap_copy(unsigned long *dst, const unsigned long *src, |
209 | int nbits) | 206 | unsigned int nbits) |
210 | { | 207 | { |
211 | if (small_const_nbits(nbits)) | 208 | if (small_const_nbits(nbits)) |
212 | *dst = *src; | 209 | *dst = *src; |
213 | else { | 210 | else { |
214 | int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); | 211 | unsigned int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); |
215 | memcpy(dst, src, len); | 212 | memcpy(dst, src, len); |
216 | } | 213 | } |
217 | } | 214 | } |
@@ -309,22 +306,22 @@ static inline int bitmap_weight(const unsigned long *src, unsigned int nbits) | |||
309 | return __bitmap_weight(src, nbits); | 306 | return __bitmap_weight(src, nbits); |
310 | } | 307 | } |
311 | 308 | ||
312 | static inline void bitmap_shift_right(unsigned long *dst, | 309 | static inline void bitmap_shift_right(unsigned long *dst, const unsigned long *src, |
313 | const unsigned long *src, int n, int nbits) | 310 | unsigned int shift, int nbits) |
314 | { | 311 | { |
315 | if (small_const_nbits(nbits)) | 312 | if (small_const_nbits(nbits)) |
316 | *dst = (*src & BITMAP_LAST_WORD_MASK(nbits)) >> n; | 313 | *dst = (*src & BITMAP_LAST_WORD_MASK(nbits)) >> shift; |
317 | else | 314 | else |
318 | __bitmap_shift_right(dst, src, n, nbits); | 315 | __bitmap_shift_right(dst, src, shift, nbits); |
319 | } | 316 | } |
320 | 317 | ||
321 | static inline void bitmap_shift_left(unsigned long *dst, | 318 | static inline void bitmap_shift_left(unsigned long *dst, const unsigned long *src, |
322 | const unsigned long *src, int n, int nbits) | 319 | unsigned int shift, unsigned int nbits) |
323 | { | 320 | { |
324 | if (small_const_nbits(nbits)) | 321 | if (small_const_nbits(nbits)) |
325 | *dst = (*src << n) & BITMAP_LAST_WORD_MASK(nbits); | 322 | *dst = (*src << shift) & BITMAP_LAST_WORD_MASK(nbits); |
326 | else | 323 | else |
327 | __bitmap_shift_left(dst, src, n, nbits); | 324 | __bitmap_shift_left(dst, src, shift, nbits); |
328 | } | 325 | } |
329 | 326 | ||
330 | static inline int bitmap_parse(const char *buf, unsigned int buflen, | 327 | static inline int bitmap_parse(const char *buf, unsigned int buflen, |
diff --git a/include/linux/bitrev.h b/include/linux/bitrev.h index 7ffe03f4693d..fb790b8449c1 100644 --- a/include/linux/bitrev.h +++ b/include/linux/bitrev.h | |||
@@ -3,14 +3,83 @@ | |||
3 | 3 | ||
4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
5 | 5 | ||
6 | extern u8 const byte_rev_table[256]; | 6 | #ifdef CONFIG_HAVE_ARCH_BITREVERSE |
7 | #include <asm/bitrev.h> | ||
8 | |||
9 | #define __bitrev32 __arch_bitrev32 | ||
10 | #define __bitrev16 __arch_bitrev16 | ||
11 | #define __bitrev8 __arch_bitrev8 | ||
7 | 12 | ||
8 | static inline u8 bitrev8(u8 byte) | 13 | #else |
14 | extern u8 const byte_rev_table[256]; | ||
15 | static inline u8 __bitrev8(u8 byte) | ||
9 | { | 16 | { |
10 | return byte_rev_table[byte]; | 17 | return byte_rev_table[byte]; |
11 | } | 18 | } |
12 | 19 | ||
13 | extern u16 bitrev16(u16 in); | 20 | static inline u16 __bitrev16(u16 x) |
14 | extern u32 bitrev32(u32 in); | 21 | { |
22 | return (__bitrev8(x & 0xff) << 8) | __bitrev8(x >> 8); | ||
23 | } | ||
24 | |||
25 | static inline u32 __bitrev32(u32 x) | ||
26 | { | ||
27 | return (__bitrev16(x & 0xffff) << 16) | __bitrev16(x >> 16); | ||
28 | } | ||
29 | |||
30 | #endif /* CONFIG_HAVE_ARCH_BITREVERSE */ | ||
31 | |||
32 | #define __constant_bitrev32(x) \ | ||
33 | ({ \ | ||
34 | u32 __x = x; \ | ||
35 | __x = (__x >> 16) | (__x << 16); \ | ||
36 | __x = ((__x & (u32)0xFF00FF00UL) >> 8) | ((__x & (u32)0x00FF00FFUL) << 8); \ | ||
37 | __x = ((__x & (u32)0xF0F0F0F0UL) >> 4) | ((__x & (u32)0x0F0F0F0FUL) << 4); \ | ||
38 | __x = ((__x & (u32)0xCCCCCCCCUL) >> 2) | ((__x & (u32)0x33333333UL) << 2); \ | ||
39 | __x = ((__x & (u32)0xAAAAAAAAUL) >> 1) | ((__x & (u32)0x55555555UL) << 1); \ | ||
40 | __x; \ | ||
41 | }) | ||
42 | |||
43 | #define __constant_bitrev16(x) \ | ||
44 | ({ \ | ||
45 | u16 __x = x; \ | ||
46 | __x = (__x >> 8) | (__x << 8); \ | ||
47 | __x = ((__x & (u16)0xF0F0U) >> 4) | ((__x & (u16)0x0F0FU) << 4); \ | ||
48 | __x = ((__x & (u16)0xCCCCU) >> 2) | ((__x & (u16)0x3333U) << 2); \ | ||
49 | __x = ((__x & (u16)0xAAAAU) >> 1) | ((__x & (u16)0x5555U) << 1); \ | ||
50 | __x; \ | ||
51 | }) | ||
52 | |||
53 | #define __constant_bitrev8(x) \ | ||
54 | ({ \ | ||
55 | u8 __x = x; \ | ||
56 | __x = (__x >> 4) | (__x << 4); \ | ||
57 | __x = ((__x & (u8)0xCCU) >> 2) | ((__x & (u8)0x33U) << 2); \ | ||
58 | __x = ((__x & (u8)0xAAU) >> 1) | ((__x & (u8)0x55U) << 1); \ | ||
59 | __x; \ | ||
60 | }) | ||
61 | |||
62 | #define bitrev32(x) \ | ||
63 | ({ \ | ||
64 | u32 __x = x; \ | ||
65 | __builtin_constant_p(__x) ? \ | ||
66 | __constant_bitrev32(__x) : \ | ||
67 | __bitrev32(__x); \ | ||
68 | }) | ||
69 | |||
70 | #define bitrev16(x) \ | ||
71 | ({ \ | ||
72 | u16 __x = x; \ | ||
73 | __builtin_constant_p(__x) ? \ | ||
74 | __constant_bitrev16(__x) : \ | ||
75 | __bitrev16(__x); \ | ||
76 | }) | ||
15 | 77 | ||
78 | #define bitrev8(x) \ | ||
79 | ({ \ | ||
80 | u8 __x = x; \ | ||
81 | __builtin_constant_p(__x) ? \ | ||
82 | __constant_bitrev8(__x) : \ | ||
83 | __bitrev8(__x) ; \ | ||
84 | }) | ||
16 | #endif /* _LINUX_BITREV_H */ | 85 | #endif /* _LINUX_BITREV_H */ |
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h index 5735e7130d63..7aec86127335 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h | |||
@@ -146,6 +146,8 @@ enum { | |||
146 | BLK_MQ_F_SG_MERGE = 1 << 2, | 146 | BLK_MQ_F_SG_MERGE = 1 << 2, |
147 | BLK_MQ_F_SYSFS_UP = 1 << 3, | 147 | BLK_MQ_F_SYSFS_UP = 1 << 3, |
148 | BLK_MQ_F_DEFER_ISSUE = 1 << 4, | 148 | BLK_MQ_F_DEFER_ISSUE = 1 << 4, |
149 | BLK_MQ_F_ALLOC_POLICY_START_BIT = 8, | ||
150 | BLK_MQ_F_ALLOC_POLICY_BITS = 1, | ||
149 | 151 | ||
150 | BLK_MQ_S_STOPPED = 0, | 152 | BLK_MQ_S_STOPPED = 0, |
151 | BLK_MQ_S_TAG_ACTIVE = 1, | 153 | BLK_MQ_S_TAG_ACTIVE = 1, |
@@ -154,6 +156,12 @@ enum { | |||
154 | 156 | ||
155 | BLK_MQ_CPU_WORK_BATCH = 8, | 157 | BLK_MQ_CPU_WORK_BATCH = 8, |
156 | }; | 158 | }; |
159 | #define BLK_MQ_FLAG_TO_ALLOC_POLICY(flags) \ | ||
160 | ((flags >> BLK_MQ_F_ALLOC_POLICY_START_BIT) & \ | ||
161 | ((1 << BLK_MQ_F_ALLOC_POLICY_BITS) - 1)) | ||
162 | #define BLK_ALLOC_POLICY_TO_MQ_FLAG(policy) \ | ||
163 | ((policy & ((1 << BLK_MQ_F_ALLOC_POLICY_BITS) - 1)) \ | ||
164 | << BLK_MQ_F_ALLOC_POLICY_START_BIT) | ||
157 | 165 | ||
158 | struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *); | 166 | struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *); |
159 | void blk_mq_finish_init(struct request_queue *q); | 167 | void blk_mq_finish_init(struct request_queue *q); |
@@ -166,7 +174,6 @@ void blk_mq_free_tag_set(struct blk_mq_tag_set *set); | |||
166 | void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule); | 174 | void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule); |
167 | 175 | ||
168 | void blk_mq_insert_request(struct request *, bool, bool, bool); | 176 | void blk_mq_insert_request(struct request *, bool, bool, bool); |
169 | void blk_mq_run_queues(struct request_queue *q, bool async); | ||
170 | void blk_mq_free_request(struct request *rq); | 177 | void blk_mq_free_request(struct request *rq); |
171 | void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *, struct request *rq); | 178 | void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *, struct request *rq); |
172 | bool blk_mq_can_queue(struct blk_mq_hw_ctx *); | 179 | bool blk_mq_can_queue(struct blk_mq_hw_ctx *); |
@@ -214,6 +221,7 @@ void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async); | |||
214 | void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs); | 221 | void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs); |
215 | void blk_mq_tag_busy_iter(struct blk_mq_hw_ctx *hctx, busy_iter_fn *fn, | 222 | void blk_mq_tag_busy_iter(struct blk_mq_hw_ctx *hctx, busy_iter_fn *fn, |
216 | void *priv); | 223 | void *priv); |
224 | void blk_mq_freeze_queue(struct request_queue *q); | ||
217 | void blk_mq_unfreeze_queue(struct request_queue *q); | 225 | void blk_mq_unfreeze_queue(struct request_queue *q); |
218 | void blk_mq_freeze_queue_start(struct request_queue *q); | 226 | void blk_mq_freeze_queue_start(struct request_queue *q); |
219 | 227 | ||
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 92f4b4b288dd..7f9a516f24de 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
@@ -272,7 +272,11 @@ struct blk_queue_tag { | |||
272 | int max_depth; /* what we will send to device */ | 272 | int max_depth; /* what we will send to device */ |
273 | int real_max_depth; /* what the array can hold */ | 273 | int real_max_depth; /* what the array can hold */ |
274 | atomic_t refcnt; /* map can be shared */ | 274 | atomic_t refcnt; /* map can be shared */ |
275 | int alloc_policy; /* tag allocation policy */ | ||
276 | int next_tag; /* next tag */ | ||
275 | }; | 277 | }; |
278 | #define BLK_TAG_ALLOC_FIFO 0 /* allocate starting from 0 */ | ||
279 | #define BLK_TAG_ALLOC_RR 1 /* allocate starting from last allocated tag */ | ||
276 | 280 | ||
277 | #define BLK_SCSI_MAX_CMDS (256) | 281 | #define BLK_SCSI_MAX_CMDS (256) |
278 | #define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8)) | 282 | #define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8)) |
@@ -516,6 +520,7 @@ struct request_queue { | |||
516 | (1 << QUEUE_FLAG_ADD_RANDOM)) | 520 | (1 << QUEUE_FLAG_ADD_RANDOM)) |
517 | 521 | ||
518 | #define QUEUE_FLAG_MQ_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \ | 522 | #define QUEUE_FLAG_MQ_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \ |
523 | (1 << QUEUE_FLAG_STACKABLE) | \ | ||
519 | (1 << QUEUE_FLAG_SAME_COMP)) | 524 | (1 << QUEUE_FLAG_SAME_COMP)) |
520 | 525 | ||
521 | static inline void queue_lockdep_assert_held(struct request_queue *q) | 526 | static inline void queue_lockdep_assert_held(struct request_queue *q) |
@@ -850,8 +855,8 @@ extern int blk_rq_map_user(struct request_queue *, struct request *, | |||
850 | extern int blk_rq_unmap_user(struct bio *); | 855 | extern int blk_rq_unmap_user(struct bio *); |
851 | extern int blk_rq_map_kern(struct request_queue *, struct request *, void *, unsigned int, gfp_t); | 856 | extern int blk_rq_map_kern(struct request_queue *, struct request *, void *, unsigned int, gfp_t); |
852 | extern int blk_rq_map_user_iov(struct request_queue *, struct request *, | 857 | extern int blk_rq_map_user_iov(struct request_queue *, struct request *, |
853 | struct rq_map_data *, const struct sg_iovec *, | 858 | struct rq_map_data *, const struct iov_iter *, |
854 | int, unsigned int, gfp_t); | 859 | gfp_t); |
855 | extern int blk_execute_rq(struct request_queue *, struct gendisk *, | 860 | extern int blk_execute_rq(struct request_queue *, struct gendisk *, |
856 | struct request *, int); | 861 | struct request *, int); |
857 | extern void blk_execute_rq_nowait(struct request_queue *, struct gendisk *, | 862 | extern void blk_execute_rq_nowait(struct request_queue *, struct gendisk *, |
@@ -1044,8 +1049,6 @@ extern void blk_queue_flush_queueable(struct request_queue *q, bool queueable); | |||
1044 | extern struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev); | 1049 | extern struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev); |
1045 | 1050 | ||
1046 | extern int blk_rq_map_sg(struct request_queue *, struct request *, struct scatterlist *); | 1051 | extern int blk_rq_map_sg(struct request_queue *, struct request *, struct scatterlist *); |
1047 | extern int blk_bio_map_sg(struct request_queue *q, struct bio *bio, | ||
1048 | struct scatterlist *sglist); | ||
1049 | extern void blk_dump_rq_flags(struct request *, char *); | 1052 | extern void blk_dump_rq_flags(struct request *, char *); |
1050 | extern long nr_blockdev_pages(void); | 1053 | extern long nr_blockdev_pages(void); |
1051 | 1054 | ||
@@ -1139,11 +1142,11 @@ static inline bool blk_needs_flush_plug(struct task_struct *tsk) | |||
1139 | extern int blk_queue_start_tag(struct request_queue *, struct request *); | 1142 | extern int blk_queue_start_tag(struct request_queue *, struct request *); |
1140 | extern struct request *blk_queue_find_tag(struct request_queue *, int); | 1143 | extern struct request *blk_queue_find_tag(struct request_queue *, int); |
1141 | extern void blk_queue_end_tag(struct request_queue *, struct request *); | 1144 | extern void blk_queue_end_tag(struct request_queue *, struct request *); |
1142 | extern int blk_queue_init_tags(struct request_queue *, int, struct blk_queue_tag *); | 1145 | extern int blk_queue_init_tags(struct request_queue *, int, struct blk_queue_tag *, int); |
1143 | extern void blk_queue_free_tags(struct request_queue *); | 1146 | extern void blk_queue_free_tags(struct request_queue *); |
1144 | extern int blk_queue_resize_tags(struct request_queue *, int); | 1147 | extern int blk_queue_resize_tags(struct request_queue *, int); |
1145 | extern void blk_queue_invalidate_tags(struct request_queue *); | 1148 | extern void blk_queue_invalidate_tags(struct request_queue *); |
1146 | extern struct blk_queue_tag *blk_init_tags(int); | 1149 | extern struct blk_queue_tag *blk_init_tags(int, int); |
1147 | extern void blk_free_tags(struct blk_queue_tag *); | 1150 | extern void blk_free_tags(struct blk_queue_tag *); |
1148 | 1151 | ||
1149 | static inline struct request *blk_map_queue_find_tag(struct blk_queue_tag *bqt, | 1152 | static inline struct request *blk_map_queue_find_tag(struct blk_queue_tag *bqt, |
@@ -1162,7 +1165,7 @@ extern int blkdev_issue_discard(struct block_device *bdev, sector_t sector, | |||
1162 | extern int blkdev_issue_write_same(struct block_device *bdev, sector_t sector, | 1165 | extern int blkdev_issue_write_same(struct block_device *bdev, sector_t sector, |
1163 | sector_t nr_sects, gfp_t gfp_mask, struct page *page); | 1166 | sector_t nr_sects, gfp_t gfp_mask, struct page *page); |
1164 | extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector, | 1167 | extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector, |
1165 | sector_t nr_sects, gfp_t gfp_mask); | 1168 | sector_t nr_sects, gfp_t gfp_mask, bool discard); |
1166 | static inline int sb_issue_discard(struct super_block *sb, sector_t block, | 1169 | static inline int sb_issue_discard(struct super_block *sb, sector_t block, |
1167 | sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags) | 1170 | sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags) |
1168 | { | 1171 | { |
@@ -1176,7 +1179,7 @@ static inline int sb_issue_zeroout(struct super_block *sb, sector_t block, | |||
1176 | return blkdev_issue_zeroout(sb->s_bdev, | 1179 | return blkdev_issue_zeroout(sb->s_bdev, |
1177 | block << (sb->s_blocksize_bits - 9), | 1180 | block << (sb->s_blocksize_bits - 9), |
1178 | nr_blocks << (sb->s_blocksize_bits - 9), | 1181 | nr_blocks << (sb->s_blocksize_bits - 9), |
1179 | gfp_mask); | 1182 | gfp_mask, true); |
1180 | } | 1183 | } |
1181 | 1184 | ||
1182 | extern int blk_verify_command(unsigned char *cmd, fmode_t has_write_perm); | 1185 | extern int blk_verify_command(unsigned char *cmd, fmode_t has_write_perm); |
@@ -1601,8 +1604,8 @@ struct block_device_operations { | |||
1601 | int (*rw_page)(struct block_device *, sector_t, struct page *, int rw); | 1604 | int (*rw_page)(struct block_device *, sector_t, struct page *, int rw); |
1602 | int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); | 1605 | int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); |
1603 | int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); | 1606 | int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); |
1604 | int (*direct_access) (struct block_device *, sector_t, | 1607 | long (*direct_access)(struct block_device *, sector_t, |
1605 | void **, unsigned long *); | 1608 | void **, unsigned long *pfn, long size); |
1606 | unsigned int (*check_events) (struct gendisk *disk, | 1609 | unsigned int (*check_events) (struct gendisk *disk, |
1607 | unsigned int clearing); | 1610 | unsigned int clearing); |
1608 | /* ->media_changed() is DEPRECATED, use ->check_events() instead */ | 1611 | /* ->media_changed() is DEPRECATED, use ->check_events() instead */ |
@@ -1620,6 +1623,8 @@ extern int __blkdev_driver_ioctl(struct block_device *, fmode_t, unsigned int, | |||
1620 | extern int bdev_read_page(struct block_device *, sector_t, struct page *); | 1623 | extern int bdev_read_page(struct block_device *, sector_t, struct page *); |
1621 | extern int bdev_write_page(struct block_device *, sector_t, struct page *, | 1624 | extern int bdev_write_page(struct block_device *, sector_t, struct page *, |
1622 | struct writeback_control *); | 1625 | struct writeback_control *); |
1626 | extern long bdev_direct_access(struct block_device *, sector_t, void **addr, | ||
1627 | unsigned long *pfn, long size); | ||
1623 | #else /* CONFIG_BLOCK */ | 1628 | #else /* CONFIG_BLOCK */ |
1624 | 1629 | ||
1625 | struct block_device; | 1630 | struct block_device; |
diff --git a/include/linux/cdev.h b/include/linux/cdev.h index fb4591977b03..f8763615a5f2 100644 --- a/include/linux/cdev.h +++ b/include/linux/cdev.h | |||
@@ -30,6 +30,4 @@ void cdev_del(struct cdev *); | |||
30 | 30 | ||
31 | void cd_forget(struct inode *); | 31 | void cd_forget(struct inode *); |
32 | 32 | ||
33 | extern struct backing_dev_info directly_mappable_cdev_bdi; | ||
34 | |||
35 | #endif | 33 | #endif |
diff --git a/include/linux/ceph/ceph_fs.h b/include/linux/ceph/ceph_fs.h index c0dadaac26e3..31eb03d0c766 100644 --- a/include/linux/ceph/ceph_fs.h +++ b/include/linux/ceph/ceph_fs.h | |||
@@ -158,17 +158,6 @@ enum { | |||
158 | }; | 158 | }; |
159 | 159 | ||
160 | 160 | ||
161 | /* pool operations */ | ||
162 | enum { | ||
163 | POOL_OP_CREATE = 0x01, | ||
164 | POOL_OP_DELETE = 0x02, | ||
165 | POOL_OP_AUID_CHANGE = 0x03, | ||
166 | POOL_OP_CREATE_SNAP = 0x11, | ||
167 | POOL_OP_DELETE_SNAP = 0x12, | ||
168 | POOL_OP_CREATE_UNMANAGED_SNAP = 0x21, | ||
169 | POOL_OP_DELETE_UNMANAGED_SNAP = 0x22, | ||
170 | }; | ||
171 | |||
172 | struct ceph_mon_request_header { | 161 | struct ceph_mon_request_header { |
173 | __le64 have_version; | 162 | __le64 have_version; |
174 | __le16 session_mon; | 163 | __le16 session_mon; |
@@ -191,31 +180,6 @@ struct ceph_mon_statfs_reply { | |||
191 | struct ceph_statfs st; | 180 | struct ceph_statfs st; |
192 | } __attribute__ ((packed)); | 181 | } __attribute__ ((packed)); |
193 | 182 | ||
194 | const char *ceph_pool_op_name(int op); | ||
195 | |||
196 | struct ceph_mon_poolop { | ||
197 | struct ceph_mon_request_header monhdr; | ||
198 | struct ceph_fsid fsid; | ||
199 | __le32 pool; | ||
200 | __le32 op; | ||
201 | __le64 auid; | ||
202 | __le64 snapid; | ||
203 | __le32 name_len; | ||
204 | } __attribute__ ((packed)); | ||
205 | |||
206 | struct ceph_mon_poolop_reply { | ||
207 | struct ceph_mon_request_header monhdr; | ||
208 | struct ceph_fsid fsid; | ||
209 | __le32 reply_code; | ||
210 | __le32 epoch; | ||
211 | char has_data; | ||
212 | char data[0]; | ||
213 | } __attribute__ ((packed)); | ||
214 | |||
215 | struct ceph_mon_unmanaged_snap { | ||
216 | __le64 snapid; | ||
217 | } __attribute__ ((packed)); | ||
218 | |||
219 | struct ceph_osd_getmap { | 183 | struct ceph_osd_getmap { |
220 | struct ceph_mon_request_header monhdr; | 184 | struct ceph_mon_request_header monhdr; |
221 | struct ceph_fsid fsid; | 185 | struct ceph_fsid fsid; |
@@ -307,6 +271,7 @@ enum { | |||
307 | CEPH_SESSION_RECALL_STATE, | 271 | CEPH_SESSION_RECALL_STATE, |
308 | CEPH_SESSION_FLUSHMSG, | 272 | CEPH_SESSION_FLUSHMSG, |
309 | CEPH_SESSION_FLUSHMSG_ACK, | 273 | CEPH_SESSION_FLUSHMSG_ACK, |
274 | CEPH_SESSION_FORCE_RO, | ||
310 | }; | 275 | }; |
311 | 276 | ||
312 | extern const char *ceph_session_op_name(int op); | 277 | extern const char *ceph_session_op_name(int op); |
diff --git a/include/linux/ceph/libceph.h b/include/linux/ceph/libceph.h index 8b11a79ca1cb..16fff9608848 100644 --- a/include/linux/ceph/libceph.h +++ b/include/linux/ceph/libceph.h | |||
@@ -30,8 +30,9 @@ | |||
30 | #define CEPH_OPT_MYIP (1<<2) /* specified my ip */ | 30 | #define CEPH_OPT_MYIP (1<<2) /* specified my ip */ |
31 | #define CEPH_OPT_NOCRC (1<<3) /* no data crc on writes */ | 31 | #define CEPH_OPT_NOCRC (1<<3) /* no data crc on writes */ |
32 | #define CEPH_OPT_NOMSGAUTH (1<<4) /* not require cephx message signature */ | 32 | #define CEPH_OPT_NOMSGAUTH (1<<4) /* not require cephx message signature */ |
33 | #define CEPH_OPT_TCP_NODELAY (1<<5) /* TCP_NODELAY on TCP sockets */ | ||
33 | 34 | ||
34 | #define CEPH_OPT_DEFAULT (0) | 35 | #define CEPH_OPT_DEFAULT (CEPH_OPT_TCP_NODELAY) |
35 | 36 | ||
36 | #define ceph_set_opt(client, opt) \ | 37 | #define ceph_set_opt(client, opt) \ |
37 | (client)->options->flags |= CEPH_OPT_##opt; | 38 | (client)->options->flags |= CEPH_OPT_##opt; |
diff --git a/include/linux/ceph/messenger.h b/include/linux/ceph/messenger.h index d9d396c16503..e15499422fdc 100644 --- a/include/linux/ceph/messenger.h +++ b/include/linux/ceph/messenger.h | |||
@@ -57,6 +57,7 @@ struct ceph_messenger { | |||
57 | 57 | ||
58 | atomic_t stopping; | 58 | atomic_t stopping; |
59 | bool nocrc; | 59 | bool nocrc; |
60 | bool tcp_nodelay; | ||
60 | 61 | ||
61 | /* | 62 | /* |
62 | * the global_seq counts connections i (attempt to) initiate | 63 | * the global_seq counts connections i (attempt to) initiate |
@@ -264,7 +265,8 @@ extern void ceph_messenger_init(struct ceph_messenger *msgr, | |||
264 | struct ceph_entity_addr *myaddr, | 265 | struct ceph_entity_addr *myaddr, |
265 | u64 supported_features, | 266 | u64 supported_features, |
266 | u64 required_features, | 267 | u64 required_features, |
267 | bool nocrc); | 268 | bool nocrc, |
269 | bool tcp_nodelay); | ||
268 | 270 | ||
269 | extern void ceph_con_init(struct ceph_connection *con, void *private, | 271 | extern void ceph_con_init(struct ceph_connection *con, void *private, |
270 | const struct ceph_connection_operations *ops, | 272 | const struct ceph_connection_operations *ops, |
diff --git a/include/linux/ceph/mon_client.h b/include/linux/ceph/mon_client.h index deb47e45ac7c..81810dc21f06 100644 --- a/include/linux/ceph/mon_client.h +++ b/include/linux/ceph/mon_client.h | |||
@@ -40,7 +40,7 @@ struct ceph_mon_request { | |||
40 | }; | 40 | }; |
41 | 41 | ||
42 | /* | 42 | /* |
43 | * ceph_mon_generic_request is being used for the statfs, poolop and | 43 | * ceph_mon_generic_request is being used for the statfs and |
44 | * mon_get_version requests which are being done a bit differently | 44 | * mon_get_version requests which are being done a bit differently |
45 | * because we need to get data back to the caller | 45 | * because we need to get data back to the caller |
46 | */ | 46 | */ |
@@ -50,7 +50,6 @@ struct ceph_mon_generic_request { | |||
50 | struct rb_node node; | 50 | struct rb_node node; |
51 | int result; | 51 | int result; |
52 | void *buf; | 52 | void *buf; |
53 | int buf_len; | ||
54 | struct completion completion; | 53 | struct completion completion; |
55 | struct ceph_msg *request; /* original request */ | 54 | struct ceph_msg *request; /* original request */ |
56 | struct ceph_msg *reply; /* and reply */ | 55 | struct ceph_msg *reply; /* and reply */ |
@@ -117,10 +116,4 @@ extern int ceph_monc_open_session(struct ceph_mon_client *monc); | |||
117 | 116 | ||
118 | extern int ceph_monc_validate_auth(struct ceph_mon_client *monc); | 117 | extern int ceph_monc_validate_auth(struct ceph_mon_client *monc); |
119 | 118 | ||
120 | extern int ceph_monc_create_snapid(struct ceph_mon_client *monc, | ||
121 | u32 pool, u64 *snapid); | ||
122 | |||
123 | extern int ceph_monc_delete_snapid(struct ceph_mon_client *monc, | ||
124 | u32 pool, u64 snapid); | ||
125 | |||
126 | #endif | 119 | #endif |
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index da0dae0600e6..b9cb94c3102a 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h | |||
@@ -943,6 +943,8 @@ struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry, | |||
943 | 943 | ||
944 | #else /* !CONFIG_CGROUPS */ | 944 | #else /* !CONFIG_CGROUPS */ |
945 | 945 | ||
946 | struct cgroup_subsys_state; | ||
947 | |||
946 | static inline int cgroup_init_early(void) { return 0; } | 948 | static inline int cgroup_init_early(void) { return 0; } |
947 | static inline int cgroup_init(void) { return 0; } | 949 | static inline int cgroup_init(void) { return 0; } |
948 | static inline void cgroup_fork(struct task_struct *p) {} | 950 | static inline void cgroup_fork(struct task_struct *p) {} |
@@ -955,6 +957,8 @@ static inline int cgroupstats_build(struct cgroupstats *stats, | |||
955 | return -EINVAL; | 957 | return -EINVAL; |
956 | } | 958 | } |
957 | 959 | ||
960 | static inline void css_put(struct cgroup_subsys_state *css) {} | ||
961 | |||
958 | /* No cgroups - nothing to do */ | 962 | /* No cgroups - nothing to do */ |
959 | static inline int cgroup_attach_task_all(struct task_struct *from, | 963 | static inline int cgroup_attach_task_all(struct task_struct *from, |
960 | struct task_struct *t) | 964 | struct task_struct *t) |
diff --git a/include/linux/cgroup_subsys.h b/include/linux/cgroup_subsys.h index 98c4f9b12b03..e4a96fb14403 100644 --- a/include/linux/cgroup_subsys.h +++ b/include/linux/cgroup_subsys.h | |||
@@ -15,6 +15,10 @@ SUBSYS(cpu) | |||
15 | SUBSYS(cpuacct) | 15 | SUBSYS(cpuacct) |
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | #if IS_ENABLED(CONFIG_BLK_CGROUP) | ||
19 | SUBSYS(blkio) | ||
20 | #endif | ||
21 | |||
18 | #if IS_ENABLED(CONFIG_MEMCG) | 22 | #if IS_ENABLED(CONFIG_MEMCG) |
19 | SUBSYS(memory) | 23 | SUBSYS(memory) |
20 | #endif | 24 | #endif |
@@ -31,10 +35,6 @@ SUBSYS(freezer) | |||
31 | SUBSYS(net_cls) | 35 | SUBSYS(net_cls) |
32 | #endif | 36 | #endif |
33 | 37 | ||
34 | #if IS_ENABLED(CONFIG_BLK_CGROUP) | ||
35 | SUBSYS(blkio) | ||
36 | #endif | ||
37 | |||
38 | #if IS_ENABLED(CONFIG_CGROUP_PERF) | 38 | #if IS_ENABLED(CONFIG_CGROUP_PERF) |
39 | SUBSYS(perf_event) | 39 | SUBSYS(perf_event) |
40 | #endif | 40 | #endif |
diff --git a/include/linux/clk-private.h b/include/linux/clk-private.h deleted file mode 100644 index 0ca5f6046920..000000000000 --- a/include/linux/clk-private.h +++ /dev/null | |||
@@ -1,220 +0,0 @@ | |||
1 | /* | ||
2 | * linux/include/linux/clk-private.h | ||
3 | * | ||
4 | * Copyright (c) 2010-2011 Jeremy Kerr <jeremy.kerr@canonical.com> | ||
5 | * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | #ifndef __LINUX_CLK_PRIVATE_H | ||
12 | #define __LINUX_CLK_PRIVATE_H | ||
13 | |||
14 | #include <linux/clk-provider.h> | ||
15 | #include <linux/kref.h> | ||
16 | #include <linux/list.h> | ||
17 | |||
18 | /* | ||
19 | * WARNING: Do not include clk-private.h from any file that implements struct | ||
20 | * clk_ops. Doing so is a layering violation! | ||
21 | * | ||
22 | * This header exists only to allow for statically initialized clock data. Any | ||
23 | * static clock data must be defined in a separate file from the logic that | ||
24 | * implements the clock operations for that same data. | ||
25 | */ | ||
26 | |||
27 | #ifdef CONFIG_COMMON_CLK | ||
28 | |||
29 | struct module; | ||
30 | |||
31 | struct clk { | ||
32 | const char *name; | ||
33 | const struct clk_ops *ops; | ||
34 | struct clk_hw *hw; | ||
35 | struct module *owner; | ||
36 | struct clk *parent; | ||
37 | const char **parent_names; | ||
38 | struct clk **parents; | ||
39 | u8 num_parents; | ||
40 | u8 new_parent_index; | ||
41 | unsigned long rate; | ||
42 | unsigned long new_rate; | ||
43 | struct clk *new_parent; | ||
44 | struct clk *new_child; | ||
45 | unsigned long flags; | ||
46 | unsigned int enable_count; | ||
47 | unsigned int prepare_count; | ||
48 | unsigned long accuracy; | ||
49 | int phase; | ||
50 | struct hlist_head children; | ||
51 | struct hlist_node child_node; | ||
52 | struct hlist_node debug_node; | ||
53 | unsigned int notifier_count; | ||
54 | #ifdef CONFIG_DEBUG_FS | ||
55 | struct dentry *dentry; | ||
56 | #endif | ||
57 | struct kref ref; | ||
58 | }; | ||
59 | |||
60 | /* | ||
61 | * DOC: Basic clock implementations common to many platforms | ||
62 | * | ||
63 | * Each basic clock hardware type is comprised of a structure describing the | ||
64 | * clock hardware, implementations of the relevant callbacks in struct clk_ops, | ||
65 | * unique flags for that hardware type, a registration function and an | ||
66 | * alternative macro for static initialization | ||
67 | */ | ||
68 | |||
69 | #define DEFINE_CLK(_name, _ops, _flags, _parent_names, \ | ||
70 | _parents) \ | ||
71 | static struct clk _name = { \ | ||
72 | .name = #_name, \ | ||
73 | .ops = &_ops, \ | ||
74 | .hw = &_name##_hw.hw, \ | ||
75 | .parent_names = _parent_names, \ | ||
76 | .num_parents = ARRAY_SIZE(_parent_names), \ | ||
77 | .parents = _parents, \ | ||
78 | .flags = _flags | CLK_IS_BASIC, \ | ||
79 | } | ||
80 | |||
81 | #define DEFINE_CLK_FIXED_RATE(_name, _flags, _rate, \ | ||
82 | _fixed_rate_flags) \ | ||
83 | static struct clk _name; \ | ||
84 | static const char *_name##_parent_names[] = {}; \ | ||
85 | static struct clk_fixed_rate _name##_hw = { \ | ||
86 | .hw = { \ | ||
87 | .clk = &_name, \ | ||
88 | }, \ | ||
89 | .fixed_rate = _rate, \ | ||
90 | .flags = _fixed_rate_flags, \ | ||
91 | }; \ | ||
92 | DEFINE_CLK(_name, clk_fixed_rate_ops, _flags, \ | ||
93 | _name##_parent_names, NULL); | ||
94 | |||
95 | #define DEFINE_CLK_GATE(_name, _parent_name, _parent_ptr, \ | ||
96 | _flags, _reg, _bit_idx, \ | ||
97 | _gate_flags, _lock) \ | ||
98 | static struct clk _name; \ | ||
99 | static const char *_name##_parent_names[] = { \ | ||
100 | _parent_name, \ | ||
101 | }; \ | ||
102 | static struct clk *_name##_parents[] = { \ | ||
103 | _parent_ptr, \ | ||
104 | }; \ | ||
105 | static struct clk_gate _name##_hw = { \ | ||
106 | .hw = { \ | ||
107 | .clk = &_name, \ | ||
108 | }, \ | ||
109 | .reg = _reg, \ | ||
110 | .bit_idx = _bit_idx, \ | ||
111 | .flags = _gate_flags, \ | ||
112 | .lock = _lock, \ | ||
113 | }; \ | ||
114 | DEFINE_CLK(_name, clk_gate_ops, _flags, \ | ||
115 | _name##_parent_names, _name##_parents); | ||
116 | |||
117 | #define _DEFINE_CLK_DIVIDER(_name, _parent_name, _parent_ptr, \ | ||
118 | _flags, _reg, _shift, _width, \ | ||
119 | _divider_flags, _table, _lock) \ | ||
120 | static struct clk _name; \ | ||
121 | static const char *_name##_parent_names[] = { \ | ||
122 | _parent_name, \ | ||
123 | }; \ | ||
124 | static struct clk *_name##_parents[] = { \ | ||
125 | _parent_ptr, \ | ||
126 | }; \ | ||
127 | static struct clk_divider _name##_hw = { \ | ||
128 | .hw = { \ | ||
129 | .clk = &_name, \ | ||
130 | }, \ | ||
131 | .reg = _reg, \ | ||
132 | .shift = _shift, \ | ||
133 | .width = _width, \ | ||
134 | .flags = _divider_flags, \ | ||
135 | .table = _table, \ | ||
136 | .lock = _lock, \ | ||
137 | }; \ | ||
138 | DEFINE_CLK(_name, clk_divider_ops, _flags, \ | ||
139 | _name##_parent_names, _name##_parents); | ||
140 | |||
141 | #define DEFINE_CLK_DIVIDER(_name, _parent_name, _parent_ptr, \ | ||
142 | _flags, _reg, _shift, _width, \ | ||
143 | _divider_flags, _lock) \ | ||
144 | _DEFINE_CLK_DIVIDER(_name, _parent_name, _parent_ptr, \ | ||
145 | _flags, _reg, _shift, _width, \ | ||
146 | _divider_flags, NULL, _lock) | ||
147 | |||
148 | #define DEFINE_CLK_DIVIDER_TABLE(_name, _parent_name, \ | ||
149 | _parent_ptr, _flags, _reg, \ | ||
150 | _shift, _width, _divider_flags, \ | ||
151 | _table, _lock) \ | ||
152 | _DEFINE_CLK_DIVIDER(_name, _parent_name, _parent_ptr, \ | ||
153 | _flags, _reg, _shift, _width, \ | ||
154 | _divider_flags, _table, _lock) \ | ||
155 | |||
156 | #define DEFINE_CLK_MUX(_name, _parent_names, _parents, _flags, \ | ||
157 | _reg, _shift, _width, \ | ||
158 | _mux_flags, _lock) \ | ||
159 | static struct clk _name; \ | ||
160 | static struct clk_mux _name##_hw = { \ | ||
161 | .hw = { \ | ||
162 | .clk = &_name, \ | ||
163 | }, \ | ||
164 | .reg = _reg, \ | ||
165 | .shift = _shift, \ | ||
166 | .mask = BIT(_width) - 1, \ | ||
167 | .flags = _mux_flags, \ | ||
168 | .lock = _lock, \ | ||
169 | }; \ | ||
170 | DEFINE_CLK(_name, clk_mux_ops, _flags, _parent_names, \ | ||
171 | _parents); | ||
172 | |||
173 | #define DEFINE_CLK_FIXED_FACTOR(_name, _parent_name, \ | ||
174 | _parent_ptr, _flags, \ | ||
175 | _mult, _div) \ | ||
176 | static struct clk _name; \ | ||
177 | static const char *_name##_parent_names[] = { \ | ||
178 | _parent_name, \ | ||
179 | }; \ | ||
180 | static struct clk *_name##_parents[] = { \ | ||
181 | _parent_ptr, \ | ||
182 | }; \ | ||
183 | static struct clk_fixed_factor _name##_hw = { \ | ||
184 | .hw = { \ | ||
185 | .clk = &_name, \ | ||
186 | }, \ | ||
187 | .mult = _mult, \ | ||
188 | .div = _div, \ | ||
189 | }; \ | ||
190 | DEFINE_CLK(_name, clk_fixed_factor_ops, _flags, \ | ||
191 | _name##_parent_names, _name##_parents); | ||
192 | |||
193 | /** | ||
194 | * __clk_init - initialize the data structures in a struct clk | ||
195 | * @dev: device initializing this clk, placeholder for now | ||
196 | * @clk: clk being initialized | ||
197 | * | ||
198 | * Initializes the lists in struct clk, queries the hardware for the | ||
199 | * parent and rate and sets them both. | ||
200 | * | ||
201 | * Any struct clk passed into __clk_init must have the following members | ||
202 | * populated: | ||
203 | * .name | ||
204 | * .ops | ||
205 | * .hw | ||
206 | * .parent_names | ||
207 | * .num_parents | ||
208 | * .flags | ||
209 | * | ||
210 | * It is not necessary to call clk_register if __clk_init is used directly with | ||
211 | * statically initialized clock data. | ||
212 | * | ||
213 | * Returns 0 on success, otherwise an error code. | ||
214 | */ | ||
215 | int __clk_init(struct device *dev, struct clk *clk); | ||
216 | |||
217 | struct clk *__clk_register(struct device *dev, struct clk_hw *hw); | ||
218 | |||
219 | #endif /* CONFIG_COMMON_CLK */ | ||
220 | #endif /* CLK_PRIVATE_H */ | ||
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index d936409520f8..5591ea71a8d1 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h | |||
@@ -33,6 +33,7 @@ | |||
33 | #define CLK_GET_ACCURACY_NOCACHE BIT(8) /* do not use the cached clk accuracy */ | 33 | #define CLK_GET_ACCURACY_NOCACHE BIT(8) /* do not use the cached clk accuracy */ |
34 | 34 | ||
35 | struct clk_hw; | 35 | struct clk_hw; |
36 | struct clk_core; | ||
36 | struct dentry; | 37 | struct dentry; |
37 | 38 | ||
38 | /** | 39 | /** |
@@ -174,9 +175,12 @@ struct clk_ops { | |||
174 | unsigned long parent_rate); | 175 | unsigned long parent_rate); |
175 | long (*round_rate)(struct clk_hw *hw, unsigned long rate, | 176 | long (*round_rate)(struct clk_hw *hw, unsigned long rate, |
176 | unsigned long *parent_rate); | 177 | unsigned long *parent_rate); |
177 | long (*determine_rate)(struct clk_hw *hw, unsigned long rate, | 178 | long (*determine_rate)(struct clk_hw *hw, |
178 | unsigned long *best_parent_rate, | 179 | unsigned long rate, |
179 | struct clk_hw **best_parent_hw); | 180 | unsigned long min_rate, |
181 | unsigned long max_rate, | ||
182 | unsigned long *best_parent_rate, | ||
183 | struct clk_hw **best_parent_hw); | ||
180 | int (*set_parent)(struct clk_hw *hw, u8 index); | 184 | int (*set_parent)(struct clk_hw *hw, u8 index); |
181 | u8 (*get_parent)(struct clk_hw *hw); | 185 | u8 (*get_parent)(struct clk_hw *hw); |
182 | int (*set_rate)(struct clk_hw *hw, unsigned long rate, | 186 | int (*set_rate)(struct clk_hw *hw, unsigned long rate, |
@@ -216,13 +220,17 @@ struct clk_init_data { | |||
216 | * clk_foo and then referenced by the struct clk instance that uses struct | 220 | * clk_foo and then referenced by the struct clk instance that uses struct |
217 | * clk_foo's clk_ops | 221 | * clk_foo's clk_ops |
218 | * | 222 | * |
219 | * @clk: pointer to the struct clk instance that points back to this struct | 223 | * @core: pointer to the struct clk_core instance that points back to this |
220 | * clk_hw instance | 224 | * struct clk_hw instance |
225 | * | ||
226 | * @clk: pointer to the per-user struct clk instance that can be used to call | ||
227 | * into the clk API | ||
221 | * | 228 | * |
222 | * @init: pointer to struct clk_init_data that contains the init data shared | 229 | * @init: pointer to struct clk_init_data that contains the init data shared |
223 | * with the common clock framework. | 230 | * with the common clock framework. |
224 | */ | 231 | */ |
225 | struct clk_hw { | 232 | struct clk_hw { |
233 | struct clk_core *core; | ||
226 | struct clk *clk; | 234 | struct clk *clk; |
227 | const struct clk_init_data *init; | 235 | const struct clk_init_data *init; |
228 | }; | 236 | }; |
@@ -294,6 +302,7 @@ struct clk *clk_register_gate(struct device *dev, const char *name, | |||
294 | const char *parent_name, unsigned long flags, | 302 | const char *parent_name, unsigned long flags, |
295 | void __iomem *reg, u8 bit_idx, | 303 | void __iomem *reg, u8 bit_idx, |
296 | u8 clk_gate_flags, spinlock_t *lock); | 304 | u8 clk_gate_flags, spinlock_t *lock); |
305 | void clk_unregister_gate(struct clk *clk); | ||
297 | 306 | ||
298 | struct clk_div_table { | 307 | struct clk_div_table { |
299 | unsigned int val; | 308 | unsigned int val; |
@@ -352,6 +361,17 @@ struct clk_divider { | |||
352 | #define CLK_DIVIDER_READ_ONLY BIT(5) | 361 | #define CLK_DIVIDER_READ_ONLY BIT(5) |
353 | 362 | ||
354 | extern const struct clk_ops clk_divider_ops; | 363 | extern const struct clk_ops clk_divider_ops; |
364 | |||
365 | unsigned long divider_recalc_rate(struct clk_hw *hw, unsigned long parent_rate, | ||
366 | unsigned int val, const struct clk_div_table *table, | ||
367 | unsigned long flags); | ||
368 | long divider_round_rate(struct clk_hw *hw, unsigned long rate, | ||
369 | unsigned long *prate, const struct clk_div_table *table, | ||
370 | u8 width, unsigned long flags); | ||
371 | int divider_get_val(unsigned long rate, unsigned long parent_rate, | ||
372 | const struct clk_div_table *table, u8 width, | ||
373 | unsigned long flags); | ||
374 | |||
355 | struct clk *clk_register_divider(struct device *dev, const char *name, | 375 | struct clk *clk_register_divider(struct device *dev, const char *name, |
356 | const char *parent_name, unsigned long flags, | 376 | const char *parent_name, unsigned long flags, |
357 | void __iomem *reg, u8 shift, u8 width, | 377 | void __iomem *reg, u8 shift, u8 width, |
@@ -361,6 +381,7 @@ struct clk *clk_register_divider_table(struct device *dev, const char *name, | |||
361 | void __iomem *reg, u8 shift, u8 width, | 381 | void __iomem *reg, u8 shift, u8 width, |
362 | u8 clk_divider_flags, const struct clk_div_table *table, | 382 | u8 clk_divider_flags, const struct clk_div_table *table, |
363 | spinlock_t *lock); | 383 | spinlock_t *lock); |
384 | void clk_unregister_divider(struct clk *clk); | ||
364 | 385 | ||
365 | /** | 386 | /** |
366 | * struct clk_mux - multiplexer clock | 387 | * struct clk_mux - multiplexer clock |
@@ -382,6 +403,8 @@ struct clk *clk_register_divider_table(struct device *dev, const char *name, | |||
382 | * register, and mask of mux bits are in higher 16-bit of this register. | 403 | * register, and mask of mux bits are in higher 16-bit of this register. |
383 | * While setting the mux bits, higher 16-bit should also be updated to | 404 | * While setting the mux bits, higher 16-bit should also be updated to |
384 | * indicate changing mux bits. | 405 | * indicate changing mux bits. |
406 | * CLK_MUX_ROUND_CLOSEST - Use the parent rate that is closest to the desired | ||
407 | * frequency. | ||
385 | */ | 408 | */ |
386 | struct clk_mux { | 409 | struct clk_mux { |
387 | struct clk_hw hw; | 410 | struct clk_hw hw; |
@@ -396,7 +419,8 @@ struct clk_mux { | |||
396 | #define CLK_MUX_INDEX_ONE BIT(0) | 419 | #define CLK_MUX_INDEX_ONE BIT(0) |
397 | #define CLK_MUX_INDEX_BIT BIT(1) | 420 | #define CLK_MUX_INDEX_BIT BIT(1) |
398 | #define CLK_MUX_HIWORD_MASK BIT(2) | 421 | #define CLK_MUX_HIWORD_MASK BIT(2) |
399 | #define CLK_MUX_READ_ONLY BIT(3) /* mux setting cannot be changed */ | 422 | #define CLK_MUX_READ_ONLY BIT(3) /* mux can't be changed */ |
423 | #define CLK_MUX_ROUND_CLOSEST BIT(4) | ||
400 | 424 | ||
401 | extern const struct clk_ops clk_mux_ops; | 425 | extern const struct clk_ops clk_mux_ops; |
402 | extern const struct clk_ops clk_mux_ro_ops; | 426 | extern const struct clk_ops clk_mux_ro_ops; |
@@ -411,6 +435,8 @@ struct clk *clk_register_mux_table(struct device *dev, const char *name, | |||
411 | void __iomem *reg, u8 shift, u32 mask, | 435 | void __iomem *reg, u8 shift, u32 mask, |
412 | u8 clk_mux_flags, u32 *table, spinlock_t *lock); | 436 | u8 clk_mux_flags, u32 *table, spinlock_t *lock); |
413 | 437 | ||
438 | void clk_unregister_mux(struct clk *clk); | ||
439 | |||
414 | void of_fixed_factor_clk_setup(struct device_node *node); | 440 | void of_fixed_factor_clk_setup(struct device_node *node); |
415 | 441 | ||
416 | /** | 442 | /** |
@@ -550,15 +576,29 @@ bool __clk_is_prepared(struct clk *clk); | |||
550 | bool __clk_is_enabled(struct clk *clk); | 576 | bool __clk_is_enabled(struct clk *clk); |
551 | struct clk *__clk_lookup(const char *name); | 577 | struct clk *__clk_lookup(const char *name); |
552 | long __clk_mux_determine_rate(struct clk_hw *hw, unsigned long rate, | 578 | long __clk_mux_determine_rate(struct clk_hw *hw, unsigned long rate, |
579 | unsigned long min_rate, | ||
580 | unsigned long max_rate, | ||
553 | unsigned long *best_parent_rate, | 581 | unsigned long *best_parent_rate, |
554 | struct clk_hw **best_parent_p); | 582 | struct clk_hw **best_parent_p); |
583 | unsigned long __clk_determine_rate(struct clk_hw *core, | ||
584 | unsigned long rate, | ||
585 | unsigned long min_rate, | ||
586 | unsigned long max_rate); | ||
587 | long __clk_mux_determine_rate_closest(struct clk_hw *hw, unsigned long rate, | ||
588 | unsigned long min_rate, | ||
589 | unsigned long max_rate, | ||
590 | unsigned long *best_parent_rate, | ||
591 | struct clk_hw **best_parent_p); | ||
592 | |||
593 | static inline void __clk_hw_set_clk(struct clk_hw *dst, struct clk_hw *src) | ||
594 | { | ||
595 | dst->clk = src->clk; | ||
596 | dst->core = src->core; | ||
597 | } | ||
555 | 598 | ||
556 | /* | 599 | /* |
557 | * FIXME clock api without lock protection | 600 | * FIXME clock api without lock protection |
558 | */ | 601 | */ |
559 | int __clk_prepare(struct clk *clk); | ||
560 | void __clk_unprepare(struct clk *clk); | ||
561 | void __clk_reparent(struct clk *clk, struct clk *new_parent); | ||
562 | unsigned long __clk_round_rate(struct clk *clk, unsigned long rate); | 602 | unsigned long __clk_round_rate(struct clk *clk, unsigned long rate); |
563 | 603 | ||
564 | struct of_device_id; | 604 | struct of_device_id; |
diff --git a/include/linux/clk.h b/include/linux/clk.h index c7f258a81761..8381bbfbc308 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h | |||
@@ -302,6 +302,46 @@ long clk_round_rate(struct clk *clk, unsigned long rate); | |||
302 | int clk_set_rate(struct clk *clk, unsigned long rate); | 302 | int clk_set_rate(struct clk *clk, unsigned long rate); |
303 | 303 | ||
304 | /** | 304 | /** |
305 | * clk_has_parent - check if a clock is a possible parent for another | ||
306 | * @clk: clock source | ||
307 | * @parent: parent clock source | ||
308 | * | ||
309 | * This function can be used in drivers that need to check that a clock can be | ||
310 | * the parent of another without actually changing the parent. | ||
311 | * | ||
312 | * Returns true if @parent is a possible parent for @clk, false otherwise. | ||
313 | */ | ||
314 | bool clk_has_parent(struct clk *clk, struct clk *parent); | ||
315 | |||
316 | /** | ||
317 | * clk_set_rate_range - set a rate range for a clock source | ||
318 | * @clk: clock source | ||
319 | * @min: desired minimum clock rate in Hz, inclusive | ||
320 | * @max: desired maximum clock rate in Hz, inclusive | ||
321 | * | ||
322 | * Returns success (0) or negative errno. | ||
323 | */ | ||
324 | int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max); | ||
325 | |||
326 | /** | ||
327 | * clk_set_min_rate - set a minimum clock rate for a clock source | ||
328 | * @clk: clock source | ||
329 | * @rate: desired minimum clock rate in Hz, inclusive | ||
330 | * | ||
331 | * Returns success (0) or negative errno. | ||
332 | */ | ||
333 | int clk_set_min_rate(struct clk *clk, unsigned long rate); | ||
334 | |||
335 | /** | ||
336 | * clk_set_max_rate - set a maximum clock rate for a clock source | ||
337 | * @clk: clock source | ||
338 | * @rate: desired maximum clock rate in Hz, inclusive | ||
339 | * | ||
340 | * Returns success (0) or negative errno. | ||
341 | */ | ||
342 | int clk_set_max_rate(struct clk *clk, unsigned long rate); | ||
343 | |||
344 | /** | ||
305 | * clk_set_parent - set the parent clock source for this clock | 345 | * clk_set_parent - set the parent clock source for this clock |
306 | * @clk: clock source | 346 | * @clk: clock source |
307 | * @parent: parent clock source | 347 | * @parent: parent clock source |
@@ -374,6 +414,11 @@ static inline long clk_round_rate(struct clk *clk, unsigned long rate) | |||
374 | return 0; | 414 | return 0; |
375 | } | 415 | } |
376 | 416 | ||
417 | static inline bool clk_has_parent(struct clk *clk, struct clk *parent) | ||
418 | { | ||
419 | return true; | ||
420 | } | ||
421 | |||
377 | static inline int clk_set_parent(struct clk *clk, struct clk *parent) | 422 | static inline int clk_set_parent(struct clk *clk, struct clk *parent) |
378 | { | 423 | { |
379 | return 0; | 424 | return 0; |
diff --git a/include/linux/clk/sunxi.h b/include/linux/clk/sunxi.h deleted file mode 100644 index aed28c4451d9..000000000000 --- a/include/linux/clk/sunxi.h +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2013 - Hans de Goede <hdegoede@redhat.com> | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | */ | ||
14 | |||
15 | #ifndef __LINUX_CLK_SUNXI_H_ | ||
16 | #define __LINUX_CLK_SUNXI_H_ | ||
17 | |||
18 | #include <linux/clk.h> | ||
19 | |||
20 | void clk_sunxi_mmc_phase_control(struct clk *clk, u8 sample, u8 output); | ||
21 | |||
22 | #endif | ||
diff --git a/include/linux/clk/tegra.h b/include/linux/clk/tegra.h index 3ca9fca827a2..19c4208f4752 100644 --- a/include/linux/clk/tegra.h +++ b/include/linux/clk/tegra.h | |||
@@ -120,6 +120,4 @@ static inline void tegra_cpu_clock_resume(void) | |||
120 | } | 120 | } |
121 | #endif | 121 | #endif |
122 | 122 | ||
123 | void tegra_clocks_apply_init_table(void); | ||
124 | |||
125 | #endif /* __LINUX_CLK_TEGRA_H_ */ | 123 | #endif /* __LINUX_CLK_TEGRA_H_ */ |
diff --git a/include/linux/clk/ti.h b/include/linux/clk/ti.h index 55ef529a0dbf..67844003493d 100644 --- a/include/linux/clk/ti.h +++ b/include/linux/clk/ti.h | |||
@@ -15,6 +15,7 @@ | |||
15 | #ifndef __LINUX_CLK_TI_H__ | 15 | #ifndef __LINUX_CLK_TI_H__ |
16 | #define __LINUX_CLK_TI_H__ | 16 | #define __LINUX_CLK_TI_H__ |
17 | 17 | ||
18 | #include <linux/clk-provider.h> | ||
18 | #include <linux/clkdev.h> | 19 | #include <linux/clkdev.h> |
19 | 20 | ||
20 | /** | 21 | /** |
@@ -217,6 +218,13 @@ struct ti_dt_clk { | |||
217 | /* Maximum number of clock memmaps */ | 218 | /* Maximum number of clock memmaps */ |
218 | #define CLK_MAX_MEMMAPS 4 | 219 | #define CLK_MAX_MEMMAPS 4 |
219 | 220 | ||
221 | /* Static memmap indices */ | ||
222 | enum { | ||
223 | TI_CLKM_CM = 0, | ||
224 | TI_CLKM_PRM, | ||
225 | TI_CLKM_SCRM, | ||
226 | }; | ||
227 | |||
220 | typedef void (*ti_of_clk_init_cb_t)(struct clk_hw *, struct device_node *); | 228 | typedef void (*ti_of_clk_init_cb_t)(struct clk_hw *, struct device_node *); |
221 | 229 | ||
222 | /** | 230 | /** |
@@ -263,6 +271,8 @@ int omap3_noncore_dpll_set_rate_and_parent(struct clk_hw *hw, | |||
263 | u8 index); | 271 | u8 index); |
264 | long omap3_noncore_dpll_determine_rate(struct clk_hw *hw, | 272 | long omap3_noncore_dpll_determine_rate(struct clk_hw *hw, |
265 | unsigned long rate, | 273 | unsigned long rate, |
274 | unsigned long min_rate, | ||
275 | unsigned long max_rate, | ||
266 | unsigned long *best_parent_rate, | 276 | unsigned long *best_parent_rate, |
267 | struct clk_hw **best_parent_clk); | 277 | struct clk_hw **best_parent_clk); |
268 | unsigned long omap4_dpll_regm4xen_recalc(struct clk_hw *hw, | 278 | unsigned long omap4_dpll_regm4xen_recalc(struct clk_hw *hw, |
@@ -272,6 +282,8 @@ long omap4_dpll_regm4xen_round_rate(struct clk_hw *hw, | |||
272 | unsigned long *parent_rate); | 282 | unsigned long *parent_rate); |
273 | long omap4_dpll_regm4xen_determine_rate(struct clk_hw *hw, | 283 | long omap4_dpll_regm4xen_determine_rate(struct clk_hw *hw, |
274 | unsigned long rate, | 284 | unsigned long rate, |
285 | unsigned long min_rate, | ||
286 | unsigned long max_rate, | ||
275 | unsigned long *best_parent_rate, | 287 | unsigned long *best_parent_rate, |
276 | struct clk_hw **best_parent_clk); | 288 | struct clk_hw **best_parent_clk); |
277 | u8 omap2_init_dpll_parent(struct clk_hw *hw); | 289 | u8 omap2_init_dpll_parent(struct clk_hw *hw); |
@@ -348,4 +360,17 @@ extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_ssi_wait; | |||
348 | extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_dss_usbhost_wait; | 360 | extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_dss_usbhost_wait; |
349 | extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_hsotgusb_wait; | 361 | extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_hsotgusb_wait; |
350 | 362 | ||
363 | #ifdef CONFIG_ATAGS | ||
364 | int omap3430_clk_legacy_init(void); | ||
365 | int omap3430es1_clk_legacy_init(void); | ||
366 | int omap36xx_clk_legacy_init(void); | ||
367 | int am35xx_clk_legacy_init(void); | ||
368 | #else | ||
369 | static inline int omap3430_clk_legacy_init(void) { return -ENXIO; } | ||
370 | static inline int omap3430es1_clk_legacy_init(void) { return -ENXIO; } | ||
371 | static inline int omap36xx_clk_legacy_init(void) { return -ENXIO; } | ||
372 | static inline int am35xx_clk_legacy_init(void) { return -ENXIO; } | ||
373 | #endif | ||
374 | |||
375 | |||
351 | #endif | 376 | #endif |
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h index abcafaa20b86..9c78d15d33e4 100644 --- a/include/linux/clocksource.h +++ b/include/linux/clocksource.h | |||
@@ -18,8 +18,6 @@ | |||
18 | #include <asm/div64.h> | 18 | #include <asm/div64.h> |
19 | #include <asm/io.h> | 19 | #include <asm/io.h> |
20 | 20 | ||
21 | /* clocksource cycle base type */ | ||
22 | typedef u64 cycle_t; | ||
23 | struct clocksource; | 21 | struct clocksource; |
24 | struct module; | 22 | struct module; |
25 | 23 | ||
@@ -28,106 +26,6 @@ struct module; | |||
28 | #endif | 26 | #endif |
29 | 27 | ||
30 | /** | 28 | /** |
31 | * struct cyclecounter - hardware abstraction for a free running counter | ||
32 | * Provides completely state-free accessors to the underlying hardware. | ||
33 | * Depending on which hardware it reads, the cycle counter may wrap | ||
34 | * around quickly. Locking rules (if necessary) have to be defined | ||
35 | * by the implementor and user of specific instances of this API. | ||
36 | * | ||
37 | * @read: returns the current cycle value | ||
38 | * @mask: bitmask for two's complement | ||
39 | * subtraction of non 64 bit counters, | ||
40 | * see CLOCKSOURCE_MASK() helper macro | ||
41 | * @mult: cycle to nanosecond multiplier | ||
42 | * @shift: cycle to nanosecond divisor (power of two) | ||
43 | */ | ||
44 | struct cyclecounter { | ||
45 | cycle_t (*read)(const struct cyclecounter *cc); | ||
46 | cycle_t mask; | ||
47 | u32 mult; | ||
48 | u32 shift; | ||
49 | }; | ||
50 | |||
51 | /** | ||
52 | * struct timecounter - layer above a %struct cyclecounter which counts nanoseconds | ||
53 | * Contains the state needed by timecounter_read() to detect | ||
54 | * cycle counter wrap around. Initialize with | ||
55 | * timecounter_init(). Also used to convert cycle counts into the | ||
56 | * corresponding nanosecond counts with timecounter_cyc2time(). Users | ||
57 | * of this code are responsible for initializing the underlying | ||
58 | * cycle counter hardware, locking issues and reading the time | ||
59 | * more often than the cycle counter wraps around. The nanosecond | ||
60 | * counter will only wrap around after ~585 years. | ||
61 | * | ||
62 | * @cc: the cycle counter used by this instance | ||
63 | * @cycle_last: most recent cycle counter value seen by | ||
64 | * timecounter_read() | ||
65 | * @nsec: continuously increasing count | ||
66 | */ | ||
67 | struct timecounter { | ||
68 | const struct cyclecounter *cc; | ||
69 | cycle_t cycle_last; | ||
70 | u64 nsec; | ||
71 | }; | ||
72 | |||
73 | /** | ||
74 | * cyclecounter_cyc2ns - converts cycle counter cycles to nanoseconds | ||
75 | * @cc: Pointer to cycle counter. | ||
76 | * @cycles: Cycles | ||
77 | * | ||
78 | * XXX - This could use some mult_lxl_ll() asm optimization. Same code | ||
79 | * as in cyc2ns, but with unsigned result. | ||
80 | */ | ||
81 | static inline u64 cyclecounter_cyc2ns(const struct cyclecounter *cc, | ||
82 | cycle_t cycles) | ||
83 | { | ||
84 | u64 ret = (u64)cycles; | ||
85 | ret = (ret * cc->mult) >> cc->shift; | ||
86 | return ret; | ||
87 | } | ||
88 | |||
89 | /** | ||
90 | * timecounter_init - initialize a time counter | ||
91 | * @tc: Pointer to time counter which is to be initialized/reset | ||
92 | * @cc: A cycle counter, ready to be used. | ||
93 | * @start_tstamp: Arbitrary initial time stamp. | ||
94 | * | ||
95 | * After this call the current cycle register (roughly) corresponds to | ||
96 | * the initial time stamp. Every call to timecounter_read() increments | ||
97 | * the time stamp counter by the number of elapsed nanoseconds. | ||
98 | */ | ||
99 | extern void timecounter_init(struct timecounter *tc, | ||
100 | const struct cyclecounter *cc, | ||
101 | u64 start_tstamp); | ||
102 | |||
103 | /** | ||
104 | * timecounter_read - return nanoseconds elapsed since timecounter_init() | ||
105 | * plus the initial time stamp | ||
106 | * @tc: Pointer to time counter. | ||
107 | * | ||
108 | * In other words, keeps track of time since the same epoch as | ||
109 | * the function which generated the initial time stamp. | ||
110 | */ | ||
111 | extern u64 timecounter_read(struct timecounter *tc); | ||
112 | |||
113 | /** | ||
114 | * timecounter_cyc2time - convert a cycle counter to same | ||
115 | * time base as values returned by | ||
116 | * timecounter_read() | ||
117 | * @tc: Pointer to time counter. | ||
118 | * @cycle_tstamp: a value returned by tc->cc->read() | ||
119 | * | ||
120 | * Cycle counts that are converted correctly as long as they | ||
121 | * fall into the interval [-1/2 max cycle count, +1/2 max cycle count], | ||
122 | * with "max cycle count" == cs->mask+1. | ||
123 | * | ||
124 | * This allows conversion of cycle counter values which were generated | ||
125 | * in the past. | ||
126 | */ | ||
127 | extern u64 timecounter_cyc2time(struct timecounter *tc, | ||
128 | cycle_t cycle_tstamp); | ||
129 | |||
130 | /** | ||
131 | * struct clocksource - hardware abstraction for a free running counter | 29 | * struct clocksource - hardware abstraction for a free running counter |
132 | * Provides mostly state-free accessors to the underlying hardware. | 30 | * Provides mostly state-free accessors to the underlying hardware. |
133 | * This is the structure used for system time. | 31 | * This is the structure used for system time. |
diff --git a/include/linux/compaction.h b/include/linux/compaction.h index 3238ffa33f68..a014559e4a49 100644 --- a/include/linux/compaction.h +++ b/include/linux/compaction.h | |||
@@ -12,6 +12,10 @@ | |||
12 | #define COMPACT_PARTIAL 3 | 12 | #define COMPACT_PARTIAL 3 |
13 | /* The full zone was compacted */ | 13 | /* The full zone was compacted */ |
14 | #define COMPACT_COMPLETE 4 | 14 | #define COMPACT_COMPLETE 4 |
15 | /* For more detailed tracepoint output */ | ||
16 | #define COMPACT_NO_SUITABLE_PAGE 5 | ||
17 | #define COMPACT_NOT_SUITABLE_ZONE 6 | ||
18 | /* When adding new state, please change compaction_status_string, too */ | ||
15 | 19 | ||
16 | /* Used to signal whether compaction detected need_sched() or lock contention */ | 20 | /* Used to signal whether compaction detected need_sched() or lock contention */ |
17 | /* No contention detected */ | 21 | /* No contention detected */ |
@@ -21,6 +25,8 @@ | |||
21 | /* Zone lock or lru_lock was contended in async compaction */ | 25 | /* Zone lock or lru_lock was contended in async compaction */ |
22 | #define COMPACT_CONTENDED_LOCK 2 | 26 | #define COMPACT_CONTENDED_LOCK 2 |
23 | 27 | ||
28 | struct alloc_context; /* in mm/internal.h */ | ||
29 | |||
24 | #ifdef CONFIG_COMPACTION | 30 | #ifdef CONFIG_COMPACTION |
25 | extern int sysctl_compact_memory; | 31 | extern int sysctl_compact_memory; |
26 | extern int sysctl_compaction_handler(struct ctl_table *table, int write, | 32 | extern int sysctl_compaction_handler(struct ctl_table *table, int write, |
@@ -30,81 +36,25 @@ extern int sysctl_extfrag_handler(struct ctl_table *table, int write, | |||
30 | void __user *buffer, size_t *length, loff_t *ppos); | 36 | void __user *buffer, size_t *length, loff_t *ppos); |
31 | 37 | ||
32 | extern int fragmentation_index(struct zone *zone, unsigned int order); | 38 | extern int fragmentation_index(struct zone *zone, unsigned int order); |
33 | extern unsigned long try_to_compact_pages(struct zonelist *zonelist, | 39 | extern unsigned long try_to_compact_pages(gfp_t gfp_mask, unsigned int order, |
34 | int order, gfp_t gfp_mask, nodemask_t *mask, | 40 | int alloc_flags, const struct alloc_context *ac, |
35 | enum migrate_mode mode, int *contended, | 41 | enum migrate_mode mode, int *contended); |
36 | int alloc_flags, int classzone_idx); | ||
37 | extern void compact_pgdat(pg_data_t *pgdat, int order); | 42 | extern void compact_pgdat(pg_data_t *pgdat, int order); |
38 | extern void reset_isolation_suitable(pg_data_t *pgdat); | 43 | extern void reset_isolation_suitable(pg_data_t *pgdat); |
39 | extern unsigned long compaction_suitable(struct zone *zone, int order, | 44 | extern unsigned long compaction_suitable(struct zone *zone, int order, |
40 | int alloc_flags, int classzone_idx); | 45 | int alloc_flags, int classzone_idx); |
41 | 46 | ||
42 | /* Do not skip compaction more than 64 times */ | 47 | extern void defer_compaction(struct zone *zone, int order); |
43 | #define COMPACT_MAX_DEFER_SHIFT 6 | 48 | extern bool compaction_deferred(struct zone *zone, int order); |
44 | 49 | extern void compaction_defer_reset(struct zone *zone, int order, | |
45 | /* | 50 | bool alloc_success); |
46 | * Compaction is deferred when compaction fails to result in a page | 51 | extern bool compaction_restarting(struct zone *zone, int order); |
47 | * allocation success. 1 << compact_defer_limit compactions are skipped up | ||
48 | * to a limit of 1 << COMPACT_MAX_DEFER_SHIFT | ||
49 | */ | ||
50 | static inline void defer_compaction(struct zone *zone, int order) | ||
51 | { | ||
52 | zone->compact_considered = 0; | ||
53 | zone->compact_defer_shift++; | ||
54 | |||
55 | if (order < zone->compact_order_failed) | ||
56 | zone->compact_order_failed = order; | ||
57 | |||
58 | if (zone->compact_defer_shift > COMPACT_MAX_DEFER_SHIFT) | ||
59 | zone->compact_defer_shift = COMPACT_MAX_DEFER_SHIFT; | ||
60 | } | ||
61 | |||
62 | /* Returns true if compaction should be skipped this time */ | ||
63 | static inline bool compaction_deferred(struct zone *zone, int order) | ||
64 | { | ||
65 | unsigned long defer_limit = 1UL << zone->compact_defer_shift; | ||
66 | |||
67 | if (order < zone->compact_order_failed) | ||
68 | return false; | ||
69 | |||
70 | /* Avoid possible overflow */ | ||
71 | if (++zone->compact_considered > defer_limit) | ||
72 | zone->compact_considered = defer_limit; | ||
73 | |||
74 | return zone->compact_considered < defer_limit; | ||
75 | } | ||
76 | |||
77 | /* | ||
78 | * Update defer tracking counters after successful compaction of given order, | ||
79 | * which means an allocation either succeeded (alloc_success == true) or is | ||
80 | * expected to succeed. | ||
81 | */ | ||
82 | static inline void compaction_defer_reset(struct zone *zone, int order, | ||
83 | bool alloc_success) | ||
84 | { | ||
85 | if (alloc_success) { | ||
86 | zone->compact_considered = 0; | ||
87 | zone->compact_defer_shift = 0; | ||
88 | } | ||
89 | if (order >= zone->compact_order_failed) | ||
90 | zone->compact_order_failed = order + 1; | ||
91 | } | ||
92 | |||
93 | /* Returns true if restarting compaction after many failures */ | ||
94 | static inline bool compaction_restarting(struct zone *zone, int order) | ||
95 | { | ||
96 | if (order < zone->compact_order_failed) | ||
97 | return false; | ||
98 | |||
99 | return zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT && | ||
100 | zone->compact_considered >= 1UL << zone->compact_defer_shift; | ||
101 | } | ||
102 | 52 | ||
103 | #else | 53 | #else |
104 | static inline unsigned long try_to_compact_pages(struct zonelist *zonelist, | 54 | static inline unsigned long try_to_compact_pages(gfp_t gfp_mask, |
105 | int order, gfp_t gfp_mask, nodemask_t *nodemask, | 55 | unsigned int order, int alloc_flags, |
106 | enum migrate_mode mode, int *contended, | 56 | const struct alloc_context *ac, |
107 | int alloc_flags, int classzone_idx) | 57 | enum migrate_mode mode, int *contended) |
108 | { | 58 | { |
109 | return COMPACT_CONTINUE; | 59 | return COMPACT_CONTINUE; |
110 | } | 60 | } |
diff --git a/include/linux/compat.h b/include/linux/compat.h index 7450ca2ac1fc..ab25814690bc 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h | |||
@@ -689,6 +689,15 @@ asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd, | |||
689 | asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr, | 689 | asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr, |
690 | compat_stack_t __user *uoss_ptr); | 690 | compat_stack_t __user *uoss_ptr); |
691 | 691 | ||
692 | #ifdef __ARCH_WANT_SYS_SIGPENDING | ||
693 | asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set); | ||
694 | #endif | ||
695 | |||
696 | #ifdef __ARCH_WANT_SYS_SIGPROCMASK | ||
697 | asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *nset, | ||
698 | compat_old_sigset_t __user *oset); | ||
699 | #endif | ||
700 | |||
692 | int compat_restore_altstack(const compat_stack_t __user *uss); | 701 | int compat_restore_altstack(const compat_stack_t __user *uss); |
693 | int __compat_save_altstack(compat_stack_t __user *, unsigned long); | 702 | int __compat_save_altstack(compat_stack_t __user *, unsigned long); |
694 | #define compat_save_altstack_ex(uss, sp) do { \ | 703 | #define compat_save_altstack_ex(uss, sp) do { \ |
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h index 02ae99e8e6d3..cdf13ca7cac3 100644 --- a/include/linux/compiler-gcc.h +++ b/include/linux/compiler-gcc.h | |||
@@ -66,6 +66,7 @@ | |||
66 | #define __deprecated __attribute__((deprecated)) | 66 | #define __deprecated __attribute__((deprecated)) |
67 | #define __packed __attribute__((packed)) | 67 | #define __packed __attribute__((packed)) |
68 | #define __weak __attribute__((weak)) | 68 | #define __weak __attribute__((weak)) |
69 | #define __alias(symbol) __attribute__((alias(#symbol))) | ||
69 | 70 | ||
70 | /* | 71 | /* |
71 | * it doesn't make sense on ARM (currently the only user of __naked) to trace | 72 | * it doesn't make sense on ARM (currently the only user of __naked) to trace |
diff --git a/include/linux/compiler-gcc4.h b/include/linux/compiler-gcc4.h index d1a558239b1a..769e19864632 100644 --- a/include/linux/compiler-gcc4.h +++ b/include/linux/compiler-gcc4.h | |||
@@ -85,3 +85,7 @@ | |||
85 | #define __HAVE_BUILTIN_BSWAP16__ | 85 | #define __HAVE_BUILTIN_BSWAP16__ |
86 | #endif | 86 | #endif |
87 | #endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */ | 87 | #endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */ |
88 | |||
89 | #if GCC_VERSION >= 40902 | ||
90 | #define KASAN_ABI_VERSION 3 | ||
91 | #endif | ||
diff --git a/include/linux/compiler-gcc5.h b/include/linux/compiler-gcc5.h index c8c565952548..efee493714eb 100644 --- a/include/linux/compiler-gcc5.h +++ b/include/linux/compiler-gcc5.h | |||
@@ -63,3 +63,5 @@ | |||
63 | #define __HAVE_BUILTIN_BSWAP64__ | 63 | #define __HAVE_BUILTIN_BSWAP64__ |
64 | #define __HAVE_BUILTIN_BSWAP16__ | 64 | #define __HAVE_BUILTIN_BSWAP16__ |
65 | #endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */ | 65 | #endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */ |
66 | |||
67 | #define KASAN_ABI_VERSION 4 | ||
diff --git a/include/linux/compiler.h b/include/linux/compiler.h index 33063f872ee3..1b45e4a0519b 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h | |||
@@ -54,7 +54,11 @@ extern void __chk_io_ptr(const volatile void __iomem *); | |||
54 | #include <linux/compiler-gcc.h> | 54 | #include <linux/compiler-gcc.h> |
55 | #endif | 55 | #endif |
56 | 56 | ||
57 | #ifdef CC_USING_HOTPATCH | ||
58 | #define notrace __attribute__((hotpatch(0,0))) | ||
59 | #else | ||
57 | #define notrace __attribute__((no_instrument_function)) | 60 | #define notrace __attribute__((no_instrument_function)) |
61 | #endif | ||
58 | 62 | ||
59 | /* Intel compiler defines __GNUC__. So we will overwrite implementations | 63 | /* Intel compiler defines __GNUC__. So we will overwrite implementations |
60 | * coming from above header files here | 64 | * coming from above header files here |
@@ -198,7 +202,7 @@ static __always_inline void data_access_exceeds_word_size(void) | |||
198 | { | 202 | { |
199 | } | 203 | } |
200 | 204 | ||
201 | static __always_inline void __read_once_size(volatile void *p, void *res, int size) | 205 | static __always_inline void __read_once_size(const volatile void *p, void *res, int size) |
202 | { | 206 | { |
203 | switch (size) { | 207 | switch (size) { |
204 | case 1: *(__u8 *)res = *(volatile __u8 *)p; break; | 208 | case 1: *(__u8 *)res = *(volatile __u8 *)p; break; |
@@ -255,10 +259,10 @@ static __always_inline void __write_once_size(volatile void *p, void *res, int s | |||
255 | */ | 259 | */ |
256 | 260 | ||
257 | #define READ_ONCE(x) \ | 261 | #define READ_ONCE(x) \ |
258 | ({ typeof(x) __val; __read_once_size(&x, &__val, sizeof(__val)); __val; }) | 262 | ({ union { typeof(x) __val; char __c[1]; } __u; __read_once_size(&(x), __u.__c, sizeof(x)); __u.__val; }) |
259 | 263 | ||
260 | #define WRITE_ONCE(x, val) \ | 264 | #define WRITE_ONCE(x, val) \ |
261 | ({ typeof(x) __val; __val = val; __write_once_size(&x, &__val, sizeof(__val)); __val; }) | 265 | ({ typeof(x) __val = (val); __write_once_size(&(x), &__val, sizeof(__val)); __val; }) |
262 | 266 | ||
263 | #endif /* __KERNEL__ */ | 267 | #endif /* __KERNEL__ */ |
264 | 268 | ||
@@ -385,7 +389,7 @@ static __always_inline void __write_once_size(volatile void *p, void *res, int s | |||
385 | 389 | ||
386 | /* Is this type a native word size -- useful for atomic operations */ | 390 | /* Is this type a native word size -- useful for atomic operations */ |
387 | #ifndef __native_word | 391 | #ifndef __native_word |
388 | # define __native_word(t) (sizeof(t) == sizeof(int) || sizeof(t) == sizeof(long)) | 392 | # define __native_word(t) (sizeof(t) == sizeof(char) || sizeof(t) == sizeof(short) || sizeof(t) == sizeof(int) || sizeof(t) == sizeof(long)) |
389 | #endif | 393 | #endif |
390 | 394 | ||
391 | /* Compile time object size, -1 for unknown */ | 395 | /* Compile time object size, -1 for unknown */ |
@@ -447,12 +451,23 @@ static __always_inline void __write_once_size(volatile void *p, void *res, int s | |||
447 | * to make the compiler aware of ordering is to put the two invocations of | 451 | * to make the compiler aware of ordering is to put the two invocations of |
448 | * ACCESS_ONCE() in different C statements. | 452 | * ACCESS_ONCE() in different C statements. |
449 | * | 453 | * |
450 | * This macro does absolutely -nothing- to prevent the CPU from reordering, | 454 | * ACCESS_ONCE will only work on scalar types. For union types, ACCESS_ONCE |
451 | * merging, or refetching absolutely anything at any time. Its main intended | 455 | * on a union member will work as long as the size of the member matches the |
452 | * use is to mediate communication between process-level code and irq/NMI | 456 | * size of the union and the size is smaller than word size. |
453 | * handlers, all running on the same CPU. | 457 | * |
458 | * The major use cases of ACCESS_ONCE used to be (1) Mediating communication | ||
459 | * between process-level code and irq/NMI handlers, all running on the same CPU, | ||
460 | * and (2) Ensuring that the compiler does not fold, spindle, or otherwise | ||
461 | * mutilate accesses that either do not require ordering or that interact | ||
462 | * with an explicit memory barrier or atomic instruction that provides the | ||
463 | * required ordering. | ||
464 | * | ||
465 | * If possible use READ_ONCE/ASSIGN_ONCE instead. | ||
454 | */ | 466 | */ |
455 | #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x)) | 467 | #define __ACCESS_ONCE(x) ({ \ |
468 | __maybe_unused typeof(x) __var = (__force typeof(x)) 0; \ | ||
469 | (volatile typeof(x) *)&(x); }) | ||
470 | #define ACCESS_ONCE(x) (*__ACCESS_ONCE(x)) | ||
456 | 471 | ||
457 | /* Ignore/forbid kprobes attach on very low level functions marked by this attribute: */ | 472 | /* Ignore/forbid kprobes attach on very low level functions marked by this attribute: */ |
458 | #ifdef CONFIG_KPROBES | 473 | #ifdef CONFIG_KPROBES |
diff --git a/include/linux/coresight.h b/include/linux/coresight.h index 5d3c54311f7a..3486b9082adb 100644 --- a/include/linux/coresight.h +++ b/include/linux/coresight.h | |||
@@ -179,15 +179,6 @@ struct coresight_device { | |||
179 | #define sink_ops(csdev) csdev->ops->sink_ops | 179 | #define sink_ops(csdev) csdev->ops->sink_ops |
180 | #define link_ops(csdev) csdev->ops->link_ops | 180 | #define link_ops(csdev) csdev->ops->link_ops |
181 | 181 | ||
182 | #define CORESIGHT_DEBUGFS_ENTRY(__name, __entry_name, \ | ||
183 | __mode, __get, __set, __fmt) \ | ||
184 | DEFINE_SIMPLE_ATTRIBUTE(__name ## _ops, __get, __set, __fmt); \ | ||
185 | static const struct coresight_ops_entry __name ## _entry = { \ | ||
186 | .name = __entry_name, \ | ||
187 | .mode = __mode, \ | ||
188 | .ops = &__name ## _ops \ | ||
189 | } | ||
190 | |||
191 | /** | 182 | /** |
192 | * struct coresight_ops_sink - basic operations for a sink | 183 | * struct coresight_ops_sink - basic operations for a sink |
193 | * Operations available for sinks | 184 | * Operations available for sinks |
@@ -236,13 +227,8 @@ coresight_register(struct coresight_desc *desc); | |||
236 | extern void coresight_unregister(struct coresight_device *csdev); | 227 | extern void coresight_unregister(struct coresight_device *csdev); |
237 | extern int coresight_enable(struct coresight_device *csdev); | 228 | extern int coresight_enable(struct coresight_device *csdev); |
238 | extern void coresight_disable(struct coresight_device *csdev); | 229 | extern void coresight_disable(struct coresight_device *csdev); |
239 | extern int coresight_is_bit_set(u32 val, int position, int value); | ||
240 | extern int coresight_timeout(void __iomem *addr, u32 offset, | 230 | extern int coresight_timeout(void __iomem *addr, u32 offset, |
241 | int position, int value); | 231 | int position, int value); |
242 | #ifdef CONFIG_OF | ||
243 | extern struct coresight_platform_data *of_get_coresight_platform_data( | ||
244 | struct device *dev, struct device_node *node); | ||
245 | #endif | ||
246 | #else | 232 | #else |
247 | static inline struct coresight_device * | 233 | static inline struct coresight_device * |
248 | coresight_register(struct coresight_desc *desc) { return NULL; } | 234 | coresight_register(struct coresight_desc *desc) { return NULL; } |
@@ -250,14 +236,16 @@ static inline void coresight_unregister(struct coresight_device *csdev) {} | |||
250 | static inline int | 236 | static inline int |
251 | coresight_enable(struct coresight_device *csdev) { return -ENOSYS; } | 237 | coresight_enable(struct coresight_device *csdev) { return -ENOSYS; } |
252 | static inline void coresight_disable(struct coresight_device *csdev) {} | 238 | static inline void coresight_disable(struct coresight_device *csdev) {} |
253 | static inline int coresight_is_bit_set(u32 val, int position, int value) | ||
254 | { return 0; } | ||
255 | static inline int coresight_timeout(void __iomem *addr, u32 offset, | 239 | static inline int coresight_timeout(void __iomem *addr, u32 offset, |
256 | int position, int value) { return 1; } | 240 | int position, int value) { return 1; } |
241 | #endif | ||
242 | |||
257 | #ifdef CONFIG_OF | 243 | #ifdef CONFIG_OF |
244 | extern struct coresight_platform_data *of_get_coresight_platform_data( | ||
245 | struct device *dev, struct device_node *node); | ||
246 | #else | ||
258 | static inline struct coresight_platform_data *of_get_coresight_platform_data( | 247 | static inline struct coresight_platform_data *of_get_coresight_platform_data( |
259 | struct device *dev, struct device_node *node) { return NULL; } | 248 | struct device *dev, struct device_node *node) { return NULL; } |
260 | #endif | 249 | #endif |
261 | #endif | ||
262 | 250 | ||
263 | #endif | 251 | #endif |
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index 4d078cebafd2..2ee4888c1f47 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h | |||
@@ -66,8 +66,6 @@ struct cpufreq_policy { | |||
66 | unsigned int shared_type; /* ACPI: ANY or ALL affected CPUs | 66 | unsigned int shared_type; /* ACPI: ANY or ALL affected CPUs |
67 | should set cpufreq */ | 67 | should set cpufreq */ |
68 | unsigned int cpu; /* cpu nr of CPU managing this policy */ | 68 | unsigned int cpu; /* cpu nr of CPU managing this policy */ |
69 | unsigned int last_cpu; /* cpu nr of previous CPU that managed | ||
70 | * this policy */ | ||
71 | struct clk *clk; | 69 | struct clk *clk; |
72 | struct cpufreq_cpuinfo cpuinfo;/* see above */ | 70 | struct cpufreq_cpuinfo cpuinfo;/* see above */ |
73 | 71 | ||
@@ -113,6 +111,9 @@ struct cpufreq_policy { | |||
113 | wait_queue_head_t transition_wait; | 111 | wait_queue_head_t transition_wait; |
114 | struct task_struct *transition_task; /* Task which is doing the transition */ | 112 | struct task_struct *transition_task; /* Task which is doing the transition */ |
115 | 113 | ||
114 | /* cpufreq-stats */ | ||
115 | struct cpufreq_stats *stats; | ||
116 | |||
116 | /* For cpufreq driver's internal use */ | 117 | /* For cpufreq driver's internal use */ |
117 | void *driver_data; | 118 | void *driver_data; |
118 | }; | 119 | }; |
@@ -367,9 +368,8 @@ static inline void cpufreq_resume(void) {} | |||
367 | #define CPUFREQ_INCOMPATIBLE (1) | 368 | #define CPUFREQ_INCOMPATIBLE (1) |
368 | #define CPUFREQ_NOTIFY (2) | 369 | #define CPUFREQ_NOTIFY (2) |
369 | #define CPUFREQ_START (3) | 370 | #define CPUFREQ_START (3) |
370 | #define CPUFREQ_UPDATE_POLICY_CPU (4) | 371 | #define CPUFREQ_CREATE_POLICY (4) |
371 | #define CPUFREQ_CREATE_POLICY (5) | 372 | #define CPUFREQ_REMOVE_POLICY (5) |
372 | #define CPUFREQ_REMOVE_POLICY (6) | ||
373 | 373 | ||
374 | #ifdef CONFIG_CPU_FREQ | 374 | #ifdef CONFIG_CPU_FREQ |
375 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list); | 375 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list); |
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index ab70f3bc44ad..f551a9299ac9 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
@@ -50,6 +50,15 @@ struct cpuidle_state { | |||
50 | int index); | 50 | int index); |
51 | 51 | ||
52 | int (*enter_dead) (struct cpuidle_device *dev, int index); | 52 | int (*enter_dead) (struct cpuidle_device *dev, int index); |
53 | |||
54 | /* | ||
55 | * CPUs execute ->enter_freeze with the local tick or entire timekeeping | ||
56 | * suspended, so it must not re-enable interrupts at any point (even | ||
57 | * temporarily) or attempt to change states of clock event devices. | ||
58 | */ | ||
59 | void (*enter_freeze) (struct cpuidle_device *dev, | ||
60 | struct cpuidle_driver *drv, | ||
61 | int index); | ||
53 | }; | 62 | }; |
54 | 63 | ||
55 | /* Idle State Flags */ | 64 | /* Idle State Flags */ |
@@ -141,7 +150,7 @@ extern void cpuidle_resume(void); | |||
141 | extern int cpuidle_enable_device(struct cpuidle_device *dev); | 150 | extern int cpuidle_enable_device(struct cpuidle_device *dev); |
142 | extern void cpuidle_disable_device(struct cpuidle_device *dev); | 151 | extern void cpuidle_disable_device(struct cpuidle_device *dev); |
143 | extern int cpuidle_play_dead(void); | 152 | extern int cpuidle_play_dead(void); |
144 | extern void cpuidle_use_deepest_state(bool enable); | 153 | extern void cpuidle_enter_freeze(void); |
145 | 154 | ||
146 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); | 155 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); |
147 | #else | 156 | #else |
@@ -174,7 +183,7 @@ static inline int cpuidle_enable_device(struct cpuidle_device *dev) | |||
174 | {return -ENODEV; } | 183 | {return -ENODEV; } |
175 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } | 184 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } |
176 | static inline int cpuidle_play_dead(void) {return -ENODEV; } | 185 | static inline int cpuidle_play_dead(void) {return -ENODEV; } |
177 | static inline void cpuidle_use_deepest_state(bool enable) {} | 186 | static inline void cpuidle_enter_freeze(void) { } |
178 | static inline struct cpuidle_driver *cpuidle_get_cpu_driver( | 187 | static inline struct cpuidle_driver *cpuidle_get_cpu_driver( |
179 | struct cpuidle_device *dev) {return NULL; } | 188 | struct cpuidle_device *dev) {return NULL; } |
180 | #endif | 189 | #endif |
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index b950e9d6008b..086549a665e2 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
@@ -22,6 +22,14 @@ typedef struct cpumask { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t; | |||
22 | */ | 22 | */ |
23 | #define cpumask_bits(maskp) ((maskp)->bits) | 23 | #define cpumask_bits(maskp) ((maskp)->bits) |
24 | 24 | ||
25 | /** | ||
26 | * cpumask_pr_args - printf args to output a cpumask | ||
27 | * @maskp: cpumask to be printed | ||
28 | * | ||
29 | * Can be used to provide arguments for '%*pb[l]' when printing a cpumask. | ||
30 | */ | ||
31 | #define cpumask_pr_args(maskp) nr_cpu_ids, cpumask_bits(maskp) | ||
32 | |||
25 | #if NR_CPUS == 1 | 33 | #if NR_CPUS == 1 |
26 | #define nr_cpu_ids 1 | 34 | #define nr_cpu_ids 1 |
27 | #else | 35 | #else |
@@ -539,21 +547,6 @@ static inline void cpumask_copy(struct cpumask *dstp, | |||
539 | #define cpumask_of(cpu) (get_cpu_mask(cpu)) | 547 | #define cpumask_of(cpu) (get_cpu_mask(cpu)) |
540 | 548 | ||
541 | /** | 549 | /** |
542 | * cpumask_scnprintf - print a cpumask into a string as comma-separated hex | ||
543 | * @buf: the buffer to sprintf into | ||
544 | * @len: the length of the buffer | ||
545 | * @srcp: the cpumask to print | ||
546 | * | ||
547 | * If len is zero, returns zero. Otherwise returns the length of the | ||
548 | * (nul-terminated) @buf string. | ||
549 | */ | ||
550 | static inline int cpumask_scnprintf(char *buf, int len, | ||
551 | const struct cpumask *srcp) | ||
552 | { | ||
553 | return bitmap_scnprintf(buf, len, cpumask_bits(srcp), nr_cpumask_bits); | ||
554 | } | ||
555 | |||
556 | /** | ||
557 | * cpumask_parse_user - extract a cpumask from a user string | 550 | * cpumask_parse_user - extract a cpumask from a user string |
558 | * @buf: the buffer to extract from | 551 | * @buf: the buffer to extract from |
559 | * @len: the length of the buffer | 552 | * @len: the length of the buffer |
@@ -564,7 +557,7 @@ static inline int cpumask_scnprintf(char *buf, int len, | |||
564 | static inline int cpumask_parse_user(const char __user *buf, int len, | 557 | static inline int cpumask_parse_user(const char __user *buf, int len, |
565 | struct cpumask *dstp) | 558 | struct cpumask *dstp) |
566 | { | 559 | { |
567 | return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpumask_bits); | 560 | return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpu_ids); |
568 | } | 561 | } |
569 | 562 | ||
570 | /** | 563 | /** |
@@ -579,23 +572,7 @@ static inline int cpumask_parselist_user(const char __user *buf, int len, | |||
579 | struct cpumask *dstp) | 572 | struct cpumask *dstp) |
580 | { | 573 | { |
581 | return bitmap_parselist_user(buf, len, cpumask_bits(dstp), | 574 | return bitmap_parselist_user(buf, len, cpumask_bits(dstp), |
582 | nr_cpumask_bits); | 575 | nr_cpu_ids); |
583 | } | ||
584 | |||
585 | /** | ||
586 | * cpulist_scnprintf - print a cpumask into a string as comma-separated list | ||
587 | * @buf: the buffer to sprintf into | ||
588 | * @len: the length of the buffer | ||
589 | * @srcp: the cpumask to print | ||
590 | * | ||
591 | * If len is zero, returns zero. Otherwise returns the length of the | ||
592 | * (nul-terminated) @buf string. | ||
593 | */ | ||
594 | static inline int cpulist_scnprintf(char *buf, int len, | ||
595 | const struct cpumask *srcp) | ||
596 | { | ||
597 | return bitmap_scnlistprintf(buf, len, cpumask_bits(srcp), | ||
598 | nr_cpumask_bits); | ||
599 | } | 576 | } |
600 | 577 | ||
601 | /** | 578 | /** |
@@ -610,7 +587,7 @@ static inline int cpumask_parse(const char *buf, struct cpumask *dstp) | |||
610 | char *nl = strchr(buf, '\n'); | 587 | char *nl = strchr(buf, '\n'); |
611 | unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf); | 588 | unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf); |
612 | 589 | ||
613 | return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpumask_bits); | 590 | return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpu_ids); |
614 | } | 591 | } |
615 | 592 | ||
616 | /** | 593 | /** |
@@ -622,7 +599,7 @@ static inline int cpumask_parse(const char *buf, struct cpumask *dstp) | |||
622 | */ | 599 | */ |
623 | static inline int cpulist_parse(const char *buf, struct cpumask *dstp) | 600 | static inline int cpulist_parse(const char *buf, struct cpumask *dstp) |
624 | { | 601 | { |
625 | return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpumask_bits); | 602 | return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpu_ids); |
626 | } | 603 | } |
627 | 604 | ||
628 | /** | 605 | /** |
@@ -817,7 +794,7 @@ static inline ssize_t | |||
817 | cpumap_print_to_pagebuf(bool list, char *buf, const struct cpumask *mask) | 794 | cpumap_print_to_pagebuf(bool list, char *buf, const struct cpumask *mask) |
818 | { | 795 | { |
819 | return bitmap_print_to_pagebuf(list, buf, cpumask_bits(mask), | 796 | return bitmap_print_to_pagebuf(list, buf, cpumask_bits(mask), |
820 | nr_cpumask_bits); | 797 | nr_cpu_ids); |
821 | } | 798 | } |
822 | 799 | ||
823 | /* | 800 | /* |
@@ -905,13 +882,13 @@ static inline void __cpu_clear(int cpu, volatile cpumask_t *dstp) | |||
905 | } | 882 | } |
906 | 883 | ||
907 | #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS) | 884 | #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS) |
908 | static inline void __cpus_setall(cpumask_t *dstp, int nbits) | 885 | static inline void __cpus_setall(cpumask_t *dstp, unsigned int nbits) |
909 | { | 886 | { |
910 | bitmap_fill(dstp->bits, nbits); | 887 | bitmap_fill(dstp->bits, nbits); |
911 | } | 888 | } |
912 | 889 | ||
913 | #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS) | 890 | #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS) |
914 | static inline void __cpus_clear(cpumask_t *dstp, int nbits) | 891 | static inline void __cpus_clear(cpumask_t *dstp, unsigned int nbits) |
915 | { | 892 | { |
916 | bitmap_zero(dstp->bits, nbits); | 893 | bitmap_zero(dstp->bits, nbits); |
917 | } | 894 | } |
@@ -927,21 +904,21 @@ static inline int __cpu_test_and_set(int cpu, cpumask_t *addr) | |||
927 | 904 | ||
928 | #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS) | 905 | #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS) |
929 | static inline int __cpus_and(cpumask_t *dstp, const cpumask_t *src1p, | 906 | static inline int __cpus_and(cpumask_t *dstp, const cpumask_t *src1p, |
930 | const cpumask_t *src2p, int nbits) | 907 | const cpumask_t *src2p, unsigned int nbits) |
931 | { | 908 | { |
932 | return bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); | 909 | return bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); |
933 | } | 910 | } |
934 | 911 | ||
935 | #define cpus_or(dst, src1, src2) __cpus_or(&(dst), &(src1), &(src2), NR_CPUS) | 912 | #define cpus_or(dst, src1, src2) __cpus_or(&(dst), &(src1), &(src2), NR_CPUS) |
936 | static inline void __cpus_or(cpumask_t *dstp, const cpumask_t *src1p, | 913 | static inline void __cpus_or(cpumask_t *dstp, const cpumask_t *src1p, |
937 | const cpumask_t *src2p, int nbits) | 914 | const cpumask_t *src2p, unsigned int nbits) |
938 | { | 915 | { |
939 | bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); | 916 | bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); |
940 | } | 917 | } |
941 | 918 | ||
942 | #define cpus_xor(dst, src1, src2) __cpus_xor(&(dst), &(src1), &(src2), NR_CPUS) | 919 | #define cpus_xor(dst, src1, src2) __cpus_xor(&(dst), &(src1), &(src2), NR_CPUS) |
943 | static inline void __cpus_xor(cpumask_t *dstp, const cpumask_t *src1p, | 920 | static inline void __cpus_xor(cpumask_t *dstp, const cpumask_t *src1p, |
944 | const cpumask_t *src2p, int nbits) | 921 | const cpumask_t *src2p, unsigned int nbits) |
945 | { | 922 | { |
946 | bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); | 923 | bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); |
947 | } | 924 | } |
@@ -949,40 +926,40 @@ static inline void __cpus_xor(cpumask_t *dstp, const cpumask_t *src1p, | |||
949 | #define cpus_andnot(dst, src1, src2) \ | 926 | #define cpus_andnot(dst, src1, src2) \ |
950 | __cpus_andnot(&(dst), &(src1), &(src2), NR_CPUS) | 927 | __cpus_andnot(&(dst), &(src1), &(src2), NR_CPUS) |
951 | static inline int __cpus_andnot(cpumask_t *dstp, const cpumask_t *src1p, | 928 | static inline int __cpus_andnot(cpumask_t *dstp, const cpumask_t *src1p, |
952 | const cpumask_t *src2p, int nbits) | 929 | const cpumask_t *src2p, unsigned int nbits) |
953 | { | 930 | { |
954 | return bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); | 931 | return bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); |
955 | } | 932 | } |
956 | 933 | ||
957 | #define cpus_equal(src1, src2) __cpus_equal(&(src1), &(src2), NR_CPUS) | 934 | #define cpus_equal(src1, src2) __cpus_equal(&(src1), &(src2), NR_CPUS) |
958 | static inline int __cpus_equal(const cpumask_t *src1p, | 935 | static inline int __cpus_equal(const cpumask_t *src1p, |
959 | const cpumask_t *src2p, int nbits) | 936 | const cpumask_t *src2p, unsigned int nbits) |
960 | { | 937 | { |
961 | return bitmap_equal(src1p->bits, src2p->bits, nbits); | 938 | return bitmap_equal(src1p->bits, src2p->bits, nbits); |
962 | } | 939 | } |
963 | 940 | ||
964 | #define cpus_intersects(src1, src2) __cpus_intersects(&(src1), &(src2), NR_CPUS) | 941 | #define cpus_intersects(src1, src2) __cpus_intersects(&(src1), &(src2), NR_CPUS) |
965 | static inline int __cpus_intersects(const cpumask_t *src1p, | 942 | static inline int __cpus_intersects(const cpumask_t *src1p, |
966 | const cpumask_t *src2p, int nbits) | 943 | const cpumask_t *src2p, unsigned int nbits) |
967 | { | 944 | { |
968 | return bitmap_intersects(src1p->bits, src2p->bits, nbits); | 945 | return bitmap_intersects(src1p->bits, src2p->bits, nbits); |
969 | } | 946 | } |
970 | 947 | ||
971 | #define cpus_subset(src1, src2) __cpus_subset(&(src1), &(src2), NR_CPUS) | 948 | #define cpus_subset(src1, src2) __cpus_subset(&(src1), &(src2), NR_CPUS) |
972 | static inline int __cpus_subset(const cpumask_t *src1p, | 949 | static inline int __cpus_subset(const cpumask_t *src1p, |
973 | const cpumask_t *src2p, int nbits) | 950 | const cpumask_t *src2p, unsigned int nbits) |
974 | { | 951 | { |
975 | return bitmap_subset(src1p->bits, src2p->bits, nbits); | 952 | return bitmap_subset(src1p->bits, src2p->bits, nbits); |
976 | } | 953 | } |
977 | 954 | ||
978 | #define cpus_empty(src) __cpus_empty(&(src), NR_CPUS) | 955 | #define cpus_empty(src) __cpus_empty(&(src), NR_CPUS) |
979 | static inline int __cpus_empty(const cpumask_t *srcp, int nbits) | 956 | static inline int __cpus_empty(const cpumask_t *srcp, unsigned int nbits) |
980 | { | 957 | { |
981 | return bitmap_empty(srcp->bits, nbits); | 958 | return bitmap_empty(srcp->bits, nbits); |
982 | } | 959 | } |
983 | 960 | ||
984 | #define cpus_weight(cpumask) __cpus_weight(&(cpumask), NR_CPUS) | 961 | #define cpus_weight(cpumask) __cpus_weight(&(cpumask), NR_CPUS) |
985 | static inline int __cpus_weight(const cpumask_t *srcp, int nbits) | 962 | static inline int __cpus_weight(const cpumask_t *srcp, unsigned int nbits) |
986 | { | 963 | { |
987 | return bitmap_weight(srcp->bits, nbits); | 964 | return bitmap_weight(srcp->bits, nbits); |
988 | } | 965 | } |
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 9c8776d0ada8..fb5ef16d6a12 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h | |||
@@ -1147,7 +1147,7 @@ static inline void ablkcipher_request_free(struct ablkcipher_request *req) | |||
1147 | * cipher operation completes. | 1147 | * cipher operation completes. |
1148 | * | 1148 | * |
1149 | * The callback function is registered with the ablkcipher_request handle and | 1149 | * The callback function is registered with the ablkcipher_request handle and |
1150 | * must comply with the following template: | 1150 | * must comply with the following template |
1151 | * | 1151 | * |
1152 | * void callback_function(struct crypto_async_request *req, int error) | 1152 | * void callback_function(struct crypto_async_request *req, int error) |
1153 | */ | 1153 | */ |
@@ -1174,7 +1174,7 @@ static inline void ablkcipher_request_set_callback( | |||
1174 | * | 1174 | * |
1175 | * For encryption, the source is treated as the plaintext and the | 1175 | * For encryption, the source is treated as the plaintext and the |
1176 | * destination is the ciphertext. For a decryption operation, the use is | 1176 | * destination is the ciphertext. For a decryption operation, the use is |
1177 | * reversed: the source is the ciphertext and the destination is the plaintext. | 1177 | * reversed - the source is the ciphertext and the destination is the plaintext. |
1178 | */ | 1178 | */ |
1179 | static inline void ablkcipher_request_set_crypt( | 1179 | static inline void ablkcipher_request_set_crypt( |
1180 | struct ablkcipher_request *req, | 1180 | struct ablkcipher_request *req, |
@@ -1412,6 +1412,9 @@ static inline int crypto_aead_encrypt(struct aead_request *req) | |||
1412 | */ | 1412 | */ |
1413 | static inline int crypto_aead_decrypt(struct aead_request *req) | 1413 | static inline int crypto_aead_decrypt(struct aead_request *req) |
1414 | { | 1414 | { |
1415 | if (req->cryptlen < crypto_aead_authsize(crypto_aead_reqtfm(req))) | ||
1416 | return -EINVAL; | ||
1417 | |||
1415 | return crypto_aead_crt(crypto_aead_reqtfm(req))->decrypt(req); | 1418 | return crypto_aead_crt(crypto_aead_reqtfm(req))->decrypt(req); |
1416 | } | 1419 | } |
1417 | 1420 | ||
@@ -1506,7 +1509,7 @@ static inline void aead_request_free(struct aead_request *req) | |||
1506 | * completes | 1509 | * completes |
1507 | * | 1510 | * |
1508 | * The callback function is registered with the aead_request handle and | 1511 | * The callback function is registered with the aead_request handle and |
1509 | * must comply with the following template: | 1512 | * must comply with the following template |
1510 | * | 1513 | * |
1511 | * void callback_function(struct crypto_async_request *req, int error) | 1514 | * void callback_function(struct crypto_async_request *req, int error) |
1512 | */ | 1515 | */ |
@@ -1533,7 +1536,7 @@ static inline void aead_request_set_callback(struct aead_request *req, | |||
1533 | * | 1536 | * |
1534 | * For encryption, the source is treated as the plaintext and the | 1537 | * For encryption, the source is treated as the plaintext and the |
1535 | * destination is the ciphertext. For a decryption operation, the use is | 1538 | * destination is the ciphertext. For a decryption operation, the use is |
1536 | * reversed: the source is the ciphertext and the destination is the plaintext. | 1539 | * reversed - the source is the ciphertext and the destination is the plaintext. |
1537 | * | 1540 | * |
1538 | * IMPORTANT NOTE AEAD requires an authentication tag (MAC). For decryption, | 1541 | * IMPORTANT NOTE AEAD requires an authentication tag (MAC). For decryption, |
1539 | * the caller must concatenate the ciphertext followed by the | 1542 | * the caller must concatenate the ciphertext followed by the |
diff --git a/include/linux/cryptohash.h b/include/linux/cryptohash.h index 2cd9f1cf9fa3..f4754282c9c2 100644 --- a/include/linux/cryptohash.h +++ b/include/linux/cryptohash.h | |||
@@ -1,6 +1,8 @@ | |||
1 | #ifndef __CRYPTOHASH_H | 1 | #ifndef __CRYPTOHASH_H |
2 | #define __CRYPTOHASH_H | 2 | #define __CRYPTOHASH_H |
3 | 3 | ||
4 | #include <uapi/linux/types.h> | ||
5 | |||
4 | #define SHA_DIGEST_WORDS 5 | 6 | #define SHA_DIGEST_WORDS 5 |
5 | #define SHA_MESSAGE_BYTES (512 /*bits*/ / 8) | 7 | #define SHA_MESSAGE_BYTES (512 /*bits*/ / 8) |
6 | #define SHA_WORKSPACE_WORDS 16 | 8 | #define SHA_WORKSPACE_WORDS 16 |
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index 5a813988e6d4..92c08cf7670e 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h | |||
@@ -319,9 +319,6 @@ static inline unsigned d_count(const struct dentry *dentry) | |||
319 | return dentry->d_lockref.count; | 319 | return dentry->d_lockref.count; |
320 | } | 320 | } |
321 | 321 | ||
322 | /* validate "insecure" dentry pointer */ | ||
323 | extern int d_validate(struct dentry *, struct dentry *); | ||
324 | |||
325 | /* | 322 | /* |
326 | * helper function for dentry_operations.d_dname() members | 323 | * helper function for dentry_operations.d_dname() members |
327 | */ | 324 | */ |
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h index da4c4983adbe..cb25af461054 100644 --- a/include/linux/debugfs.h +++ b/include/linux/debugfs.h | |||
@@ -51,11 +51,21 @@ struct dentry *debugfs_create_file(const char *name, umode_t mode, | |||
51 | struct dentry *parent, void *data, | 51 | struct dentry *parent, void *data, |
52 | const struct file_operations *fops); | 52 | const struct file_operations *fops); |
53 | 53 | ||
54 | struct dentry *debugfs_create_file_size(const char *name, umode_t mode, | ||
55 | struct dentry *parent, void *data, | ||
56 | const struct file_operations *fops, | ||
57 | loff_t file_size); | ||
58 | |||
54 | struct dentry *debugfs_create_dir(const char *name, struct dentry *parent); | 59 | struct dentry *debugfs_create_dir(const char *name, struct dentry *parent); |
55 | 60 | ||
56 | struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent, | 61 | struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent, |
57 | const char *dest); | 62 | const char *dest); |
58 | 63 | ||
64 | struct dentry *debugfs_create_automount(const char *name, | ||
65 | struct dentry *parent, | ||
66 | struct vfsmount *(*f)(void *), | ||
67 | void *data); | ||
68 | |||
59 | void debugfs_remove(struct dentry *dentry); | 69 | void debugfs_remove(struct dentry *dentry); |
60 | void debugfs_remove_recursive(struct dentry *dentry); | 70 | void debugfs_remove_recursive(struct dentry *dentry); |
61 | 71 | ||
@@ -124,6 +134,14 @@ static inline struct dentry *debugfs_create_file(const char *name, umode_t mode, | |||
124 | return ERR_PTR(-ENODEV); | 134 | return ERR_PTR(-ENODEV); |
125 | } | 135 | } |
126 | 136 | ||
137 | static inline struct dentry *debugfs_create_file_size(const char *name, umode_t mode, | ||
138 | struct dentry *parent, void *data, | ||
139 | const struct file_operations *fops, | ||
140 | loff_t file_size) | ||
141 | { | ||
142 | return ERR_PTR(-ENODEV); | ||
143 | } | ||
144 | |||
127 | static inline struct dentry *debugfs_create_dir(const char *name, | 145 | static inline struct dentry *debugfs_create_dir(const char *name, |
128 | struct dentry *parent) | 146 | struct dentry *parent) |
129 | { | 147 | { |
diff --git a/include/linux/devfreq-event.h b/include/linux/devfreq-event.h new file mode 100644 index 000000000000..602fbbfcfeed --- /dev/null +++ b/include/linux/devfreq-event.h | |||
@@ -0,0 +1,196 @@ | |||
1 | /* | ||
2 | * devfreq-event: a framework to provide raw data and events of devfreq devices | ||
3 | * | ||
4 | * Copyright (C) 2014 Samsung Electronics | ||
5 | * Author: Chanwoo Choi <cw00.choi@samsung.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #ifndef __LINUX_DEVFREQ_EVENT_H__ | ||
13 | #define __LINUX_DEVFREQ_EVENT_H__ | ||
14 | |||
15 | #include <linux/device.h> | ||
16 | |||
17 | /** | ||
18 | * struct devfreq_event_dev - the devfreq-event device | ||
19 | * | ||
20 | * @node : Contain the devfreq-event device that have been registered. | ||
21 | * @dev : the device registered by devfreq-event class. dev.parent is | ||
22 | * the device using devfreq-event. | ||
23 | * @lock : a mutex to protect accessing devfreq-event. | ||
24 | * @enable_count: the number of enable function have been called. | ||
25 | * @desc : the description for devfreq-event device. | ||
26 | * | ||
27 | * This structure contains devfreq-event device information. | ||
28 | */ | ||
29 | struct devfreq_event_dev { | ||
30 | struct list_head node; | ||
31 | |||
32 | struct device dev; | ||
33 | struct mutex lock; | ||
34 | u32 enable_count; | ||
35 | |||
36 | const struct devfreq_event_desc *desc; | ||
37 | }; | ||
38 | |||
39 | /** | ||
40 | * struct devfreq_event_data - the devfreq-event data | ||
41 | * | ||
42 | * @load_count : load count of devfreq-event device for the given period. | ||
43 | * @total_count : total count of devfreq-event device for the given period. | ||
44 | * each count may represent a clock cycle, a time unit | ||
45 | * (ns/us/...), or anything the device driver wants. | ||
46 | * Generally, utilization is load_count / total_count. | ||
47 | * | ||
48 | * This structure contains the data of devfreq-event device for polling period. | ||
49 | */ | ||
50 | struct devfreq_event_data { | ||
51 | unsigned long load_count; | ||
52 | unsigned long total_count; | ||
53 | }; | ||
54 | |||
55 | /** | ||
56 | * struct devfreq_event_ops - the operations of devfreq-event device | ||
57 | * | ||
58 | * @enable : Enable the devfreq-event device. | ||
59 | * @disable : Disable the devfreq-event device. | ||
60 | * @reset : Reset all setting of the devfreq-event device. | ||
61 | * @set_event : Set the specific event type for the devfreq-event device. | ||
62 | * @get_event : Get the result of the devfreq-event devie with specific | ||
63 | * event type. | ||
64 | * | ||
65 | * This structure contains devfreq-event device operations which can be | ||
66 | * implemented by devfreq-event device drivers. | ||
67 | */ | ||
68 | struct devfreq_event_ops { | ||
69 | /* Optional functions */ | ||
70 | int (*enable)(struct devfreq_event_dev *edev); | ||
71 | int (*disable)(struct devfreq_event_dev *edev); | ||
72 | int (*reset)(struct devfreq_event_dev *edev); | ||
73 | |||
74 | /* Mandatory functions */ | ||
75 | int (*set_event)(struct devfreq_event_dev *edev); | ||
76 | int (*get_event)(struct devfreq_event_dev *edev, | ||
77 | struct devfreq_event_data *edata); | ||
78 | }; | ||
79 | |||
80 | /** | ||
81 | * struct devfreq_event_desc - the descriptor of devfreq-event device | ||
82 | * | ||
83 | * @name : the name of devfreq-event device. | ||
84 | * @driver_data : the private data for devfreq-event driver. | ||
85 | * @ops : the operation to control devfreq-event device. | ||
86 | * | ||
87 | * Each devfreq-event device is described with a this structure. | ||
88 | * This structure contains the various data for devfreq-event device. | ||
89 | */ | ||
90 | struct devfreq_event_desc { | ||
91 | const char *name; | ||
92 | void *driver_data; | ||
93 | |||
94 | struct devfreq_event_ops *ops; | ||
95 | }; | ||
96 | |||
97 | #if defined(CONFIG_PM_DEVFREQ_EVENT) | ||
98 | extern int devfreq_event_enable_edev(struct devfreq_event_dev *edev); | ||
99 | extern int devfreq_event_disable_edev(struct devfreq_event_dev *edev); | ||
100 | extern bool devfreq_event_is_enabled(struct devfreq_event_dev *edev); | ||
101 | extern int devfreq_event_set_event(struct devfreq_event_dev *edev); | ||
102 | extern int devfreq_event_get_event(struct devfreq_event_dev *edev, | ||
103 | struct devfreq_event_data *edata); | ||
104 | extern int devfreq_event_reset_event(struct devfreq_event_dev *edev); | ||
105 | extern struct devfreq_event_dev *devfreq_event_get_edev_by_phandle( | ||
106 | struct device *dev, int index); | ||
107 | extern int devfreq_event_get_edev_count(struct device *dev); | ||
108 | extern struct devfreq_event_dev *devfreq_event_add_edev(struct device *dev, | ||
109 | struct devfreq_event_desc *desc); | ||
110 | extern int devfreq_event_remove_edev(struct devfreq_event_dev *edev); | ||
111 | extern struct devfreq_event_dev *devm_devfreq_event_add_edev(struct device *dev, | ||
112 | struct devfreq_event_desc *desc); | ||
113 | extern void devm_devfreq_event_remove_edev(struct device *dev, | ||
114 | struct devfreq_event_dev *edev); | ||
115 | static inline void *devfreq_event_get_drvdata(struct devfreq_event_dev *edev) | ||
116 | { | ||
117 | return edev->desc->driver_data; | ||
118 | } | ||
119 | #else | ||
120 | static inline int devfreq_event_enable_edev(struct devfreq_event_dev *edev) | ||
121 | { | ||
122 | return -EINVAL; | ||
123 | } | ||
124 | |||
125 | static inline int devfreq_event_disable_edev(struct devfreq_event_dev *edev) | ||
126 | { | ||
127 | return -EINVAL; | ||
128 | } | ||
129 | |||
130 | static inline bool devfreq_event_is_enabled(struct devfreq_event_dev *edev) | ||
131 | { | ||
132 | return false; | ||
133 | } | ||
134 | |||
135 | static inline int devfreq_event_set_event(struct devfreq_event_dev *edev) | ||
136 | { | ||
137 | return -EINVAL; | ||
138 | } | ||
139 | |||
140 | static inline int devfreq_event_get_event(struct devfreq_event_dev *edev, | ||
141 | struct devfreq_event_data *edata) | ||
142 | { | ||
143 | return -EINVAL; | ||
144 | } | ||
145 | |||
146 | static inline int devfreq_event_reset_event(struct devfreq_event_dev *edev) | ||
147 | { | ||
148 | return -EINVAL; | ||
149 | } | ||
150 | |||
151 | static inline void *devfreq_event_get_drvdata(struct devfreq_event_dev *edev) | ||
152 | { | ||
153 | return ERR_PTR(-EINVAL); | ||
154 | } | ||
155 | |||
156 | static inline struct devfreq_event_dev *devfreq_event_get_edev_by_phandle( | ||
157 | struct device *dev, int index) | ||
158 | { | ||
159 | return ERR_PTR(-EINVAL); | ||
160 | } | ||
161 | |||
162 | static inline int devfreq_event_get_edev_count(struct device *dev) | ||
163 | { | ||
164 | return -EINVAL; | ||
165 | } | ||
166 | |||
167 | static inline struct devfreq_event_dev *devfreq_event_add_edev(struct device *dev, | ||
168 | struct devfreq_event_desc *desc) | ||
169 | { | ||
170 | return ERR_PTR(-EINVAL); | ||
171 | } | ||
172 | |||
173 | static inline int devfreq_event_remove_edev(struct devfreq_event_dev *edev) | ||
174 | { | ||
175 | return -EINVAL; | ||
176 | } | ||
177 | |||
178 | static inline struct devfreq_event_dev *devm_devfreq_event_add_edev( | ||
179 | struct device *dev, | ||
180 | struct devfreq_event_desc *desc) | ||
181 | { | ||
182 | return ERR_PTR(-EINVAL); | ||
183 | } | ||
184 | |||
185 | static inline void devm_devfreq_event_remove_edev(struct device *dev, | ||
186 | struct devfreq_event_dev *edev) | ||
187 | { | ||
188 | } | ||
189 | |||
190 | static inline void *devfreq_event_get_drvdata(struct devfreq_event_dev *edev) | ||
191 | { | ||
192 | return NULL; | ||
193 | } | ||
194 | #endif /* CONFIG_PM_DEVFREQ_EVENT */ | ||
195 | |||
196 | #endif /* __LINUX_DEVFREQ_EVENT_H__ */ | ||
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h index ca6d2acc5eb7..2646aed1d3fe 100644 --- a/include/linux/device-mapper.h +++ b/include/linux/device-mapper.h | |||
@@ -48,6 +48,11 @@ typedef void (*dm_dtr_fn) (struct dm_target *ti); | |||
48 | typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio); | 48 | typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio); |
49 | typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone, | 49 | typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone, |
50 | union map_info *map_context); | 50 | union map_info *map_context); |
51 | typedef int (*dm_clone_and_map_request_fn) (struct dm_target *ti, | ||
52 | struct request *rq, | ||
53 | union map_info *map_context, | ||
54 | struct request **clone); | ||
55 | typedef void (*dm_release_clone_request_fn) (struct request *clone); | ||
51 | 56 | ||
52 | /* | 57 | /* |
53 | * Returns: | 58 | * Returns: |
@@ -143,6 +148,8 @@ struct target_type { | |||
143 | dm_dtr_fn dtr; | 148 | dm_dtr_fn dtr; |
144 | dm_map_fn map; | 149 | dm_map_fn map; |
145 | dm_map_request_fn map_rq; | 150 | dm_map_request_fn map_rq; |
151 | dm_clone_and_map_request_fn clone_and_map_rq; | ||
152 | dm_release_clone_request_fn release_clone_rq; | ||
146 | dm_endio_fn end_io; | 153 | dm_endio_fn end_io; |
147 | dm_request_endio_fn rq_end_io; | 154 | dm_request_endio_fn rq_end_io; |
148 | dm_presuspend_fn presuspend; | 155 | dm_presuspend_fn presuspend; |
@@ -600,9 +607,6 @@ static inline unsigned long to_bytes(sector_t n) | |||
600 | /*----------------------------------------------------------------- | 607 | /*----------------------------------------------------------------- |
601 | * Helper for block layer and dm core operations | 608 | * Helper for block layer and dm core operations |
602 | *---------------------------------------------------------------*/ | 609 | *---------------------------------------------------------------*/ |
603 | void dm_dispatch_request(struct request *rq); | ||
604 | void dm_requeue_unmapped_request(struct request *rq); | ||
605 | void dm_kill_unmapped_request(struct request *rq, int error); | ||
606 | int dm_underlying_device_busy(struct request_queue *q); | 610 | int dm_underlying_device_busy(struct request_queue *q); |
607 | 611 | ||
608 | #endif /* _LINUX_DEVICE_MAPPER_H */ | 612 | #endif /* _LINUX_DEVICE_MAPPER_H */ |
diff --git a/include/linux/device.h b/include/linux/device.h index fb506738f7b7..0eb8ee2dc6d1 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
@@ -1038,22 +1038,22 @@ extern __printf(3, 4) | |||
1038 | int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...); | 1038 | int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...); |
1039 | 1039 | ||
1040 | extern __printf(3, 4) | 1040 | extern __printf(3, 4) |
1041 | int dev_printk(const char *level, const struct device *dev, | 1041 | void dev_printk(const char *level, const struct device *dev, |
1042 | const char *fmt, ...); | 1042 | const char *fmt, ...); |
1043 | extern __printf(2, 3) | 1043 | extern __printf(2, 3) |
1044 | int dev_emerg(const struct device *dev, const char *fmt, ...); | 1044 | void dev_emerg(const struct device *dev, const char *fmt, ...); |
1045 | extern __printf(2, 3) | 1045 | extern __printf(2, 3) |
1046 | int dev_alert(const struct device *dev, const char *fmt, ...); | 1046 | void dev_alert(const struct device *dev, const char *fmt, ...); |
1047 | extern __printf(2, 3) | 1047 | extern __printf(2, 3) |
1048 | int dev_crit(const struct device *dev, const char *fmt, ...); | 1048 | void dev_crit(const struct device *dev, const char *fmt, ...); |
1049 | extern __printf(2, 3) | 1049 | extern __printf(2, 3) |
1050 | int dev_err(const struct device *dev, const char *fmt, ...); | 1050 | void dev_err(const struct device *dev, const char *fmt, ...); |
1051 | extern __printf(2, 3) | 1051 | extern __printf(2, 3) |
1052 | int dev_warn(const struct device *dev, const char *fmt, ...); | 1052 | void dev_warn(const struct device *dev, const char *fmt, ...); |
1053 | extern __printf(2, 3) | 1053 | extern __printf(2, 3) |
1054 | int dev_notice(const struct device *dev, const char *fmt, ...); | 1054 | void dev_notice(const struct device *dev, const char *fmt, ...); |
1055 | extern __printf(2, 3) | 1055 | extern __printf(2, 3) |
1056 | int _dev_info(const struct device *dev, const char *fmt, ...); | 1056 | void _dev_info(const struct device *dev, const char *fmt, ...); |
1057 | 1057 | ||
1058 | #else | 1058 | #else |
1059 | 1059 | ||
@@ -1065,35 +1065,35 @@ static inline __printf(3, 4) | |||
1065 | int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...) | 1065 | int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...) |
1066 | { return 0; } | 1066 | { return 0; } |
1067 | 1067 | ||
1068 | static inline int __dev_printk(const char *level, const struct device *dev, | 1068 | static inline void __dev_printk(const char *level, const struct device *dev, |
1069 | struct va_format *vaf) | 1069 | struct va_format *vaf) |
1070 | { return 0; } | 1070 | {} |
1071 | static inline __printf(3, 4) | 1071 | static inline __printf(3, 4) |
1072 | int dev_printk(const char *level, const struct device *dev, | 1072 | void dev_printk(const char *level, const struct device *dev, |
1073 | const char *fmt, ...) | 1073 | const char *fmt, ...) |
1074 | { return 0; } | 1074 | {} |
1075 | 1075 | ||
1076 | static inline __printf(2, 3) | 1076 | static inline __printf(2, 3) |
1077 | int dev_emerg(const struct device *dev, const char *fmt, ...) | 1077 | void dev_emerg(const struct device *dev, const char *fmt, ...) |
1078 | { return 0; } | 1078 | {} |
1079 | static inline __printf(2, 3) | 1079 | static inline __printf(2, 3) |
1080 | int dev_crit(const struct device *dev, const char *fmt, ...) | 1080 | void dev_crit(const struct device *dev, const char *fmt, ...) |
1081 | { return 0; } | 1081 | {} |
1082 | static inline __printf(2, 3) | 1082 | static inline __printf(2, 3) |
1083 | int dev_alert(const struct device *dev, const char *fmt, ...) | 1083 | void dev_alert(const struct device *dev, const char *fmt, ...) |
1084 | { return 0; } | 1084 | {} |
1085 | static inline __printf(2, 3) | 1085 | static inline __printf(2, 3) |
1086 | int dev_err(const struct device *dev, const char *fmt, ...) | 1086 | void dev_err(const struct device *dev, const char *fmt, ...) |
1087 | { return 0; } | 1087 | {} |
1088 | static inline __printf(2, 3) | 1088 | static inline __printf(2, 3) |
1089 | int dev_warn(const struct device *dev, const char *fmt, ...) | 1089 | void dev_warn(const struct device *dev, const char *fmt, ...) |
1090 | { return 0; } | 1090 | {} |
1091 | static inline __printf(2, 3) | 1091 | static inline __printf(2, 3) |
1092 | int dev_notice(const struct device *dev, const char *fmt, ...) | 1092 | void dev_notice(const struct device *dev, const char *fmt, ...) |
1093 | { return 0; } | 1093 | {} |
1094 | static inline __printf(2, 3) | 1094 | static inline __printf(2, 3) |
1095 | int _dev_info(const struct device *dev, const char *fmt, ...) | 1095 | void _dev_info(const struct device *dev, const char *fmt, ...) |
1096 | { return 0; } | 1096 | {} |
1097 | 1097 | ||
1098 | #endif | 1098 | #endif |
1099 | 1099 | ||
@@ -1119,7 +1119,6 @@ do { \ | |||
1119 | ({ \ | 1119 | ({ \ |
1120 | if (0) \ | 1120 | if (0) \ |
1121 | dev_printk(KERN_DEBUG, dev, format, ##arg); \ | 1121 | dev_printk(KERN_DEBUG, dev, format, ##arg); \ |
1122 | 0; \ | ||
1123 | }) | 1122 | }) |
1124 | #endif | 1123 | #endif |
1125 | 1124 | ||
@@ -1156,7 +1155,7 @@ do { \ | |||
1156 | #define dev_info_once(dev, fmt, ...) \ | 1155 | #define dev_info_once(dev, fmt, ...) \ |
1157 | dev_level_once(dev_info, dev, fmt, ##__VA_ARGS__) | 1156 | dev_level_once(dev_info, dev, fmt, ##__VA_ARGS__) |
1158 | #define dev_dbg_once(dev, fmt, ...) \ | 1157 | #define dev_dbg_once(dev, fmt, ...) \ |
1159 | dev_level_once(dev_info, dev, fmt, ##__VA_ARGS__) | 1158 | dev_level_once(dev_dbg, dev, fmt, ##__VA_ARGS__) |
1160 | 1159 | ||
1161 | #define dev_level_ratelimited(dev_level, dev, fmt, ...) \ | 1160 | #define dev_level_ratelimited(dev_level, dev, fmt, ...) \ |
1162 | do { \ | 1161 | do { \ |
@@ -1215,7 +1214,6 @@ do { \ | |||
1215 | ({ \ | 1214 | ({ \ |
1216 | if (0) \ | 1215 | if (0) \ |
1217 | dev_printk(KERN_DEBUG, dev, format, ##arg); \ | 1216 | dev_printk(KERN_DEBUG, dev, format, ##arg); \ |
1218 | 0; \ | ||
1219 | }) | 1217 | }) |
1220 | #endif | 1218 | #endif |
1221 | 1219 | ||
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 40cd75e21ea2..b6997a0cb528 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h | |||
@@ -189,25 +189,6 @@ enum dma_ctrl_flags { | |||
189 | }; | 189 | }; |
190 | 190 | ||
191 | /** | 191 | /** |
192 | * enum dma_ctrl_cmd - DMA operations that can optionally be exercised | ||
193 | * on a running channel. | ||
194 | * @DMA_TERMINATE_ALL: terminate all ongoing transfers | ||
195 | * @DMA_PAUSE: pause ongoing transfers | ||
196 | * @DMA_RESUME: resume paused transfer | ||
197 | * @DMA_SLAVE_CONFIG: this command is only implemented by DMA controllers | ||
198 | * that need to runtime reconfigure the slave channels (as opposed to passing | ||
199 | * configuration data in statically from the platform). An additional | ||
200 | * argument of struct dma_slave_config must be passed in with this | ||
201 | * command. | ||
202 | */ | ||
203 | enum dma_ctrl_cmd { | ||
204 | DMA_TERMINATE_ALL, | ||
205 | DMA_PAUSE, | ||
206 | DMA_RESUME, | ||
207 | DMA_SLAVE_CONFIG, | ||
208 | }; | ||
209 | |||
210 | /** | ||
211 | * enum sum_check_bits - bit position of pq_check_flags | 192 | * enum sum_check_bits - bit position of pq_check_flags |
212 | */ | 193 | */ |
213 | enum sum_check_bits { | 194 | enum sum_check_bits { |
@@ -298,6 +279,9 @@ enum dma_slave_buswidth { | |||
298 | DMA_SLAVE_BUSWIDTH_3_BYTES = 3, | 279 | DMA_SLAVE_BUSWIDTH_3_BYTES = 3, |
299 | DMA_SLAVE_BUSWIDTH_4_BYTES = 4, | 280 | DMA_SLAVE_BUSWIDTH_4_BYTES = 4, |
300 | DMA_SLAVE_BUSWIDTH_8_BYTES = 8, | 281 | DMA_SLAVE_BUSWIDTH_8_BYTES = 8, |
282 | DMA_SLAVE_BUSWIDTH_16_BYTES = 16, | ||
283 | DMA_SLAVE_BUSWIDTH_32_BYTES = 32, | ||
284 | DMA_SLAVE_BUSWIDTH_64_BYTES = 64, | ||
301 | }; | 285 | }; |
302 | 286 | ||
303 | /** | 287 | /** |
@@ -336,9 +320,8 @@ enum dma_slave_buswidth { | |||
336 | * This struct is passed in as configuration data to a DMA engine | 320 | * This struct is passed in as configuration data to a DMA engine |
337 | * in order to set up a certain channel for DMA transport at runtime. | 321 | * in order to set up a certain channel for DMA transport at runtime. |
338 | * The DMA device/engine has to provide support for an additional | 322 | * The DMA device/engine has to provide support for an additional |
339 | * command in the channel config interface, DMA_SLAVE_CONFIG | 323 | * callback in the dma_device structure, device_config and this struct |
340 | * and this struct will then be passed in as an argument to the | 324 | * will then be passed in as an argument to the function. |
341 | * DMA engine device_control() function. | ||
342 | * | 325 | * |
343 | * The rationale for adding configuration information to this struct is as | 326 | * The rationale for adding configuration information to this struct is as |
344 | * follows: if it is likely that more than one DMA slave controllers in | 327 | * follows: if it is likely that more than one DMA slave controllers in |
@@ -387,7 +370,7 @@ enum dma_residue_granularity { | |||
387 | /* struct dma_slave_caps - expose capabilities of a slave channel only | 370 | /* struct dma_slave_caps - expose capabilities of a slave channel only |
388 | * | 371 | * |
389 | * @src_addr_widths: bit mask of src addr widths the channel supports | 372 | * @src_addr_widths: bit mask of src addr widths the channel supports |
390 | * @dstn_addr_widths: bit mask of dstn addr widths the channel supports | 373 | * @dst_addr_widths: bit mask of dstn addr widths the channel supports |
391 | * @directions: bit mask of slave direction the channel supported | 374 | * @directions: bit mask of slave direction the channel supported |
392 | * since the enum dma_transfer_direction is not defined as bits for each | 375 | * since the enum dma_transfer_direction is not defined as bits for each |
393 | * type of direction, the dma controller should fill (1 << <TYPE>) and same | 376 | * type of direction, the dma controller should fill (1 << <TYPE>) and same |
@@ -398,7 +381,7 @@ enum dma_residue_granularity { | |||
398 | */ | 381 | */ |
399 | struct dma_slave_caps { | 382 | struct dma_slave_caps { |
400 | u32 src_addr_widths; | 383 | u32 src_addr_widths; |
401 | u32 dstn_addr_widths; | 384 | u32 dst_addr_widths; |
402 | u32 directions; | 385 | u32 directions; |
403 | bool cmd_pause; | 386 | bool cmd_pause; |
404 | bool cmd_terminate; | 387 | bool cmd_terminate; |
@@ -594,6 +577,14 @@ struct dma_tx_state { | |||
594 | * @fill_align: alignment shift for memset operations | 577 | * @fill_align: alignment shift for memset operations |
595 | * @dev_id: unique device ID | 578 | * @dev_id: unique device ID |
596 | * @dev: struct device reference for dma mapping api | 579 | * @dev: struct device reference for dma mapping api |
580 | * @src_addr_widths: bit mask of src addr widths the device supports | ||
581 | * @dst_addr_widths: bit mask of dst addr widths the device supports | ||
582 | * @directions: bit mask of slave direction the device supports since | ||
583 | * the enum dma_transfer_direction is not defined as bits for | ||
584 | * each type of direction, the dma controller should fill (1 << | ||
585 | * <TYPE>) and same should be checked by controller as well | ||
586 | * @residue_granularity: granularity of the transfer residue reported | ||
587 | * by tx_status | ||
597 | * @device_alloc_chan_resources: allocate resources and return the | 588 | * @device_alloc_chan_resources: allocate resources and return the |
598 | * number of allocated descriptors | 589 | * number of allocated descriptors |
599 | * @device_free_chan_resources: release DMA channel's resources | 590 | * @device_free_chan_resources: release DMA channel's resources |
@@ -608,14 +599,19 @@ struct dma_tx_state { | |||
608 | * The function takes a buffer of size buf_len. The callback function will | 599 | * The function takes a buffer of size buf_len. The callback function will |
609 | * be called after period_len bytes have been transferred. | 600 | * be called after period_len bytes have been transferred. |
610 | * @device_prep_interleaved_dma: Transfer expression in a generic way. | 601 | * @device_prep_interleaved_dma: Transfer expression in a generic way. |
611 | * @device_control: manipulate all pending operations on a channel, returns | 602 | * @device_config: Pushes a new configuration to a channel, return 0 or an error |
612 | * zero or error code | 603 | * code |
604 | * @device_pause: Pauses any transfer happening on a channel. Returns | ||
605 | * 0 or an error code | ||
606 | * @device_resume: Resumes any transfer on a channel previously | ||
607 | * paused. Returns 0 or an error code | ||
608 | * @device_terminate_all: Aborts all transfers on a channel. Returns 0 | ||
609 | * or an error code | ||
613 | * @device_tx_status: poll for transaction completion, the optional | 610 | * @device_tx_status: poll for transaction completion, the optional |
614 | * txstate parameter can be supplied with a pointer to get a | 611 | * txstate parameter can be supplied with a pointer to get a |
615 | * struct with auxiliary transfer status information, otherwise the call | 612 | * struct with auxiliary transfer status information, otherwise the call |
616 | * will just return a simple status code | 613 | * will just return a simple status code |
617 | * @device_issue_pending: push pending transactions to hardware | 614 | * @device_issue_pending: push pending transactions to hardware |
618 | * @device_slave_caps: return the slave channel capabilities | ||
619 | */ | 615 | */ |
620 | struct dma_device { | 616 | struct dma_device { |
621 | 617 | ||
@@ -635,14 +631,19 @@ struct dma_device { | |||
635 | int dev_id; | 631 | int dev_id; |
636 | struct device *dev; | 632 | struct device *dev; |
637 | 633 | ||
634 | u32 src_addr_widths; | ||
635 | u32 dst_addr_widths; | ||
636 | u32 directions; | ||
637 | enum dma_residue_granularity residue_granularity; | ||
638 | |||
638 | int (*device_alloc_chan_resources)(struct dma_chan *chan); | 639 | int (*device_alloc_chan_resources)(struct dma_chan *chan); |
639 | void (*device_free_chan_resources)(struct dma_chan *chan); | 640 | void (*device_free_chan_resources)(struct dma_chan *chan); |
640 | 641 | ||
641 | struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)( | 642 | struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)( |
642 | struct dma_chan *chan, dma_addr_t dest, dma_addr_t src, | 643 | struct dma_chan *chan, dma_addr_t dst, dma_addr_t src, |
643 | size_t len, unsigned long flags); | 644 | size_t len, unsigned long flags); |
644 | struct dma_async_tx_descriptor *(*device_prep_dma_xor)( | 645 | struct dma_async_tx_descriptor *(*device_prep_dma_xor)( |
645 | struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src, | 646 | struct dma_chan *chan, dma_addr_t dst, dma_addr_t *src, |
646 | unsigned int src_cnt, size_t len, unsigned long flags); | 647 | unsigned int src_cnt, size_t len, unsigned long flags); |
647 | struct dma_async_tx_descriptor *(*device_prep_dma_xor_val)( | 648 | struct dma_async_tx_descriptor *(*device_prep_dma_xor_val)( |
648 | struct dma_chan *chan, dma_addr_t *src, unsigned int src_cnt, | 649 | struct dma_chan *chan, dma_addr_t *src, unsigned int src_cnt, |
@@ -674,31 +675,26 @@ struct dma_device { | |||
674 | struct dma_async_tx_descriptor *(*device_prep_interleaved_dma)( | 675 | struct dma_async_tx_descriptor *(*device_prep_interleaved_dma)( |
675 | struct dma_chan *chan, struct dma_interleaved_template *xt, | 676 | struct dma_chan *chan, struct dma_interleaved_template *xt, |
676 | unsigned long flags); | 677 | unsigned long flags); |
677 | int (*device_control)(struct dma_chan *chan, enum dma_ctrl_cmd cmd, | 678 | |
678 | unsigned long arg); | 679 | int (*device_config)(struct dma_chan *chan, |
680 | struct dma_slave_config *config); | ||
681 | int (*device_pause)(struct dma_chan *chan); | ||
682 | int (*device_resume)(struct dma_chan *chan); | ||
683 | int (*device_terminate_all)(struct dma_chan *chan); | ||
679 | 684 | ||
680 | enum dma_status (*device_tx_status)(struct dma_chan *chan, | 685 | enum dma_status (*device_tx_status)(struct dma_chan *chan, |
681 | dma_cookie_t cookie, | 686 | dma_cookie_t cookie, |
682 | struct dma_tx_state *txstate); | 687 | struct dma_tx_state *txstate); |
683 | void (*device_issue_pending)(struct dma_chan *chan); | 688 | void (*device_issue_pending)(struct dma_chan *chan); |
684 | int (*device_slave_caps)(struct dma_chan *chan, struct dma_slave_caps *caps); | ||
685 | }; | 689 | }; |
686 | 690 | ||
687 | static inline int dmaengine_device_control(struct dma_chan *chan, | ||
688 | enum dma_ctrl_cmd cmd, | ||
689 | unsigned long arg) | ||
690 | { | ||
691 | if (chan->device->device_control) | ||
692 | return chan->device->device_control(chan, cmd, arg); | ||
693 | |||
694 | return -ENOSYS; | ||
695 | } | ||
696 | |||
697 | static inline int dmaengine_slave_config(struct dma_chan *chan, | 691 | static inline int dmaengine_slave_config(struct dma_chan *chan, |
698 | struct dma_slave_config *config) | 692 | struct dma_slave_config *config) |
699 | { | 693 | { |
700 | return dmaengine_device_control(chan, DMA_SLAVE_CONFIG, | 694 | if (chan->device->device_config) |
701 | (unsigned long)config); | 695 | return chan->device->device_config(chan, config); |
696 | |||
697 | return -ENOSYS; | ||
702 | } | 698 | } |
703 | 699 | ||
704 | static inline bool is_slave_direction(enum dma_transfer_direction direction) | 700 | static inline bool is_slave_direction(enum dma_transfer_direction direction) |
@@ -765,34 +761,28 @@ static inline struct dma_async_tx_descriptor *dmaengine_prep_dma_sg( | |||
765 | src_sg, src_nents, flags); | 761 | src_sg, src_nents, flags); |
766 | } | 762 | } |
767 | 763 | ||
768 | static inline int dma_get_slave_caps(struct dma_chan *chan, struct dma_slave_caps *caps) | ||
769 | { | ||
770 | if (!chan || !caps) | ||
771 | return -EINVAL; | ||
772 | |||
773 | /* check if the channel supports slave transactions */ | ||
774 | if (!test_bit(DMA_SLAVE, chan->device->cap_mask.bits)) | ||
775 | return -ENXIO; | ||
776 | |||
777 | if (chan->device->device_slave_caps) | ||
778 | return chan->device->device_slave_caps(chan, caps); | ||
779 | |||
780 | return -ENXIO; | ||
781 | } | ||
782 | |||
783 | static inline int dmaengine_terminate_all(struct dma_chan *chan) | 764 | static inline int dmaengine_terminate_all(struct dma_chan *chan) |
784 | { | 765 | { |
785 | return dmaengine_device_control(chan, DMA_TERMINATE_ALL, 0); | 766 | if (chan->device->device_terminate_all) |
767 | return chan->device->device_terminate_all(chan); | ||
768 | |||
769 | return -ENOSYS; | ||
786 | } | 770 | } |
787 | 771 | ||
788 | static inline int dmaengine_pause(struct dma_chan *chan) | 772 | static inline int dmaengine_pause(struct dma_chan *chan) |
789 | { | 773 | { |
790 | return dmaengine_device_control(chan, DMA_PAUSE, 0); | 774 | if (chan->device->device_pause) |
775 | return chan->device->device_pause(chan); | ||
776 | |||
777 | return -ENOSYS; | ||
791 | } | 778 | } |
792 | 779 | ||
793 | static inline int dmaengine_resume(struct dma_chan *chan) | 780 | static inline int dmaengine_resume(struct dma_chan *chan) |
794 | { | 781 | { |
795 | return dmaengine_device_control(chan, DMA_RESUME, 0); | 782 | if (chan->device->device_resume) |
783 | return chan->device->device_resume(chan); | ||
784 | |||
785 | return -ENOSYS; | ||
796 | } | 786 | } |
797 | 787 | ||
798 | static inline enum dma_status dmaengine_tx_status(struct dma_chan *chan, | 788 | static inline enum dma_status dmaengine_tx_status(struct dma_chan *chan, |
@@ -1059,6 +1049,7 @@ struct dma_chan *dma_request_slave_channel_reason(struct device *dev, | |||
1059 | const char *name); | 1049 | const char *name); |
1060 | struct dma_chan *dma_request_slave_channel(struct device *dev, const char *name); | 1050 | struct dma_chan *dma_request_slave_channel(struct device *dev, const char *name); |
1061 | void dma_release_channel(struct dma_chan *chan); | 1051 | void dma_release_channel(struct dma_chan *chan); |
1052 | int dma_get_slave_caps(struct dma_chan *chan, struct dma_slave_caps *caps); | ||
1062 | #else | 1053 | #else |
1063 | static inline struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type) | 1054 | static inline struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type) |
1064 | { | 1055 | { |
@@ -1093,6 +1084,11 @@ static inline struct dma_chan *dma_request_slave_channel(struct device *dev, | |||
1093 | static inline void dma_release_channel(struct dma_chan *chan) | 1084 | static inline void dma_release_channel(struct dma_chan *chan) |
1094 | { | 1085 | { |
1095 | } | 1086 | } |
1087 | static inline int dma_get_slave_caps(struct dma_chan *chan, | ||
1088 | struct dma_slave_caps *caps) | ||
1089 | { | ||
1090 | return -ENXIO; | ||
1091 | } | ||
1096 | #endif | 1092 | #endif |
1097 | 1093 | ||
1098 | /* --- DMA device --- */ | 1094 | /* --- DMA device --- */ |
diff --git a/include/linux/dqblk_v1.h b/include/linux/dqblk_v1.h index 3713a7232dd8..c0d4d1e2a45c 100644 --- a/include/linux/dqblk_v1.h +++ b/include/linux/dqblk_v1.h | |||
@@ -5,9 +5,6 @@ | |||
5 | #ifndef _LINUX_DQBLK_V1_H | 5 | #ifndef _LINUX_DQBLK_V1_H |
6 | #define _LINUX_DQBLK_V1_H | 6 | #define _LINUX_DQBLK_V1_H |
7 | 7 | ||
8 | /* Root squash turned on */ | ||
9 | #define V1_DQF_RSQUASH 1 | ||
10 | |||
11 | /* Numbers of blocks needed for updates */ | 8 | /* Numbers of blocks needed for updates */ |
12 | #define V1_INIT_ALLOC 1 | 9 | #define V1_INIT_ALLOC 1 |
13 | #define V1_INIT_REWRITE 1 | 10 | #define V1_INIT_REWRITE 1 |
diff --git a/include/linux/efi.h b/include/linux/efi.h index 0238d612750e..cf7e431cbc73 100644 --- a/include/linux/efi.h +++ b/include/linux/efi.h | |||
@@ -848,7 +848,7 @@ efi_guidcmp (efi_guid_t left, efi_guid_t right) | |||
848 | } | 848 | } |
849 | 849 | ||
850 | static inline char * | 850 | static inline char * |
851 | efi_guid_unparse(efi_guid_t *guid, char *out) | 851 | efi_guid_to_str(efi_guid_t *guid, char *out) |
852 | { | 852 | { |
853 | sprintf(out, "%pUl", guid->b); | 853 | sprintf(out, "%pUl", guid->b); |
854 | return out; | 854 | return out; |
@@ -875,6 +875,8 @@ static inline efi_status_t efi_query_variable_store(u32 attributes, unsigned lon | |||
875 | #endif | 875 | #endif |
876 | extern void __iomem *efi_lookup_mapped_addr(u64 phys_addr); | 876 | extern void __iomem *efi_lookup_mapped_addr(u64 phys_addr); |
877 | extern int efi_config_init(efi_config_table_type_t *arch_tables); | 877 | extern int efi_config_init(efi_config_table_type_t *arch_tables); |
878 | extern int efi_config_parse_tables(void *config_tables, int count, int sz, | ||
879 | efi_config_table_type_t *arch_tables); | ||
878 | extern u64 efi_get_iobase (void); | 880 | extern u64 efi_get_iobase (void); |
879 | extern u32 efi_mem_type (unsigned long phys_addr); | 881 | extern u32 efi_mem_type (unsigned long phys_addr); |
880 | extern u64 efi_mem_attributes (unsigned long phys_addr); | 882 | extern u64 efi_mem_attributes (unsigned long phys_addr); |
diff --git a/include/linux/enclosure.h b/include/linux/enclosure.h index 9a33c5f7e126..7be22da321f3 100644 --- a/include/linux/enclosure.h +++ b/include/linux/enclosure.h | |||
@@ -79,6 +79,12 @@ struct enclosure_component_callbacks { | |||
79 | int (*set_locate)(struct enclosure_device *, | 79 | int (*set_locate)(struct enclosure_device *, |
80 | struct enclosure_component *, | 80 | struct enclosure_component *, |
81 | enum enclosure_component_setting); | 81 | enum enclosure_component_setting); |
82 | void (*get_power_status)(struct enclosure_device *, | ||
83 | struct enclosure_component *); | ||
84 | int (*set_power_status)(struct enclosure_device *, | ||
85 | struct enclosure_component *, | ||
86 | int); | ||
87 | int (*show_id)(struct enclosure_device *, char *buf); | ||
82 | }; | 88 | }; |
83 | 89 | ||
84 | 90 | ||
@@ -91,7 +97,9 @@ struct enclosure_component { | |||
91 | int fault; | 97 | int fault; |
92 | int active; | 98 | int active; |
93 | int locate; | 99 | int locate; |
100 | int slot; | ||
94 | enum enclosure_status status; | 101 | enum enclosure_status status; |
102 | int power_status; | ||
95 | }; | 103 | }; |
96 | 104 | ||
97 | struct enclosure_device { | 105 | struct enclosure_device { |
@@ -120,8 +128,9 @@ enclosure_register(struct device *, const char *, int, | |||
120 | struct enclosure_component_callbacks *); | 128 | struct enclosure_component_callbacks *); |
121 | void enclosure_unregister(struct enclosure_device *); | 129 | void enclosure_unregister(struct enclosure_device *); |
122 | struct enclosure_component * | 130 | struct enclosure_component * |
123 | enclosure_component_register(struct enclosure_device *, unsigned int, | 131 | enclosure_component_alloc(struct enclosure_device *, unsigned int, |
124 | enum enclosure_component_type, const char *); | 132 | enum enclosure_component_type, const char *); |
133 | int enclosure_component_register(struct enclosure_component *); | ||
125 | int enclosure_add_device(struct enclosure_device *enclosure, int component, | 134 | int enclosure_add_device(struct enclosure_device *enclosure, int component, |
126 | struct device *dev); | 135 | struct device *dev); |
127 | int enclosure_remove_device(struct enclosure_device *, struct device *); | 136 | int enclosure_remove_device(struct enclosure_device *, struct device *); |
diff --git a/include/linux/etherdevice.h b/include/linux/etherdevice.h index 41c891d05f04..1d869d185a0d 100644 --- a/include/linux/etherdevice.h +++ b/include/linux/etherdevice.h | |||
@@ -52,6 +52,10 @@ struct net_device *alloc_etherdev_mqs(int sizeof_priv, unsigned int txqs, | |||
52 | #define alloc_etherdev(sizeof_priv) alloc_etherdev_mq(sizeof_priv, 1) | 52 | #define alloc_etherdev(sizeof_priv) alloc_etherdev_mq(sizeof_priv, 1) |
53 | #define alloc_etherdev_mq(sizeof_priv, count) alloc_etherdev_mqs(sizeof_priv, count, count) | 53 | #define alloc_etherdev_mq(sizeof_priv, count) alloc_etherdev_mqs(sizeof_priv, count, count) |
54 | 54 | ||
55 | struct sk_buff **eth_gro_receive(struct sk_buff **head, | ||
56 | struct sk_buff *skb); | ||
57 | int eth_gro_complete(struct sk_buff *skb, int nhoff); | ||
58 | |||
55 | /* Reserved Ethernet Addresses per IEEE 802.1Q */ | 59 | /* Reserved Ethernet Addresses per IEEE 802.1Q */ |
56 | static const u8 eth_reserved_addr_base[ETH_ALEN] __aligned(2) = | 60 | static const u8 eth_reserved_addr_base[ETH_ALEN] __aligned(2) = |
57 | { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x00 }; | 61 | { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x00 }; |
diff --git a/include/linux/exportfs.h b/include/linux/exportfs.h index 41b223a59a63..fa05e04c5531 100644 --- a/include/linux/exportfs.h +++ b/include/linux/exportfs.h | |||
@@ -4,6 +4,7 @@ | |||
4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
5 | 5 | ||
6 | struct dentry; | 6 | struct dentry; |
7 | struct iattr; | ||
7 | struct inode; | 8 | struct inode; |
8 | struct super_block; | 9 | struct super_block; |
9 | struct vfsmount; | 10 | struct vfsmount; |
@@ -180,6 +181,21 @@ struct fid { | |||
180 | * get_name is not (which is possibly inconsistent) | 181 | * get_name is not (which is possibly inconsistent) |
181 | */ | 182 | */ |
182 | 183 | ||
184 | /* types of block ranges for multipage write mappings. */ | ||
185 | #define IOMAP_HOLE 0x01 /* no blocks allocated, need allocation */ | ||
186 | #define IOMAP_DELALLOC 0x02 /* delayed allocation blocks */ | ||
187 | #define IOMAP_MAPPED 0x03 /* blocks allocated @blkno */ | ||
188 | #define IOMAP_UNWRITTEN 0x04 /* blocks allocated @blkno in unwritten state */ | ||
189 | |||
190 | #define IOMAP_NULL_BLOCK -1LL /* blkno is not valid */ | ||
191 | |||
192 | struct iomap { | ||
193 | sector_t blkno; /* first sector of mapping */ | ||
194 | loff_t offset; /* file offset of mapping, bytes */ | ||
195 | u64 length; /* length of mapping, bytes */ | ||
196 | int type; /* type of mapping */ | ||
197 | }; | ||
198 | |||
183 | struct export_operations { | 199 | struct export_operations { |
184 | int (*encode_fh)(struct inode *inode, __u32 *fh, int *max_len, | 200 | int (*encode_fh)(struct inode *inode, __u32 *fh, int *max_len, |
185 | struct inode *parent); | 201 | struct inode *parent); |
@@ -191,6 +207,13 @@ struct export_operations { | |||
191 | struct dentry *child); | 207 | struct dentry *child); |
192 | struct dentry * (*get_parent)(struct dentry *child); | 208 | struct dentry * (*get_parent)(struct dentry *child); |
193 | int (*commit_metadata)(struct inode *inode); | 209 | int (*commit_metadata)(struct inode *inode); |
210 | |||
211 | int (*get_uuid)(struct super_block *sb, u8 *buf, u32 *len, u64 *offset); | ||
212 | int (*map_blocks)(struct inode *inode, loff_t offset, | ||
213 | u64 len, struct iomap *iomap, | ||
214 | bool write, u32 *device_generation); | ||
215 | int (*commit_blocks)(struct inode *inode, struct iomap *iomaps, | ||
216 | int nr_iomaps, struct iattr *iattr); | ||
194 | }; | 217 | }; |
195 | 218 | ||
196 | extern int exportfs_encode_inode_fh(struct inode *inode, struct fid *fid, | 219 | extern int exportfs_encode_inode_fh(struct inode *inode, struct fid *fid, |
diff --git a/include/linux/f2fs_fs.h b/include/linux/f2fs_fs.h index 87f14e90e984..a23556c32703 100644 --- a/include/linux/f2fs_fs.h +++ b/include/linux/f2fs_fs.h | |||
@@ -19,12 +19,16 @@ | |||
19 | #define F2FS_MAX_LOG_SECTOR_SIZE 12 /* 12 bits for 4096 bytes */ | 19 | #define F2FS_MAX_LOG_SECTOR_SIZE 12 /* 12 bits for 4096 bytes */ |
20 | #define F2FS_LOG_SECTORS_PER_BLOCK 3 /* log number for sector/blk */ | 20 | #define F2FS_LOG_SECTORS_PER_BLOCK 3 /* log number for sector/blk */ |
21 | #define F2FS_BLKSIZE 4096 /* support only 4KB block */ | 21 | #define F2FS_BLKSIZE 4096 /* support only 4KB block */ |
22 | #define F2FS_BLKSIZE_BITS 12 /* bits for F2FS_BLKSIZE */ | ||
22 | #define F2FS_MAX_EXTENSION 64 /* # of extension entries */ | 23 | #define F2FS_MAX_EXTENSION 64 /* # of extension entries */ |
23 | #define F2FS_BLK_ALIGN(x) (((x) + F2FS_BLKSIZE - 1) / F2FS_BLKSIZE) | 24 | #define F2FS_BLK_ALIGN(x) (((x) + F2FS_BLKSIZE - 1) / F2FS_BLKSIZE) |
24 | 25 | ||
25 | #define NULL_ADDR ((block_t)0) /* used as block_t addresses */ | 26 | #define NULL_ADDR ((block_t)0) /* used as block_t addresses */ |
26 | #define NEW_ADDR ((block_t)-1) /* used as block_t addresses */ | 27 | #define NEW_ADDR ((block_t)-1) /* used as block_t addresses */ |
27 | 28 | ||
29 | #define F2FS_BYTES_TO_BLK(bytes) ((bytes) >> F2FS_BLKSIZE_BITS) | ||
30 | #define F2FS_BLK_TO_BYTES(blk) ((blk) << F2FS_BLKSIZE_BITS) | ||
31 | |||
28 | /* 0, 1(node nid), 2(meta nid) are reserved node id */ | 32 | /* 0, 1(node nid), 2(meta nid) are reserved node id */ |
29 | #define F2FS_RESERVED_NODE_NUM 3 | 33 | #define F2FS_RESERVED_NODE_NUM 3 |
30 | 34 | ||
@@ -87,6 +91,7 @@ struct f2fs_super_block { | |||
87 | /* | 91 | /* |
88 | * For checkpoint | 92 | * For checkpoint |
89 | */ | 93 | */ |
94 | #define CP_FASTBOOT_FLAG 0x00000020 | ||
90 | #define CP_FSCK_FLAG 0x00000010 | 95 | #define CP_FSCK_FLAG 0x00000010 |
91 | #define CP_ERROR_FLAG 0x00000008 | 96 | #define CP_ERROR_FLAG 0x00000008 |
92 | #define CP_COMPACT_SUM_FLAG 0x00000004 | 97 | #define CP_COMPACT_SUM_FLAG 0x00000004 |
@@ -224,6 +229,8 @@ enum { | |||
224 | OFFSET_BIT_SHIFT | 229 | OFFSET_BIT_SHIFT |
225 | }; | 230 | }; |
226 | 231 | ||
232 | #define OFFSET_BIT_MASK (0x07) /* (0x01 << OFFSET_BIT_SHIFT) - 1 */ | ||
233 | |||
227 | struct node_footer { | 234 | struct node_footer { |
228 | __le32 nid; /* node id */ | 235 | __le32 nid; /* node id */ |
229 | __le32 ino; /* inode nunmber */ | 236 | __le32 ino; /* inode nunmber */ |
diff --git a/include/linux/fb.h b/include/linux/fb.h index 09bb7a18d287..043f3283b71c 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h | |||
@@ -726,7 +726,9 @@ extern int fb_videomode_from_videomode(const struct videomode *vm, | |||
726 | struct fb_videomode *fbmode); | 726 | struct fb_videomode *fbmode); |
727 | 727 | ||
728 | /* drivers/video/modedb.c */ | 728 | /* drivers/video/modedb.c */ |
729 | #define VESA_MODEDB_SIZE 34 | 729 | #define VESA_MODEDB_SIZE 43 |
730 | #define DMT_SIZE 0x50 | ||
731 | |||
730 | extern void fb_var_to_videomode(struct fb_videomode *mode, | 732 | extern void fb_var_to_videomode(struct fb_videomode *mode, |
731 | const struct fb_var_screeninfo *var); | 733 | const struct fb_var_screeninfo *var); |
732 | extern void fb_videomode_to_var(struct fb_var_screeninfo *var, | 734 | extern void fb_videomode_to_var(struct fb_var_screeninfo *var, |
@@ -777,9 +779,17 @@ struct fb_videomode { | |||
777 | u32 flag; | 779 | u32 flag; |
778 | }; | 780 | }; |
779 | 781 | ||
782 | struct dmt_videomode { | ||
783 | u32 dmt_id; | ||
784 | u32 std_2byte_code; | ||
785 | u32 cvt_3byte_code; | ||
786 | const struct fb_videomode *mode; | ||
787 | }; | ||
788 | |||
780 | extern const char *fb_mode_option; | 789 | extern const char *fb_mode_option; |
781 | extern const struct fb_videomode vesa_modes[]; | 790 | extern const struct fb_videomode vesa_modes[]; |
782 | extern const struct fb_videomode cea_modes[64]; | 791 | extern const struct fb_videomode cea_modes[64]; |
792 | extern const struct dmt_videomode dmt_modes[]; | ||
783 | 793 | ||
784 | struct fb_modelist { | 794 | struct fb_modelist { |
785 | struct list_head list; | 795 | struct list_head list; |
diff --git a/include/linux/fec.h b/include/linux/fec.h index bcff455d1d53..1454a503622d 100644 --- a/include/linux/fec.h +++ b/include/linux/fec.h | |||
@@ -19,6 +19,7 @@ | |||
19 | struct fec_platform_data { | 19 | struct fec_platform_data { |
20 | phy_interface_t phy; | 20 | phy_interface_t phy; |
21 | unsigned char mac[ETH_ALEN]; | 21 | unsigned char mac[ETH_ALEN]; |
22 | void (*sleep_mode_enable)(int enabled); | ||
22 | }; | 23 | }; |
23 | 24 | ||
24 | #endif | 25 | #endif |
diff --git a/include/linux/fs.h b/include/linux/fs.h index 42efe13077b6..b4d71b5e1ff2 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -34,6 +34,7 @@ | |||
34 | #include <asm/byteorder.h> | 34 | #include <asm/byteorder.h> |
35 | #include <uapi/linux/fs.h> | 35 | #include <uapi/linux/fs.h> |
36 | 36 | ||
37 | struct backing_dev_info; | ||
37 | struct export_operations; | 38 | struct export_operations; |
38 | struct hd_geometry; | 39 | struct hd_geometry; |
39 | struct iovec; | 40 | struct iovec; |
@@ -50,6 +51,7 @@ struct swap_info_struct; | |||
50 | struct seq_file; | 51 | struct seq_file; |
51 | struct workqueue_struct; | 52 | struct workqueue_struct; |
52 | struct iov_iter; | 53 | struct iov_iter; |
54 | struct vm_fault; | ||
53 | 55 | ||
54 | extern void __init inode_init(void); | 56 | extern void __init inode_init(void); |
55 | extern void __init inode_init_early(void); | 57 | extern void __init inode_init_early(void); |
@@ -360,8 +362,6 @@ struct address_space_operations { | |||
360 | int (*releasepage) (struct page *, gfp_t); | 362 | int (*releasepage) (struct page *, gfp_t); |
361 | void (*freepage)(struct page *); | 363 | void (*freepage)(struct page *); |
362 | ssize_t (*direct_IO)(int, struct kiocb *, struct iov_iter *iter, loff_t offset); | 364 | ssize_t (*direct_IO)(int, struct kiocb *, struct iov_iter *iter, loff_t offset); |
363 | int (*get_xip_mem)(struct address_space *, pgoff_t, int, | ||
364 | void **, unsigned long *); | ||
365 | /* | 365 | /* |
366 | * migrate the contents of a page to the specified target. If | 366 | * migrate the contents of a page to the specified target. If |
367 | * migrate_mode is MIGRATE_ASYNC, it must not block. | 367 | * migrate_mode is MIGRATE_ASYNC, it must not block. |
@@ -394,14 +394,12 @@ int pagecache_write_end(struct file *, struct address_space *mapping, | |||
394 | loff_t pos, unsigned len, unsigned copied, | 394 | loff_t pos, unsigned len, unsigned copied, |
395 | struct page *page, void *fsdata); | 395 | struct page *page, void *fsdata); |
396 | 396 | ||
397 | struct backing_dev_info; | ||
398 | struct address_space { | 397 | struct address_space { |
399 | struct inode *host; /* owner: inode, block_device */ | 398 | struct inode *host; /* owner: inode, block_device */ |
400 | struct radix_tree_root page_tree; /* radix tree of all pages */ | 399 | struct radix_tree_root page_tree; /* radix tree of all pages */ |
401 | spinlock_t tree_lock; /* and lock protecting it */ | 400 | spinlock_t tree_lock; /* and lock protecting it */ |
402 | atomic_t i_mmap_writable;/* count VM_SHARED mappings */ | 401 | atomic_t i_mmap_writable;/* count VM_SHARED mappings */ |
403 | struct rb_root i_mmap; /* tree of private and shared mappings */ | 402 | struct rb_root i_mmap; /* tree of private and shared mappings */ |
404 | struct list_head i_mmap_nonlinear;/*list VM_NONLINEAR mappings */ | ||
405 | struct rw_semaphore i_mmap_rwsem; /* protect tree, count, list */ | 403 | struct rw_semaphore i_mmap_rwsem; /* protect tree, count, list */ |
406 | /* Protected by tree_lock together with the radix tree */ | 404 | /* Protected by tree_lock together with the radix tree */ |
407 | unsigned long nrpages; /* number of total pages */ | 405 | unsigned long nrpages; /* number of total pages */ |
@@ -409,7 +407,6 @@ struct address_space { | |||
409 | pgoff_t writeback_index;/* writeback starts here */ | 407 | pgoff_t writeback_index;/* writeback starts here */ |
410 | const struct address_space_operations *a_ops; /* methods */ | 408 | const struct address_space_operations *a_ops; /* methods */ |
411 | unsigned long flags; /* error bits/gfp mask */ | 409 | unsigned long flags; /* error bits/gfp mask */ |
412 | struct backing_dev_info *backing_dev_info; /* device readahead, etc */ | ||
413 | spinlock_t private_lock; /* for use by the address_space */ | 410 | spinlock_t private_lock; /* for use by the address_space */ |
414 | struct list_head private_list; /* ditto */ | 411 | struct list_head private_list; /* ditto */ |
415 | void *private_data; /* ditto */ | 412 | void *private_data; /* ditto */ |
@@ -493,8 +490,7 @@ static inline void i_mmap_unlock_read(struct address_space *mapping) | |||
493 | */ | 490 | */ |
494 | static inline int mapping_mapped(struct address_space *mapping) | 491 | static inline int mapping_mapped(struct address_space *mapping) |
495 | { | 492 | { |
496 | return !RB_EMPTY_ROOT(&mapping->i_mmap) || | 493 | return !RB_EMPTY_ROOT(&mapping->i_mmap); |
497 | !list_empty(&mapping->i_mmap_nonlinear); | ||
498 | } | 494 | } |
499 | 495 | ||
500 | /* | 496 | /* |
@@ -625,7 +621,7 @@ struct inode { | |||
625 | atomic_t i_readcount; /* struct files open RO */ | 621 | atomic_t i_readcount; /* struct files open RO */ |
626 | #endif | 622 | #endif |
627 | const struct file_operations *i_fop; /* former ->i_op->default_file_ops */ | 623 | const struct file_operations *i_fop; /* former ->i_op->default_file_ops */ |
628 | struct file_lock *i_flock; | 624 | struct file_lock_context *i_flctx; |
629 | struct address_space i_data; | 625 | struct address_space i_data; |
630 | struct list_head i_devices; | 626 | struct list_head i_devices; |
631 | union { | 627 | union { |
@@ -875,6 +871,7 @@ static inline struct file *get_file(struct file *f) | |||
875 | #define FL_DOWNGRADE_PENDING 256 /* Lease is being downgraded */ | 871 | #define FL_DOWNGRADE_PENDING 256 /* Lease is being downgraded */ |
876 | #define FL_UNLOCK_PENDING 512 /* Lease is being broken */ | 872 | #define FL_UNLOCK_PENDING 512 /* Lease is being broken */ |
877 | #define FL_OFDLCK 1024 /* lock is "owned" by struct file */ | 873 | #define FL_OFDLCK 1024 /* lock is "owned" by struct file */ |
874 | #define FL_LAYOUT 2048 /* outstanding pNFS layout */ | ||
878 | 875 | ||
879 | /* | 876 | /* |
880 | * Special return value from posix_lock_file() and vfs_lock_file() for | 877 | * Special return value from posix_lock_file() and vfs_lock_file() for |
@@ -885,6 +882,8 @@ static inline struct file *get_file(struct file *f) | |||
885 | /* legacy typedef, should eventually be removed */ | 882 | /* legacy typedef, should eventually be removed */ |
886 | typedef void *fl_owner_t; | 883 | typedef void *fl_owner_t; |
887 | 884 | ||
885 | struct file_lock; | ||
886 | |||
888 | struct file_lock_operations { | 887 | struct file_lock_operations { |
889 | void (*fl_copy_lock)(struct file_lock *, struct file_lock *); | 888 | void (*fl_copy_lock)(struct file_lock *, struct file_lock *); |
890 | void (*fl_release_private)(struct file_lock *); | 889 | void (*fl_release_private)(struct file_lock *); |
@@ -898,7 +897,7 @@ struct lock_manager_operations { | |||
898 | void (*lm_notify)(struct file_lock *); /* unblock callback */ | 897 | void (*lm_notify)(struct file_lock *); /* unblock callback */ |
899 | int (*lm_grant)(struct file_lock *, int); | 898 | int (*lm_grant)(struct file_lock *, int); |
900 | bool (*lm_break)(struct file_lock *); | 899 | bool (*lm_break)(struct file_lock *); |
901 | int (*lm_change)(struct file_lock **, int, struct list_head *); | 900 | int (*lm_change)(struct file_lock *, int, struct list_head *); |
902 | void (*lm_setup)(struct file_lock *, void **); | 901 | void (*lm_setup)(struct file_lock *, void **); |
903 | }; | 902 | }; |
904 | 903 | ||
@@ -923,17 +922,17 @@ int locks_in_grace(struct net *); | |||
923 | * FIXME: should we create a separate "struct lock_request" to help distinguish | 922 | * FIXME: should we create a separate "struct lock_request" to help distinguish |
924 | * these two uses? | 923 | * these two uses? |
925 | * | 924 | * |
926 | * The i_flock list is ordered by: | 925 | * The varous i_flctx lists are ordered by: |
927 | * | 926 | * |
928 | * 1) lock type -- FL_LEASEs first, then FL_FLOCK, and finally FL_POSIX | 927 | * 1) lock owner |
929 | * 2) lock owner | 928 | * 2) lock range start |
930 | * 3) lock range start | 929 | * 3) lock range end |
931 | * 4) lock range end | ||
932 | * | 930 | * |
933 | * Obviously, the last two criteria only matter for POSIX locks. | 931 | * Obviously, the last two criteria only matter for POSIX locks. |
934 | */ | 932 | */ |
935 | struct file_lock { | 933 | struct file_lock { |
936 | struct file_lock *fl_next; /* singly linked list for this inode */ | 934 | struct file_lock *fl_next; /* singly linked list for this inode */ |
935 | struct list_head fl_list; /* link into file_lock_context */ | ||
937 | struct hlist_node fl_link; /* node in global lists */ | 936 | struct hlist_node fl_link; /* node in global lists */ |
938 | struct list_head fl_block; /* circular list of blocked processes */ | 937 | struct list_head fl_block; /* circular list of blocked processes */ |
939 | fl_owner_t fl_owner; | 938 | fl_owner_t fl_owner; |
@@ -964,6 +963,13 @@ struct file_lock { | |||
964 | } fl_u; | 963 | } fl_u; |
965 | }; | 964 | }; |
966 | 965 | ||
966 | struct file_lock_context { | ||
967 | spinlock_t flc_lock; | ||
968 | struct list_head flc_flock; | ||
969 | struct list_head flc_posix; | ||
970 | struct list_head flc_lease; | ||
971 | }; | ||
972 | |||
967 | /* The following constant reflects the upper bound of the file/locking space */ | 973 | /* The following constant reflects the upper bound of the file/locking space */ |
968 | #ifndef OFFSET_MAX | 974 | #ifndef OFFSET_MAX |
969 | #define INT_LIMIT(x) (~((x)1 << (sizeof(x)*8 - 1))) | 975 | #define INT_LIMIT(x) (~((x)1 << (sizeof(x)*8 - 1))) |
@@ -990,6 +996,7 @@ extern int fcntl_setlease(unsigned int fd, struct file *filp, long arg); | |||
990 | extern int fcntl_getlease(struct file *filp); | 996 | extern int fcntl_getlease(struct file *filp); |
991 | 997 | ||
992 | /* fs/locks.c */ | 998 | /* fs/locks.c */ |
999 | void locks_free_lock_context(struct file_lock_context *ctx); | ||
993 | void locks_free_lock(struct file_lock *fl); | 1000 | void locks_free_lock(struct file_lock *fl); |
994 | extern void locks_init_lock(struct file_lock *); | 1001 | extern void locks_init_lock(struct file_lock *); |
995 | extern struct file_lock * locks_alloc_lock(void); | 1002 | extern struct file_lock * locks_alloc_lock(void); |
@@ -1010,7 +1017,7 @@ extern int __break_lease(struct inode *inode, unsigned int flags, unsigned int t | |||
1010 | extern void lease_get_mtime(struct inode *, struct timespec *time); | 1017 | extern void lease_get_mtime(struct inode *, struct timespec *time); |
1011 | extern int generic_setlease(struct file *, long, struct file_lock **, void **priv); | 1018 | extern int generic_setlease(struct file *, long, struct file_lock **, void **priv); |
1012 | extern int vfs_setlease(struct file *, long, struct file_lock **, void **); | 1019 | extern int vfs_setlease(struct file *, long, struct file_lock **, void **); |
1013 | extern int lease_modify(struct file_lock **, int, struct list_head *); | 1020 | extern int lease_modify(struct file_lock *, int, struct list_head *); |
1014 | #else /* !CONFIG_FILE_LOCKING */ | 1021 | #else /* !CONFIG_FILE_LOCKING */ |
1015 | static inline int fcntl_getlk(struct file *file, unsigned int cmd, | 1022 | static inline int fcntl_getlk(struct file *file, unsigned int cmd, |
1016 | struct flock __user *user) | 1023 | struct flock __user *user) |
@@ -1047,6 +1054,11 @@ static inline int fcntl_getlease(struct file *filp) | |||
1047 | return F_UNLCK; | 1054 | return F_UNLCK; |
1048 | } | 1055 | } |
1049 | 1056 | ||
1057 | static inline void | ||
1058 | locks_free_lock_context(struct file_lock_context *ctx) | ||
1059 | { | ||
1060 | } | ||
1061 | |||
1050 | static inline void locks_init_lock(struct file_lock *fl) | 1062 | static inline void locks_init_lock(struct file_lock *fl) |
1051 | { | 1063 | { |
1052 | return; | 1064 | return; |
@@ -1137,7 +1149,7 @@ static inline int vfs_setlease(struct file *filp, long arg, | |||
1137 | return -EINVAL; | 1149 | return -EINVAL; |
1138 | } | 1150 | } |
1139 | 1151 | ||
1140 | static inline int lease_modify(struct file_lock **before, int arg, | 1152 | static inline int lease_modify(struct file_lock *fl, int arg, |
1141 | struct list_head *dispose) | 1153 | struct list_head *dispose) |
1142 | { | 1154 | { |
1143 | return -EINVAL; | 1155 | return -EINVAL; |
@@ -1184,8 +1196,6 @@ struct mm_struct; | |||
1184 | #define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */ | 1196 | #define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */ |
1185 | #define UMOUNT_UNUSED 0x80000000 /* Flag guaranteed to be unused */ | 1197 | #define UMOUNT_UNUSED 0x80000000 /* Flag guaranteed to be unused */ |
1186 | 1198 | ||
1187 | extern struct list_head super_blocks; | ||
1188 | extern spinlock_t sb_lock; | ||
1189 | 1199 | ||
1190 | /* Possible states of 'frozen' field */ | 1200 | /* Possible states of 'frozen' field */ |
1191 | enum { | 1201 | enum { |
@@ -1502,6 +1512,26 @@ struct block_device_operations; | |||
1502 | #define HAVE_COMPAT_IOCTL 1 | 1512 | #define HAVE_COMPAT_IOCTL 1 |
1503 | #define HAVE_UNLOCKED_IOCTL 1 | 1513 | #define HAVE_UNLOCKED_IOCTL 1 |
1504 | 1514 | ||
1515 | /* | ||
1516 | * These flags let !MMU mmap() govern direct device mapping vs immediate | ||
1517 | * copying more easily for MAP_PRIVATE, especially for ROM filesystems. | ||
1518 | * | ||
1519 | * NOMMU_MAP_COPY: Copy can be mapped (MAP_PRIVATE) | ||
1520 | * NOMMU_MAP_DIRECT: Can be mapped directly (MAP_SHARED) | ||
1521 | * NOMMU_MAP_READ: Can be mapped for reading | ||
1522 | * NOMMU_MAP_WRITE: Can be mapped for writing | ||
1523 | * NOMMU_MAP_EXEC: Can be mapped for execution | ||
1524 | */ | ||
1525 | #define NOMMU_MAP_COPY 0x00000001 | ||
1526 | #define NOMMU_MAP_DIRECT 0x00000008 | ||
1527 | #define NOMMU_MAP_READ VM_MAYREAD | ||
1528 | #define NOMMU_MAP_WRITE VM_MAYWRITE | ||
1529 | #define NOMMU_MAP_EXEC VM_MAYEXEC | ||
1530 | |||
1531 | #define NOMMU_VMFLAGS \ | ||
1532 | (NOMMU_MAP_READ | NOMMU_MAP_WRITE | NOMMU_MAP_EXEC) | ||
1533 | |||
1534 | |||
1505 | struct iov_iter; | 1535 | struct iov_iter; |
1506 | 1536 | ||
1507 | struct file_operations { | 1537 | struct file_operations { |
@@ -1536,6 +1566,9 @@ struct file_operations { | |||
1536 | long (*fallocate)(struct file *file, int mode, loff_t offset, | 1566 | long (*fallocate)(struct file *file, int mode, loff_t offset, |
1537 | loff_t len); | 1567 | loff_t len); |
1538 | void (*show_fdinfo)(struct seq_file *m, struct file *f); | 1568 | void (*show_fdinfo)(struct seq_file *m, struct file *f); |
1569 | #ifndef CONFIG_MMU | ||
1570 | unsigned (*mmap_capabilities)(struct file *); | ||
1571 | #endif | ||
1539 | }; | 1572 | }; |
1540 | 1573 | ||
1541 | struct inode_operations { | 1574 | struct inode_operations { |
@@ -1618,8 +1651,10 @@ struct super_operations { | |||
1618 | struct dquot **(*get_dquots)(struct inode *); | 1651 | struct dquot **(*get_dquots)(struct inode *); |
1619 | #endif | 1652 | #endif |
1620 | int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t); | 1653 | int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t); |
1621 | long (*nr_cached_objects)(struct super_block *, int); | 1654 | long (*nr_cached_objects)(struct super_block *, |
1622 | long (*free_cached_objects)(struct super_block *, long, int); | 1655 | struct shrink_control *); |
1656 | long (*free_cached_objects)(struct super_block *, | ||
1657 | struct shrink_control *); | ||
1623 | }; | 1658 | }; |
1624 | 1659 | ||
1625 | /* | 1660 | /* |
@@ -1638,6 +1673,11 @@ struct super_operations { | |||
1638 | #define S_IMA 1024 /* Inode has an associated IMA struct */ | 1673 | #define S_IMA 1024 /* Inode has an associated IMA struct */ |
1639 | #define S_AUTOMOUNT 2048 /* Automount/referral quasi-directory */ | 1674 | #define S_AUTOMOUNT 2048 /* Automount/referral quasi-directory */ |
1640 | #define S_NOSEC 4096 /* no suid or xattr security attributes */ | 1675 | #define S_NOSEC 4096 /* no suid or xattr security attributes */ |
1676 | #ifdef CONFIG_FS_DAX | ||
1677 | #define S_DAX 8192 /* Direct Access, avoiding the page cache */ | ||
1678 | #else | ||
1679 | #define S_DAX 0 /* Make all the DAX code disappear */ | ||
1680 | #endif | ||
1641 | 1681 | ||
1642 | /* | 1682 | /* |
1643 | * Note that nosuid etc flags are inode-specific: setting some file-system | 1683 | * Note that nosuid etc flags are inode-specific: setting some file-system |
@@ -1675,6 +1715,7 @@ struct super_operations { | |||
1675 | #define IS_IMA(inode) ((inode)->i_flags & S_IMA) | 1715 | #define IS_IMA(inode) ((inode)->i_flags & S_IMA) |
1676 | #define IS_AUTOMOUNT(inode) ((inode)->i_flags & S_AUTOMOUNT) | 1716 | #define IS_AUTOMOUNT(inode) ((inode)->i_flags & S_AUTOMOUNT) |
1677 | #define IS_NOSEC(inode) ((inode)->i_flags & S_NOSEC) | 1717 | #define IS_NOSEC(inode) ((inode)->i_flags & S_NOSEC) |
1718 | #define IS_DAX(inode) ((inode)->i_flags & S_DAX) | ||
1678 | 1719 | ||
1679 | #define IS_WHITEOUT(inode) (S_ISCHR(inode->i_mode) && \ | 1720 | #define IS_WHITEOUT(inode) (S_ISCHR(inode->i_mode) && \ |
1680 | (inode)->i_rdev == WHITEOUT_DEV) | 1721 | (inode)->i_rdev == WHITEOUT_DEV) |
@@ -1746,8 +1787,12 @@ struct super_operations { | |||
1746 | #define __I_DIO_WAKEUP 9 | 1787 | #define __I_DIO_WAKEUP 9 |
1747 | #define I_DIO_WAKEUP (1 << I_DIO_WAKEUP) | 1788 | #define I_DIO_WAKEUP (1 << I_DIO_WAKEUP) |
1748 | #define I_LINKABLE (1 << 10) | 1789 | #define I_LINKABLE (1 << 10) |
1790 | #define I_DIRTY_TIME (1 << 11) | ||
1791 | #define __I_DIRTY_TIME_EXPIRED 12 | ||
1792 | #define I_DIRTY_TIME_EXPIRED (1 << __I_DIRTY_TIME_EXPIRED) | ||
1749 | 1793 | ||
1750 | #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES) | 1794 | #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES) |
1795 | #define I_DIRTY_ALL (I_DIRTY | I_DIRTY_TIME) | ||
1751 | 1796 | ||
1752 | extern void __mark_inode_dirty(struct inode *, int); | 1797 | extern void __mark_inode_dirty(struct inode *, int); |
1753 | static inline void mark_inode_dirty(struct inode *inode) | 1798 | static inline void mark_inode_dirty(struct inode *inode) |
@@ -1910,6 +1955,7 @@ extern int current_umask(void); | |||
1910 | 1955 | ||
1911 | extern void ihold(struct inode * inode); | 1956 | extern void ihold(struct inode * inode); |
1912 | extern void iput(struct inode *); | 1957 | extern void iput(struct inode *); |
1958 | extern int generic_update_time(struct inode *, struct timespec *, int); | ||
1913 | 1959 | ||
1914 | static inline struct inode *file_inode(const struct file *f) | 1960 | static inline struct inode *file_inode(const struct file *f) |
1915 | { | 1961 | { |
@@ -1959,7 +2005,7 @@ static inline int locks_verify_truncate(struct inode *inode, | |||
1959 | struct file *filp, | 2005 | struct file *filp, |
1960 | loff_t size) | 2006 | loff_t size) |
1961 | { | 2007 | { |
1962 | if (inode->i_flock && mandatory_lock(inode)) | 2008 | if (inode->i_flctx && mandatory_lock(inode)) |
1963 | return locks_mandatory_area( | 2009 | return locks_mandatory_area( |
1964 | FLOCK_VERIFY_WRITE, inode, filp, | 2010 | FLOCK_VERIFY_WRITE, inode, filp, |
1965 | size < inode->i_size ? size : inode->i_size, | 2011 | size < inode->i_size ? size : inode->i_size, |
@@ -1973,11 +2019,12 @@ static inline int break_lease(struct inode *inode, unsigned int mode) | |||
1973 | { | 2019 | { |
1974 | /* | 2020 | /* |
1975 | * Since this check is lockless, we must ensure that any refcounts | 2021 | * Since this check is lockless, we must ensure that any refcounts |
1976 | * taken are done before checking inode->i_flock. Otherwise, we could | 2022 | * taken are done before checking i_flctx->flc_lease. Otherwise, we |
1977 | * end up racing with tasks trying to set a new lease on this file. | 2023 | * could end up racing with tasks trying to set a new lease on this |
2024 | * file. | ||
1978 | */ | 2025 | */ |
1979 | smp_mb(); | 2026 | smp_mb(); |
1980 | if (inode->i_flock) | 2027 | if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) |
1981 | return __break_lease(inode, mode, FL_LEASE); | 2028 | return __break_lease(inode, mode, FL_LEASE); |
1982 | return 0; | 2029 | return 0; |
1983 | } | 2030 | } |
@@ -1986,11 +2033,12 @@ static inline int break_deleg(struct inode *inode, unsigned int mode) | |||
1986 | { | 2033 | { |
1987 | /* | 2034 | /* |
1988 | * Since this check is lockless, we must ensure that any refcounts | 2035 | * Since this check is lockless, we must ensure that any refcounts |
1989 | * taken are done before checking inode->i_flock. Otherwise, we could | 2036 | * taken are done before checking i_flctx->flc_lease. Otherwise, we |
1990 | * end up racing with tasks trying to set a new lease on this file. | 2037 | * could end up racing with tasks trying to set a new lease on this |
2038 | * file. | ||
1991 | */ | 2039 | */ |
1992 | smp_mb(); | 2040 | smp_mb(); |
1993 | if (inode->i_flock) | 2041 | if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) |
1994 | return __break_lease(inode, mode, FL_DELEG); | 2042 | return __break_lease(inode, mode, FL_DELEG); |
1995 | return 0; | 2043 | return 0; |
1996 | } | 2044 | } |
@@ -2017,6 +2065,16 @@ static inline int break_deleg_wait(struct inode **delegated_inode) | |||
2017 | return ret; | 2065 | return ret; |
2018 | } | 2066 | } |
2019 | 2067 | ||
2068 | static inline int break_layout(struct inode *inode, bool wait) | ||
2069 | { | ||
2070 | smp_mb(); | ||
2071 | if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) | ||
2072 | return __break_lease(inode, | ||
2073 | wait ? O_WRONLY : O_WRONLY | O_NONBLOCK, | ||
2074 | FL_LAYOUT); | ||
2075 | return 0; | ||
2076 | } | ||
2077 | |||
2020 | #else /* !CONFIG_FILE_LOCKING */ | 2078 | #else /* !CONFIG_FILE_LOCKING */ |
2021 | static inline int locks_mandatory_locked(struct file *file) | 2079 | static inline int locks_mandatory_locked(struct file *file) |
2022 | { | 2080 | { |
@@ -2072,6 +2130,11 @@ static inline int break_deleg_wait(struct inode **delegated_inode) | |||
2072 | return 0; | 2130 | return 0; |
2073 | } | 2131 | } |
2074 | 2132 | ||
2133 | static inline int break_layout(struct inode *inode, bool wait) | ||
2134 | { | ||
2135 | return 0; | ||
2136 | } | ||
2137 | |||
2075 | #endif /* CONFIG_FILE_LOCKING */ | 2138 | #endif /* CONFIG_FILE_LOCKING */ |
2076 | 2139 | ||
2077 | /* fs/open.c */ | 2140 | /* fs/open.c */ |
@@ -2080,6 +2143,7 @@ struct filename { | |||
2080 | const char *name; /* pointer to actual string */ | 2143 | const char *name; /* pointer to actual string */ |
2081 | const __user char *uptr; /* original userland pointer */ | 2144 | const __user char *uptr; /* original userland pointer */ |
2082 | struct audit_names *aname; | 2145 | struct audit_names *aname; |
2146 | int refcnt; | ||
2083 | bool separate; /* should "name" be freed? */ | 2147 | bool separate; /* should "name" be freed? */ |
2084 | }; | 2148 | }; |
2085 | 2149 | ||
@@ -2101,6 +2165,7 @@ extern int filp_close(struct file *, fl_owner_t id); | |||
2101 | extern struct filename *getname_flags(const char __user *, int, int *); | 2165 | extern struct filename *getname_flags(const char __user *, int, int *); |
2102 | extern struct filename *getname(const char __user *); | 2166 | extern struct filename *getname(const char __user *); |
2103 | extern struct filename *getname_kernel(const char *); | 2167 | extern struct filename *getname_kernel(const char *); |
2168 | extern void putname(struct filename *name); | ||
2104 | 2169 | ||
2105 | enum { | 2170 | enum { |
2106 | FILE_CREATED = 1, | 2171 | FILE_CREATED = 1, |
@@ -2121,15 +2186,8 @@ extern void __init vfs_caches_init(unsigned long); | |||
2121 | 2186 | ||
2122 | extern struct kmem_cache *names_cachep; | 2187 | extern struct kmem_cache *names_cachep; |
2123 | 2188 | ||
2124 | extern void final_putname(struct filename *name); | ||
2125 | |||
2126 | #define __getname() kmem_cache_alloc(names_cachep, GFP_KERNEL) | 2189 | #define __getname() kmem_cache_alloc(names_cachep, GFP_KERNEL) |
2127 | #define __putname(name) kmem_cache_free(names_cachep, (void *)(name)) | 2190 | #define __putname(name) kmem_cache_free(names_cachep, (void *)(name)) |
2128 | #ifndef CONFIG_AUDITSYSCALL | ||
2129 | #define putname(name) final_putname(name) | ||
2130 | #else | ||
2131 | extern void putname(struct filename *name); | ||
2132 | #endif | ||
2133 | 2191 | ||
2134 | #ifdef CONFIG_BLOCK | 2192 | #ifdef CONFIG_BLOCK |
2135 | extern int register_blkdev(unsigned int, const char *); | 2193 | extern int register_blkdev(unsigned int, const char *); |
@@ -2436,6 +2494,11 @@ extern struct inode *ilookup(struct super_block *sb, unsigned long ino); | |||
2436 | 2494 | ||
2437 | extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *); | 2495 | extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *); |
2438 | extern struct inode * iget_locked(struct super_block *, unsigned long); | 2496 | extern struct inode * iget_locked(struct super_block *, unsigned long); |
2497 | extern struct inode *find_inode_nowait(struct super_block *, | ||
2498 | unsigned long, | ||
2499 | int (*match)(struct inode *, | ||
2500 | unsigned long, void *), | ||
2501 | void *data); | ||
2439 | extern int insert_inode_locked4(struct inode *, unsigned long, int (*test)(struct inode *, void *), void *); | 2502 | extern int insert_inode_locked4(struct inode *, unsigned long, int (*test)(struct inode *, void *), void *); |
2440 | extern int insert_inode_locked(struct inode *); | 2503 | extern int insert_inode_locked(struct inode *); |
2441 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 2504 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
@@ -2481,8 +2544,6 @@ extern int sb_min_blocksize(struct super_block *, int); | |||
2481 | 2544 | ||
2482 | extern int generic_file_mmap(struct file *, struct vm_area_struct *); | 2545 | extern int generic_file_mmap(struct file *, struct vm_area_struct *); |
2483 | extern int generic_file_readonly_mmap(struct file *, struct vm_area_struct *); | 2546 | extern int generic_file_readonly_mmap(struct file *, struct vm_area_struct *); |
2484 | extern int generic_file_remap_pages(struct vm_area_struct *, unsigned long addr, | ||
2485 | unsigned long size, pgoff_t pgoff); | ||
2486 | int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk); | 2547 | int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk); |
2487 | extern ssize_t generic_file_read_iter(struct kiocb *, struct iov_iter *); | 2548 | extern ssize_t generic_file_read_iter(struct kiocb *, struct iov_iter *); |
2488 | extern ssize_t __generic_file_write_iter(struct kiocb *, struct iov_iter *); | 2549 | extern ssize_t __generic_file_write_iter(struct kiocb *, struct iov_iter *); |
@@ -2494,6 +2555,9 @@ extern ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t l | |||
2494 | extern ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos); | 2555 | extern ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos); |
2495 | extern ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos); | 2556 | extern ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos); |
2496 | 2557 | ||
2558 | ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos); | ||
2559 | ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos); | ||
2560 | |||
2497 | /* fs/block_dev.c */ | 2561 | /* fs/block_dev.c */ |
2498 | extern ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to); | 2562 | extern ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to); |
2499 | extern ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from); | 2563 | extern ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from); |
@@ -2527,19 +2591,13 @@ extern loff_t fixed_size_llseek(struct file *file, loff_t offset, | |||
2527 | extern int generic_file_open(struct inode * inode, struct file * filp); | 2591 | extern int generic_file_open(struct inode * inode, struct file * filp); |
2528 | extern int nonseekable_open(struct inode * inode, struct file * filp); | 2592 | extern int nonseekable_open(struct inode * inode, struct file * filp); |
2529 | 2593 | ||
2530 | #ifdef CONFIG_FS_XIP | 2594 | ssize_t dax_do_io(int rw, struct kiocb *, struct inode *, struct iov_iter *, |
2531 | extern ssize_t xip_file_read(struct file *filp, char __user *buf, size_t len, | 2595 | loff_t, get_block_t, dio_iodone_t, int flags); |
2532 | loff_t *ppos); | 2596 | int dax_clear_blocks(struct inode *, sector_t block, long size); |
2533 | extern int xip_file_mmap(struct file * file, struct vm_area_struct * vma); | 2597 | int dax_zero_page_range(struct inode *, loff_t from, unsigned len, get_block_t); |
2534 | extern ssize_t xip_file_write(struct file *filp, const char __user *buf, | 2598 | int dax_truncate_page(struct inode *, loff_t from, get_block_t); |
2535 | size_t len, loff_t *ppos); | 2599 | int dax_fault(struct vm_area_struct *, struct vm_fault *, get_block_t); |
2536 | extern int xip_truncate_page(struct address_space *mapping, loff_t from); | 2600 | #define dax_mkwrite(vma, vmf, gb) dax_fault(vma, vmf, gb) |
2537 | #else | ||
2538 | static inline int xip_truncate_page(struct address_space *mapping, loff_t from) | ||
2539 | { | ||
2540 | return 0; | ||
2541 | } | ||
2542 | #endif | ||
2543 | 2601 | ||
2544 | #ifdef CONFIG_BLOCK | 2602 | #ifdef CONFIG_BLOCK |
2545 | typedef void (dio_submit_t)(int rw, struct bio *bio, struct inode *inode, | 2603 | typedef void (dio_submit_t)(int rw, struct bio *bio, struct inode *inode, |
@@ -2696,6 +2754,11 @@ extern int generic_show_options(struct seq_file *m, struct dentry *root); | |||
2696 | extern void save_mount_options(struct super_block *sb, char *options); | 2754 | extern void save_mount_options(struct super_block *sb, char *options); |
2697 | extern void replace_mount_options(struct super_block *sb, char *options); | 2755 | extern void replace_mount_options(struct super_block *sb, char *options); |
2698 | 2756 | ||
2757 | static inline bool io_is_direct(struct file *filp) | ||
2758 | { | ||
2759 | return (filp->f_flags & O_DIRECT) || IS_DAX(file_inode(filp)); | ||
2760 | } | ||
2761 | |||
2699 | static inline ino_t parent_ino(struct dentry *dentry) | 2762 | static inline ino_t parent_ino(struct dentry *dentry) |
2700 | { | 2763 | { |
2701 | ino_t res; | 2764 | ino_t res; |
diff --git a/include/linux/fs_pin.h b/include/linux/fs_pin.h index f66525e72ccf..9dc4e0384bfb 100644 --- a/include/linux/fs_pin.h +++ b/include/linux/fs_pin.h | |||
@@ -1,17 +1,22 @@ | |||
1 | #include <linux/fs.h> | 1 | #include <linux/wait.h> |
2 | 2 | ||
3 | struct fs_pin { | 3 | struct fs_pin { |
4 | atomic_long_t count; | 4 | wait_queue_head_t wait; |
5 | union { | 5 | int done; |
6 | struct { | 6 | struct hlist_node s_list; |
7 | struct hlist_node s_list; | 7 | struct hlist_node m_list; |
8 | struct hlist_node m_list; | ||
9 | }; | ||
10 | struct rcu_head rcu; | ||
11 | }; | ||
12 | void (*kill)(struct fs_pin *); | 8 | void (*kill)(struct fs_pin *); |
13 | }; | 9 | }; |
14 | 10 | ||
15 | void pin_put(struct fs_pin *); | 11 | struct vfsmount; |
12 | |||
13 | static inline void init_fs_pin(struct fs_pin *p, void (*kill)(struct fs_pin *)) | ||
14 | { | ||
15 | init_waitqueue_head(&p->wait); | ||
16 | p->kill = kill; | ||
17 | } | ||
18 | |||
16 | void pin_remove(struct fs_pin *); | 19 | void pin_remove(struct fs_pin *); |
20 | void pin_insert_group(struct fs_pin *, struct vfsmount *, struct hlist_head *); | ||
17 | void pin_insert(struct fs_pin *, struct vfsmount *); | 21 | void pin_insert(struct fs_pin *, struct vfsmount *); |
22 | void pin_kill(struct fs_pin *); | ||
diff --git a/include/linux/fsnotify.h b/include/linux/fsnotify.h index 1c804b057fb1..7ee1774edee5 100644 --- a/include/linux/fsnotify.h +++ b/include/linux/fsnotify.h | |||
@@ -101,8 +101,10 @@ static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir, | |||
101 | new_dir_mask |= FS_ISDIR; | 101 | new_dir_mask |= FS_ISDIR; |
102 | } | 102 | } |
103 | 103 | ||
104 | fsnotify(old_dir, old_dir_mask, old_dir, FSNOTIFY_EVENT_INODE, old_name, fs_cookie); | 104 | fsnotify(old_dir, old_dir_mask, source, FSNOTIFY_EVENT_INODE, old_name, |
105 | fsnotify(new_dir, new_dir_mask, new_dir, FSNOTIFY_EVENT_INODE, new_name, fs_cookie); | 105 | fs_cookie); |
106 | fsnotify(new_dir, new_dir_mask, source, FSNOTIFY_EVENT_INODE, new_name, | ||
107 | fs_cookie); | ||
106 | 108 | ||
107 | if (target) | 109 | if (target) |
108 | fsnotify_link_count(target); | 110 | fsnotify_link_count(target); |
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index 0bebb5c348b8..c674ee8f7fca 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h | |||
@@ -44,6 +44,10 @@ const char *ftrace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr, | |||
44 | const char *ftrace_print_hex_seq(struct trace_seq *p, | 44 | const char *ftrace_print_hex_seq(struct trace_seq *p, |
45 | const unsigned char *buf, int len); | 45 | const unsigned char *buf, int len); |
46 | 46 | ||
47 | const char *ftrace_print_array_seq(struct trace_seq *p, | ||
48 | const void *buf, int buf_len, | ||
49 | size_t el_size); | ||
50 | |||
47 | struct trace_iterator; | 51 | struct trace_iterator; |
48 | struct trace_event; | 52 | struct trace_event; |
49 | 53 | ||
@@ -595,7 +599,7 @@ extern int ftrace_profile_set_filter(struct perf_event *event, int event_id, | |||
595 | char *filter_str); | 599 | char *filter_str); |
596 | extern void ftrace_profile_free_filter(struct perf_event *event); | 600 | extern void ftrace_profile_free_filter(struct perf_event *event); |
597 | extern void *perf_trace_buf_prepare(int size, unsigned short type, | 601 | extern void *perf_trace_buf_prepare(int size, unsigned short type, |
598 | struct pt_regs *regs, int *rctxp); | 602 | struct pt_regs **regs, int *rctxp); |
599 | 603 | ||
600 | static inline void | 604 | static inline void |
601 | perf_trace_buf_submit(void *raw_data, int size, int rctx, u64 addr, | 605 | perf_trace_buf_submit(void *raw_data, int size, int rctx, u64 addr, |
diff --git a/include/linux/gfp.h b/include/linux/gfp.h index b840e3b2770d..51bd1e72a917 100644 --- a/include/linux/gfp.h +++ b/include/linux/gfp.h | |||
@@ -334,18 +334,22 @@ alloc_pages(gfp_t gfp_mask, unsigned int order) | |||
334 | } | 334 | } |
335 | extern struct page *alloc_pages_vma(gfp_t gfp_mask, int order, | 335 | extern struct page *alloc_pages_vma(gfp_t gfp_mask, int order, |
336 | struct vm_area_struct *vma, unsigned long addr, | 336 | struct vm_area_struct *vma, unsigned long addr, |
337 | int node); | 337 | int node, bool hugepage); |
338 | #define alloc_hugepage_vma(gfp_mask, vma, addr, order) \ | ||
339 | alloc_pages_vma(gfp_mask, order, vma, addr, numa_node_id(), true) | ||
338 | #else | 340 | #else |
339 | #define alloc_pages(gfp_mask, order) \ | 341 | #define alloc_pages(gfp_mask, order) \ |
340 | alloc_pages_node(numa_node_id(), gfp_mask, order) | 342 | alloc_pages_node(numa_node_id(), gfp_mask, order) |
341 | #define alloc_pages_vma(gfp_mask, order, vma, addr, node) \ | 343 | #define alloc_pages_vma(gfp_mask, order, vma, addr, node, false)\ |
344 | alloc_pages(gfp_mask, order) | ||
345 | #define alloc_hugepage_vma(gfp_mask, vma, addr, order) \ | ||
342 | alloc_pages(gfp_mask, order) | 346 | alloc_pages(gfp_mask, order) |
343 | #endif | 347 | #endif |
344 | #define alloc_page(gfp_mask) alloc_pages(gfp_mask, 0) | 348 | #define alloc_page(gfp_mask) alloc_pages(gfp_mask, 0) |
345 | #define alloc_page_vma(gfp_mask, vma, addr) \ | 349 | #define alloc_page_vma(gfp_mask, vma, addr) \ |
346 | alloc_pages_vma(gfp_mask, 0, vma, addr, numa_node_id()) | 350 | alloc_pages_vma(gfp_mask, 0, vma, addr, numa_node_id(), false) |
347 | #define alloc_page_vma_node(gfp_mask, vma, addr, node) \ | 351 | #define alloc_page_vma_node(gfp_mask, vma, addr, node) \ |
348 | alloc_pages_vma(gfp_mask, 0, vma, addr, node) | 352 | alloc_pages_vma(gfp_mask, 0, vma, addr, node, false) |
349 | 353 | ||
350 | extern struct page *alloc_kmem_pages(gfp_t gfp_mask, unsigned int order); | 354 | extern struct page *alloc_kmem_pages(gfp_t gfp_mask, unsigned int order); |
351 | extern struct page *alloc_kmem_pages_node(int nid, gfp_t gfp_mask, | 355 | extern struct page *alloc_kmem_pages_node(int nid, gfp_t gfp_mask, |
diff --git a/include/linux/gpio/consumer.h b/include/linux/gpio/consumer.h index fd85cb120ee0..45afc2dee560 100644 --- a/include/linux/gpio/consumer.h +++ b/include/linux/gpio/consumer.h | |||
@@ -340,31 +340,32 @@ static inline int desc_to_gpio(const struct gpio_desc *desc) | |||
340 | * etc. | 340 | * etc. |
341 | */ | 341 | */ |
342 | #define __gpiod_get(dev, con_id, flags, ...) __gpiod_get(dev, con_id, flags) | 342 | #define __gpiod_get(dev, con_id, flags, ...) __gpiod_get(dev, con_id, flags) |
343 | #define gpiod_get(varargs...) __gpiod_get(varargs, 0) | 343 | #define gpiod_get(varargs...) __gpiod_get(varargs, GPIOD_ASIS) |
344 | #define __gpiod_get_index(dev, con_id, index, flags, ...) \ | 344 | #define __gpiod_get_index(dev, con_id, index, flags, ...) \ |
345 | __gpiod_get_index(dev, con_id, index, flags) | 345 | __gpiod_get_index(dev, con_id, index, flags) |
346 | #define gpiod_get_index(varargs...) __gpiod_get_index(varargs, 0) | 346 | #define gpiod_get_index(varargs...) __gpiod_get_index(varargs, GPIOD_ASIS) |
347 | #define __gpiod_get_optional(dev, con_id, flags, ...) \ | 347 | #define __gpiod_get_optional(dev, con_id, flags, ...) \ |
348 | __gpiod_get_optional(dev, con_id, flags) | 348 | __gpiod_get_optional(dev, con_id, flags) |
349 | #define gpiod_get_optional(varargs...) __gpiod_get_optional(varargs, 0) | 349 | #define gpiod_get_optional(varargs...) __gpiod_get_optional(varargs, GPIOD_ASIS) |
350 | #define __gpiod_get_index_optional(dev, con_id, index, flags, ...) \ | 350 | #define __gpiod_get_index_optional(dev, con_id, index, flags, ...) \ |
351 | __gpiod_get_index_optional(dev, con_id, index, flags) | 351 | __gpiod_get_index_optional(dev, con_id, index, flags) |
352 | #define gpiod_get_index_optional(varargs...) \ | 352 | #define gpiod_get_index_optional(varargs...) \ |
353 | __gpiod_get_index_optional(varargs, 0) | 353 | __gpiod_get_index_optional(varargs, GPIOD_ASIS) |
354 | #define __devm_gpiod_get(dev, con_id, flags, ...) \ | 354 | #define __devm_gpiod_get(dev, con_id, flags, ...) \ |
355 | __devm_gpiod_get(dev, con_id, flags) | 355 | __devm_gpiod_get(dev, con_id, flags) |
356 | #define devm_gpiod_get(varargs...) __devm_gpiod_get(varargs, 0) | 356 | #define devm_gpiod_get(varargs...) __devm_gpiod_get(varargs, GPIOD_ASIS) |
357 | #define __devm_gpiod_get_index(dev, con_id, index, flags, ...) \ | 357 | #define __devm_gpiod_get_index(dev, con_id, index, flags, ...) \ |
358 | __devm_gpiod_get_index(dev, con_id, index, flags) | 358 | __devm_gpiod_get_index(dev, con_id, index, flags) |
359 | #define devm_gpiod_get_index(varargs...) __devm_gpiod_get_index(varargs, 0) | 359 | #define devm_gpiod_get_index(varargs...) \ |
360 | __devm_gpiod_get_index(varargs, GPIOD_ASIS) | ||
360 | #define __devm_gpiod_get_optional(dev, con_id, flags, ...) \ | 361 | #define __devm_gpiod_get_optional(dev, con_id, flags, ...) \ |
361 | __devm_gpiod_get_optional(dev, con_id, flags) | 362 | __devm_gpiod_get_optional(dev, con_id, flags) |
362 | #define devm_gpiod_get_optional(varargs...) \ | 363 | #define devm_gpiod_get_optional(varargs...) \ |
363 | __devm_gpiod_get_optional(varargs, 0) | 364 | __devm_gpiod_get_optional(varargs, GPIOD_ASIS) |
364 | #define __devm_gpiod_get_index_optional(dev, con_id, index, flags, ...) \ | 365 | #define __devm_gpiod_get_index_optional(dev, con_id, index, flags, ...) \ |
365 | __devm_gpiod_get_index_optional(dev, con_id, index, flags) | 366 | __devm_gpiod_get_index_optional(dev, con_id, index, flags) |
366 | #define devm_gpiod_get_index_optional(varargs...) \ | 367 | #define devm_gpiod_get_index_optional(varargs...) \ |
367 | __devm_gpiod_get_index_optional(varargs, 0) | 368 | __devm_gpiod_get_index_optional(varargs, GPIOD_ASIS) |
368 | 369 | ||
369 | #if IS_ENABLED(CONFIG_GPIOLIB) && IS_ENABLED(CONFIG_GPIO_SYSFS) | 370 | #if IS_ENABLED(CONFIG_GPIOLIB) && IS_ENABLED(CONFIG_GPIO_SYSFS) |
370 | 371 | ||
diff --git a/include/linux/hdmi.h b/include/linux/hdmi.h index cbb5790a35cd..e9744202fa29 100644 --- a/include/linux/hdmi.h +++ b/include/linux/hdmi.h | |||
@@ -25,6 +25,7 @@ | |||
25 | #define __LINUX_HDMI_H_ | 25 | #define __LINUX_HDMI_H_ |
26 | 26 | ||
27 | #include <linux/types.h> | 27 | #include <linux/types.h> |
28 | #include <linux/device.h> | ||
28 | 29 | ||
29 | enum hdmi_infoframe_type { | 30 | enum hdmi_infoframe_type { |
30 | HDMI_INFOFRAME_TYPE_VENDOR = 0x81, | 31 | HDMI_INFOFRAME_TYPE_VENDOR = 0x81, |
@@ -52,12 +53,18 @@ enum hdmi_colorspace { | |||
52 | HDMI_COLORSPACE_RGB, | 53 | HDMI_COLORSPACE_RGB, |
53 | HDMI_COLORSPACE_YUV422, | 54 | HDMI_COLORSPACE_YUV422, |
54 | HDMI_COLORSPACE_YUV444, | 55 | HDMI_COLORSPACE_YUV444, |
56 | HDMI_COLORSPACE_YUV420, | ||
57 | HDMI_COLORSPACE_RESERVED4, | ||
58 | HDMI_COLORSPACE_RESERVED5, | ||
59 | HDMI_COLORSPACE_RESERVED6, | ||
60 | HDMI_COLORSPACE_IDO_DEFINED, | ||
55 | }; | 61 | }; |
56 | 62 | ||
57 | enum hdmi_scan_mode { | 63 | enum hdmi_scan_mode { |
58 | HDMI_SCAN_MODE_NONE, | 64 | HDMI_SCAN_MODE_NONE, |
59 | HDMI_SCAN_MODE_OVERSCAN, | 65 | HDMI_SCAN_MODE_OVERSCAN, |
60 | HDMI_SCAN_MODE_UNDERSCAN, | 66 | HDMI_SCAN_MODE_UNDERSCAN, |
67 | HDMI_SCAN_MODE_RESERVED, | ||
61 | }; | 68 | }; |
62 | 69 | ||
63 | enum hdmi_colorimetry { | 70 | enum hdmi_colorimetry { |
@@ -71,6 +78,7 @@ enum hdmi_picture_aspect { | |||
71 | HDMI_PICTURE_ASPECT_NONE, | 78 | HDMI_PICTURE_ASPECT_NONE, |
72 | HDMI_PICTURE_ASPECT_4_3, | 79 | HDMI_PICTURE_ASPECT_4_3, |
73 | HDMI_PICTURE_ASPECT_16_9, | 80 | HDMI_PICTURE_ASPECT_16_9, |
81 | HDMI_PICTURE_ASPECT_RESERVED, | ||
74 | }; | 82 | }; |
75 | 83 | ||
76 | enum hdmi_active_aspect { | 84 | enum hdmi_active_aspect { |
@@ -92,12 +100,18 @@ enum hdmi_extended_colorimetry { | |||
92 | HDMI_EXTENDED_COLORIMETRY_S_YCC_601, | 100 | HDMI_EXTENDED_COLORIMETRY_S_YCC_601, |
93 | HDMI_EXTENDED_COLORIMETRY_ADOBE_YCC_601, | 101 | HDMI_EXTENDED_COLORIMETRY_ADOBE_YCC_601, |
94 | HDMI_EXTENDED_COLORIMETRY_ADOBE_RGB, | 102 | HDMI_EXTENDED_COLORIMETRY_ADOBE_RGB, |
103 | |||
104 | /* The following EC values are only defined in CEA-861-F. */ | ||
105 | HDMI_EXTENDED_COLORIMETRY_BT2020_CONST_LUM, | ||
106 | HDMI_EXTENDED_COLORIMETRY_BT2020, | ||
107 | HDMI_EXTENDED_COLORIMETRY_RESERVED, | ||
95 | }; | 108 | }; |
96 | 109 | ||
97 | enum hdmi_quantization_range { | 110 | enum hdmi_quantization_range { |
98 | HDMI_QUANTIZATION_RANGE_DEFAULT, | 111 | HDMI_QUANTIZATION_RANGE_DEFAULT, |
99 | HDMI_QUANTIZATION_RANGE_LIMITED, | 112 | HDMI_QUANTIZATION_RANGE_LIMITED, |
100 | HDMI_QUANTIZATION_RANGE_FULL, | 113 | HDMI_QUANTIZATION_RANGE_FULL, |
114 | HDMI_QUANTIZATION_RANGE_RESERVED, | ||
101 | }; | 115 | }; |
102 | 116 | ||
103 | /* non-uniform picture scaling */ | 117 | /* non-uniform picture scaling */ |
@@ -114,7 +128,7 @@ enum hdmi_ycc_quantization_range { | |||
114 | }; | 128 | }; |
115 | 129 | ||
116 | enum hdmi_content_type { | 130 | enum hdmi_content_type { |
117 | HDMI_CONTENT_TYPE_NONE, | 131 | HDMI_CONTENT_TYPE_GRAPHICS, |
118 | HDMI_CONTENT_TYPE_PHOTO, | 132 | HDMI_CONTENT_TYPE_PHOTO, |
119 | HDMI_CONTENT_TYPE_CINEMA, | 133 | HDMI_CONTENT_TYPE_CINEMA, |
120 | HDMI_CONTENT_TYPE_GAME, | 134 | HDMI_CONTENT_TYPE_GAME, |
@@ -194,6 +208,7 @@ enum hdmi_audio_coding_type { | |||
194 | HDMI_AUDIO_CODING_TYPE_MLP, | 208 | HDMI_AUDIO_CODING_TYPE_MLP, |
195 | HDMI_AUDIO_CODING_TYPE_DST, | 209 | HDMI_AUDIO_CODING_TYPE_DST, |
196 | HDMI_AUDIO_CODING_TYPE_WMA_PRO, | 210 | HDMI_AUDIO_CODING_TYPE_WMA_PRO, |
211 | HDMI_AUDIO_CODING_TYPE_CXT, | ||
197 | }; | 212 | }; |
198 | 213 | ||
199 | enum hdmi_audio_sample_size { | 214 | enum hdmi_audio_sample_size { |
@@ -215,10 +230,25 @@ enum hdmi_audio_sample_frequency { | |||
215 | }; | 230 | }; |
216 | 231 | ||
217 | enum hdmi_audio_coding_type_ext { | 232 | enum hdmi_audio_coding_type_ext { |
218 | HDMI_AUDIO_CODING_TYPE_EXT_STREAM, | 233 | /* Refer to Audio Coding Type (CT) field in Data Byte 1 */ |
234 | HDMI_AUDIO_CODING_TYPE_EXT_CT, | ||
235 | |||
236 | /* | ||
237 | * The next three CXT values are defined in CEA-861-E only. | ||
238 | * They do not exist in older versions, and in CEA-861-F they are | ||
239 | * defined as 'Not in use'. | ||
240 | */ | ||
219 | HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC, | 241 | HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC, |
220 | HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC_V2, | 242 | HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC_V2, |
221 | HDMI_AUDIO_CODING_TYPE_EXT_MPEG_SURROUND, | 243 | HDMI_AUDIO_CODING_TYPE_EXT_MPEG_SURROUND, |
244 | |||
245 | /* The following CXT values are only defined in CEA-861-F. */ | ||
246 | HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC, | ||
247 | HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_V2, | ||
248 | HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC, | ||
249 | HDMI_AUDIO_CODING_TYPE_EXT_DRA, | ||
250 | HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_SURROUND, | ||
251 | HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC_SURROUND = 10, | ||
222 | }; | 252 | }; |
223 | 253 | ||
224 | struct hdmi_audio_infoframe { | 254 | struct hdmi_audio_infoframe { |
@@ -299,5 +329,8 @@ union hdmi_infoframe { | |||
299 | 329 | ||
300 | ssize_t | 330 | ssize_t |
301 | hdmi_infoframe_pack(union hdmi_infoframe *frame, void *buffer, size_t size); | 331 | hdmi_infoframe_pack(union hdmi_infoframe *frame, void *buffer, size_t size); |
332 | int hdmi_infoframe_unpack(union hdmi_infoframe *frame, void *buffer); | ||
333 | void hdmi_infoframe_log(const char *level, struct device *dev, | ||
334 | union hdmi_infoframe *frame); | ||
302 | 335 | ||
303 | #endif /* _DRM_HDMI_H */ | 336 | #endif /* _DRM_HDMI_H */ |
diff --git a/include/linux/hid.h b/include/linux/hid.h index 06c4607744f6..efc7787a41a8 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h | |||
@@ -574,7 +574,9 @@ static inline void hid_set_drvdata(struct hid_device *hdev, void *data) | |||
574 | #define HID_GLOBAL_STACK_SIZE 4 | 574 | #define HID_GLOBAL_STACK_SIZE 4 |
575 | #define HID_COLLECTION_STACK_SIZE 4 | 575 | #define HID_COLLECTION_STACK_SIZE 4 |
576 | 576 | ||
577 | #define HID_SCAN_FLAG_MT_WIN_8 0x00000001 | 577 | #define HID_SCAN_FLAG_MT_WIN_8 BIT(0) |
578 | #define HID_SCAN_FLAG_VENDOR_SPECIFIC BIT(1) | ||
579 | #define HID_SCAN_FLAG_GD_POINTER BIT(2) | ||
578 | 580 | ||
579 | struct hid_parser { | 581 | struct hid_parser { |
580 | struct hid_global global; | 582 | struct hid_global global; |
diff --git a/include/linux/host1x.h b/include/linux/host1x.h index bb9840fd1e18..464f33814a94 100644 --- a/include/linux/host1x.h +++ b/include/linux/host1x.h | |||
@@ -250,17 +250,29 @@ void host1x_job_unpin(struct host1x_job *job); | |||
250 | struct host1x_device; | 250 | struct host1x_device; |
251 | 251 | ||
252 | struct host1x_driver { | 252 | struct host1x_driver { |
253 | struct device_driver driver; | ||
254 | |||
253 | const struct of_device_id *subdevs; | 255 | const struct of_device_id *subdevs; |
254 | struct list_head list; | 256 | struct list_head list; |
255 | const char *name; | ||
256 | 257 | ||
257 | int (*probe)(struct host1x_device *device); | 258 | int (*probe)(struct host1x_device *device); |
258 | int (*remove)(struct host1x_device *device); | 259 | int (*remove)(struct host1x_device *device); |
260 | void (*shutdown)(struct host1x_device *device); | ||
259 | }; | 261 | }; |
260 | 262 | ||
261 | int host1x_driver_register(struct host1x_driver *driver); | 263 | static inline struct host1x_driver * |
264 | to_host1x_driver(struct device_driver *driver) | ||
265 | { | ||
266 | return container_of(driver, struct host1x_driver, driver); | ||
267 | } | ||
268 | |||
269 | int host1x_driver_register_full(struct host1x_driver *driver, | ||
270 | struct module *owner); | ||
262 | void host1x_driver_unregister(struct host1x_driver *driver); | 271 | void host1x_driver_unregister(struct host1x_driver *driver); |
263 | 272 | ||
273 | #define host1x_driver_register(driver) \ | ||
274 | host1x_driver_register_full(driver, THIS_MODULE) | ||
275 | |||
264 | struct host1x_device { | 276 | struct host1x_device { |
265 | struct host1x_driver *driver; | 277 | struct host1x_driver *driver; |
266 | struct list_head list; | 278 | struct list_head list; |
@@ -272,6 +284,8 @@ struct host1x_device { | |||
272 | 284 | ||
273 | struct mutex clients_lock; | 285 | struct mutex clients_lock; |
274 | struct list_head clients; | 286 | struct list_head clients; |
287 | |||
288 | bool registered; | ||
275 | }; | 289 | }; |
276 | 290 | ||
277 | static inline struct host1x_device *to_host1x_device(struct device *dev) | 291 | static inline struct host1x_device *to_host1x_device(struct device *dev) |
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index a036d058a249..05f6df1fdf5b 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
@@ -170,6 +170,7 @@ enum hrtimer_base_type { | |||
170 | * @clock_was_set: Indicates that clock was set from irq context. | 170 | * @clock_was_set: Indicates that clock was set from irq context. |
171 | * @expires_next: absolute time of the next event which was scheduled | 171 | * @expires_next: absolute time of the next event which was scheduled |
172 | * via clock_set_next_event() | 172 | * via clock_set_next_event() |
173 | * @in_hrtirq: hrtimer_interrupt() is currently executing | ||
173 | * @hres_active: State of high resolution mode | 174 | * @hres_active: State of high resolution mode |
174 | * @hang_detected: The last hrtimer interrupt detected a hang | 175 | * @hang_detected: The last hrtimer interrupt detected a hang |
175 | * @nr_events: Total number of hrtimer interrupt events | 176 | * @nr_events: Total number of hrtimer interrupt events |
@@ -185,6 +186,7 @@ struct hrtimer_cpu_base { | |||
185 | unsigned int clock_was_set; | 186 | unsigned int clock_was_set; |
186 | #ifdef CONFIG_HIGH_RES_TIMERS | 187 | #ifdef CONFIG_HIGH_RES_TIMERS |
187 | ktime_t expires_next; | 188 | ktime_t expires_next; |
189 | int in_hrtirq; | ||
188 | int hres_active; | 190 | int hres_active; |
189 | int hang_detected; | 191 | int hang_detected; |
190 | unsigned long nr_events; | 192 | unsigned long nr_events; |
diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h index ad9051bab267..f10b20f05159 100644 --- a/include/linux/huge_mm.h +++ b/include/linux/huge_mm.h | |||
@@ -157,6 +157,13 @@ static inline int hpage_nr_pages(struct page *page) | |||
157 | extern int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_struct *vma, | 157 | extern int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_struct *vma, |
158 | unsigned long addr, pmd_t pmd, pmd_t *pmdp); | 158 | unsigned long addr, pmd_t pmd, pmd_t *pmdp); |
159 | 159 | ||
160 | extern struct page *huge_zero_page; | ||
161 | |||
162 | static inline bool is_huge_zero_page(struct page *page) | ||
163 | { | ||
164 | return ACCESS_ONCE(huge_zero_page) == page; | ||
165 | } | ||
166 | |||
160 | #else /* CONFIG_TRANSPARENT_HUGEPAGE */ | 167 | #else /* CONFIG_TRANSPARENT_HUGEPAGE */ |
161 | #define HPAGE_PMD_SHIFT ({ BUILD_BUG(); 0; }) | 168 | #define HPAGE_PMD_SHIFT ({ BUILD_BUG(); 0; }) |
162 | #define HPAGE_PMD_MASK ({ BUILD_BUG(); 0; }) | 169 | #define HPAGE_PMD_MASK ({ BUILD_BUG(); 0; }) |
@@ -206,6 +213,11 @@ static inline int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_str | |||
206 | return 0; | 213 | return 0; |
207 | } | 214 | } |
208 | 215 | ||
216 | static inline bool is_huge_zero_page(struct page *page) | ||
217 | { | ||
218 | return false; | ||
219 | } | ||
220 | |||
209 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ | 221 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ |
210 | 222 | ||
211 | #endif /* _LINUX_HUGE_MM_H */ | 223 | #endif /* _LINUX_HUGE_MM_H */ |
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index 431b7fc605c9..7b5785032049 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h | |||
@@ -86,7 +86,7 @@ void free_huge_page(struct page *page); | |||
86 | pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud); | 86 | pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud); |
87 | #endif | 87 | #endif |
88 | 88 | ||
89 | extern unsigned long hugepages_treat_as_movable; | 89 | extern int hugepages_treat_as_movable; |
90 | extern int sysctl_hugetlb_shm_group; | 90 | extern int sysctl_hugetlb_shm_group; |
91 | extern struct list_head huge_boot_pages; | 91 | extern struct list_head huge_boot_pages; |
92 | 92 | ||
@@ -99,9 +99,9 @@ int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep); | |||
99 | struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address, | 99 | struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address, |
100 | int write); | 100 | int write); |
101 | struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address, | 101 | struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address, |
102 | pmd_t *pmd, int write); | 102 | pmd_t *pmd, int flags); |
103 | struct page *follow_huge_pud(struct mm_struct *mm, unsigned long address, | 103 | struct page *follow_huge_pud(struct mm_struct *mm, unsigned long address, |
104 | pud_t *pud, int write); | 104 | pud_t *pud, int flags); |
105 | int pmd_huge(pmd_t pmd); | 105 | int pmd_huge(pmd_t pmd); |
106 | int pud_huge(pud_t pmd); | 106 | int pud_huge(pud_t pmd); |
107 | unsigned long hugetlb_change_protection(struct vm_area_struct *vma, | 107 | unsigned long hugetlb_change_protection(struct vm_area_struct *vma, |
@@ -133,8 +133,8 @@ static inline void hugetlb_report_meminfo(struct seq_file *m) | |||
133 | static inline void hugetlb_show_meminfo(void) | 133 | static inline void hugetlb_show_meminfo(void) |
134 | { | 134 | { |
135 | } | 135 | } |
136 | #define follow_huge_pmd(mm, addr, pmd, write) NULL | 136 | #define follow_huge_pmd(mm, addr, pmd, flags) NULL |
137 | #define follow_huge_pud(mm, addr, pud, write) NULL | 137 | #define follow_huge_pud(mm, addr, pud, flags) NULL |
138 | #define prepare_hugepage_range(file, addr, len) (-EINVAL) | 138 | #define prepare_hugepage_range(file, addr, len) (-EINVAL) |
139 | #define pmd_huge(x) 0 | 139 | #define pmd_huge(x) 0 |
140 | #define pud_huge(x) 0 | 140 | #define pud_huge(x) 0 |
diff --git a/include/linux/hw_random.h b/include/linux/hw_random.h index 914bb08cd738..eb7b414d232b 100644 --- a/include/linux/hw_random.h +++ b/include/linux/hw_random.h | |||
@@ -12,8 +12,10 @@ | |||
12 | #ifndef LINUX_HWRANDOM_H_ | 12 | #ifndef LINUX_HWRANDOM_H_ |
13 | #define LINUX_HWRANDOM_H_ | 13 | #define LINUX_HWRANDOM_H_ |
14 | 14 | ||
15 | #include <linux/completion.h> | ||
15 | #include <linux/types.h> | 16 | #include <linux/types.h> |
16 | #include <linux/list.h> | 17 | #include <linux/list.h> |
18 | #include <linux/kref.h> | ||
17 | 19 | ||
18 | /** | 20 | /** |
19 | * struct hwrng - Hardware Random Number Generator driver | 21 | * struct hwrng - Hardware Random Number Generator driver |
@@ -44,6 +46,8 @@ struct hwrng { | |||
44 | 46 | ||
45 | /* internal. */ | 47 | /* internal. */ |
46 | struct list_head list; | 48 | struct list_head list; |
49 | struct kref ref; | ||
50 | struct completion cleanup_done; | ||
47 | }; | 51 | }; |
48 | 52 | ||
49 | /** Register a new Hardware Random Number Generator driver. */ | 53 | /** Register a new Hardware Random Number Generator driver. */ |
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 476c685ca6f9..5a2ba674795e 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h | |||
@@ -57,6 +57,18 @@ struct hv_multipage_buffer { | |||
57 | u64 pfn_array[MAX_MULTIPAGE_BUFFER_COUNT]; | 57 | u64 pfn_array[MAX_MULTIPAGE_BUFFER_COUNT]; |
58 | }; | 58 | }; |
59 | 59 | ||
60 | /* | ||
61 | * Multiple-page buffer array; the pfn array is variable size: | ||
62 | * The number of entries in the PFN array is determined by | ||
63 | * "len" and "offset". | ||
64 | */ | ||
65 | struct hv_mpb_array { | ||
66 | /* Length and Offset determines the # of pfns in the array */ | ||
67 | u32 len; | ||
68 | u32 offset; | ||
69 | u64 pfn_array[]; | ||
70 | }; | ||
71 | |||
60 | /* 0x18 includes the proprietary packet header */ | 72 | /* 0x18 includes the proprietary packet header */ |
61 | #define MAX_PAGE_BUFFER_PACKET (0x18 + \ | 73 | #define MAX_PAGE_BUFFER_PACKET (0x18 + \ |
62 | (sizeof(struct hv_page_buffer) * \ | 74 | (sizeof(struct hv_page_buffer) * \ |
@@ -722,7 +734,12 @@ struct vmbus_channel { | |||
722 | */ | 734 | */ |
723 | void (*sc_creation_callback)(struct vmbus_channel *new_sc); | 735 | void (*sc_creation_callback)(struct vmbus_channel *new_sc); |
724 | 736 | ||
725 | spinlock_t sc_lock; | 737 | /* |
738 | * The spinlock to protect the structure. It is being used to protect | ||
739 | * test-and-set access to various attributes of the structure as well | ||
740 | * as all sc_list operations. | ||
741 | */ | ||
742 | spinlock_t lock; | ||
726 | /* | 743 | /* |
727 | * All Sub-channels of a primary channel are linked here. | 744 | * All Sub-channels of a primary channel are linked here. |
728 | */ | 745 | */ |
@@ -814,6 +831,18 @@ struct vmbus_channel_packet_multipage_buffer { | |||
814 | struct hv_multipage_buffer range; | 831 | struct hv_multipage_buffer range; |
815 | } __packed; | 832 | } __packed; |
816 | 833 | ||
834 | /* The format must be the same as struct vmdata_gpa_direct */ | ||
835 | struct vmbus_packet_mpb_array { | ||
836 | u16 type; | ||
837 | u16 dataoffset8; | ||
838 | u16 length8; | ||
839 | u16 flags; | ||
840 | u64 transactionid; | ||
841 | u32 reserved; | ||
842 | u32 rangecount; /* Always 1 in this case */ | ||
843 | struct hv_mpb_array range; | ||
844 | } __packed; | ||
845 | |||
817 | 846 | ||
818 | extern int vmbus_open(struct vmbus_channel *channel, | 847 | extern int vmbus_open(struct vmbus_channel *channel, |
819 | u32 send_ringbuffersize, | 848 | u32 send_ringbuffersize, |
@@ -845,6 +874,13 @@ extern int vmbus_sendpacket_multipagebuffer(struct vmbus_channel *channel, | |||
845 | u32 bufferlen, | 874 | u32 bufferlen, |
846 | u64 requestid); | 875 | u64 requestid); |
847 | 876 | ||
877 | extern int vmbus_sendpacket_mpb_desc(struct vmbus_channel *channel, | ||
878 | struct vmbus_packet_mpb_array *mpb, | ||
879 | u32 desc_size, | ||
880 | void *buffer, | ||
881 | u32 bufferlen, | ||
882 | u64 requestid); | ||
883 | |||
848 | extern int vmbus_establish_gpadl(struct vmbus_channel *channel, | 884 | extern int vmbus_establish_gpadl(struct vmbus_channel *channel, |
849 | void *kbuffer, | 885 | void *kbuffer, |
850 | u32 size, | 886 | u32 size, |
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index 7c7695940ddd..f17da50402a4 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
@@ -130,8 +130,6 @@ extern s32 i2c_smbus_write_i2c_block_data(const struct i2c_client *client, | |||
130 | * @probe: Callback for device binding | 130 | * @probe: Callback for device binding |
131 | * @remove: Callback for device unbinding | 131 | * @remove: Callback for device unbinding |
132 | * @shutdown: Callback for device shutdown | 132 | * @shutdown: Callback for device shutdown |
133 | * @suspend: Callback for device suspend | ||
134 | * @resume: Callback for device resume | ||
135 | * @alert: Alert callback, for example for the SMBus alert protocol | 133 | * @alert: Alert callback, for example for the SMBus alert protocol |
136 | * @command: Callback for bus-wide signaling (optional) | 134 | * @command: Callback for bus-wide signaling (optional) |
137 | * @driver: Device driver model driver | 135 | * @driver: Device driver model driver |
@@ -174,8 +172,6 @@ struct i2c_driver { | |||
174 | 172 | ||
175 | /* driver model interfaces that don't relate to enumeration */ | 173 | /* driver model interfaces that don't relate to enumeration */ |
176 | void (*shutdown)(struct i2c_client *); | 174 | void (*shutdown)(struct i2c_client *); |
177 | int (*suspend)(struct i2c_client *, pm_message_t mesg); | ||
178 | int (*resume)(struct i2c_client *); | ||
179 | 175 | ||
180 | /* Alert callback, for example for the SMBus alert protocol. | 176 | /* Alert callback, for example for the SMBus alert protocol. |
181 | * The format and meaning of the data value depends on the protocol. | 177 | * The format and meaning of the data value depends on the protocol. |
diff --git a/include/linux/i2o.h b/include/linux/i2o.h deleted file mode 100644 index d23c3c20b201..000000000000 --- a/include/linux/i2o.h +++ /dev/null | |||
@@ -1,988 +0,0 @@ | |||
1 | /* | ||
2 | * I2O kernel space accessible structures/APIs | ||
3 | * | ||
4 | * (c) Copyright 1999, 2000 Red Hat Software | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | * | ||
11 | ************************************************************************* | ||
12 | * | ||
13 | * This header file defined the I2O APIs/structures for use by | ||
14 | * the I2O kernel modules. | ||
15 | * | ||
16 | */ | ||
17 | |||
18 | #ifndef _I2O_H | ||
19 | #define _I2O_H | ||
20 | |||
21 | #include <linux/i2o-dev.h> | ||
22 | |||
23 | /* How many different OSM's are we allowing */ | ||
24 | #define I2O_MAX_DRIVERS 8 | ||
25 | |||
26 | #include <linux/pci.h> | ||
27 | #include <linux/bug.h> | ||
28 | #include <linux/dma-mapping.h> | ||
29 | #include <linux/string.h> | ||
30 | #include <linux/slab.h> | ||
31 | #include <linux/workqueue.h> /* work_struct */ | ||
32 | #include <linux/mempool.h> | ||
33 | #include <linux/mutex.h> | ||
34 | #include <linux/scatterlist.h> | ||
35 | #include <linux/semaphore.h> /* Needed for MUTEX init macros */ | ||
36 | |||
37 | #include <asm/io.h> | ||
38 | |||
39 | /* message queue empty */ | ||
40 | #define I2O_QUEUE_EMPTY 0xffffffff | ||
41 | |||
42 | /* | ||
43 | * Cache strategies | ||
44 | */ | ||
45 | |||
46 | /* The NULL strategy leaves everything up to the controller. This tends to be a | ||
47 | * pessimal but functional choice. | ||
48 | */ | ||
49 | #define CACHE_NULL 0 | ||
50 | /* Prefetch data when reading. We continually attempt to load the next 32 sectors | ||
51 | * into the controller cache. | ||
52 | */ | ||
53 | #define CACHE_PREFETCH 1 | ||
54 | /* Prefetch data when reading. We sometimes attempt to load the next 32 sectors | ||
55 | * into the controller cache. When an I/O is less <= 8K we assume its probably | ||
56 | * not sequential and don't prefetch (default) | ||
57 | */ | ||
58 | #define CACHE_SMARTFETCH 2 | ||
59 | /* Data is written to the cache and then out on to the disk. The I/O must be | ||
60 | * physically on the medium before the write is acknowledged (default without | ||
61 | * NVRAM) | ||
62 | */ | ||
63 | #define CACHE_WRITETHROUGH 17 | ||
64 | /* Data is written to the cache and then out on to the disk. The controller | ||
65 | * is permitted to write back the cache any way it wants. (default if battery | ||
66 | * backed NVRAM is present). It can be useful to set this for swap regardless of | ||
67 | * battery state. | ||
68 | */ | ||
69 | #define CACHE_WRITEBACK 18 | ||
70 | /* Optimise for under powered controllers, especially on RAID1 and RAID0. We | ||
71 | * write large I/O's directly to disk bypassing the cache to avoid the extra | ||
72 | * memory copy hits. Small writes are writeback cached | ||
73 | */ | ||
74 | #define CACHE_SMARTBACK 19 | ||
75 | /* Optimise for under powered controllers, especially on RAID1 and RAID0. We | ||
76 | * write large I/O's directly to disk bypassing the cache to avoid the extra | ||
77 | * memory copy hits. Small writes are writethrough cached. Suitable for devices | ||
78 | * lacking battery backup | ||
79 | */ | ||
80 | #define CACHE_SMARTTHROUGH 20 | ||
81 | |||
82 | /* | ||
83 | * Ioctl structures | ||
84 | */ | ||
85 | |||
86 | #define BLKI2OGRSTRAT _IOR('2', 1, int) | ||
87 | #define BLKI2OGWSTRAT _IOR('2', 2, int) | ||
88 | #define BLKI2OSRSTRAT _IOW('2', 3, int) | ||
89 | #define BLKI2OSWSTRAT _IOW('2', 4, int) | ||
90 | |||
91 | /* | ||
92 | * I2O Function codes | ||
93 | */ | ||
94 | |||
95 | /* | ||
96 | * Executive Class | ||
97 | */ | ||
98 | #define I2O_CMD_ADAPTER_ASSIGN 0xB3 | ||
99 | #define I2O_CMD_ADAPTER_READ 0xB2 | ||
100 | #define I2O_CMD_ADAPTER_RELEASE 0xB5 | ||
101 | #define I2O_CMD_BIOS_INFO_SET 0xA5 | ||
102 | #define I2O_CMD_BOOT_DEVICE_SET 0xA7 | ||
103 | #define I2O_CMD_CONFIG_VALIDATE 0xBB | ||
104 | #define I2O_CMD_CONN_SETUP 0xCA | ||
105 | #define I2O_CMD_DDM_DESTROY 0xB1 | ||
106 | #define I2O_CMD_DDM_ENABLE 0xD5 | ||
107 | #define I2O_CMD_DDM_QUIESCE 0xC7 | ||
108 | #define I2O_CMD_DDM_RESET 0xD9 | ||
109 | #define I2O_CMD_DDM_SUSPEND 0xAF | ||
110 | #define I2O_CMD_DEVICE_ASSIGN 0xB7 | ||
111 | #define I2O_CMD_DEVICE_RELEASE 0xB9 | ||
112 | #define I2O_CMD_HRT_GET 0xA8 | ||
113 | #define I2O_CMD_ADAPTER_CLEAR 0xBE | ||
114 | #define I2O_CMD_ADAPTER_CONNECT 0xC9 | ||
115 | #define I2O_CMD_ADAPTER_RESET 0xBD | ||
116 | #define I2O_CMD_LCT_NOTIFY 0xA2 | ||
117 | #define I2O_CMD_OUTBOUND_INIT 0xA1 | ||
118 | #define I2O_CMD_PATH_ENABLE 0xD3 | ||
119 | #define I2O_CMD_PATH_QUIESCE 0xC5 | ||
120 | #define I2O_CMD_PATH_RESET 0xD7 | ||
121 | #define I2O_CMD_STATIC_MF_CREATE 0xDD | ||
122 | #define I2O_CMD_STATIC_MF_RELEASE 0xDF | ||
123 | #define I2O_CMD_STATUS_GET 0xA0 | ||
124 | #define I2O_CMD_SW_DOWNLOAD 0xA9 | ||
125 | #define I2O_CMD_SW_UPLOAD 0xAB | ||
126 | #define I2O_CMD_SW_REMOVE 0xAD | ||
127 | #define I2O_CMD_SYS_ENABLE 0xD1 | ||
128 | #define I2O_CMD_SYS_MODIFY 0xC1 | ||
129 | #define I2O_CMD_SYS_QUIESCE 0xC3 | ||
130 | #define I2O_CMD_SYS_TAB_SET 0xA3 | ||
131 | |||
132 | /* | ||
133 | * Utility Class | ||
134 | */ | ||
135 | #define I2O_CMD_UTIL_NOP 0x00 | ||
136 | #define I2O_CMD_UTIL_ABORT 0x01 | ||
137 | #define I2O_CMD_UTIL_CLAIM 0x09 | ||
138 | #define I2O_CMD_UTIL_RELEASE 0x0B | ||
139 | #define I2O_CMD_UTIL_PARAMS_GET 0x06 | ||
140 | #define I2O_CMD_UTIL_PARAMS_SET 0x05 | ||
141 | #define I2O_CMD_UTIL_EVT_REGISTER 0x13 | ||
142 | #define I2O_CMD_UTIL_EVT_ACK 0x14 | ||
143 | #define I2O_CMD_UTIL_CONFIG_DIALOG 0x10 | ||
144 | #define I2O_CMD_UTIL_DEVICE_RESERVE 0x0D | ||
145 | #define I2O_CMD_UTIL_DEVICE_RELEASE 0x0F | ||
146 | #define I2O_CMD_UTIL_LOCK 0x17 | ||
147 | #define I2O_CMD_UTIL_LOCK_RELEASE 0x19 | ||
148 | #define I2O_CMD_UTIL_REPLY_FAULT_NOTIFY 0x15 | ||
149 | |||
150 | /* | ||
151 | * SCSI Host Bus Adapter Class | ||
152 | */ | ||
153 | #define I2O_CMD_SCSI_EXEC 0x81 | ||
154 | #define I2O_CMD_SCSI_ABORT 0x83 | ||
155 | #define I2O_CMD_SCSI_BUSRESET 0x27 | ||
156 | |||
157 | /* | ||
158 | * Bus Adapter Class | ||
159 | */ | ||
160 | #define I2O_CMD_BUS_ADAPTER_RESET 0x85 | ||
161 | #define I2O_CMD_BUS_RESET 0x87 | ||
162 | #define I2O_CMD_BUS_SCAN 0x89 | ||
163 | #define I2O_CMD_BUS_QUIESCE 0x8b | ||
164 | |||
165 | /* | ||
166 | * Random Block Storage Class | ||
167 | */ | ||
168 | #define I2O_CMD_BLOCK_READ 0x30 | ||
169 | #define I2O_CMD_BLOCK_WRITE 0x31 | ||
170 | #define I2O_CMD_BLOCK_CFLUSH 0x37 | ||
171 | #define I2O_CMD_BLOCK_MLOCK 0x49 | ||
172 | #define I2O_CMD_BLOCK_MUNLOCK 0x4B | ||
173 | #define I2O_CMD_BLOCK_MMOUNT 0x41 | ||
174 | #define I2O_CMD_BLOCK_MEJECT 0x43 | ||
175 | #define I2O_CMD_BLOCK_POWER 0x70 | ||
176 | |||
177 | #define I2O_CMD_PRIVATE 0xFF | ||
178 | |||
179 | /* Command status values */ | ||
180 | |||
181 | #define I2O_CMD_IN_PROGRESS 0x01 | ||
182 | #define I2O_CMD_REJECTED 0x02 | ||
183 | #define I2O_CMD_FAILED 0x03 | ||
184 | #define I2O_CMD_COMPLETED 0x04 | ||
185 | |||
186 | /* I2O API function return values */ | ||
187 | |||
188 | #define I2O_RTN_NO_ERROR 0 | ||
189 | #define I2O_RTN_NOT_INIT 1 | ||
190 | #define I2O_RTN_FREE_Q_EMPTY 2 | ||
191 | #define I2O_RTN_TCB_ERROR 3 | ||
192 | #define I2O_RTN_TRANSACTION_ERROR 4 | ||
193 | #define I2O_RTN_ADAPTER_ALREADY_INIT 5 | ||
194 | #define I2O_RTN_MALLOC_ERROR 6 | ||
195 | #define I2O_RTN_ADPTR_NOT_REGISTERED 7 | ||
196 | #define I2O_RTN_MSG_REPLY_TIMEOUT 8 | ||
197 | #define I2O_RTN_NO_STATUS 9 | ||
198 | #define I2O_RTN_NO_FIRM_VER 10 | ||
199 | #define I2O_RTN_NO_LINK_SPEED 11 | ||
200 | |||
201 | /* Reply message status defines for all messages */ | ||
202 | |||
203 | #define I2O_REPLY_STATUS_SUCCESS 0x00 | ||
204 | #define I2O_REPLY_STATUS_ABORT_DIRTY 0x01 | ||
205 | #define I2O_REPLY_STATUS_ABORT_NO_DATA_TRANSFER 0x02 | ||
206 | #define I2O_REPLY_STATUS_ABORT_PARTIAL_TRANSFER 0x03 | ||
207 | #define I2O_REPLY_STATUS_ERROR_DIRTY 0x04 | ||
208 | #define I2O_REPLY_STATUS_ERROR_NO_DATA_TRANSFER 0x05 | ||
209 | #define I2O_REPLY_STATUS_ERROR_PARTIAL_TRANSFER 0x06 | ||
210 | #define I2O_REPLY_STATUS_PROCESS_ABORT_DIRTY 0x08 | ||
211 | #define I2O_REPLY_STATUS_PROCESS_ABORT_NO_DATA_TRANSFER 0x09 | ||
212 | #define I2O_REPLY_STATUS_PROCESS_ABORT_PARTIAL_TRANSFER 0x0A | ||
213 | #define I2O_REPLY_STATUS_TRANSACTION_ERROR 0x0B | ||
214 | #define I2O_REPLY_STATUS_PROGRESS_REPORT 0x80 | ||
215 | |||
216 | /* Status codes and Error Information for Parameter functions */ | ||
217 | |||
218 | #define I2O_PARAMS_STATUS_SUCCESS 0x00 | ||
219 | #define I2O_PARAMS_STATUS_BAD_KEY_ABORT 0x01 | ||
220 | #define I2O_PARAMS_STATUS_BAD_KEY_CONTINUE 0x02 | ||
221 | #define I2O_PARAMS_STATUS_BUFFER_FULL 0x03 | ||
222 | #define I2O_PARAMS_STATUS_BUFFER_TOO_SMALL 0x04 | ||
223 | #define I2O_PARAMS_STATUS_FIELD_UNREADABLE 0x05 | ||
224 | #define I2O_PARAMS_STATUS_FIELD_UNWRITEABLE 0x06 | ||
225 | #define I2O_PARAMS_STATUS_INSUFFICIENT_FIELDS 0x07 | ||
226 | #define I2O_PARAMS_STATUS_INVALID_GROUP_ID 0x08 | ||
227 | #define I2O_PARAMS_STATUS_INVALID_OPERATION 0x09 | ||
228 | #define I2O_PARAMS_STATUS_NO_KEY_FIELD 0x0A | ||
229 | #define I2O_PARAMS_STATUS_NO_SUCH_FIELD 0x0B | ||
230 | #define I2O_PARAMS_STATUS_NON_DYNAMIC_GROUP 0x0C | ||
231 | #define I2O_PARAMS_STATUS_OPERATION_ERROR 0x0D | ||
232 | #define I2O_PARAMS_STATUS_SCALAR_ERROR 0x0E | ||
233 | #define I2O_PARAMS_STATUS_TABLE_ERROR 0x0F | ||
234 | #define I2O_PARAMS_STATUS_WRONG_GROUP_TYPE 0x10 | ||
235 | |||
236 | /* DetailedStatusCode defines for Executive, DDM, Util and Transaction error | ||
237 | * messages: Table 3-2 Detailed Status Codes.*/ | ||
238 | |||
239 | #define I2O_DSC_SUCCESS 0x0000 | ||
240 | #define I2O_DSC_BAD_KEY 0x0002 | ||
241 | #define I2O_DSC_TCL_ERROR 0x0003 | ||
242 | #define I2O_DSC_REPLY_BUFFER_FULL 0x0004 | ||
243 | #define I2O_DSC_NO_SUCH_PAGE 0x0005 | ||
244 | #define I2O_DSC_INSUFFICIENT_RESOURCE_SOFT 0x0006 | ||
245 | #define I2O_DSC_INSUFFICIENT_RESOURCE_HARD 0x0007 | ||
246 | #define I2O_DSC_CHAIN_BUFFER_TOO_LARGE 0x0009 | ||
247 | #define I2O_DSC_UNSUPPORTED_FUNCTION 0x000A | ||
248 | #define I2O_DSC_DEVICE_LOCKED 0x000B | ||
249 | #define I2O_DSC_DEVICE_RESET 0x000C | ||
250 | #define I2O_DSC_INAPPROPRIATE_FUNCTION 0x000D | ||
251 | #define I2O_DSC_INVALID_INITIATOR_ADDRESS 0x000E | ||
252 | #define I2O_DSC_INVALID_MESSAGE_FLAGS 0x000F | ||
253 | #define I2O_DSC_INVALID_OFFSET 0x0010 | ||
254 | #define I2O_DSC_INVALID_PARAMETER 0x0011 | ||
255 | #define I2O_DSC_INVALID_REQUEST 0x0012 | ||
256 | #define I2O_DSC_INVALID_TARGET_ADDRESS 0x0013 | ||
257 | #define I2O_DSC_MESSAGE_TOO_LARGE 0x0014 | ||
258 | #define I2O_DSC_MESSAGE_TOO_SMALL 0x0015 | ||
259 | #define I2O_DSC_MISSING_PARAMETER 0x0016 | ||
260 | #define I2O_DSC_TIMEOUT 0x0017 | ||
261 | #define I2O_DSC_UNKNOWN_ERROR 0x0018 | ||
262 | #define I2O_DSC_UNKNOWN_FUNCTION 0x0019 | ||
263 | #define I2O_DSC_UNSUPPORTED_VERSION 0x001A | ||
264 | #define I2O_DSC_DEVICE_BUSY 0x001B | ||
265 | #define I2O_DSC_DEVICE_NOT_AVAILABLE 0x001C | ||
266 | |||
267 | /* DetailedStatusCode defines for Block Storage Operation: Table 6-7 Detailed | ||
268 | Status Codes.*/ | ||
269 | |||
270 | #define I2O_BSA_DSC_SUCCESS 0x0000 | ||
271 | #define I2O_BSA_DSC_MEDIA_ERROR 0x0001 | ||
272 | #define I2O_BSA_DSC_ACCESS_ERROR 0x0002 | ||
273 | #define I2O_BSA_DSC_DEVICE_FAILURE 0x0003 | ||
274 | #define I2O_BSA_DSC_DEVICE_NOT_READY 0x0004 | ||
275 | #define I2O_BSA_DSC_MEDIA_NOT_PRESENT 0x0005 | ||
276 | #define I2O_BSA_DSC_MEDIA_LOCKED 0x0006 | ||
277 | #define I2O_BSA_DSC_MEDIA_FAILURE 0x0007 | ||
278 | #define I2O_BSA_DSC_PROTOCOL_FAILURE 0x0008 | ||
279 | #define I2O_BSA_DSC_BUS_FAILURE 0x0009 | ||
280 | #define I2O_BSA_DSC_ACCESS_VIOLATION 0x000A | ||
281 | #define I2O_BSA_DSC_WRITE_PROTECTED 0x000B | ||
282 | #define I2O_BSA_DSC_DEVICE_RESET 0x000C | ||
283 | #define I2O_BSA_DSC_VOLUME_CHANGED 0x000D | ||
284 | #define I2O_BSA_DSC_TIMEOUT 0x000E | ||
285 | |||
286 | /* FailureStatusCodes, Table 3-3 Message Failure Codes */ | ||
287 | |||
288 | #define I2O_FSC_TRANSPORT_SERVICE_SUSPENDED 0x81 | ||
289 | #define I2O_FSC_TRANSPORT_SERVICE_TERMINATED 0x82 | ||
290 | #define I2O_FSC_TRANSPORT_CONGESTION 0x83 | ||
291 | #define I2O_FSC_TRANSPORT_FAILURE 0x84 | ||
292 | #define I2O_FSC_TRANSPORT_STATE_ERROR 0x85 | ||
293 | #define I2O_FSC_TRANSPORT_TIME_OUT 0x86 | ||
294 | #define I2O_FSC_TRANSPORT_ROUTING_FAILURE 0x87 | ||
295 | #define I2O_FSC_TRANSPORT_INVALID_VERSION 0x88 | ||
296 | #define I2O_FSC_TRANSPORT_INVALID_OFFSET 0x89 | ||
297 | #define I2O_FSC_TRANSPORT_INVALID_MSG_FLAGS 0x8A | ||
298 | #define I2O_FSC_TRANSPORT_FRAME_TOO_SMALL 0x8B | ||
299 | #define I2O_FSC_TRANSPORT_FRAME_TOO_LARGE 0x8C | ||
300 | #define I2O_FSC_TRANSPORT_INVALID_TARGET_ID 0x8D | ||
301 | #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_ID 0x8E | ||
302 | #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_CONTEXT 0x8F | ||
303 | #define I2O_FSC_TRANSPORT_UNKNOWN_FAILURE 0xFF | ||
304 | |||
305 | /* Device Claim Types */ | ||
306 | #define I2O_CLAIM_PRIMARY 0x01000000 | ||
307 | #define I2O_CLAIM_MANAGEMENT 0x02000000 | ||
308 | #define I2O_CLAIM_AUTHORIZED 0x03000000 | ||
309 | #define I2O_CLAIM_SECONDARY 0x04000000 | ||
310 | |||
311 | /* Message header defines for VersionOffset */ | ||
312 | #define I2OVER15 0x0001 | ||
313 | #define I2OVER20 0x0002 | ||
314 | |||
315 | /* Default is 1.5 */ | ||
316 | #define I2OVERSION I2OVER15 | ||
317 | |||
318 | #define SGL_OFFSET_0 I2OVERSION | ||
319 | #define SGL_OFFSET_4 (0x0040 | I2OVERSION) | ||
320 | #define SGL_OFFSET_5 (0x0050 | I2OVERSION) | ||
321 | #define SGL_OFFSET_6 (0x0060 | I2OVERSION) | ||
322 | #define SGL_OFFSET_7 (0x0070 | I2OVERSION) | ||
323 | #define SGL_OFFSET_8 (0x0080 | I2OVERSION) | ||
324 | #define SGL_OFFSET_9 (0x0090 | I2OVERSION) | ||
325 | #define SGL_OFFSET_10 (0x00A0 | I2OVERSION) | ||
326 | #define SGL_OFFSET_11 (0x00B0 | I2OVERSION) | ||
327 | #define SGL_OFFSET_12 (0x00C0 | I2OVERSION) | ||
328 | #define SGL_OFFSET(x) (((x)<<4) | I2OVERSION) | ||
329 | |||
330 | /* Transaction Reply Lists (TRL) Control Word structure */ | ||
331 | #define TRL_SINGLE_FIXED_LENGTH 0x00 | ||
332 | #define TRL_SINGLE_VARIABLE_LENGTH 0x40 | ||
333 | #define TRL_MULTIPLE_FIXED_LENGTH 0x80 | ||
334 | |||
335 | /* msg header defines for MsgFlags */ | ||
336 | #define MSG_STATIC 0x0100 | ||
337 | #define MSG_64BIT_CNTXT 0x0200 | ||
338 | #define MSG_MULTI_TRANS 0x1000 | ||
339 | #define MSG_FAIL 0x2000 | ||
340 | #define MSG_FINAL 0x4000 | ||
341 | #define MSG_REPLY 0x8000 | ||
342 | |||
343 | /* minimum size msg */ | ||
344 | #define THREE_WORD_MSG_SIZE 0x00030000 | ||
345 | #define FOUR_WORD_MSG_SIZE 0x00040000 | ||
346 | #define FIVE_WORD_MSG_SIZE 0x00050000 | ||
347 | #define SIX_WORD_MSG_SIZE 0x00060000 | ||
348 | #define SEVEN_WORD_MSG_SIZE 0x00070000 | ||
349 | #define EIGHT_WORD_MSG_SIZE 0x00080000 | ||
350 | #define NINE_WORD_MSG_SIZE 0x00090000 | ||
351 | #define TEN_WORD_MSG_SIZE 0x000A0000 | ||
352 | #define ELEVEN_WORD_MSG_SIZE 0x000B0000 | ||
353 | #define I2O_MESSAGE_SIZE(x) ((x)<<16) | ||
354 | |||
355 | /* special TID assignments */ | ||
356 | #define ADAPTER_TID 0 | ||
357 | #define HOST_TID 1 | ||
358 | |||
359 | /* outbound queue defines */ | ||
360 | #define I2O_MAX_OUTBOUND_MSG_FRAMES 128 | ||
361 | #define I2O_OUTBOUND_MSG_FRAME_SIZE 128 /* in 32-bit words */ | ||
362 | |||
363 | /* inbound queue definitions */ | ||
364 | #define I2O_MSG_INPOOL_MIN 32 | ||
365 | #define I2O_INBOUND_MSG_FRAME_SIZE 128 /* in 32-bit words */ | ||
366 | |||
367 | #define I2O_POST_WAIT_OK 0 | ||
368 | #define I2O_POST_WAIT_TIMEOUT -ETIMEDOUT | ||
369 | |||
370 | #define I2O_CONTEXT_LIST_MIN_LENGTH 15 | ||
371 | #define I2O_CONTEXT_LIST_USED 0x01 | ||
372 | #define I2O_CONTEXT_LIST_DELETED 0x02 | ||
373 | |||
374 | /* timeouts */ | ||
375 | #define I2O_TIMEOUT_INIT_OUTBOUND_QUEUE 15 | ||
376 | #define I2O_TIMEOUT_MESSAGE_GET 5 | ||
377 | #define I2O_TIMEOUT_RESET 30 | ||
378 | #define I2O_TIMEOUT_STATUS_GET 5 | ||
379 | #define I2O_TIMEOUT_LCT_GET 360 | ||
380 | #define I2O_TIMEOUT_SCSI_SCB_ABORT 240 | ||
381 | |||
382 | /* retries */ | ||
383 | #define I2O_HRT_GET_TRIES 3 | ||
384 | #define I2O_LCT_GET_TRIES 3 | ||
385 | |||
386 | /* defines for max_sectors and max_phys_segments */ | ||
387 | #define I2O_MAX_SECTORS 1024 | ||
388 | #define I2O_MAX_SECTORS_LIMITED 128 | ||
389 | #define I2O_MAX_PHYS_SEGMENTS BLK_MAX_SEGMENTS | ||
390 | |||
391 | /* | ||
392 | * Message structures | ||
393 | */ | ||
394 | struct i2o_message { | ||
395 | union { | ||
396 | struct { | ||
397 | u8 version_offset; | ||
398 | u8 flags; | ||
399 | u16 size; | ||
400 | u32 target_tid:12; | ||
401 | u32 init_tid:12; | ||
402 | u32 function:8; | ||
403 | u32 icntxt; /* initiator context */ | ||
404 | u32 tcntxt; /* transaction context */ | ||
405 | } s; | ||
406 | u32 head[4]; | ||
407 | } u; | ||
408 | /* List follows */ | ||
409 | u32 body[0]; | ||
410 | }; | ||
411 | |||
412 | /* MFA and I2O message used by mempool */ | ||
413 | struct i2o_msg_mfa { | ||
414 | u32 mfa; /* MFA returned by the controller */ | ||
415 | struct i2o_message msg; /* I2O message */ | ||
416 | }; | ||
417 | |||
418 | /* | ||
419 | * Each I2O device entity has one of these. There is one per device. | ||
420 | */ | ||
421 | struct i2o_device { | ||
422 | i2o_lct_entry lct_data; /* Device LCT information */ | ||
423 | |||
424 | struct i2o_controller *iop; /* Controlling IOP */ | ||
425 | struct list_head list; /* node in IOP devices list */ | ||
426 | |||
427 | struct device device; | ||
428 | |||
429 | struct mutex lock; /* device lock */ | ||
430 | }; | ||
431 | |||
432 | /* | ||
433 | * Event structure provided to the event handling function | ||
434 | */ | ||
435 | struct i2o_event { | ||
436 | struct work_struct work; | ||
437 | struct i2o_device *i2o_dev; /* I2O device pointer from which the | ||
438 | event reply was initiated */ | ||
439 | u16 size; /* Size of data in 32-bit words */ | ||
440 | u32 tcntxt; /* Transaction context used at | ||
441 | registration */ | ||
442 | u32 event_indicator; /* Event indicator from reply */ | ||
443 | u32 data[0]; /* Event data from reply */ | ||
444 | }; | ||
445 | |||
446 | /* | ||
447 | * I2O classes which could be handled by the OSM | ||
448 | */ | ||
449 | struct i2o_class_id { | ||
450 | u16 class_id:12; | ||
451 | }; | ||
452 | |||
453 | /* | ||
454 | * I2O driver structure for OSMs | ||
455 | */ | ||
456 | struct i2o_driver { | ||
457 | char *name; /* OSM name */ | ||
458 | int context; /* Low 8 bits of the transaction info */ | ||
459 | struct i2o_class_id *classes; /* I2O classes that this OSM handles */ | ||
460 | |||
461 | /* Message reply handler */ | ||
462 | int (*reply) (struct i2o_controller *, u32, struct i2o_message *); | ||
463 | |||
464 | /* Event handler */ | ||
465 | work_func_t event; | ||
466 | |||
467 | struct workqueue_struct *event_queue; /* Event queue */ | ||
468 | |||
469 | struct device_driver driver; | ||
470 | |||
471 | /* notification of changes */ | ||
472 | void (*notify_controller_add) (struct i2o_controller *); | ||
473 | void (*notify_controller_remove) (struct i2o_controller *); | ||
474 | void (*notify_device_add) (struct i2o_device *); | ||
475 | void (*notify_device_remove) (struct i2o_device *); | ||
476 | |||
477 | struct semaphore lock; | ||
478 | }; | ||
479 | |||
480 | /* | ||
481 | * Contains DMA mapped address information | ||
482 | */ | ||
483 | struct i2o_dma { | ||
484 | void *virt; | ||
485 | dma_addr_t phys; | ||
486 | size_t len; | ||
487 | }; | ||
488 | |||
489 | /* | ||
490 | * Contains slab cache and mempool information | ||
491 | */ | ||
492 | struct i2o_pool { | ||
493 | char *name; | ||
494 | struct kmem_cache *slab; | ||
495 | mempool_t *mempool; | ||
496 | }; | ||
497 | |||
498 | /* | ||
499 | * Contains IO mapped address information | ||
500 | */ | ||
501 | struct i2o_io { | ||
502 | void __iomem *virt; | ||
503 | unsigned long phys; | ||
504 | unsigned long len; | ||
505 | }; | ||
506 | |||
507 | /* | ||
508 | * Context queue entry, used for 32-bit context on 64-bit systems | ||
509 | */ | ||
510 | struct i2o_context_list_element { | ||
511 | struct list_head list; | ||
512 | u32 context; | ||
513 | void *ptr; | ||
514 | unsigned long timestamp; | ||
515 | }; | ||
516 | |||
517 | /* | ||
518 | * Each I2O controller has one of these objects | ||
519 | */ | ||
520 | struct i2o_controller { | ||
521 | char name[16]; | ||
522 | int unit; | ||
523 | int type; | ||
524 | |||
525 | struct pci_dev *pdev; /* PCI device */ | ||
526 | |||
527 | unsigned int promise:1; /* Promise controller */ | ||
528 | unsigned int adaptec:1; /* DPT / Adaptec controller */ | ||
529 | unsigned int raptor:1; /* split bar */ | ||
530 | unsigned int no_quiesce:1; /* dont quiesce before reset */ | ||
531 | unsigned int short_req:1; /* use small block sizes */ | ||
532 | unsigned int limit_sectors:1; /* limit number of sectors / request */ | ||
533 | unsigned int pae_support:1; /* controller has 64-bit SGL support */ | ||
534 | |||
535 | struct list_head devices; /* list of I2O devices */ | ||
536 | struct list_head list; /* Controller list */ | ||
537 | |||
538 | void __iomem *in_port; /* Inbout port address */ | ||
539 | void __iomem *out_port; /* Outbound port address */ | ||
540 | void __iomem *irq_status; /* Interrupt status register address */ | ||
541 | void __iomem *irq_mask; /* Interrupt mask register address */ | ||
542 | |||
543 | struct i2o_dma status; /* IOP status block */ | ||
544 | |||
545 | struct i2o_dma hrt; /* HW Resource Table */ | ||
546 | i2o_lct *lct; /* Logical Config Table */ | ||
547 | struct i2o_dma dlct; /* Temp LCT */ | ||
548 | struct mutex lct_lock; /* Lock for LCT updates */ | ||
549 | struct i2o_dma status_block; /* IOP status block */ | ||
550 | |||
551 | struct i2o_io base; /* controller messaging unit */ | ||
552 | struct i2o_io in_queue; /* inbound message queue Host->IOP */ | ||
553 | struct i2o_dma out_queue; /* outbound message queue IOP->Host */ | ||
554 | |||
555 | struct i2o_pool in_msg; /* mempool for inbound messages */ | ||
556 | |||
557 | unsigned int battery:1; /* Has a battery backup */ | ||
558 | unsigned int io_alloc:1; /* An I/O resource was allocated */ | ||
559 | unsigned int mem_alloc:1; /* A memory resource was allocated */ | ||
560 | |||
561 | struct resource io_resource; /* I/O resource allocated to the IOP */ | ||
562 | struct resource mem_resource; /* Mem resource allocated to the IOP */ | ||
563 | |||
564 | struct device device; | ||
565 | struct i2o_device *exec; /* Executive */ | ||
566 | #if BITS_PER_LONG == 64 | ||
567 | spinlock_t context_list_lock; /* lock for context_list */ | ||
568 | atomic_t context_list_counter; /* needed for unique contexts */ | ||
569 | struct list_head context_list; /* list of context id's | ||
570 | and pointers */ | ||
571 | #endif | ||
572 | spinlock_t lock; /* lock for controller | ||
573 | configuration */ | ||
574 | void *driver_data[I2O_MAX_DRIVERS]; /* storage for drivers */ | ||
575 | }; | ||
576 | |||
577 | /* | ||
578 | * I2O System table entry | ||
579 | * | ||
580 | * The system table contains information about all the IOPs in the | ||
581 | * system. It is sent to all IOPs so that they can create peer2peer | ||
582 | * connections between them. | ||
583 | */ | ||
584 | struct i2o_sys_tbl_entry { | ||
585 | u16 org_id; | ||
586 | u16 reserved1; | ||
587 | u32 iop_id:12; | ||
588 | u32 reserved2:20; | ||
589 | u16 seg_num:12; | ||
590 | u16 i2o_version:4; | ||
591 | u8 iop_state; | ||
592 | u8 msg_type; | ||
593 | u16 frame_size; | ||
594 | u16 reserved3; | ||
595 | u32 last_changed; | ||
596 | u32 iop_capabilities; | ||
597 | u32 inbound_low; | ||
598 | u32 inbound_high; | ||
599 | }; | ||
600 | |||
601 | struct i2o_sys_tbl { | ||
602 | u8 num_entries; | ||
603 | u8 version; | ||
604 | u16 reserved1; | ||
605 | u32 change_ind; | ||
606 | u32 reserved2; | ||
607 | u32 reserved3; | ||
608 | struct i2o_sys_tbl_entry iops[0]; | ||
609 | }; | ||
610 | |||
611 | extern struct list_head i2o_controllers; | ||
612 | |||
613 | /* Message functions */ | ||
614 | extern struct i2o_message *i2o_msg_get_wait(struct i2o_controller *, int); | ||
615 | extern int i2o_msg_post_wait_mem(struct i2o_controller *, struct i2o_message *, | ||
616 | unsigned long, struct i2o_dma *); | ||
617 | |||
618 | /* IOP functions */ | ||
619 | extern int i2o_status_get(struct i2o_controller *); | ||
620 | |||
621 | extern int i2o_event_register(struct i2o_device *, struct i2o_driver *, int, | ||
622 | u32); | ||
623 | extern struct i2o_device *i2o_iop_find_device(struct i2o_controller *, u16); | ||
624 | extern struct i2o_controller *i2o_find_iop(int); | ||
625 | |||
626 | /* Functions needed for handling 64-bit pointers in 32-bit context */ | ||
627 | #if BITS_PER_LONG == 64 | ||
628 | extern u32 i2o_cntxt_list_add(struct i2o_controller *, void *); | ||
629 | extern void *i2o_cntxt_list_get(struct i2o_controller *, u32); | ||
630 | extern u32 i2o_cntxt_list_remove(struct i2o_controller *, void *); | ||
631 | extern u32 i2o_cntxt_list_get_ptr(struct i2o_controller *, void *); | ||
632 | |||
633 | static inline u32 i2o_ptr_low(void *ptr) | ||
634 | { | ||
635 | return (u32) (u64) ptr; | ||
636 | }; | ||
637 | |||
638 | static inline u32 i2o_ptr_high(void *ptr) | ||
639 | { | ||
640 | return (u32) ((u64) ptr >> 32); | ||
641 | }; | ||
642 | |||
643 | static inline u32 i2o_dma_low(dma_addr_t dma_addr) | ||
644 | { | ||
645 | return (u32) (u64) dma_addr; | ||
646 | }; | ||
647 | |||
648 | static inline u32 i2o_dma_high(dma_addr_t dma_addr) | ||
649 | { | ||
650 | return (u32) ((u64) dma_addr >> 32); | ||
651 | }; | ||
652 | #else | ||
653 | static inline u32 i2o_cntxt_list_add(struct i2o_controller *c, void *ptr) | ||
654 | { | ||
655 | return (u32) ptr; | ||
656 | }; | ||
657 | |||
658 | static inline void *i2o_cntxt_list_get(struct i2o_controller *c, u32 context) | ||
659 | { | ||
660 | return (void *)context; | ||
661 | }; | ||
662 | |||
663 | static inline u32 i2o_cntxt_list_remove(struct i2o_controller *c, void *ptr) | ||
664 | { | ||
665 | return (u32) ptr; | ||
666 | }; | ||
667 | |||
668 | static inline u32 i2o_cntxt_list_get_ptr(struct i2o_controller *c, void *ptr) | ||
669 | { | ||
670 | return (u32) ptr; | ||
671 | }; | ||
672 | |||
673 | static inline u32 i2o_ptr_low(void *ptr) | ||
674 | { | ||
675 | return (u32) ptr; | ||
676 | }; | ||
677 | |||
678 | static inline u32 i2o_ptr_high(void *ptr) | ||
679 | { | ||
680 | return 0; | ||
681 | }; | ||
682 | |||
683 | static inline u32 i2o_dma_low(dma_addr_t dma_addr) | ||
684 | { | ||
685 | return (u32) dma_addr; | ||
686 | }; | ||
687 | |||
688 | static inline u32 i2o_dma_high(dma_addr_t dma_addr) | ||
689 | { | ||
690 | return 0; | ||
691 | }; | ||
692 | #endif | ||
693 | |||
694 | extern u16 i2o_sg_tablesize(struct i2o_controller *c, u16 body_size); | ||
695 | extern dma_addr_t i2o_dma_map_single(struct i2o_controller *c, void *ptr, | ||
696 | size_t size, | ||
697 | enum dma_data_direction direction, | ||
698 | u32 ** sg_ptr); | ||
699 | extern int i2o_dma_map_sg(struct i2o_controller *c, | ||
700 | struct scatterlist *sg, int sg_count, | ||
701 | enum dma_data_direction direction, | ||
702 | u32 ** sg_ptr); | ||
703 | extern int i2o_dma_alloc(struct device *dev, struct i2o_dma *addr, size_t len); | ||
704 | extern void i2o_dma_free(struct device *dev, struct i2o_dma *addr); | ||
705 | extern int i2o_dma_realloc(struct device *dev, struct i2o_dma *addr, | ||
706 | size_t len); | ||
707 | extern int i2o_pool_alloc(struct i2o_pool *pool, const char *name, | ||
708 | size_t size, int min_nr); | ||
709 | extern void i2o_pool_free(struct i2o_pool *pool); | ||
710 | /* I2O driver (OSM) functions */ | ||
711 | extern int i2o_driver_register(struct i2o_driver *); | ||
712 | extern void i2o_driver_unregister(struct i2o_driver *); | ||
713 | |||
714 | /** | ||
715 | * i2o_driver_notify_controller_add - Send notification of added controller | ||
716 | * @drv: I2O driver | ||
717 | * @c: I2O controller | ||
718 | * | ||
719 | * Send notification of added controller to a single registered driver. | ||
720 | */ | ||
721 | static inline void i2o_driver_notify_controller_add(struct i2o_driver *drv, | ||
722 | struct i2o_controller *c) | ||
723 | { | ||
724 | if (drv->notify_controller_add) | ||
725 | drv->notify_controller_add(c); | ||
726 | }; | ||
727 | |||
728 | /** | ||
729 | * i2o_driver_notify_controller_remove - Send notification of removed controller | ||
730 | * @drv: I2O driver | ||
731 | * @c: I2O controller | ||
732 | * | ||
733 | * Send notification of removed controller to a single registered driver. | ||
734 | */ | ||
735 | static inline void i2o_driver_notify_controller_remove(struct i2o_driver *drv, | ||
736 | struct i2o_controller *c) | ||
737 | { | ||
738 | if (drv->notify_controller_remove) | ||
739 | drv->notify_controller_remove(c); | ||
740 | }; | ||
741 | |||
742 | /** | ||
743 | * i2o_driver_notify_device_add - Send notification of added device | ||
744 | * @drv: I2O driver | ||
745 | * @i2o_dev: the added i2o_device | ||
746 | * | ||
747 | * Send notification of added device to a single registered driver. | ||
748 | */ | ||
749 | static inline void i2o_driver_notify_device_add(struct i2o_driver *drv, | ||
750 | struct i2o_device *i2o_dev) | ||
751 | { | ||
752 | if (drv->notify_device_add) | ||
753 | drv->notify_device_add(i2o_dev); | ||
754 | }; | ||
755 | |||
756 | /** | ||
757 | * i2o_driver_notify_device_remove - Send notification of removed device | ||
758 | * @drv: I2O driver | ||
759 | * @i2o_dev: the added i2o_device | ||
760 | * | ||
761 | * Send notification of removed device to a single registered driver. | ||
762 | */ | ||
763 | static inline void i2o_driver_notify_device_remove(struct i2o_driver *drv, | ||
764 | struct i2o_device *i2o_dev) | ||
765 | { | ||
766 | if (drv->notify_device_remove) | ||
767 | drv->notify_device_remove(i2o_dev); | ||
768 | }; | ||
769 | |||
770 | extern void i2o_driver_notify_controller_add_all(struct i2o_controller *); | ||
771 | extern void i2o_driver_notify_controller_remove_all(struct i2o_controller *); | ||
772 | extern void i2o_driver_notify_device_add_all(struct i2o_device *); | ||
773 | extern void i2o_driver_notify_device_remove_all(struct i2o_device *); | ||
774 | |||
775 | /* I2O device functions */ | ||
776 | extern int i2o_device_claim(struct i2o_device *); | ||
777 | extern int i2o_device_claim_release(struct i2o_device *); | ||
778 | |||
779 | /* Exec OSM functions */ | ||
780 | extern int i2o_exec_lct_get(struct i2o_controller *); | ||
781 | |||
782 | /* device / driver / kobject conversion functions */ | ||
783 | #define to_i2o_driver(drv) container_of(drv,struct i2o_driver, driver) | ||
784 | #define to_i2o_device(dev) container_of(dev, struct i2o_device, device) | ||
785 | #define to_i2o_controller(dev) container_of(dev, struct i2o_controller, device) | ||
786 | |||
787 | /** | ||
788 | * i2o_out_to_virt - Turn an I2O message to a virtual address | ||
789 | * @c: controller | ||
790 | * @m: message engine value | ||
791 | * | ||
792 | * Turn a receive message from an I2O controller bus address into | ||
793 | * a Linux virtual address. The shared page frame is a linear block | ||
794 | * so we simply have to shift the offset. This function does not | ||
795 | * work for sender side messages as they are ioremap objects | ||
796 | * provided by the I2O controller. | ||
797 | */ | ||
798 | static inline struct i2o_message *i2o_msg_out_to_virt(struct i2o_controller *c, | ||
799 | u32 m) | ||
800 | { | ||
801 | BUG_ON(m < c->out_queue.phys | ||
802 | || m >= c->out_queue.phys + c->out_queue.len); | ||
803 | |||
804 | return c->out_queue.virt + (m - c->out_queue.phys); | ||
805 | }; | ||
806 | |||
807 | /** | ||
808 | * i2o_msg_in_to_virt - Turn an I2O message to a virtual address | ||
809 | * @c: controller | ||
810 | * @m: message engine value | ||
811 | * | ||
812 | * Turn a send message from an I2O controller bus address into | ||
813 | * a Linux virtual address. The shared page frame is a linear block | ||
814 | * so we simply have to shift the offset. This function does not | ||
815 | * work for receive side messages as they are kmalloc objects | ||
816 | * in a different pool. | ||
817 | */ | ||
818 | static inline struct i2o_message __iomem *i2o_msg_in_to_virt(struct | ||
819 | i2o_controller *c, | ||
820 | u32 m) | ||
821 | { | ||
822 | return c->in_queue.virt + m; | ||
823 | }; | ||
824 | |||
825 | /** | ||
826 | * i2o_msg_get - obtain an I2O message from the IOP | ||
827 | * @c: I2O controller | ||
828 | * | ||
829 | * This function tries to get a message frame. If no message frame is | ||
830 | * available do not wait until one is available (see also i2o_msg_get_wait). | ||
831 | * The returned pointer to the message frame is not in I/O memory, it is | ||
832 | * allocated from a mempool. But because a MFA is allocated from the | ||
833 | * controller too it is guaranteed that i2o_msg_post() will never fail. | ||
834 | * | ||
835 | * On a success a pointer to the message frame is returned. If the message | ||
836 | * queue is empty -EBUSY is returned and if no memory is available -ENOMEM | ||
837 | * is returned. | ||
838 | */ | ||
839 | static inline struct i2o_message *i2o_msg_get(struct i2o_controller *c) | ||
840 | { | ||
841 | struct i2o_msg_mfa *mmsg = mempool_alloc(c->in_msg.mempool, GFP_ATOMIC); | ||
842 | if (!mmsg) | ||
843 | return ERR_PTR(-ENOMEM); | ||
844 | |||
845 | mmsg->mfa = readl(c->in_port); | ||
846 | if (unlikely(mmsg->mfa >= c->in_queue.len)) { | ||
847 | u32 mfa = mmsg->mfa; | ||
848 | |||
849 | mempool_free(mmsg, c->in_msg.mempool); | ||
850 | |||
851 | if (mfa == I2O_QUEUE_EMPTY) | ||
852 | return ERR_PTR(-EBUSY); | ||
853 | return ERR_PTR(-EFAULT); | ||
854 | } | ||
855 | |||
856 | return &mmsg->msg; | ||
857 | }; | ||
858 | |||
859 | /** | ||
860 | * i2o_msg_post - Post I2O message to I2O controller | ||
861 | * @c: I2O controller to which the message should be send | ||
862 | * @msg: message returned by i2o_msg_get() | ||
863 | * | ||
864 | * Post the message to the I2O controller and return immediately. | ||
865 | */ | ||
866 | static inline void i2o_msg_post(struct i2o_controller *c, | ||
867 | struct i2o_message *msg) | ||
868 | { | ||
869 | struct i2o_msg_mfa *mmsg; | ||
870 | |||
871 | mmsg = container_of(msg, struct i2o_msg_mfa, msg); | ||
872 | memcpy_toio(i2o_msg_in_to_virt(c, mmsg->mfa), msg, | ||
873 | (le32_to_cpu(msg->u.head[0]) >> 16) << 2); | ||
874 | writel(mmsg->mfa, c->in_port); | ||
875 | mempool_free(mmsg, c->in_msg.mempool); | ||
876 | }; | ||
877 | |||
878 | /** | ||
879 | * i2o_msg_post_wait - Post and wait a message and wait until return | ||
880 | * @c: controller | ||
881 | * @msg: message to post | ||
882 | * @timeout: time in seconds to wait | ||
883 | * | ||
884 | * This API allows an OSM to post a message and then be told whether or | ||
885 | * not the system received a successful reply. If the message times out | ||
886 | * then the value '-ETIMEDOUT' is returned. | ||
887 | * | ||
888 | * Returns 0 on success or negative error code on failure. | ||
889 | */ | ||
890 | static inline int i2o_msg_post_wait(struct i2o_controller *c, | ||
891 | struct i2o_message *msg, | ||
892 | unsigned long timeout) | ||
893 | { | ||
894 | return i2o_msg_post_wait_mem(c, msg, timeout, NULL); | ||
895 | }; | ||
896 | |||
897 | /** | ||
898 | * i2o_msg_nop_mfa - Returns a fetched MFA back to the controller | ||
899 | * @c: I2O controller from which the MFA was fetched | ||
900 | * @mfa: MFA which should be returned | ||
901 | * | ||
902 | * This function must be used for preserved messages, because i2o_msg_nop() | ||
903 | * also returns the allocated memory back to the msg_pool mempool. | ||
904 | */ | ||
905 | static inline void i2o_msg_nop_mfa(struct i2o_controller *c, u32 mfa) | ||
906 | { | ||
907 | struct i2o_message __iomem *msg; | ||
908 | u32 nop[3] = { | ||
909 | THREE_WORD_MSG_SIZE | SGL_OFFSET_0, | ||
910 | I2O_CMD_UTIL_NOP << 24 | HOST_TID << 12 | ADAPTER_TID, | ||
911 | 0x00000000 | ||
912 | }; | ||
913 | |||
914 | msg = i2o_msg_in_to_virt(c, mfa); | ||
915 | memcpy_toio(msg, nop, sizeof(nop)); | ||
916 | writel(mfa, c->in_port); | ||
917 | }; | ||
918 | |||
919 | /** | ||
920 | * i2o_msg_nop - Returns a message which is not used | ||
921 | * @c: I2O controller from which the message was created | ||
922 | * @msg: message which should be returned | ||
923 | * | ||
924 | * If you fetch a message via i2o_msg_get, and can't use it, you must | ||
925 | * return the message with this function. Otherwise the MFA is lost as well | ||
926 | * as the allocated memory from the mempool. | ||
927 | */ | ||
928 | static inline void i2o_msg_nop(struct i2o_controller *c, | ||
929 | struct i2o_message *msg) | ||
930 | { | ||
931 | struct i2o_msg_mfa *mmsg; | ||
932 | mmsg = container_of(msg, struct i2o_msg_mfa, msg); | ||
933 | |||
934 | i2o_msg_nop_mfa(c, mmsg->mfa); | ||
935 | mempool_free(mmsg, c->in_msg.mempool); | ||
936 | }; | ||
937 | |||
938 | /** | ||
939 | * i2o_flush_reply - Flush reply from I2O controller | ||
940 | * @c: I2O controller | ||
941 | * @m: the message identifier | ||
942 | * | ||
943 | * The I2O controller must be informed that the reply message is not needed | ||
944 | * anymore. If you forget to flush the reply, the message frame can't be | ||
945 | * used by the controller anymore and is therefore lost. | ||
946 | */ | ||
947 | static inline void i2o_flush_reply(struct i2o_controller *c, u32 m) | ||
948 | { | ||
949 | writel(m, c->out_port); | ||
950 | }; | ||
951 | |||
952 | /* | ||
953 | * Endian handling wrapped into the macro - keeps the core code | ||
954 | * cleaner. | ||
955 | */ | ||
956 | |||
957 | #define i2o_raw_writel(val, mem) __raw_writel(cpu_to_le32(val), mem) | ||
958 | |||
959 | extern int i2o_parm_field_get(struct i2o_device *, int, int, void *, int); | ||
960 | extern int i2o_parm_table_get(struct i2o_device *, int, int, int, void *, int, | ||
961 | void *, int); | ||
962 | |||
963 | /* debugging and troubleshooting/diagnostic helpers. */ | ||
964 | #define osm_printk(level, format, arg...) \ | ||
965 | printk(level "%s: " format, OSM_NAME , ## arg) | ||
966 | |||
967 | #ifdef DEBUG | ||
968 | #define osm_debug(format, arg...) \ | ||
969 | osm_printk(KERN_DEBUG, format , ## arg) | ||
970 | #else | ||
971 | #define osm_debug(format, arg...) \ | ||
972 | do { } while (0) | ||
973 | #endif | ||
974 | |||
975 | #define osm_err(format, arg...) \ | ||
976 | osm_printk(KERN_ERR, format , ## arg) | ||
977 | #define osm_info(format, arg...) \ | ||
978 | osm_printk(KERN_INFO, format , ## arg) | ||
979 | #define osm_warn(format, arg...) \ | ||
980 | osm_printk(KERN_WARNING, format , ## arg) | ||
981 | |||
982 | /* debugging functions */ | ||
983 | extern void i2o_report_status(const char *, const char *, struct i2o_message *); | ||
984 | extern void i2o_dump_message(struct i2o_message *); | ||
985 | extern void i2o_dump_hrt(struct i2o_controller *c); | ||
986 | extern void i2o_debug_state(struct i2o_controller *c); | ||
987 | |||
988 | #endif /* _I2O_H */ | ||
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index 4f4eea8a6288..b9c7897dc566 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
@@ -1017,6 +1017,15 @@ struct ieee80211_mmie { | |||
1017 | u8 mic[8]; | 1017 | u8 mic[8]; |
1018 | } __packed; | 1018 | } __packed; |
1019 | 1019 | ||
1020 | /* Management MIC information element (IEEE 802.11w) for GMAC and CMAC-256 */ | ||
1021 | struct ieee80211_mmie_16 { | ||
1022 | u8 element_id; | ||
1023 | u8 length; | ||
1024 | __le16 key_id; | ||
1025 | u8 sequence_number[6]; | ||
1026 | u8 mic[16]; | ||
1027 | } __packed; | ||
1028 | |||
1020 | struct ieee80211_vendor_ie { | 1029 | struct ieee80211_vendor_ie { |
1021 | u8 element_id; | 1030 | u8 element_id; |
1022 | u8 len; | 1031 | u8 len; |
@@ -1994,9 +2003,15 @@ enum ieee80211_key_len { | |||
1994 | WLAN_KEY_LEN_WEP40 = 5, | 2003 | WLAN_KEY_LEN_WEP40 = 5, |
1995 | WLAN_KEY_LEN_WEP104 = 13, | 2004 | WLAN_KEY_LEN_WEP104 = 13, |
1996 | WLAN_KEY_LEN_CCMP = 16, | 2005 | WLAN_KEY_LEN_CCMP = 16, |
2006 | WLAN_KEY_LEN_CCMP_256 = 32, | ||
1997 | WLAN_KEY_LEN_TKIP = 32, | 2007 | WLAN_KEY_LEN_TKIP = 32, |
1998 | WLAN_KEY_LEN_AES_CMAC = 16, | 2008 | WLAN_KEY_LEN_AES_CMAC = 16, |
1999 | WLAN_KEY_LEN_SMS4 = 32, | 2009 | WLAN_KEY_LEN_SMS4 = 32, |
2010 | WLAN_KEY_LEN_GCMP = 16, | ||
2011 | WLAN_KEY_LEN_GCMP_256 = 32, | ||
2012 | WLAN_KEY_LEN_BIP_CMAC_256 = 32, | ||
2013 | WLAN_KEY_LEN_BIP_GMAC_128 = 16, | ||
2014 | WLAN_KEY_LEN_BIP_GMAC_256 = 32, | ||
2000 | }; | 2015 | }; |
2001 | 2016 | ||
2002 | #define IEEE80211_WEP_IV_LEN 4 | 2017 | #define IEEE80211_WEP_IV_LEN 4 |
@@ -2004,9 +2019,16 @@ enum ieee80211_key_len { | |||
2004 | #define IEEE80211_CCMP_HDR_LEN 8 | 2019 | #define IEEE80211_CCMP_HDR_LEN 8 |
2005 | #define IEEE80211_CCMP_MIC_LEN 8 | 2020 | #define IEEE80211_CCMP_MIC_LEN 8 |
2006 | #define IEEE80211_CCMP_PN_LEN 6 | 2021 | #define IEEE80211_CCMP_PN_LEN 6 |
2022 | #define IEEE80211_CCMP_256_HDR_LEN 8 | ||
2023 | #define IEEE80211_CCMP_256_MIC_LEN 16 | ||
2024 | #define IEEE80211_CCMP_256_PN_LEN 6 | ||
2007 | #define IEEE80211_TKIP_IV_LEN 8 | 2025 | #define IEEE80211_TKIP_IV_LEN 8 |
2008 | #define IEEE80211_TKIP_ICV_LEN 4 | 2026 | #define IEEE80211_TKIP_ICV_LEN 4 |
2009 | #define IEEE80211_CMAC_PN_LEN 6 | 2027 | #define IEEE80211_CMAC_PN_LEN 6 |
2028 | #define IEEE80211_GMAC_PN_LEN 6 | ||
2029 | #define IEEE80211_GCMP_HDR_LEN 8 | ||
2030 | #define IEEE80211_GCMP_MIC_LEN 16 | ||
2031 | #define IEEE80211_GCMP_PN_LEN 6 | ||
2010 | 2032 | ||
2011 | /* Public action codes */ | 2033 | /* Public action codes */ |
2012 | enum ieee80211_pub_actioncode { | 2034 | enum ieee80211_pub_actioncode { |
@@ -2230,6 +2252,11 @@ enum ieee80211_sa_query_action { | |||
2230 | #define WLAN_CIPHER_SUITE_WEP104 0x000FAC05 | 2252 | #define WLAN_CIPHER_SUITE_WEP104 0x000FAC05 |
2231 | #define WLAN_CIPHER_SUITE_AES_CMAC 0x000FAC06 | 2253 | #define WLAN_CIPHER_SUITE_AES_CMAC 0x000FAC06 |
2232 | #define WLAN_CIPHER_SUITE_GCMP 0x000FAC08 | 2254 | #define WLAN_CIPHER_SUITE_GCMP 0x000FAC08 |
2255 | #define WLAN_CIPHER_SUITE_GCMP_256 0x000FAC09 | ||
2256 | #define WLAN_CIPHER_SUITE_CCMP_256 0x000FAC0A | ||
2257 | #define WLAN_CIPHER_SUITE_BIP_GMAC_128 0x000FAC0B | ||
2258 | #define WLAN_CIPHER_SUITE_BIP_GMAC_256 0x000FAC0C | ||
2259 | #define WLAN_CIPHER_SUITE_BIP_CMAC_256 0x000FAC0D | ||
2233 | 2260 | ||
2234 | #define WLAN_CIPHER_SUITE_SMS4 0x00147201 | 2261 | #define WLAN_CIPHER_SUITE_SMS4 0x00147201 |
2235 | 2262 | ||
diff --git a/include/linux/if_bridge.h b/include/linux/if_bridge.h index 0a8ce762a47f..a57bca2ea97e 100644 --- a/include/linux/if_bridge.h +++ b/include/linux/if_bridge.h | |||
@@ -50,24 +50,6 @@ extern void brioctl_set(int (*ioctl_hook)(struct net *, unsigned int, void __use | |||
50 | typedef int br_should_route_hook_t(struct sk_buff *skb); | 50 | typedef int br_should_route_hook_t(struct sk_buff *skb); |
51 | extern br_should_route_hook_t __rcu *br_should_route_hook; | 51 | extern br_should_route_hook_t __rcu *br_should_route_hook; |
52 | 52 | ||
53 | #if IS_ENABLED(CONFIG_BRIDGE) | ||
54 | int br_fdb_external_learn_add(struct net_device *dev, | ||
55 | const unsigned char *addr, u16 vid); | ||
56 | int br_fdb_external_learn_del(struct net_device *dev, | ||
57 | const unsigned char *addr, u16 vid); | ||
58 | #else | ||
59 | static inline int br_fdb_external_learn_add(struct net_device *dev, | ||
60 | const unsigned char *addr, u16 vid) | ||
61 | { | ||
62 | return 0; | ||
63 | } | ||
64 | static inline int br_fdb_external_learn_del(struct net_device *dev, | ||
65 | const unsigned char *addr, u16 vid) | ||
66 | { | ||
67 | return 0; | ||
68 | } | ||
69 | #endif | ||
70 | |||
71 | #if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_BRIDGE_IGMP_SNOOPING) | 53 | #if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_BRIDGE_IGMP_SNOOPING) |
72 | int br_multicast_list_adjacent(struct net_device *dev, | 54 | int br_multicast_list_adjacent(struct net_device *dev, |
73 | struct list_head *br_ip_list); | 55 | struct list_head *br_ip_list); |
diff --git a/include/linux/if_vlan.h b/include/linux/if_vlan.h index 960e666c51e4..b11b28a30b9e 100644 --- a/include/linux/if_vlan.h +++ b/include/linux/if_vlan.h | |||
@@ -78,9 +78,9 @@ static inline bool is_vlan_dev(struct net_device *dev) | |||
78 | return dev->priv_flags & IFF_802_1Q_VLAN; | 78 | return dev->priv_flags & IFF_802_1Q_VLAN; |
79 | } | 79 | } |
80 | 80 | ||
81 | #define vlan_tx_tag_present(__skb) ((__skb)->vlan_tci & VLAN_TAG_PRESENT) | 81 | #define skb_vlan_tag_present(__skb) ((__skb)->vlan_tci & VLAN_TAG_PRESENT) |
82 | #define vlan_tx_tag_get(__skb) ((__skb)->vlan_tci & ~VLAN_TAG_PRESENT) | 82 | #define skb_vlan_tag_get(__skb) ((__skb)->vlan_tci & ~VLAN_TAG_PRESENT) |
83 | #define vlan_tx_tag_get_id(__skb) ((__skb)->vlan_tci & VLAN_VID_MASK) | 83 | #define skb_vlan_tag_get_id(__skb) ((__skb)->vlan_tci & VLAN_VID_MASK) |
84 | 84 | ||
85 | /** | 85 | /** |
86 | * struct vlan_pcpu_stats - VLAN percpu rx/tx stats | 86 | * struct vlan_pcpu_stats - VLAN percpu rx/tx stats |
@@ -376,7 +376,7 @@ static inline struct sk_buff *vlan_insert_tag_set_proto(struct sk_buff *skb, | |||
376 | static inline struct sk_buff *__vlan_hwaccel_push_inside(struct sk_buff *skb) | 376 | static inline struct sk_buff *__vlan_hwaccel_push_inside(struct sk_buff *skb) |
377 | { | 377 | { |
378 | skb = vlan_insert_tag_set_proto(skb, skb->vlan_proto, | 378 | skb = vlan_insert_tag_set_proto(skb, skb->vlan_proto, |
379 | vlan_tx_tag_get(skb)); | 379 | skb_vlan_tag_get(skb)); |
380 | if (likely(skb)) | 380 | if (likely(skb)) |
381 | skb->vlan_tci = 0; | 381 | skb->vlan_tci = 0; |
382 | return skb; | 382 | return skb; |
@@ -393,7 +393,7 @@ static inline struct sk_buff *__vlan_hwaccel_push_inside(struct sk_buff *skb) | |||
393 | */ | 393 | */ |
394 | static inline struct sk_buff *vlan_hwaccel_push_inside(struct sk_buff *skb) | 394 | static inline struct sk_buff *vlan_hwaccel_push_inside(struct sk_buff *skb) |
395 | { | 395 | { |
396 | if (vlan_tx_tag_present(skb)) | 396 | if (skb_vlan_tag_present(skb)) |
397 | skb = __vlan_hwaccel_push_inside(skb); | 397 | skb = __vlan_hwaccel_push_inside(skb); |
398 | return skb; | 398 | return skb; |
399 | } | 399 | } |
@@ -442,8 +442,8 @@ static inline int __vlan_get_tag(const struct sk_buff *skb, u16 *vlan_tci) | |||
442 | static inline int __vlan_hwaccel_get_tag(const struct sk_buff *skb, | 442 | static inline int __vlan_hwaccel_get_tag(const struct sk_buff *skb, |
443 | u16 *vlan_tci) | 443 | u16 *vlan_tci) |
444 | { | 444 | { |
445 | if (vlan_tx_tag_present(skb)) { | 445 | if (skb_vlan_tag_present(skb)) { |
446 | *vlan_tci = vlan_tx_tag_get(skb); | 446 | *vlan_tci = skb_vlan_tag_get(skb); |
447 | return 0; | 447 | return 0; |
448 | } else { | 448 | } else { |
449 | *vlan_tci = 0; | 449 | *vlan_tci = 0; |
diff --git a/include/linux/iio/buffer.h b/include/linux/iio/buffer.h index 519392763393..b65850a41127 100644 --- a/include/linux/iio/buffer.h +++ b/include/linux/iio/buffer.h | |||
@@ -25,9 +25,7 @@ struct iio_buffer; | |||
25 | * available. | 25 | * available. |
26 | * @request_update: if a parameter change has been marked, update underlying | 26 | * @request_update: if a parameter change has been marked, update underlying |
27 | * storage. | 27 | * storage. |
28 | * @get_bytes_per_datum:get current bytes per datum | ||
29 | * @set_bytes_per_datum:set number of bytes per datum | 28 | * @set_bytes_per_datum:set number of bytes per datum |
30 | * @get_length: get number of datums in buffer | ||
31 | * @set_length: set number of datums in buffer | 29 | * @set_length: set number of datums in buffer |
32 | * @release: called when the last reference to the buffer is dropped, | 30 | * @release: called when the last reference to the buffer is dropped, |
33 | * should free all resources allocated by the buffer. | 31 | * should free all resources allocated by the buffer. |
@@ -49,9 +47,7 @@ struct iio_buffer_access_funcs { | |||
49 | 47 | ||
50 | int (*request_update)(struct iio_buffer *buffer); | 48 | int (*request_update)(struct iio_buffer *buffer); |
51 | 49 | ||
52 | int (*get_bytes_per_datum)(struct iio_buffer *buffer); | ||
53 | int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd); | 50 | int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd); |
54 | int (*get_length)(struct iio_buffer *buffer); | ||
55 | int (*set_length)(struct iio_buffer *buffer, int length); | 51 | int (*set_length)(struct iio_buffer *buffer, int length); |
56 | 52 | ||
57 | void (*release)(struct iio_buffer *buffer); | 53 | void (*release)(struct iio_buffer *buffer); |
@@ -85,10 +81,11 @@ struct iio_buffer { | |||
85 | bool scan_timestamp; | 81 | bool scan_timestamp; |
86 | const struct iio_buffer_access_funcs *access; | 82 | const struct iio_buffer_access_funcs *access; |
87 | struct list_head scan_el_dev_attr_list; | 83 | struct list_head scan_el_dev_attr_list; |
84 | struct attribute_group buffer_group; | ||
88 | struct attribute_group scan_el_group; | 85 | struct attribute_group scan_el_group; |
89 | wait_queue_head_t pollq; | 86 | wait_queue_head_t pollq; |
90 | bool stufftoread; | 87 | bool stufftoread; |
91 | const struct attribute_group *attrs; | 88 | const struct attribute **attrs; |
92 | struct list_head demux_list; | 89 | struct list_head demux_list; |
93 | void *demux_bounce; | 90 | void *demux_bounce; |
94 | struct list_head buffer_list; | 91 | struct list_head buffer_list; |
@@ -117,15 +114,6 @@ int iio_scan_mask_query(struct iio_dev *indio_dev, | |||
117 | struct iio_buffer *buffer, int bit); | 114 | struct iio_buffer *buffer, int bit); |
118 | 115 | ||
119 | /** | 116 | /** |
120 | * iio_scan_mask_set() - set particular bit in the scan mask | ||
121 | * @indio_dev IIO device structure | ||
122 | * @buffer: the buffer whose scan mask we are interested in | ||
123 | * @bit: the bit to be set. | ||
124 | **/ | ||
125 | int iio_scan_mask_set(struct iio_dev *indio_dev, | ||
126 | struct iio_buffer *buffer, int bit); | ||
127 | |||
128 | /** | ||
129 | * iio_push_to_buffers() - push to a registered buffer. | 117 | * iio_push_to_buffers() - push to a registered buffer. |
130 | * @indio_dev: iio_dev structure for device. | 118 | * @indio_dev: iio_dev structure for device. |
131 | * @data: Full scan. | 119 | * @data: Full scan. |
@@ -159,56 +147,6 @@ static inline int iio_push_to_buffers_with_timestamp(struct iio_dev *indio_dev, | |||
159 | 147 | ||
160 | int iio_update_demux(struct iio_dev *indio_dev); | 148 | int iio_update_demux(struct iio_dev *indio_dev); |
161 | 149 | ||
162 | /** | ||
163 | * iio_buffer_register() - register the buffer with IIO core | ||
164 | * @indio_dev: device with the buffer to be registered | ||
165 | * @channels: the channel descriptions used to construct buffer | ||
166 | * @num_channels: the number of channels | ||
167 | **/ | ||
168 | int iio_buffer_register(struct iio_dev *indio_dev, | ||
169 | const struct iio_chan_spec *channels, | ||
170 | int num_channels); | ||
171 | |||
172 | /** | ||
173 | * iio_buffer_unregister() - unregister the buffer from IIO core | ||
174 | * @indio_dev: the device with the buffer to be unregistered | ||
175 | **/ | ||
176 | void iio_buffer_unregister(struct iio_dev *indio_dev); | ||
177 | |||
178 | /** | ||
179 | * iio_buffer_read_length() - attr func to get number of datums in the buffer | ||
180 | **/ | ||
181 | ssize_t iio_buffer_read_length(struct device *dev, | ||
182 | struct device_attribute *attr, | ||
183 | char *buf); | ||
184 | /** | ||
185 | * iio_buffer_write_length() - attr func to set number of datums in the buffer | ||
186 | **/ | ||
187 | ssize_t iio_buffer_write_length(struct device *dev, | ||
188 | struct device_attribute *attr, | ||
189 | const char *buf, | ||
190 | size_t len); | ||
191 | /** | ||
192 | * iio_buffer_store_enable() - attr to turn the buffer on | ||
193 | **/ | ||
194 | ssize_t iio_buffer_store_enable(struct device *dev, | ||
195 | struct device_attribute *attr, | ||
196 | const char *buf, | ||
197 | size_t len); | ||
198 | /** | ||
199 | * iio_buffer_show_enable() - attr to see if the buffer is on | ||
200 | **/ | ||
201 | ssize_t iio_buffer_show_enable(struct device *dev, | ||
202 | struct device_attribute *attr, | ||
203 | char *buf); | ||
204 | #define IIO_BUFFER_LENGTH_ATTR DEVICE_ATTR(length, S_IRUGO | S_IWUSR, \ | ||
205 | iio_buffer_read_length, \ | ||
206 | iio_buffer_write_length) | ||
207 | |||
208 | #define IIO_BUFFER_ENABLE_ATTR DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, \ | ||
209 | iio_buffer_show_enable, \ | ||
210 | iio_buffer_store_enable) | ||
211 | |||
212 | bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev, | 150 | bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev, |
213 | const unsigned long *mask); | 151 | const unsigned long *mask); |
214 | 152 | ||
@@ -232,16 +170,6 @@ static inline void iio_device_attach_buffer(struct iio_dev *indio_dev, | |||
232 | 170 | ||
233 | #else /* CONFIG_IIO_BUFFER */ | 171 | #else /* CONFIG_IIO_BUFFER */ |
234 | 172 | ||
235 | static inline int iio_buffer_register(struct iio_dev *indio_dev, | ||
236 | const struct iio_chan_spec *channels, | ||
237 | int num_channels) | ||
238 | { | ||
239 | return 0; | ||
240 | } | ||
241 | |||
242 | static inline void iio_buffer_unregister(struct iio_dev *indio_dev) | ||
243 | {} | ||
244 | |||
245 | static inline void iio_buffer_get(struct iio_buffer *buffer) {} | 173 | static inline void iio_buffer_get(struct iio_buffer *buffer) {} |
246 | static inline void iio_buffer_put(struct iio_buffer *buffer) {} | 174 | static inline void iio_buffer_put(struct iio_buffer *buffer) {} |
247 | 175 | ||
diff --git a/include/linux/iio/common/ssp_sensors.h b/include/linux/iio/common/ssp_sensors.h new file mode 100644 index 000000000000..f4d1b0edb432 --- /dev/null +++ b/include/linux/iio/common/ssp_sensors.h | |||
@@ -0,0 +1,82 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2014, Samsung Electronics Co. Ltd. All Rights Reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | */ | ||
15 | #ifndef _SSP_SENSORS_H_ | ||
16 | #define _SSP_SENSORS_H_ | ||
17 | |||
18 | #include <linux/iio/iio.h> | ||
19 | |||
20 | #define SSP_TIME_SIZE 4 | ||
21 | #define SSP_ACCELEROMETER_SIZE 6 | ||
22 | #define SSP_GYROSCOPE_SIZE 6 | ||
23 | #define SSP_BIO_HRM_RAW_SIZE 8 | ||
24 | #define SSP_BIO_HRM_RAW_FAC_SIZE 36 | ||
25 | #define SSP_BIO_HRM_LIB_SIZE 8 | ||
26 | |||
27 | /** | ||
28 | * enum ssp_sensor_type - SSP sensor type | ||
29 | */ | ||
30 | enum ssp_sensor_type { | ||
31 | SSP_ACCELEROMETER_SENSOR = 0, | ||
32 | SSP_GYROSCOPE_SENSOR, | ||
33 | SSP_GEOMAGNETIC_UNCALIB_SENSOR, | ||
34 | SSP_GEOMAGNETIC_RAW, | ||
35 | SSP_GEOMAGNETIC_SENSOR, | ||
36 | SSP_PRESSURE_SENSOR, | ||
37 | SSP_GESTURE_SENSOR, | ||
38 | SSP_PROXIMITY_SENSOR, | ||
39 | SSP_TEMPERATURE_HUMIDITY_SENSOR, | ||
40 | SSP_LIGHT_SENSOR, | ||
41 | SSP_PROXIMITY_RAW, | ||
42 | SSP_ORIENTATION_SENSOR, | ||
43 | SSP_STEP_DETECTOR, | ||
44 | SSP_SIG_MOTION_SENSOR, | ||
45 | SSP_GYRO_UNCALIB_SENSOR, | ||
46 | SSP_GAME_ROTATION_VECTOR, | ||
47 | SSP_ROTATION_VECTOR, | ||
48 | SSP_STEP_COUNTER, | ||
49 | SSP_BIO_HRM_RAW, | ||
50 | SSP_BIO_HRM_RAW_FAC, | ||
51 | SSP_BIO_HRM_LIB, | ||
52 | SSP_SENSOR_MAX, | ||
53 | }; | ||
54 | |||
55 | struct ssp_data; | ||
56 | |||
57 | /** | ||
58 | * struct ssp_sensor_data - Sensor object | ||
59 | * @process_data: Callback to feed sensor data. | ||
60 | * @type: Used sensor type. | ||
61 | * @buffer: Received data buffer. | ||
62 | */ | ||
63 | struct ssp_sensor_data { | ||
64 | int (*process_data)(struct iio_dev *indio_dev, void *buf, | ||
65 | int64_t timestamp); | ||
66 | enum ssp_sensor_type type; | ||
67 | u8 *buffer; | ||
68 | }; | ||
69 | |||
70 | void ssp_register_consumer(struct iio_dev *indio_dev, | ||
71 | enum ssp_sensor_type type); | ||
72 | |||
73 | int ssp_enable_sensor(struct ssp_data *data, enum ssp_sensor_type type, | ||
74 | u32 delay); | ||
75 | |||
76 | int ssp_disable_sensor(struct ssp_data *data, enum ssp_sensor_type type); | ||
77 | |||
78 | u32 ssp_get_sensor_delay(struct ssp_data *data, enum ssp_sensor_type); | ||
79 | |||
80 | int ssp_change_delay(struct ssp_data *data, enum ssp_sensor_type type, | ||
81 | u32 delay); | ||
82 | #endif /* _SSP_SENSORS_H_ */ | ||
diff --git a/include/linux/iio/consumer.h b/include/linux/iio/consumer.h index 651f9a0e2765..26fb8f6342bb 100644 --- a/include/linux/iio/consumer.h +++ b/include/linux/iio/consumer.h | |||
@@ -151,6 +151,16 @@ int iio_read_channel_average_raw(struct iio_channel *chan, int *val); | |||
151 | int iio_read_channel_processed(struct iio_channel *chan, int *val); | 151 | int iio_read_channel_processed(struct iio_channel *chan, int *val); |
152 | 152 | ||
153 | /** | 153 | /** |
154 | * iio_write_channel_raw() - write to a given channel | ||
155 | * @chan: The channel being queried. | ||
156 | * @val: Value being written. | ||
157 | * | ||
158 | * Note raw writes to iio channels are in dac counts and hence | ||
159 | * scale will need to be applied if standard units required. | ||
160 | */ | ||
161 | int iio_write_channel_raw(struct iio_channel *chan, int val); | ||
162 | |||
163 | /** | ||
154 | * iio_get_channel_type() - get the type of a channel | 164 | * iio_get_channel_type() - get the type of a channel |
155 | * @channel: The channel being queried. | 165 | * @channel: The channel being queried. |
156 | * @type: The type of the channel. | 166 | * @type: The type of the channel. |
@@ -191,7 +201,7 @@ int iio_read_channel_scale(struct iio_channel *chan, int *val, | |||
191 | * The scale factor allows to increase the precession of the returned value. For | 201 | * The scale factor allows to increase the precession of the returned value. For |
192 | * a scale factor of 1 the function will return the result in the normal IIO | 202 | * a scale factor of 1 the function will return the result in the normal IIO |
193 | * unit for the channel type. E.g. millivolt for voltage channels, if you want | 203 | * unit for the channel type. E.g. millivolt for voltage channels, if you want |
194 | * nanovolts instead pass 1000 as the scale factor. | 204 | * nanovolts instead pass 1000000 as the scale factor. |
195 | */ | 205 | */ |
196 | int iio_convert_raw_to_processed(struct iio_channel *chan, int raw, | 206 | int iio_convert_raw_to_processed(struct iio_channel *chan, int raw, |
197 | int *processed, unsigned int scale); | 207 | int *processed, unsigned int scale); |
diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h index 3642ce7ef512..80d855061064 100644 --- a/include/linux/iio/iio.h +++ b/include/linux/iio/iio.h | |||
@@ -38,6 +38,11 @@ enum iio_chan_info_enum { | |||
38 | IIO_CHAN_INFO_HARDWAREGAIN, | 38 | IIO_CHAN_INFO_HARDWAREGAIN, |
39 | IIO_CHAN_INFO_HYSTERESIS, | 39 | IIO_CHAN_INFO_HYSTERESIS, |
40 | IIO_CHAN_INFO_INT_TIME, | 40 | IIO_CHAN_INFO_INT_TIME, |
41 | IIO_CHAN_INFO_ENABLE, | ||
42 | IIO_CHAN_INFO_CALIBHEIGHT, | ||
43 | IIO_CHAN_INFO_CALIBWEIGHT, | ||
44 | IIO_CHAN_INFO_DEBOUNCE_COUNT, | ||
45 | IIO_CHAN_INFO_DEBOUNCE_TIME, | ||
41 | }; | 46 | }; |
42 | 47 | ||
43 | enum iio_shared_by { | 48 | enum iio_shared_by { |
@@ -284,10 +289,11 @@ static inline s64 iio_get_time_ns(void) | |||
284 | /* Device operating modes */ | 289 | /* Device operating modes */ |
285 | #define INDIO_DIRECT_MODE 0x01 | 290 | #define INDIO_DIRECT_MODE 0x01 |
286 | #define INDIO_BUFFER_TRIGGERED 0x02 | 291 | #define INDIO_BUFFER_TRIGGERED 0x02 |
292 | #define INDIO_BUFFER_SOFTWARE 0x04 | ||
287 | #define INDIO_BUFFER_HARDWARE 0x08 | 293 | #define INDIO_BUFFER_HARDWARE 0x08 |
288 | 294 | ||
289 | #define INDIO_ALL_BUFFER_MODES \ | 295 | #define INDIO_ALL_BUFFER_MODES \ |
290 | (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE) | 296 | (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE | INDIO_BUFFER_SOFTWARE) |
291 | 297 | ||
292 | #define INDIO_MAX_RAW_ELEMENTS 4 | 298 | #define INDIO_MAX_RAW_ELEMENTS 4 |
293 | 299 | ||
@@ -591,7 +597,8 @@ void devm_iio_trigger_free(struct device *dev, struct iio_trigger *iio_trig); | |||
591 | static inline bool iio_buffer_enabled(struct iio_dev *indio_dev) | 597 | static inline bool iio_buffer_enabled(struct iio_dev *indio_dev) |
592 | { | 598 | { |
593 | return indio_dev->currentmode | 599 | return indio_dev->currentmode |
594 | & (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE); | 600 | & (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE | |
601 | INDIO_BUFFER_SOFTWARE); | ||
595 | } | 602 | } |
596 | 603 | ||
597 | /** | 604 | /** |
diff --git a/include/linux/iio/kfifo_buf.h b/include/linux/iio/kfifo_buf.h index 25eeac762e84..1683bc710d14 100644 --- a/include/linux/iio/kfifo_buf.h +++ b/include/linux/iio/kfifo_buf.h | |||
@@ -5,7 +5,10 @@ | |||
5 | #include <linux/iio/iio.h> | 5 | #include <linux/iio/iio.h> |
6 | #include <linux/iio/buffer.h> | 6 | #include <linux/iio/buffer.h> |
7 | 7 | ||
8 | struct iio_buffer *iio_kfifo_allocate(struct iio_dev *indio_dev); | 8 | struct iio_buffer *iio_kfifo_allocate(void); |
9 | void iio_kfifo_free(struct iio_buffer *r); | 9 | void iio_kfifo_free(struct iio_buffer *r); |
10 | 10 | ||
11 | struct iio_buffer *devm_iio_kfifo_allocate(struct device *dev); | ||
12 | void devm_iio_kfifo_free(struct device *dev, struct iio_buffer *r); | ||
13 | |||
11 | #endif | 14 | #endif |
diff --git a/include/linux/iio/types.h b/include/linux/iio/types.h index 4a2af8adf874..580ed5bdb3fa 100644 --- a/include/linux/iio/types.h +++ b/include/linux/iio/types.h | |||
@@ -30,6 +30,11 @@ enum iio_chan_type { | |||
30 | IIO_CCT, | 30 | IIO_CCT, |
31 | IIO_PRESSURE, | 31 | IIO_PRESSURE, |
32 | IIO_HUMIDITYRELATIVE, | 32 | IIO_HUMIDITYRELATIVE, |
33 | IIO_ACTIVITY, | ||
34 | IIO_STEPS, | ||
35 | IIO_ENERGY, | ||
36 | IIO_DISTANCE, | ||
37 | IIO_VELOCITY, | ||
33 | }; | 38 | }; |
34 | 39 | ||
35 | enum iio_modifier { | 40 | enum iio_modifier { |
@@ -59,7 +64,12 @@ enum iio_modifier { | |||
59 | IIO_MOD_NORTH_MAGN, | 64 | IIO_MOD_NORTH_MAGN, |
60 | IIO_MOD_NORTH_TRUE, | 65 | IIO_MOD_NORTH_TRUE, |
61 | IIO_MOD_NORTH_MAGN_TILT_COMP, | 66 | IIO_MOD_NORTH_MAGN_TILT_COMP, |
62 | IIO_MOD_NORTH_TRUE_TILT_COMP | 67 | IIO_MOD_NORTH_TRUE_TILT_COMP, |
68 | IIO_MOD_RUNNING, | ||
69 | IIO_MOD_JOGGING, | ||
70 | IIO_MOD_WALKING, | ||
71 | IIO_MOD_STILL, | ||
72 | IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z, | ||
63 | }; | 73 | }; |
64 | 74 | ||
65 | enum iio_event_type { | 75 | enum iio_event_type { |
@@ -68,6 +78,7 @@ enum iio_event_type { | |||
68 | IIO_EV_TYPE_ROC, | 78 | IIO_EV_TYPE_ROC, |
69 | IIO_EV_TYPE_THRESH_ADAPTIVE, | 79 | IIO_EV_TYPE_THRESH_ADAPTIVE, |
70 | IIO_EV_TYPE_MAG_ADAPTIVE, | 80 | IIO_EV_TYPE_MAG_ADAPTIVE, |
81 | IIO_EV_TYPE_CHANGE, | ||
71 | }; | 82 | }; |
72 | 83 | ||
73 | enum iio_event_info { | 84 | enum iio_event_info { |
@@ -81,6 +92,7 @@ enum iio_event_direction { | |||
81 | IIO_EV_DIR_EITHER, | 92 | IIO_EV_DIR_EITHER, |
82 | IIO_EV_DIR_RISING, | 93 | IIO_EV_DIR_RISING, |
83 | IIO_EV_DIR_FALLING, | 94 | IIO_EV_DIR_FALLING, |
95 | IIO_EV_DIR_NONE, | ||
84 | }; | 96 | }; |
85 | 97 | ||
86 | #define IIO_VAL_INT 1 | 98 | #define IIO_VAL_INT 1 |
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 3037fc085e8e..696d22312b31 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
@@ -175,6 +175,13 @@ extern struct task_group root_task_group; | |||
175 | # define INIT_NUMA_BALANCING(tsk) | 175 | # define INIT_NUMA_BALANCING(tsk) |
176 | #endif | 176 | #endif |
177 | 177 | ||
178 | #ifdef CONFIG_KASAN | ||
179 | # define INIT_KASAN(tsk) \ | ||
180 | .kasan_depth = 1, | ||
181 | #else | ||
182 | # define INIT_KASAN(tsk) | ||
183 | #endif | ||
184 | |||
178 | /* | 185 | /* |
179 | * INIT_TASK is used to set up the first task table, touch at | 186 | * INIT_TASK is used to set up the first task table, touch at |
180 | * your own risk!. Base=0, limit=0x1fffff (=2MB) | 187 | * your own risk!. Base=0, limit=0x1fffff (=2MB) |
@@ -193,6 +200,9 @@ extern struct task_group root_task_group; | |||
193 | .nr_cpus_allowed= NR_CPUS, \ | 200 | .nr_cpus_allowed= NR_CPUS, \ |
194 | .mm = NULL, \ | 201 | .mm = NULL, \ |
195 | .active_mm = &init_mm, \ | 202 | .active_mm = &init_mm, \ |
203 | .restart_block = { \ | ||
204 | .fn = do_no_restart_syscall, \ | ||
205 | }, \ | ||
196 | .se = { \ | 206 | .se = { \ |
197 | .group_node = LIST_HEAD_INIT(tsk.se.group_node), \ | 207 | .group_node = LIST_HEAD_INIT(tsk.se.group_node), \ |
198 | }, \ | 208 | }, \ |
@@ -247,6 +257,7 @@ extern struct task_group root_task_group; | |||
247 | INIT_RT_MUTEXES(tsk) \ | 257 | INIT_RT_MUTEXES(tsk) \ |
248 | INIT_VTIME(tsk) \ | 258 | INIT_VTIME(tsk) \ |
249 | INIT_NUMA_BALANCING(tsk) \ | 259 | INIT_NUMA_BALANCING(tsk) \ |
260 | INIT_KASAN(tsk) \ | ||
250 | } | 261 | } |
251 | 262 | ||
252 | 263 | ||
diff --git a/include/linux/iopoll.h b/include/linux/iopoll.h new file mode 100644 index 000000000000..1c30014ed176 --- /dev/null +++ b/include/linux/iopoll.h | |||
@@ -0,0 +1,144 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2012-2014 The Linux Foundation. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #ifndef _LINUX_IOPOLL_H | ||
16 | #define _LINUX_IOPOLL_H | ||
17 | |||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/types.h> | ||
20 | #include <linux/hrtimer.h> | ||
21 | #include <linux/delay.h> | ||
22 | #include <linux/errno.h> | ||
23 | #include <linux/io.h> | ||
24 | |||
25 | /** | ||
26 | * readx_poll_timeout - Periodically poll an address until a condition is met or a timeout occurs | ||
27 | * @op: accessor function (takes @addr as its only argument) | ||
28 | * @addr: Address to poll | ||
29 | * @val: Variable to read the value into | ||
30 | * @cond: Break condition (usually involving @val) | ||
31 | * @sleep_us: Maximum time to sleep between reads in us (0 | ||
32 | * tight-loops). Should be less than ~20ms since usleep_range | ||
33 | * is used (see Documentation/timers/timers-howto.txt). | ||
34 | * @timeout_us: Timeout in us, 0 means never timeout | ||
35 | * | ||
36 | * Returns 0 on success and -ETIMEDOUT upon a timeout. In either | ||
37 | * case, the last read value at @addr is stored in @val. Must not | ||
38 | * be called from atomic context if sleep_us or timeout_us are used. | ||
39 | * | ||
40 | * When available, you'll probably want to use one of the specialized | ||
41 | * macros defined below rather than this macro directly. | ||
42 | */ | ||
43 | #define readx_poll_timeout(op, addr, val, cond, sleep_us, timeout_us) \ | ||
44 | ({ \ | ||
45 | ktime_t timeout = ktime_add_us(ktime_get(), timeout_us); \ | ||
46 | might_sleep_if(sleep_us); \ | ||
47 | for (;;) { \ | ||
48 | (val) = op(addr); \ | ||
49 | if (cond) \ | ||
50 | break; \ | ||
51 | if (timeout_us && ktime_compare(ktime_get(), timeout) > 0) { \ | ||
52 | (val) = op(addr); \ | ||
53 | break; \ | ||
54 | } \ | ||
55 | if (sleep_us) \ | ||
56 | usleep_range((sleep_us >> 2) + 1, sleep_us); \ | ||
57 | } \ | ||
58 | (cond) ? 0 : -ETIMEDOUT; \ | ||
59 | }) | ||
60 | |||
61 | /** | ||
62 | * readx_poll_timeout_atomic - Periodically poll an address until a condition is met or a timeout occurs | ||
63 | * @op: accessor function (takes @addr as its only argument) | ||
64 | * @addr: Address to poll | ||
65 | * @val: Variable to read the value into | ||
66 | * @cond: Break condition (usually involving @val) | ||
67 | * @delay_us: Time to udelay between reads in us (0 tight-loops). Should | ||
68 | * be less than ~10us since udelay is used (see | ||
69 | * Documentation/timers/timers-howto.txt). | ||
70 | * @timeout_us: Timeout in us, 0 means never timeout | ||
71 | * | ||
72 | * Returns 0 on success and -ETIMEDOUT upon a timeout. In either | ||
73 | * case, the last read value at @addr is stored in @val. | ||
74 | * | ||
75 | * When available, you'll probably want to use one of the specialized | ||
76 | * macros defined below rather than this macro directly. | ||
77 | */ | ||
78 | #define readx_poll_timeout_atomic(op, addr, val, cond, delay_us, timeout_us) \ | ||
79 | ({ \ | ||
80 | ktime_t timeout = ktime_add_us(ktime_get(), timeout_us); \ | ||
81 | for (;;) { \ | ||
82 | (val) = op(addr); \ | ||
83 | if (cond) \ | ||
84 | break; \ | ||
85 | if (timeout_us && ktime_compare(ktime_get(), timeout) > 0) { \ | ||
86 | (val) = op(addr); \ | ||
87 | break; \ | ||
88 | } \ | ||
89 | if (delay_us) \ | ||
90 | udelay(delay_us); \ | ||
91 | } \ | ||
92 | (cond) ? 0 : -ETIMEDOUT; \ | ||
93 | }) | ||
94 | |||
95 | |||
96 | #define readb_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
97 | readx_poll_timeout(readb, addr, val, cond, delay_us, timeout_us) | ||
98 | |||
99 | #define readb_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
100 | readx_poll_timeout_atomic(readb, addr, val, cond, delay_us, timeout_us) | ||
101 | |||
102 | #define readw_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
103 | readx_poll_timeout(readw, addr, val, cond, delay_us, timeout_us) | ||
104 | |||
105 | #define readw_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
106 | readx_poll_timeout_atomic(readw, addr, val, cond, delay_us, timeout_us) | ||
107 | |||
108 | #define readl_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
109 | readx_poll_timeout(readl, addr, val, cond, delay_us, timeout_us) | ||
110 | |||
111 | #define readl_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
112 | readx_poll_timeout_atomic(readl, addr, val, cond, delay_us, timeout_us) | ||
113 | |||
114 | #define readq_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
115 | readx_poll_timeout(readq, addr, val, cond, delay_us, timeout_us) | ||
116 | |||
117 | #define readq_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
118 | readx_poll_timeout_atomic(readq, addr, val, cond, delay_us, timeout_us) | ||
119 | |||
120 | #define readb_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
121 | readx_poll_timeout(readb_relaxed, addr, val, cond, delay_us, timeout_us) | ||
122 | |||
123 | #define readb_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
124 | readx_poll_timeout_atomic(readb_relaxed, addr, val, cond, delay_us, timeout_us) | ||
125 | |||
126 | #define readw_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
127 | readx_poll_timeout(readw_relaxed, addr, val, cond, delay_us, timeout_us) | ||
128 | |||
129 | #define readw_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
130 | readx_poll_timeout_atomic(readw_relaxed, addr, val, cond, delay_us, timeout_us) | ||
131 | |||
132 | #define readl_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
133 | readx_poll_timeout(readl_relaxed, addr, val, cond, delay_us, timeout_us) | ||
134 | |||
135 | #define readl_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
136 | readx_poll_timeout_atomic(readl_relaxed, addr, val, cond, delay_us, timeout_us) | ||
137 | |||
138 | #define readq_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
139 | readx_poll_timeout(readq_relaxed, addr, val, cond, delay_us, timeout_us) | ||
140 | |||
141 | #define readq_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
142 | readx_poll_timeout_atomic(readq_relaxed, addr, val, cond, delay_us, timeout_us) | ||
143 | |||
144 | #endif /* _LINUX_IOPOLL_H */ | ||
diff --git a/include/linux/iova.h b/include/linux/iova.h index 19e81d5ccb6d..3920a19d8194 100644 --- a/include/linux/iova.h +++ b/include/linux/iova.h | |||
@@ -16,9 +16,6 @@ | |||
16 | #include <linux/rbtree.h> | 16 | #include <linux/rbtree.h> |
17 | #include <linux/dma-mapping.h> | 17 | #include <linux/dma-mapping.h> |
18 | 18 | ||
19 | /* IO virtual address start page frame number */ | ||
20 | #define IOVA_START_PFN (1) | ||
21 | |||
22 | /* iova structure */ | 19 | /* iova structure */ |
23 | struct iova { | 20 | struct iova { |
24 | struct rb_node node; | 21 | struct rb_node node; |
@@ -31,6 +28,8 @@ struct iova_domain { | |||
31 | spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */ | 28 | spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */ |
32 | struct rb_root rbroot; /* iova domain rbtree root */ | 29 | struct rb_root rbroot; /* iova domain rbtree root */ |
33 | struct rb_node *cached32_node; /* Save last alloced node */ | 30 | struct rb_node *cached32_node; /* Save last alloced node */ |
31 | unsigned long granule; /* pfn granularity for this domain */ | ||
32 | unsigned long start_pfn; /* Lower limit for this domain */ | ||
34 | unsigned long dma_32bit_pfn; | 33 | unsigned long dma_32bit_pfn; |
35 | }; | 34 | }; |
36 | 35 | ||
@@ -39,6 +38,39 @@ static inline unsigned long iova_size(struct iova *iova) | |||
39 | return iova->pfn_hi - iova->pfn_lo + 1; | 38 | return iova->pfn_hi - iova->pfn_lo + 1; |
40 | } | 39 | } |
41 | 40 | ||
41 | static inline unsigned long iova_shift(struct iova_domain *iovad) | ||
42 | { | ||
43 | return __ffs(iovad->granule); | ||
44 | } | ||
45 | |||
46 | static inline unsigned long iova_mask(struct iova_domain *iovad) | ||
47 | { | ||
48 | return iovad->granule - 1; | ||
49 | } | ||
50 | |||
51 | static inline size_t iova_offset(struct iova_domain *iovad, dma_addr_t iova) | ||
52 | { | ||
53 | return iova & iova_mask(iovad); | ||
54 | } | ||
55 | |||
56 | static inline size_t iova_align(struct iova_domain *iovad, size_t size) | ||
57 | { | ||
58 | return ALIGN(size, iovad->granule); | ||
59 | } | ||
60 | |||
61 | static inline dma_addr_t iova_dma_addr(struct iova_domain *iovad, struct iova *iova) | ||
62 | { | ||
63 | return (dma_addr_t)iova->pfn_lo << iova_shift(iovad); | ||
64 | } | ||
65 | |||
66 | static inline unsigned long iova_pfn(struct iova_domain *iovad, dma_addr_t iova) | ||
67 | { | ||
68 | return iova >> iova_shift(iovad); | ||
69 | } | ||
70 | |||
71 | int iommu_iova_cache_init(void); | ||
72 | void iommu_iova_cache_destroy(void); | ||
73 | |||
42 | struct iova *alloc_iova_mem(void); | 74 | struct iova *alloc_iova_mem(void); |
43 | void free_iova_mem(struct iova *iova); | 75 | void free_iova_mem(struct iova *iova); |
44 | void free_iova(struct iova_domain *iovad, unsigned long pfn); | 76 | void free_iova(struct iova_domain *iovad, unsigned long pfn); |
@@ -49,7 +81,8 @@ struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size, | |||
49 | struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo, | 81 | struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo, |
50 | unsigned long pfn_hi); | 82 | unsigned long pfn_hi); |
51 | void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to); | 83 | void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to); |
52 | void init_iova_domain(struct iova_domain *iovad, unsigned long pfn_32bit); | 84 | void init_iova_domain(struct iova_domain *iovad, unsigned long granule, |
85 | unsigned long start_pfn, unsigned long pfn_32bit); | ||
53 | struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn); | 86 | struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn); |
54 | void put_iova_domain(struct iova_domain *iovad); | 87 | void put_iova_domain(struct iova_domain *iovad); |
55 | struct iova *split_and_remove_iova(struct iova_domain *iovad, | 88 | struct iova *split_and_remove_iova(struct iova_domain *iovad, |
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index c694e7baa621..4d5169f5d7d1 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h | |||
@@ -52,6 +52,7 @@ struct ipv6_devconf { | |||
52 | __s32 force_tllao; | 52 | __s32 force_tllao; |
53 | __s32 ndisc_notify; | 53 | __s32 ndisc_notify; |
54 | __s32 suppress_frag_ndisc; | 54 | __s32 suppress_frag_ndisc; |
55 | __s32 accept_ra_mtu; | ||
55 | void *sysctl; | 56 | void *sysctl; |
56 | }; | 57 | }; |
57 | 58 | ||
@@ -124,6 +125,12 @@ struct ipv6_mc_socklist; | |||
124 | struct ipv6_ac_socklist; | 125 | struct ipv6_ac_socklist; |
125 | struct ipv6_fl_socklist; | 126 | struct ipv6_fl_socklist; |
126 | 127 | ||
128 | struct inet6_cork { | ||
129 | struct ipv6_txoptions *opt; | ||
130 | u8 hop_limit; | ||
131 | u8 tclass; | ||
132 | }; | ||
133 | |||
127 | /** | 134 | /** |
128 | * struct ipv6_pinfo - ipv6 private area | 135 | * struct ipv6_pinfo - ipv6 private area |
129 | * | 136 | * |
@@ -216,11 +223,7 @@ struct ipv6_pinfo { | |||
216 | struct ipv6_txoptions *opt; | 223 | struct ipv6_txoptions *opt; |
217 | struct sk_buff *pktoptions; | 224 | struct sk_buff *pktoptions; |
218 | struct sk_buff *rxpmtu; | 225 | struct sk_buff *rxpmtu; |
219 | struct { | 226 | struct inet6_cork cork; |
220 | struct ipv6_txoptions *opt; | ||
221 | u8 hop_limit; | ||
222 | u8 tclass; | ||
223 | } cork; | ||
224 | }; | 227 | }; |
225 | 228 | ||
226 | /* WARNING: don't change the layout of the members in {raw,udp,tcp}6_sock! */ | 229 | /* WARNING: don't change the layout of the members in {raw,udp,tcp}6_sock! */ |
diff --git a/include/linux/irqchip/arm-gic-v3.h b/include/linux/irqchip/arm-gic-v3.h index 1e8b0cf30792..800544bc7bfd 100644 --- a/include/linux/irqchip/arm-gic-v3.h +++ b/include/linux/irqchip/arm-gic-v3.h | |||
@@ -33,6 +33,7 @@ | |||
33 | #define GICD_SETSPI_SR 0x0050 | 33 | #define GICD_SETSPI_SR 0x0050 |
34 | #define GICD_CLRSPI_SR 0x0058 | 34 | #define GICD_CLRSPI_SR 0x0058 |
35 | #define GICD_SEIR 0x0068 | 35 | #define GICD_SEIR 0x0068 |
36 | #define GICD_IGROUPR 0x0080 | ||
36 | #define GICD_ISENABLER 0x0100 | 37 | #define GICD_ISENABLER 0x0100 |
37 | #define GICD_ICENABLER 0x0180 | 38 | #define GICD_ICENABLER 0x0180 |
38 | #define GICD_ISPENDR 0x0200 | 39 | #define GICD_ISPENDR 0x0200 |
@@ -41,14 +42,37 @@ | |||
41 | #define GICD_ICACTIVER 0x0380 | 42 | #define GICD_ICACTIVER 0x0380 |
42 | #define GICD_IPRIORITYR 0x0400 | 43 | #define GICD_IPRIORITYR 0x0400 |
43 | #define GICD_ICFGR 0x0C00 | 44 | #define GICD_ICFGR 0x0C00 |
45 | #define GICD_IGRPMODR 0x0D00 | ||
46 | #define GICD_NSACR 0x0E00 | ||
44 | #define GICD_IROUTER 0x6000 | 47 | #define GICD_IROUTER 0x6000 |
48 | #define GICD_IDREGS 0xFFD0 | ||
45 | #define GICD_PIDR2 0xFFE8 | 49 | #define GICD_PIDR2 0xFFE8 |
46 | 50 | ||
51 | /* | ||
52 | * Those registers are actually from GICv2, but the spec demands that they | ||
53 | * are implemented as RES0 if ARE is 1 (which we do in KVM's emulated GICv3). | ||
54 | */ | ||
55 | #define GICD_ITARGETSR 0x0800 | ||
56 | #define GICD_SGIR 0x0F00 | ||
57 | #define GICD_CPENDSGIR 0x0F10 | ||
58 | #define GICD_SPENDSGIR 0x0F20 | ||
59 | |||
47 | #define GICD_CTLR_RWP (1U << 31) | 60 | #define GICD_CTLR_RWP (1U << 31) |
61 | #define GICD_CTLR_DS (1U << 6) | ||
48 | #define GICD_CTLR_ARE_NS (1U << 4) | 62 | #define GICD_CTLR_ARE_NS (1U << 4) |
49 | #define GICD_CTLR_ENABLE_G1A (1U << 1) | 63 | #define GICD_CTLR_ENABLE_G1A (1U << 1) |
50 | #define GICD_CTLR_ENABLE_G1 (1U << 0) | 64 | #define GICD_CTLR_ENABLE_G1 (1U << 0) |
51 | 65 | ||
66 | /* | ||
67 | * In systems with a single security state (what we emulate in KVM) | ||
68 | * the meaning of the interrupt group enable bits is slightly different | ||
69 | */ | ||
70 | #define GICD_CTLR_ENABLE_SS_G1 (1U << 1) | ||
71 | #define GICD_CTLR_ENABLE_SS_G0 (1U << 0) | ||
72 | |||
73 | #define GICD_TYPER_LPIS (1U << 17) | ||
74 | #define GICD_TYPER_MBIS (1U << 16) | ||
75 | |||
52 | #define GICD_TYPER_ID_BITS(typer) ((((typer) >> 19) & 0x1f) + 1) | 76 | #define GICD_TYPER_ID_BITS(typer) ((((typer) >> 19) & 0x1f) + 1) |
53 | #define GICD_TYPER_IRQS(typer) ((((typer) & 0x1f) + 1) * 32) | 77 | #define GICD_TYPER_IRQS(typer) ((((typer) & 0x1f) + 1) * 32) |
54 | #define GICD_TYPER_LPIS (1U << 17) | 78 | #define GICD_TYPER_LPIS (1U << 17) |
@@ -60,6 +84,8 @@ | |||
60 | #define GIC_PIDR2_ARCH_GICv3 0x30 | 84 | #define GIC_PIDR2_ARCH_GICv3 0x30 |
61 | #define GIC_PIDR2_ARCH_GICv4 0x40 | 85 | #define GIC_PIDR2_ARCH_GICv4 0x40 |
62 | 86 | ||
87 | #define GIC_V3_DIST_SIZE 0x10000 | ||
88 | |||
63 | /* | 89 | /* |
64 | * Re-Distributor registers, offsets from RD_base | 90 | * Re-Distributor registers, offsets from RD_base |
65 | */ | 91 | */ |
@@ -78,6 +104,7 @@ | |||
78 | #define GICR_SYNCR 0x00C0 | 104 | #define GICR_SYNCR 0x00C0 |
79 | #define GICR_MOVLPIR 0x0100 | 105 | #define GICR_MOVLPIR 0x0100 |
80 | #define GICR_MOVALLR 0x0110 | 106 | #define GICR_MOVALLR 0x0110 |
107 | #define GICR_IDREGS GICD_IDREGS | ||
81 | #define GICR_PIDR2 GICD_PIDR2 | 108 | #define GICR_PIDR2 GICD_PIDR2 |
82 | 109 | ||
83 | #define GICR_CTLR_ENABLE_LPIS (1UL << 0) | 110 | #define GICR_CTLR_ENABLE_LPIS (1UL << 0) |
@@ -104,6 +131,7 @@ | |||
104 | /* | 131 | /* |
105 | * Re-Distributor registers, offsets from SGI_base | 132 | * Re-Distributor registers, offsets from SGI_base |
106 | */ | 133 | */ |
134 | #define GICR_IGROUPR0 GICD_IGROUPR | ||
107 | #define GICR_ISENABLER0 GICD_ISENABLER | 135 | #define GICR_ISENABLER0 GICD_ISENABLER |
108 | #define GICR_ICENABLER0 GICD_ICENABLER | 136 | #define GICR_ICENABLER0 GICD_ICENABLER |
109 | #define GICR_ISPENDR0 GICD_ISPENDR | 137 | #define GICR_ISPENDR0 GICD_ISPENDR |
@@ -112,11 +140,15 @@ | |||
112 | #define GICR_ICACTIVER0 GICD_ICACTIVER | 140 | #define GICR_ICACTIVER0 GICD_ICACTIVER |
113 | #define GICR_IPRIORITYR0 GICD_IPRIORITYR | 141 | #define GICR_IPRIORITYR0 GICD_IPRIORITYR |
114 | #define GICR_ICFGR0 GICD_ICFGR | 142 | #define GICR_ICFGR0 GICD_ICFGR |
143 | #define GICR_IGRPMODR0 GICD_IGRPMODR | ||
144 | #define GICR_NSACR GICD_NSACR | ||
115 | 145 | ||
116 | #define GICR_TYPER_PLPIS (1U << 0) | 146 | #define GICR_TYPER_PLPIS (1U << 0) |
117 | #define GICR_TYPER_VLPIS (1U << 1) | 147 | #define GICR_TYPER_VLPIS (1U << 1) |
118 | #define GICR_TYPER_LAST (1U << 4) | 148 | #define GICR_TYPER_LAST (1U << 4) |
119 | 149 | ||
150 | #define GIC_V3_REDIST_SIZE 0x20000 | ||
151 | |||
120 | #define LPI_PROP_GROUP1 (1 << 1) | 152 | #define LPI_PROP_GROUP1 (1 << 1) |
121 | #define LPI_PROP_ENABLED (1 << 0) | 153 | #define LPI_PROP_ENABLED (1 << 0) |
122 | 154 | ||
@@ -248,6 +280,18 @@ | |||
248 | #define ICC_SRE_EL2_SRE (1 << 0) | 280 | #define ICC_SRE_EL2_SRE (1 << 0) |
249 | #define ICC_SRE_EL2_ENABLE (1 << 3) | 281 | #define ICC_SRE_EL2_ENABLE (1 << 3) |
250 | 282 | ||
283 | #define ICC_SGI1R_TARGET_LIST_SHIFT 0 | ||
284 | #define ICC_SGI1R_TARGET_LIST_MASK (0xffff << ICC_SGI1R_TARGET_LIST_SHIFT) | ||
285 | #define ICC_SGI1R_AFFINITY_1_SHIFT 16 | ||
286 | #define ICC_SGI1R_AFFINITY_1_MASK (0xff << ICC_SGI1R_AFFINITY_1_SHIFT) | ||
287 | #define ICC_SGI1R_SGI_ID_SHIFT 24 | ||
288 | #define ICC_SGI1R_SGI_ID_MASK (0xff << ICC_SGI1R_SGI_ID_SHIFT) | ||
289 | #define ICC_SGI1R_AFFINITY_2_SHIFT 32 | ||
290 | #define ICC_SGI1R_AFFINITY_2_MASK (0xffULL << ICC_SGI1R_AFFINITY_1_SHIFT) | ||
291 | #define ICC_SGI1R_IRQ_ROUTING_MODE_BIT 40 | ||
292 | #define ICC_SGI1R_AFFINITY_3_SHIFT 48 | ||
293 | #define ICC_SGI1R_AFFINITY_3_MASK (0xffULL << ICC_SGI1R_AFFINITY_1_SHIFT) | ||
294 | |||
251 | /* | 295 | /* |
252 | * System register definitions | 296 | * System register definitions |
253 | */ | 297 | */ |
diff --git a/include/linux/irqchip/irq-omap-intc.h b/include/linux/irqchip/irq-omap-intc.h index e06b370cfc0d..2e3d1afeb674 100644 --- a/include/linux/irqchip/irq-omap-intc.h +++ b/include/linux/irqchip/irq-omap-intc.h | |||
@@ -18,9 +18,7 @@ | |||
18 | #ifndef __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H | 18 | #ifndef __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H |
19 | #define __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H | 19 | #define __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H |
20 | 20 | ||
21 | void omap2_init_irq(void); | ||
22 | void omap3_init_irq(void); | 21 | void omap3_init_irq(void); |
23 | void ti81xx_init_irq(void); | ||
24 | 22 | ||
25 | int omap_irq_pending(void); | 23 | int omap_irq_pending(void); |
26 | void omap_intc_save_context(void); | 24 | void omap_intc_save_context(void); |
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index 31229e0be90b..d32615280be9 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h | |||
@@ -956,15 +956,6 @@ void __log_wait_for_space(journal_t *journal); | |||
956 | extern void __journal_drop_transaction(journal_t *, transaction_t *); | 956 | extern void __journal_drop_transaction(journal_t *, transaction_t *); |
957 | extern int cleanup_journal_tail(journal_t *); | 957 | extern int cleanup_journal_tail(journal_t *); |
958 | 958 | ||
959 | /* Debugging code only: */ | ||
960 | |||
961 | #define jbd_ENOSYS() \ | ||
962 | do { \ | ||
963 | printk (KERN_ERR "JBD unimplemented function %s\n", __func__); \ | ||
964 | current->state = TASK_UNINTERRUPTIBLE; \ | ||
965 | schedule(); \ | ||
966 | } while (1) | ||
967 | |||
968 | /* | 959 | /* |
969 | * is_journal_abort | 960 | * is_journal_abort |
970 | * | 961 | * |
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index 704b9a599b26..20e7f78041c8 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h | |||
@@ -1251,15 +1251,6 @@ void __jbd2_log_wait_for_space(journal_t *journal); | |||
1251 | extern void __jbd2_journal_drop_transaction(journal_t *, transaction_t *); | 1251 | extern void __jbd2_journal_drop_transaction(journal_t *, transaction_t *); |
1252 | extern int jbd2_cleanup_journal_tail(journal_t *); | 1252 | extern int jbd2_cleanup_journal_tail(journal_t *); |
1253 | 1253 | ||
1254 | /* Debugging code only: */ | ||
1255 | |||
1256 | #define jbd_ENOSYS() \ | ||
1257 | do { \ | ||
1258 | printk (KERN_ERR "JBD unimplemented function %s\n", __func__); \ | ||
1259 | current->state = TASK_UNINTERRUPTIBLE; \ | ||
1260 | schedule(); \ | ||
1261 | } while (1) | ||
1262 | |||
1263 | /* | 1254 | /* |
1264 | * is_journal_abort | 1255 | * is_journal_abort |
1265 | * | 1256 | * |
diff --git a/include/linux/kasan.h b/include/linux/kasan.h new file mode 100644 index 000000000000..72ba725ddf9c --- /dev/null +++ b/include/linux/kasan.h | |||
@@ -0,0 +1,89 @@ | |||
1 | #ifndef _LINUX_KASAN_H | ||
2 | #define _LINUX_KASAN_H | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | |||
6 | struct kmem_cache; | ||
7 | struct page; | ||
8 | |||
9 | #ifdef CONFIG_KASAN | ||
10 | |||
11 | #define KASAN_SHADOW_SCALE_SHIFT 3 | ||
12 | #define KASAN_SHADOW_OFFSET _AC(CONFIG_KASAN_SHADOW_OFFSET, UL) | ||
13 | |||
14 | #include <asm/kasan.h> | ||
15 | #include <linux/sched.h> | ||
16 | |||
17 | static inline void *kasan_mem_to_shadow(const void *addr) | ||
18 | { | ||
19 | return (void *)((unsigned long)addr >> KASAN_SHADOW_SCALE_SHIFT) | ||
20 | + KASAN_SHADOW_OFFSET; | ||
21 | } | ||
22 | |||
23 | /* Enable reporting bugs after kasan_disable_current() */ | ||
24 | static inline void kasan_enable_current(void) | ||
25 | { | ||
26 | current->kasan_depth++; | ||
27 | } | ||
28 | |||
29 | /* Disable reporting bugs for current task */ | ||
30 | static inline void kasan_disable_current(void) | ||
31 | { | ||
32 | current->kasan_depth--; | ||
33 | } | ||
34 | |||
35 | void kasan_unpoison_shadow(const void *address, size_t size); | ||
36 | |||
37 | void kasan_alloc_pages(struct page *page, unsigned int order); | ||
38 | void kasan_free_pages(struct page *page, unsigned int order); | ||
39 | |||
40 | void kasan_poison_slab(struct page *page); | ||
41 | void kasan_unpoison_object_data(struct kmem_cache *cache, void *object); | ||
42 | void kasan_poison_object_data(struct kmem_cache *cache, void *object); | ||
43 | |||
44 | void kasan_kmalloc_large(const void *ptr, size_t size); | ||
45 | void kasan_kfree_large(const void *ptr); | ||
46 | void kasan_kmalloc(struct kmem_cache *s, const void *object, size_t size); | ||
47 | void kasan_krealloc(const void *object, size_t new_size); | ||
48 | |||
49 | void kasan_slab_alloc(struct kmem_cache *s, void *object); | ||
50 | void kasan_slab_free(struct kmem_cache *s, void *object); | ||
51 | |||
52 | #define MODULE_ALIGN (PAGE_SIZE << KASAN_SHADOW_SCALE_SHIFT) | ||
53 | |||
54 | int kasan_module_alloc(void *addr, size_t size); | ||
55 | void kasan_module_free(void *addr); | ||
56 | |||
57 | #else /* CONFIG_KASAN */ | ||
58 | |||
59 | #define MODULE_ALIGN 1 | ||
60 | |||
61 | static inline void kasan_unpoison_shadow(const void *address, size_t size) {} | ||
62 | |||
63 | static inline void kasan_enable_current(void) {} | ||
64 | static inline void kasan_disable_current(void) {} | ||
65 | |||
66 | static inline void kasan_alloc_pages(struct page *page, unsigned int order) {} | ||
67 | static inline void kasan_free_pages(struct page *page, unsigned int order) {} | ||
68 | |||
69 | static inline void kasan_poison_slab(struct page *page) {} | ||
70 | static inline void kasan_unpoison_object_data(struct kmem_cache *cache, | ||
71 | void *object) {} | ||
72 | static inline void kasan_poison_object_data(struct kmem_cache *cache, | ||
73 | void *object) {} | ||
74 | |||
75 | static inline void kasan_kmalloc_large(void *ptr, size_t size) {} | ||
76 | static inline void kasan_kfree_large(const void *ptr) {} | ||
77 | static inline void kasan_kmalloc(struct kmem_cache *s, const void *object, | ||
78 | size_t size) {} | ||
79 | static inline void kasan_krealloc(const void *object, size_t new_size) {} | ||
80 | |||
81 | static inline void kasan_slab_alloc(struct kmem_cache *s, void *object) {} | ||
82 | static inline void kasan_slab_free(struct kmem_cache *s, void *object) {} | ||
83 | |||
84 | static inline int kasan_module_alloc(void *addr, size_t size) { return 0; } | ||
85 | static inline void kasan_module_free(void *addr) {} | ||
86 | |||
87 | #endif /* CONFIG_KASAN */ | ||
88 | |||
89 | #endif /* LINUX_KASAN_H */ | ||
diff --git a/include/linux/kdb.h b/include/linux/kdb.h index 75ae2e2631fc..a19bcf9e762e 100644 --- a/include/linux/kdb.h +++ b/include/linux/kdb.h | |||
@@ -156,8 +156,14 @@ typedef enum { | |||
156 | KDB_REASON_SYSTEM_NMI, /* In NMI due to SYSTEM cmd; regs valid */ | 156 | KDB_REASON_SYSTEM_NMI, /* In NMI due to SYSTEM cmd; regs valid */ |
157 | } kdb_reason_t; | 157 | } kdb_reason_t; |
158 | 158 | ||
159 | enum kdb_msgsrc { | ||
160 | KDB_MSGSRC_INTERNAL, /* direct call to kdb_printf() */ | ||
161 | KDB_MSGSRC_PRINTK, /* trapped from printk() */ | ||
162 | }; | ||
163 | |||
159 | extern int kdb_trap_printk; | 164 | extern int kdb_trap_printk; |
160 | extern __printf(1, 0) int vkdb_printf(const char *fmt, va_list args); | 165 | extern __printf(2, 0) int vkdb_printf(enum kdb_msgsrc src, const char *fmt, |
166 | va_list args); | ||
161 | extern __printf(1, 2) int kdb_printf(const char *, ...); | 167 | extern __printf(1, 2) int kdb_printf(const char *, ...); |
162 | typedef __printf(1, 2) int (*kdb_printf_t)(const char *, ...); | 168 | typedef __printf(1, 2) int (*kdb_printf_t)(const char *, ...); |
163 | 169 | ||
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 64ce58bee6f5..d6d630d31ef3 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -471,6 +471,7 @@ extern enum system_states { | |||
471 | #define TAINT_OOT_MODULE 12 | 471 | #define TAINT_OOT_MODULE 12 |
472 | #define TAINT_UNSIGNED_MODULE 13 | 472 | #define TAINT_UNSIGNED_MODULE 13 |
473 | #define TAINT_SOFTLOCKUP 14 | 473 | #define TAINT_SOFTLOCKUP 14 |
474 | #define TAINT_LIVEPATCH 15 | ||
474 | 475 | ||
475 | extern const char hex_asc[]; | 476 | extern const char hex_asc[]; |
476 | #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] | 477 | #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] |
@@ -799,9 +800,6 @@ static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { } | |||
799 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ | 800 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ |
800 | (type *)( (char *)__mptr - offsetof(type,member) );}) | 801 | (type *)( (char *)__mptr - offsetof(type,member) );}) |
801 | 802 | ||
802 | /* Trap pasters of __FUNCTION__ at compile-time */ | ||
803 | #define __FUNCTION__ (__func__) | ||
804 | |||
805 | /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ | 803 | /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ |
806 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD | 804 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
807 | # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD | 805 | # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD |
diff --git a/include/linux/kernfs.h b/include/linux/kernfs.h index d4e01b358341..71ecdab1671b 100644 --- a/include/linux/kernfs.h +++ b/include/linux/kernfs.h | |||
@@ -43,7 +43,6 @@ enum kernfs_node_flag { | |||
43 | KERNFS_HAS_SEQ_SHOW = 0x0040, | 43 | KERNFS_HAS_SEQ_SHOW = 0x0040, |
44 | KERNFS_HAS_MMAP = 0x0080, | 44 | KERNFS_HAS_MMAP = 0x0080, |
45 | KERNFS_LOCKDEP = 0x0100, | 45 | KERNFS_LOCKDEP = 0x0100, |
46 | KERNFS_STATIC_NAME = 0x0200, | ||
47 | KERNFS_SUICIDAL = 0x0400, | 46 | KERNFS_SUICIDAL = 0x0400, |
48 | KERNFS_SUICIDED = 0x0800, | 47 | KERNFS_SUICIDED = 0x0800, |
49 | }; | 48 | }; |
@@ -291,7 +290,6 @@ struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent, | |||
291 | umode_t mode, loff_t size, | 290 | umode_t mode, loff_t size, |
292 | const struct kernfs_ops *ops, | 291 | const struct kernfs_ops *ops, |
293 | void *priv, const void *ns, | 292 | void *priv, const void *ns, |
294 | bool name_is_static, | ||
295 | struct lock_class_key *key); | 293 | struct lock_class_key *key); |
296 | struct kernfs_node *kernfs_create_link(struct kernfs_node *parent, | 294 | struct kernfs_node *kernfs_create_link(struct kernfs_node *parent, |
297 | const char *name, | 295 | const char *name, |
@@ -369,8 +367,7 @@ kernfs_create_dir_ns(struct kernfs_node *parent, const char *name, | |||
369 | static inline struct kernfs_node * | 367 | static inline struct kernfs_node * |
370 | __kernfs_create_file(struct kernfs_node *parent, const char *name, | 368 | __kernfs_create_file(struct kernfs_node *parent, const char *name, |
371 | umode_t mode, loff_t size, const struct kernfs_ops *ops, | 369 | umode_t mode, loff_t size, const struct kernfs_ops *ops, |
372 | void *priv, const void *ns, bool name_is_static, | 370 | void *priv, const void *ns, struct lock_class_key *key) |
373 | struct lock_class_key *key) | ||
374 | { return ERR_PTR(-ENOSYS); } | 371 | { return ERR_PTR(-ENOSYS); } |
375 | 372 | ||
376 | static inline struct kernfs_node * | 373 | static inline struct kernfs_node * |
@@ -439,7 +436,7 @@ kernfs_create_file_ns(struct kernfs_node *parent, const char *name, | |||
439 | key = (struct lock_class_key *)&ops->lockdep_key; | 436 | key = (struct lock_class_key *)&ops->lockdep_key; |
440 | #endif | 437 | #endif |
441 | return __kernfs_create_file(parent, name, mode, size, ops, priv, ns, | 438 | return __kernfs_create_file(parent, name, mode, size, ops, priv, ns, |
442 | false, key); | 439 | key); |
443 | } | 440 | } |
444 | 441 | ||
445 | static inline struct kernfs_node * | 442 | static inline struct kernfs_node * |
diff --git a/include/linux/kexec.h b/include/linux/kexec.h index 9d957b7ae095..e60a745ac198 100644 --- a/include/linux/kexec.h +++ b/include/linux/kexec.h | |||
@@ -1,6 +1,19 @@ | |||
1 | #ifndef LINUX_KEXEC_H | 1 | #ifndef LINUX_KEXEC_H |
2 | #define LINUX_KEXEC_H | 2 | #define LINUX_KEXEC_H |
3 | 3 | ||
4 | #define IND_DESTINATION_BIT 0 | ||
5 | #define IND_INDIRECTION_BIT 1 | ||
6 | #define IND_DONE_BIT 2 | ||
7 | #define IND_SOURCE_BIT 3 | ||
8 | |||
9 | #define IND_DESTINATION (1 << IND_DESTINATION_BIT) | ||
10 | #define IND_INDIRECTION (1 << IND_INDIRECTION_BIT) | ||
11 | #define IND_DONE (1 << IND_DONE_BIT) | ||
12 | #define IND_SOURCE (1 << IND_SOURCE_BIT) | ||
13 | #define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE) | ||
14 | |||
15 | #if !defined(__ASSEMBLY__) | ||
16 | |||
4 | #include <uapi/linux/kexec.h> | 17 | #include <uapi/linux/kexec.h> |
5 | 18 | ||
6 | #ifdef CONFIG_KEXEC | 19 | #ifdef CONFIG_KEXEC |
@@ -64,10 +77,6 @@ | |||
64 | */ | 77 | */ |
65 | 78 | ||
66 | typedef unsigned long kimage_entry_t; | 79 | typedef unsigned long kimage_entry_t; |
67 | #define IND_DESTINATION 0x1 | ||
68 | #define IND_INDIRECTION 0x2 | ||
69 | #define IND_DONE 0x4 | ||
70 | #define IND_SOURCE 0x8 | ||
71 | 80 | ||
72 | struct kexec_segment { | 81 | struct kexec_segment { |
73 | /* | 82 | /* |
@@ -122,8 +131,6 @@ struct kimage { | |||
122 | kimage_entry_t *entry; | 131 | kimage_entry_t *entry; |
123 | kimage_entry_t *last_entry; | 132 | kimage_entry_t *last_entry; |
124 | 133 | ||
125 | unsigned long destination; | ||
126 | |||
127 | unsigned long start; | 134 | unsigned long start; |
128 | struct page *control_code_page; | 135 | struct page *control_code_page; |
129 | struct page *swap_page; | 136 | struct page *swap_page; |
@@ -313,4 +320,7 @@ struct task_struct; | |||
313 | static inline void crash_kexec(struct pt_regs *regs) { } | 320 | static inline void crash_kexec(struct pt_regs *regs) { } |
314 | static inline int kexec_should_crash(struct task_struct *p) { return 0; } | 321 | static inline int kexec_should_crash(struct task_struct *p) { return 0; } |
315 | #endif /* CONFIG_KEXEC */ | 322 | #endif /* CONFIG_KEXEC */ |
323 | |||
324 | #endif /* !defined(__ASSEBMLY__) */ | ||
325 | |||
316 | #endif /* LINUX_KEXEC_H */ | 326 | #endif /* LINUX_KEXEC_H */ |
diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h index 5297f9fa0ef2..1ab54754a86d 100644 --- a/include/linux/kprobes.h +++ b/include/linux/kprobes.h | |||
@@ -308,7 +308,8 @@ struct optimized_kprobe { | |||
308 | /* Architecture dependent functions for direct jump optimization */ | 308 | /* Architecture dependent functions for direct jump optimization */ |
309 | extern int arch_prepared_optinsn(struct arch_optimized_insn *optinsn); | 309 | extern int arch_prepared_optinsn(struct arch_optimized_insn *optinsn); |
310 | extern int arch_check_optimized_kprobe(struct optimized_kprobe *op); | 310 | extern int arch_check_optimized_kprobe(struct optimized_kprobe *op); |
311 | extern int arch_prepare_optimized_kprobe(struct optimized_kprobe *op); | 311 | extern int arch_prepare_optimized_kprobe(struct optimized_kprobe *op, |
312 | struct kprobe *orig); | ||
312 | extern void arch_remove_optimized_kprobe(struct optimized_kprobe *op); | 313 | extern void arch_remove_optimized_kprobe(struct optimized_kprobe *op); |
313 | extern void arch_optimize_kprobes(struct list_head *oplist); | 314 | extern void arch_optimize_kprobes(struct list_head *oplist); |
314 | extern void arch_unoptimize_kprobes(struct list_head *oplist, | 315 | extern void arch_unoptimize_kprobes(struct list_head *oplist, |
diff --git a/include/linux/ktime.h b/include/linux/ktime.h index c9d645ad98ff..5fc3d1083071 100644 --- a/include/linux/ktime.h +++ b/include/linux/ktime.h | |||
@@ -166,7 +166,17 @@ static inline bool ktime_before(const ktime_t cmp1, const ktime_t cmp2) | |||
166 | } | 166 | } |
167 | 167 | ||
168 | #if BITS_PER_LONG < 64 | 168 | #if BITS_PER_LONG < 64 |
169 | extern u64 ktime_divns(const ktime_t kt, s64 div); | 169 | extern u64 __ktime_divns(const ktime_t kt, s64 div); |
170 | static inline u64 ktime_divns(const ktime_t kt, s64 div) | ||
171 | { | ||
172 | if (__builtin_constant_p(div) && !(div >> 32)) { | ||
173 | u64 ns = kt.tv64; | ||
174 | do_div(ns, div); | ||
175 | return ns; | ||
176 | } else { | ||
177 | return __ktime_divns(kt, div); | ||
178 | } | ||
179 | } | ||
170 | #else /* BITS_PER_LONG < 64 */ | 180 | #else /* BITS_PER_LONG < 64 */ |
171 | # define ktime_divns(kt, div) (u64)((kt).tv64 / (div)) | 181 | # define ktime_divns(kt, div) (u64)((kt).tv64 / (div)) |
172 | #endif | 182 | #endif |
@@ -186,6 +196,11 @@ static inline s64 ktime_us_delta(const ktime_t later, const ktime_t earlier) | |||
186 | return ktime_to_us(ktime_sub(later, earlier)); | 196 | return ktime_to_us(ktime_sub(later, earlier)); |
187 | } | 197 | } |
188 | 198 | ||
199 | static inline s64 ktime_ms_delta(const ktime_t later, const ktime_t earlier) | ||
200 | { | ||
201 | return ktime_to_ms(ktime_sub(later, earlier)); | ||
202 | } | ||
203 | |||
189 | static inline ktime_t ktime_add_us(const ktime_t kt, const u64 usec) | 204 | static inline ktime_t ktime_add_us(const ktime_t kt, const u64 usec) |
190 | { | 205 | { |
191 | return ktime_add_ns(kt, usec * NSEC_PER_USEC); | 206 | return ktime_add_ns(kt, usec * NSEC_PER_USEC); |
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index 26f106022c88..d12b2104d19b 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h | |||
@@ -33,10 +33,6 @@ | |||
33 | 33 | ||
34 | #include <asm/kvm_host.h> | 34 | #include <asm/kvm_host.h> |
35 | 35 | ||
36 | #ifndef KVM_MMIO_SIZE | ||
37 | #define KVM_MMIO_SIZE 8 | ||
38 | #endif | ||
39 | |||
40 | /* | 36 | /* |
41 | * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used | 37 | * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used |
42 | * in kvm, other bits are visible for userspace which are defined in | 38 | * in kvm, other bits are visible for userspace which are defined in |
@@ -200,17 +196,6 @@ int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, unsigned long hva, | |||
200 | int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu); | 196 | int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu); |
201 | #endif | 197 | #endif |
202 | 198 | ||
203 | /* | ||
204 | * Carry out a gup that requires IO. Allow the mm to relinquish the mmap | ||
205 | * semaphore if the filemap/swap has to wait on a page lock. pagep == NULL | ||
206 | * controls whether we retry the gup one more time to completion in that case. | ||
207 | * Typically this is called after a FAULT_FLAG_RETRY_NOWAIT in the main tdp | ||
208 | * handler. | ||
209 | */ | ||
210 | int kvm_get_user_page_io(struct task_struct *tsk, struct mm_struct *mm, | ||
211 | unsigned long addr, bool write_fault, | ||
212 | struct page **pagep); | ||
213 | |||
214 | enum { | 199 | enum { |
215 | OUTSIDE_GUEST_MODE, | 200 | OUTSIDE_GUEST_MODE, |
216 | IN_GUEST_MODE, | 201 | IN_GUEST_MODE, |
@@ -611,6 +596,15 @@ int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext); | |||
611 | 596 | ||
612 | int kvm_get_dirty_log(struct kvm *kvm, | 597 | int kvm_get_dirty_log(struct kvm *kvm, |
613 | struct kvm_dirty_log *log, int *is_dirty); | 598 | struct kvm_dirty_log *log, int *is_dirty); |
599 | |||
600 | int kvm_get_dirty_log_protect(struct kvm *kvm, | ||
601 | struct kvm_dirty_log *log, bool *is_dirty); | ||
602 | |||
603 | void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm, | ||
604 | struct kvm_memory_slot *slot, | ||
605 | gfn_t gfn_offset, | ||
606 | unsigned long mask); | ||
607 | |||
614 | int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, | 608 | int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, |
615 | struct kvm_dirty_log *log); | 609 | struct kvm_dirty_log *log); |
616 | 610 | ||
@@ -652,7 +646,7 @@ void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu); | |||
652 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu); | 646 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu); |
653 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id); | 647 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id); |
654 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu); | 648 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu); |
655 | int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu); | 649 | void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu); |
656 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu); | 650 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu); |
657 | 651 | ||
658 | int kvm_arch_hardware_enable(void); | 652 | int kvm_arch_hardware_enable(void); |
@@ -1042,6 +1036,8 @@ void kvm_unregister_device_ops(u32 type); | |||
1042 | 1036 | ||
1043 | extern struct kvm_device_ops kvm_mpic_ops; | 1037 | extern struct kvm_device_ops kvm_mpic_ops; |
1044 | extern struct kvm_device_ops kvm_xics_ops; | 1038 | extern struct kvm_device_ops kvm_xics_ops; |
1039 | extern struct kvm_device_ops kvm_arm_vgic_v2_ops; | ||
1040 | extern struct kvm_device_ops kvm_arm_vgic_v3_ops; | ||
1045 | 1041 | ||
1046 | #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT | 1042 | #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT |
1047 | 1043 | ||
diff --git a/include/linux/led-class-flash.h b/include/linux/led-class-flash.h new file mode 100644 index 000000000000..5ba2facd7a51 --- /dev/null +++ b/include/linux/led-class-flash.h | |||
@@ -0,0 +1,207 @@ | |||
1 | /* | ||
2 | * LED Flash class interface | ||
3 | * | ||
4 | * Copyright (C) 2015 Samsung Electronics Co., Ltd. | ||
5 | * Author: Jacek Anaszewski <j.anaszewski@samsung.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | */ | ||
12 | #ifndef __LINUX_FLASH_LEDS_H_INCLUDED | ||
13 | #define __LINUX_FLASH_LEDS_H_INCLUDED | ||
14 | |||
15 | #include <linux/leds.h> | ||
16 | #include <uapi/linux/v4l2-controls.h> | ||
17 | |||
18 | struct device_node; | ||
19 | struct led_classdev_flash; | ||
20 | |||
21 | /* | ||
22 | * Supported led fault bits - must be kept in synch | ||
23 | * with V4L2_FLASH_FAULT bits. | ||
24 | */ | ||
25 | #define LED_FAULT_OVER_VOLTAGE (1 << 0) | ||
26 | #define LED_FAULT_TIMEOUT (1 << 1) | ||
27 | #define LED_FAULT_OVER_TEMPERATURE (1 << 2) | ||
28 | #define LED_FAULT_SHORT_CIRCUIT (1 << 3) | ||
29 | #define LED_FAULT_OVER_CURRENT (1 << 4) | ||
30 | #define LED_FAULT_INDICATOR (1 << 5) | ||
31 | #define LED_FAULT_UNDER_VOLTAGE (1 << 6) | ||
32 | #define LED_FAULT_INPUT_VOLTAGE (1 << 7) | ||
33 | #define LED_FAULT_LED_OVER_TEMPERATURE (1 << 8) | ||
34 | #define LED_NUM_FLASH_FAULTS 9 | ||
35 | |||
36 | #define LED_FLASH_MAX_SYSFS_GROUPS 7 | ||
37 | |||
38 | struct led_flash_ops { | ||
39 | /* set flash brightness */ | ||
40 | int (*flash_brightness_set)(struct led_classdev_flash *fled_cdev, | ||
41 | u32 brightness); | ||
42 | /* get flash brightness */ | ||
43 | int (*flash_brightness_get)(struct led_classdev_flash *fled_cdev, | ||
44 | u32 *brightness); | ||
45 | /* set flash strobe state */ | ||
46 | int (*strobe_set)(struct led_classdev_flash *fled_cdev, bool state); | ||
47 | /* get flash strobe state */ | ||
48 | int (*strobe_get)(struct led_classdev_flash *fled_cdev, bool *state); | ||
49 | /* set flash timeout */ | ||
50 | int (*timeout_set)(struct led_classdev_flash *fled_cdev, u32 timeout); | ||
51 | /* get the flash LED fault */ | ||
52 | int (*fault_get)(struct led_classdev_flash *fled_cdev, u32 *fault); | ||
53 | }; | ||
54 | |||
55 | /* | ||
56 | * Current value of a flash setting along | ||
57 | * with its constraints. | ||
58 | */ | ||
59 | struct led_flash_setting { | ||
60 | /* maximum allowed value */ | ||
61 | u32 min; | ||
62 | /* maximum allowed value */ | ||
63 | u32 max; | ||
64 | /* step value */ | ||
65 | u32 step; | ||
66 | /* current value */ | ||
67 | u32 val; | ||
68 | }; | ||
69 | |||
70 | struct led_classdev_flash { | ||
71 | /* led class device */ | ||
72 | struct led_classdev led_cdev; | ||
73 | |||
74 | /* flash led specific ops */ | ||
75 | const struct led_flash_ops *ops; | ||
76 | |||
77 | /* flash brightness value in microamperes along with its constraints */ | ||
78 | struct led_flash_setting brightness; | ||
79 | |||
80 | /* flash timeout value in microseconds along with its constraints */ | ||
81 | struct led_flash_setting timeout; | ||
82 | |||
83 | /* LED Flash class sysfs groups */ | ||
84 | const struct attribute_group *sysfs_groups[LED_FLASH_MAX_SYSFS_GROUPS]; | ||
85 | |||
86 | /* LEDs available for flash strobe synchronization */ | ||
87 | struct led_classdev_flash **sync_leds; | ||
88 | |||
89 | /* Number of LEDs available for flash strobe synchronization */ | ||
90 | int num_sync_leds; | ||
91 | |||
92 | /* | ||
93 | * The identifier of the sub-led to synchronize the flash strobe with. | ||
94 | * Identifiers start from 1, which reflects the first element from the | ||
95 | * sync_leds array. 0 means that the flash strobe should not be | ||
96 | * synchronized. | ||
97 | */ | ||
98 | u32 sync_led_id; | ||
99 | }; | ||
100 | |||
101 | static inline struct led_classdev_flash *lcdev_to_flcdev( | ||
102 | struct led_classdev *lcdev) | ||
103 | { | ||
104 | return container_of(lcdev, struct led_classdev_flash, led_cdev); | ||
105 | } | ||
106 | |||
107 | /** | ||
108 | * led_classdev_flash_register - register a new object of led_classdev class | ||
109 | * with support for flash LEDs | ||
110 | * @parent: the flash LED to register | ||
111 | * @fled_cdev: the led_classdev_flash structure for this device | ||
112 | * | ||
113 | * Returns: 0 on success or negative error value on failure | ||
114 | */ | ||
115 | extern int led_classdev_flash_register(struct device *parent, | ||
116 | struct led_classdev_flash *fled_cdev); | ||
117 | |||
118 | /** | ||
119 | * led_classdev_flash_unregister - unregisters an object of led_classdev class | ||
120 | * with support for flash LEDs | ||
121 | * @fled_cdev: the flash LED to unregister | ||
122 | * | ||
123 | * Unregister a previously registered via led_classdev_flash_register object | ||
124 | */ | ||
125 | extern void led_classdev_flash_unregister(struct led_classdev_flash *fled_cdev); | ||
126 | |||
127 | /** | ||
128 | * led_set_flash_strobe - setup flash strobe | ||
129 | * @fled_cdev: the flash LED to set strobe on | ||
130 | * @state: 1 - strobe flash, 0 - stop flash strobe | ||
131 | * | ||
132 | * Strobe the flash LED. | ||
133 | * | ||
134 | * Returns: 0 on success or negative error value on failure | ||
135 | */ | ||
136 | static inline int led_set_flash_strobe(struct led_classdev_flash *fled_cdev, | ||
137 | bool state) | ||
138 | { | ||
139 | return fled_cdev->ops->strobe_set(fled_cdev, state); | ||
140 | } | ||
141 | |||
142 | /** | ||
143 | * led_get_flash_strobe - get flash strobe status | ||
144 | * @fled_cdev: the flash LED to query | ||
145 | * @state: 1 - flash is strobing, 0 - flash is off | ||
146 | * | ||
147 | * Check whether the flash is strobing at the moment. | ||
148 | * | ||
149 | * Returns: 0 on success or negative error value on failure | ||
150 | */ | ||
151 | static inline int led_get_flash_strobe(struct led_classdev_flash *fled_cdev, | ||
152 | bool *state) | ||
153 | { | ||
154 | if (fled_cdev->ops->strobe_get) | ||
155 | return fled_cdev->ops->strobe_get(fled_cdev, state); | ||
156 | |||
157 | return -EINVAL; | ||
158 | } | ||
159 | |||
160 | /** | ||
161 | * led_set_flash_brightness - set flash LED brightness | ||
162 | * @fled_cdev: the flash LED to set | ||
163 | * @brightness: the brightness to set it to | ||
164 | * | ||
165 | * Set a flash LED's brightness. | ||
166 | * | ||
167 | * Returns: 0 on success or negative error value on failure | ||
168 | */ | ||
169 | extern int led_set_flash_brightness(struct led_classdev_flash *fled_cdev, | ||
170 | u32 brightness); | ||
171 | |||
172 | /** | ||
173 | * led_update_flash_brightness - update flash LED brightness | ||
174 | * @fled_cdev: the flash LED to query | ||
175 | * | ||
176 | * Get a flash LED's current brightness and update led_flash->brightness | ||
177 | * member with the obtained value. | ||
178 | * | ||
179 | * Returns: 0 on success or negative error value on failure | ||
180 | */ | ||
181 | extern int led_update_flash_brightness(struct led_classdev_flash *fled_cdev); | ||
182 | |||
183 | /** | ||
184 | * led_set_flash_timeout - set flash LED timeout | ||
185 | * @fled_cdev: the flash LED to set | ||
186 | * @timeout: the flash timeout to set it to | ||
187 | * | ||
188 | * Set the flash strobe duration. | ||
189 | * | ||
190 | * Returns: 0 on success or negative error value on failure | ||
191 | */ | ||
192 | extern int led_set_flash_timeout(struct led_classdev_flash *fled_cdev, | ||
193 | u32 timeout); | ||
194 | |||
195 | /** | ||
196 | * led_get_flash_fault - get the flash LED fault | ||
197 | * @fled_cdev: the flash LED to query | ||
198 | * @fault: bitmask containing flash faults | ||
199 | * | ||
200 | * Get the flash LED fault. | ||
201 | * | ||
202 | * Returns: 0 on success or negative error value on failure | ||
203 | */ | ||
204 | extern int led_get_flash_fault(struct led_classdev_flash *fled_cdev, | ||
205 | u32 *fault); | ||
206 | |||
207 | #endif /* __LINUX_FLASH_LEDS_H_INCLUDED */ | ||
diff --git a/include/linux/leds.h b/include/linux/leds.h index cfceef32c9b3..f70f84f35674 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h | |||
@@ -46,6 +46,8 @@ struct led_classdev { | |||
46 | #define LED_SYSFS_DISABLE (1 << 20) | 46 | #define LED_SYSFS_DISABLE (1 << 20) |
47 | #define SET_BRIGHTNESS_ASYNC (1 << 21) | 47 | #define SET_BRIGHTNESS_ASYNC (1 << 21) |
48 | #define SET_BRIGHTNESS_SYNC (1 << 22) | 48 | #define SET_BRIGHTNESS_SYNC (1 << 22) |
49 | #define LED_DEV_CAP_FLASH (1 << 23) | ||
50 | #define LED_DEV_CAP_SYNC_STROBE (1 << 24) | ||
49 | 51 | ||
50 | /* Set LED brightness level */ | 52 | /* Set LED brightness level */ |
51 | /* Must not sleep, use a workqueue if needed */ | 53 | /* Must not sleep, use a workqueue if needed */ |
@@ -81,6 +83,7 @@ struct led_classdev { | |||
81 | unsigned long blink_delay_on, blink_delay_off; | 83 | unsigned long blink_delay_on, blink_delay_off; |
82 | struct timer_list blink_timer; | 84 | struct timer_list blink_timer; |
83 | int blink_brightness; | 85 | int blink_brightness; |
86 | void (*flash_resume)(struct led_classdev *led_cdev); | ||
84 | 87 | ||
85 | struct work_struct set_brightness_work; | 88 | struct work_struct set_brightness_work; |
86 | int delayed_set_value; | 89 | int delayed_set_value; |
diff --git a/include/linux/lguest_launcher.h b/include/linux/lguest_launcher.h index 495203ff221c..acd5b12565cc 100644 --- a/include/linux/lguest_launcher.h +++ b/include/linux/lguest_launcher.h | |||
@@ -8,52 +8,13 @@ | |||
8 | * | 8 | * |
9 | * The Guest needs devices to do anything useful. Since we don't let it touch | 9 | * The Guest needs devices to do anything useful. Since we don't let it touch |
10 | * real devices (think of the damage it could do!) we provide virtual devices. | 10 | * real devices (think of the damage it could do!) we provide virtual devices. |
11 | * We could emulate a PCI bus with various devices on it, but that is a fairly | 11 | * We emulate a PCI bus with virtio devices on it; we used to have our own |
12 | * complex burden for the Host and suboptimal for the Guest, so we have our own | 12 | * lguest bus which was far simpler, but this tests the virtio 1.0 standard. |
13 | * simple lguest bus and we use "virtio" drivers. These drivers need a set of | ||
14 | * routines from us which will actually do the virtual I/O, but they handle all | ||
15 | * the net/block/console stuff themselves. This means that if we want to add | ||
16 | * a new device, we simply need to write a new virtio driver and create support | ||
17 | * for it in the Launcher: this code won't need to change. | ||
18 | * | 13 | * |
19 | * Virtio devices are also used by kvm, so we can simply reuse their optimized | 14 | * Virtio devices are also used by kvm, so we can simply reuse their optimized |
20 | * device drivers. And one day when everyone uses virtio, my plan will be | 15 | * device drivers. And one day when everyone uses virtio, my plan will be |
21 | * complete. Bwahahahah! | 16 | * complete. Bwahahahah! |
22 | * | ||
23 | * Devices are described by a simplified ID, a status byte, and some "config" | ||
24 | * bytes which describe this device's configuration. This is placed by the | ||
25 | * Launcher just above the top of physical memory: | ||
26 | */ | ||
27 | struct lguest_device_desc { | ||
28 | /* The device type: console, network, disk etc. Type 0 terminates. */ | ||
29 | __u8 type; | ||
30 | /* The number of virtqueues (first in config array) */ | ||
31 | __u8 num_vq; | ||
32 | /* | ||
33 | * The number of bytes of feature bits. Multiply by 2: one for host | ||
34 | * features and one for Guest acknowledgements. | ||
35 | */ | ||
36 | __u8 feature_len; | ||
37 | /* The number of bytes of the config array after virtqueues. */ | ||
38 | __u8 config_len; | ||
39 | /* A status byte, written by the Guest. */ | ||
40 | __u8 status; | ||
41 | __u8 config[0]; | ||
42 | }; | ||
43 | |||
44 | /*D:135 | ||
45 | * This is how we expect the device configuration field for a virtqueue | ||
46 | * to be laid out in config space. | ||
47 | */ | 17 | */ |
48 | struct lguest_vqconfig { | ||
49 | /* The number of entries in the virtio_ring */ | ||
50 | __u16 num; | ||
51 | /* The interrupt we get when something happens. */ | ||
52 | __u16 irq; | ||
53 | /* The page number of the virtio ring for this device. */ | ||
54 | __u32 pfn; | ||
55 | }; | ||
56 | /*:*/ | ||
57 | 18 | ||
58 | /* Write command first word is a request. */ | 19 | /* Write command first word is a request. */ |
59 | enum lguest_req | 20 | enum lguest_req |
@@ -62,12 +23,22 @@ enum lguest_req | |||
62 | LHREQ_GETDMA, /* No longer used */ | 23 | LHREQ_GETDMA, /* No longer used */ |
63 | LHREQ_IRQ, /* + irq */ | 24 | LHREQ_IRQ, /* + irq */ |
64 | LHREQ_BREAK, /* No longer used */ | 25 | LHREQ_BREAK, /* No longer used */ |
65 | LHREQ_EVENTFD, /* + address, fd. */ | 26 | LHREQ_EVENTFD, /* No longer used. */ |
27 | LHREQ_GETREG, /* + offset within struct pt_regs (then read value). */ | ||
28 | LHREQ_SETREG, /* + offset within struct pt_regs, value. */ | ||
29 | LHREQ_TRAP, /* + trap number to deliver to guest. */ | ||
66 | }; | 30 | }; |
67 | 31 | ||
68 | /* | 32 | /* |
69 | * The alignment to use between consumer and producer parts of vring. | 33 | * This is what read() of the lguest fd populates. trap == |
70 | * x86 pagesize for historical reasons. | 34 | * LGUEST_TRAP_ENTRY for an LHCALL_NOTIFY (addr is the |
35 | * argument), 14 for a page fault in the MMIO region (addr is | ||
36 | * the trap address, insn is the instruction), or 13 for a GPF | ||
37 | * (insn is the instruction). | ||
71 | */ | 38 | */ |
72 | #define LGUEST_VRING_ALIGN 4096 | 39 | struct lguest_pending { |
40 | __u8 trap; | ||
41 | __u8 insn[7]; | ||
42 | __u32 addr; | ||
43 | }; | ||
73 | #endif /* _LINUX_LGUEST_LAUNCHER */ | 44 | #endif /* _LINUX_LGUEST_LAUNCHER */ |
diff --git a/include/linux/libata.h b/include/linux/libata.h index 91f705de2c0b..fc03efa64ffe 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -823,10 +823,10 @@ struct ata_port { | |||
823 | unsigned int cbl; /* cable type; ATA_CBL_xxx */ | 823 | unsigned int cbl; /* cable type; ATA_CBL_xxx */ |
824 | 824 | ||
825 | struct ata_queued_cmd qcmd[ATA_MAX_QUEUE]; | 825 | struct ata_queued_cmd qcmd[ATA_MAX_QUEUE]; |
826 | unsigned long qc_allocated; | 826 | unsigned long sas_tag_allocated; /* for sas tag allocation only */ |
827 | unsigned int qc_active; | 827 | unsigned int qc_active; |
828 | int nr_active_links; /* #links with active qcs */ | 828 | int nr_active_links; /* #links with active qcs */ |
829 | unsigned int last_tag; /* track next tag hw expects */ | 829 | unsigned int sas_last_tag; /* track next tag hw expects */ |
830 | 830 | ||
831 | struct ata_link link; /* host default link */ | 831 | struct ata_link link; /* host default link */ |
832 | struct ata_link *slave_link; /* see ata_slave_link_init() */ | 832 | struct ata_link *slave_link; /* see ata_slave_link_init() */ |
@@ -1340,12 +1340,19 @@ extern const struct ata_port_operations ata_base_port_ops; | |||
1340 | extern const struct ata_port_operations sata_port_ops; | 1340 | extern const struct ata_port_operations sata_port_ops; |
1341 | extern struct device_attribute *ata_common_sdev_attrs[]; | 1341 | extern struct device_attribute *ata_common_sdev_attrs[]; |
1342 | 1342 | ||
1343 | /* | ||
1344 | * All sht initializers (BASE, PIO, BMDMA, NCQ) must be instantiated | ||
1345 | * by the edge drivers. Because the 'module' field of sht must be the | ||
1346 | * edge driver's module reference, otherwise the driver can be unloaded | ||
1347 | * even if the scsi_device is being accessed. | ||
1348 | */ | ||
1343 | #define ATA_BASE_SHT(drv_name) \ | 1349 | #define ATA_BASE_SHT(drv_name) \ |
1344 | .module = THIS_MODULE, \ | 1350 | .module = THIS_MODULE, \ |
1345 | .name = drv_name, \ | 1351 | .name = drv_name, \ |
1346 | .ioctl = ata_scsi_ioctl, \ | 1352 | .ioctl = ata_scsi_ioctl, \ |
1347 | .queuecommand = ata_scsi_queuecmd, \ | 1353 | .queuecommand = ata_scsi_queuecmd, \ |
1348 | .can_queue = ATA_DEF_QUEUE, \ | 1354 | .can_queue = ATA_DEF_QUEUE, \ |
1355 | .tag_alloc_policy = BLK_TAG_ALLOC_RR, \ | ||
1349 | .this_id = ATA_SHT_THIS_ID, \ | 1356 | .this_id = ATA_SHT_THIS_ID, \ |
1350 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, \ | 1357 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, \ |
1351 | .emulated = ATA_SHT_EMULATED, \ | 1358 | .emulated = ATA_SHT_EMULATED, \ |
diff --git a/include/linux/list_lru.h b/include/linux/list_lru.h index f3434533fbf8..2a6b9947aaa3 100644 --- a/include/linux/list_lru.h +++ b/include/linux/list_lru.h | |||
@@ -9,6 +9,9 @@ | |||
9 | 9 | ||
10 | #include <linux/list.h> | 10 | #include <linux/list.h> |
11 | #include <linux/nodemask.h> | 11 | #include <linux/nodemask.h> |
12 | #include <linux/shrinker.h> | ||
13 | |||
14 | struct mem_cgroup; | ||
12 | 15 | ||
13 | /* list_lru_walk_cb has to always return one of those */ | 16 | /* list_lru_walk_cb has to always return one of those */ |
14 | enum lru_status { | 17 | enum lru_status { |
@@ -21,24 +24,45 @@ enum lru_status { | |||
21 | internally, but has to return locked. */ | 24 | internally, but has to return locked. */ |
22 | }; | 25 | }; |
23 | 26 | ||
24 | struct list_lru_node { | 27 | struct list_lru_one { |
25 | spinlock_t lock; | ||
26 | struct list_head list; | 28 | struct list_head list; |
27 | /* kept as signed so we can catch imbalance bugs */ | 29 | /* may become negative during memcg reparenting */ |
28 | long nr_items; | 30 | long nr_items; |
31 | }; | ||
32 | |||
33 | struct list_lru_memcg { | ||
34 | /* array of per cgroup lists, indexed by memcg_cache_id */ | ||
35 | struct list_lru_one *lru[0]; | ||
36 | }; | ||
37 | |||
38 | struct list_lru_node { | ||
39 | /* protects all lists on the node, including per cgroup */ | ||
40 | spinlock_t lock; | ||
41 | /* global list, used for the root cgroup in cgroup aware lrus */ | ||
42 | struct list_lru_one lru; | ||
43 | #ifdef CONFIG_MEMCG_KMEM | ||
44 | /* for cgroup aware lrus points to per cgroup lists, otherwise NULL */ | ||
45 | struct list_lru_memcg *memcg_lrus; | ||
46 | #endif | ||
29 | } ____cacheline_aligned_in_smp; | 47 | } ____cacheline_aligned_in_smp; |
30 | 48 | ||
31 | struct list_lru { | 49 | struct list_lru { |
32 | struct list_lru_node *node; | 50 | struct list_lru_node *node; |
33 | nodemask_t active_nodes; | 51 | #ifdef CONFIG_MEMCG_KMEM |
52 | struct list_head list; | ||
53 | #endif | ||
34 | }; | 54 | }; |
35 | 55 | ||
36 | void list_lru_destroy(struct list_lru *lru); | 56 | void list_lru_destroy(struct list_lru *lru); |
37 | int list_lru_init_key(struct list_lru *lru, struct lock_class_key *key); | 57 | int __list_lru_init(struct list_lru *lru, bool memcg_aware, |
38 | static inline int list_lru_init(struct list_lru *lru) | 58 | struct lock_class_key *key); |
39 | { | 59 | |
40 | return list_lru_init_key(lru, NULL); | 60 | #define list_lru_init(lru) __list_lru_init((lru), false, NULL) |
41 | } | 61 | #define list_lru_init_key(lru, key) __list_lru_init((lru), false, (key)) |
62 | #define list_lru_init_memcg(lru) __list_lru_init((lru), true, NULL) | ||
63 | |||
64 | int memcg_update_all_list_lrus(int num_memcgs); | ||
65 | void memcg_drain_all_list_lrus(int src_idx, int dst_idx); | ||
42 | 66 | ||
43 | /** | 67 | /** |
44 | * list_lru_add: add an element to the lru list's tail | 68 | * list_lru_add: add an element to the lru list's tail |
@@ -72,32 +96,48 @@ bool list_lru_add(struct list_lru *lru, struct list_head *item); | |||
72 | bool list_lru_del(struct list_lru *lru, struct list_head *item); | 96 | bool list_lru_del(struct list_lru *lru, struct list_head *item); |
73 | 97 | ||
74 | /** | 98 | /** |
75 | * list_lru_count_node: return the number of objects currently held by @lru | 99 | * list_lru_count_one: return the number of objects currently held by @lru |
76 | * @lru: the lru pointer. | 100 | * @lru: the lru pointer. |
77 | * @nid: the node id to count from. | 101 | * @nid: the node id to count from. |
102 | * @memcg: the cgroup to count from. | ||
78 | * | 103 | * |
79 | * Always return a non-negative number, 0 for empty lists. There is no | 104 | * Always return a non-negative number, 0 for empty lists. There is no |
80 | * guarantee that the list is not updated while the count is being computed. | 105 | * guarantee that the list is not updated while the count is being computed. |
81 | * Callers that want such a guarantee need to provide an outer lock. | 106 | * Callers that want such a guarantee need to provide an outer lock. |
82 | */ | 107 | */ |
108 | unsigned long list_lru_count_one(struct list_lru *lru, | ||
109 | int nid, struct mem_cgroup *memcg); | ||
83 | unsigned long list_lru_count_node(struct list_lru *lru, int nid); | 110 | unsigned long list_lru_count_node(struct list_lru *lru, int nid); |
111 | |||
112 | static inline unsigned long list_lru_shrink_count(struct list_lru *lru, | ||
113 | struct shrink_control *sc) | ||
114 | { | ||
115 | return list_lru_count_one(lru, sc->nid, sc->memcg); | ||
116 | } | ||
117 | |||
84 | static inline unsigned long list_lru_count(struct list_lru *lru) | 118 | static inline unsigned long list_lru_count(struct list_lru *lru) |
85 | { | 119 | { |
86 | long count = 0; | 120 | long count = 0; |
87 | int nid; | 121 | int nid; |
88 | 122 | ||
89 | for_each_node_mask(nid, lru->active_nodes) | 123 | for_each_node_state(nid, N_NORMAL_MEMORY) |
90 | count += list_lru_count_node(lru, nid); | 124 | count += list_lru_count_node(lru, nid); |
91 | 125 | ||
92 | return count; | 126 | return count; |
93 | } | 127 | } |
94 | 128 | ||
95 | typedef enum lru_status | 129 | void list_lru_isolate(struct list_lru_one *list, struct list_head *item); |
96 | (*list_lru_walk_cb)(struct list_head *item, spinlock_t *lock, void *cb_arg); | 130 | void list_lru_isolate_move(struct list_lru_one *list, struct list_head *item, |
131 | struct list_head *head); | ||
132 | |||
133 | typedef enum lru_status (*list_lru_walk_cb)(struct list_head *item, | ||
134 | struct list_lru_one *list, spinlock_t *lock, void *cb_arg); | ||
135 | |||
97 | /** | 136 | /** |
98 | * list_lru_walk_node: walk a list_lru, isolating and disposing freeable items. | 137 | * list_lru_walk_one: walk a list_lru, isolating and disposing freeable items. |
99 | * @lru: the lru pointer. | 138 | * @lru: the lru pointer. |
100 | * @nid: the node id to scan from. | 139 | * @nid: the node id to scan from. |
140 | * @memcg: the cgroup to scan from. | ||
101 | * @isolate: callback function that is resposible for deciding what to do with | 141 | * @isolate: callback function that is resposible for deciding what to do with |
102 | * the item currently being scanned | 142 | * the item currently being scanned |
103 | * @cb_arg: opaque type that will be passed to @isolate | 143 | * @cb_arg: opaque type that will be passed to @isolate |
@@ -115,18 +155,30 @@ typedef enum lru_status | |||
115 | * | 155 | * |
116 | * Return value: the number of objects effectively removed from the LRU. | 156 | * Return value: the number of objects effectively removed from the LRU. |
117 | */ | 157 | */ |
158 | unsigned long list_lru_walk_one(struct list_lru *lru, | ||
159 | int nid, struct mem_cgroup *memcg, | ||
160 | list_lru_walk_cb isolate, void *cb_arg, | ||
161 | unsigned long *nr_to_walk); | ||
118 | unsigned long list_lru_walk_node(struct list_lru *lru, int nid, | 162 | unsigned long list_lru_walk_node(struct list_lru *lru, int nid, |
119 | list_lru_walk_cb isolate, void *cb_arg, | 163 | list_lru_walk_cb isolate, void *cb_arg, |
120 | unsigned long *nr_to_walk); | 164 | unsigned long *nr_to_walk); |
121 | 165 | ||
122 | static inline unsigned long | 166 | static inline unsigned long |
167 | list_lru_shrink_walk(struct list_lru *lru, struct shrink_control *sc, | ||
168 | list_lru_walk_cb isolate, void *cb_arg) | ||
169 | { | ||
170 | return list_lru_walk_one(lru, sc->nid, sc->memcg, isolate, cb_arg, | ||
171 | &sc->nr_to_scan); | ||
172 | } | ||
173 | |||
174 | static inline unsigned long | ||
123 | list_lru_walk(struct list_lru *lru, list_lru_walk_cb isolate, | 175 | list_lru_walk(struct list_lru *lru, list_lru_walk_cb isolate, |
124 | void *cb_arg, unsigned long nr_to_walk) | 176 | void *cb_arg, unsigned long nr_to_walk) |
125 | { | 177 | { |
126 | long isolated = 0; | 178 | long isolated = 0; |
127 | int nid; | 179 | int nid; |
128 | 180 | ||
129 | for_each_node_mask(nid, lru->active_nodes) { | 181 | for_each_node_state(nid, N_NORMAL_MEMORY) { |
130 | isolated += list_lru_walk_node(lru, nid, isolate, | 182 | isolated += list_lru_walk_node(lru, nid, isolate, |
131 | cb_arg, &nr_to_walk); | 183 | cb_arg, &nr_to_walk); |
132 | if (nr_to_walk <= 0) | 184 | if (nr_to_walk <= 0) |
diff --git a/include/linux/list_nulls.h b/include/linux/list_nulls.h index 5d10ae364b5e..f266661d2666 100644 --- a/include/linux/list_nulls.h +++ b/include/linux/list_nulls.h | |||
@@ -1,6 +1,9 @@ | |||
1 | #ifndef _LINUX_LIST_NULLS_H | 1 | #ifndef _LINUX_LIST_NULLS_H |
2 | #define _LINUX_LIST_NULLS_H | 2 | #define _LINUX_LIST_NULLS_H |
3 | 3 | ||
4 | #include <linux/poison.h> | ||
5 | #include <linux/const.h> | ||
6 | |||
4 | /* | 7 | /* |
5 | * Special version of lists, where end of list is not a NULL pointer, | 8 | * Special version of lists, where end of list is not a NULL pointer, |
6 | * but a 'nulls' marker, which can have many different values. | 9 | * but a 'nulls' marker, which can have many different values. |
@@ -21,8 +24,9 @@ struct hlist_nulls_head { | |||
21 | struct hlist_nulls_node { | 24 | struct hlist_nulls_node { |
22 | struct hlist_nulls_node *next, **pprev; | 25 | struct hlist_nulls_node *next, **pprev; |
23 | }; | 26 | }; |
27 | #define NULLS_MARKER(value) (1UL | (((long)value) << 1)) | ||
24 | #define INIT_HLIST_NULLS_HEAD(ptr, nulls) \ | 28 | #define INIT_HLIST_NULLS_HEAD(ptr, nulls) \ |
25 | ((ptr)->first = (struct hlist_nulls_node *) (1UL | (((long)nulls) << 1))) | 29 | ((ptr)->first = (struct hlist_nulls_node *) NULLS_MARKER(nulls)) |
26 | 30 | ||
27 | #define hlist_nulls_entry(ptr, type, member) container_of(ptr,type,member) | 31 | #define hlist_nulls_entry(ptr, type, member) container_of(ptr,type,member) |
28 | /** | 32 | /** |
diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h new file mode 100644 index 000000000000..95023fd8b00d --- /dev/null +++ b/include/linux/livepatch.h | |||
@@ -0,0 +1,133 @@ | |||
1 | /* | ||
2 | * livepatch.h - Kernel Live Patching Core | ||
3 | * | ||
4 | * Copyright (C) 2014 Seth Jennings <sjenning@redhat.com> | ||
5 | * Copyright (C) 2014 SUSE | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License | ||
9 | * as published by the Free Software Foundation; either version 2 | ||
10 | * of the License, or (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
19 | */ | ||
20 | |||
21 | #ifndef _LINUX_LIVEPATCH_H_ | ||
22 | #define _LINUX_LIVEPATCH_H_ | ||
23 | |||
24 | #include <linux/module.h> | ||
25 | #include <linux/ftrace.h> | ||
26 | |||
27 | #if IS_ENABLED(CONFIG_LIVEPATCH) | ||
28 | |||
29 | #include <asm/livepatch.h> | ||
30 | |||
31 | enum klp_state { | ||
32 | KLP_DISABLED, | ||
33 | KLP_ENABLED | ||
34 | }; | ||
35 | |||
36 | /** | ||
37 | * struct klp_func - function structure for live patching | ||
38 | * @old_name: name of the function to be patched | ||
39 | * @new_func: pointer to the patched function code | ||
40 | * @old_addr: a hint conveying at what address the old function | ||
41 | * can be found (optional, vmlinux patches only) | ||
42 | * @kobj: kobject for sysfs resources | ||
43 | * @state: tracks function-level patch application state | ||
44 | * @stack_node: list node for klp_ops func_stack list | ||
45 | */ | ||
46 | struct klp_func { | ||
47 | /* external */ | ||
48 | const char *old_name; | ||
49 | void *new_func; | ||
50 | /* | ||
51 | * The old_addr field is optional and can be used to resolve | ||
52 | * duplicate symbol names in the vmlinux object. If this | ||
53 | * information is not present, the symbol is located by name | ||
54 | * with kallsyms. If the name is not unique and old_addr is | ||
55 | * not provided, the patch application fails as there is no | ||
56 | * way to resolve the ambiguity. | ||
57 | */ | ||
58 | unsigned long old_addr; | ||
59 | |||
60 | /* internal */ | ||
61 | struct kobject kobj; | ||
62 | enum klp_state state; | ||
63 | struct list_head stack_node; | ||
64 | }; | ||
65 | |||
66 | /** | ||
67 | * struct klp_reloc - relocation structure for live patching | ||
68 | * @loc: address where the relocation will be written | ||
69 | * @val: address of the referenced symbol (optional, | ||
70 | * vmlinux patches only) | ||
71 | * @type: ELF relocation type | ||
72 | * @name: name of the referenced symbol (for lookup/verification) | ||
73 | * @addend: offset from the referenced symbol | ||
74 | * @external: symbol is either exported or within the live patch module itself | ||
75 | */ | ||
76 | struct klp_reloc { | ||
77 | unsigned long loc; | ||
78 | unsigned long val; | ||
79 | unsigned long type; | ||
80 | const char *name; | ||
81 | int addend; | ||
82 | int external; | ||
83 | }; | ||
84 | |||
85 | /** | ||
86 | * struct klp_object - kernel object structure for live patching | ||
87 | * @name: module name (or NULL for vmlinux) | ||
88 | * @relocs: relocation entries to be applied at load time | ||
89 | * @funcs: function entries for functions to be patched in the object | ||
90 | * @kobj: kobject for sysfs resources | ||
91 | * @mod: kernel module associated with the patched object | ||
92 | * (NULL for vmlinux) | ||
93 | * @state: tracks object-level patch application state | ||
94 | */ | ||
95 | struct klp_object { | ||
96 | /* external */ | ||
97 | const char *name; | ||
98 | struct klp_reloc *relocs; | ||
99 | struct klp_func *funcs; | ||
100 | |||
101 | /* internal */ | ||
102 | struct kobject *kobj; | ||
103 | struct module *mod; | ||
104 | enum klp_state state; | ||
105 | }; | ||
106 | |||
107 | /** | ||
108 | * struct klp_patch - patch structure for live patching | ||
109 | * @mod: reference to the live patch module | ||
110 | * @objs: object entries for kernel objects to be patched | ||
111 | * @list: list node for global list of registered patches | ||
112 | * @kobj: kobject for sysfs resources | ||
113 | * @state: tracks patch-level application state | ||
114 | */ | ||
115 | struct klp_patch { | ||
116 | /* external */ | ||
117 | struct module *mod; | ||
118 | struct klp_object *objs; | ||
119 | |||
120 | /* internal */ | ||
121 | struct list_head list; | ||
122 | struct kobject kobj; | ||
123 | enum klp_state state; | ||
124 | }; | ||
125 | |||
126 | extern int klp_register_patch(struct klp_patch *); | ||
127 | extern int klp_unregister_patch(struct klp_patch *); | ||
128 | extern int klp_enable_patch(struct klp_patch *); | ||
129 | extern int klp_disable_patch(struct klp_patch *); | ||
130 | |||
131 | #endif /* CONFIG_LIVEPATCH */ | ||
132 | |||
133 | #endif /* _LINUX_LIVEPATCH_H_ */ | ||
diff --git a/include/linux/lockref.h b/include/linux/lockref.h index 4bfde0e99ed5..b10b122dd099 100644 --- a/include/linux/lockref.h +++ b/include/linux/lockref.h | |||
@@ -28,12 +28,13 @@ struct lockref { | |||
28 | #endif | 28 | #endif |
29 | struct { | 29 | struct { |
30 | spinlock_t lock; | 30 | spinlock_t lock; |
31 | unsigned int count; | 31 | int count; |
32 | }; | 32 | }; |
33 | }; | 33 | }; |
34 | }; | 34 | }; |
35 | 35 | ||
36 | extern void lockref_get(struct lockref *); | 36 | extern void lockref_get(struct lockref *); |
37 | extern int lockref_put_return(struct lockref *); | ||
37 | extern int lockref_get_not_zero(struct lockref *); | 38 | extern int lockref_get_not_zero(struct lockref *); |
38 | extern int lockref_get_or_lock(struct lockref *); | 39 | extern int lockref_get_or_lock(struct lockref *); |
39 | extern int lockref_put_or_lock(struct lockref *); | 40 | extern int lockref_put_or_lock(struct lockref *); |
diff --git a/include/linux/mei_cl_bus.h b/include/linux/mei_cl_bus.h index 164aad1f9f12..0819d36a3a74 100644 --- a/include/linux/mei_cl_bus.h +++ b/include/linux/mei_cl_bus.h | |||
@@ -25,8 +25,8 @@ int __mei_cl_driver_register(struct mei_cl_driver *driver, | |||
25 | 25 | ||
26 | void mei_cl_driver_unregister(struct mei_cl_driver *driver); | 26 | void mei_cl_driver_unregister(struct mei_cl_driver *driver); |
27 | 27 | ||
28 | int mei_cl_send(struct mei_cl_device *device, u8 *buf, size_t length); | 28 | ssize_t mei_cl_send(struct mei_cl_device *device, u8 *buf, size_t length); |
29 | int mei_cl_recv(struct mei_cl_device *device, u8 *buf, size_t length); | 29 | ssize_t mei_cl_recv(struct mei_cl_device *device, u8 *buf, size_t length); |
30 | 30 | ||
31 | typedef void (*mei_cl_event_cb_t)(struct mei_cl_device *device, | 31 | typedef void (*mei_cl_event_cb_t)(struct mei_cl_device *device, |
32 | u32 events, void *context); | 32 | u32 events, void *context); |
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index 7c95af8d552c..72dff5fb0d0c 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h | |||
@@ -52,7 +52,27 @@ struct mem_cgroup_reclaim_cookie { | |||
52 | unsigned int generation; | 52 | unsigned int generation; |
53 | }; | 53 | }; |
54 | 54 | ||
55 | enum mem_cgroup_events_index { | ||
56 | MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */ | ||
57 | MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */ | ||
58 | MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */ | ||
59 | MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */ | ||
60 | MEM_CGROUP_EVENTS_NSTATS, | ||
61 | /* default hierarchy events */ | ||
62 | MEMCG_LOW = MEM_CGROUP_EVENTS_NSTATS, | ||
63 | MEMCG_HIGH, | ||
64 | MEMCG_MAX, | ||
65 | MEMCG_OOM, | ||
66 | MEMCG_NR_EVENTS, | ||
67 | }; | ||
68 | |||
55 | #ifdef CONFIG_MEMCG | 69 | #ifdef CONFIG_MEMCG |
70 | void mem_cgroup_events(struct mem_cgroup *memcg, | ||
71 | enum mem_cgroup_events_index idx, | ||
72 | unsigned int nr); | ||
73 | |||
74 | bool mem_cgroup_low(struct mem_cgroup *root, struct mem_cgroup *memcg); | ||
75 | |||
56 | int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm, | 76 | int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm, |
57 | gfp_t gfp_mask, struct mem_cgroup **memcgp); | 77 | gfp_t gfp_mask, struct mem_cgroup **memcgp); |
58 | void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg, | 78 | void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg, |
@@ -102,6 +122,7 @@ void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *); | |||
102 | * For memory reclaim. | 122 | * For memory reclaim. |
103 | */ | 123 | */ |
104 | int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec); | 124 | int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec); |
125 | bool mem_cgroup_lruvec_online(struct lruvec *lruvec); | ||
105 | int mem_cgroup_select_victim_node(struct mem_cgroup *memcg); | 126 | int mem_cgroup_select_victim_node(struct mem_cgroup *memcg); |
106 | unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list); | 127 | unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list); |
107 | void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int); | 128 | void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int); |
@@ -138,12 +159,10 @@ static inline bool mem_cgroup_disabled(void) | |||
138 | return false; | 159 | return false; |
139 | } | 160 | } |
140 | 161 | ||
141 | struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page, bool *locked, | 162 | struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page); |
142 | unsigned long *flags); | ||
143 | void mem_cgroup_end_page_stat(struct mem_cgroup *memcg, bool *locked, | ||
144 | unsigned long *flags); | ||
145 | void mem_cgroup_update_page_stat(struct mem_cgroup *memcg, | 163 | void mem_cgroup_update_page_stat(struct mem_cgroup *memcg, |
146 | enum mem_cgroup_stat_index idx, int val); | 164 | enum mem_cgroup_stat_index idx, int val); |
165 | void mem_cgroup_end_page_stat(struct mem_cgroup *memcg); | ||
147 | 166 | ||
148 | static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg, | 167 | static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg, |
149 | enum mem_cgroup_stat_index idx) | 168 | enum mem_cgroup_stat_index idx) |
@@ -176,6 +195,18 @@ void mem_cgroup_split_huge_fixup(struct page *head); | |||
176 | #else /* CONFIG_MEMCG */ | 195 | #else /* CONFIG_MEMCG */ |
177 | struct mem_cgroup; | 196 | struct mem_cgroup; |
178 | 197 | ||
198 | static inline void mem_cgroup_events(struct mem_cgroup *memcg, | ||
199 | enum mem_cgroup_events_index idx, | ||
200 | unsigned int nr) | ||
201 | { | ||
202 | } | ||
203 | |||
204 | static inline bool mem_cgroup_low(struct mem_cgroup *root, | ||
205 | struct mem_cgroup *memcg) | ||
206 | { | ||
207 | return false; | ||
208 | } | ||
209 | |||
179 | static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm, | 210 | static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm, |
180 | gfp_t gfp_mask, | 211 | gfp_t gfp_mask, |
181 | struct mem_cgroup **memcgp) | 212 | struct mem_cgroup **memcgp) |
@@ -268,6 +299,11 @@ mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec) | |||
268 | return 1; | 299 | return 1; |
269 | } | 300 | } |
270 | 301 | ||
302 | static inline bool mem_cgroup_lruvec_online(struct lruvec *lruvec) | ||
303 | { | ||
304 | return true; | ||
305 | } | ||
306 | |||
271 | static inline unsigned long | 307 | static inline unsigned long |
272 | mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru) | 308 | mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru) |
273 | { | 309 | { |
@@ -285,14 +321,12 @@ mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p) | |||
285 | { | 321 | { |
286 | } | 322 | } |
287 | 323 | ||
288 | static inline struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page, | 324 | static inline struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page) |
289 | bool *locked, unsigned long *flags) | ||
290 | { | 325 | { |
291 | return NULL; | 326 | return NULL; |
292 | } | 327 | } |
293 | 328 | ||
294 | static inline void mem_cgroup_end_page_stat(struct mem_cgroup *memcg, | 329 | static inline void mem_cgroup_end_page_stat(struct mem_cgroup *memcg) |
295 | bool *locked, unsigned long *flags) | ||
296 | { | 330 | { |
297 | } | 331 | } |
298 | 332 | ||
@@ -364,7 +398,9 @@ static inline void sock_release_memcg(struct sock *sk) | |||
364 | #ifdef CONFIG_MEMCG_KMEM | 398 | #ifdef CONFIG_MEMCG_KMEM |
365 | extern struct static_key memcg_kmem_enabled_key; | 399 | extern struct static_key memcg_kmem_enabled_key; |
366 | 400 | ||
367 | extern int memcg_limited_groups_array_size; | 401 | extern int memcg_nr_cache_ids; |
402 | extern void memcg_get_cache_ids(void); | ||
403 | extern void memcg_put_cache_ids(void); | ||
368 | 404 | ||
369 | /* | 405 | /* |
370 | * Helper macro to loop through all memcg-specific caches. Callers must still | 406 | * Helper macro to loop through all memcg-specific caches. Callers must still |
@@ -372,13 +408,15 @@ extern int memcg_limited_groups_array_size; | |||
372 | * the slab_mutex must be held when looping through those caches | 408 | * the slab_mutex must be held when looping through those caches |
373 | */ | 409 | */ |
374 | #define for_each_memcg_cache_index(_idx) \ | 410 | #define for_each_memcg_cache_index(_idx) \ |
375 | for ((_idx) = 0; (_idx) < memcg_limited_groups_array_size; (_idx)++) | 411 | for ((_idx) = 0; (_idx) < memcg_nr_cache_ids; (_idx)++) |
376 | 412 | ||
377 | static inline bool memcg_kmem_enabled(void) | 413 | static inline bool memcg_kmem_enabled(void) |
378 | { | 414 | { |
379 | return static_key_false(&memcg_kmem_enabled_key); | 415 | return static_key_false(&memcg_kmem_enabled_key); |
380 | } | 416 | } |
381 | 417 | ||
418 | bool memcg_kmem_is_active(struct mem_cgroup *memcg); | ||
419 | |||
382 | /* | 420 | /* |
383 | * In general, we'll do everything in our power to not incur in any overhead | 421 | * In general, we'll do everything in our power to not incur in any overhead |
384 | * for non-memcg users for the kmem functions. Not even a function call, if we | 422 | * for non-memcg users for the kmem functions. Not even a function call, if we |
@@ -398,15 +436,14 @@ void __memcg_kmem_uncharge_pages(struct page *page, int order); | |||
398 | 436 | ||
399 | int memcg_cache_id(struct mem_cgroup *memcg); | 437 | int memcg_cache_id(struct mem_cgroup *memcg); |
400 | 438 | ||
401 | void memcg_update_array_size(int num_groups); | ||
402 | |||
403 | struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep); | 439 | struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep); |
404 | void __memcg_kmem_put_cache(struct kmem_cache *cachep); | 440 | void __memcg_kmem_put_cache(struct kmem_cache *cachep); |
405 | 441 | ||
406 | int __memcg_charge_slab(struct kmem_cache *cachep, gfp_t gfp, int order); | 442 | struct mem_cgroup *__mem_cgroup_from_kmem(void *ptr); |
407 | void __memcg_uncharge_slab(struct kmem_cache *cachep, int order); | ||
408 | 443 | ||
409 | int __memcg_cleanup_cache_params(struct kmem_cache *s); | 444 | int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, |
445 | unsigned long nr_pages); | ||
446 | void memcg_uncharge_kmem(struct mem_cgroup *memcg, unsigned long nr_pages); | ||
410 | 447 | ||
411 | /** | 448 | /** |
412 | * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed. | 449 | * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed. |
@@ -500,6 +537,13 @@ static __always_inline void memcg_kmem_put_cache(struct kmem_cache *cachep) | |||
500 | if (memcg_kmem_enabled()) | 537 | if (memcg_kmem_enabled()) |
501 | __memcg_kmem_put_cache(cachep); | 538 | __memcg_kmem_put_cache(cachep); |
502 | } | 539 | } |
540 | |||
541 | static __always_inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr) | ||
542 | { | ||
543 | if (!memcg_kmem_enabled()) | ||
544 | return NULL; | ||
545 | return __mem_cgroup_from_kmem(ptr); | ||
546 | } | ||
503 | #else | 547 | #else |
504 | #define for_each_memcg_cache_index(_idx) \ | 548 | #define for_each_memcg_cache_index(_idx) \ |
505 | for (; NULL; ) | 549 | for (; NULL; ) |
@@ -509,6 +553,11 @@ static inline bool memcg_kmem_enabled(void) | |||
509 | return false; | 553 | return false; |
510 | } | 554 | } |
511 | 555 | ||
556 | static inline bool memcg_kmem_is_active(struct mem_cgroup *memcg) | ||
557 | { | ||
558 | return false; | ||
559 | } | ||
560 | |||
512 | static inline bool | 561 | static inline bool |
513 | memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order) | 562 | memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order) |
514 | { | 563 | { |
@@ -529,6 +578,14 @@ static inline int memcg_cache_id(struct mem_cgroup *memcg) | |||
529 | return -1; | 578 | return -1; |
530 | } | 579 | } |
531 | 580 | ||
581 | static inline void memcg_get_cache_ids(void) | ||
582 | { | ||
583 | } | ||
584 | |||
585 | static inline void memcg_put_cache_ids(void) | ||
586 | { | ||
587 | } | ||
588 | |||
532 | static inline struct kmem_cache * | 589 | static inline struct kmem_cache * |
533 | memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) | 590 | memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) |
534 | { | 591 | { |
@@ -538,6 +595,11 @@ memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) | |||
538 | static inline void memcg_kmem_put_cache(struct kmem_cache *cachep) | 595 | static inline void memcg_kmem_put_cache(struct kmem_cache *cachep) |
539 | { | 596 | { |
540 | } | 597 | } |
598 | |||
599 | static inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr) | ||
600 | { | ||
601 | return NULL; | ||
602 | } | ||
541 | #endif /* CONFIG_MEMCG_KMEM */ | 603 | #endif /* CONFIG_MEMCG_KMEM */ |
542 | #endif /* _LINUX_MEMCONTROL_H */ | 604 | #endif /* _LINUX_MEMCONTROL_H */ |
543 | 605 | ||
diff --git a/include/linux/mfd/abx500/ab8500-bm.h b/include/linux/mfd/abx500/ab8500-bm.h index cc892a8d8d6e..12a5b396921e 100644 --- a/include/linux/mfd/abx500/ab8500-bm.h +++ b/include/linux/mfd/abx500/ab8500-bm.h | |||
@@ -461,7 +461,6 @@ struct ab8500_fg; | |||
461 | #ifdef CONFIG_AB8500_BM | 461 | #ifdef CONFIG_AB8500_BM |
462 | extern struct abx500_bm_data ab8500_bm_data; | 462 | extern struct abx500_bm_data ab8500_bm_data; |
463 | 463 | ||
464 | void ab8500_fg_reinit(void); | ||
465 | void ab8500_charger_usb_state_changed(u8 bm_usb_state, u16 mA); | 464 | void ab8500_charger_usb_state_changed(u8 bm_usb_state, u16 mA); |
466 | struct ab8500_btemp *ab8500_btemp_get(void); | 465 | struct ab8500_btemp *ab8500_btemp_get(void); |
467 | int ab8500_btemp_get_batctrl_temp(struct ab8500_btemp *btemp); | 466 | int ab8500_btemp_get_batctrl_temp(struct ab8500_btemp *btemp); |
diff --git a/include/linux/mfd/axp20x.h b/include/linux/mfd/axp20x.h index 81589d176ae8..dfabd6db7ddf 100644 --- a/include/linux/mfd/axp20x.h +++ b/include/linux/mfd/axp20x.h | |||
@@ -124,10 +124,27 @@ enum { | |||
124 | #define AXP288_PMIC_ADC_H 0x56 | 124 | #define AXP288_PMIC_ADC_H 0x56 |
125 | #define AXP288_PMIC_ADC_L 0x57 | 125 | #define AXP288_PMIC_ADC_L 0x57 |
126 | #define AXP288_ADC_TS_PIN_CTRL 0x84 | 126 | #define AXP288_ADC_TS_PIN_CTRL 0x84 |
127 | |||
128 | #define AXP288_PMIC_ADC_EN 0x84 | 127 | #define AXP288_PMIC_ADC_EN 0x84 |
129 | #define AXP288_FG_TUNE5 0xed | ||
130 | 128 | ||
129 | /* Fuel Gauge */ | ||
130 | #define AXP288_FG_RDC1_REG 0xba | ||
131 | #define AXP288_FG_RDC0_REG 0xbb | ||
132 | #define AXP288_FG_OCVH_REG 0xbc | ||
133 | #define AXP288_FG_OCVL_REG 0xbd | ||
134 | #define AXP288_FG_OCV_CURVE_REG 0xc0 | ||
135 | #define AXP288_FG_DES_CAP1_REG 0xe0 | ||
136 | #define AXP288_FG_DES_CAP0_REG 0xe1 | ||
137 | #define AXP288_FG_CC_MTR1_REG 0xe2 | ||
138 | #define AXP288_FG_CC_MTR0_REG 0xe3 | ||
139 | #define AXP288_FG_OCV_CAP_REG 0xe4 | ||
140 | #define AXP288_FG_CC_CAP_REG 0xe5 | ||
141 | #define AXP288_FG_LOW_CAP_REG 0xe6 | ||
142 | #define AXP288_FG_TUNE0 0xe8 | ||
143 | #define AXP288_FG_TUNE1 0xe9 | ||
144 | #define AXP288_FG_TUNE2 0xea | ||
145 | #define AXP288_FG_TUNE3 0xeb | ||
146 | #define AXP288_FG_TUNE4 0xec | ||
147 | #define AXP288_FG_TUNE5 0xed | ||
131 | 148 | ||
132 | /* Regulators IDs */ | 149 | /* Regulators IDs */ |
133 | enum { | 150 | enum { |
@@ -236,4 +253,26 @@ struct axp20x_dev { | |||
236 | const struct regmap_irq_chip *regmap_irq_chip; | 253 | const struct regmap_irq_chip *regmap_irq_chip; |
237 | }; | 254 | }; |
238 | 255 | ||
256 | #define BATTID_LEN 64 | ||
257 | #define OCV_CURVE_SIZE 32 | ||
258 | #define MAX_THERM_CURVE_SIZE 25 | ||
259 | #define PD_DEF_MIN_TEMP 0 | ||
260 | #define PD_DEF_MAX_TEMP 55 | ||
261 | |||
262 | struct axp20x_fg_pdata { | ||
263 | char battid[BATTID_LEN + 1]; | ||
264 | int design_cap; | ||
265 | int min_volt; | ||
266 | int max_volt; | ||
267 | int max_temp; | ||
268 | int min_temp; | ||
269 | int cap1; | ||
270 | int cap0; | ||
271 | int rdc1; | ||
272 | int rdc0; | ||
273 | int ocv_curve[OCV_CURVE_SIZE]; | ||
274 | int tcsz; | ||
275 | int thermistor_curve[MAX_THERM_CURVE_SIZE][2]; | ||
276 | }; | ||
277 | |||
239 | #endif /* __LINUX_MFD_AXP20X_H */ | 278 | #endif /* __LINUX_MFD_AXP20X_H */ |
diff --git a/include/linux/mfd/da9063/core.h b/include/linux/mfd/da9063/core.h index b92a3262f8f6..79f4d822ba13 100644 --- a/include/linux/mfd/da9063/core.h +++ b/include/linux/mfd/da9063/core.h | |||
@@ -36,6 +36,7 @@ enum da9063_models { | |||
36 | enum da9063_variant_codes { | 36 | enum da9063_variant_codes { |
37 | PMIC_DA9063_AD = 0x3, | 37 | PMIC_DA9063_AD = 0x3, |
38 | PMIC_DA9063_BB = 0x5, | 38 | PMIC_DA9063_BB = 0x5, |
39 | PMIC_DA9063_CA = 0x6, | ||
39 | }; | 40 | }; |
40 | 41 | ||
41 | /* Interrupts */ | 42 | /* Interrupts */ |
diff --git a/include/linux/mfd/da9150/core.h b/include/linux/mfd/da9150/core.h new file mode 100644 index 000000000000..76e668933a77 --- /dev/null +++ b/include/linux/mfd/da9150/core.h | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * DA9150 MFD Driver - Core Data | ||
3 | * | ||
4 | * Copyright (c) 2014 Dialog Semiconductor | ||
5 | * | ||
6 | * Author: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | */ | ||
13 | |||
14 | #ifndef __DA9150_CORE_H | ||
15 | #define __DA9150_CORE_H | ||
16 | |||
17 | #include <linux/device.h> | ||
18 | #include <linux/interrupt.h> | ||
19 | #include <linux/regmap.h> | ||
20 | |||
21 | /* I2C address paging */ | ||
22 | #define DA9150_REG_PAGE_SHIFT 8 | ||
23 | #define DA9150_REG_PAGE_MASK 0xFF | ||
24 | |||
25 | /* IRQs */ | ||
26 | #define DA9150_NUM_IRQ_REGS 4 | ||
27 | #define DA9150_IRQ_VBUS 0 | ||
28 | #define DA9150_IRQ_CHG 1 | ||
29 | #define DA9150_IRQ_TCLASS 2 | ||
30 | #define DA9150_IRQ_TJUNC 3 | ||
31 | #define DA9150_IRQ_VFAULT 4 | ||
32 | #define DA9150_IRQ_CONF 5 | ||
33 | #define DA9150_IRQ_DAT 6 | ||
34 | #define DA9150_IRQ_DTYPE 7 | ||
35 | #define DA9150_IRQ_ID 8 | ||
36 | #define DA9150_IRQ_ADP 9 | ||
37 | #define DA9150_IRQ_SESS_END 10 | ||
38 | #define DA9150_IRQ_SESS_VLD 11 | ||
39 | #define DA9150_IRQ_FG 12 | ||
40 | #define DA9150_IRQ_GP 13 | ||
41 | #define DA9150_IRQ_TBAT 14 | ||
42 | #define DA9150_IRQ_GPIOA 15 | ||
43 | #define DA9150_IRQ_GPIOB 16 | ||
44 | #define DA9150_IRQ_GPIOC 17 | ||
45 | #define DA9150_IRQ_GPIOD 18 | ||
46 | #define DA9150_IRQ_GPADC 19 | ||
47 | #define DA9150_IRQ_WKUP 20 | ||
48 | |||
49 | struct da9150_pdata { | ||
50 | int irq_base; | ||
51 | }; | ||
52 | |||
53 | struct da9150 { | ||
54 | struct device *dev; | ||
55 | struct regmap *regmap; | ||
56 | struct regmap_irq_chip_data *regmap_irq_data; | ||
57 | int irq; | ||
58 | int irq_base; | ||
59 | }; | ||
60 | |||
61 | /* Device I/O */ | ||
62 | u8 da9150_reg_read(struct da9150 *da9150, u16 reg); | ||
63 | void da9150_reg_write(struct da9150 *da9150, u16 reg, u8 val); | ||
64 | void da9150_set_bits(struct da9150 *da9150, u16 reg, u8 mask, u8 val); | ||
65 | |||
66 | void da9150_bulk_read(struct da9150 *da9150, u16 reg, int count, u8 *buf); | ||
67 | void da9150_bulk_write(struct da9150 *da9150, u16 reg, int count, const u8 *buf); | ||
68 | #endif /* __DA9150_CORE_H */ | ||
diff --git a/include/linux/mfd/da9150/registers.h b/include/linux/mfd/da9150/registers.h new file mode 100644 index 000000000000..27ca6ee4d840 --- /dev/null +++ b/include/linux/mfd/da9150/registers.h | |||
@@ -0,0 +1,1155 @@ | |||
1 | /* | ||
2 | * DA9150 MFD Driver - Registers | ||
3 | * | ||
4 | * Copyright (c) 2014 Dialog Semiconductor | ||
5 | * | ||
6 | * Author: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | */ | ||
13 | |||
14 | #ifndef __DA9150_REGISTERS_H | ||
15 | #define __DA9150_REGISTERS_H | ||
16 | |||
17 | #include <linux/bitops.h> | ||
18 | |||
19 | /* Registers */ | ||
20 | #define DA9150_PAGE_CON 0x000 | ||
21 | #define DA9150_STATUS_A 0x068 | ||
22 | #define DA9150_STATUS_B 0x069 | ||
23 | #define DA9150_STATUS_C 0x06A | ||
24 | #define DA9150_STATUS_D 0x06B | ||
25 | #define DA9150_STATUS_E 0x06C | ||
26 | #define DA9150_STATUS_F 0x06D | ||
27 | #define DA9150_STATUS_G 0x06E | ||
28 | #define DA9150_STATUS_H 0x06F | ||
29 | #define DA9150_STATUS_I 0x070 | ||
30 | #define DA9150_STATUS_J 0x071 | ||
31 | #define DA9150_STATUS_K 0x072 | ||
32 | #define DA9150_STATUS_L 0x073 | ||
33 | #define DA9150_STATUS_N 0x074 | ||
34 | #define DA9150_FAULT_LOG_A 0x076 | ||
35 | #define DA9150_FAULT_LOG_B 0x077 | ||
36 | #define DA9150_EVENT_E 0x078 | ||
37 | #define DA9150_EVENT_F 0x079 | ||
38 | #define DA9150_EVENT_G 0x07A | ||
39 | #define DA9150_EVENT_H 0x07B | ||
40 | #define DA9150_IRQ_MASK_E 0x07C | ||
41 | #define DA9150_IRQ_MASK_F 0x07D | ||
42 | #define DA9150_IRQ_MASK_G 0x07E | ||
43 | #define DA9150_IRQ_MASK_H 0x07F | ||
44 | #define DA9150_PAGE_CON_1 0x080 | ||
45 | #define DA9150_CONFIG_A 0x0E0 | ||
46 | #define DA9150_CONFIG_B 0x0E1 | ||
47 | #define DA9150_CONFIG_C 0x0E2 | ||
48 | #define DA9150_CONFIG_D 0x0E3 | ||
49 | #define DA9150_CONFIG_E 0x0E4 | ||
50 | #define DA9150_CONTROL_A 0x0E5 | ||
51 | #define DA9150_CONTROL_B 0x0E6 | ||
52 | #define DA9150_CONTROL_C 0x0E7 | ||
53 | #define DA9150_GPIO_A_B 0x0E8 | ||
54 | #define DA9150_GPIO_C_D 0x0E9 | ||
55 | #define DA9150_GPIO_MODE_CONT 0x0EA | ||
56 | #define DA9150_GPIO_CTRL_B 0x0EB | ||
57 | #define DA9150_GPIO_CTRL_A 0x0EC | ||
58 | #define DA9150_GPIO_CTRL_C 0x0ED | ||
59 | #define DA9150_GPIO_CFG_A 0x0EE | ||
60 | #define DA9150_GPIO_CFG_B 0x0EF | ||
61 | #define DA9150_GPIO_CFG_C 0x0F0 | ||
62 | #define DA9150_GPADC_MAN 0x0F2 | ||
63 | #define DA9150_GPADC_RES_A 0x0F4 | ||
64 | #define DA9150_GPADC_RES_B 0x0F5 | ||
65 | #define DA9150_PAGE_CON_2 0x100 | ||
66 | #define DA9150_OTP_CONT_SHARED 0x101 | ||
67 | #define DA9150_INTERFACE_SHARED 0x105 | ||
68 | #define DA9150_CONFIG_A_SHARED 0x106 | ||
69 | #define DA9150_CONFIG_D_SHARED 0x109 | ||
70 | #define DA9150_ADETVB_CFG_C 0x150 | ||
71 | #define DA9150_ADETD_STAT 0x151 | ||
72 | #define DA9150_ADET_CMPSTAT 0x152 | ||
73 | #define DA9150_ADET_CTRL_A 0x153 | ||
74 | #define DA9150_ADETVB_CFG_B 0x154 | ||
75 | #define DA9150_ADETVB_CFG_A 0x155 | ||
76 | #define DA9150_ADETAC_CFG_A 0x156 | ||
77 | #define DA9150_ADDETAC_CFG_B 0x157 | ||
78 | #define DA9150_ADETAC_CFG_C 0x158 | ||
79 | #define DA9150_ADETAC_CFG_D 0x159 | ||
80 | #define DA9150_ADETVB_CFG_D 0x15A | ||
81 | #define DA9150_ADETID_CFG_A 0x15B | ||
82 | #define DA9150_ADET_RID_PT_CHG_H 0x15C | ||
83 | #define DA9150_ADET_RID_PT_CHG_L 0x15D | ||
84 | #define DA9150_PPR_TCTR_B 0x160 | ||
85 | #define DA9150_PPR_BKCTRL_A 0x163 | ||
86 | #define DA9150_PPR_BKCFG_A 0x164 | ||
87 | #define DA9150_PPR_BKCFG_B 0x165 | ||
88 | #define DA9150_PPR_CHGCTRL_A 0x166 | ||
89 | #define DA9150_PPR_CHGCTRL_B 0x167 | ||
90 | #define DA9150_PPR_CHGCTRL_C 0x168 | ||
91 | #define DA9150_PPR_TCTR_A 0x169 | ||
92 | #define DA9150_PPR_CHGCTRL_D 0x16A | ||
93 | #define DA9150_PPR_CHGCTRL_E 0x16B | ||
94 | #define DA9150_PPR_CHGCTRL_F 0x16C | ||
95 | #define DA9150_PPR_CHGCTRL_G 0x16D | ||
96 | #define DA9150_PPR_CHGCTRL_H 0x16E | ||
97 | #define DA9150_PPR_CHGCTRL_I 0x16F | ||
98 | #define DA9150_PPR_CHGCTRL_J 0x170 | ||
99 | #define DA9150_PPR_CHGCTRL_K 0x171 | ||
100 | #define DA9150_PPR_CHGCTRL_L 0x172 | ||
101 | #define DA9150_PPR_CHGCTRL_M 0x173 | ||
102 | #define DA9150_PPR_THYST_A 0x174 | ||
103 | #define DA9150_PPR_THYST_B 0x175 | ||
104 | #define DA9150_PPR_THYST_C 0x176 | ||
105 | #define DA9150_PPR_THYST_D 0x177 | ||
106 | #define DA9150_PPR_THYST_E 0x178 | ||
107 | #define DA9150_PPR_THYST_F 0x179 | ||
108 | #define DA9150_PPR_THYST_G 0x17A | ||
109 | #define DA9150_PAGE_CON_3 0x180 | ||
110 | #define DA9150_PAGE_CON_4 0x200 | ||
111 | #define DA9150_PAGE_CON_5 0x280 | ||
112 | #define DA9150_PAGE_CON_6 0x300 | ||
113 | #define DA9150_COREBTLD_STAT_A 0x302 | ||
114 | #define DA9150_COREBTLD_CTRL_A 0x303 | ||
115 | #define DA9150_CORE_CONFIG_A 0x304 | ||
116 | #define DA9150_CORE_CONFIG_C 0x305 | ||
117 | #define DA9150_CORE_CONFIG_B 0x306 | ||
118 | #define DA9150_CORE_CFG_DATA_A 0x307 | ||
119 | #define DA9150_CORE_CFG_DATA_B 0x308 | ||
120 | #define DA9150_CORE_CMD_A 0x309 | ||
121 | #define DA9150_CORE_DATA_A 0x30A | ||
122 | #define DA9150_CORE_DATA_B 0x30B | ||
123 | #define DA9150_CORE_DATA_C 0x30C | ||
124 | #define DA9150_CORE_DATA_D 0x30D | ||
125 | #define DA9150_CORE2WIRE_STAT_A 0x310 | ||
126 | #define DA9150_CORE2WIRE_CTRL_A 0x311 | ||
127 | #define DA9150_FW_CTRL_A 0x312 | ||
128 | #define DA9150_FW_CTRL_C 0x313 | ||
129 | #define DA9150_FW_CTRL_D 0x314 | ||
130 | #define DA9150_FG_CTRL_A 0x315 | ||
131 | #define DA9150_FG_CTRL_B 0x316 | ||
132 | #define DA9150_FW_CTRL_E 0x317 | ||
133 | #define DA9150_FW_CTRL_B 0x318 | ||
134 | #define DA9150_GPADC_CMAN 0x320 | ||
135 | #define DA9150_GPADC_CRES_A 0x322 | ||
136 | #define DA9150_GPADC_CRES_B 0x323 | ||
137 | #define DA9150_CC_CFG_A 0x328 | ||
138 | #define DA9150_CC_CFG_B 0x329 | ||
139 | #define DA9150_CC_ICHG_RES_A 0x32A | ||
140 | #define DA9150_CC_ICHG_RES_B 0x32B | ||
141 | #define DA9150_CC_IAVG_RES_A 0x32C | ||
142 | #define DA9150_CC_IAVG_RES_B 0x32D | ||
143 | #define DA9150_TAUX_CTRL_A 0x330 | ||
144 | #define DA9150_TAUX_RELOAD_H 0x332 | ||
145 | #define DA9150_TAUX_RELOAD_L 0x333 | ||
146 | #define DA9150_TAUX_VALUE_H 0x334 | ||
147 | #define DA9150_TAUX_VALUE_L 0x335 | ||
148 | #define DA9150_AUX_DATA_0 0x338 | ||
149 | #define DA9150_AUX_DATA_1 0x339 | ||
150 | #define DA9150_AUX_DATA_2 0x33A | ||
151 | #define DA9150_AUX_DATA_3 0x33B | ||
152 | #define DA9150_BIF_CTRL 0x340 | ||
153 | #define DA9150_TBAT_CTRL_A 0x342 | ||
154 | #define DA9150_TBAT_CTRL_B 0x343 | ||
155 | #define DA9150_TBAT_RES_A 0x344 | ||
156 | #define DA9150_TBAT_RES_B 0x345 | ||
157 | |||
158 | /* DA9150_PAGE_CON = 0x000 */ | ||
159 | #define DA9150_PAGE_SHIFT 0 | ||
160 | #define DA9150_PAGE_MASK (0x3f << 0) | ||
161 | #define DA9150_I2C_PAGE_SHIFT 1 | ||
162 | #define DA9150_I2C_PAGE_MASK (0x1f << 1) | ||
163 | #define DA9150_WRITE_MODE_SHIFT 6 | ||
164 | #define DA9150_WRITE_MODE_MASK BIT(6) | ||
165 | #define DA9150_REVERT_SHIFT 7 | ||
166 | #define DA9150_REVERT_MASK BIT(7) | ||
167 | |||
168 | /* DA9150_STATUS_A = 0x068 */ | ||
169 | #define DA9150_WKUP_STAT_SHIFT 2 | ||
170 | #define DA9150_WKUP_STAT_MASK (0x0f << 2) | ||
171 | #define DA9150_SLEEP_STAT_SHIFT 6 | ||
172 | #define DA9150_SLEEP_STAT_MASK (0x03 << 6) | ||
173 | |||
174 | /* DA9150_STATUS_B = 0x069 */ | ||
175 | #define DA9150_VFAULT_STAT_SHIFT 0 | ||
176 | #define DA9150_VFAULT_STAT_MASK BIT(0) | ||
177 | #define DA9150_TFAULT_STAT_SHIFT 1 | ||
178 | #define DA9150_TFAULT_STAT_MASK BIT(1) | ||
179 | |||
180 | /* DA9150_STATUS_C = 0x06A */ | ||
181 | #define DA9150_VDD33_STAT_SHIFT 0 | ||
182 | #define DA9150_VDD33_STAT_MASK BIT(0) | ||
183 | #define DA9150_VDD33_SLEEP_SHIFT 1 | ||
184 | #define DA9150_VDD33_SLEEP_MASK BIT(1) | ||
185 | #define DA9150_LFOSC_STAT_SHIFT 7 | ||
186 | #define DA9150_LFOSC_STAT_MASK BIT(7) | ||
187 | |||
188 | /* DA9150_STATUS_D = 0x06B */ | ||
189 | #define DA9150_GPIOA_STAT_SHIFT 0 | ||
190 | #define DA9150_GPIOA_STAT_MASK BIT(0) | ||
191 | #define DA9150_GPIOB_STAT_SHIFT 1 | ||
192 | #define DA9150_GPIOB_STAT_MASK BIT(1) | ||
193 | #define DA9150_GPIOC_STAT_SHIFT 2 | ||
194 | #define DA9150_GPIOC_STAT_MASK BIT(2) | ||
195 | #define DA9150_GPIOD_STAT_SHIFT 3 | ||
196 | #define DA9150_GPIOD_STAT_MASK BIT(3) | ||
197 | |||
198 | /* DA9150_STATUS_E = 0x06C */ | ||
199 | #define DA9150_DTYPE_SHIFT 0 | ||
200 | #define DA9150_DTYPE_MASK (0x1f << 0) | ||
201 | #define DA9150_DTYPE_DT_NIL (0x00 << 0) | ||
202 | #define DA9150_DTYPE_DT_USB_OTG BIT(0) | ||
203 | #define DA9150_DTYPE_DT_USB_STD (0x02 << 0) | ||
204 | #define DA9150_DTYPE_DT_USB_CHG (0x03 << 0) | ||
205 | #define DA9150_DTYPE_DT_ACA_CHG (0x04 << 0) | ||
206 | #define DA9150_DTYPE_DT_ACA_OTG (0x05 << 0) | ||
207 | #define DA9150_DTYPE_DT_ACA_DOC (0x06 << 0) | ||
208 | #define DA9150_DTYPE_DT_DED_CHG (0x07 << 0) | ||
209 | #define DA9150_DTYPE_DT_CR5_CHG (0x08 << 0) | ||
210 | #define DA9150_DTYPE_DT_CR4_CHG (0x0c << 0) | ||
211 | #define DA9150_DTYPE_DT_PT_CHG (0x11 << 0) | ||
212 | #define DA9150_DTYPE_DT_NN_ACC (0x16 << 0) | ||
213 | #define DA9150_DTYPE_DT_NN_CHG (0x17 << 0) | ||
214 | |||
215 | /* DA9150_STATUS_F = 0x06D */ | ||
216 | #define DA9150_SESS_VLD_SHIFT 0 | ||
217 | #define DA9150_SESS_VLD_MASK BIT(0) | ||
218 | #define DA9150_ID_ERR_SHIFT 1 | ||
219 | #define DA9150_ID_ERR_MASK BIT(1) | ||
220 | #define DA9150_PT_CHG_SHIFT 2 | ||
221 | #define DA9150_PT_CHG_MASK BIT(2) | ||
222 | |||
223 | /* DA9150_STATUS_G = 0x06E */ | ||
224 | #define DA9150_RID_SHIFT 0 | ||
225 | #define DA9150_RID_MASK (0xff << 0) | ||
226 | |||
227 | /* DA9150_STATUS_H = 0x06F */ | ||
228 | #define DA9150_VBUS_STAT_SHIFT 0 | ||
229 | #define DA9150_VBUS_STAT_MASK (0x07 << 0) | ||
230 | #define DA9150_VBUS_STAT_OFF (0x00 << 0) | ||
231 | #define DA9150_VBUS_STAT_WAIT BIT(0) | ||
232 | #define DA9150_VBUS_STAT_CHG (0x02 << 0) | ||
233 | #define DA9150_VBUS_TRED_SHIFT 3 | ||
234 | #define DA9150_VBUS_TRED_MASK BIT(3) | ||
235 | #define DA9150_VBUS_DROP_STAT_SHIFT 4 | ||
236 | #define DA9150_VBUS_DROP_STAT_MASK (0x0f << 4) | ||
237 | |||
238 | /* DA9150_STATUS_I = 0x070 */ | ||
239 | #define DA9150_VBUS_ISET_STAT_SHIFT 0 | ||
240 | #define DA9150_VBUS_ISET_STAT_MASK (0x1f << 0) | ||
241 | #define DA9150_VBUS_OT_SHIFT 7 | ||
242 | #define DA9150_VBUS_OT_MASK BIT(7) | ||
243 | |||
244 | /* DA9150_STATUS_J = 0x071 */ | ||
245 | #define DA9150_CHG_STAT_SHIFT 0 | ||
246 | #define DA9150_CHG_STAT_MASK (0x0f << 0) | ||
247 | #define DA9150_CHG_STAT_OFF (0x00 << 0) | ||
248 | #define DA9150_CHG_STAT_SUSP BIT(0) | ||
249 | #define DA9150_CHG_STAT_ACT (0x02 << 0) | ||
250 | #define DA9150_CHG_STAT_PRE (0x03 << 0) | ||
251 | #define DA9150_CHG_STAT_CC (0x04 << 0) | ||
252 | #define DA9150_CHG_STAT_CV (0x05 << 0) | ||
253 | #define DA9150_CHG_STAT_FULL (0x06 << 0) | ||
254 | #define DA9150_CHG_STAT_TEMP (0x07 << 0) | ||
255 | #define DA9150_CHG_STAT_TIME (0x08 << 0) | ||
256 | #define DA9150_CHG_STAT_BAT (0x09 << 0) | ||
257 | #define DA9150_CHG_TEMP_SHIFT 4 | ||
258 | #define DA9150_CHG_TEMP_MASK (0x07 << 4) | ||
259 | #define DA9150_CHG_TEMP_UNDER (0x06 << 4) | ||
260 | #define DA9150_CHG_TEMP_OVER (0x07 << 4) | ||
261 | #define DA9150_CHG_IEND_STAT_SHIFT 7 | ||
262 | #define DA9150_CHG_IEND_STAT_MASK BIT(7) | ||
263 | |||
264 | /* DA9150_STATUS_K = 0x072 */ | ||
265 | #define DA9150_CHG_IAV_H_SHIFT 0 | ||
266 | #define DA9150_CHG_IAV_H_MASK (0xff << 0) | ||
267 | |||
268 | /* DA9150_STATUS_L = 0x073 */ | ||
269 | #define DA9150_CHG_IAV_L_SHIFT 5 | ||
270 | #define DA9150_CHG_IAV_L_MASK (0x07 << 5) | ||
271 | |||
272 | /* DA9150_STATUS_N = 0x074 */ | ||
273 | #define DA9150_CHG_TIME_SHIFT 1 | ||
274 | #define DA9150_CHG_TIME_MASK BIT(1) | ||
275 | #define DA9150_CHG_TRED_SHIFT 2 | ||
276 | #define DA9150_CHG_TRED_MASK BIT(2) | ||
277 | #define DA9150_CHG_TJUNC_CLASS_SHIFT 3 | ||
278 | #define DA9150_CHG_TJUNC_CLASS_MASK (0x07 << 3) | ||
279 | #define DA9150_CHG_TJUNC_CLASS_6 (0x06 << 3) | ||
280 | #define DA9150_EBS_STAT_SHIFT 6 | ||
281 | #define DA9150_EBS_STAT_MASK BIT(6) | ||
282 | #define DA9150_CHG_BAT_REMOVED_SHIFT 7 | ||
283 | #define DA9150_CHG_BAT_REMOVED_MASK BIT(7) | ||
284 | |||
285 | /* DA9150_FAULT_LOG_A = 0x076 */ | ||
286 | #define DA9150_TEMP_FAULT_SHIFT 0 | ||
287 | #define DA9150_TEMP_FAULT_MASK BIT(0) | ||
288 | #define DA9150_VSYS_FAULT_SHIFT 1 | ||
289 | #define DA9150_VSYS_FAULT_MASK BIT(1) | ||
290 | #define DA9150_START_FAULT_SHIFT 2 | ||
291 | #define DA9150_START_FAULT_MASK BIT(2) | ||
292 | #define DA9150_EXT_FAULT_SHIFT 3 | ||
293 | #define DA9150_EXT_FAULT_MASK BIT(3) | ||
294 | #define DA9150_POR_FAULT_SHIFT 4 | ||
295 | #define DA9150_POR_FAULT_MASK BIT(4) | ||
296 | |||
297 | /* DA9150_FAULT_LOG_B = 0x077 */ | ||
298 | #define DA9150_VBUS_FAULT_SHIFT 0 | ||
299 | #define DA9150_VBUS_FAULT_MASK BIT(0) | ||
300 | #define DA9150_OTG_FAULT_SHIFT 1 | ||
301 | #define DA9150_OTG_FAULT_MASK BIT(1) | ||
302 | |||
303 | /* DA9150_EVENT_E = 0x078 */ | ||
304 | #define DA9150_E_VBUS_SHIFT 0 | ||
305 | #define DA9150_E_VBUS_MASK BIT(0) | ||
306 | #define DA9150_E_CHG_SHIFT 1 | ||
307 | #define DA9150_E_CHG_MASK BIT(1) | ||
308 | #define DA9150_E_TCLASS_SHIFT 2 | ||
309 | #define DA9150_E_TCLASS_MASK BIT(2) | ||
310 | #define DA9150_E_TJUNC_SHIFT 3 | ||
311 | #define DA9150_E_TJUNC_MASK BIT(3) | ||
312 | #define DA9150_E_VFAULT_SHIFT 4 | ||
313 | #define DA9150_E_VFAULT_MASK BIT(4) | ||
314 | #define DA9150_EVENTS_H_SHIFT 5 | ||
315 | #define DA9150_EVENTS_H_MASK BIT(5) | ||
316 | #define DA9150_EVENTS_G_SHIFT 6 | ||
317 | #define DA9150_EVENTS_G_MASK BIT(6) | ||
318 | #define DA9150_EVENTS_F_SHIFT 7 | ||
319 | #define DA9150_EVENTS_F_MASK BIT(7) | ||
320 | |||
321 | /* DA9150_EVENT_F = 0x079 */ | ||
322 | #define DA9150_E_CONF_SHIFT 0 | ||
323 | #define DA9150_E_CONF_MASK BIT(0) | ||
324 | #define DA9150_E_DAT_SHIFT 1 | ||
325 | #define DA9150_E_DAT_MASK BIT(1) | ||
326 | #define DA9150_E_DTYPE_SHIFT 3 | ||
327 | #define DA9150_E_DTYPE_MASK BIT(3) | ||
328 | #define DA9150_E_ID_SHIFT 4 | ||
329 | #define DA9150_E_ID_MASK BIT(4) | ||
330 | #define DA9150_E_ADP_SHIFT 5 | ||
331 | #define DA9150_E_ADP_MASK BIT(5) | ||
332 | #define DA9150_E_SESS_END_SHIFT 6 | ||
333 | #define DA9150_E_SESS_END_MASK BIT(6) | ||
334 | #define DA9150_E_SESS_VLD_SHIFT 7 | ||
335 | #define DA9150_E_SESS_VLD_MASK BIT(7) | ||
336 | |||
337 | /* DA9150_EVENT_G = 0x07A */ | ||
338 | #define DA9150_E_FG_SHIFT 0 | ||
339 | #define DA9150_E_FG_MASK BIT(0) | ||
340 | #define DA9150_E_GP_SHIFT 1 | ||
341 | #define DA9150_E_GP_MASK BIT(1) | ||
342 | #define DA9150_E_TBAT_SHIFT 2 | ||
343 | #define DA9150_E_TBAT_MASK BIT(2) | ||
344 | #define DA9150_E_GPIOA_SHIFT 3 | ||
345 | #define DA9150_E_GPIOA_MASK BIT(3) | ||
346 | #define DA9150_E_GPIOB_SHIFT 4 | ||
347 | #define DA9150_E_GPIOB_MASK BIT(4) | ||
348 | #define DA9150_E_GPIOC_SHIFT 5 | ||
349 | #define DA9150_E_GPIOC_MASK BIT(5) | ||
350 | #define DA9150_E_GPIOD_SHIFT 6 | ||
351 | #define DA9150_E_GPIOD_MASK BIT(6) | ||
352 | #define DA9150_E_GPADC_SHIFT 7 | ||
353 | #define DA9150_E_GPADC_MASK BIT(7) | ||
354 | |||
355 | /* DA9150_EVENT_H = 0x07B */ | ||
356 | #define DA9150_E_WKUP_SHIFT 0 | ||
357 | #define DA9150_E_WKUP_MASK BIT(0) | ||
358 | |||
359 | /* DA9150_IRQ_MASK_E = 0x07C */ | ||
360 | #define DA9150_M_VBUS_SHIFT 0 | ||
361 | #define DA9150_M_VBUS_MASK BIT(0) | ||
362 | #define DA9150_M_CHG_SHIFT 1 | ||
363 | #define DA9150_M_CHG_MASK BIT(1) | ||
364 | #define DA9150_M_TJUNC_SHIFT 3 | ||
365 | #define DA9150_M_TJUNC_MASK BIT(3) | ||
366 | #define DA9150_M_VFAULT_SHIFT 4 | ||
367 | #define DA9150_M_VFAULT_MASK BIT(4) | ||
368 | |||
369 | /* DA9150_IRQ_MASK_F = 0x07D */ | ||
370 | #define DA9150_M_CONF_SHIFT 0 | ||
371 | #define DA9150_M_CONF_MASK BIT(0) | ||
372 | #define DA9150_M_DAT_SHIFT 1 | ||
373 | #define DA9150_M_DAT_MASK BIT(1) | ||
374 | #define DA9150_M_DTYPE_SHIFT 3 | ||
375 | #define DA9150_M_DTYPE_MASK BIT(3) | ||
376 | #define DA9150_M_ID_SHIFT 4 | ||
377 | #define DA9150_M_ID_MASK BIT(4) | ||
378 | #define DA9150_M_ADP_SHIFT 5 | ||
379 | #define DA9150_M_ADP_MASK BIT(5) | ||
380 | #define DA9150_M_SESS_END_SHIFT 6 | ||
381 | #define DA9150_M_SESS_END_MASK BIT(6) | ||
382 | #define DA9150_M_SESS_VLD_SHIFT 7 | ||
383 | #define DA9150_M_SESS_VLD_MASK BIT(7) | ||
384 | |||
385 | /* DA9150_IRQ_MASK_G = 0x07E */ | ||
386 | #define DA9150_M_FG_SHIFT 0 | ||
387 | #define DA9150_M_FG_MASK BIT(0) | ||
388 | #define DA9150_M_GP_SHIFT 1 | ||
389 | #define DA9150_M_GP_MASK BIT(1) | ||
390 | #define DA9150_M_TBAT_SHIFT 2 | ||
391 | #define DA9150_M_TBAT_MASK BIT(2) | ||
392 | #define DA9150_M_GPIOA_SHIFT 3 | ||
393 | #define DA9150_M_GPIOA_MASK BIT(3) | ||
394 | #define DA9150_M_GPIOB_SHIFT 4 | ||
395 | #define DA9150_M_GPIOB_MASK BIT(4) | ||
396 | #define DA9150_M_GPIOC_SHIFT 5 | ||
397 | #define DA9150_M_GPIOC_MASK BIT(5) | ||
398 | #define DA9150_M_GPIOD_SHIFT 6 | ||
399 | #define DA9150_M_GPIOD_MASK BIT(6) | ||
400 | #define DA9150_M_GPADC_SHIFT 7 | ||
401 | #define DA9150_M_GPADC_MASK BIT(7) | ||
402 | |||
403 | /* DA9150_IRQ_MASK_H = 0x07F */ | ||
404 | #define DA9150_M_WKUP_SHIFT 0 | ||
405 | #define DA9150_M_WKUP_MASK BIT(0) | ||
406 | |||
407 | /* DA9150_PAGE_CON_1 = 0x080 */ | ||
408 | #define DA9150_PAGE_SHIFT 0 | ||
409 | #define DA9150_PAGE_MASK (0x3f << 0) | ||
410 | #define DA9150_WRITE_MODE_SHIFT 6 | ||
411 | #define DA9150_WRITE_MODE_MASK BIT(6) | ||
412 | #define DA9150_REVERT_SHIFT 7 | ||
413 | #define DA9150_REVERT_MASK BIT(7) | ||
414 | |||
415 | /* DA9150_CONFIG_A = 0x0E0 */ | ||
416 | #define DA9150_RESET_DUR_SHIFT 0 | ||
417 | #define DA9150_RESET_DUR_MASK (0x03 << 0) | ||
418 | #define DA9150_RESET_EXT_SHIFT 2 | ||
419 | #define DA9150_RESET_EXT_MASK (0x03 << 2) | ||
420 | #define DA9150_START_MAX_SHIFT 4 | ||
421 | #define DA9150_START_MAX_MASK (0x03 << 4) | ||
422 | #define DA9150_PS_WAIT_EN_SHIFT 6 | ||
423 | #define DA9150_PS_WAIT_EN_MASK BIT(6) | ||
424 | #define DA9150_PS_DISABLE_DIRECT_SHIFT 7 | ||
425 | #define DA9150_PS_DISABLE_DIRECT_MASK BIT(7) | ||
426 | |||
427 | /* DA9150_CONFIG_B = 0x0E1 */ | ||
428 | #define DA9150_VFAULT_ADJ_SHIFT 0 | ||
429 | #define DA9150_VFAULT_ADJ_MASK (0x0f << 0) | ||
430 | #define DA9150_VFAULT_HYST_SHIFT 4 | ||
431 | #define DA9150_VFAULT_HYST_MASK (0x07 << 4) | ||
432 | #define DA9150_VFAULT_EN_SHIFT 7 | ||
433 | #define DA9150_VFAULT_EN_MASK BIT(7) | ||
434 | |||
435 | /* DA9150_CONFIG_C = 0x0E2 */ | ||
436 | #define DA9150_VSYS_MIN_SHIFT 3 | ||
437 | #define DA9150_VSYS_MIN_MASK (0x1f << 3) | ||
438 | |||
439 | /* DA9150_CONFIG_D = 0x0E3 */ | ||
440 | #define DA9150_LFOSC_EXT_SHIFT 0 | ||
441 | #define DA9150_LFOSC_EXT_MASK BIT(0) | ||
442 | #define DA9150_VDD33_DWN_SHIFT 1 | ||
443 | #define DA9150_VDD33_DWN_MASK BIT(1) | ||
444 | #define DA9150_WKUP_PM_EN_SHIFT 2 | ||
445 | #define DA9150_WKUP_PM_EN_MASK BIT(2) | ||
446 | #define DA9150_WKUP_CE_SEL_SHIFT 3 | ||
447 | #define DA9150_WKUP_CE_SEL_MASK (0x03 << 3) | ||
448 | #define DA9150_WKUP_CLK32K_EN_SHIFT 5 | ||
449 | #define DA9150_WKUP_CLK32K_EN_MASK BIT(5) | ||
450 | #define DA9150_DISABLE_DEL_SHIFT 7 | ||
451 | #define DA9150_DISABLE_DEL_MASK BIT(7) | ||
452 | |||
453 | /* DA9150_CONFIG_E = 0x0E4 */ | ||
454 | #define DA9150_PM_SPKSUP_DIS_SHIFT 0 | ||
455 | #define DA9150_PM_SPKSUP_DIS_MASK BIT(0) | ||
456 | #define DA9150_PM_MERGE_SHIFT 1 | ||
457 | #define DA9150_PM_MERGE_MASK BIT(1) | ||
458 | #define DA9150_PM_SR_OFF_SHIFT 2 | ||
459 | #define DA9150_PM_SR_OFF_MASK BIT(2) | ||
460 | #define DA9150_PM_TIMEOUT_EN_SHIFT 3 | ||
461 | #define DA9150_PM_TIMEOUT_EN_MASK BIT(3) | ||
462 | #define DA9150_PM_DLY_SEL_SHIFT 4 | ||
463 | #define DA9150_PM_DLY_SEL_MASK (0x07 << 4) | ||
464 | #define DA9150_PM_OUT_DLY_SEL_SHIFT 7 | ||
465 | #define DA9150_PM_OUT_DLY_SEL_MASK BIT(7) | ||
466 | |||
467 | /* DA9150_CONTROL_A = 0x0E5 */ | ||
468 | #define DA9150_VDD33_SL_SHIFT 0 | ||
469 | #define DA9150_VDD33_SL_MASK BIT(0) | ||
470 | #define DA9150_VDD33_LPM_SHIFT 1 | ||
471 | #define DA9150_VDD33_LPM_MASK (0x03 << 1) | ||
472 | #define DA9150_VDD33_EN_SHIFT 3 | ||
473 | #define DA9150_VDD33_EN_MASK BIT(3) | ||
474 | #define DA9150_GPI_LPM_SHIFT 6 | ||
475 | #define DA9150_GPI_LPM_MASK BIT(6) | ||
476 | #define DA9150_PM_IF_LPM_SHIFT 7 | ||
477 | #define DA9150_PM_IF_LPM_MASK BIT(7) | ||
478 | |||
479 | /* DA9150_CONTROL_B = 0x0E6 */ | ||
480 | #define DA9150_LPM_SHIFT 0 | ||
481 | #define DA9150_LPM_MASK BIT(0) | ||
482 | #define DA9150_RESET_SHIFT 1 | ||
483 | #define DA9150_RESET_MASK BIT(1) | ||
484 | #define DA9150_RESET_USRCONF_EN_SHIFT 2 | ||
485 | #define DA9150_RESET_USRCONF_EN_MASK BIT(2) | ||
486 | |||
487 | /* DA9150_CONTROL_C = 0x0E7 */ | ||
488 | #define DA9150_DISABLE_SHIFT 0 | ||
489 | #define DA9150_DISABLE_MASK BIT(0) | ||
490 | |||
491 | /* DA9150_GPIO_A_B = 0x0E8 */ | ||
492 | #define DA9150_GPIOA_PIN_SHIFT 0 | ||
493 | #define DA9150_GPIOA_PIN_MASK (0x07 << 0) | ||
494 | #define DA9150_GPIOA_PIN_GPI (0x00 << 0) | ||
495 | #define DA9150_GPIOA_PIN_GPO_OD BIT(0) | ||
496 | #define DA9150_GPIOA_TYPE_SHIFT 3 | ||
497 | #define DA9150_GPIOA_TYPE_MASK BIT(3) | ||
498 | #define DA9150_GPIOB_PIN_SHIFT 4 | ||
499 | #define DA9150_GPIOB_PIN_MASK (0x07 << 4) | ||
500 | #define DA9150_GPIOB_PIN_GPI (0x00 << 4) | ||
501 | #define DA9150_GPIOB_PIN_GPO_OD BIT(4) | ||
502 | #define DA9150_GPIOB_TYPE_SHIFT 7 | ||
503 | #define DA9150_GPIOB_TYPE_MASK BIT(7) | ||
504 | |||
505 | /* DA9150_GPIO_C_D = 0x0E9 */ | ||
506 | #define DA9150_GPIOC_PIN_SHIFT 0 | ||
507 | #define DA9150_GPIOC_PIN_MASK (0x07 << 0) | ||
508 | #define DA9150_GPIOC_PIN_GPI (0x00 << 0) | ||
509 | #define DA9150_GPIOC_PIN_GPO_OD BIT(0) | ||
510 | #define DA9150_GPIOC_TYPE_SHIFT 3 | ||
511 | #define DA9150_GPIOC_TYPE_MASK BIT(3) | ||
512 | #define DA9150_GPIOD_PIN_SHIFT 4 | ||
513 | #define DA9150_GPIOD_PIN_MASK (0x07 << 4) | ||
514 | #define DA9150_GPIOD_PIN_GPI (0x00 << 4) | ||
515 | #define DA9150_GPIOD_PIN_GPO_OD BIT(4) | ||
516 | #define DA9150_GPIOD_TYPE_SHIFT 7 | ||
517 | #define DA9150_GPIOD_TYPE_MASK BIT(7) | ||
518 | |||
519 | /* DA9150_GPIO_MODE_CONT = 0x0EA */ | ||
520 | #define DA9150_GPIOA_MODE_SHIFT 0 | ||
521 | #define DA9150_GPIOA_MODE_MASK BIT(0) | ||
522 | #define DA9150_GPIOB_MODE_SHIFT 1 | ||
523 | #define DA9150_GPIOB_MODE_MASK BIT(1) | ||
524 | #define DA9150_GPIOC_MODE_SHIFT 2 | ||
525 | #define DA9150_GPIOC_MODE_MASK BIT(2) | ||
526 | #define DA9150_GPIOD_MODE_SHIFT 3 | ||
527 | #define DA9150_GPIOD_MODE_MASK BIT(3) | ||
528 | #define DA9150_GPIOA_CONT_SHIFT 4 | ||
529 | #define DA9150_GPIOA_CONT_MASK BIT(4) | ||
530 | #define DA9150_GPIOB_CONT_SHIFT 5 | ||
531 | #define DA9150_GPIOB_CONT_MASK BIT(5) | ||
532 | #define DA9150_GPIOC_CONT_SHIFT 6 | ||
533 | #define DA9150_GPIOC_CONT_MASK BIT(6) | ||
534 | #define DA9150_GPIOD_CONT_SHIFT 7 | ||
535 | #define DA9150_GPIOD_CONT_MASK BIT(7) | ||
536 | |||
537 | /* DA9150_GPIO_CTRL_B = 0x0EB */ | ||
538 | #define DA9150_WAKE_PIN_SHIFT 0 | ||
539 | #define DA9150_WAKE_PIN_MASK (0x03 << 0) | ||
540 | #define DA9150_WAKE_MODE_SHIFT 2 | ||
541 | #define DA9150_WAKE_MODE_MASK BIT(2) | ||
542 | #define DA9150_WAKE_CONT_SHIFT 3 | ||
543 | #define DA9150_WAKE_CONT_MASK BIT(3) | ||
544 | #define DA9150_WAKE_DLY_SHIFT 4 | ||
545 | #define DA9150_WAKE_DLY_MASK BIT(4) | ||
546 | |||
547 | /* DA9150_GPIO_CTRL_A = 0x0EC */ | ||
548 | #define DA9150_GPIOA_ANAEN_SHIFT 0 | ||
549 | #define DA9150_GPIOA_ANAEN_MASK BIT(0) | ||
550 | #define DA9150_GPIOB_ANAEN_SHIFT 1 | ||
551 | #define DA9150_GPIOB_ANAEN_MASK BIT(1) | ||
552 | #define DA9150_GPIOC_ANAEN_SHIFT 2 | ||
553 | #define DA9150_GPIOC_ANAEN_MASK BIT(2) | ||
554 | #define DA9150_GPIOD_ANAEN_SHIFT 3 | ||
555 | #define DA9150_GPIOD_ANAEN_MASK BIT(3) | ||
556 | #define DA9150_GPIO_ANAEN 0x01 | ||
557 | #define DA9150_GPIO_ANAEN_MASK 0x0F | ||
558 | #define DA9150_CHGLED_PIN_SHIFT 5 | ||
559 | #define DA9150_CHGLED_PIN_MASK (0x07 << 5) | ||
560 | |||
561 | /* DA9150_GPIO_CTRL_C = 0x0ED */ | ||
562 | #define DA9150_CHGBL_DUR_SHIFT 0 | ||
563 | #define DA9150_CHGBL_DUR_MASK (0x03 << 0) | ||
564 | #define DA9150_CHGBL_DBL_SHIFT 2 | ||
565 | #define DA9150_CHGBL_DBL_MASK BIT(2) | ||
566 | #define DA9150_CHGBL_FRQ_SHIFT 3 | ||
567 | #define DA9150_CHGBL_FRQ_MASK (0x03 << 3) | ||
568 | #define DA9150_CHGBL_FLKR_SHIFT 5 | ||
569 | #define DA9150_CHGBL_FLKR_MASK BIT(5) | ||
570 | |||
571 | /* DA9150_GPIO_CFG_A = 0x0EE */ | ||
572 | #define DA9150_CE_LPM_DEB_SHIFT 0 | ||
573 | #define DA9150_CE_LPM_DEB_MASK (0x07 << 0) | ||
574 | |||
575 | /* DA9150_GPIO_CFG_B = 0x0EF */ | ||
576 | #define DA9150_GPIOA_PUPD_SHIFT 0 | ||
577 | #define DA9150_GPIOA_PUPD_MASK BIT(0) | ||
578 | #define DA9150_GPIOB_PUPD_SHIFT 1 | ||
579 | #define DA9150_GPIOB_PUPD_MASK BIT(1) | ||
580 | #define DA9150_GPIOC_PUPD_SHIFT 2 | ||
581 | #define DA9150_GPIOC_PUPD_MASK BIT(2) | ||
582 | #define DA9150_GPIOD_PUPD_SHIFT 3 | ||
583 | #define DA9150_GPIOD_PUPD_MASK BIT(3) | ||
584 | #define DA9150_GPIO_PUPD_MASK (0xF << 0) | ||
585 | #define DA9150_GPI_DEB_SHIFT 4 | ||
586 | #define DA9150_GPI_DEB_MASK (0x07 << 4) | ||
587 | #define DA9150_LPM_EN_SHIFT 7 | ||
588 | #define DA9150_LPM_EN_MASK BIT(7) | ||
589 | |||
590 | /* DA9150_GPIO_CFG_C = 0x0F0 */ | ||
591 | #define DA9150_GPI_V_SHIFT 0 | ||
592 | #define DA9150_GPI_V_MASK BIT(0) | ||
593 | #define DA9150_VDDIO_INT_SHIFT 1 | ||
594 | #define DA9150_VDDIO_INT_MASK BIT(1) | ||
595 | #define DA9150_FAULT_PIN_SHIFT 3 | ||
596 | #define DA9150_FAULT_PIN_MASK (0x07 << 3) | ||
597 | #define DA9150_FAULT_TYPE_SHIFT 6 | ||
598 | #define DA9150_FAULT_TYPE_MASK BIT(6) | ||
599 | #define DA9150_NIRQ_PUPD_SHIFT 7 | ||
600 | #define DA9150_NIRQ_PUPD_MASK BIT(7) | ||
601 | |||
602 | /* DA9150_GPADC_MAN = 0x0F2 */ | ||
603 | #define DA9150_GPADC_EN_SHIFT 0 | ||
604 | #define DA9150_GPADC_EN_MASK BIT(0) | ||
605 | #define DA9150_GPADC_MUX_SHIFT 1 | ||
606 | #define DA9150_GPADC_MUX_MASK (0x1f << 1) | ||
607 | |||
608 | /* DA9150_GPADC_RES_A = 0x0F4 */ | ||
609 | #define DA9150_GPADC_RES_H_SHIFT 0 | ||
610 | #define DA9150_GPADC_RES_H_MASK (0xff << 0) | ||
611 | |||
612 | /* DA9150_GPADC_RES_B = 0x0F5 */ | ||
613 | #define DA9150_GPADC_RUN_SHIFT 0 | ||
614 | #define DA9150_GPADC_RUN_MASK BIT(0) | ||
615 | #define DA9150_GPADC_RES_L_SHIFT 6 | ||
616 | #define DA9150_GPADC_RES_L_MASK (0x03 << 6) | ||
617 | #define DA9150_GPADC_RES_L_BITS 2 | ||
618 | |||
619 | /* DA9150_PAGE_CON_2 = 0x100 */ | ||
620 | #define DA9150_PAGE_SHIFT 0 | ||
621 | #define DA9150_PAGE_MASK (0x3f << 0) | ||
622 | #define DA9150_WRITE_MODE_SHIFT 6 | ||
623 | #define DA9150_WRITE_MODE_MASK BIT(6) | ||
624 | #define DA9150_REVERT_SHIFT 7 | ||
625 | #define DA9150_REVERT_MASK BIT(7) | ||
626 | |||
627 | /* DA9150_OTP_CONT_SHARED = 0x101 */ | ||
628 | #define DA9150_PC_DONE_SHIFT 3 | ||
629 | #define DA9150_PC_DONE_MASK BIT(3) | ||
630 | |||
631 | /* DA9150_INTERFACE_SHARED = 0x105 */ | ||
632 | #define DA9150_IF_BASE_ADDR_SHIFT 4 | ||
633 | #define DA9150_IF_BASE_ADDR_MASK (0x0f << 4) | ||
634 | |||
635 | /* DA9150_CONFIG_A_SHARED = 0x106 */ | ||
636 | #define DA9150_NIRQ_VDD_SHIFT 1 | ||
637 | #define DA9150_NIRQ_VDD_MASK BIT(1) | ||
638 | #define DA9150_NIRQ_PIN_SHIFT 2 | ||
639 | #define DA9150_NIRQ_PIN_MASK BIT(2) | ||
640 | #define DA9150_NIRQ_TYPE_SHIFT 3 | ||
641 | #define DA9150_NIRQ_TYPE_MASK BIT(3) | ||
642 | #define DA9150_PM_IF_V_SHIFT 4 | ||
643 | #define DA9150_PM_IF_V_MASK BIT(4) | ||
644 | #define DA9150_PM_IF_FMP_SHIFT 5 | ||
645 | #define DA9150_PM_IF_FMP_MASK BIT(5) | ||
646 | #define DA9150_PM_IF_HSM_SHIFT 6 | ||
647 | #define DA9150_PM_IF_HSM_MASK BIT(6) | ||
648 | |||
649 | /* DA9150_CONFIG_D_SHARED = 0x109 */ | ||
650 | #define DA9150_NIRQ_MODE_SHIFT 1 | ||
651 | #define DA9150_NIRQ_MODE_MASK BIT(1) | ||
652 | |||
653 | /* DA9150_ADETVB_CFG_C = 0x150 */ | ||
654 | #define DA9150_TADP_RISE_SHIFT 0 | ||
655 | #define DA9150_TADP_RISE_MASK (0xff << 0) | ||
656 | |||
657 | /* DA9150_ADETD_STAT = 0x151 */ | ||
658 | #define DA9150_DCD_STAT_SHIFT 0 | ||
659 | #define DA9150_DCD_STAT_MASK BIT(0) | ||
660 | #define DA9150_PCD_STAT_SHIFT 1 | ||
661 | #define DA9150_PCD_STAT_MASK (0x03 << 1) | ||
662 | #define DA9150_SCD_STAT_SHIFT 3 | ||
663 | #define DA9150_SCD_STAT_MASK (0x03 << 3) | ||
664 | #define DA9150_DP_STAT_SHIFT 5 | ||
665 | #define DA9150_DP_STAT_MASK BIT(5) | ||
666 | #define DA9150_DM_STAT_SHIFT 6 | ||
667 | #define DA9150_DM_STAT_MASK BIT(6) | ||
668 | |||
669 | /* DA9150_ADET_CMPSTAT = 0x152 */ | ||
670 | #define DA9150_DP_COMP_SHIFT 1 | ||
671 | #define DA9150_DP_COMP_MASK BIT(1) | ||
672 | #define DA9150_DM_COMP_SHIFT 2 | ||
673 | #define DA9150_DM_COMP_MASK BIT(2) | ||
674 | #define DA9150_ADP_SNS_COMP_SHIFT 3 | ||
675 | #define DA9150_ADP_SNS_COMP_MASK BIT(3) | ||
676 | #define DA9150_ADP_PRB_COMP_SHIFT 4 | ||
677 | #define DA9150_ADP_PRB_COMP_MASK BIT(4) | ||
678 | #define DA9150_ID_COMP_SHIFT 5 | ||
679 | #define DA9150_ID_COMP_MASK BIT(5) | ||
680 | |||
681 | /* DA9150_ADET_CTRL_A = 0x153 */ | ||
682 | #define DA9150_AID_DAT_SHIFT 0 | ||
683 | #define DA9150_AID_DAT_MASK BIT(0) | ||
684 | #define DA9150_AID_ID_SHIFT 1 | ||
685 | #define DA9150_AID_ID_MASK BIT(1) | ||
686 | #define DA9150_AID_TRIG_SHIFT 2 | ||
687 | #define DA9150_AID_TRIG_MASK BIT(2) | ||
688 | |||
689 | /* DA9150_ADETVB_CFG_B = 0x154 */ | ||
690 | #define DA9150_VB_MODE_SHIFT 0 | ||
691 | #define DA9150_VB_MODE_MASK (0x03 << 0) | ||
692 | #define DA9150_VB_MODE_VB_SESS BIT(0) | ||
693 | |||
694 | #define DA9150_TADP_PRB_SHIFT 2 | ||
695 | #define DA9150_TADP_PRB_MASK BIT(2) | ||
696 | #define DA9150_DAT_RPD_EXT_SHIFT 5 | ||
697 | #define DA9150_DAT_RPD_EXT_MASK BIT(5) | ||
698 | #define DA9150_CONF_RPD_SHIFT 6 | ||
699 | #define DA9150_CONF_RPD_MASK BIT(6) | ||
700 | #define DA9150_CONF_SRP_SHIFT 7 | ||
701 | #define DA9150_CONF_SRP_MASK BIT(7) | ||
702 | |||
703 | /* DA9150_ADETVB_CFG_A = 0x155 */ | ||
704 | #define DA9150_AID_MODE_SHIFT 0 | ||
705 | #define DA9150_AID_MODE_MASK (0x03 << 0) | ||
706 | #define DA9150_AID_EXT_POL_SHIFT 2 | ||
707 | #define DA9150_AID_EXT_POL_MASK BIT(2) | ||
708 | |||
709 | /* DA9150_ADETAC_CFG_A = 0x156 */ | ||
710 | #define DA9150_ISET_CDP_SHIFT 0 | ||
711 | #define DA9150_ISET_CDP_MASK (0x1f << 0) | ||
712 | #define DA9150_CONF_DBP_SHIFT 5 | ||
713 | #define DA9150_CONF_DBP_MASK BIT(5) | ||
714 | |||
715 | /* DA9150_ADDETAC_CFG_B = 0x157 */ | ||
716 | #define DA9150_ISET_DCHG_SHIFT 0 | ||
717 | #define DA9150_ISET_DCHG_MASK (0x1f << 0) | ||
718 | #define DA9150_CONF_GPIOA_SHIFT 5 | ||
719 | #define DA9150_CONF_GPIOA_MASK BIT(5) | ||
720 | #define DA9150_CONF_GPIOB_SHIFT 6 | ||
721 | #define DA9150_CONF_GPIOB_MASK BIT(6) | ||
722 | #define DA9150_AID_VB_SHIFT 7 | ||
723 | #define DA9150_AID_VB_MASK BIT(7) | ||
724 | |||
725 | /* DA9150_ADETAC_CFG_C = 0x158 */ | ||
726 | #define DA9150_ISET_DEF_SHIFT 0 | ||
727 | #define DA9150_ISET_DEF_MASK (0x1f << 0) | ||
728 | #define DA9150_CONF_MODE_SHIFT 5 | ||
729 | #define DA9150_CONF_MODE_MASK (0x03 << 5) | ||
730 | #define DA9150_AID_CR_DIS_SHIFT 7 | ||
731 | #define DA9150_AID_CR_DIS_MASK BIT(7) | ||
732 | |||
733 | /* DA9150_ADETAC_CFG_D = 0x159 */ | ||
734 | #define DA9150_ISET_UNIT_SHIFT 0 | ||
735 | #define DA9150_ISET_UNIT_MASK (0x1f << 0) | ||
736 | #define DA9150_AID_UNCLAMP_SHIFT 5 | ||
737 | #define DA9150_AID_UNCLAMP_MASK BIT(5) | ||
738 | |||
739 | /* DA9150_ADETVB_CFG_D = 0x15A */ | ||
740 | #define DA9150_ID_MODE_SHIFT 0 | ||
741 | #define DA9150_ID_MODE_MASK (0x03 << 0) | ||
742 | #define DA9150_DAT_MODE_SHIFT 2 | ||
743 | #define DA9150_DAT_MODE_MASK (0x0f << 2) | ||
744 | #define DA9150_DAT_SWP_SHIFT 6 | ||
745 | #define DA9150_DAT_SWP_MASK BIT(6) | ||
746 | #define DA9150_DAT_CLAMP_EXT_SHIFT 7 | ||
747 | #define DA9150_DAT_CLAMP_EXT_MASK BIT(7) | ||
748 | |||
749 | /* DA9150_ADETID_CFG_A = 0x15B */ | ||
750 | #define DA9150_TID_POLL_SHIFT 0 | ||
751 | #define DA9150_TID_POLL_MASK (0x07 << 0) | ||
752 | #define DA9150_RID_CONV_SHIFT 3 | ||
753 | #define DA9150_RID_CONV_MASK BIT(3) | ||
754 | |||
755 | /* DA9150_ADET_RID_PT_CHG_H = 0x15C */ | ||
756 | #define DA9150_RID_PT_CHG_H_SHIFT 0 | ||
757 | #define DA9150_RID_PT_CHG_H_MASK (0xff << 0) | ||
758 | |||
759 | /* DA9150_ADET_RID_PT_CHG_L = 0x15D */ | ||
760 | #define DA9150_RID_PT_CHG_L_SHIFT 6 | ||
761 | #define DA9150_RID_PT_CHG_L_MASK (0x03 << 6) | ||
762 | |||
763 | /* DA9150_PPR_TCTR_B = 0x160 */ | ||
764 | #define DA9150_CHG_TCTR_VAL_SHIFT 0 | ||
765 | #define DA9150_CHG_TCTR_VAL_MASK (0xff << 0) | ||
766 | |||
767 | /* DA9150_PPR_BKCTRL_A = 0x163 */ | ||
768 | #define DA9150_VBUS_MODE_SHIFT 0 | ||
769 | #define DA9150_VBUS_MODE_MASK (0x03 << 0) | ||
770 | #define DA9150_VBUS_MODE_CHG BIT(0) | ||
771 | #define DA9150_VBUS_MODE_OTG (0x02 << 0) | ||
772 | #define DA9150_VBUS_LPM_SHIFT 2 | ||
773 | #define DA9150_VBUS_LPM_MASK (0x03 << 2) | ||
774 | #define DA9150_VBUS_SUSP_SHIFT 4 | ||
775 | #define DA9150_VBUS_SUSP_MASK BIT(4) | ||
776 | #define DA9150_VBUS_PWM_SHIFT 5 | ||
777 | #define DA9150_VBUS_PWM_MASK BIT(5) | ||
778 | #define DA9150_VBUS_ISO_SHIFT 6 | ||
779 | #define DA9150_VBUS_ISO_MASK BIT(6) | ||
780 | #define DA9150_VBUS_LDO_SHIFT 7 | ||
781 | #define DA9150_VBUS_LDO_MASK BIT(7) | ||
782 | |||
783 | /* DA9150_PPR_BKCFG_A = 0x164 */ | ||
784 | #define DA9150_VBUS_ISET_SHIFT 0 | ||
785 | #define DA9150_VBUS_ISET_MASK (0x1f << 0) | ||
786 | #define DA9150_VBUS_IMAX_SHIFT 5 | ||
787 | #define DA9150_VBUS_IMAX_MASK BIT(5) | ||
788 | #define DA9150_VBUS_IOTG_SHIFT 6 | ||
789 | #define DA9150_VBUS_IOTG_MASK (0x03 << 6) | ||
790 | |||
791 | /* DA9150_PPR_BKCFG_B = 0x165 */ | ||
792 | #define DA9150_VBUS_DROP_SHIFT 0 | ||
793 | #define DA9150_VBUS_DROP_MASK (0x0f << 0) | ||
794 | #define DA9150_VBUS_FAULT_DIS_SHIFT 6 | ||
795 | #define DA9150_VBUS_FAULT_DIS_MASK BIT(6) | ||
796 | #define DA9150_OTG_FAULT_DIS_SHIFT 7 | ||
797 | #define DA9150_OTG_FAULT_DIS_MASK BIT(7) | ||
798 | |||
799 | /* DA9150_PPR_CHGCTRL_A = 0x166 */ | ||
800 | #define DA9150_CHG_EN_SHIFT 0 | ||
801 | #define DA9150_CHG_EN_MASK BIT(0) | ||
802 | |||
803 | /* DA9150_PPR_CHGCTRL_B = 0x167 */ | ||
804 | #define DA9150_CHG_VBAT_SHIFT 0 | ||
805 | #define DA9150_CHG_VBAT_MASK (0x1f << 0) | ||
806 | #define DA9150_CHG_VDROP_SHIFT 6 | ||
807 | #define DA9150_CHG_VDROP_MASK (0x03 << 6) | ||
808 | |||
809 | /* DA9150_PPR_CHGCTRL_C = 0x168 */ | ||
810 | #define DA9150_CHG_VFAULT_SHIFT 0 | ||
811 | #define DA9150_CHG_VFAULT_MASK (0x0f << 0) | ||
812 | #define DA9150_CHG_IPRE_SHIFT 4 | ||
813 | #define DA9150_CHG_IPRE_MASK (0x03 << 4) | ||
814 | |||
815 | /* DA9150_PPR_TCTR_A = 0x169 */ | ||
816 | #define DA9150_CHG_TCTR_SHIFT 0 | ||
817 | #define DA9150_CHG_TCTR_MASK (0x07 << 0) | ||
818 | #define DA9150_CHG_TCTR_MODE_SHIFT 4 | ||
819 | #define DA9150_CHG_TCTR_MODE_MASK BIT(4) | ||
820 | |||
821 | /* DA9150_PPR_CHGCTRL_D = 0x16A */ | ||
822 | #define DA9150_CHG_IBAT_SHIFT 0 | ||
823 | #define DA9150_CHG_IBAT_MASK (0xff << 0) | ||
824 | |||
825 | /* DA9150_PPR_CHGCTRL_E = 0x16B */ | ||
826 | #define DA9150_CHG_IEND_SHIFT 0 | ||
827 | #define DA9150_CHG_IEND_MASK (0xff << 0) | ||
828 | |||
829 | /* DA9150_PPR_CHGCTRL_F = 0x16C */ | ||
830 | #define DA9150_CHG_VCOLD_SHIFT 0 | ||
831 | #define DA9150_CHG_VCOLD_MASK (0x1f << 0) | ||
832 | #define DA9150_TBAT_TQA_EN_SHIFT 6 | ||
833 | #define DA9150_TBAT_TQA_EN_MASK BIT(6) | ||
834 | #define DA9150_TBAT_TDP_EN_SHIFT 7 | ||
835 | #define DA9150_TBAT_TDP_EN_MASK BIT(7) | ||
836 | |||
837 | /* DA9150_PPR_CHGCTRL_G = 0x16D */ | ||
838 | #define DA9150_CHG_VWARM_SHIFT 0 | ||
839 | #define DA9150_CHG_VWARM_MASK (0x1f << 0) | ||
840 | |||
841 | /* DA9150_PPR_CHGCTRL_H = 0x16E */ | ||
842 | #define DA9150_CHG_VHOT_SHIFT 0 | ||
843 | #define DA9150_CHG_VHOT_MASK (0x1f << 0) | ||
844 | |||
845 | /* DA9150_PPR_CHGCTRL_I = 0x16F */ | ||
846 | #define DA9150_CHG_ICOLD_SHIFT 0 | ||
847 | #define DA9150_CHG_ICOLD_MASK (0xff << 0) | ||
848 | |||
849 | /* DA9150_PPR_CHGCTRL_J = 0x170 */ | ||
850 | #define DA9150_CHG_IWARM_SHIFT 0 | ||
851 | #define DA9150_CHG_IWARM_MASK (0xff << 0) | ||
852 | |||
853 | /* DA9150_PPR_CHGCTRL_K = 0x171 */ | ||
854 | #define DA9150_CHG_IHOT_SHIFT 0 | ||
855 | #define DA9150_CHG_IHOT_MASK (0xff << 0) | ||
856 | |||
857 | /* DA9150_PPR_CHGCTRL_L = 0x172 */ | ||
858 | #define DA9150_CHG_IBAT_TRED_SHIFT 0 | ||
859 | #define DA9150_CHG_IBAT_TRED_MASK (0xff << 0) | ||
860 | |||
861 | /* DA9150_PPR_CHGCTRL_M = 0x173 */ | ||
862 | #define DA9150_CHG_VFLOAT_SHIFT 0 | ||
863 | #define DA9150_CHG_VFLOAT_MASK (0x0f << 0) | ||
864 | #define DA9150_CHG_LPM_SHIFT 5 | ||
865 | #define DA9150_CHG_LPM_MASK BIT(5) | ||
866 | #define DA9150_CHG_NBLO_SHIFT 6 | ||
867 | #define DA9150_CHG_NBLO_MASK BIT(6) | ||
868 | #define DA9150_EBS_EN_SHIFT 7 | ||
869 | #define DA9150_EBS_EN_MASK BIT(7) | ||
870 | |||
871 | /* DA9150_PPR_THYST_A = 0x174 */ | ||
872 | #define DA9150_TBAT_T1_SHIFT 0 | ||
873 | #define DA9150_TBAT_T1_MASK (0xff << 0) | ||
874 | |||
875 | /* DA9150_PPR_THYST_B = 0x175 */ | ||
876 | #define DA9150_TBAT_T2_SHIFT 0 | ||
877 | #define DA9150_TBAT_T2_MASK (0xff << 0) | ||
878 | |||
879 | /* DA9150_PPR_THYST_C = 0x176 */ | ||
880 | #define DA9150_TBAT_T3_SHIFT 0 | ||
881 | #define DA9150_TBAT_T3_MASK (0xff << 0) | ||
882 | |||
883 | /* DA9150_PPR_THYST_D = 0x177 */ | ||
884 | #define DA9150_TBAT_T4_SHIFT 0 | ||
885 | #define DA9150_TBAT_T4_MASK (0xff << 0) | ||
886 | |||
887 | /* DA9150_PPR_THYST_E = 0x178 */ | ||
888 | #define DA9150_TBAT_T5_SHIFT 0 | ||
889 | #define DA9150_TBAT_T5_MASK (0xff << 0) | ||
890 | |||
891 | /* DA9150_PPR_THYST_F = 0x179 */ | ||
892 | #define DA9150_TBAT_H1_SHIFT 0 | ||
893 | #define DA9150_TBAT_H1_MASK (0xff << 0) | ||
894 | |||
895 | /* DA9150_PPR_THYST_G = 0x17A */ | ||
896 | #define DA9150_TBAT_H5_SHIFT 0 | ||
897 | #define DA9150_TBAT_H5_MASK (0xff << 0) | ||
898 | |||
899 | /* DA9150_PAGE_CON_3 = 0x180 */ | ||
900 | #define DA9150_PAGE_SHIFT 0 | ||
901 | #define DA9150_PAGE_MASK (0x3f << 0) | ||
902 | #define DA9150_WRITE_MODE_SHIFT 6 | ||
903 | #define DA9150_WRITE_MODE_MASK BIT(6) | ||
904 | #define DA9150_REVERT_SHIFT 7 | ||
905 | #define DA9150_REVERT_MASK BIT(7) | ||
906 | |||
907 | /* DA9150_PAGE_CON_4 = 0x200 */ | ||
908 | #define DA9150_PAGE_SHIFT 0 | ||
909 | #define DA9150_PAGE_MASK (0x3f << 0) | ||
910 | #define DA9150_WRITE_MODE_SHIFT 6 | ||
911 | #define DA9150_WRITE_MODE_MASK BIT(6) | ||
912 | #define DA9150_REVERT_SHIFT 7 | ||
913 | #define DA9150_REVERT_MASK BIT(7) | ||
914 | |||
915 | /* DA9150_PAGE_CON_5 = 0x280 */ | ||
916 | #define DA9150_PAGE_SHIFT 0 | ||
917 | #define DA9150_PAGE_MASK (0x3f << 0) | ||
918 | #define DA9150_WRITE_MODE_SHIFT 6 | ||
919 | #define DA9150_WRITE_MODE_MASK BIT(6) | ||
920 | #define DA9150_REVERT_SHIFT 7 | ||
921 | #define DA9150_REVERT_MASK BIT(7) | ||
922 | |||
923 | /* DA9150_PAGE_CON_6 = 0x300 */ | ||
924 | #define DA9150_PAGE_SHIFT 0 | ||
925 | #define DA9150_PAGE_MASK (0x3f << 0) | ||
926 | #define DA9150_WRITE_MODE_SHIFT 6 | ||
927 | #define DA9150_WRITE_MODE_MASK BIT(6) | ||
928 | #define DA9150_REVERT_SHIFT 7 | ||
929 | #define DA9150_REVERT_MASK BIT(7) | ||
930 | |||
931 | /* DA9150_COREBTLD_STAT_A = 0x302 */ | ||
932 | #define DA9150_BOOTLD_STAT_SHIFT 0 | ||
933 | #define DA9150_BOOTLD_STAT_MASK (0x03 << 0) | ||
934 | #define DA9150_CORE_LOCKUP_SHIFT 2 | ||
935 | #define DA9150_CORE_LOCKUP_MASK BIT(2) | ||
936 | |||
937 | /* DA9150_COREBTLD_CTRL_A = 0x303 */ | ||
938 | #define DA9150_CORE_RESET_SHIFT 0 | ||
939 | #define DA9150_CORE_RESET_MASK BIT(0) | ||
940 | #define DA9150_CORE_STOP_SHIFT 1 | ||
941 | #define DA9150_CORE_STOP_MASK BIT(1) | ||
942 | |||
943 | /* DA9150_CORE_CONFIG_A = 0x304 */ | ||
944 | #define DA9150_CORE_MEMMUX_SHIFT 0 | ||
945 | #define DA9150_CORE_MEMMUX_MASK (0x03 << 0) | ||
946 | #define DA9150_WDT_AUTO_START_SHIFT 2 | ||
947 | #define DA9150_WDT_AUTO_START_MASK BIT(2) | ||
948 | #define DA9150_WDT_AUTO_LOCK_SHIFT 3 | ||
949 | #define DA9150_WDT_AUTO_LOCK_MASK BIT(3) | ||
950 | #define DA9150_WDT_HLT_NO_CLK_SHIFT 4 | ||
951 | #define DA9150_WDT_HLT_NO_CLK_MASK BIT(4) | ||
952 | |||
953 | /* DA9150_CORE_CONFIG_C = 0x305 */ | ||
954 | #define DA9150_CORE_SW_SIZE_SHIFT 0 | ||
955 | #define DA9150_CORE_SW_SIZE_MASK (0xff << 0) | ||
956 | |||
957 | /* DA9150_CORE_CONFIG_B = 0x306 */ | ||
958 | #define DA9150_BOOTLD_EN_SHIFT 0 | ||
959 | #define DA9150_BOOTLD_EN_MASK BIT(0) | ||
960 | #define DA9150_CORE_EN_SHIFT 2 | ||
961 | #define DA9150_CORE_EN_MASK BIT(2) | ||
962 | #define DA9150_CORE_SW_SRC_SHIFT 3 | ||
963 | #define DA9150_CORE_SW_SRC_MASK (0x07 << 3) | ||
964 | #define DA9150_DEEP_SLEEP_EN_SHIFT 7 | ||
965 | #define DA9150_DEEP_SLEEP_EN_MASK BIT(7) | ||
966 | |||
967 | /* DA9150_CORE_CFG_DATA_A = 0x307 */ | ||
968 | #define DA9150_CORE_CFG_DT_A_SHIFT 0 | ||
969 | #define DA9150_CORE_CFG_DT_A_MASK (0xff << 0) | ||
970 | |||
971 | /* DA9150_CORE_CFG_DATA_B = 0x308 */ | ||
972 | #define DA9150_CORE_CFG_DT_B_SHIFT 0 | ||
973 | #define DA9150_CORE_CFG_DT_B_MASK (0xff << 0) | ||
974 | |||
975 | /* DA9150_CORE_CMD_A = 0x309 */ | ||
976 | #define DA9150_CORE_CMD_SHIFT 0 | ||
977 | #define DA9150_CORE_CMD_MASK (0xff << 0) | ||
978 | |||
979 | /* DA9150_CORE_DATA_A = 0x30A */ | ||
980 | #define DA9150_CORE_DATA_0_SHIFT 0 | ||
981 | #define DA9150_CORE_DATA_0_MASK (0xff << 0) | ||
982 | |||
983 | /* DA9150_CORE_DATA_B = 0x30B */ | ||
984 | #define DA9150_CORE_DATA_1_SHIFT 0 | ||
985 | #define DA9150_CORE_DATA_1_MASK (0xff << 0) | ||
986 | |||
987 | /* DA9150_CORE_DATA_C = 0x30C */ | ||
988 | #define DA9150_CORE_DATA_2_SHIFT 0 | ||
989 | #define DA9150_CORE_DATA_2_MASK (0xff << 0) | ||
990 | |||
991 | /* DA9150_CORE_DATA_D = 0x30D */ | ||
992 | #define DA9150_CORE_DATA_3_SHIFT 0 | ||
993 | #define DA9150_CORE_DATA_3_MASK (0xff << 0) | ||
994 | |||
995 | /* DA9150_CORE2WIRE_STAT_A = 0x310 */ | ||
996 | #define DA9150_FW_FWDL_ERR_SHIFT 7 | ||
997 | #define DA9150_FW_FWDL_ERR_MASK BIT(7) | ||
998 | |||
999 | /* DA9150_CORE2WIRE_CTRL_A = 0x311 */ | ||
1000 | #define DA9150_FW_FWDL_EN_SHIFT 0 | ||
1001 | #define DA9150_FW_FWDL_EN_MASK BIT(0) | ||
1002 | #define DA9150_FG_QIF_EN_SHIFT 1 | ||
1003 | #define DA9150_FG_QIF_EN_MASK BIT(1) | ||
1004 | #define DA9150_CORE_BASE_ADDR_SHIFT 4 | ||
1005 | #define DA9150_CORE_BASE_ADDR_MASK (0x0f << 4) | ||
1006 | |||
1007 | /* DA9150_FW_CTRL_A = 0x312 */ | ||
1008 | #define DA9150_FW_SEAL_SHIFT 0 | ||
1009 | #define DA9150_FW_SEAL_MASK (0xff << 0) | ||
1010 | |||
1011 | /* DA9150_FW_CTRL_C = 0x313 */ | ||
1012 | #define DA9150_FW_FWDL_CRC_SHIFT 0 | ||
1013 | #define DA9150_FW_FWDL_CRC_MASK (0xff << 0) | ||
1014 | |||
1015 | /* DA9150_FW_CTRL_D = 0x314 */ | ||
1016 | #define DA9150_FW_FWDL_BASE_SHIFT 0 | ||
1017 | #define DA9150_FW_FWDL_BASE_MASK (0x0f << 0) | ||
1018 | |||
1019 | /* DA9150_FG_CTRL_A = 0x315 */ | ||
1020 | #define DA9150_FG_QIF_CODE_SHIFT 0 | ||
1021 | #define DA9150_FG_QIF_CODE_MASK (0xff << 0) | ||
1022 | |||
1023 | /* DA9150_FG_CTRL_B = 0x316 */ | ||
1024 | #define DA9150_FG_QIF_VALUE_SHIFT 0 | ||
1025 | #define DA9150_FG_QIF_VALUE_MASK (0xff << 0) | ||
1026 | |||
1027 | /* DA9150_FW_CTRL_E = 0x317 */ | ||
1028 | #define DA9150_FW_FWDL_SEG_SHIFT 0 | ||
1029 | #define DA9150_FW_FWDL_SEG_MASK (0xff << 0) | ||
1030 | |||
1031 | /* DA9150_FW_CTRL_B = 0x318 */ | ||
1032 | #define DA9150_FW_FWDL_VALUE_SHIFT 0 | ||
1033 | #define DA9150_FW_FWDL_VALUE_MASK (0xff << 0) | ||
1034 | |||
1035 | /* DA9150_GPADC_CMAN = 0x320 */ | ||
1036 | #define DA9150_GPADC_CEN_SHIFT 0 | ||
1037 | #define DA9150_GPADC_CEN_MASK BIT(0) | ||
1038 | #define DA9150_GPADC_CMUX_SHIFT 1 | ||
1039 | #define DA9150_GPADC_CMUX_MASK (0x1f << 1) | ||
1040 | |||
1041 | /* DA9150_GPADC_CRES_A = 0x322 */ | ||
1042 | #define DA9150_GPADC_CRES_H_SHIFT 0 | ||
1043 | #define DA9150_GPADC_CRES_H_MASK (0xff << 0) | ||
1044 | |||
1045 | /* DA9150_GPADC_CRES_B = 0x323 */ | ||
1046 | #define DA9150_GPADC_CRUN_SHIFT 0 | ||
1047 | #define DA9150_GPADC_CRUN_MASK BIT(0) | ||
1048 | #define DA9150_GPADC_CRES_L_SHIFT 6 | ||
1049 | #define DA9150_GPADC_CRES_L_MASK (0x03 << 6) | ||
1050 | |||
1051 | /* DA9150_CC_CFG_A = 0x328 */ | ||
1052 | #define DA9150_CC_EN_SHIFT 0 | ||
1053 | #define DA9150_CC_EN_MASK BIT(0) | ||
1054 | #define DA9150_CC_TIMEBASE_SHIFT 1 | ||
1055 | #define DA9150_CC_TIMEBASE_MASK (0x03 << 1) | ||
1056 | #define DA9150_CC_CFG_SHIFT 5 | ||
1057 | #define DA9150_CC_CFG_MASK (0x03 << 5) | ||
1058 | #define DA9150_CC_ENDLESS_MODE_SHIFT 7 | ||
1059 | #define DA9150_CC_ENDLESS_MODE_MASK BIT(7) | ||
1060 | |||
1061 | /* DA9150_CC_CFG_B = 0x329 */ | ||
1062 | #define DA9150_CC_OPT_SHIFT 0 | ||
1063 | #define DA9150_CC_OPT_MASK (0x03 << 0) | ||
1064 | #define DA9150_CC_PREAMP_SHIFT 2 | ||
1065 | #define DA9150_CC_PREAMP_MASK (0x03 << 2) | ||
1066 | |||
1067 | /* DA9150_CC_ICHG_RES_A = 0x32A */ | ||
1068 | #define DA9150_CC_ICHG_RES_H_SHIFT 0 | ||
1069 | #define DA9150_CC_ICHG_RES_H_MASK (0xff << 0) | ||
1070 | |||
1071 | /* DA9150_CC_ICHG_RES_B = 0x32B */ | ||
1072 | #define DA9150_CC_ICHG_RES_L_SHIFT 3 | ||
1073 | #define DA9150_CC_ICHG_RES_L_MASK (0x1f << 3) | ||
1074 | |||
1075 | /* DA9150_CC_IAVG_RES_A = 0x32C */ | ||
1076 | #define DA9150_CC_IAVG_RES_H_SHIFT 0 | ||
1077 | #define DA9150_CC_IAVG_RES_H_MASK (0xff << 0) | ||
1078 | |||
1079 | /* DA9150_CC_IAVG_RES_B = 0x32D */ | ||
1080 | #define DA9150_CC_IAVG_RES_L_SHIFT 0 | ||
1081 | #define DA9150_CC_IAVG_RES_L_MASK (0xff << 0) | ||
1082 | |||
1083 | /* DA9150_TAUX_CTRL_A = 0x330 */ | ||
1084 | #define DA9150_TAUX_EN_SHIFT 0 | ||
1085 | #define DA9150_TAUX_EN_MASK BIT(0) | ||
1086 | #define DA9150_TAUX_MOD_SHIFT 1 | ||
1087 | #define DA9150_TAUX_MOD_MASK BIT(1) | ||
1088 | #define DA9150_TAUX_UPDATE_SHIFT 2 | ||
1089 | #define DA9150_TAUX_UPDATE_MASK BIT(2) | ||
1090 | |||
1091 | /* DA9150_TAUX_RELOAD_H = 0x332 */ | ||
1092 | #define DA9150_TAUX_RLD_H_SHIFT 0 | ||
1093 | #define DA9150_TAUX_RLD_H_MASK (0xff << 0) | ||
1094 | |||
1095 | /* DA9150_TAUX_RELOAD_L = 0x333 */ | ||
1096 | #define DA9150_TAUX_RLD_L_SHIFT 3 | ||
1097 | #define DA9150_TAUX_RLD_L_MASK (0x1f << 3) | ||
1098 | |||
1099 | /* DA9150_TAUX_VALUE_H = 0x334 */ | ||
1100 | #define DA9150_TAUX_VAL_H_SHIFT 0 | ||
1101 | #define DA9150_TAUX_VAL_H_MASK (0xff << 0) | ||
1102 | |||
1103 | /* DA9150_TAUX_VALUE_L = 0x335 */ | ||
1104 | #define DA9150_TAUX_VAL_L_SHIFT 3 | ||
1105 | #define DA9150_TAUX_VAL_L_MASK (0x1f << 3) | ||
1106 | |||
1107 | /* DA9150_AUX_DATA_0 = 0x338 */ | ||
1108 | #define DA9150_AUX_DAT_0_SHIFT 0 | ||
1109 | #define DA9150_AUX_DAT_0_MASK (0xff << 0) | ||
1110 | |||
1111 | /* DA9150_AUX_DATA_1 = 0x339 */ | ||
1112 | #define DA9150_AUX_DAT_1_SHIFT 0 | ||
1113 | #define DA9150_AUX_DAT_1_MASK (0xff << 0) | ||
1114 | |||
1115 | /* DA9150_AUX_DATA_2 = 0x33A */ | ||
1116 | #define DA9150_AUX_DAT_2_SHIFT 0 | ||
1117 | #define DA9150_AUX_DAT_2_MASK (0xff << 0) | ||
1118 | |||
1119 | /* DA9150_AUX_DATA_3 = 0x33B */ | ||
1120 | #define DA9150_AUX_DAT_3_SHIFT 0 | ||
1121 | #define DA9150_AUX_DAT_3_MASK (0xff << 0) | ||
1122 | |||
1123 | /* DA9150_BIF_CTRL = 0x340 */ | ||
1124 | #define DA9150_BIF_ISRC_EN_SHIFT 0 | ||
1125 | #define DA9150_BIF_ISRC_EN_MASK BIT(0) | ||
1126 | |||
1127 | /* DA9150_TBAT_CTRL_A = 0x342 */ | ||
1128 | #define DA9150_TBAT_EN_SHIFT 0 | ||
1129 | #define DA9150_TBAT_EN_MASK BIT(0) | ||
1130 | #define DA9150_TBAT_SW1_SHIFT 1 | ||
1131 | #define DA9150_TBAT_SW1_MASK BIT(1) | ||
1132 | #define DA9150_TBAT_SW2_SHIFT 2 | ||
1133 | #define DA9150_TBAT_SW2_MASK BIT(2) | ||
1134 | |||
1135 | /* DA9150_TBAT_CTRL_B = 0x343 */ | ||
1136 | #define DA9150_TBAT_SW_FRC_SHIFT 0 | ||
1137 | #define DA9150_TBAT_SW_FRC_MASK BIT(0) | ||
1138 | #define DA9150_TBAT_STAT_SW1_SHIFT 1 | ||
1139 | #define DA9150_TBAT_STAT_SW1_MASK BIT(1) | ||
1140 | #define DA9150_TBAT_STAT_SW2_SHIFT 2 | ||
1141 | #define DA9150_TBAT_STAT_SW2_MASK BIT(2) | ||
1142 | #define DA9150_TBAT_HIGH_CURR_SHIFT 3 | ||
1143 | #define DA9150_TBAT_HIGH_CURR_MASK BIT(3) | ||
1144 | |||
1145 | /* DA9150_TBAT_RES_A = 0x344 */ | ||
1146 | #define DA9150_TBAT_RES_H_SHIFT 0 | ||
1147 | #define DA9150_TBAT_RES_H_MASK (0xff << 0) | ||
1148 | |||
1149 | /* DA9150_TBAT_RES_B = 0x345 */ | ||
1150 | #define DA9150_TBAT_RES_DIS_SHIFT 0 | ||
1151 | #define DA9150_TBAT_RES_DIS_MASK BIT(0) | ||
1152 | #define DA9150_TBAT_RES_L_SHIFT 6 | ||
1153 | #define DA9150_TBAT_RES_L_MASK (0x03 << 6) | ||
1154 | |||
1155 | #endif /* __DA9150_REGISTERS_H */ | ||
diff --git a/include/linux/mfd/max77686-private.h b/include/linux/mfd/max77686-private.h index 960b92ad450d..f5043490d67c 100644 --- a/include/linux/mfd/max77686-private.h +++ b/include/linux/mfd/max77686-private.h | |||
@@ -447,7 +447,6 @@ struct max77686_dev { | |||
447 | struct regmap_irq_chip_data *rtc_irq_data; | 447 | struct regmap_irq_chip_data *rtc_irq_data; |
448 | 448 | ||
449 | int irq; | 449 | int irq; |
450 | bool wakeup; | ||
451 | struct mutex irqlock; | 450 | struct mutex irqlock; |
452 | int irq_masks_cur[MAX77686_IRQ_GROUP_NR]; | 451 | int irq_masks_cur[MAX77686_IRQ_GROUP_NR]; |
453 | int irq_masks_cache[MAX77686_IRQ_GROUP_NR]; | 452 | int irq_masks_cache[MAX77686_IRQ_GROUP_NR]; |
diff --git a/include/linux/mfd/max77686.h b/include/linux/mfd/max77686.h index 553f7d09258a..bb995ab9a575 100644 --- a/include/linux/mfd/max77686.h +++ b/include/linux/mfd/max77686.h | |||
@@ -119,12 +119,6 @@ enum max77802_regulators { | |||
119 | MAX77802_REG_MAX, | 119 | MAX77802_REG_MAX, |
120 | }; | 120 | }; |
121 | 121 | ||
122 | struct max77686_regulator_data { | ||
123 | int id; | ||
124 | struct regulator_init_data *initdata; | ||
125 | struct device_node *of_node; | ||
126 | }; | ||
127 | |||
128 | enum max77686_opmode { | 122 | enum max77686_opmode { |
129 | MAX77686_OPMODE_NORMAL, | 123 | MAX77686_OPMODE_NORMAL, |
130 | MAX77686_OPMODE_LP, | 124 | MAX77686_OPMODE_LP, |
@@ -136,26 +130,4 @@ struct max77686_opmode_data { | |||
136 | int mode; | 130 | int mode; |
137 | }; | 131 | }; |
138 | 132 | ||
139 | struct max77686_platform_data { | ||
140 | int ono; | ||
141 | int wakeup; | ||
142 | |||
143 | /* ---- PMIC ---- */ | ||
144 | struct max77686_regulator_data *regulators; | ||
145 | int num_regulators; | ||
146 | |||
147 | struct max77686_opmode_data *opmode_data; | ||
148 | |||
149 | /* | ||
150 | * GPIO-DVS feature is not enabled with the current version of | ||
151 | * MAX77686 driver. Buck2/3/4_voltages[0] is used as the default | ||
152 | * voltage at probe. DVS/SELB gpios are set as OUTPUT-LOW. | ||
153 | */ | ||
154 | int buck234_gpio_dvs[3]; /* GPIO of [0]DVS1, [1]DVS2, [2]DVS3 */ | ||
155 | int buck234_gpio_selb[3]; /* [0]SELB2, [1]SELB3, [2]SELB4 */ | ||
156 | unsigned int buck2_voltage[8]; /* buckx_voltage in uV */ | ||
157 | unsigned int buck3_voltage[8]; | ||
158 | unsigned int buck4_voltage[8]; | ||
159 | }; | ||
160 | |||
161 | #endif /* __LINUX_MFD_MAX77686_H */ | 133 | #endif /* __LINUX_MFD_MAX77686_H */ |
diff --git a/include/linux/mfd/max77693-private.h b/include/linux/mfd/max77693-private.h index 08dae01258b9..955dd990beaf 100644 --- a/include/linux/mfd/max77693-private.h +++ b/include/linux/mfd/max77693-private.h | |||
@@ -143,10 +143,118 @@ enum max77693_pmic_reg { | |||
143 | #define FLASH_INT_FLED1_SHORT BIT(3) | 143 | #define FLASH_INT_FLED1_SHORT BIT(3) |
144 | #define FLASH_INT_OVER_CURRENT BIT(4) | 144 | #define FLASH_INT_OVER_CURRENT BIT(4) |
145 | 145 | ||
146 | /* Fast charge timer in in hours */ | ||
147 | #define DEFAULT_FAST_CHARGE_TIMER 4 | ||
148 | /* microamps */ | ||
149 | #define DEFAULT_TOP_OFF_THRESHOLD_CURRENT 150000 | ||
150 | /* minutes */ | ||
151 | #define DEFAULT_TOP_OFF_TIMER 30 | ||
152 | /* microvolts */ | ||
153 | #define DEFAULT_CONSTANT_VOLT 4200000 | ||
154 | /* microvolts */ | ||
155 | #define DEFAULT_MIN_SYSTEM_VOLT 3600000 | ||
156 | /* celsius */ | ||
157 | #define DEFAULT_THERMAL_REGULATION_TEMP 100 | ||
158 | /* microamps */ | ||
159 | #define DEFAULT_BATTERY_OVERCURRENT 3500000 | ||
160 | /* microvolts */ | ||
161 | #define DEFAULT_CHARGER_INPUT_THRESHOLD_VOLT 4300000 | ||
162 | |||
163 | /* MAX77693_CHG_REG_CHG_INT_OK register */ | ||
164 | #define CHG_INT_OK_BYP_SHIFT 0 | ||
165 | #define CHG_INT_OK_BAT_SHIFT 3 | ||
166 | #define CHG_INT_OK_CHG_SHIFT 4 | ||
167 | #define CHG_INT_OK_CHGIN_SHIFT 6 | ||
168 | #define CHG_INT_OK_DETBAT_SHIFT 7 | ||
169 | #define CHG_INT_OK_BYP_MASK BIT(CHG_INT_OK_BYP_SHIFT) | ||
170 | #define CHG_INT_OK_BAT_MASK BIT(CHG_INT_OK_BAT_SHIFT) | ||
171 | #define CHG_INT_OK_CHG_MASK BIT(CHG_INT_OK_CHG_SHIFT) | ||
172 | #define CHG_INT_OK_CHGIN_MASK BIT(CHG_INT_OK_CHGIN_SHIFT) | ||
173 | #define CHG_INT_OK_DETBAT_MASK BIT(CHG_INT_OK_DETBAT_SHIFT) | ||
174 | |||
175 | /* MAX77693_CHG_REG_CHG_DETAILS_00 register */ | ||
176 | #define CHG_DETAILS_00_CHGIN_SHIFT 5 | ||
177 | #define CHG_DETAILS_00_CHGIN_MASK (0x3 << CHG_DETAILS_00_CHGIN_SHIFT) | ||
178 | |||
179 | /* MAX77693_CHG_REG_CHG_DETAILS_01 register */ | ||
180 | #define CHG_DETAILS_01_CHG_SHIFT 0 | ||
181 | #define CHG_DETAILS_01_BAT_SHIFT 4 | ||
182 | #define CHG_DETAILS_01_TREG_SHIFT 7 | ||
183 | #define CHG_DETAILS_01_CHG_MASK (0xf << CHG_DETAILS_01_CHG_SHIFT) | ||
184 | #define CHG_DETAILS_01_BAT_MASK (0x7 << CHG_DETAILS_01_BAT_SHIFT) | ||
185 | #define CHG_DETAILS_01_TREG_MASK BIT(7) | ||
186 | |||
187 | /* MAX77693_CHG_REG_CHG_DETAILS_01/CHG field */ | ||
188 | enum max77693_charger_charging_state { | ||
189 | MAX77693_CHARGING_PREQUALIFICATION = 0x0, | ||
190 | MAX77693_CHARGING_FAST_CONST_CURRENT, | ||
191 | MAX77693_CHARGING_FAST_CONST_VOLTAGE, | ||
192 | MAX77693_CHARGING_TOP_OFF, | ||
193 | MAX77693_CHARGING_DONE, | ||
194 | MAX77693_CHARGING_HIGH_TEMP, | ||
195 | MAX77693_CHARGING_TIMER_EXPIRED, | ||
196 | MAX77693_CHARGING_THERMISTOR_SUSPEND, | ||
197 | MAX77693_CHARGING_OFF, | ||
198 | MAX77693_CHARGING_RESERVED, | ||
199 | MAX77693_CHARGING_OVER_TEMP, | ||
200 | MAX77693_CHARGING_WATCHDOG_EXPIRED, | ||
201 | }; | ||
202 | |||
203 | /* MAX77693_CHG_REG_CHG_DETAILS_01/BAT field */ | ||
204 | enum max77693_charger_battery_state { | ||
205 | MAX77693_BATTERY_NOBAT = 0x0, | ||
206 | /* Dead-battery or low-battery prequalification */ | ||
207 | MAX77693_BATTERY_PREQUALIFICATION, | ||
208 | MAX77693_BATTERY_TIMER_EXPIRED, | ||
209 | MAX77693_BATTERY_GOOD, | ||
210 | MAX77693_BATTERY_LOWVOLTAGE, | ||
211 | MAX77693_BATTERY_OVERVOLTAGE, | ||
212 | MAX77693_BATTERY_OVERCURRENT, | ||
213 | MAX77693_BATTERY_RESERVED, | ||
214 | }; | ||
215 | |||
216 | /* MAX77693_CHG_REG_CHG_DETAILS_02 register */ | ||
217 | #define CHG_DETAILS_02_BYP_SHIFT 0 | ||
218 | #define CHG_DETAILS_02_BYP_MASK (0xf << CHG_DETAILS_02_BYP_SHIFT) | ||
219 | |||
146 | /* MAX77693 CHG_CNFG_00 register */ | 220 | /* MAX77693 CHG_CNFG_00 register */ |
147 | #define CHG_CNFG_00_CHG_MASK 0x1 | 221 | #define CHG_CNFG_00_CHG_MASK 0x1 |
148 | #define CHG_CNFG_00_BUCK_MASK 0x4 | 222 | #define CHG_CNFG_00_BUCK_MASK 0x4 |
149 | 223 | ||
224 | /* MAX77693_CHG_REG_CHG_CNFG_01 register */ | ||
225 | #define CHG_CNFG_01_FCHGTIME_SHIFT 0 | ||
226 | #define CHG_CNFG_01_CHGRSTRT_SHIFT 4 | ||
227 | #define CHG_CNFG_01_PQEN_SHIFT 7 | ||
228 | #define CHG_CNFG_01_FCHGTIME_MASK (0x7 << CHG_CNFG_01_FCHGTIME_SHIFT) | ||
229 | #define CHG_CNFG_01_CHGRSTRT_MASK (0x3 << CHG_CNFG_01_CHGRSTRT_SHIFT) | ||
230 | #define CHG_CNFG_01_PQEN_MAKS BIT(CHG_CNFG_01_PQEN_SHIFT) | ||
231 | |||
232 | /* MAX77693_CHG_REG_CHG_CNFG_03 register */ | ||
233 | #define CHG_CNFG_03_TOITH_SHIFT 0 | ||
234 | #define CHG_CNFG_03_TOTIME_SHIFT 3 | ||
235 | #define CHG_CNFG_03_TOITH_MASK (0x7 << CHG_CNFG_03_TOITH_SHIFT) | ||
236 | #define CHG_CNFG_03_TOTIME_MASK (0x7 << CHG_CNFG_03_TOTIME_SHIFT) | ||
237 | |||
238 | /* MAX77693_CHG_REG_CHG_CNFG_04 register */ | ||
239 | #define CHG_CNFG_04_CHGCVPRM_SHIFT 0 | ||
240 | #define CHG_CNFG_04_MINVSYS_SHIFT 5 | ||
241 | #define CHG_CNFG_04_CHGCVPRM_MASK (0x1f << CHG_CNFG_04_CHGCVPRM_SHIFT) | ||
242 | #define CHG_CNFG_04_MINVSYS_MASK (0x7 << CHG_CNFG_04_MINVSYS_SHIFT) | ||
243 | |||
244 | /* MAX77693_CHG_REG_CHG_CNFG_06 register */ | ||
245 | #define CHG_CNFG_06_CHGPROT_SHIFT 2 | ||
246 | #define CHG_CNFG_06_CHGPROT_MASK (0x3 << CHG_CNFG_06_CHGPROT_SHIFT) | ||
247 | |||
248 | /* MAX77693_CHG_REG_CHG_CNFG_07 register */ | ||
249 | #define CHG_CNFG_07_REGTEMP_SHIFT 5 | ||
250 | #define CHG_CNFG_07_REGTEMP_MASK (0x3 << CHG_CNFG_07_REGTEMP_SHIFT) | ||
251 | |||
252 | /* MAX77693_CHG_REG_CHG_CNFG_12 register */ | ||
253 | #define CHG_CNFG_12_B2SOVRC_SHIFT 0 | ||
254 | #define CHG_CNFG_12_VCHGINREG_SHIFT 3 | ||
255 | #define CHG_CNFG_12_B2SOVRC_MASK (0x7 << CHG_CNFG_12_B2SOVRC_SHIFT) | ||
256 | #define CHG_CNFG_12_VCHGINREG_MASK (0x3 << CHG_CNFG_12_VCHGINREG_SHIFT) | ||
257 | |||
150 | /* MAX77693 CHG_CNFG_09 Register */ | 258 | /* MAX77693 CHG_CNFG_09 Register */ |
151 | #define CHG_CNFG_09_CHGIN_ILIM_MASK 0x7F | 259 | #define CHG_CNFG_09_CHGIN_ILIM_MASK 0x7F |
152 | 260 | ||
diff --git a/include/linux/mfd/qcom_rpm.h b/include/linux/mfd/qcom_rpm.h new file mode 100644 index 000000000000..742ebf1b76ca --- /dev/null +++ b/include/linux/mfd/qcom_rpm.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #ifndef __QCOM_RPM_H__ | ||
2 | #define __QCOM_RPM_H__ | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | |||
6 | struct qcom_rpm; | ||
7 | |||
8 | #define QCOM_RPM_ACTIVE_STATE 0 | ||
9 | #define QCOM_RPM_SLEEP_STATE 1 | ||
10 | |||
11 | int qcom_rpm_write(struct qcom_rpm *rpm, int state, int resource, u32 *buf, size_t count); | ||
12 | |||
13 | #endif | ||
diff --git a/include/linux/mfd/rt5033-private.h b/include/linux/mfd/rt5033-private.h new file mode 100644 index 000000000000..1b63fc2f42d1 --- /dev/null +++ b/include/linux/mfd/rt5033-private.h | |||
@@ -0,0 +1,260 @@ | |||
1 | /* | ||
2 | * MFD core driver for Richtek RT5033 | ||
3 | * | ||
4 | * Copyright (C) 2014 Samsung Electronics, Co., Ltd. | ||
5 | * Author: Beomho Seo <beomho.seo@samsung.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published bythe Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #ifndef __RT5033_PRIVATE_H__ | ||
13 | #define __RT5033_PRIVATE_H__ | ||
14 | |||
15 | enum rt5033_reg { | ||
16 | RT5033_REG_CHG_STAT = 0x00, | ||
17 | RT5033_REG_CHG_CTRL1 = 0x01, | ||
18 | RT5033_REG_CHG_CTRL2 = 0x02, | ||
19 | RT5033_REG_DEVICE_ID = 0x03, | ||
20 | RT5033_REG_CHG_CTRL3 = 0x04, | ||
21 | RT5033_REG_CHG_CTRL4 = 0x05, | ||
22 | RT5033_REG_CHG_CTRL5 = 0x06, | ||
23 | RT5033_REG_RT_CTRL0 = 0x07, | ||
24 | RT5033_REG_CHG_RESET = 0x08, | ||
25 | /* Reserved 0x09~0x18 */ | ||
26 | RT5033_REG_RT_CTRL1 = 0x19, | ||
27 | /* Reserved 0x1A~0x20 */ | ||
28 | RT5033_REG_FLED_FUNCTION1 = 0x21, | ||
29 | RT5033_REG_FLED_FUNCTION2 = 0x22, | ||
30 | RT5033_REG_FLED_STROBE_CTRL1 = 0x23, | ||
31 | RT5033_REG_FLED_STROBE_CTRL2 = 0x24, | ||
32 | RT5033_REG_FLED_CTRL1 = 0x25, | ||
33 | RT5033_REG_FLED_CTRL2 = 0x26, | ||
34 | RT5033_REG_FLED_CTRL3 = 0x27, | ||
35 | RT5033_REG_FLED_CTRL4 = 0x28, | ||
36 | RT5033_REG_FLED_CTRL5 = 0x29, | ||
37 | /* Reserved 0x2A~0x40 */ | ||
38 | RT5033_REG_CTRL = 0x41, | ||
39 | RT5033_REG_BUCK_CTRL = 0x42, | ||
40 | RT5033_REG_LDO_CTRL = 0x43, | ||
41 | /* Reserved 0x44~0x46 */ | ||
42 | RT5033_REG_MANUAL_RESET_CTRL = 0x47, | ||
43 | /* Reserved 0x48~0x5F */ | ||
44 | RT5033_REG_CHG_IRQ1 = 0x60, | ||
45 | RT5033_REG_CHG_IRQ2 = 0x61, | ||
46 | RT5033_REG_CHG_IRQ3 = 0x62, | ||
47 | RT5033_REG_CHG_IRQ1_CTRL = 0x63, | ||
48 | RT5033_REG_CHG_IRQ2_CTRL = 0x64, | ||
49 | RT5033_REG_CHG_IRQ3_CTRL = 0x65, | ||
50 | RT5033_REG_LED_IRQ_STAT = 0x66, | ||
51 | RT5033_REG_LED_IRQ_CTRL = 0x67, | ||
52 | RT5033_REG_PMIC_IRQ_STAT = 0x68, | ||
53 | RT5033_REG_PMIC_IRQ_CTRL = 0x69, | ||
54 | RT5033_REG_SHDN_CTRL = 0x6A, | ||
55 | RT5033_REG_OFF_EVENT = 0x6B, | ||
56 | |||
57 | RT5033_REG_END, | ||
58 | }; | ||
59 | |||
60 | /* RT5033 Charger state register */ | ||
61 | #define RT5033_CHG_STAT_MASK 0x20 | ||
62 | #define RT5033_CHG_STAT_DISCHARGING 0x00 | ||
63 | #define RT5033_CHG_STAT_FULL 0x10 | ||
64 | #define RT5033_CHG_STAT_CHARGING 0x20 | ||
65 | #define RT5033_CHG_STAT_NOT_CHARGING 0x30 | ||
66 | #define RT5033_CHG_STAT_TYPE_MASK 0x60 | ||
67 | #define RT5033_CHG_STAT_TYPE_PRE 0x20 | ||
68 | #define RT5033_CHG_STAT_TYPE_FAST 0x60 | ||
69 | |||
70 | /* RT5033 CHGCTRL1 register */ | ||
71 | #define RT5033_CHGCTRL1_IAICR_MASK 0xe0 | ||
72 | #define RT5033_CHGCTRL1_MODE_MASK 0x01 | ||
73 | |||
74 | /* RT5033 CHGCTRL2 register */ | ||
75 | #define RT5033_CHGCTRL2_CV_MASK 0xfc | ||
76 | |||
77 | /* RT5033 CHGCTRL3 register */ | ||
78 | #define RT5033_CHGCTRL3_CFO_EN_MASK 0x40 | ||
79 | #define RT5033_CHGCTRL3_TIMER_MASK 0x38 | ||
80 | #define RT5033_CHGCTRL3_TIMER_EN_MASK 0x01 | ||
81 | |||
82 | /* RT5033 CHGCTRL4 register */ | ||
83 | #define RT5033_CHGCTRL4_EOC_MASK 0x07 | ||
84 | #define RT5033_CHGCTRL4_IPREC_MASK 0x18 | ||
85 | |||
86 | /* RT5033 CHGCTRL5 register */ | ||
87 | #define RT5033_CHGCTRL5_VPREC_MASK 0x0f | ||
88 | #define RT5033_CHGCTRL5_ICHG_MASK 0xf0 | ||
89 | #define RT5033_CHGCTRL5_ICHG_SHIFT 0x04 | ||
90 | #define RT5033_CHG_MAX_CURRENT 0x0d | ||
91 | |||
92 | /* RT5033 RT CTRL1 register */ | ||
93 | #define RT5033_RT_CTRL1_UUG_MASK 0x02 | ||
94 | #define RT5033_RT_HZ_MASK 0x01 | ||
95 | |||
96 | /* RT5033 control register */ | ||
97 | #define RT5033_CTRL_FCCM_BUCK_MASK 0x00 | ||
98 | #define RT5033_CTRL_BUCKOMS_MASK 0x01 | ||
99 | #define RT5033_CTRL_LDOOMS_MASK 0x02 | ||
100 | #define RT5033_CTRL_SLDOOMS_MASK 0x03 | ||
101 | #define RT5033_CTRL_EN_BUCK_MASK 0x04 | ||
102 | #define RT5033_CTRL_EN_LDO_MASK 0x05 | ||
103 | #define RT5033_CTRL_EN_SAFE_LDO_MASK 0x06 | ||
104 | #define RT5033_CTRL_LDO_SLEEP_MASK 0x07 | ||
105 | |||
106 | /* RT5033 BUCK control register */ | ||
107 | #define RT5033_BUCK_CTRL_MASK 0x1f | ||
108 | |||
109 | /* RT5033 LDO control register */ | ||
110 | #define RT5033_LDO_CTRL_MASK 0x1f | ||
111 | |||
112 | /* RT5033 charger property - model, manufacturer */ | ||
113 | |||
114 | #define RT5033_CHARGER_MODEL "RT5033WSC Charger" | ||
115 | #define RT5033_MANUFACTURER "Richtek Technology Corporation" | ||
116 | |||
117 | /* | ||
118 | * RT5033 charger fast-charge current lmits (as in CHGCTRL1 register), | ||
119 | * AICR mode limits the input current for example, | ||
120 | * the AIRC 100 mode limits the input current to 100 mA. | ||
121 | */ | ||
122 | #define RT5033_AICR_100_MODE 0x20 | ||
123 | #define RT5033_AICR_500_MODE 0x40 | ||
124 | #define RT5033_AICR_700_MODE 0x60 | ||
125 | #define RT5033_AICR_900_MODE 0x80 | ||
126 | #define RT5033_AICR_1500_MODE 0xc0 | ||
127 | #define RT5033_AICR_2000_MODE 0xe0 | ||
128 | #define RT5033_AICR_MODE_MASK 0xe0 | ||
129 | |||
130 | /* RT5033 use internal timer need to set time */ | ||
131 | #define RT5033_FAST_CHARGE_TIMER4 0x00 | ||
132 | #define RT5033_FAST_CHARGE_TIMER6 0x01 | ||
133 | #define RT5033_FAST_CHARGE_TIMER8 0x02 | ||
134 | #define RT5033_FAST_CHARGE_TIMER9 0x03 | ||
135 | #define RT5033_FAST_CHARGE_TIMER12 0x04 | ||
136 | #define RT5033_FAST_CHARGE_TIMER14 0x05 | ||
137 | #define RT5033_FAST_CHARGE_TIMER16 0x06 | ||
138 | |||
139 | #define RT5033_INT_TIMER_ENABLE 0x01 | ||
140 | |||
141 | /* RT5033 charger termination enable mask */ | ||
142 | #define RT5033_TE_ENABLE_MASK 0x08 | ||
143 | |||
144 | /* | ||
145 | * RT5033 charger opa mode. RT50300 have two opa mode charger mode | ||
146 | * and boost mode for OTG | ||
147 | */ | ||
148 | |||
149 | #define RT5033_CHARGER_MODE 0x00 | ||
150 | #define RT5033_BOOST_MODE 0x01 | ||
151 | |||
152 | /* RT5033 charger termination enable */ | ||
153 | #define RT5033_TE_ENABLE 0x08 | ||
154 | |||
155 | /* RT5033 charger CFO enable */ | ||
156 | #define RT5033_CFO_ENABLE 0x40 | ||
157 | |||
158 | /* RT5033 charger constant charge voltage (as in CHGCTRL2 register), uV */ | ||
159 | #define RT5033_CHARGER_CONST_VOLTAGE_LIMIT_MIN 3650000U | ||
160 | #define RT5033_CHARGER_CONST_VOLTAGE_STEP_NUM 25000U | ||
161 | #define RT5033_CHARGER_CONST_VOLTAGE_LIMIT_MAX 4400000U | ||
162 | |||
163 | /* RT5033 charger pre-charge current limits (as in CHGCTRL4 register), uA */ | ||
164 | #define RT5033_CHARGER_PRE_CURRENT_LIMIT_MIN 350000U | ||
165 | #define RT5033_CHARGER_PRE_CURRENT_STEP_NUM 100000U | ||
166 | #define RT5033_CHARGER_PRE_CURRENT_LIMIT_MAX 650000U | ||
167 | |||
168 | /* RT5033 charger fast-charge current (as in CHGCTRL5 register), uA */ | ||
169 | #define RT5033_CHARGER_FAST_CURRENT_MIN 700000U | ||
170 | #define RT5033_CHARGER_FAST_CURRENT_STEP_NUM 100000U | ||
171 | #define RT5033_CHARGER_FAST_CURRENT_MAX 2000000U | ||
172 | |||
173 | /* | ||
174 | * RT5033 charger const-charge end of charger current ( | ||
175 | * as in CHGCTRL4 register), uA | ||
176 | */ | ||
177 | #define RT5033_CHARGER_EOC_MIN 150000U | ||
178 | #define RT5033_CHARGER_EOC_REF 300000U | ||
179 | #define RT5033_CHARGER_EOC_STEP_NUM1 50000U | ||
180 | #define RT5033_CHARGER_EOC_STEP_NUM2 100000U | ||
181 | #define RT5033_CHARGER_EOC_MAX 600000U | ||
182 | |||
183 | /* | ||
184 | * RT5033 charger pre-charge threshold volt limits | ||
185 | * (as in CHGCTRL5 register), uV | ||
186 | */ | ||
187 | |||
188 | #define RT5033_CHARGER_PRE_THRESHOLD_LIMIT_MIN 2300000U | ||
189 | #define RT5033_CHARGER_PRE_THRESHOLD_STEP_NUM 100000U | ||
190 | #define RT5033_CHARGER_PRE_THRESHOLD_LIMIT_MAX 3800000U | ||
191 | |||
192 | /* | ||
193 | * RT5033 charger enable UUG, If UUG enable MOS auto control by H/W charger | ||
194 | * circuit. | ||
195 | */ | ||
196 | #define RT5033_CHARGER_UUG_ENABLE 0x02 | ||
197 | |||
198 | /* RT5033 charger High impedance mode */ | ||
199 | #define RT5033_CHARGER_HZ_DISABLE 0x00 | ||
200 | #define RT5033_CHARGER_HZ_ENABLE 0x01 | ||
201 | |||
202 | /* RT5033 regulator BUCK output voltage uV */ | ||
203 | #define RT5033_REGULATOR_BUCK_VOLTAGE_MIN 1000000U | ||
204 | #define RT5033_REGULATOR_BUCK_VOLTAGE_MAX 3000000U | ||
205 | #define RT5033_REGULATOR_BUCK_VOLTAGE_STEP 100000U | ||
206 | #define RT5033_REGULATOR_BUCK_VOLTAGE_STEP_NUM 32 | ||
207 | |||
208 | /* RT5033 regulator LDO output voltage uV */ | ||
209 | #define RT5033_REGULATOR_LDO_VOLTAGE_MIN 1200000U | ||
210 | #define RT5033_REGULATOR_LDO_VOLTAGE_MAX 3000000U | ||
211 | #define RT5033_REGULATOR_LDO_VOLTAGE_STEP 100000U | ||
212 | #define RT5033_REGULATOR_LDO_VOLTAGE_STEP_NUM 32 | ||
213 | |||
214 | /* RT5033 regulator SAFE LDO output voltage uV */ | ||
215 | #define RT5033_REGULATOR_SAFE_LDO_VOLTAGE 4900000U | ||
216 | |||
217 | enum rt5033_fuel_reg { | ||
218 | RT5033_FUEL_REG_OCV_H = 0x00, | ||
219 | RT5033_FUEL_REG_OCV_L = 0x01, | ||
220 | RT5033_FUEL_REG_VBAT_H = 0x02, | ||
221 | RT5033_FUEL_REG_VBAT_L = 0x03, | ||
222 | RT5033_FUEL_REG_SOC_H = 0x04, | ||
223 | RT5033_FUEL_REG_SOC_L = 0x05, | ||
224 | RT5033_FUEL_REG_CTRL_H = 0x06, | ||
225 | RT5033_FUEL_REG_CTRL_L = 0x07, | ||
226 | RT5033_FUEL_REG_CRATE = 0x08, | ||
227 | RT5033_FUEL_REG_DEVICE_ID = 0x09, | ||
228 | RT5033_FUEL_REG_AVG_VOLT_H = 0x0A, | ||
229 | RT5033_FUEL_REG_AVG_VOLT_L = 0x0B, | ||
230 | RT5033_FUEL_REG_CONFIG_H = 0x0C, | ||
231 | RT5033_FUEL_REG_CONFIG_L = 0x0D, | ||
232 | /* Reserved 0x0E~0x0F */ | ||
233 | RT5033_FUEL_REG_IRQ_CTRL = 0x10, | ||
234 | RT5033_FUEL_REG_IRQ_FLAG = 0x11, | ||
235 | RT5033_FUEL_VMIN = 0x12, | ||
236 | RT5033_FUEL_SMIN = 0x13, | ||
237 | /* Reserved 0x14~0x1F */ | ||
238 | RT5033_FUEL_VGCOMP1 = 0x20, | ||
239 | RT5033_FUEL_VGCOMP2 = 0x21, | ||
240 | RT5033_FUEL_VGCOMP3 = 0x22, | ||
241 | RT5033_FUEL_VGCOMP4 = 0x23, | ||
242 | /* Reserved 0x24~0xFD */ | ||
243 | RT5033_FUEL_MFA_H = 0xFE, | ||
244 | RT5033_FUEL_MFA_L = 0xFF, | ||
245 | |||
246 | RT5033_FUEL_REG_END, | ||
247 | }; | ||
248 | |||
249 | /* RT5033 fuel gauge battery present property */ | ||
250 | #define RT5033_FUEL_BAT_PRESENT 0x02 | ||
251 | |||
252 | /* RT5033 PMIC interrupts */ | ||
253 | #define RT5033_PMIC_IRQ_BUCKOCP 2 | ||
254 | #define RT5033_PMIC_IRQ_BUCKLV 3 | ||
255 | #define RT5033_PMIC_IRQ_SAFELDOLV 4 | ||
256 | #define RT5033_PMIC_IRQ_LDOLV 5 | ||
257 | #define RT5033_PMIC_IRQ_OT 6 | ||
258 | #define RT5033_PMIC_IRQ_VDDA_UV 7 | ||
259 | |||
260 | #endif /* __RT5033_PRIVATE_H__ */ | ||
diff --git a/include/linux/mfd/rt5033.h b/include/linux/mfd/rt5033.h new file mode 100644 index 000000000000..010cff49a98e --- /dev/null +++ b/include/linux/mfd/rt5033.h | |||
@@ -0,0 +1,62 @@ | |||
1 | /* | ||
2 | * MFD core driver for the RT5033 | ||
3 | * | ||
4 | * Copyright (C) 2014 Samsung Electronics | ||
5 | * Author: Beomho Seo <beomho.seo@samsung.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published bythe Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #ifndef __RT5033_H__ | ||
13 | #define __RT5033_H__ | ||
14 | |||
15 | #include <linux/regulator/consumer.h> | ||
16 | #include <linux/i2c.h> | ||
17 | #include <linux/regmap.h> | ||
18 | #include <linux/power_supply.h> | ||
19 | |||
20 | /* RT5033 regulator IDs */ | ||
21 | enum rt5033_regulators { | ||
22 | RT5033_BUCK = 0, | ||
23 | RT5033_LDO, | ||
24 | RT5033_SAFE_LDO, | ||
25 | |||
26 | RT5033_REGULATOR_NUM, | ||
27 | }; | ||
28 | |||
29 | struct rt5033_dev { | ||
30 | struct device *dev; | ||
31 | |||
32 | struct regmap *regmap; | ||
33 | struct regmap_irq_chip_data *irq_data; | ||
34 | int irq; | ||
35 | bool wakeup; | ||
36 | }; | ||
37 | |||
38 | struct rt5033_battery { | ||
39 | struct i2c_client *client; | ||
40 | struct rt5033_dev *rt5033; | ||
41 | struct regmap *regmap; | ||
42 | struct power_supply psy; | ||
43 | }; | ||
44 | |||
45 | /* RT5033 charger platform data */ | ||
46 | struct rt5033_charger_data { | ||
47 | unsigned int pre_uamp; | ||
48 | unsigned int pre_uvolt; | ||
49 | unsigned int const_uvolt; | ||
50 | unsigned int eoc_uamp; | ||
51 | unsigned int fast_uamp; | ||
52 | }; | ||
53 | |||
54 | struct rt5033_charger { | ||
55 | struct device *dev; | ||
56 | struct rt5033_dev *rt5033; | ||
57 | struct power_supply psy; | ||
58 | |||
59 | struct rt5033_charger_data *chg; | ||
60 | }; | ||
61 | |||
62 | #endif /* __RT5033_H__ */ | ||
diff --git a/include/linux/mfd/stmpe.h b/include/linux/mfd/stmpe.h index f742b6717d52..c9d869027300 100644 --- a/include/linux/mfd/stmpe.h +++ b/include/linux/mfd/stmpe.h | |||
@@ -118,20 +118,6 @@ extern int stmpe_disable(struct stmpe *stmpe, unsigned int blocks); | |||
118 | #define STMPE_GPIO_NOREQ_811_TOUCH (0xf0) | 118 | #define STMPE_GPIO_NOREQ_811_TOUCH (0xf0) |
119 | 119 | ||
120 | /** | 120 | /** |
121 | * struct stmpe_gpio_platform_data - STMPE GPIO platform data | ||
122 | * @norequest_mask: bitmask specifying which GPIOs should _not_ be | ||
123 | * requestable due to different usage (e.g. touch, keypad) | ||
124 | * STMPE_GPIO_NOREQ_* macros can be used here. | ||
125 | * @setup: board specific setup callback. | ||
126 | * @remove: board specific remove callback | ||
127 | */ | ||
128 | struct stmpe_gpio_platform_data { | ||
129 | unsigned norequest_mask; | ||
130 | void (*setup)(struct stmpe *stmpe, unsigned gpio_base); | ||
131 | void (*remove)(struct stmpe *stmpe, unsigned gpio_base); | ||
132 | }; | ||
133 | |||
134 | /** | ||
135 | * struct stmpe_ts_platform_data - stmpe811 touch screen controller platform | 121 | * struct stmpe_ts_platform_data - stmpe811 touch screen controller platform |
136 | * data | 122 | * data |
137 | * @sample_time: ADC converstion time in number of clock. | 123 | * @sample_time: ADC converstion time in number of clock. |
@@ -182,7 +168,6 @@ struct stmpe_ts_platform_data { | |||
182 | * @irq_over_gpio: true if gpio is used to get irq | 168 | * @irq_over_gpio: true if gpio is used to get irq |
183 | * @irq_gpio: gpio number over which irq will be requested (significant only if | 169 | * @irq_gpio: gpio number over which irq will be requested (significant only if |
184 | * irq_over_gpio is true) | 170 | * irq_over_gpio is true) |
185 | * @gpio: GPIO-specific platform data | ||
186 | * @ts: touchscreen-specific platform data | 171 | * @ts: touchscreen-specific platform data |
187 | */ | 172 | */ |
188 | struct stmpe_platform_data { | 173 | struct stmpe_platform_data { |
@@ -194,7 +179,6 @@ struct stmpe_platform_data { | |||
194 | int irq_gpio; | 179 | int irq_gpio; |
195 | int autosleep_timeout; | 180 | int autosleep_timeout; |
196 | 181 | ||
197 | struct stmpe_gpio_platform_data *gpio; | ||
198 | struct stmpe_ts_platform_data *ts; | 182 | struct stmpe_ts_platform_data *ts; |
199 | }; | 183 | }; |
200 | 184 | ||
diff --git a/include/linux/mfd/syscon/atmel-matrix.h b/include/linux/mfd/syscon/atmel-matrix.h new file mode 100644 index 000000000000..8293c3e2a82a --- /dev/null +++ b/include/linux/mfd/syscon/atmel-matrix.h | |||
@@ -0,0 +1,117 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2014 Atmel Corporation. | ||
3 | * | ||
4 | * Memory Controllers (MATRIX, EBI) - System peripherals registers. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #ifndef _LINUX_MFD_SYSCON_ATMEL_MATRIX_H | ||
13 | #define _LINUX_MFD_SYSCON_ATMEL_MATRIX_H | ||
14 | |||
15 | #define AT91SAM9260_MATRIX_MCFG 0x00 | ||
16 | #define AT91SAM9260_MATRIX_SCFG 0x40 | ||
17 | #define AT91SAM9260_MATRIX_PRS 0x80 | ||
18 | #define AT91SAM9260_MATRIX_MRCR 0x100 | ||
19 | #define AT91SAM9260_MATRIX_EBICSA 0x11c | ||
20 | |||
21 | #define AT91SAM9261_MATRIX_MRCR 0x0 | ||
22 | #define AT91SAM9261_MATRIX_SCFG 0x4 | ||
23 | #define AT91SAM9261_MATRIX_TCR 0x24 | ||
24 | #define AT91SAM9261_MATRIX_EBICSA 0x30 | ||
25 | #define AT91SAM9261_MATRIX_USBPUCR 0x34 | ||
26 | |||
27 | #define AT91SAM9263_MATRIX_MCFG 0x00 | ||
28 | #define AT91SAM9263_MATRIX_SCFG 0x40 | ||
29 | #define AT91SAM9263_MATRIX_PRS 0x80 | ||
30 | #define AT91SAM9263_MATRIX_MRCR 0x100 | ||
31 | #define AT91SAM9263_MATRIX_TCR 0x114 | ||
32 | #define AT91SAM9263_MATRIX_EBI0CSA 0x120 | ||
33 | #define AT91SAM9263_MATRIX_EBI1CSA 0x124 | ||
34 | |||
35 | #define AT91SAM9RL_MATRIX_MCFG 0x00 | ||
36 | #define AT91SAM9RL_MATRIX_SCFG 0x40 | ||
37 | #define AT91SAM9RL_MATRIX_PRS 0x80 | ||
38 | #define AT91SAM9RL_MATRIX_MRCR 0x100 | ||
39 | #define AT91SAM9RL_MATRIX_TCR 0x114 | ||
40 | #define AT91SAM9RL_MATRIX_EBICSA 0x120 | ||
41 | |||
42 | #define AT91SAM9G45_MATRIX_MCFG 0x00 | ||
43 | #define AT91SAM9G45_MATRIX_SCFG 0x40 | ||
44 | #define AT91SAM9G45_MATRIX_PRS 0x80 | ||
45 | #define AT91SAM9G45_MATRIX_MRCR 0x100 | ||
46 | #define AT91SAM9G45_MATRIX_TCR 0x110 | ||
47 | #define AT91SAM9G45_MATRIX_DDRMPR 0x118 | ||
48 | #define AT91SAM9G45_MATRIX_EBICSA 0x128 | ||
49 | |||
50 | #define AT91SAM9N12_MATRIX_MCFG 0x00 | ||
51 | #define AT91SAM9N12_MATRIX_SCFG 0x40 | ||
52 | #define AT91SAM9N12_MATRIX_PRS 0x80 | ||
53 | #define AT91SAM9N12_MATRIX_MRCR 0x100 | ||
54 | #define AT91SAM9N12_MATRIX_EBICSA 0x118 | ||
55 | |||
56 | #define AT91SAM9X5_MATRIX_MCFG 0x00 | ||
57 | #define AT91SAM9X5_MATRIX_SCFG 0x40 | ||
58 | #define AT91SAM9X5_MATRIX_PRS 0x80 | ||
59 | #define AT91SAM9X5_MATRIX_MRCR 0x100 | ||
60 | #define AT91SAM9X5_MATRIX_EBICSA 0x120 | ||
61 | |||
62 | #define SAMA5D3_MATRIX_MCFG 0x00 | ||
63 | #define SAMA5D3_MATRIX_SCFG 0x40 | ||
64 | #define SAMA5D3_MATRIX_PRS 0x80 | ||
65 | #define SAMA5D3_MATRIX_MRCR 0x100 | ||
66 | |||
67 | #define AT91_MATRIX_MCFG(o, x) ((o) + ((x) * 0x4)) | ||
68 | #define AT91_MATRIX_ULBT GENMASK(2, 0) | ||
69 | #define AT91_MATRIX_ULBT_INFINITE (0 << 0) | ||
70 | #define AT91_MATRIX_ULBT_SINGLE (1 << 0) | ||
71 | #define AT91_MATRIX_ULBT_FOUR (2 << 0) | ||
72 | #define AT91_MATRIX_ULBT_EIGHT (3 << 0) | ||
73 | #define AT91_MATRIX_ULBT_SIXTEEN (4 << 0) | ||
74 | |||
75 | #define AT91_MATRIX_SCFG(o, x) ((o) + ((x) * 0x4)) | ||
76 | #define AT91_MATRIX_SLOT_CYCLE GENMASK(7, 0) | ||
77 | #define AT91_MATRIX_DEFMSTR_TYPE GENMASK(17, 16) | ||
78 | #define AT91_MATRIX_DEFMSTR_TYPE_NONE (0 << 16) | ||
79 | #define AT91_MATRIX_DEFMSTR_TYPE_LAST (1 << 16) | ||
80 | #define AT91_MATRIX_DEFMSTR_TYPE_FIXED (2 << 16) | ||
81 | #define AT91_MATRIX_FIXED_DEFMSTR GENMASK(20, 18) | ||
82 | #define AT91_MATRIX_ARBT GENMASK(25, 24) | ||
83 | #define AT91_MATRIX_ARBT_ROUND_ROBIN (0 << 24) | ||
84 | #define AT91_MATRIX_ARBT_FIXED_PRIORITY (1 << 24) | ||
85 | |||
86 | #define AT91_MATRIX_ITCM_SIZE GENMASK(3, 0) | ||
87 | #define AT91_MATRIX_ITCM_0 (0 << 0) | ||
88 | #define AT91_MATRIX_ITCM_16 (5 << 0) | ||
89 | #define AT91_MATRIX_ITCM_32 (6 << 0) | ||
90 | #define AT91_MATRIX_ITCM_64 (7 << 0) | ||
91 | #define AT91_MATRIX_DTCM_SIZE GENMASK(7, 4) | ||
92 | #define AT91_MATRIX_DTCM_0 (0 << 4) | ||
93 | #define AT91_MATRIX_DTCM_16 (5 << 4) | ||
94 | #define AT91_MATRIX_DTCM_32 (6 << 4) | ||
95 | #define AT91_MATRIX_DTCM_64 (7 << 4) | ||
96 | |||
97 | #define AT91_MATRIX_PRAS(o, x) ((o) + ((x) * 0x8)) | ||
98 | #define AT91_MATRIX_PRBS(o, x) ((o) + ((x) * 0x8) + 0x4) | ||
99 | #define AT91_MATRIX_MPR(x) GENMASK(((x) * 0x4) + 1, ((x) * 0x4)) | ||
100 | |||
101 | #define AT91_MATRIX_RCB(x) BIT(x) | ||
102 | |||
103 | #define AT91_MATRIX_CSA(cs, val) (val << (cs)) | ||
104 | #define AT91_MATRIX_DBPUC BIT(8) | ||
105 | #define AT91_MATRIX_DBPDC BIT(9) | ||
106 | #define AT91_MATRIX_VDDIOMSEL BIT(16) | ||
107 | #define AT91_MATRIX_VDDIOMSEL_1_8V (0 << 16) | ||
108 | #define AT91_MATRIX_VDDIOMSEL_3_3V (1 << 16) | ||
109 | #define AT91_MATRIX_EBI_IOSR BIT(17) | ||
110 | #define AT91_MATRIX_DDR_IOSR BIT(18) | ||
111 | #define AT91_MATRIX_NFD0_SELECT BIT(24) | ||
112 | #define AT91_MATRIX_DDR_MP_EN BIT(25) | ||
113 | #define AT91_MATRIX_EBI_NUM_CS 8 | ||
114 | |||
115 | #define AT91_MATRIX_USBPUCR_PUON BIT(30) | ||
116 | |||
117 | #endif /* _LINUX_MFD_SYSCON_ATMEL_MATRIX_H */ | ||
diff --git a/include/linux/mfd/syscon/atmel-smc.h b/include/linux/mfd/syscon/atmel-smc.h new file mode 100644 index 000000000000..be6ebe64eebe --- /dev/null +++ b/include/linux/mfd/syscon/atmel-smc.h | |||
@@ -0,0 +1,173 @@ | |||
1 | /* | ||
2 | * Atmel SMC (Static Memory Controller) register offsets and bit definitions. | ||
3 | * | ||
4 | * Copyright (C) 2014 Atmel | ||
5 | * Copyright (C) 2014 Free Electrons | ||
6 | * | ||
7 | * Author: Boris Brezillon <boris.brezillon@free-electrons.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #ifndef _LINUX_MFD_SYSCON_ATMEL_SMC_H_ | ||
15 | #define _LINUX_MFD_SYSCON_ATMEL_SMC_H_ | ||
16 | |||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/regmap.h> | ||
19 | |||
20 | #define AT91SAM9_SMC_GENERIC 0x00 | ||
21 | #define AT91SAM9_SMC_GENERIC_BLK_SZ 0x10 | ||
22 | |||
23 | #define SAMA5_SMC_GENERIC 0x600 | ||
24 | #define SAMA5_SMC_GENERIC_BLK_SZ 0x14 | ||
25 | |||
26 | #define AT91SAM9_SMC_SETUP(o) ((o) + 0x00) | ||
27 | #define AT91SAM9_SMC_NWESETUP(x) (x) | ||
28 | #define AT91SAM9_SMC_NCS_WRSETUP(x) ((x) << 8) | ||
29 | #define AT91SAM9_SMC_NRDSETUP(x) ((x) << 16) | ||
30 | #define AT91SAM9_SMC_NCS_NRDSETUP(x) ((x) << 24) | ||
31 | |||
32 | #define AT91SAM9_SMC_PULSE(o) ((o) + 0x04) | ||
33 | #define AT91SAM9_SMC_NWEPULSE(x) (x) | ||
34 | #define AT91SAM9_SMC_NCS_WRPULSE(x) ((x) << 8) | ||
35 | #define AT91SAM9_SMC_NRDPULSE(x) ((x) << 16) | ||
36 | #define AT91SAM9_SMC_NCS_NRDPULSE(x) ((x) << 24) | ||
37 | |||
38 | #define AT91SAM9_SMC_CYCLE(o) ((o) + 0x08) | ||
39 | #define AT91SAM9_SMC_NWECYCLE(x) (x) | ||
40 | #define AT91SAM9_SMC_NRDCYCLE(x) ((x) << 16) | ||
41 | |||
42 | #define AT91SAM9_SMC_MODE(o) ((o) + 0x0c) | ||
43 | #define SAMA5_SMC_MODE(o) ((o) + 0x10) | ||
44 | #define AT91_SMC_READMODE BIT(0) | ||
45 | #define AT91_SMC_READMODE_NCS (0 << 0) | ||
46 | #define AT91_SMC_READMODE_NRD (1 << 0) | ||
47 | #define AT91_SMC_WRITEMODE BIT(1) | ||
48 | #define AT91_SMC_WRITEMODE_NCS (0 << 1) | ||
49 | #define AT91_SMC_WRITEMODE_NWE (1 << 1) | ||
50 | #define AT91_SMC_EXNWMODE GENMASK(5, 4) | ||
51 | #define AT91_SMC_EXNWMODE_DISABLE (0 << 4) | ||
52 | #define AT91_SMC_EXNWMODE_FROZEN (2 << 4) | ||
53 | #define AT91_SMC_EXNWMODE_READY (3 << 4) | ||
54 | #define AT91_SMC_BAT BIT(8) | ||
55 | #define AT91_SMC_BAT_SELECT (0 << 8) | ||
56 | #define AT91_SMC_BAT_WRITE (1 << 8) | ||
57 | #define AT91_SMC_DBW GENMASK(13, 12) | ||
58 | #define AT91_SMC_DBW_8 (0 << 12) | ||
59 | #define AT91_SMC_DBW_16 (1 << 12) | ||
60 | #define AT91_SMC_DBW_32 (2 << 12) | ||
61 | #define AT91_SMC_TDF GENMASK(19, 16) | ||
62 | #define AT91_SMC_TDF_(x) ((((x) - 1) << 16) & AT91_SMC_TDF) | ||
63 | #define AT91_SMC_TDF_MAX 16 | ||
64 | #define AT91_SMC_TDFMODE_OPTIMIZED BIT(20) | ||
65 | #define AT91_SMC_PMEN BIT(24) | ||
66 | #define AT91_SMC_PS GENMASK(29, 28) | ||
67 | #define AT91_SMC_PS_4 (0 << 28) | ||
68 | #define AT91_SMC_PS_8 (1 << 28) | ||
69 | #define AT91_SMC_PS_16 (2 << 28) | ||
70 | #define AT91_SMC_PS_32 (3 << 28) | ||
71 | |||
72 | |||
73 | /* | ||
74 | * This function converts a setup timing expressed in nanoseconds into an | ||
75 | * encoded value that can be written in the SMC_SETUP register. | ||
76 | * | ||
77 | * The following formula is described in atmel datasheets (section | ||
78 | * "SMC Setup Register"): | ||
79 | * | ||
80 | * setup length = (128* SETUP[5] + SETUP[4:0]) | ||
81 | * | ||
82 | * where setup length is the timing expressed in cycles. | ||
83 | */ | ||
84 | static inline u32 at91sam9_smc_setup_ns_to_cycles(unsigned int clk_rate, | ||
85 | u32 timing_ns) | ||
86 | { | ||
87 | u32 clk_period = DIV_ROUND_UP(NSEC_PER_SEC, clk_rate); | ||
88 | u32 coded_cycles = 0; | ||
89 | u32 cycles; | ||
90 | |||
91 | cycles = DIV_ROUND_UP(timing_ns, clk_period); | ||
92 | if (cycles / 32) { | ||
93 | coded_cycles |= 1 << 5; | ||
94 | if (cycles < 128) | ||
95 | cycles = 0; | ||
96 | } | ||
97 | |||
98 | coded_cycles |= cycles % 32; | ||
99 | |||
100 | return coded_cycles; | ||
101 | } | ||
102 | |||
103 | /* | ||
104 | * This function converts a pulse timing expressed in nanoseconds into an | ||
105 | * encoded value that can be written in the SMC_PULSE register. | ||
106 | * | ||
107 | * The following formula is described in atmel datasheets (section | ||
108 | * "SMC Pulse Register"): | ||
109 | * | ||
110 | * pulse length = (256* PULSE[6] + PULSE[5:0]) | ||
111 | * | ||
112 | * where pulse length is the timing expressed in cycles. | ||
113 | */ | ||
114 | static inline u32 at91sam9_smc_pulse_ns_to_cycles(unsigned int clk_rate, | ||
115 | u32 timing_ns) | ||
116 | { | ||
117 | u32 clk_period = DIV_ROUND_UP(NSEC_PER_SEC, clk_rate); | ||
118 | u32 coded_cycles = 0; | ||
119 | u32 cycles; | ||
120 | |||
121 | cycles = DIV_ROUND_UP(timing_ns, clk_period); | ||
122 | if (cycles / 64) { | ||
123 | coded_cycles |= 1 << 6; | ||
124 | if (cycles < 256) | ||
125 | cycles = 0; | ||
126 | } | ||
127 | |||
128 | coded_cycles |= cycles % 64; | ||
129 | |||
130 | return coded_cycles; | ||
131 | } | ||
132 | |||
133 | /* | ||
134 | * This function converts a cycle timing expressed in nanoseconds into an | ||
135 | * encoded value that can be written in the SMC_CYCLE register. | ||
136 | * | ||
137 | * The following formula is described in atmel datasheets (section | ||
138 | * "SMC Cycle Register"): | ||
139 | * | ||
140 | * cycle length = (CYCLE[8:7]*256 + CYCLE[6:0]) | ||
141 | * | ||
142 | * where cycle length is the timing expressed in cycles. | ||
143 | */ | ||
144 | static inline u32 at91sam9_smc_cycle_ns_to_cycles(unsigned int clk_rate, | ||
145 | u32 timing_ns) | ||
146 | { | ||
147 | u32 clk_period = DIV_ROUND_UP(NSEC_PER_SEC, clk_rate); | ||
148 | u32 coded_cycles = 0; | ||
149 | u32 cycles; | ||
150 | |||
151 | cycles = DIV_ROUND_UP(timing_ns, clk_period); | ||
152 | if (cycles / 128) { | ||
153 | coded_cycles = cycles / 256; | ||
154 | cycles %= 256; | ||
155 | if (cycles >= 128) { | ||
156 | coded_cycles++; | ||
157 | cycles = 0; | ||
158 | } | ||
159 | |||
160 | if (coded_cycles > 0x3) { | ||
161 | coded_cycles = 0x3; | ||
162 | cycles = 0x7f; | ||
163 | } | ||
164 | |||
165 | coded_cycles <<= 7; | ||
166 | } | ||
167 | |||
168 | coded_cycles |= cycles % 128; | ||
169 | |||
170 | return coded_cycles; | ||
171 | } | ||
172 | |||
173 | #endif /* _LINUX_MFD_SYSCON_ATMEL_SMC_H_ */ | ||
diff --git a/include/linux/mfd/syscon/exynos4-pmu.h b/include/linux/mfd/syscon/exynos4-pmu.h new file mode 100644 index 000000000000..278b1b1549e9 --- /dev/null +++ b/include/linux/mfd/syscon/exynos4-pmu.h | |||
@@ -0,0 +1,21 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2015 Samsung Electronics Co., Ltd. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 as | ||
6 | * published by the Free Software Foundation. | ||
7 | */ | ||
8 | |||
9 | #ifndef _LINUX_MFD_SYSCON_PMU_EXYNOS4_H_ | ||
10 | #define _LINUX_MFD_SYSCON_PMU_EXYNOS4_H_ | ||
11 | |||
12 | /* Exynos4 PMU register definitions */ | ||
13 | |||
14 | /* MIPI_PHYn_CONTROL register offset: n = 0..1 */ | ||
15 | #define EXYNOS4_MIPI_PHY_CONTROL(n) (0x710 + (n) * 4) | ||
16 | #define EXYNOS4_MIPI_PHY_ENABLE (1 << 0) | ||
17 | #define EXYNOS4_MIPI_PHY_SRESETN (1 << 1) | ||
18 | #define EXYNOS4_MIPI_PHY_MRESETN (1 << 2) | ||
19 | #define EXYNOS4_MIPI_PHY_RESET_MASK (3 << 1) | ||
20 | |||
21 | #endif /* _LINUX_MFD_SYSCON_PMU_EXYNOS4_H_ */ | ||
diff --git a/include/linux/mfd/tc3589x.h b/include/linux/mfd/tc3589x.h index e1c12d84c26a..c203c9c56776 100644 --- a/include/linux/mfd/tc3589x.h +++ b/include/linux/mfd/tc3589x.h | |||
@@ -163,24 +163,12 @@ struct tc3589x_keypad_platform_data { | |||
163 | }; | 163 | }; |
164 | 164 | ||
165 | /** | 165 | /** |
166 | * struct tc3589x_gpio_platform_data - TC3589x GPIO platform data | ||
167 | * @setup: callback for board-specific initialization | ||
168 | * @remove: callback for board-specific teardown | ||
169 | */ | ||
170 | struct tc3589x_gpio_platform_data { | ||
171 | void (*setup)(struct tc3589x *tc3589x, unsigned gpio_base); | ||
172 | void (*remove)(struct tc3589x *tc3589x, unsigned gpio_base); | ||
173 | }; | ||
174 | |||
175 | /** | ||
176 | * struct tc3589x_platform_data - TC3589x platform data | 166 | * struct tc3589x_platform_data - TC3589x platform data |
177 | * @block: bitmask of blocks to enable (use TC3589x_BLOCK_*) | 167 | * @block: bitmask of blocks to enable (use TC3589x_BLOCK_*) |
178 | * @gpio: GPIO-specific platform data | ||
179 | * @keypad: keypad-specific platform data | 168 | * @keypad: keypad-specific platform data |
180 | */ | 169 | */ |
181 | struct tc3589x_platform_data { | 170 | struct tc3589x_platform_data { |
182 | unsigned int block; | 171 | unsigned int block; |
183 | struct tc3589x_gpio_platform_data *gpio; | ||
184 | const struct tc3589x_keypad_platform_data *keypad; | 172 | const struct tc3589x_keypad_platform_data *keypad; |
185 | }; | 173 | }; |
186 | 174 | ||
diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h index 57388171610d..605812820e48 100644 --- a/include/linux/mfd/tmio.h +++ b/include/linux/mfd/tmio.h | |||
@@ -96,11 +96,6 @@ | |||
96 | #define TMIO_MMC_SDIO_STATUS_QUIRK (1 << 8) | 96 | #define TMIO_MMC_SDIO_STATUS_QUIRK (1 << 8) |
97 | 97 | ||
98 | /* | 98 | /* |
99 | * Some controllers have DMA enable/disable register | ||
100 | */ | ||
101 | #define TMIO_MMC_HAVE_CTL_DMA_REG (1 << 9) | ||
102 | |||
103 | /* | ||
104 | * Some controllers allows to set SDx actual clock | 99 | * Some controllers allows to set SDx actual clock |
105 | */ | 100 | */ |
106 | #define TMIO_MMC_CLK_ACTUAL (1 << 10) | 101 | #define TMIO_MMC_CLK_ACTUAL (1 << 10) |
@@ -112,18 +107,6 @@ void tmio_core_mmc_clk_div(void __iomem *cnf, int shift, int state); | |||
112 | 107 | ||
113 | struct dma_chan; | 108 | struct dma_chan; |
114 | 109 | ||
115 | struct tmio_mmc_dma { | ||
116 | void *chan_priv_tx; | ||
117 | void *chan_priv_rx; | ||
118 | int slave_id_tx; | ||
119 | int slave_id_rx; | ||
120 | int alignment_shift; | ||
121 | dma_addr_t dma_rx_offset; | ||
122 | bool (*filter)(struct dma_chan *chan, void *arg); | ||
123 | }; | ||
124 | |||
125 | struct tmio_mmc_host; | ||
126 | |||
127 | /* | 110 | /* |
128 | * data for the MMC controller | 111 | * data for the MMC controller |
129 | */ | 112 | */ |
@@ -132,19 +115,12 @@ struct tmio_mmc_data { | |||
132 | unsigned long capabilities; | 115 | unsigned long capabilities; |
133 | unsigned long capabilities2; | 116 | unsigned long capabilities2; |
134 | unsigned long flags; | 117 | unsigned long flags; |
135 | unsigned long bus_shift; | ||
136 | u32 ocr_mask; /* available voltages */ | 118 | u32 ocr_mask; /* available voltages */ |
137 | struct tmio_mmc_dma *dma; | ||
138 | struct device *dev; | ||
139 | unsigned int cd_gpio; | 119 | unsigned int cd_gpio; |
120 | int alignment_shift; | ||
121 | dma_addr_t dma_rx_offset; | ||
140 | void (*set_pwr)(struct platform_device *host, int state); | 122 | void (*set_pwr)(struct platform_device *host, int state); |
141 | void (*set_clk_div)(struct platform_device *host, int state); | 123 | void (*set_clk_div)(struct platform_device *host, int state); |
142 | int (*write16_hook)(struct tmio_mmc_host *host, int addr); | ||
143 | /* clock management callbacks */ | ||
144 | int (*clk_enable)(struct platform_device *pdev, unsigned int *f); | ||
145 | void (*clk_disable)(struct platform_device *pdev); | ||
146 | int (*multi_io_quirk)(struct mmc_card *card, | ||
147 | unsigned int direction, int blk_size); | ||
148 | }; | 124 | }; |
149 | 125 | ||
150 | /* | 126 | /* |
diff --git a/include/linux/migrate.h b/include/linux/migrate.h index fab9b32ace8e..78baed5f2952 100644 --- a/include/linux/migrate.h +++ b/include/linux/migrate.h | |||
@@ -67,7 +67,6 @@ static inline int migrate_huge_page_move_mapping(struct address_space *mapping, | |||
67 | 67 | ||
68 | #ifdef CONFIG_NUMA_BALANCING | 68 | #ifdef CONFIG_NUMA_BALANCING |
69 | extern bool pmd_trans_migrating(pmd_t pmd); | 69 | extern bool pmd_trans_migrating(pmd_t pmd); |
70 | extern void wait_migrate_huge_page(struct anon_vma *anon_vma, pmd_t *pmd); | ||
71 | extern int migrate_misplaced_page(struct page *page, | 70 | extern int migrate_misplaced_page(struct page *page, |
72 | struct vm_area_struct *vma, int node); | 71 | struct vm_area_struct *vma, int node); |
73 | extern bool migrate_ratelimited(int node); | 72 | extern bool migrate_ratelimited(int node); |
@@ -76,9 +75,6 @@ static inline bool pmd_trans_migrating(pmd_t pmd) | |||
76 | { | 75 | { |
77 | return false; | 76 | return false; |
78 | } | 77 | } |
79 | static inline void wait_migrate_huge_page(struct anon_vma *anon_vma, pmd_t *pmd) | ||
80 | { | ||
81 | } | ||
82 | static inline int migrate_misplaced_page(struct page *page, | 78 | static inline int migrate_misplaced_page(struct page *page, |
83 | struct vm_area_struct *vma, int node) | 79 | struct vm_area_struct *vma, int node) |
84 | { | 80 | { |
diff --git a/include/linux/mlx4/cmd.h b/include/linux/mlx4/cmd.h index 64d25941b329..7b6d4e9ff603 100644 --- a/include/linux/mlx4/cmd.h +++ b/include/linux/mlx4/cmd.h | |||
@@ -71,6 +71,7 @@ enum { | |||
71 | 71 | ||
72 | /*master notify fw on finish for slave's flr*/ | 72 | /*master notify fw on finish for slave's flr*/ |
73 | MLX4_CMD_INFORM_FLR_DONE = 0x5b, | 73 | MLX4_CMD_INFORM_FLR_DONE = 0x5b, |
74 | MLX4_CMD_VIRT_PORT_MAP = 0x5c, | ||
74 | MLX4_CMD_GET_OP_REQ = 0x59, | 75 | MLX4_CMD_GET_OP_REQ = 0x59, |
75 | 76 | ||
76 | /* TPT commands */ | 77 | /* TPT commands */ |
@@ -165,9 +166,15 @@ enum { | |||
165 | }; | 166 | }; |
166 | 167 | ||
167 | enum { | 168 | enum { |
168 | MLX4_CMD_TIME_CLASS_A = 10000, | 169 | MLX4_CMD_TIME_CLASS_A = 60000, |
169 | MLX4_CMD_TIME_CLASS_B = 10000, | 170 | MLX4_CMD_TIME_CLASS_B = 60000, |
170 | MLX4_CMD_TIME_CLASS_C = 10000, | 171 | MLX4_CMD_TIME_CLASS_C = 60000, |
172 | }; | ||
173 | |||
174 | enum { | ||
175 | /* virtual to physical port mapping opcode modifiers */ | ||
176 | MLX4_GET_PORT_VIRT2PHY = 0x0, | ||
177 | MLX4_SET_PORT_VIRT2PHY = 0x1, | ||
171 | }; | 178 | }; |
172 | 179 | ||
173 | enum { | 180 | enum { |
@@ -279,6 +286,8 @@ int mlx4_get_vf_config(struct mlx4_dev *dev, int port, int vf, struct ifla_vf_in | |||
279 | int mlx4_set_vf_link_state(struct mlx4_dev *dev, int port, int vf, int link_state); | 286 | int mlx4_set_vf_link_state(struct mlx4_dev *dev, int port, int vf, int link_state); |
280 | int mlx4_config_dev_retrieval(struct mlx4_dev *dev, | 287 | int mlx4_config_dev_retrieval(struct mlx4_dev *dev, |
281 | struct mlx4_config_dev_params *params); | 288 | struct mlx4_config_dev_params *params); |
289 | void mlx4_cmd_wake_completions(struct mlx4_dev *dev); | ||
290 | void mlx4_report_internal_err_comm_event(struct mlx4_dev *dev); | ||
282 | /* | 291 | /* |
283 | * mlx4_get_slave_default_vlan - | 292 | * mlx4_get_slave_default_vlan - |
284 | * return true if VST ( default vlan) | 293 | * return true if VST ( default vlan) |
@@ -288,5 +297,6 @@ bool mlx4_get_slave_default_vlan(struct mlx4_dev *dev, int port, int slave, | |||
288 | u16 *vlan, u8 *qos); | 297 | u16 *vlan, u8 *qos); |
289 | 298 | ||
290 | #define MLX4_COMM_GET_IF_REV(cmd_chan_ver) (u8)((cmd_chan_ver) >> 8) | 299 | #define MLX4_COMM_GET_IF_REV(cmd_chan_ver) (u8)((cmd_chan_ver) >> 8) |
300 | #define COMM_CHAN_EVENT_INTERNAL_ERR (1 << 17) | ||
291 | 301 | ||
292 | #endif /* MLX4_CMD_H */ | 302 | #endif /* MLX4_CMD_H */ |
diff --git a/include/linux/mlx4/device.h b/include/linux/mlx4/device.h index 5f3a9aa7225d..e4ebff7e9d02 100644 --- a/include/linux/mlx4/device.h +++ b/include/linux/mlx4/device.h | |||
@@ -42,7 +42,7 @@ | |||
42 | 42 | ||
43 | #include <linux/atomic.h> | 43 | #include <linux/atomic.h> |
44 | 44 | ||
45 | #include <linux/clocksource.h> | 45 | #include <linux/timecounter.h> |
46 | 46 | ||
47 | #define MAX_MSIX_P_PORT 17 | 47 | #define MAX_MSIX_P_PORT 17 |
48 | #define MAX_MSIX 64 | 48 | #define MAX_MSIX 64 |
@@ -70,6 +70,7 @@ enum { | |||
70 | MLX4_FLAG_SLAVE = 1 << 3, | 70 | MLX4_FLAG_SLAVE = 1 << 3, |
71 | MLX4_FLAG_SRIOV = 1 << 4, | 71 | MLX4_FLAG_SRIOV = 1 << 4, |
72 | MLX4_FLAG_OLD_REG_MAC = 1 << 6, | 72 | MLX4_FLAG_OLD_REG_MAC = 1 << 6, |
73 | MLX4_FLAG_BONDED = 1 << 7 | ||
73 | }; | 74 | }; |
74 | 75 | ||
75 | enum { | 76 | enum { |
@@ -200,7 +201,9 @@ enum { | |||
200 | MLX4_DEV_CAP_FLAG2_CONFIG_DEV = 1LL << 16, | 201 | MLX4_DEV_CAP_FLAG2_CONFIG_DEV = 1LL << 16, |
201 | MLX4_DEV_CAP_FLAG2_SYS_EQS = 1LL << 17, | 202 | MLX4_DEV_CAP_FLAG2_SYS_EQS = 1LL << 17, |
202 | MLX4_DEV_CAP_FLAG2_80_VFS = 1LL << 18, | 203 | MLX4_DEV_CAP_FLAG2_80_VFS = 1LL << 18, |
203 | MLX4_DEV_CAP_FLAG2_FS_A0 = 1LL << 19 | 204 | MLX4_DEV_CAP_FLAG2_FS_A0 = 1LL << 19, |
205 | MLX4_DEV_CAP_FLAG2_RECOVERABLE_ERROR_EVENT = 1LL << 20, | ||
206 | MLX4_DEV_CAP_FLAG2_PORT_REMAP = 1LL << 21 | ||
204 | }; | 207 | }; |
205 | 208 | ||
206 | enum { | 209 | enum { |
@@ -208,6 +211,10 @@ enum { | |||
208 | MLX4_QUERY_FUNC_FLAGS_A0_RES_QP = 1LL << 1 | 211 | MLX4_QUERY_FUNC_FLAGS_A0_RES_QP = 1LL << 1 |
209 | }; | 212 | }; |
210 | 213 | ||
214 | enum { | ||
215 | MLX4_VF_CAP_FLAG_RESET = 1 << 0 | ||
216 | }; | ||
217 | |||
211 | /* bit enums for an 8-bit flags field indicating special use | 218 | /* bit enums for an 8-bit flags field indicating special use |
212 | * QPs which require special handling in qp_reserve_range. | 219 | * QPs which require special handling in qp_reserve_range. |
213 | * Currently, this only includes QPs used by the ETH interface, | 220 | * Currently, this only includes QPs used by the ETH interface, |
@@ -248,9 +255,14 @@ enum { | |||
248 | MLX4_BMME_FLAG_TYPE_2_WIN = 1 << 9, | 255 | MLX4_BMME_FLAG_TYPE_2_WIN = 1 << 9, |
249 | MLX4_BMME_FLAG_RESERVED_LKEY = 1 << 10, | 256 | MLX4_BMME_FLAG_RESERVED_LKEY = 1 << 10, |
250 | MLX4_BMME_FLAG_FAST_REG_WR = 1 << 11, | 257 | MLX4_BMME_FLAG_FAST_REG_WR = 1 << 11, |
258 | MLX4_BMME_FLAG_PORT_REMAP = 1 << 24, | ||
251 | MLX4_BMME_FLAG_VSD_INIT2RTR = 1 << 28, | 259 | MLX4_BMME_FLAG_VSD_INIT2RTR = 1 << 28, |
252 | }; | 260 | }; |
253 | 261 | ||
262 | enum { | ||
263 | MLX4_FLAG_PORT_REMAP = MLX4_BMME_FLAG_PORT_REMAP | ||
264 | }; | ||
265 | |||
254 | enum mlx4_event { | 266 | enum mlx4_event { |
255 | MLX4_EVENT_TYPE_COMP = 0x00, | 267 | MLX4_EVENT_TYPE_COMP = 0x00, |
256 | MLX4_EVENT_TYPE_PATH_MIG = 0x01, | 268 | MLX4_EVENT_TYPE_PATH_MIG = 0x01, |
@@ -276,6 +288,7 @@ enum mlx4_event { | |||
276 | MLX4_EVENT_TYPE_FATAL_WARNING = 0x1b, | 288 | MLX4_EVENT_TYPE_FATAL_WARNING = 0x1b, |
277 | MLX4_EVENT_TYPE_FLR_EVENT = 0x1c, | 289 | MLX4_EVENT_TYPE_FLR_EVENT = 0x1c, |
278 | MLX4_EVENT_TYPE_PORT_MNG_CHG_EVENT = 0x1d, | 290 | MLX4_EVENT_TYPE_PORT_MNG_CHG_EVENT = 0x1d, |
291 | MLX4_EVENT_TYPE_RECOVERABLE_ERROR_EVENT = 0x3e, | ||
279 | MLX4_EVENT_TYPE_NONE = 0xff, | 292 | MLX4_EVENT_TYPE_NONE = 0xff, |
280 | }; | 293 | }; |
281 | 294 | ||
@@ -285,6 +298,11 @@ enum { | |||
285 | }; | 298 | }; |
286 | 299 | ||
287 | enum { | 300 | enum { |
301 | MLX4_RECOVERABLE_ERROR_EVENT_SUBTYPE_BAD_CABLE = 1, | ||
302 | MLX4_RECOVERABLE_ERROR_EVENT_SUBTYPE_UNSUPPORTED_CABLE = 2, | ||
303 | }; | ||
304 | |||
305 | enum { | ||
288 | MLX4_FATAL_WARNING_SUBTYPE_WARMING = 0, | 306 | MLX4_FATAL_WARNING_SUBTYPE_WARMING = 0, |
289 | }; | 307 | }; |
290 | 308 | ||
@@ -411,6 +429,16 @@ enum { | |||
411 | MLX4_EQ_PORT_INFO_MSTR_SM_SL_CHANGE_MASK = 1 << 4, | 429 | MLX4_EQ_PORT_INFO_MSTR_SM_SL_CHANGE_MASK = 1 << 4, |
412 | }; | 430 | }; |
413 | 431 | ||
432 | enum { | ||
433 | MLX4_DEVICE_STATE_UP = 1 << 0, | ||
434 | MLX4_DEVICE_STATE_INTERNAL_ERROR = 1 << 1, | ||
435 | }; | ||
436 | |||
437 | enum { | ||
438 | MLX4_INTERFACE_STATE_UP = 1 << 0, | ||
439 | MLX4_INTERFACE_STATE_DELETION = 1 << 1, | ||
440 | }; | ||
441 | |||
414 | #define MSTR_SM_CHANGE_MASK (MLX4_EQ_PORT_INFO_MSTR_SM_SL_CHANGE_MASK | \ | 442 | #define MSTR_SM_CHANGE_MASK (MLX4_EQ_PORT_INFO_MSTR_SM_SL_CHANGE_MASK | \ |
415 | MLX4_EQ_PORT_INFO_MSTR_SM_LID_CHANGE_MASK) | 443 | MLX4_EQ_PORT_INFO_MSTR_SM_LID_CHANGE_MASK) |
416 | 444 | ||
@@ -535,6 +563,7 @@ struct mlx4_caps { | |||
535 | u8 alloc_res_qp_mask; | 563 | u8 alloc_res_qp_mask; |
536 | u32 dmfs_high_rate_qpn_base; | 564 | u32 dmfs_high_rate_qpn_base; |
537 | u32 dmfs_high_rate_qpn_range; | 565 | u32 dmfs_high_rate_qpn_range; |
566 | u32 vf_caps; | ||
538 | }; | 567 | }; |
539 | 568 | ||
540 | struct mlx4_buf_list { | 569 | struct mlx4_buf_list { |
@@ -660,6 +689,8 @@ struct mlx4_cq { | |||
660 | void (*comp)(struct mlx4_cq *); | 689 | void (*comp)(struct mlx4_cq *); |
661 | void *priv; | 690 | void *priv; |
662 | } tasklet_ctx; | 691 | } tasklet_ctx; |
692 | int reset_notify_added; | ||
693 | struct list_head reset_notify; | ||
663 | }; | 694 | }; |
664 | 695 | ||
665 | struct mlx4_qp { | 696 | struct mlx4_qp { |
@@ -744,8 +775,23 @@ struct mlx4_vf_dev { | |||
744 | u8 n_ports; | 775 | u8 n_ports; |
745 | }; | 776 | }; |
746 | 777 | ||
747 | struct mlx4_dev { | 778 | struct mlx4_dev_persistent { |
748 | struct pci_dev *pdev; | 779 | struct pci_dev *pdev; |
780 | struct mlx4_dev *dev; | ||
781 | int nvfs[MLX4_MAX_PORTS + 1]; | ||
782 | int num_vfs; | ||
783 | enum mlx4_port_type curr_port_type[MLX4_MAX_PORTS + 1]; | ||
784 | enum mlx4_port_type curr_port_poss_type[MLX4_MAX_PORTS + 1]; | ||
785 | struct work_struct catas_work; | ||
786 | struct workqueue_struct *catas_wq; | ||
787 | struct mutex device_state_mutex; /* protect HW state */ | ||
788 | u8 state; | ||
789 | struct mutex interface_state_mutex; /* protect SW state */ | ||
790 | u8 interface_state; | ||
791 | }; | ||
792 | |||
793 | struct mlx4_dev { | ||
794 | struct mlx4_dev_persistent *persist; | ||
749 | unsigned long flags; | 795 | unsigned long flags; |
750 | unsigned long num_slaves; | 796 | unsigned long num_slaves; |
751 | struct mlx4_caps caps; | 797 | struct mlx4_caps caps; |
@@ -754,13 +800,11 @@ struct mlx4_dev { | |||
754 | struct radix_tree_root qp_table_tree; | 800 | struct radix_tree_root qp_table_tree; |
755 | u8 rev_id; | 801 | u8 rev_id; |
756 | char board_id[MLX4_BOARD_ID_LEN]; | 802 | char board_id[MLX4_BOARD_ID_LEN]; |
757 | int num_vfs; | ||
758 | int numa_node; | 803 | int numa_node; |
759 | int oper_log_mgm_entry_size; | 804 | int oper_log_mgm_entry_size; |
760 | u64 regid_promisc_array[MLX4_MAX_PORTS + 1]; | 805 | u64 regid_promisc_array[MLX4_MAX_PORTS + 1]; |
761 | u64 regid_allmulti_array[MLX4_MAX_PORTS + 1]; | 806 | u64 regid_allmulti_array[MLX4_MAX_PORTS + 1]; |
762 | struct mlx4_vf_dev *dev_vfs; | 807 | struct mlx4_vf_dev *dev_vfs; |
763 | int nvfs[MLX4_MAX_PORTS + 1]; | ||
764 | }; | 808 | }; |
765 | 809 | ||
766 | struct mlx4_eqe { | 810 | struct mlx4_eqe { |
@@ -832,6 +876,11 @@ struct mlx4_eqe { | |||
832 | } __packed tbl_change_info; | 876 | } __packed tbl_change_info; |
833 | } params; | 877 | } params; |
834 | } __packed port_mgmt_change; | 878 | } __packed port_mgmt_change; |
879 | struct { | ||
880 | u8 reserved[3]; | ||
881 | u8 port; | ||
882 | u32 reserved1[5]; | ||
883 | } __packed bad_cable; | ||
835 | } event; | 884 | } event; |
836 | u8 slave_id; | 885 | u8 slave_id; |
837 | u8 reserved3[2]; | 886 | u8 reserved3[2]; |
@@ -1338,6 +1387,8 @@ int mlx4_phys_to_slave_port(struct mlx4_dev *dev, int slave, int port); | |||
1338 | int mlx4_get_base_gid_ix(struct mlx4_dev *dev, int slave, int port); | 1387 | int mlx4_get_base_gid_ix(struct mlx4_dev *dev, int slave, int port); |
1339 | 1388 | ||
1340 | int mlx4_config_vxlan_port(struct mlx4_dev *dev, __be16 udp_port); | 1389 | int mlx4_config_vxlan_port(struct mlx4_dev *dev, __be16 udp_port); |
1390 | int mlx4_disable_rx_port_check(struct mlx4_dev *dev, bool dis); | ||
1391 | int mlx4_virt2phy_port_map(struct mlx4_dev *dev, u32 port1, u32 port2); | ||
1341 | int mlx4_vf_smi_enabled(struct mlx4_dev *dev, int slave, int port); | 1392 | int mlx4_vf_smi_enabled(struct mlx4_dev *dev, int slave, int port); |
1342 | int mlx4_vf_get_enable_smi_admin(struct mlx4_dev *dev, int slave, int port); | 1393 | int mlx4_vf_get_enable_smi_admin(struct mlx4_dev *dev, int slave, int port); |
1343 | int mlx4_vf_set_enable_smi_admin(struct mlx4_dev *dev, int slave, int port, | 1394 | int mlx4_vf_set_enable_smi_admin(struct mlx4_dev *dev, int slave, int port, |
diff --git a/include/linux/mlx4/driver.h b/include/linux/mlx4/driver.h index 022055c8fb26..9553a73d2049 100644 --- a/include/linux/mlx4/driver.h +++ b/include/linux/mlx4/driver.h | |||
@@ -49,6 +49,10 @@ enum mlx4_dev_event { | |||
49 | MLX4_DEV_EVENT_SLAVE_SHUTDOWN, | 49 | MLX4_DEV_EVENT_SLAVE_SHUTDOWN, |
50 | }; | 50 | }; |
51 | 51 | ||
52 | enum { | ||
53 | MLX4_INTFF_BONDING = 1 << 0 | ||
54 | }; | ||
55 | |||
52 | struct mlx4_interface { | 56 | struct mlx4_interface { |
53 | void * (*add) (struct mlx4_dev *dev); | 57 | void * (*add) (struct mlx4_dev *dev); |
54 | void (*remove)(struct mlx4_dev *dev, void *context); | 58 | void (*remove)(struct mlx4_dev *dev, void *context); |
@@ -57,11 +61,26 @@ struct mlx4_interface { | |||
57 | void * (*get_dev)(struct mlx4_dev *dev, void *context, u8 port); | 61 | void * (*get_dev)(struct mlx4_dev *dev, void *context, u8 port); |
58 | struct list_head list; | 62 | struct list_head list; |
59 | enum mlx4_protocol protocol; | 63 | enum mlx4_protocol protocol; |
64 | int flags; | ||
60 | }; | 65 | }; |
61 | 66 | ||
62 | int mlx4_register_interface(struct mlx4_interface *intf); | 67 | int mlx4_register_interface(struct mlx4_interface *intf); |
63 | void mlx4_unregister_interface(struct mlx4_interface *intf); | 68 | void mlx4_unregister_interface(struct mlx4_interface *intf); |
64 | 69 | ||
70 | int mlx4_bond(struct mlx4_dev *dev); | ||
71 | int mlx4_unbond(struct mlx4_dev *dev); | ||
72 | static inline int mlx4_is_bonded(struct mlx4_dev *dev) | ||
73 | { | ||
74 | return !!(dev->flags & MLX4_FLAG_BONDED); | ||
75 | } | ||
76 | |||
77 | struct mlx4_port_map { | ||
78 | u8 port1; | ||
79 | u8 port2; | ||
80 | }; | ||
81 | |||
82 | int mlx4_port_map_set(struct mlx4_dev *dev, struct mlx4_port_map *v2p); | ||
83 | |||
65 | void *mlx4_get_protocol_dev(struct mlx4_dev *dev, enum mlx4_protocol proto, int port); | 84 | void *mlx4_get_protocol_dev(struct mlx4_dev *dev, enum mlx4_protocol proto, int port); |
66 | 85 | ||
67 | static inline u64 mlx4_mac_to_u64(u8 *addr) | 86 | static inline u64 mlx4_mac_to_u64(u8 *addr) |
diff --git a/include/linux/mlx4/qp.h b/include/linux/mlx4/qp.h index 467ccdf94c98..2bbc62aa818a 100644 --- a/include/linux/mlx4/qp.h +++ b/include/linux/mlx4/qp.h | |||
@@ -96,6 +96,7 @@ enum { | |||
96 | MLX4_QP_BIT_RRE = 1 << 15, | 96 | MLX4_QP_BIT_RRE = 1 << 15, |
97 | MLX4_QP_BIT_RWE = 1 << 14, | 97 | MLX4_QP_BIT_RWE = 1 << 14, |
98 | MLX4_QP_BIT_RAE = 1 << 13, | 98 | MLX4_QP_BIT_RAE = 1 << 13, |
99 | MLX4_QP_BIT_FPP = 1 << 3, | ||
99 | MLX4_QP_BIT_RIC = 1 << 4, | 100 | MLX4_QP_BIT_RIC = 1 << 4, |
100 | }; | 101 | }; |
101 | 102 | ||
diff --git a/include/linux/mm.h b/include/linux/mm.h index dd5ea3016fc4..47a93928b90f 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -138,7 +138,6 @@ extern unsigned int kobjsize(const void *objp); | |||
138 | #define VM_ACCOUNT 0x00100000 /* Is a VM accounted object */ | 138 | #define VM_ACCOUNT 0x00100000 /* Is a VM accounted object */ |
139 | #define VM_NORESERVE 0x00200000 /* should the VM suppress accounting */ | 139 | #define VM_NORESERVE 0x00200000 /* should the VM suppress accounting */ |
140 | #define VM_HUGETLB 0x00400000 /* Huge TLB Page VM */ | 140 | #define VM_HUGETLB 0x00400000 /* Huge TLB Page VM */ |
141 | #define VM_NONLINEAR 0x00800000 /* Is non-linear (remap_file_pages) */ | ||
142 | #define VM_ARCH_1 0x01000000 /* Architecture-specific flag */ | 141 | #define VM_ARCH_1 0x01000000 /* Architecture-specific flag */ |
143 | #define VM_ARCH_2 0x02000000 | 142 | #define VM_ARCH_2 0x02000000 |
144 | #define VM_DONTDUMP 0x04000000 /* Do not include in the core dump */ | 143 | #define VM_DONTDUMP 0x04000000 /* Do not include in the core dump */ |
@@ -206,27 +205,26 @@ extern unsigned int kobjsize(const void *objp); | |||
206 | extern pgprot_t protection_map[16]; | 205 | extern pgprot_t protection_map[16]; |
207 | 206 | ||
208 | #define FAULT_FLAG_WRITE 0x01 /* Fault was a write access */ | 207 | #define FAULT_FLAG_WRITE 0x01 /* Fault was a write access */ |
209 | #define FAULT_FLAG_NONLINEAR 0x02 /* Fault was via a nonlinear mapping */ | 208 | #define FAULT_FLAG_MKWRITE 0x02 /* Fault was mkwrite of existing pte */ |
210 | #define FAULT_FLAG_MKWRITE 0x04 /* Fault was mkwrite of existing pte */ | 209 | #define FAULT_FLAG_ALLOW_RETRY 0x04 /* Retry fault if blocking */ |
211 | #define FAULT_FLAG_ALLOW_RETRY 0x08 /* Retry fault if blocking */ | 210 | #define FAULT_FLAG_RETRY_NOWAIT 0x08 /* Don't drop mmap_sem and wait when retrying */ |
212 | #define FAULT_FLAG_RETRY_NOWAIT 0x10 /* Don't drop mmap_sem and wait when retrying */ | 211 | #define FAULT_FLAG_KILLABLE 0x10 /* The fault task is in SIGKILL killable region */ |
213 | #define FAULT_FLAG_KILLABLE 0x20 /* The fault task is in SIGKILL killable region */ | 212 | #define FAULT_FLAG_TRIED 0x20 /* Second try */ |
214 | #define FAULT_FLAG_TRIED 0x40 /* second try */ | 213 | #define FAULT_FLAG_USER 0x40 /* The fault originated in userspace */ |
215 | #define FAULT_FLAG_USER 0x80 /* The fault originated in userspace */ | ||
216 | 214 | ||
217 | /* | 215 | /* |
218 | * vm_fault is filled by the the pagefault handler and passed to the vma's | 216 | * vm_fault is filled by the the pagefault handler and passed to the vma's |
219 | * ->fault function. The vma's ->fault is responsible for returning a bitmask | 217 | * ->fault function. The vma's ->fault is responsible for returning a bitmask |
220 | * of VM_FAULT_xxx flags that give details about how the fault was handled. | 218 | * of VM_FAULT_xxx flags that give details about how the fault was handled. |
221 | * | 219 | * |
222 | * pgoff should be used in favour of virtual_address, if possible. If pgoff | 220 | * pgoff should be used in favour of virtual_address, if possible. |
223 | * is used, one may implement ->remap_pages to get nonlinear mapping support. | ||
224 | */ | 221 | */ |
225 | struct vm_fault { | 222 | struct vm_fault { |
226 | unsigned int flags; /* FAULT_FLAG_xxx flags */ | 223 | unsigned int flags; /* FAULT_FLAG_xxx flags */ |
227 | pgoff_t pgoff; /* Logical page offset based on vma */ | 224 | pgoff_t pgoff; /* Logical page offset based on vma */ |
228 | void __user *virtual_address; /* Faulting virtual address */ | 225 | void __user *virtual_address; /* Faulting virtual address */ |
229 | 226 | ||
227 | struct page *cow_page; /* Handler may choose to COW */ | ||
230 | struct page *page; /* ->fault handlers should return a | 228 | struct page *page; /* ->fault handlers should return a |
231 | * page here, unless VM_FAULT_NOPAGE | 229 | * page here, unless VM_FAULT_NOPAGE |
232 | * is set (which is also implied by | 230 | * is set (which is also implied by |
@@ -287,9 +285,13 @@ struct vm_operations_struct { | |||
287 | struct mempolicy *(*get_policy)(struct vm_area_struct *vma, | 285 | struct mempolicy *(*get_policy)(struct vm_area_struct *vma, |
288 | unsigned long addr); | 286 | unsigned long addr); |
289 | #endif | 287 | #endif |
290 | /* called by sys_remap_file_pages() to populate non-linear mapping */ | 288 | /* |
291 | int (*remap_pages)(struct vm_area_struct *vma, unsigned long addr, | 289 | * Called by vm_normal_page() for special PTEs to find the |
292 | unsigned long size, pgoff_t pgoff); | 290 | * page for @addr. This is useful if the default behavior |
291 | * (using pte_page()) would not find the correct page. | ||
292 | */ | ||
293 | struct page *(*find_special_page)(struct vm_area_struct *vma, | ||
294 | unsigned long addr); | ||
293 | }; | 295 | }; |
294 | 296 | ||
295 | struct mmu_gather; | 297 | struct mmu_gather; |
@@ -446,6 +448,12 @@ static inline struct page *compound_head_by_tail(struct page *tail) | |||
446 | return tail; | 448 | return tail; |
447 | } | 449 | } |
448 | 450 | ||
451 | /* | ||
452 | * Since either compound page could be dismantled asynchronously in THP | ||
453 | * or we access asynchronously arbitrary positioned struct page, there | ||
454 | * would be tail flag race. To handle this race, we should call | ||
455 | * smp_rmb() before checking tail flag. compound_head_by_tail() did it. | ||
456 | */ | ||
449 | static inline struct page *compound_head(struct page *page) | 457 | static inline struct page *compound_head(struct page *page) |
450 | { | 458 | { |
451 | if (unlikely(PageTail(page))) | 459 | if (unlikely(PageTail(page))) |
@@ -454,6 +462,18 @@ static inline struct page *compound_head(struct page *page) | |||
454 | } | 462 | } |
455 | 463 | ||
456 | /* | 464 | /* |
465 | * If we access compound page synchronously such as access to | ||
466 | * allocated page, there is no need to handle tail flag race, so we can | ||
467 | * check tail flag directly without any synchronization primitive. | ||
468 | */ | ||
469 | static inline struct page *compound_head_fast(struct page *page) | ||
470 | { | ||
471 | if (unlikely(PageTail(page))) | ||
472 | return page->first_page; | ||
473 | return page; | ||
474 | } | ||
475 | |||
476 | /* | ||
457 | * The atomic page->_mapcount, starts from -1: so that transitions | 477 | * The atomic page->_mapcount, starts from -1: so that transitions |
458 | * both from it and to it can be tracked, using atomic_inc_and_test | 478 | * both from it and to it can be tracked, using atomic_inc_and_test |
459 | * and atomic_add_negative(-1). | 479 | * and atomic_add_negative(-1). |
@@ -465,7 +485,8 @@ static inline void page_mapcount_reset(struct page *page) | |||
465 | 485 | ||
466 | static inline int page_mapcount(struct page *page) | 486 | static inline int page_mapcount(struct page *page) |
467 | { | 487 | { |
468 | return atomic_read(&(page)->_mapcount) + 1; | 488 | VM_BUG_ON_PAGE(PageSlab(page), page); |
489 | return atomic_read(&page->_mapcount) + 1; | ||
469 | } | 490 | } |
470 | 491 | ||
471 | static inline int page_count(struct page *page) | 492 | static inline int page_count(struct page *page) |
@@ -531,7 +552,14 @@ static inline void get_page(struct page *page) | |||
531 | static inline struct page *virt_to_head_page(const void *x) | 552 | static inline struct page *virt_to_head_page(const void *x) |
532 | { | 553 | { |
533 | struct page *page = virt_to_page(x); | 554 | struct page *page = virt_to_page(x); |
534 | return compound_head(page); | 555 | |
556 | /* | ||
557 | * We don't need to worry about synchronization of tail flag | ||
558 | * when we call virt_to_head_page() since it is only called for | ||
559 | * already allocated page and this page won't be freed until | ||
560 | * this virt_to_head_page() is finished. So use _fast variant. | ||
561 | */ | ||
562 | return compound_head_fast(page); | ||
535 | } | 563 | } |
536 | 564 | ||
537 | /* | 565 | /* |
@@ -601,29 +629,28 @@ int split_free_page(struct page *page); | |||
601 | * prototype for that function and accessor functions. | 629 | * prototype for that function and accessor functions. |
602 | * These are _only_ valid on the head of a PG_compound page. | 630 | * These are _only_ valid on the head of a PG_compound page. |
603 | */ | 631 | */ |
604 | typedef void compound_page_dtor(struct page *); | ||
605 | 632 | ||
606 | static inline void set_compound_page_dtor(struct page *page, | 633 | static inline void set_compound_page_dtor(struct page *page, |
607 | compound_page_dtor *dtor) | 634 | compound_page_dtor *dtor) |
608 | { | 635 | { |
609 | page[1].lru.next = (void *)dtor; | 636 | page[1].compound_dtor = dtor; |
610 | } | 637 | } |
611 | 638 | ||
612 | static inline compound_page_dtor *get_compound_page_dtor(struct page *page) | 639 | static inline compound_page_dtor *get_compound_page_dtor(struct page *page) |
613 | { | 640 | { |
614 | return (compound_page_dtor *)page[1].lru.next; | 641 | return page[1].compound_dtor; |
615 | } | 642 | } |
616 | 643 | ||
617 | static inline int compound_order(struct page *page) | 644 | static inline int compound_order(struct page *page) |
618 | { | 645 | { |
619 | if (!PageHead(page)) | 646 | if (!PageHead(page)) |
620 | return 0; | 647 | return 0; |
621 | return (unsigned long)page[1].lru.prev; | 648 | return page[1].compound_order; |
622 | } | 649 | } |
623 | 650 | ||
624 | static inline void set_compound_order(struct page *page, unsigned long order) | 651 | static inline void set_compound_order(struct page *page, unsigned long order) |
625 | { | 652 | { |
626 | page[1].lru.prev = (void *)order; | 653 | page[1].compound_order = order; |
627 | } | 654 | } |
628 | 655 | ||
629 | #ifdef CONFIG_MMU | 656 | #ifdef CONFIG_MMU |
@@ -1121,7 +1148,6 @@ extern void user_shm_unlock(size_t, struct user_struct *); | |||
1121 | * Parameter block passed down to zap_pte_range in exceptional cases. | 1148 | * Parameter block passed down to zap_pte_range in exceptional cases. |
1122 | */ | 1149 | */ |
1123 | struct zap_details { | 1150 | struct zap_details { |
1124 | struct vm_area_struct *nonlinear_vma; /* Check page->index if set */ | ||
1125 | struct address_space *check_mapping; /* Check page->mapping if set */ | 1151 | struct address_space *check_mapping; /* Check page->mapping if set */ |
1126 | pgoff_t first_index; /* Lowest page->index to unmap */ | 1152 | pgoff_t first_index; /* Lowest page->index to unmap */ |
1127 | pgoff_t last_index; /* Highest page->index to unmap */ | 1153 | pgoff_t last_index; /* Highest page->index to unmap */ |
@@ -1139,8 +1165,6 @@ void unmap_vmas(struct mmu_gather *tlb, struct vm_area_struct *start_vma, | |||
1139 | 1165 | ||
1140 | /** | 1166 | /** |
1141 | * mm_walk - callbacks for walk_page_range | 1167 | * mm_walk - callbacks for walk_page_range |
1142 | * @pgd_entry: if set, called for each non-empty PGD (top-level) entry | ||
1143 | * @pud_entry: if set, called for each non-empty PUD (2nd-level) entry | ||
1144 | * @pmd_entry: if set, called for each non-empty PMD (3rd-level) entry | 1168 | * @pmd_entry: if set, called for each non-empty PMD (3rd-level) entry |
1145 | * this handler is required to be able to handle | 1169 | * this handler is required to be able to handle |
1146 | * pmd_trans_huge() pmds. They may simply choose to | 1170 | * pmd_trans_huge() pmds. They may simply choose to |
@@ -1148,16 +1172,18 @@ void unmap_vmas(struct mmu_gather *tlb, struct vm_area_struct *start_vma, | |||
1148 | * @pte_entry: if set, called for each non-empty PTE (4th-level) entry | 1172 | * @pte_entry: if set, called for each non-empty PTE (4th-level) entry |
1149 | * @pte_hole: if set, called for each hole at all levels | 1173 | * @pte_hole: if set, called for each hole at all levels |
1150 | * @hugetlb_entry: if set, called for each hugetlb entry | 1174 | * @hugetlb_entry: if set, called for each hugetlb entry |
1151 | * *Caution*: The caller must hold mmap_sem() if @hugetlb_entry | 1175 | * @test_walk: caller specific callback function to determine whether |
1152 | * is used. | 1176 | * we walk over the current vma or not. A positive returned |
1177 | * value means "do page table walk over the current vma," | ||
1178 | * and a negative one means "abort current page table walk | ||
1179 | * right now." 0 means "skip the current vma." | ||
1180 | * @mm: mm_struct representing the target process of page table walk | ||
1181 | * @vma: vma currently walked (NULL if walking outside vmas) | ||
1182 | * @private: private data for callbacks' usage | ||
1153 | * | 1183 | * |
1154 | * (see walk_page_range for more details) | 1184 | * (see the comment on walk_page_range() for more details) |
1155 | */ | 1185 | */ |
1156 | struct mm_walk { | 1186 | struct mm_walk { |
1157 | int (*pgd_entry)(pgd_t *pgd, unsigned long addr, | ||
1158 | unsigned long next, struct mm_walk *walk); | ||
1159 | int (*pud_entry)(pud_t *pud, unsigned long addr, | ||
1160 | unsigned long next, struct mm_walk *walk); | ||
1161 | int (*pmd_entry)(pmd_t *pmd, unsigned long addr, | 1187 | int (*pmd_entry)(pmd_t *pmd, unsigned long addr, |
1162 | unsigned long next, struct mm_walk *walk); | 1188 | unsigned long next, struct mm_walk *walk); |
1163 | int (*pte_entry)(pte_t *pte, unsigned long addr, | 1189 | int (*pte_entry)(pte_t *pte, unsigned long addr, |
@@ -1167,12 +1193,16 @@ struct mm_walk { | |||
1167 | int (*hugetlb_entry)(pte_t *pte, unsigned long hmask, | 1193 | int (*hugetlb_entry)(pte_t *pte, unsigned long hmask, |
1168 | unsigned long addr, unsigned long next, | 1194 | unsigned long addr, unsigned long next, |
1169 | struct mm_walk *walk); | 1195 | struct mm_walk *walk); |
1196 | int (*test_walk)(unsigned long addr, unsigned long next, | ||
1197 | struct mm_walk *walk); | ||
1170 | struct mm_struct *mm; | 1198 | struct mm_struct *mm; |
1199 | struct vm_area_struct *vma; | ||
1171 | void *private; | 1200 | void *private; |
1172 | }; | 1201 | }; |
1173 | 1202 | ||
1174 | int walk_page_range(unsigned long addr, unsigned long end, | 1203 | int walk_page_range(unsigned long addr, unsigned long end, |
1175 | struct mm_walk *walk); | 1204 | struct mm_walk *walk); |
1205 | int walk_page_vma(struct vm_area_struct *vma, struct mm_walk *walk); | ||
1176 | void free_pgd_range(struct mmu_gather *tlb, unsigned long addr, | 1206 | void free_pgd_range(struct mmu_gather *tlb, unsigned long addr, |
1177 | unsigned long end, unsigned long floor, unsigned long ceiling); | 1207 | unsigned long end, unsigned long floor, unsigned long ceiling); |
1178 | int copy_page_range(struct mm_struct *dst, struct mm_struct *src, | 1208 | int copy_page_range(struct mm_struct *dst, struct mm_struct *src, |
@@ -1236,6 +1266,17 @@ long get_user_pages(struct task_struct *tsk, struct mm_struct *mm, | |||
1236 | unsigned long start, unsigned long nr_pages, | 1266 | unsigned long start, unsigned long nr_pages, |
1237 | int write, int force, struct page **pages, | 1267 | int write, int force, struct page **pages, |
1238 | struct vm_area_struct **vmas); | 1268 | struct vm_area_struct **vmas); |
1269 | long get_user_pages_locked(struct task_struct *tsk, struct mm_struct *mm, | ||
1270 | unsigned long start, unsigned long nr_pages, | ||
1271 | int write, int force, struct page **pages, | ||
1272 | int *locked); | ||
1273 | long __get_user_pages_unlocked(struct task_struct *tsk, struct mm_struct *mm, | ||
1274 | unsigned long start, unsigned long nr_pages, | ||
1275 | int write, int force, struct page **pages, | ||
1276 | unsigned int gup_flags); | ||
1277 | long get_user_pages_unlocked(struct task_struct *tsk, struct mm_struct *mm, | ||
1278 | unsigned long start, unsigned long nr_pages, | ||
1279 | int write, int force, struct page **pages); | ||
1239 | int get_user_pages_fast(unsigned long start, int nr_pages, int write, | 1280 | int get_user_pages_fast(unsigned long start, int nr_pages, int write, |
1240 | struct page **pages); | 1281 | struct page **pages); |
1241 | struct kvec; | 1282 | struct kvec; |
@@ -1368,6 +1409,11 @@ static inline void update_hiwater_vm(struct mm_struct *mm) | |||
1368 | mm->hiwater_vm = mm->total_vm; | 1409 | mm->hiwater_vm = mm->total_vm; |
1369 | } | 1410 | } |
1370 | 1411 | ||
1412 | static inline void reset_mm_hiwater_rss(struct mm_struct *mm) | ||
1413 | { | ||
1414 | mm->hiwater_rss = get_mm_rss(mm); | ||
1415 | } | ||
1416 | |||
1371 | static inline void setmax_mm_hiwater_rss(unsigned long *maxrss, | 1417 | static inline void setmax_mm_hiwater_rss(unsigned long *maxrss, |
1372 | struct mm_struct *mm) | 1418 | struct mm_struct *mm) |
1373 | { | 1419 | { |
@@ -1407,14 +1453,45 @@ static inline int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, | |||
1407 | int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address); | 1453 | int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address); |
1408 | #endif | 1454 | #endif |
1409 | 1455 | ||
1410 | #ifdef __PAGETABLE_PMD_FOLDED | 1456 | #if defined(__PAGETABLE_PMD_FOLDED) || !defined(CONFIG_MMU) |
1411 | static inline int __pmd_alloc(struct mm_struct *mm, pud_t *pud, | 1457 | static inline int __pmd_alloc(struct mm_struct *mm, pud_t *pud, |
1412 | unsigned long address) | 1458 | unsigned long address) |
1413 | { | 1459 | { |
1414 | return 0; | 1460 | return 0; |
1415 | } | 1461 | } |
1462 | |||
1463 | static inline void mm_nr_pmds_init(struct mm_struct *mm) {} | ||
1464 | |||
1465 | static inline unsigned long mm_nr_pmds(struct mm_struct *mm) | ||
1466 | { | ||
1467 | return 0; | ||
1468 | } | ||
1469 | |||
1470 | static inline void mm_inc_nr_pmds(struct mm_struct *mm) {} | ||
1471 | static inline void mm_dec_nr_pmds(struct mm_struct *mm) {} | ||
1472 | |||
1416 | #else | 1473 | #else |
1417 | int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address); | 1474 | int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address); |
1475 | |||
1476 | static inline void mm_nr_pmds_init(struct mm_struct *mm) | ||
1477 | { | ||
1478 | atomic_long_set(&mm->nr_pmds, 0); | ||
1479 | } | ||
1480 | |||
1481 | static inline unsigned long mm_nr_pmds(struct mm_struct *mm) | ||
1482 | { | ||
1483 | return atomic_long_read(&mm->nr_pmds); | ||
1484 | } | ||
1485 | |||
1486 | static inline void mm_inc_nr_pmds(struct mm_struct *mm) | ||
1487 | { | ||
1488 | atomic_long_inc(&mm->nr_pmds); | ||
1489 | } | ||
1490 | |||
1491 | static inline void mm_dec_nr_pmds(struct mm_struct *mm) | ||
1492 | { | ||
1493 | atomic_long_dec(&mm->nr_pmds); | ||
1494 | } | ||
1418 | #endif | 1495 | #endif |
1419 | 1496 | ||
1420 | int __pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma, | 1497 | int __pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma, |
@@ -1777,12 +1854,6 @@ struct vm_area_struct *vma_interval_tree_iter_next(struct vm_area_struct *node, | |||
1777 | for (vma = vma_interval_tree_iter_first(root, start, last); \ | 1854 | for (vma = vma_interval_tree_iter_first(root, start, last); \ |
1778 | vma; vma = vma_interval_tree_iter_next(vma, start, last)) | 1855 | vma; vma = vma_interval_tree_iter_next(vma, start, last)) |
1779 | 1856 | ||
1780 | static inline void vma_nonlinear_insert(struct vm_area_struct *vma, | ||
1781 | struct list_head *list) | ||
1782 | { | ||
1783 | list_add_tail(&vma->shared.nonlinear, list); | ||
1784 | } | ||
1785 | |||
1786 | void anon_vma_interval_tree_insert(struct anon_vma_chain *node, | 1857 | void anon_vma_interval_tree_insert(struct anon_vma_chain *node, |
1787 | struct rb_root *root); | 1858 | struct rb_root *root); |
1788 | void anon_vma_interval_tree_remove(struct anon_vma_chain *node, | 1859 | void anon_vma_interval_tree_remove(struct anon_vma_chain *node, |
@@ -2110,9 +2181,8 @@ int drop_caches_sysctl_handler(struct ctl_table *, int, | |||
2110 | void __user *, size_t *, loff_t *); | 2181 | void __user *, size_t *, loff_t *); |
2111 | #endif | 2182 | #endif |
2112 | 2183 | ||
2113 | unsigned long shrink_node_slabs(gfp_t gfp_mask, int nid, | 2184 | void drop_slab(void); |
2114 | unsigned long nr_scanned, | 2185 | void drop_slab_node(int nid); |
2115 | unsigned long nr_eligible); | ||
2116 | 2186 | ||
2117 | #ifndef CONFIG_MMU | 2187 | #ifndef CONFIG_MMU |
2118 | #define randomize_va_space 0 | 2188 | #define randomize_va_space 0 |
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 6d34aa266a8c..199a03aab8dc 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h | |||
@@ -28,6 +28,8 @@ struct mem_cgroup; | |||
28 | IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK)) | 28 | IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK)) |
29 | #define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8) | 29 | #define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8) |
30 | 30 | ||
31 | typedef void compound_page_dtor(struct page *); | ||
32 | |||
31 | /* | 33 | /* |
32 | * Each physical page in the system has a struct page associated with | 34 | * Each physical page in the system has a struct page associated with |
33 | * it to keep track of whatever it is we are using the page for at the | 35 | * it to keep track of whatever it is we are using the page for at the |
@@ -142,6 +144,12 @@ struct page { | |||
142 | struct rcu_head rcu_head; /* Used by SLAB | 144 | struct rcu_head rcu_head; /* Used by SLAB |
143 | * when destroying via RCU | 145 | * when destroying via RCU |
144 | */ | 146 | */ |
147 | /* First tail page of compound page */ | ||
148 | struct { | ||
149 | compound_page_dtor *compound_dtor; | ||
150 | unsigned long compound_order; | ||
151 | }; | ||
152 | |||
145 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS | 153 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS |
146 | pgtable_t pmd_huge_pte; /* protected by page->ptl */ | 154 | pgtable_t pmd_huge_pte; /* protected by page->ptl */ |
147 | #endif | 155 | #endif |
@@ -273,15 +281,11 @@ struct vm_area_struct { | |||
273 | 281 | ||
274 | /* | 282 | /* |
275 | * For areas with an address space and backing store, | 283 | * For areas with an address space and backing store, |
276 | * linkage into the address_space->i_mmap interval tree, or | 284 | * linkage into the address_space->i_mmap interval tree. |
277 | * linkage of vma in the address_space->i_mmap_nonlinear list. | ||
278 | */ | 285 | */ |
279 | union { | 286 | struct { |
280 | struct { | 287 | struct rb_node rb; |
281 | struct rb_node rb; | 288 | unsigned long rb_subtree_last; |
282 | unsigned long rb_subtree_last; | ||
283 | } linear; | ||
284 | struct list_head nonlinear; | ||
285 | } shared; | 289 | } shared; |
286 | 290 | ||
287 | /* | 291 | /* |
@@ -359,7 +363,8 @@ struct mm_struct { | |||
359 | pgd_t * pgd; | 363 | pgd_t * pgd; |
360 | atomic_t mm_users; /* How many users with user space? */ | 364 | atomic_t mm_users; /* How many users with user space? */ |
361 | atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */ | 365 | atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */ |
362 | atomic_long_t nr_ptes; /* Page table pages */ | 366 | atomic_long_t nr_ptes; /* PTE page table pages */ |
367 | atomic_long_t nr_pmds; /* PMD page table pages */ | ||
363 | int map_count; /* number of VMAs */ | 368 | int map_count; /* number of VMAs */ |
364 | 369 | ||
365 | spinlock_t page_table_lock; /* Protects page tables and some counters */ | 370 | spinlock_t page_table_lock; /* Protects page tables and some counters */ |
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h index 4d69c00497bd..a6cf4c063e4e 100644 --- a/include/linux/mmc/card.h +++ b/include/linux/mmc/card.h | |||
@@ -83,7 +83,7 @@ struct mmc_ext_csd { | |||
83 | bool hpi; /* HPI support bit */ | 83 | bool hpi; /* HPI support bit */ |
84 | unsigned int hpi_cmd; /* cmd used as HPI */ | 84 | unsigned int hpi_cmd; /* cmd used as HPI */ |
85 | bool bkops; /* background support bit */ | 85 | bool bkops; /* background support bit */ |
86 | bool bkops_en; /* background enable bit */ | 86 | bool man_bkops_en; /* manual bkops enable bit */ |
87 | unsigned int data_sector_size; /* 512 bytes or 4KB */ | 87 | unsigned int data_sector_size; /* 512 bytes or 4KB */ |
88 | unsigned int data_tag_unit_size; /* DATA TAG UNIT size */ | 88 | unsigned int data_tag_unit_size; /* DATA TAG UNIT size */ |
89 | unsigned int boot_ro_lock; /* ro lock support */ | 89 | unsigned int boot_ro_lock; /* ro lock support */ |
diff --git a/include/linux/mmc/core.h b/include/linux/mmc/core.h index cb2b0400d284..160448f920ac 100644 --- a/include/linux/mmc/core.h +++ b/include/linux/mmc/core.h | |||
@@ -182,7 +182,6 @@ extern int mmc_set_blocklen(struct mmc_card *card, unsigned int blocklen); | |||
182 | extern int mmc_set_blockcount(struct mmc_card *card, unsigned int blockcount, | 182 | extern int mmc_set_blockcount(struct mmc_card *card, unsigned int blockcount, |
183 | bool is_rel_write); | 183 | bool is_rel_write); |
184 | extern int mmc_hw_reset(struct mmc_host *host); | 184 | extern int mmc_hw_reset(struct mmc_host *host); |
185 | extern int mmc_hw_reset_check(struct mmc_host *host); | ||
186 | extern int mmc_can_reset(struct mmc_card *card); | 185 | extern int mmc_can_reset(struct mmc_card *card); |
187 | 186 | ||
188 | extern void mmc_set_data_timeout(struct mmc_data *, const struct mmc_card *); | 187 | extern void mmc_set_data_timeout(struct mmc_data *, const struct mmc_card *); |
diff --git a/include/linux/mmc/dw_mmc.h b/include/linux/mmc/dw_mmc.h index 42b724e8d503..471fb3116dbe 100644 --- a/include/linux/mmc/dw_mmc.h +++ b/include/linux/mmc/dw_mmc.h | |||
@@ -106,6 +106,11 @@ struct mmc_data; | |||
106 | * @cur_slot, @mrq and @state. These must always be updated | 106 | * @cur_slot, @mrq and @state. These must always be updated |
107 | * at the same time while holding @lock. | 107 | * at the same time while holding @lock. |
108 | * | 108 | * |
109 | * @irq_lock is an irq-safe spinlock protecting the INTMASK register | ||
110 | * to allow the interrupt handler to modify it directly. Held for only long | ||
111 | * enough to read-modify-write INTMASK and no other locks are grabbed when | ||
112 | * holding this one. | ||
113 | * | ||
109 | * The @mrq field of struct dw_mci_slot is also protected by @lock, | 114 | * The @mrq field of struct dw_mci_slot is also protected by @lock, |
110 | * and must always be written at the same time as the slot is added to | 115 | * and must always be written at the same time as the slot is added to |
111 | * @queue. | 116 | * @queue. |
@@ -125,6 +130,7 @@ struct mmc_data; | |||
125 | */ | 130 | */ |
126 | struct dw_mci { | 131 | struct dw_mci { |
127 | spinlock_t lock; | 132 | spinlock_t lock; |
133 | spinlock_t irq_lock; | ||
128 | void __iomem *regs; | 134 | void __iomem *regs; |
129 | 135 | ||
130 | struct scatterlist *sg; | 136 | struct scatterlist *sg; |
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 9f322706f7cb..0c8cbe5d1550 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h | |||
@@ -166,7 +166,6 @@ struct mmc_async_req { | |||
166 | * struct mmc_slot - MMC slot functions | 166 | * struct mmc_slot - MMC slot functions |
167 | * | 167 | * |
168 | * @cd_irq: MMC/SD-card slot hotplug detection IRQ or -EINVAL | 168 | * @cd_irq: MMC/SD-card slot hotplug detection IRQ or -EINVAL |
169 | * @lock: protect the @handler_priv pointer | ||
170 | * @handler_priv: MMC/SD-card slot context | 169 | * @handler_priv: MMC/SD-card slot context |
171 | * | 170 | * |
172 | * Some MMC/SD host controllers implement slot-functions like card and | 171 | * Some MMC/SD host controllers implement slot-functions like card and |
@@ -176,7 +175,6 @@ struct mmc_async_req { | |||
176 | */ | 175 | */ |
177 | struct mmc_slot { | 176 | struct mmc_slot { |
178 | int cd_irq; | 177 | int cd_irq; |
179 | struct mutex lock; | ||
180 | void *handler_priv; | 178 | void *handler_priv; |
181 | }; | 179 | }; |
182 | 180 | ||
@@ -197,6 +195,7 @@ struct mmc_context_info { | |||
197 | }; | 195 | }; |
198 | 196 | ||
199 | struct regulator; | 197 | struct regulator; |
198 | struct mmc_pwrseq; | ||
200 | 199 | ||
201 | struct mmc_supply { | 200 | struct mmc_supply { |
202 | struct regulator *vmmc; /* Card power supply */ | 201 | struct regulator *vmmc; /* Card power supply */ |
@@ -208,6 +207,7 @@ struct mmc_host { | |||
208 | struct device class_dev; | 207 | struct device class_dev; |
209 | int index; | 208 | int index; |
210 | const struct mmc_host_ops *ops; | 209 | const struct mmc_host_ops *ops; |
210 | struct mmc_pwrseq *pwrseq; | ||
211 | unsigned int f_min; | 211 | unsigned int f_min; |
212 | unsigned int f_max; | 212 | unsigned int f_max; |
213 | unsigned int f_init; | 213 | unsigned int f_init; |
diff --git a/include/linux/mmc/mmc.h b/include/linux/mmc/mmc.h index 49ad7a943638..124f562118b8 100644 --- a/include/linux/mmc/mmc.h +++ b/include/linux/mmc/mmc.h | |||
@@ -53,11 +53,6 @@ | |||
53 | #define MMC_SEND_TUNING_BLOCK 19 /* adtc R1 */ | 53 | #define MMC_SEND_TUNING_BLOCK 19 /* adtc R1 */ |
54 | #define MMC_SEND_TUNING_BLOCK_HS200 21 /* adtc R1 */ | 54 | #define MMC_SEND_TUNING_BLOCK_HS200 21 /* adtc R1 */ |
55 | 55 | ||
56 | #define MMC_TUNING_BLK_PATTERN_4BIT_SIZE 64 | ||
57 | #define MMC_TUNING_BLK_PATTERN_8BIT_SIZE 128 | ||
58 | extern const u8 tuning_blk_pattern_4bit[MMC_TUNING_BLK_PATTERN_4BIT_SIZE]; | ||
59 | extern const u8 tuning_blk_pattern_8bit[MMC_TUNING_BLK_PATTERN_8BIT_SIZE]; | ||
60 | |||
61 | /* class 3 */ | 56 | /* class 3 */ |
62 | #define MMC_WRITE_DAT_UNTIL_STOP 20 /* adtc [31:0] data addr R1 */ | 57 | #define MMC_WRITE_DAT_UNTIL_STOP 20 /* adtc [31:0] data addr R1 */ |
63 | 58 | ||
@@ -433,6 +428,11 @@ struct _mmc_csd { | |||
433 | #define EXT_CSD_BKOPS_LEVEL_2 0x2 | 428 | #define EXT_CSD_BKOPS_LEVEL_2 0x2 |
434 | 429 | ||
435 | /* | 430 | /* |
431 | * BKOPS modes | ||
432 | */ | ||
433 | #define EXT_CSD_MANUAL_BKOPS_MASK 0x01 | ||
434 | |||
435 | /* | ||
436 | * MMC_SWITCH access modes | 436 | * MMC_SWITCH access modes |
437 | */ | 437 | */ |
438 | 438 | ||
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h index f767a0de611f..c3e3db196738 100644 --- a/include/linux/mmc/sdhci.h +++ b/include/linux/mmc/sdhci.h | |||
@@ -17,6 +17,11 @@ | |||
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/mmc/host.h> | 18 | #include <linux/mmc/host.h> |
19 | 19 | ||
20 | struct sdhci_host_next { | ||
21 | unsigned int sg_count; | ||
22 | s32 cookie; | ||
23 | }; | ||
24 | |||
20 | struct sdhci_host { | 25 | struct sdhci_host { |
21 | /* Data set by hardware interface driver */ | 26 | /* Data set by hardware interface driver */ |
22 | const char *hw_name; /* Hardware bus name */ | 27 | const char *hw_name; /* Hardware bus name */ |
@@ -106,6 +111,10 @@ struct sdhci_host { | |||
106 | #define SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD (1<<10) | 111 | #define SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD (1<<10) |
107 | /* Capability register bit-63 indicates HS400 support */ | 112 | /* Capability register bit-63 indicates HS400 support */ |
108 | #define SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 (1<<11) | 113 | #define SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 (1<<11) |
114 | /* forced tuned clock */ | ||
115 | #define SDHCI_QUIRK2_TUNING_WORK_AROUND (1<<12) | ||
116 | /* disable the block count for single block transactions */ | ||
117 | #define SDHCI_QUIRK2_SUPPORT_SINGLE (1<<13) | ||
109 | 118 | ||
110 | int irq; /* Device IRQ */ | 119 | int irq; /* Device IRQ */ |
111 | void __iomem *ioaddr; /* Mapped address */ | 120 | void __iomem *ioaddr; /* Mapped address */ |
@@ -203,6 +212,7 @@ struct sdhci_host { | |||
203 | #define SDHCI_TUNING_MODE_1 0 | 212 | #define SDHCI_TUNING_MODE_1 0 |
204 | struct timer_list tuning_timer; /* Timer for tuning */ | 213 | struct timer_list tuning_timer; /* Timer for tuning */ |
205 | 214 | ||
215 | struct sdhci_host_next next_data; | ||
206 | unsigned long private[0] ____cacheline_aligned; | 216 | unsigned long private[0] ____cacheline_aligned; |
207 | }; | 217 | }; |
208 | #endif /* LINUX_MMC_SDHCI_H */ | 218 | #endif /* LINUX_MMC_SDHCI_H */ |
diff --git a/include/linux/mmc/sdio_ids.h b/include/linux/mmc/sdio_ids.h index 0f01fe065424..996807963716 100644 --- a/include/linux/mmc/sdio_ids.h +++ b/include/linux/mmc/sdio_ids.h | |||
@@ -24,13 +24,15 @@ | |||
24 | * Vendors and devices. Sort key: vendor first, device next. | 24 | * Vendors and devices. Sort key: vendor first, device next. |
25 | */ | 25 | */ |
26 | #define SDIO_VENDOR_ID_BROADCOM 0x02d0 | 26 | #define SDIO_VENDOR_ID_BROADCOM 0x02d0 |
27 | #define SDIO_DEVICE_ID_BROADCOM_43143 43143 | 27 | #define SDIO_DEVICE_ID_BROADCOM_43143 0xa887 |
28 | #define SDIO_DEVICE_ID_BROADCOM_43241 0x4324 | 28 | #define SDIO_DEVICE_ID_BROADCOM_43241 0x4324 |
29 | #define SDIO_DEVICE_ID_BROADCOM_4329 0x4329 | 29 | #define SDIO_DEVICE_ID_BROADCOM_4329 0x4329 |
30 | #define SDIO_DEVICE_ID_BROADCOM_4330 0x4330 | 30 | #define SDIO_DEVICE_ID_BROADCOM_4330 0x4330 |
31 | #define SDIO_DEVICE_ID_BROADCOM_4334 0x4334 | 31 | #define SDIO_DEVICE_ID_BROADCOM_4334 0x4334 |
32 | #define SDIO_DEVICE_ID_BROADCOM_43340 0xa94c | ||
33 | #define SDIO_DEVICE_ID_BROADCOM_43341 0xa94d | ||
32 | #define SDIO_DEVICE_ID_BROADCOM_4335_4339 0x4335 | 34 | #define SDIO_DEVICE_ID_BROADCOM_4335_4339 0x4335 |
33 | #define SDIO_DEVICE_ID_BROADCOM_43362 43362 | 35 | #define SDIO_DEVICE_ID_BROADCOM_43362 0xa962 |
34 | #define SDIO_DEVICE_ID_BROADCOM_4354 0x4354 | 36 | #define SDIO_DEVICE_ID_BROADCOM_4354 0x4354 |
35 | 37 | ||
36 | #define SDIO_VENDOR_ID_INTEL 0x0089 | 38 | #define SDIO_VENDOR_ID_INTEL 0x0089 |
diff --git a/include/linux/mmc/sh_mobile_sdhi.h b/include/linux/mmc/sh_mobile_sdhi.h index 68927ae50845..da77e5e2041d 100644 --- a/include/linux/mmc/sh_mobile_sdhi.h +++ b/include/linux/mmc/sh_mobile_sdhi.h | |||
@@ -3,20 +3,10 @@ | |||
3 | 3 | ||
4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
5 | 5 | ||
6 | struct platform_device; | ||
7 | |||
8 | #define SH_MOBILE_SDHI_IRQ_CARD_DETECT "card_detect" | 6 | #define SH_MOBILE_SDHI_IRQ_CARD_DETECT "card_detect" |
9 | #define SH_MOBILE_SDHI_IRQ_SDCARD "sdcard" | 7 | #define SH_MOBILE_SDHI_IRQ_SDCARD "sdcard" |
10 | #define SH_MOBILE_SDHI_IRQ_SDIO "sdio" | 8 | #define SH_MOBILE_SDHI_IRQ_SDIO "sdio" |
11 | 9 | ||
12 | /** | ||
13 | * struct sh_mobile_sdhi_ops - SDHI driver callbacks | ||
14 | * @cd_wakeup: trigger a card-detection run | ||
15 | */ | ||
16 | struct sh_mobile_sdhi_ops { | ||
17 | void (*cd_wakeup)(const struct platform_device *pdev); | ||
18 | }; | ||
19 | |||
20 | struct sh_mobile_sdhi_info { | 10 | struct sh_mobile_sdhi_info { |
21 | int dma_slave_tx; | 11 | int dma_slave_tx; |
22 | int dma_slave_rx; | 12 | int dma_slave_rx; |
@@ -25,11 +15,6 @@ struct sh_mobile_sdhi_info { | |||
25 | unsigned long tmio_caps2; | 15 | unsigned long tmio_caps2; |
26 | u32 tmio_ocr_mask; /* available MMC voltages */ | 16 | u32 tmio_ocr_mask; /* available MMC voltages */ |
27 | unsigned int cd_gpio; | 17 | unsigned int cd_gpio; |
28 | |||
29 | /* callbacks for board specific setup code */ | ||
30 | int (*init)(struct platform_device *pdev, | ||
31 | const struct sh_mobile_sdhi_ops *ops); | ||
32 | void (*cleanup)(struct platform_device *pdev); | ||
33 | }; | 18 | }; |
34 | 19 | ||
35 | #endif /* LINUX_MMC_SH_MOBILE_SDHI_H */ | 20 | #endif /* LINUX_MMC_SH_MOBILE_SDHI_H */ |
diff --git a/include/linux/mmc/slot-gpio.h b/include/linux/mmc/slot-gpio.h index e56fa24c9322..3945a8c9d3cb 100644 --- a/include/linux/mmc/slot-gpio.h +++ b/include/linux/mmc/slot-gpio.h | |||
@@ -15,12 +15,10 @@ struct mmc_host; | |||
15 | 15 | ||
16 | int mmc_gpio_get_ro(struct mmc_host *host); | 16 | int mmc_gpio_get_ro(struct mmc_host *host); |
17 | int mmc_gpio_request_ro(struct mmc_host *host, unsigned int gpio); | 17 | int mmc_gpio_request_ro(struct mmc_host *host, unsigned int gpio); |
18 | void mmc_gpio_free_ro(struct mmc_host *host); | ||
19 | 18 | ||
20 | int mmc_gpio_get_cd(struct mmc_host *host); | 19 | int mmc_gpio_get_cd(struct mmc_host *host); |
21 | int mmc_gpio_request_cd(struct mmc_host *host, unsigned int gpio, | 20 | int mmc_gpio_request_cd(struct mmc_host *host, unsigned int gpio, |
22 | unsigned int debounce); | 21 | unsigned int debounce); |
23 | void mmc_gpio_free_cd(struct mmc_host *host); | ||
24 | 22 | ||
25 | int mmc_gpiod_request_cd(struct mmc_host *host, const char *con_id, | 23 | int mmc_gpiod_request_cd(struct mmc_host *host, const char *con_id, |
26 | unsigned int idx, bool override_active_level, | 24 | unsigned int idx, bool override_active_level, |
@@ -28,7 +26,8 @@ int mmc_gpiod_request_cd(struct mmc_host *host, const char *con_id, | |||
28 | int mmc_gpiod_request_ro(struct mmc_host *host, const char *con_id, | 26 | int mmc_gpiod_request_ro(struct mmc_host *host, const char *con_id, |
29 | unsigned int idx, bool override_active_level, | 27 | unsigned int idx, bool override_active_level, |
30 | unsigned int debounce, bool *gpio_invert); | 28 | unsigned int debounce, bool *gpio_invert); |
31 | void mmc_gpiod_free_cd(struct mmc_host *host); | 29 | void mmc_gpio_set_cd_isr(struct mmc_host *host, |
30 | irqreturn_t (*isr)(int irq, void *dev_id)); | ||
32 | void mmc_gpiod_request_cd_irq(struct mmc_host *host); | 31 | void mmc_gpiod_request_cd_irq(struct mmc_host *host); |
33 | 32 | ||
34 | #endif | 33 | #endif |
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 2f0856d14b21..f279d9c158cd 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
@@ -426,7 +426,7 @@ struct zone { | |||
426 | const char *name; | 426 | const char *name; |
427 | 427 | ||
428 | /* | 428 | /* |
429 | * Number of MIGRATE_RESEVE page block. To maintain for just | 429 | * Number of MIGRATE_RESERVE page block. To maintain for just |
430 | * optimization. Protected by zone->lock. | 430 | * optimization. Protected by zone->lock. |
431 | */ | 431 | */ |
432 | int nr_migrate_reserve_block; | 432 | int nr_migrate_reserve_block; |
@@ -970,7 +970,6 @@ static inline int zonelist_node_idx(struct zoneref *zoneref) | |||
970 | * @z - The cursor used as a starting point for the search | 970 | * @z - The cursor used as a starting point for the search |
971 | * @highest_zoneidx - The zone index of the highest zone to return | 971 | * @highest_zoneidx - The zone index of the highest zone to return |
972 | * @nodes - An optional nodemask to filter the zonelist with | 972 | * @nodes - An optional nodemask to filter the zonelist with |
973 | * @zone - The first suitable zone found is returned via this parameter | ||
974 | * | 973 | * |
975 | * This function returns the next zone at or below a given zone index that is | 974 | * This function returns the next zone at or below a given zone index that is |
976 | * within the allowed nodemask using a cursor as the starting point for the | 975 | * within the allowed nodemask using a cursor as the starting point for the |
@@ -980,8 +979,7 @@ static inline int zonelist_node_idx(struct zoneref *zoneref) | |||
980 | */ | 979 | */ |
981 | struct zoneref *next_zones_zonelist(struct zoneref *z, | 980 | struct zoneref *next_zones_zonelist(struct zoneref *z, |
982 | enum zone_type highest_zoneidx, | 981 | enum zone_type highest_zoneidx, |
983 | nodemask_t *nodes, | 982 | nodemask_t *nodes); |
984 | struct zone **zone); | ||
985 | 983 | ||
986 | /** | 984 | /** |
987 | * first_zones_zonelist - Returns the first zone at or below highest_zoneidx within the allowed nodemask in a zonelist | 985 | * first_zones_zonelist - Returns the first zone at or below highest_zoneidx within the allowed nodemask in a zonelist |
@@ -1000,8 +998,10 @@ static inline struct zoneref *first_zones_zonelist(struct zonelist *zonelist, | |||
1000 | nodemask_t *nodes, | 998 | nodemask_t *nodes, |
1001 | struct zone **zone) | 999 | struct zone **zone) |
1002 | { | 1000 | { |
1003 | return next_zones_zonelist(zonelist->_zonerefs, highest_zoneidx, nodes, | 1001 | struct zoneref *z = next_zones_zonelist(zonelist->_zonerefs, |
1004 | zone); | 1002 | highest_zoneidx, nodes); |
1003 | *zone = zonelist_zone(z); | ||
1004 | return z; | ||
1005 | } | 1005 | } |
1006 | 1006 | ||
1007 | /** | 1007 | /** |
@@ -1018,7 +1018,8 @@ static inline struct zoneref *first_zones_zonelist(struct zonelist *zonelist, | |||
1018 | #define for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, nodemask) \ | 1018 | #define for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, nodemask) \ |
1019 | for (z = first_zones_zonelist(zlist, highidx, nodemask, &zone); \ | 1019 | for (z = first_zones_zonelist(zlist, highidx, nodemask, &zone); \ |
1020 | zone; \ | 1020 | zone; \ |
1021 | z = next_zones_zonelist(++z, highidx, nodemask, &zone)) \ | 1021 | z = next_zones_zonelist(++z, highidx, nodemask), \ |
1022 | zone = zonelist_zone(z)) \ | ||
1022 | 1023 | ||
1023 | /** | 1024 | /** |
1024 | * for_each_zone_zonelist - helper macro to iterate over valid zones in a zonelist at or below a given zone index | 1025 | * for_each_zone_zonelist - helper macro to iterate over valid zones in a zonelist at or below a given zone index |
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 745def862580..e530533b94be 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h | |||
@@ -53,9 +53,9 @@ struct ieee1394_device_id { | |||
53 | 53 | ||
54 | /** | 54 | /** |
55 | * struct usb_device_id - identifies USB devices for probing and hotplugging | 55 | * struct usb_device_id - identifies USB devices for probing and hotplugging |
56 | * @match_flags: Bit mask controlling of the other fields are used to match | 56 | * @match_flags: Bit mask controlling which of the other fields are used to |
57 | * against new devices. Any field except for driver_info may be used, | 57 | * match against new devices. Any field except for driver_info may be |
58 | * although some only make sense in conjunction with other fields. | 58 | * used, although some only make sense in conjunction with other fields. |
59 | * This is usually set by a USB_DEVICE_*() macro, which sets all | 59 | * This is usually set by a USB_DEVICE_*() macro, which sets all |
60 | * other fields in this structure except for driver_info. | 60 | * other fields in this structure except for driver_info. |
61 | * @idVendor: USB vendor ID for a device; numbers are assigned | 61 | * @idVendor: USB vendor ID for a device; numbers are assigned |
@@ -220,8 +220,7 @@ struct serio_device_id { | |||
220 | /* | 220 | /* |
221 | * Struct used for matching a device | 221 | * Struct used for matching a device |
222 | */ | 222 | */ |
223 | struct of_device_id | 223 | struct of_device_id { |
224 | { | ||
225 | char name[32]; | 224 | char name[32]; |
226 | char type[32]; | 225 | char type[32]; |
227 | char compatible[128]; | 226 | char compatible[128]; |
@@ -365,8 +364,6 @@ struct ssb_device_id { | |||
365 | } __attribute__((packed, aligned(2))); | 364 | } __attribute__((packed, aligned(2))); |
366 | #define SSB_DEVICE(_vendor, _coreid, _revision) \ | 365 | #define SSB_DEVICE(_vendor, _coreid, _revision) \ |
367 | { .vendor = _vendor, .coreid = _coreid, .revision = _revision, } | 366 | { .vendor = _vendor, .coreid = _coreid, .revision = _revision, } |
368 | #define SSB_DEVTABLE_END \ | ||
369 | { 0, }, | ||
370 | 367 | ||
371 | #define SSB_ANY_VENDOR 0xFFFF | 368 | #define SSB_ANY_VENDOR 0xFFFF |
372 | #define SSB_ANY_ID 0xFFFF | 369 | #define SSB_ANY_ID 0xFFFF |
@@ -381,8 +378,6 @@ struct bcma_device_id { | |||
381 | } __attribute__((packed,aligned(2))); | 378 | } __attribute__((packed,aligned(2))); |
382 | #define BCMA_CORE(_manuf, _id, _rev, _class) \ | 379 | #define BCMA_CORE(_manuf, _id, _rev, _class) \ |
383 | { .manuf = _manuf, .id = _id, .rev = _rev, .class = _class, } | 380 | { .manuf = _manuf, .id = _id, .rev = _rev, .class = _class, } |
384 | #define BCMA_CORETABLE_END \ | ||
385 | { 0, }, | ||
386 | 381 | ||
387 | #define BCMA_ANY_MANUF 0xFFFF | 382 | #define BCMA_ANY_MANUF 0xFFFF |
388 | #define BCMA_ANY_ID 0xFFFF | 383 | #define BCMA_ANY_ID 0xFFFF |
diff --git a/include/linux/module.h b/include/linux/module.h index b653d7c0a05a..42999fe2dbd0 100644 --- a/include/linux/module.h +++ b/include/linux/module.h | |||
@@ -135,7 +135,7 @@ void trim_init_extable(struct module *m); | |||
135 | #ifdef MODULE | 135 | #ifdef MODULE |
136 | /* Creates an alias so file2alias.c can find device table. */ | 136 | /* Creates an alias so file2alias.c can find device table. */ |
137 | #define MODULE_DEVICE_TABLE(type, name) \ | 137 | #define MODULE_DEVICE_TABLE(type, name) \ |
138 | extern const struct type##_device_id __mod_##type##__##name##_device_table \ | 138 | extern const typeof(name) __mod_##type##__##name##_device_table \ |
139 | __attribute__ ((unused, alias(__stringify(name)))) | 139 | __attribute__ ((unused, alias(__stringify(name)))) |
140 | #else /* !MODULE */ | 140 | #else /* !MODULE */ |
141 | #define MODULE_DEVICE_TABLE(type, name) | 141 | #define MODULE_DEVICE_TABLE(type, name) |
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index 031ff3a9a0bd..f17fa75809aa 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h | |||
@@ -227,6 +227,7 @@ struct mtd_info { | |||
227 | int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs); | 227 | int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs); |
228 | int (*_suspend) (struct mtd_info *mtd); | 228 | int (*_suspend) (struct mtd_info *mtd); |
229 | void (*_resume) (struct mtd_info *mtd); | 229 | void (*_resume) (struct mtd_info *mtd); |
230 | void (*_reboot) (struct mtd_info *mtd); | ||
230 | /* | 231 | /* |
231 | * If the driver is something smart, like UBI, it may need to maintain | 232 | * If the driver is something smart, like UBI, it may need to maintain |
232 | * its own reference counting. The below functions are only for driver. | 233 | * its own reference counting. The below functions are only for driver. |
@@ -408,4 +409,6 @@ static inline int mtd_is_bitflip_or_eccerr(int err) { | |||
408 | return mtd_is_bitflip(err) || mtd_is_eccerr(err); | 409 | return mtd_is_bitflip(err) || mtd_is_eccerr(err); |
409 | } | 410 | } |
410 | 411 | ||
412 | unsigned mtd_mmap_capabilities(struct mtd_info *mtd); | ||
413 | |||
411 | #endif /* __MTD_MTD_H__ */ | 414 | #endif /* __MTD_MTD_H__ */ |
diff --git a/include/linux/mtd/spi-nor.h b/include/linux/mtd/spi-nor.h index 63aeccf9ddc8..4720b86ee73d 100644 --- a/include/linux/mtd/spi-nor.h +++ b/include/linux/mtd/spi-nor.h | |||
@@ -56,6 +56,10 @@ | |||
56 | /* Used for Spansion flashes only. */ | 56 | /* Used for Spansion flashes only. */ |
57 | #define SPINOR_OP_BRWR 0x17 /* Bank register write */ | 57 | #define SPINOR_OP_BRWR 0x17 /* Bank register write */ |
58 | 58 | ||
59 | /* Used for Micron flashes only. */ | ||
60 | #define SPINOR_OP_RD_EVCR 0x65 /* Read EVCR register */ | ||
61 | #define SPINOR_OP_WD_EVCR 0x61 /* Write EVCR register */ | ||
62 | |||
59 | /* Status Register bits. */ | 63 | /* Status Register bits. */ |
60 | #define SR_WIP 1 /* Write in progress */ | 64 | #define SR_WIP 1 /* Write in progress */ |
61 | #define SR_WEL 2 /* Write enable latch */ | 65 | #define SR_WEL 2 /* Write enable latch */ |
@@ -67,6 +71,9 @@ | |||
67 | 71 | ||
68 | #define SR_QUAD_EN_MX 0x40 /* Macronix Quad I/O */ | 72 | #define SR_QUAD_EN_MX 0x40 /* Macronix Quad I/O */ |
69 | 73 | ||
74 | /* Enhanced Volatile Configuration Register bits */ | ||
75 | #define EVCR_QUAD_EN_MICRON 0x80 /* Micron Quad I/O */ | ||
76 | |||
70 | /* Flag Status Register bits */ | 77 | /* Flag Status Register bits */ |
71 | #define FSR_READY 0x80 | 78 | #define FSR_READY 0x80 |
72 | 79 | ||
diff --git a/include/linux/mtd/ubi.h b/include/linux/mtd/ubi.h index c3918a0684fe..1e271cb559cd 100644 --- a/include/linux/mtd/ubi.h +++ b/include/linux/mtd/ubi.h | |||
@@ -23,22 +23,32 @@ | |||
23 | 23 | ||
24 | #include <linux/ioctl.h> | 24 | #include <linux/ioctl.h> |
25 | #include <linux/types.h> | 25 | #include <linux/types.h> |
26 | #include <linux/scatterlist.h> | ||
26 | #include <mtd/ubi-user.h> | 27 | #include <mtd/ubi-user.h> |
27 | 28 | ||
28 | /* All voumes/LEBs */ | 29 | /* All voumes/LEBs */ |
29 | #define UBI_ALL -1 | 30 | #define UBI_ALL -1 |
30 | 31 | ||
31 | /* | 32 | /* |
33 | * Maximum number of scatter gather list entries, | ||
34 | * we use only 64 to have a lower memory foot print. | ||
35 | */ | ||
36 | #define UBI_MAX_SG_COUNT 64 | ||
37 | |||
38 | /* | ||
32 | * enum ubi_open_mode - UBI volume open mode constants. | 39 | * enum ubi_open_mode - UBI volume open mode constants. |
33 | * | 40 | * |
34 | * UBI_READONLY: read-only mode | 41 | * UBI_READONLY: read-only mode |
35 | * UBI_READWRITE: read-write mode | 42 | * UBI_READWRITE: read-write mode |
36 | * UBI_EXCLUSIVE: exclusive mode | 43 | * UBI_EXCLUSIVE: exclusive mode |
44 | * UBI_METAONLY: modify only the volume meta-data, | ||
45 | * i.e. the data stored in the volume table, but not in any of volume LEBs. | ||
37 | */ | 46 | */ |
38 | enum { | 47 | enum { |
39 | UBI_READONLY = 1, | 48 | UBI_READONLY = 1, |
40 | UBI_READWRITE, | 49 | UBI_READWRITE, |
41 | UBI_EXCLUSIVE | 50 | UBI_EXCLUSIVE, |
51 | UBI_METAONLY | ||
42 | }; | 52 | }; |
43 | 53 | ||
44 | /** | 54 | /** |
@@ -116,6 +126,35 @@ struct ubi_volume_info { | |||
116 | }; | 126 | }; |
117 | 127 | ||
118 | /** | 128 | /** |
129 | * struct ubi_sgl - UBI scatter gather list data structure. | ||
130 | * @list_pos: current position in @sg[] | ||
131 | * @page_pos: current position in @sg[@list_pos] | ||
132 | * @sg: the scatter gather list itself | ||
133 | * | ||
134 | * ubi_sgl is a wrapper around a scatter list which keeps track of the | ||
135 | * current position in the list and the current list item such that | ||
136 | * it can be used across multiple ubi_leb_read_sg() calls. | ||
137 | */ | ||
138 | struct ubi_sgl { | ||
139 | int list_pos; | ||
140 | int page_pos; | ||
141 | struct scatterlist sg[UBI_MAX_SG_COUNT]; | ||
142 | }; | ||
143 | |||
144 | /** | ||
145 | * ubi_sgl_init - initialize an UBI scatter gather list data structure. | ||
146 | * @usgl: the UBI scatter gather struct itself | ||
147 | * | ||
148 | * Please note that you still have to use sg_init_table() or any adequate | ||
149 | * function to initialize the unterlaying struct scatterlist. | ||
150 | */ | ||
151 | static inline void ubi_sgl_init(struct ubi_sgl *usgl) | ||
152 | { | ||
153 | usgl->list_pos = 0; | ||
154 | usgl->page_pos = 0; | ||
155 | } | ||
156 | |||
157 | /** | ||
119 | * struct ubi_device_info - UBI device description data structure. | 158 | * struct ubi_device_info - UBI device description data structure. |
120 | * @ubi_num: ubi device number | 159 | * @ubi_num: ubi device number |
121 | * @leb_size: logical eraseblock size on this UBI device | 160 | * @leb_size: logical eraseblock size on this UBI device |
@@ -210,6 +249,8 @@ int ubi_unregister_volume_notifier(struct notifier_block *nb); | |||
210 | void ubi_close_volume(struct ubi_volume_desc *desc); | 249 | void ubi_close_volume(struct ubi_volume_desc *desc); |
211 | int ubi_leb_read(struct ubi_volume_desc *desc, int lnum, char *buf, int offset, | 250 | int ubi_leb_read(struct ubi_volume_desc *desc, int lnum, char *buf, int offset, |
212 | int len, int check); | 251 | int len, int check); |
252 | int ubi_leb_read_sg(struct ubi_volume_desc *desc, int lnum, struct ubi_sgl *sgl, | ||
253 | int offset, int len, int check); | ||
213 | int ubi_leb_write(struct ubi_volume_desc *desc, int lnum, const void *buf, | 254 | int ubi_leb_write(struct ubi_volume_desc *desc, int lnum, const void *buf, |
214 | int offset, int len); | 255 | int offset, int len); |
215 | int ubi_leb_change(struct ubi_volume_desc *desc, int lnum, const void *buf, | 256 | int ubi_leb_change(struct ubi_volume_desc *desc, int lnum, const void *buf, |
@@ -230,4 +271,14 @@ static inline int ubi_read(struct ubi_volume_desc *desc, int lnum, char *buf, | |||
230 | { | 271 | { |
231 | return ubi_leb_read(desc, lnum, buf, offset, len, 0); | 272 | return ubi_leb_read(desc, lnum, buf, offset, len, 0); |
232 | } | 273 | } |
274 | |||
275 | /* | ||
276 | * This function is the same as the 'ubi_leb_read_sg()' function, but it does | ||
277 | * not provide the checking capability. | ||
278 | */ | ||
279 | static inline int ubi_read_sg(struct ubi_volume_desc *desc, int lnum, | ||
280 | struct ubi_sgl *sgl, int offset, int len) | ||
281 | { | ||
282 | return ubi_leb_read_sg(desc, lnum, sgl, offset, len, 0); | ||
283 | } | ||
233 | #endif /* !__LINUX_UBI_H__ */ | 284 | #endif /* !__LINUX_UBI_H__ */ |
diff --git a/include/linux/mutex.h b/include/linux/mutex.h index cc31498fc526..2cb7531e7d7a 100644 --- a/include/linux/mutex.h +++ b/include/linux/mutex.h | |||
@@ -59,7 +59,6 @@ struct mutex { | |||
59 | struct optimistic_spin_queue osq; /* Spinner MCS lock */ | 59 | struct optimistic_spin_queue osq; /* Spinner MCS lock */ |
60 | #endif | 60 | #endif |
61 | #ifdef CONFIG_DEBUG_MUTEXES | 61 | #ifdef CONFIG_DEBUG_MUTEXES |
62 | const char *name; | ||
63 | void *magic; | 62 | void *magic; |
64 | #endif | 63 | #endif |
65 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 64 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
diff --git a/include/linux/netdev_features.h b/include/linux/netdev_features.h index 8e30685affeb..7d59dc6ab789 100644 --- a/include/linux/netdev_features.h +++ b/include/linux/netdev_features.h | |||
@@ -66,6 +66,7 @@ enum { | |||
66 | NETIF_F_HW_VLAN_STAG_FILTER_BIT,/* Receive filtering on VLAN STAGs */ | 66 | NETIF_F_HW_VLAN_STAG_FILTER_BIT,/* Receive filtering on VLAN STAGs */ |
67 | NETIF_F_HW_L2FW_DOFFLOAD_BIT, /* Allow L2 Forwarding in Hardware */ | 67 | NETIF_F_HW_L2FW_DOFFLOAD_BIT, /* Allow L2 Forwarding in Hardware */ |
68 | NETIF_F_BUSY_POLL_BIT, /* Busy poll */ | 68 | NETIF_F_BUSY_POLL_BIT, /* Busy poll */ |
69 | NETIF_F_HW_SWITCH_OFFLOAD_BIT, /* HW switch offload */ | ||
69 | 70 | ||
70 | /* | 71 | /* |
71 | * Add your fresh new feature above and remember to update | 72 | * Add your fresh new feature above and remember to update |
@@ -124,6 +125,7 @@ enum { | |||
124 | #define NETIF_F_HW_VLAN_STAG_TX __NETIF_F(HW_VLAN_STAG_TX) | 125 | #define NETIF_F_HW_VLAN_STAG_TX __NETIF_F(HW_VLAN_STAG_TX) |
125 | #define NETIF_F_HW_L2FW_DOFFLOAD __NETIF_F(HW_L2FW_DOFFLOAD) | 126 | #define NETIF_F_HW_L2FW_DOFFLOAD __NETIF_F(HW_L2FW_DOFFLOAD) |
126 | #define NETIF_F_BUSY_POLL __NETIF_F(BUSY_POLL) | 127 | #define NETIF_F_BUSY_POLL __NETIF_F(BUSY_POLL) |
128 | #define NETIF_F_HW_SWITCH_OFFLOAD __NETIF_F(HW_SWITCH_OFFLOAD) | ||
127 | 129 | ||
128 | /* Features valid for ethtool to change */ | 130 | /* Features valid for ethtool to change */ |
129 | /* = all defined minus driver/device-class-related */ | 131 | /* = all defined minus driver/device-class-related */ |
@@ -159,7 +161,9 @@ enum { | |||
159 | */ | 161 | */ |
160 | #define NETIF_F_ONE_FOR_ALL (NETIF_F_GSO_SOFTWARE | NETIF_F_GSO_ROBUST | \ | 162 | #define NETIF_F_ONE_FOR_ALL (NETIF_F_GSO_SOFTWARE | NETIF_F_GSO_ROBUST | \ |
161 | NETIF_F_SG | NETIF_F_HIGHDMA | \ | 163 | NETIF_F_SG | NETIF_F_HIGHDMA | \ |
162 | NETIF_F_FRAGLIST | NETIF_F_VLAN_CHALLENGED) | 164 | NETIF_F_FRAGLIST | NETIF_F_VLAN_CHALLENGED | \ |
165 | NETIF_F_HW_SWITCH_OFFLOAD) | ||
166 | |||
163 | /* | 167 | /* |
164 | * If one device doesn't support one of these features, then disable it | 168 | * If one device doesn't support one of these features, then disable it |
165 | * for all in netdev_increment_features. | 169 | * for all in netdev_increment_features. |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 52fd8e8694cf..5897b4ea5a3f 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -51,6 +51,7 @@ | |||
51 | #include <linux/netdev_features.h> | 51 | #include <linux/netdev_features.h> |
52 | #include <linux/neighbour.h> | 52 | #include <linux/neighbour.h> |
53 | #include <uapi/linux/netdevice.h> | 53 | #include <uapi/linux/netdevice.h> |
54 | #include <uapi/linux/if_bonding.h> | ||
54 | 55 | ||
55 | struct netpoll_info; | 56 | struct netpoll_info; |
56 | struct device; | 57 | struct device; |
@@ -643,39 +644,40 @@ struct rps_dev_flow_table { | |||
643 | /* | 644 | /* |
644 | * The rps_sock_flow_table contains mappings of flows to the last CPU | 645 | * The rps_sock_flow_table contains mappings of flows to the last CPU |
645 | * on which they were processed by the application (set in recvmsg). | 646 | * on which they were processed by the application (set in recvmsg). |
647 | * Each entry is a 32bit value. Upper part is the high order bits | ||
648 | * of flow hash, lower part is cpu number. | ||
649 | * rps_cpu_mask is used to partition the space, depending on number of | ||
650 | * possible cpus : rps_cpu_mask = roundup_pow_of_two(nr_cpu_ids) - 1 | ||
651 | * For example, if 64 cpus are possible, rps_cpu_mask = 0x3f, | ||
652 | * meaning we use 32-6=26 bits for the hash. | ||
646 | */ | 653 | */ |
647 | struct rps_sock_flow_table { | 654 | struct rps_sock_flow_table { |
648 | unsigned int mask; | 655 | u32 mask; |
649 | u16 ents[0]; | 656 | |
657 | u32 ents[0] ____cacheline_aligned_in_smp; | ||
650 | }; | 658 | }; |
651 | #define RPS_SOCK_FLOW_TABLE_SIZE(_num) (sizeof(struct rps_sock_flow_table) + \ | 659 | #define RPS_SOCK_FLOW_TABLE_SIZE(_num) (offsetof(struct rps_sock_flow_table, ents[_num])) |
652 | ((_num) * sizeof(u16))) | ||
653 | 660 | ||
654 | #define RPS_NO_CPU 0xffff | 661 | #define RPS_NO_CPU 0xffff |
655 | 662 | ||
663 | extern u32 rps_cpu_mask; | ||
664 | extern struct rps_sock_flow_table __rcu *rps_sock_flow_table; | ||
665 | |||
656 | static inline void rps_record_sock_flow(struct rps_sock_flow_table *table, | 666 | static inline void rps_record_sock_flow(struct rps_sock_flow_table *table, |
657 | u32 hash) | 667 | u32 hash) |
658 | { | 668 | { |
659 | if (table && hash) { | 669 | if (table && hash) { |
660 | unsigned int cpu, index = hash & table->mask; | 670 | unsigned int index = hash & table->mask; |
671 | u32 val = hash & ~rps_cpu_mask; | ||
661 | 672 | ||
662 | /* We only give a hint, preemption can change cpu under us */ | 673 | /* We only give a hint, preemption can change cpu under us */ |
663 | cpu = raw_smp_processor_id(); | 674 | val |= raw_smp_processor_id(); |
664 | 675 | ||
665 | if (table->ents[index] != cpu) | 676 | if (table->ents[index] != val) |
666 | table->ents[index] = cpu; | 677 | table->ents[index] = val; |
667 | } | 678 | } |
668 | } | 679 | } |
669 | 680 | ||
670 | static inline void rps_reset_sock_flow(struct rps_sock_flow_table *table, | ||
671 | u32 hash) | ||
672 | { | ||
673 | if (table && hash) | ||
674 | table->ents[hash & table->mask] = RPS_NO_CPU; | ||
675 | } | ||
676 | |||
677 | extern struct rps_sock_flow_table __rcu *rps_sock_flow_table; | ||
678 | |||
679 | #ifdef CONFIG_RFS_ACCEL | 681 | #ifdef CONFIG_RFS_ACCEL |
680 | bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index, u32 flow_id, | 682 | bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index, u32 flow_id, |
681 | u16 filter_id); | 683 | u16 filter_id); |
@@ -1154,13 +1156,15 @@ struct net_device_ops { | |||
1154 | int idx); | 1156 | int idx); |
1155 | 1157 | ||
1156 | int (*ndo_bridge_setlink)(struct net_device *dev, | 1158 | int (*ndo_bridge_setlink)(struct net_device *dev, |
1157 | struct nlmsghdr *nlh); | 1159 | struct nlmsghdr *nlh, |
1160 | u16 flags); | ||
1158 | int (*ndo_bridge_getlink)(struct sk_buff *skb, | 1161 | int (*ndo_bridge_getlink)(struct sk_buff *skb, |
1159 | u32 pid, u32 seq, | 1162 | u32 pid, u32 seq, |
1160 | struct net_device *dev, | 1163 | struct net_device *dev, |
1161 | u32 filter_mask); | 1164 | u32 filter_mask); |
1162 | int (*ndo_bridge_dellink)(struct net_device *dev, | 1165 | int (*ndo_bridge_dellink)(struct net_device *dev, |
1163 | struct nlmsghdr *nlh); | 1166 | struct nlmsghdr *nlh, |
1167 | u16 flags); | ||
1164 | int (*ndo_change_carrier)(struct net_device *dev, | 1168 | int (*ndo_change_carrier)(struct net_device *dev, |
1165 | bool new_carrier); | 1169 | bool new_carrier); |
1166 | int (*ndo_get_phys_port_id)(struct net_device *dev, | 1170 | int (*ndo_get_phys_port_id)(struct net_device *dev, |
@@ -1514,6 +1518,8 @@ struct net_device { | |||
1514 | struct list_head napi_list; | 1518 | struct list_head napi_list; |
1515 | struct list_head unreg_list; | 1519 | struct list_head unreg_list; |
1516 | struct list_head close_list; | 1520 | struct list_head close_list; |
1521 | struct list_head ptype_all; | ||
1522 | struct list_head ptype_specific; | ||
1517 | 1523 | ||
1518 | struct { | 1524 | struct { |
1519 | struct list_head upper; | 1525 | struct list_head upper; |
@@ -1917,13 +1923,8 @@ struct napi_gro_cb { | |||
1917 | /* Number of segments aggregated. */ | 1923 | /* Number of segments aggregated. */ |
1918 | u16 count; | 1924 | u16 count; |
1919 | 1925 | ||
1920 | /* This is non-zero if the packet may be of the same flow. */ | 1926 | /* Start offset for remote checksum offload */ |
1921 | u8 same_flow; | 1927 | u16 gro_remcsum_start; |
1922 | |||
1923 | /* Free the skb? */ | ||
1924 | u8 free; | ||
1925 | #define NAPI_GRO_FREE 1 | ||
1926 | #define NAPI_GRO_FREE_STOLEN_HEAD 2 | ||
1927 | 1928 | ||
1928 | /* jiffies when first packet was created/queued */ | 1929 | /* jiffies when first packet was created/queued */ |
1929 | unsigned long age; | 1930 | unsigned long age; |
@@ -1931,6 +1932,9 @@ struct napi_gro_cb { | |||
1931 | /* Used in ipv6_gro_receive() and foo-over-udp */ | 1932 | /* Used in ipv6_gro_receive() and foo-over-udp */ |
1932 | u16 proto; | 1933 | u16 proto; |
1933 | 1934 | ||
1935 | /* This is non-zero if the packet may be of the same flow. */ | ||
1936 | u8 same_flow:1; | ||
1937 | |||
1934 | /* Used in udp_gro_receive */ | 1938 | /* Used in udp_gro_receive */ |
1935 | u8 udp_mark:1; | 1939 | u8 udp_mark:1; |
1936 | 1940 | ||
@@ -1940,9 +1944,16 @@ struct napi_gro_cb { | |||
1940 | /* Number of checksums via CHECKSUM_UNNECESSARY */ | 1944 | /* Number of checksums via CHECKSUM_UNNECESSARY */ |
1941 | u8 csum_cnt:3; | 1945 | u8 csum_cnt:3; |
1942 | 1946 | ||
1947 | /* Free the skb? */ | ||
1948 | u8 free:2; | ||
1949 | #define NAPI_GRO_FREE 1 | ||
1950 | #define NAPI_GRO_FREE_STOLEN_HEAD 2 | ||
1951 | |||
1943 | /* Used in foo-over-udp, set in udp[46]_gro_receive */ | 1952 | /* Used in foo-over-udp, set in udp[46]_gro_receive */ |
1944 | u8 is_ipv6:1; | 1953 | u8 is_ipv6:1; |
1945 | 1954 | ||
1955 | /* 7 bit hole */ | ||
1956 | |||
1946 | /* used to support CHECKSUM_COMPLETE for tunneling protocols */ | 1957 | /* used to support CHECKSUM_COMPLETE for tunneling protocols */ |
1947 | __wsum csum; | 1958 | __wsum csum; |
1948 | 1959 | ||
@@ -1969,7 +1980,7 @@ struct offload_callbacks { | |||
1969 | struct sk_buff *(*gso_segment)(struct sk_buff *skb, | 1980 | struct sk_buff *(*gso_segment)(struct sk_buff *skb, |
1970 | netdev_features_t features); | 1981 | netdev_features_t features); |
1971 | struct sk_buff **(*gro_receive)(struct sk_buff **head, | 1982 | struct sk_buff **(*gro_receive)(struct sk_buff **head, |
1972 | struct sk_buff *skb); | 1983 | struct sk_buff *skb); |
1973 | int (*gro_complete)(struct sk_buff *skb, int nhoff); | 1984 | int (*gro_complete)(struct sk_buff *skb, int nhoff); |
1974 | }; | 1985 | }; |
1975 | 1986 | ||
@@ -1979,10 +1990,21 @@ struct packet_offload { | |||
1979 | struct list_head list; | 1990 | struct list_head list; |
1980 | }; | 1991 | }; |
1981 | 1992 | ||
1993 | struct udp_offload; | ||
1994 | |||
1995 | struct udp_offload_callbacks { | ||
1996 | struct sk_buff **(*gro_receive)(struct sk_buff **head, | ||
1997 | struct sk_buff *skb, | ||
1998 | struct udp_offload *uoff); | ||
1999 | int (*gro_complete)(struct sk_buff *skb, | ||
2000 | int nhoff, | ||
2001 | struct udp_offload *uoff); | ||
2002 | }; | ||
2003 | |||
1982 | struct udp_offload { | 2004 | struct udp_offload { |
1983 | __be16 port; | 2005 | __be16 port; |
1984 | u8 ipproto; | 2006 | u8 ipproto; |
1985 | struct offload_callbacks callbacks; | 2007 | struct udp_offload_callbacks callbacks; |
1986 | }; | 2008 | }; |
1987 | 2009 | ||
1988 | /* often modified stats are per cpu, other are shared (netdev->stats) */ | 2010 | /* often modified stats are per cpu, other are shared (netdev->stats) */ |
@@ -2041,6 +2063,7 @@ struct pcpu_sw_netstats { | |||
2041 | #define NETDEV_RESEND_IGMP 0x0016 | 2063 | #define NETDEV_RESEND_IGMP 0x0016 |
2042 | #define NETDEV_PRECHANGEMTU 0x0017 /* notify before mtu change happened */ | 2064 | #define NETDEV_PRECHANGEMTU 0x0017 /* notify before mtu change happened */ |
2043 | #define NETDEV_CHANGEINFODATA 0x0018 | 2065 | #define NETDEV_CHANGEINFODATA 0x0018 |
2066 | #define NETDEV_BONDING_INFO 0x0019 | ||
2044 | 2067 | ||
2045 | int register_netdevice_notifier(struct notifier_block *nb); | 2068 | int register_netdevice_notifier(struct notifier_block *nb); |
2046 | int unregister_netdevice_notifier(struct notifier_block *nb); | 2069 | int unregister_netdevice_notifier(struct notifier_block *nb); |
@@ -2224,11 +2247,20 @@ static inline void skb_gro_postpull_rcsum(struct sk_buff *skb, | |||
2224 | 2247 | ||
2225 | __sum16 __skb_gro_checksum_complete(struct sk_buff *skb); | 2248 | __sum16 __skb_gro_checksum_complete(struct sk_buff *skb); |
2226 | 2249 | ||
2250 | static inline bool skb_at_gro_remcsum_start(struct sk_buff *skb) | ||
2251 | { | ||
2252 | return (NAPI_GRO_CB(skb)->gro_remcsum_start - skb_headroom(skb) == | ||
2253 | skb_gro_offset(skb)); | ||
2254 | } | ||
2255 | |||
2227 | static inline bool __skb_gro_checksum_validate_needed(struct sk_buff *skb, | 2256 | static inline bool __skb_gro_checksum_validate_needed(struct sk_buff *skb, |
2228 | bool zero_okay, | 2257 | bool zero_okay, |
2229 | __sum16 check) | 2258 | __sum16 check) |
2230 | { | 2259 | { |
2231 | return (skb->ip_summed != CHECKSUM_PARTIAL && | 2260 | return ((skb->ip_summed != CHECKSUM_PARTIAL || |
2261 | skb_checksum_start_offset(skb) < | ||
2262 | skb_gro_offset(skb)) && | ||
2263 | !skb_at_gro_remcsum_start(skb) && | ||
2232 | NAPI_GRO_CB(skb)->csum_cnt == 0 && | 2264 | NAPI_GRO_CB(skb)->csum_cnt == 0 && |
2233 | (!zero_okay || check)); | 2265 | (!zero_okay || check)); |
2234 | } | 2266 | } |
@@ -2303,6 +2335,49 @@ do { \ | |||
2303 | compute_pseudo(skb, proto)); \ | 2335 | compute_pseudo(skb, proto)); \ |
2304 | } while (0) | 2336 | } while (0) |
2305 | 2337 | ||
2338 | struct gro_remcsum { | ||
2339 | int offset; | ||
2340 | __wsum delta; | ||
2341 | }; | ||
2342 | |||
2343 | static inline void skb_gro_remcsum_init(struct gro_remcsum *grc) | ||
2344 | { | ||
2345 | grc->delta = 0; | ||
2346 | } | ||
2347 | |||
2348 | static inline void skb_gro_remcsum_process(struct sk_buff *skb, void *ptr, | ||
2349 | int start, int offset, | ||
2350 | struct gro_remcsum *grc, | ||
2351 | bool nopartial) | ||
2352 | { | ||
2353 | __wsum delta; | ||
2354 | |||
2355 | BUG_ON(!NAPI_GRO_CB(skb)->csum_valid); | ||
2356 | |||
2357 | if (!nopartial) { | ||
2358 | NAPI_GRO_CB(skb)->gro_remcsum_start = | ||
2359 | ((unsigned char *)ptr + start) - skb->head; | ||
2360 | return; | ||
2361 | } | ||
2362 | |||
2363 | delta = remcsum_adjust(ptr, NAPI_GRO_CB(skb)->csum, start, offset); | ||
2364 | |||
2365 | /* Adjust skb->csum since we changed the packet */ | ||
2366 | NAPI_GRO_CB(skb)->csum = csum_add(NAPI_GRO_CB(skb)->csum, delta); | ||
2367 | |||
2368 | grc->offset = (ptr + offset) - (void *)skb->head; | ||
2369 | grc->delta = delta; | ||
2370 | } | ||
2371 | |||
2372 | static inline void skb_gro_remcsum_cleanup(struct sk_buff *skb, | ||
2373 | struct gro_remcsum *grc) | ||
2374 | { | ||
2375 | if (!grc->delta) | ||
2376 | return; | ||
2377 | |||
2378 | remcsum_unadjust((__sum16 *)(skb->head + grc->offset), grc->delta); | ||
2379 | } | ||
2380 | |||
2306 | static inline int dev_hard_header(struct sk_buff *skb, struct net_device *dev, | 2381 | static inline int dev_hard_header(struct sk_buff *skb, struct net_device *dev, |
2307 | unsigned short type, | 2382 | unsigned short type, |
2308 | const void *daddr, const void *saddr, | 2383 | const void *daddr, const void *saddr, |
@@ -3464,6 +3539,19 @@ struct sk_buff *__skb_gso_segment(struct sk_buff *skb, | |||
3464 | struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb, | 3539 | struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb, |
3465 | netdev_features_t features); | 3540 | netdev_features_t features); |
3466 | 3541 | ||
3542 | struct netdev_bonding_info { | ||
3543 | ifslave slave; | ||
3544 | ifbond master; | ||
3545 | }; | ||
3546 | |||
3547 | struct netdev_notifier_bonding_info { | ||
3548 | struct netdev_notifier_info info; /* must be first */ | ||
3549 | struct netdev_bonding_info bonding_info; | ||
3550 | }; | ||
3551 | |||
3552 | void netdev_bonding_info_change(struct net_device *dev, | ||
3553 | struct netdev_bonding_info *bonding_info); | ||
3554 | |||
3467 | static inline | 3555 | static inline |
3468 | struct sk_buff *skb_gso_segment(struct sk_buff *skb, netdev_features_t features) | 3556 | struct sk_buff *skb_gso_segment(struct sk_buff *skb, netdev_features_t features) |
3469 | { | 3557 | { |
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index 022b761dbf0a..ed43cb74b11d 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h | |||
@@ -411,6 +411,7 @@ enum lock_type4 { | |||
411 | #define FATTR4_WORD1_TIME_MODIFY_SET (1UL << 22) | 411 | #define FATTR4_WORD1_TIME_MODIFY_SET (1UL << 22) |
412 | #define FATTR4_WORD1_MOUNTED_ON_FILEID (1UL << 23) | 412 | #define FATTR4_WORD1_MOUNTED_ON_FILEID (1UL << 23) |
413 | #define FATTR4_WORD1_FS_LAYOUT_TYPES (1UL << 30) | 413 | #define FATTR4_WORD1_FS_LAYOUT_TYPES (1UL << 30) |
414 | #define FATTR4_WORD2_LAYOUT_TYPES (1UL << 0) | ||
414 | #define FATTR4_WORD2_LAYOUT_BLKSIZE (1UL << 1) | 415 | #define FATTR4_WORD2_LAYOUT_BLKSIZE (1UL << 1) |
415 | #define FATTR4_WORD2_MDSTHRESHOLD (1UL << 4) | 416 | #define FATTR4_WORD2_MDSTHRESHOLD (1UL << 4) |
416 | #define FATTR4_WORD2_SECURITY_LABEL (1UL << 16) | 417 | #define FATTR4_WORD2_SECURITY_LABEL (1UL << 16) |
@@ -516,6 +517,8 @@ enum pnfs_layouttype { | |||
516 | LAYOUT_NFSV4_1_FILES = 1, | 517 | LAYOUT_NFSV4_1_FILES = 1, |
517 | LAYOUT_OSD2_OBJECTS = 2, | 518 | LAYOUT_OSD2_OBJECTS = 2, |
518 | LAYOUT_BLOCK_VOLUME = 3, | 519 | LAYOUT_BLOCK_VOLUME = 3, |
520 | LAYOUT_FLEX_FILES = 4, | ||
521 | LAYOUT_TYPE_MAX | ||
519 | }; | 522 | }; |
520 | 523 | ||
521 | /* used for both layout return and recall */ | 524 | /* used for both layout return and recall */ |
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index ddea982355f3..5e1273d4de14 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h | |||
@@ -77,10 +77,6 @@ struct nfs_client { | |||
77 | /* Client owner identifier */ | 77 | /* Client owner identifier */ |
78 | const char * cl_owner_id; | 78 | const char * cl_owner_id; |
79 | 79 | ||
80 | /* Our own IP address, as a null-terminated string. | ||
81 | * This is used to generate the mv0 callback address. | ||
82 | */ | ||
83 | char cl_ipaddr[48]; | ||
84 | u32 cl_cb_ident; /* v4.0 callback identifier */ | 80 | u32 cl_cb_ident; /* v4.0 callback identifier */ |
85 | const struct nfs4_minor_version_ops *cl_mvops; | 81 | const struct nfs4_minor_version_ops *cl_mvops; |
86 | unsigned long cl_mig_gen; | 82 | unsigned long cl_mig_gen; |
@@ -108,6 +104,11 @@ struct nfs_client { | |||
108 | #define NFS_SP4_MACH_CRED_COMMIT 6 /* COMMIT */ | 104 | #define NFS_SP4_MACH_CRED_COMMIT 6 /* COMMIT */ |
109 | #endif /* CONFIG_NFS_V4 */ | 105 | #endif /* CONFIG_NFS_V4 */ |
110 | 106 | ||
107 | /* Our own IP address, as a null-terminated string. | ||
108 | * This is used to generate the mv0 callback address. | ||
109 | */ | ||
110 | char cl_ipaddr[48]; | ||
111 | |||
111 | #ifdef CONFIG_NFS_FSCACHE | 112 | #ifdef CONFIG_NFS_FSCACHE |
112 | struct fscache_cookie *fscache; /* client index cache cookie */ | 113 | struct fscache_cookie *fscache; /* client index cache cookie */ |
113 | #endif | 114 | #endif |
diff --git a/include/linux/nfs_idmap.h b/include/linux/nfs_idmap.h index 0f4b79da6584..333844e38f66 100644 --- a/include/linux/nfs_idmap.h +++ b/include/linux/nfs_idmap.h | |||
@@ -73,5 +73,7 @@ int nfs_map_group_to_gid(const struct nfs_server *, const char *, size_t, kgid_t | |||
73 | int nfs_map_uid_to_name(const struct nfs_server *, kuid_t, char *, size_t); | 73 | int nfs_map_uid_to_name(const struct nfs_server *, kuid_t, char *, size_t); |
74 | int nfs_map_gid_to_group(const struct nfs_server *, kgid_t, char *, size_t); | 74 | int nfs_map_gid_to_group(const struct nfs_server *, kgid_t, char *, size_t); |
75 | 75 | ||
76 | int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res); | ||
77 | |||
76 | extern unsigned int nfs_idmap_cache_timeout; | 78 | extern unsigned int nfs_idmap_cache_timeout; |
77 | #endif /* NFS_IDMAP_H */ | 79 | #endif /* NFS_IDMAP_H */ |
diff --git a/include/linux/nfs_page.h b/include/linux/nfs_page.h index 6c3e06ee2fb7..3eb072dbce83 100644 --- a/include/linux/nfs_page.h +++ b/include/linux/nfs_page.h | |||
@@ -58,6 +58,9 @@ struct nfs_pageio_ops { | |||
58 | size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, | 58 | size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, |
59 | struct nfs_page *); | 59 | struct nfs_page *); |
60 | int (*pg_doio)(struct nfs_pageio_descriptor *); | 60 | int (*pg_doio)(struct nfs_pageio_descriptor *); |
61 | unsigned int (*pg_get_mirror_count)(struct nfs_pageio_descriptor *, | ||
62 | struct nfs_page *); | ||
63 | void (*pg_cleanup)(struct nfs_pageio_descriptor *); | ||
61 | }; | 64 | }; |
62 | 65 | ||
63 | struct nfs_rw_ops { | 66 | struct nfs_rw_ops { |
@@ -69,18 +72,21 @@ struct nfs_rw_ops { | |||
69 | struct inode *); | 72 | struct inode *); |
70 | void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *); | 73 | void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *); |
71 | void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *, | 74 | void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *, |
75 | const struct nfs_rpc_ops *, | ||
72 | struct rpc_task_setup *, int); | 76 | struct rpc_task_setup *, int); |
73 | }; | 77 | }; |
74 | 78 | ||
75 | struct nfs_pageio_descriptor { | 79 | struct nfs_pgio_mirror { |
76 | struct list_head pg_list; | 80 | struct list_head pg_list; |
77 | unsigned long pg_bytes_written; | 81 | unsigned long pg_bytes_written; |
78 | size_t pg_count; | 82 | size_t pg_count; |
79 | size_t pg_bsize; | 83 | size_t pg_bsize; |
80 | unsigned int pg_base; | 84 | unsigned int pg_base; |
81 | unsigned char pg_moreio : 1, | 85 | unsigned char pg_recoalesce : 1; |
82 | pg_recoalesce : 1; | 86 | }; |
83 | 87 | ||
88 | struct nfs_pageio_descriptor { | ||
89 | unsigned char pg_moreio : 1; | ||
84 | struct inode *pg_inode; | 90 | struct inode *pg_inode; |
85 | const struct nfs_pageio_ops *pg_ops; | 91 | const struct nfs_pageio_ops *pg_ops; |
86 | const struct nfs_rw_ops *pg_rw_ops; | 92 | const struct nfs_rw_ops *pg_rw_ops; |
@@ -91,8 +97,18 @@ struct nfs_pageio_descriptor { | |||
91 | struct pnfs_layout_segment *pg_lseg; | 97 | struct pnfs_layout_segment *pg_lseg; |
92 | struct nfs_direct_req *pg_dreq; | 98 | struct nfs_direct_req *pg_dreq; |
93 | void *pg_layout_private; | 99 | void *pg_layout_private; |
100 | unsigned int pg_bsize; /* default bsize for mirrors */ | ||
101 | |||
102 | u32 pg_mirror_count; | ||
103 | struct nfs_pgio_mirror *pg_mirrors; | ||
104 | struct nfs_pgio_mirror pg_mirrors_static[1]; | ||
105 | struct nfs_pgio_mirror *pg_mirrors_dynamic; | ||
106 | u32 pg_mirror_idx; /* current mirror */ | ||
94 | }; | 107 | }; |
95 | 108 | ||
109 | /* arbitrarily selected limit to number of mirrors */ | ||
110 | #define NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX 16 | ||
111 | |||
96 | #define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags)) | 112 | #define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags)) |
97 | 113 | ||
98 | extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx, | 114 | extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx, |
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 467c84efb596..38d96ba935c2 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h | |||
@@ -285,6 +285,7 @@ struct nfs4_layoutcommit_data { | |||
285 | struct nfs_fattr fattr; | 285 | struct nfs_fattr fattr; |
286 | struct list_head lseg_list; | 286 | struct list_head lseg_list; |
287 | struct rpc_cred *cred; | 287 | struct rpc_cred *cred; |
288 | struct inode *inode; | ||
288 | struct nfs4_layoutcommit_args args; | 289 | struct nfs4_layoutcommit_args args; |
289 | struct nfs4_layoutcommit_res res; | 290 | struct nfs4_layoutcommit_res res; |
290 | }; | 291 | }; |
@@ -293,6 +294,7 @@ struct nfs4_layoutreturn_args { | |||
293 | struct nfs4_sequence_args seq_args; | 294 | struct nfs4_sequence_args seq_args; |
294 | struct pnfs_layout_hdr *layout; | 295 | struct pnfs_layout_hdr *layout; |
295 | struct inode *inode; | 296 | struct inode *inode; |
297 | struct pnfs_layout_range range; | ||
296 | nfs4_stateid stateid; | 298 | nfs4_stateid stateid; |
297 | __u32 layout_type; | 299 | __u32 layout_type; |
298 | }; | 300 | }; |
@@ -308,6 +310,7 @@ struct nfs4_layoutreturn { | |||
308 | struct nfs4_layoutreturn_res res; | 310 | struct nfs4_layoutreturn_res res; |
309 | struct rpc_cred *cred; | 311 | struct rpc_cred *cred; |
310 | struct nfs_client *clp; | 312 | struct nfs_client *clp; |
313 | struct inode *inode; | ||
311 | int rpc_status; | 314 | int rpc_status; |
312 | }; | 315 | }; |
313 | 316 | ||
@@ -325,6 +328,7 @@ struct nfs_openargs { | |||
325 | struct nfs_seqid * seqid; | 328 | struct nfs_seqid * seqid; |
326 | int open_flags; | 329 | int open_flags; |
327 | fmode_t fmode; | 330 | fmode_t fmode; |
331 | u32 share_access; | ||
328 | u32 access; | 332 | u32 access; |
329 | __u64 clientid; | 333 | __u64 clientid; |
330 | struct stateowner_id id; | 334 | struct stateowner_id id; |
@@ -389,9 +393,10 @@ struct nfs_open_confirmres { | |||
389 | struct nfs_closeargs { | 393 | struct nfs_closeargs { |
390 | struct nfs4_sequence_args seq_args; | 394 | struct nfs4_sequence_args seq_args; |
391 | struct nfs_fh * fh; | 395 | struct nfs_fh * fh; |
392 | nfs4_stateid * stateid; | 396 | nfs4_stateid stateid; |
393 | struct nfs_seqid * seqid; | 397 | struct nfs_seqid * seqid; |
394 | fmode_t fmode; | 398 | fmode_t fmode; |
399 | u32 share_access; | ||
395 | const u32 * bitmask; | 400 | const u32 * bitmask; |
396 | }; | 401 | }; |
397 | 402 | ||
@@ -416,12 +421,13 @@ struct nfs_lock_args { | |||
416 | struct nfs_fh * fh; | 421 | struct nfs_fh * fh; |
417 | struct file_lock * fl; | 422 | struct file_lock * fl; |
418 | struct nfs_seqid * lock_seqid; | 423 | struct nfs_seqid * lock_seqid; |
419 | nfs4_stateid * lock_stateid; | 424 | nfs4_stateid lock_stateid; |
420 | struct nfs_seqid * open_seqid; | 425 | struct nfs_seqid * open_seqid; |
421 | nfs4_stateid * open_stateid; | 426 | nfs4_stateid open_stateid; |
422 | struct nfs_lowner lock_owner; | 427 | struct nfs_lowner lock_owner; |
423 | unsigned char block : 1; | 428 | unsigned char block : 1; |
424 | unsigned char reclaim : 1; | 429 | unsigned char reclaim : 1; |
430 | unsigned char new_lock : 1; | ||
425 | unsigned char new_lock_owner : 1; | 431 | unsigned char new_lock_owner : 1; |
426 | }; | 432 | }; |
427 | 433 | ||
@@ -437,7 +443,7 @@ struct nfs_locku_args { | |||
437 | struct nfs_fh * fh; | 443 | struct nfs_fh * fh; |
438 | struct file_lock * fl; | 444 | struct file_lock * fl; |
439 | struct nfs_seqid * seqid; | 445 | struct nfs_seqid * seqid; |
440 | nfs4_stateid * stateid; | 446 | nfs4_stateid stateid; |
441 | }; | 447 | }; |
442 | 448 | ||
443 | struct nfs_locku_res { | 449 | struct nfs_locku_res { |
@@ -513,6 +519,7 @@ struct nfs_pgio_res { | |||
513 | struct nfs4_sequence_res seq_res; | 519 | struct nfs4_sequence_res seq_res; |
514 | struct nfs_fattr * fattr; | 520 | struct nfs_fattr * fattr; |
515 | __u32 count; | 521 | __u32 count; |
522 | __u32 op_status; | ||
516 | int eof; /* used by read */ | 523 | int eof; /* used by read */ |
517 | struct nfs_writeverf * verf; /* used by write */ | 524 | struct nfs_writeverf * verf; /* used by write */ |
518 | const struct nfs_server *server; /* used by write */ | 525 | const struct nfs_server *server; /* used by write */ |
@@ -532,6 +539,7 @@ struct nfs_commitargs { | |||
532 | 539 | ||
533 | struct nfs_commitres { | 540 | struct nfs_commitres { |
534 | struct nfs4_sequence_res seq_res; | 541 | struct nfs4_sequence_res seq_res; |
542 | __u32 op_status; | ||
535 | struct nfs_fattr *fattr; | 543 | struct nfs_fattr *fattr; |
536 | struct nfs_writeverf *verf; | 544 | struct nfs_writeverf *verf; |
537 | const struct nfs_server *server; | 545 | const struct nfs_server *server; |
@@ -1325,7 +1333,8 @@ struct nfs_pgio_header { | |||
1325 | __u64 mds_offset; /* Filelayout dense stripe */ | 1333 | __u64 mds_offset; /* Filelayout dense stripe */ |
1326 | struct nfs_page_array page_array; | 1334 | struct nfs_page_array page_array; |
1327 | struct nfs_client *ds_clp; /* pNFS data server */ | 1335 | struct nfs_client *ds_clp; /* pNFS data server */ |
1328 | int ds_idx; /* ds index if ds_clp is set */ | 1336 | int ds_commit_idx; /* ds index if ds_clp is set */ |
1337 | int pgio_mirror_idx;/* mirror index in pgio layer */ | ||
1329 | }; | 1338 | }; |
1330 | 1339 | ||
1331 | struct nfs_mds_commit_info { | 1340 | struct nfs_mds_commit_info { |
diff --git a/include/linux/nodemask.h b/include/linux/nodemask.h index 83a6aeda899d..6e85889cf9ab 100644 --- a/include/linux/nodemask.h +++ b/include/linux/nodemask.h | |||
@@ -8,14 +8,13 @@ | |||
8 | * See detailed comments in the file linux/bitmap.h describing the | 8 | * See detailed comments in the file linux/bitmap.h describing the |
9 | * data type on which these nodemasks are based. | 9 | * data type on which these nodemasks are based. |
10 | * | 10 | * |
11 | * For details of nodemask_scnprintf() and nodemask_parse_user(), | 11 | * For details of nodemask_parse_user(), see bitmap_parse_user() in |
12 | * see bitmap_scnprintf() and bitmap_parse_user() in lib/bitmap.c. | 12 | * lib/bitmap.c. For details of nodelist_parse(), see bitmap_parselist(), |
13 | * For details of nodelist_scnprintf() and nodelist_parse(), see | 13 | * also in bitmap.c. For details of node_remap(), see bitmap_bitremap in |
14 | * bitmap_scnlistprintf() and bitmap_parselist(), also in bitmap.c. | 14 | * lib/bitmap.c. For details of nodes_remap(), see bitmap_remap in |
15 | * For details of node_remap(), see bitmap_bitremap in lib/bitmap.c. | 15 | * lib/bitmap.c. For details of nodes_onto(), see bitmap_onto in |
16 | * For details of nodes_remap(), see bitmap_remap in lib/bitmap.c. | 16 | * lib/bitmap.c. For details of nodes_fold(), see bitmap_fold in |
17 | * For details of nodes_onto(), see bitmap_onto in lib/bitmap.c. | 17 | * lib/bitmap.c. |
18 | * For details of nodes_fold(), see bitmap_fold in lib/bitmap.c. | ||
19 | * | 18 | * |
20 | * The available nodemask operations are: | 19 | * The available nodemask operations are: |
21 | * | 20 | * |
@@ -52,9 +51,7 @@ | |||
52 | * NODE_MASK_NONE Initializer - no bits set | 51 | * NODE_MASK_NONE Initializer - no bits set |
53 | * unsigned long *nodes_addr(mask) Array of unsigned long's in mask | 52 | * unsigned long *nodes_addr(mask) Array of unsigned long's in mask |
54 | * | 53 | * |
55 | * int nodemask_scnprintf(buf, len, mask) Format nodemask for printing | ||
56 | * int nodemask_parse_user(ubuf, ulen, mask) Parse ascii string as nodemask | 54 | * int nodemask_parse_user(ubuf, ulen, mask) Parse ascii string as nodemask |
57 | * int nodelist_scnprintf(buf, len, mask) Format nodemask as list for printing | ||
58 | * int nodelist_parse(buf, map) Parse ascii string as nodelist | 55 | * int nodelist_parse(buf, map) Parse ascii string as nodelist |
59 | * int node_remap(oldbit, old, new) newbit = map(old, new)(oldbit) | 56 | * int node_remap(oldbit, old, new) newbit = map(old, new)(oldbit) |
60 | * void nodes_remap(dst, src, old, new) *dst = map(old, new)(src) | 57 | * void nodes_remap(dst, src, old, new) *dst = map(old, new)(src) |
@@ -98,6 +95,14 @@ | |||
98 | typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t; | 95 | typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t; |
99 | extern nodemask_t _unused_nodemask_arg_; | 96 | extern nodemask_t _unused_nodemask_arg_; |
100 | 97 | ||
98 | /** | ||
99 | * nodemask_pr_args - printf args to output a nodemask | ||
100 | * @maskp: nodemask to be printed | ||
101 | * | ||
102 | * Can be used to provide arguments for '%*pb[l]' when printing a nodemask. | ||
103 | */ | ||
104 | #define nodemask_pr_args(maskp) MAX_NUMNODES, (maskp)->bits | ||
105 | |||
101 | /* | 106 | /* |
102 | * The inline keyword gives the compiler room to decide to inline, or | 107 | * The inline keyword gives the compiler room to decide to inline, or |
103 | * not inline a function as it sees best. However, as these functions | 108 | * not inline a function as it sees best. However, as these functions |
@@ -120,13 +125,13 @@ static inline void __node_clear(int node, volatile nodemask_t *dstp) | |||
120 | } | 125 | } |
121 | 126 | ||
122 | #define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES) | 127 | #define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES) |
123 | static inline void __nodes_setall(nodemask_t *dstp, int nbits) | 128 | static inline void __nodes_setall(nodemask_t *dstp, unsigned int nbits) |
124 | { | 129 | { |
125 | bitmap_fill(dstp->bits, nbits); | 130 | bitmap_fill(dstp->bits, nbits); |
126 | } | 131 | } |
127 | 132 | ||
128 | #define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES) | 133 | #define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES) |
129 | static inline void __nodes_clear(nodemask_t *dstp, int nbits) | 134 | static inline void __nodes_clear(nodemask_t *dstp, unsigned int nbits) |
130 | { | 135 | { |
131 | bitmap_zero(dstp->bits, nbits); | 136 | bitmap_zero(dstp->bits, nbits); |
132 | } | 137 | } |
@@ -144,7 +149,7 @@ static inline int __node_test_and_set(int node, nodemask_t *addr) | |||
144 | #define nodes_and(dst, src1, src2) \ | 149 | #define nodes_and(dst, src1, src2) \ |
145 | __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES) | 150 | __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES) |
146 | static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, | 151 | static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, |
147 | const nodemask_t *src2p, int nbits) | 152 | const nodemask_t *src2p, unsigned int nbits) |
148 | { | 153 | { |
149 | bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); | 154 | bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); |
150 | } | 155 | } |
@@ -152,7 +157,7 @@ static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, | |||
152 | #define nodes_or(dst, src1, src2) \ | 157 | #define nodes_or(dst, src1, src2) \ |
153 | __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES) | 158 | __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES) |
154 | static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, | 159 | static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, |
155 | const nodemask_t *src2p, int nbits) | 160 | const nodemask_t *src2p, unsigned int nbits) |
156 | { | 161 | { |
157 | bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); | 162 | bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); |
158 | } | 163 | } |
@@ -160,7 +165,7 @@ static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, | |||
160 | #define nodes_xor(dst, src1, src2) \ | 165 | #define nodes_xor(dst, src1, src2) \ |
161 | __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES) | 166 | __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES) |
162 | static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, | 167 | static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, |
163 | const nodemask_t *src2p, int nbits) | 168 | const nodemask_t *src2p, unsigned int nbits) |
164 | { | 169 | { |
165 | bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); | 170 | bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); |
166 | } | 171 | } |
@@ -168,7 +173,7 @@ static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, | |||
168 | #define nodes_andnot(dst, src1, src2) \ | 173 | #define nodes_andnot(dst, src1, src2) \ |
169 | __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES) | 174 | __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES) |
170 | static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, | 175 | static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, |
171 | const nodemask_t *src2p, int nbits) | 176 | const nodemask_t *src2p, unsigned int nbits) |
172 | { | 177 | { |
173 | bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); | 178 | bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); |
174 | } | 179 | } |
@@ -176,7 +181,7 @@ static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, | |||
176 | #define nodes_complement(dst, src) \ | 181 | #define nodes_complement(dst, src) \ |
177 | __nodes_complement(&(dst), &(src), MAX_NUMNODES) | 182 | __nodes_complement(&(dst), &(src), MAX_NUMNODES) |
178 | static inline void __nodes_complement(nodemask_t *dstp, | 183 | static inline void __nodes_complement(nodemask_t *dstp, |
179 | const nodemask_t *srcp, int nbits) | 184 | const nodemask_t *srcp, unsigned int nbits) |
180 | { | 185 | { |
181 | bitmap_complement(dstp->bits, srcp->bits, nbits); | 186 | bitmap_complement(dstp->bits, srcp->bits, nbits); |
182 | } | 187 | } |
@@ -184,7 +189,7 @@ static inline void __nodes_complement(nodemask_t *dstp, | |||
184 | #define nodes_equal(src1, src2) \ | 189 | #define nodes_equal(src1, src2) \ |
185 | __nodes_equal(&(src1), &(src2), MAX_NUMNODES) | 190 | __nodes_equal(&(src1), &(src2), MAX_NUMNODES) |
186 | static inline int __nodes_equal(const nodemask_t *src1p, | 191 | static inline int __nodes_equal(const nodemask_t *src1p, |
187 | const nodemask_t *src2p, int nbits) | 192 | const nodemask_t *src2p, unsigned int nbits) |
188 | { | 193 | { |
189 | return bitmap_equal(src1p->bits, src2p->bits, nbits); | 194 | return bitmap_equal(src1p->bits, src2p->bits, nbits); |
190 | } | 195 | } |
@@ -192,7 +197,7 @@ static inline int __nodes_equal(const nodemask_t *src1p, | |||
192 | #define nodes_intersects(src1, src2) \ | 197 | #define nodes_intersects(src1, src2) \ |
193 | __nodes_intersects(&(src1), &(src2), MAX_NUMNODES) | 198 | __nodes_intersects(&(src1), &(src2), MAX_NUMNODES) |
194 | static inline int __nodes_intersects(const nodemask_t *src1p, | 199 | static inline int __nodes_intersects(const nodemask_t *src1p, |
195 | const nodemask_t *src2p, int nbits) | 200 | const nodemask_t *src2p, unsigned int nbits) |
196 | { | 201 | { |
197 | return bitmap_intersects(src1p->bits, src2p->bits, nbits); | 202 | return bitmap_intersects(src1p->bits, src2p->bits, nbits); |
198 | } | 203 | } |
@@ -200,25 +205,25 @@ static inline int __nodes_intersects(const nodemask_t *src1p, | |||
200 | #define nodes_subset(src1, src2) \ | 205 | #define nodes_subset(src1, src2) \ |
201 | __nodes_subset(&(src1), &(src2), MAX_NUMNODES) | 206 | __nodes_subset(&(src1), &(src2), MAX_NUMNODES) |
202 | static inline int __nodes_subset(const nodemask_t *src1p, | 207 | static inline int __nodes_subset(const nodemask_t *src1p, |
203 | const nodemask_t *src2p, int nbits) | 208 | const nodemask_t *src2p, unsigned int nbits) |
204 | { | 209 | { |
205 | return bitmap_subset(src1p->bits, src2p->bits, nbits); | 210 | return bitmap_subset(src1p->bits, src2p->bits, nbits); |
206 | } | 211 | } |
207 | 212 | ||
208 | #define nodes_empty(src) __nodes_empty(&(src), MAX_NUMNODES) | 213 | #define nodes_empty(src) __nodes_empty(&(src), MAX_NUMNODES) |
209 | static inline int __nodes_empty(const nodemask_t *srcp, int nbits) | 214 | static inline int __nodes_empty(const nodemask_t *srcp, unsigned int nbits) |
210 | { | 215 | { |
211 | return bitmap_empty(srcp->bits, nbits); | 216 | return bitmap_empty(srcp->bits, nbits); |
212 | } | 217 | } |
213 | 218 | ||
214 | #define nodes_full(nodemask) __nodes_full(&(nodemask), MAX_NUMNODES) | 219 | #define nodes_full(nodemask) __nodes_full(&(nodemask), MAX_NUMNODES) |
215 | static inline int __nodes_full(const nodemask_t *srcp, int nbits) | 220 | static inline int __nodes_full(const nodemask_t *srcp, unsigned int nbits) |
216 | { | 221 | { |
217 | return bitmap_full(srcp->bits, nbits); | 222 | return bitmap_full(srcp->bits, nbits); |
218 | } | 223 | } |
219 | 224 | ||
220 | #define nodes_weight(nodemask) __nodes_weight(&(nodemask), MAX_NUMNODES) | 225 | #define nodes_weight(nodemask) __nodes_weight(&(nodemask), MAX_NUMNODES) |
221 | static inline int __nodes_weight(const nodemask_t *srcp, int nbits) | 226 | static inline int __nodes_weight(const nodemask_t *srcp, unsigned int nbits) |
222 | { | 227 | { |
223 | return bitmap_weight(srcp->bits, nbits); | 228 | return bitmap_weight(srcp->bits, nbits); |
224 | } | 229 | } |
@@ -304,14 +309,6 @@ static inline int __first_unset_node(const nodemask_t *maskp) | |||
304 | 309 | ||
305 | #define nodes_addr(src) ((src).bits) | 310 | #define nodes_addr(src) ((src).bits) |
306 | 311 | ||
307 | #define nodemask_scnprintf(buf, len, src) \ | ||
308 | __nodemask_scnprintf((buf), (len), &(src), MAX_NUMNODES) | ||
309 | static inline int __nodemask_scnprintf(char *buf, int len, | ||
310 | const nodemask_t *srcp, int nbits) | ||
311 | { | ||
312 | return bitmap_scnprintf(buf, len, srcp->bits, nbits); | ||
313 | } | ||
314 | |||
315 | #define nodemask_parse_user(ubuf, ulen, dst) \ | 312 | #define nodemask_parse_user(ubuf, ulen, dst) \ |
316 | __nodemask_parse_user((ubuf), (ulen), &(dst), MAX_NUMNODES) | 313 | __nodemask_parse_user((ubuf), (ulen), &(dst), MAX_NUMNODES) |
317 | static inline int __nodemask_parse_user(const char __user *buf, int len, | 314 | static inline int __nodemask_parse_user(const char __user *buf, int len, |
@@ -320,14 +317,6 @@ static inline int __nodemask_parse_user(const char __user *buf, int len, | |||
320 | return bitmap_parse_user(buf, len, dstp->bits, nbits); | 317 | return bitmap_parse_user(buf, len, dstp->bits, nbits); |
321 | } | 318 | } |
322 | 319 | ||
323 | #define nodelist_scnprintf(buf, len, src) \ | ||
324 | __nodelist_scnprintf((buf), (len), &(src), MAX_NUMNODES) | ||
325 | static inline int __nodelist_scnprintf(char *buf, int len, | ||
326 | const nodemask_t *srcp, int nbits) | ||
327 | { | ||
328 | return bitmap_scnlistprintf(buf, len, srcp->bits, nbits); | ||
329 | } | ||
330 | |||
331 | #define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES) | 320 | #define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES) |
332 | static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits) | 321 | static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits) |
333 | { | 322 | { |
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index 258945fcabf1..19a5d4b23209 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h | |||
@@ -132,13 +132,12 @@ struct nvme_ns { | |||
132 | * allocated to store the PRP list. | 132 | * allocated to store the PRP list. |
133 | */ | 133 | */ |
134 | struct nvme_iod { | 134 | struct nvme_iod { |
135 | void *private; /* For the use of the submitter of the I/O */ | 135 | unsigned long private; /* For the use of the submitter of the I/O */ |
136 | int npages; /* In the PRP list. 0 means small pool in use */ | 136 | int npages; /* In the PRP list. 0 means small pool in use */ |
137 | int offset; /* Of PRP list */ | 137 | int offset; /* Of PRP list */ |
138 | int nents; /* Used in scatterlist */ | 138 | int nents; /* Used in scatterlist */ |
139 | int length; /* Of data, in bytes */ | 139 | int length; /* Of data, in bytes */ |
140 | dma_addr_t first_dma; | 140 | dma_addr_t first_dma; |
141 | struct list_head node; | ||
142 | struct scatterlist sg[0]; | 141 | struct scatterlist sg[0]; |
143 | }; | 142 | }; |
144 | 143 | ||
diff --git a/include/linux/of_gpio.h b/include/linux/of_gpio.h index 38fc05036015..69dbe312b11b 100644 --- a/include/linux/of_gpio.h +++ b/include/linux/of_gpio.h | |||
@@ -52,6 +52,7 @@ extern int of_get_named_gpio_flags(struct device_node *np, | |||
52 | 52 | ||
53 | extern int of_mm_gpiochip_add(struct device_node *np, | 53 | extern int of_mm_gpiochip_add(struct device_node *np, |
54 | struct of_mm_gpio_chip *mm_gc); | 54 | struct of_mm_gpio_chip *mm_gc); |
55 | extern void of_mm_gpiochip_remove(struct of_mm_gpio_chip *mm_gc); | ||
55 | 56 | ||
56 | extern void of_gpiochip_add(struct gpio_chip *gc); | 57 | extern void of_gpiochip_add(struct gpio_chip *gc); |
57 | extern void of_gpiochip_remove(struct gpio_chip *gc); | 58 | extern void of_gpiochip_remove(struct gpio_chip *gc); |
diff --git a/include/linux/oom.h b/include/linux/oom.h index 76200984d1e2..d5771bed59c9 100644 --- a/include/linux/oom.h +++ b/include/linux/oom.h | |||
@@ -47,6 +47,10 @@ static inline bool oom_task_origin(const struct task_struct *p) | |||
47 | return !!(p->signal->oom_flags & OOM_FLAG_ORIGIN); | 47 | return !!(p->signal->oom_flags & OOM_FLAG_ORIGIN); |
48 | } | 48 | } |
49 | 49 | ||
50 | extern void mark_tsk_oom_victim(struct task_struct *tsk); | ||
51 | |||
52 | extern void unmark_oom_victim(void); | ||
53 | |||
50 | extern unsigned long oom_badness(struct task_struct *p, | 54 | extern unsigned long oom_badness(struct task_struct *p, |
51 | struct mem_cgroup *memcg, const nodemask_t *nodemask, | 55 | struct mem_cgroup *memcg, const nodemask_t *nodemask, |
52 | unsigned long totalpages); | 56 | unsigned long totalpages); |
@@ -68,22 +72,14 @@ extern enum oom_scan_t oom_scan_process_thread(struct task_struct *task, | |||
68 | unsigned long totalpages, const nodemask_t *nodemask, | 72 | unsigned long totalpages, const nodemask_t *nodemask, |
69 | bool force_kill); | 73 | bool force_kill); |
70 | 74 | ||
71 | extern void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, | 75 | extern bool out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, |
72 | int order, nodemask_t *mask, bool force_kill); | 76 | int order, nodemask_t *mask, bool force_kill); |
73 | extern int register_oom_notifier(struct notifier_block *nb); | 77 | extern int register_oom_notifier(struct notifier_block *nb); |
74 | extern int unregister_oom_notifier(struct notifier_block *nb); | 78 | extern int unregister_oom_notifier(struct notifier_block *nb); |
75 | 79 | ||
76 | extern bool oom_killer_disabled; | 80 | extern bool oom_killer_disabled; |
77 | 81 | extern bool oom_killer_disable(void); | |
78 | static inline void oom_killer_disable(void) | 82 | extern void oom_killer_enable(void); |
79 | { | ||
80 | oom_killer_disabled = true; | ||
81 | } | ||
82 | |||
83 | static inline void oom_killer_enable(void) | ||
84 | { | ||
85 | oom_killer_disabled = false; | ||
86 | } | ||
87 | 83 | ||
88 | extern struct task_struct *find_lock_task_mm(struct task_struct *p); | 84 | extern struct task_struct *find_lock_task_mm(struct task_struct *p); |
89 | 85 | ||
diff --git a/include/linux/osq_lock.h b/include/linux/osq_lock.h index 90230d5811c5..3a6490e81b28 100644 --- a/include/linux/osq_lock.h +++ b/include/linux/osq_lock.h | |||
@@ -5,8 +5,11 @@ | |||
5 | * An MCS like lock especially tailored for optimistic spinning for sleeping | 5 | * An MCS like lock especially tailored for optimistic spinning for sleeping |
6 | * lock implementations (mutex, rwsem, etc). | 6 | * lock implementations (mutex, rwsem, etc). |
7 | */ | 7 | */ |
8 | 8 | struct optimistic_spin_node { | |
9 | #define OSQ_UNLOCKED_VAL (0) | 9 | struct optimistic_spin_node *next, *prev; |
10 | int locked; /* 1 if lock acquired */ | ||
11 | int cpu; /* encoded CPU # + 1 value */ | ||
12 | }; | ||
10 | 13 | ||
11 | struct optimistic_spin_queue { | 14 | struct optimistic_spin_queue { |
12 | /* | 15 | /* |
@@ -16,6 +19,8 @@ struct optimistic_spin_queue { | |||
16 | atomic_t tail; | 19 | atomic_t tail; |
17 | }; | 20 | }; |
18 | 21 | ||
22 | #define OSQ_UNLOCKED_VAL (0) | ||
23 | |||
19 | /* Init macro and function. */ | 24 | /* Init macro and function. */ |
20 | #define OSQ_LOCK_UNLOCKED { ATOMIC_INIT(OSQ_UNLOCKED_VAL) } | 25 | #define OSQ_LOCK_UNLOCKED { ATOMIC_INIT(OSQ_UNLOCKED_VAL) } |
21 | 26 | ||
@@ -24,4 +29,7 @@ static inline void osq_lock_init(struct optimistic_spin_queue *lock) | |||
24 | atomic_set(&lock->tail, OSQ_UNLOCKED_VAL); | 29 | atomic_set(&lock->tail, OSQ_UNLOCKED_VAL); |
25 | } | 30 | } |
26 | 31 | ||
32 | extern bool osq_lock(struct optimistic_spin_queue *lock); | ||
33 | extern void osq_unlock(struct optimistic_spin_queue *lock); | ||
34 | |||
27 | #endif | 35 | #endif |
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index e1f5fcd79792..5ed7bdaf22d5 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h | |||
@@ -121,8 +121,12 @@ enum pageflags { | |||
121 | PG_fscache = PG_private_2, /* page backed by cache */ | 121 | PG_fscache = PG_private_2, /* page backed by cache */ |
122 | 122 | ||
123 | /* XEN */ | 123 | /* XEN */ |
124 | /* Pinned in Xen as a read-only pagetable page. */ | ||
124 | PG_pinned = PG_owner_priv_1, | 125 | PG_pinned = PG_owner_priv_1, |
126 | /* Pinned as part of domain save (see xen_mm_pin_all()). */ | ||
125 | PG_savepinned = PG_dirty, | 127 | PG_savepinned = PG_dirty, |
128 | /* Has a grant mapping of another (foreign) domain's page. */ | ||
129 | PG_foreign = PG_owner_priv_1, | ||
126 | 130 | ||
127 | /* SLOB */ | 131 | /* SLOB */ |
128 | PG_slob_free = PG_private, | 132 | PG_slob_free = PG_private, |
@@ -215,6 +219,7 @@ __PAGEFLAG(Slab, slab) | |||
215 | PAGEFLAG(Checked, checked) /* Used by some filesystems */ | 219 | PAGEFLAG(Checked, checked) /* Used by some filesystems */ |
216 | PAGEFLAG(Pinned, pinned) TESTSCFLAG(Pinned, pinned) /* Xen */ | 220 | PAGEFLAG(Pinned, pinned) TESTSCFLAG(Pinned, pinned) /* Xen */ |
217 | PAGEFLAG(SavePinned, savepinned); /* Xen */ | 221 | PAGEFLAG(SavePinned, savepinned); /* Xen */ |
222 | PAGEFLAG(Foreign, foreign); /* Xen */ | ||
218 | PAGEFLAG(Reserved, reserved) __CLEARPAGEFLAG(Reserved, reserved) | 223 | PAGEFLAG(Reserved, reserved) __CLEARPAGEFLAG(Reserved, reserved) |
219 | PAGEFLAG(SwapBacked, swapbacked) __CLEARPAGEFLAG(SwapBacked, swapbacked) | 224 | PAGEFLAG(SwapBacked, swapbacked) __CLEARPAGEFLAG(SwapBacked, swapbacked) |
220 | __SETPAGEFLAG(SwapBacked, swapbacked) | 225 | __SETPAGEFLAG(SwapBacked, swapbacked) |
diff --git a/include/linux/page_counter.h b/include/linux/page_counter.h index 955421575d16..17fa4f8de3a6 100644 --- a/include/linux/page_counter.h +++ b/include/linux/page_counter.h | |||
@@ -41,7 +41,8 @@ int page_counter_try_charge(struct page_counter *counter, | |||
41 | struct page_counter **fail); | 41 | struct page_counter **fail); |
42 | void page_counter_uncharge(struct page_counter *counter, unsigned long nr_pages); | 42 | void page_counter_uncharge(struct page_counter *counter, unsigned long nr_pages); |
43 | int page_counter_limit(struct page_counter *counter, unsigned long limit); | 43 | int page_counter_limit(struct page_counter *counter, unsigned long limit); |
44 | int page_counter_memparse(const char *buf, unsigned long *nr_pages); | 44 | int page_counter_memparse(const char *buf, const char *max, |
45 | unsigned long *nr_pages); | ||
45 | 46 | ||
46 | static inline void page_counter_reset_watermark(struct page_counter *counter) | 47 | static inline void page_counter_reset_watermark(struct page_counter *counter) |
47 | { | 48 | { |
diff --git a/include/linux/page_ext.h b/include/linux/page_ext.h index d2a2c84c72d0..c42981cd99aa 100644 --- a/include/linux/page_ext.h +++ b/include/linux/page_ext.h | |||
@@ -40,7 +40,7 @@ struct page_ext { | |||
40 | #ifdef CONFIG_PAGE_OWNER | 40 | #ifdef CONFIG_PAGE_OWNER |
41 | unsigned int order; | 41 | unsigned int order; |
42 | gfp_t gfp_mask; | 42 | gfp_t gfp_mask; |
43 | struct stack_trace trace; | 43 | unsigned int nr_entries; |
44 | unsigned long trace_entries[8]; | 44 | unsigned long trace_entries[8]; |
45 | #endif | 45 | #endif |
46 | }; | 46 | }; |
diff --git a/include/linux/pci.h b/include/linux/pci.h index 9603094ed59b..211e9da8a7d7 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/atomic.h> | 29 | #include <linux/atomic.h> |
30 | #include <linux/device.h> | 30 | #include <linux/device.h> |
31 | #include <linux/io.h> | 31 | #include <linux/io.h> |
32 | #include <linux/resource_ext.h> | ||
32 | #include <uapi/linux/pci.h> | 33 | #include <uapi/linux/pci.h> |
33 | 34 | ||
34 | #include <linux/pci_ids.h> | 35 | #include <linux/pci_ids.h> |
@@ -177,6 +178,8 @@ enum pci_dev_flags { | |||
177 | PCI_DEV_FLAG_PCIE_BRIDGE_ALIAS = (__force pci_dev_flags_t) (1 << 5), | 178 | PCI_DEV_FLAG_PCIE_BRIDGE_ALIAS = (__force pci_dev_flags_t) (1 << 5), |
178 | /* Do not use bus resets for device */ | 179 | /* Do not use bus resets for device */ |
179 | PCI_DEV_FLAGS_NO_BUS_RESET = (__force pci_dev_flags_t) (1 << 6), | 180 | PCI_DEV_FLAGS_NO_BUS_RESET = (__force pci_dev_flags_t) (1 << 6), |
181 | /* Do not use PM reset even if device advertises NoSoftRst- */ | ||
182 | PCI_DEV_FLAGS_NO_PM_RESET = (__force pci_dev_flags_t) (1 << 7), | ||
180 | }; | 183 | }; |
181 | 184 | ||
182 | enum pci_irq_reroute_variant { | 185 | enum pci_irq_reroute_variant { |
@@ -397,16 +400,10 @@ static inline int pci_channel_offline(struct pci_dev *pdev) | |||
397 | return (pdev->error_state != pci_channel_io_normal); | 400 | return (pdev->error_state != pci_channel_io_normal); |
398 | } | 401 | } |
399 | 402 | ||
400 | struct pci_host_bridge_window { | ||
401 | struct list_head list; | ||
402 | struct resource *res; /* host bridge aperture (CPU address) */ | ||
403 | resource_size_t offset; /* bus address + offset = CPU address */ | ||
404 | }; | ||
405 | |||
406 | struct pci_host_bridge { | 403 | struct pci_host_bridge { |
407 | struct device dev; | 404 | struct device dev; |
408 | struct pci_bus *bus; /* root bus */ | 405 | struct pci_bus *bus; /* root bus */ |
409 | struct list_head windows; /* pci_host_bridge_windows */ | 406 | struct list_head windows; /* resource_entry */ |
410 | void (*release_fn)(struct pci_host_bridge *); | 407 | void (*release_fn)(struct pci_host_bridge *); |
411 | void *release_data; | 408 | void *release_data; |
412 | }; | 409 | }; |
@@ -562,6 +559,7 @@ static inline int pcibios_err_to_errno(int err) | |||
562 | /* Low-level architecture-dependent routines */ | 559 | /* Low-level architecture-dependent routines */ |
563 | 560 | ||
564 | struct pci_ops { | 561 | struct pci_ops { |
562 | void __iomem *(*map_bus)(struct pci_bus *bus, unsigned int devfn, int where); | ||
565 | int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val); | 563 | int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val); |
566 | int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val); | 564 | int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val); |
567 | }; | 565 | }; |
@@ -859,6 +857,16 @@ int pci_bus_write_config_word(struct pci_bus *bus, unsigned int devfn, | |||
859 | int where, u16 val); | 857 | int where, u16 val); |
860 | int pci_bus_write_config_dword(struct pci_bus *bus, unsigned int devfn, | 858 | int pci_bus_write_config_dword(struct pci_bus *bus, unsigned int devfn, |
861 | int where, u32 val); | 859 | int where, u32 val); |
860 | |||
861 | int pci_generic_config_read(struct pci_bus *bus, unsigned int devfn, | ||
862 | int where, int size, u32 *val); | ||
863 | int pci_generic_config_write(struct pci_bus *bus, unsigned int devfn, | ||
864 | int where, int size, u32 val); | ||
865 | int pci_generic_config_read32(struct pci_bus *bus, unsigned int devfn, | ||
866 | int where, int size, u32 *val); | ||
867 | int pci_generic_config_write32(struct pci_bus *bus, unsigned int devfn, | ||
868 | int where, int size, u32 val); | ||
869 | |||
862 | struct pci_ops *pci_bus_set_ops(struct pci_bus *bus, struct pci_ops *ops); | 870 | struct pci_ops *pci_bus_set_ops(struct pci_bus *bus, struct pci_ops *ops); |
863 | 871 | ||
864 | static inline int pci_read_config_byte(const struct pci_dev *dev, int where, u8 *val) | 872 | static inline int pci_read_config_byte(const struct pci_dev *dev, int where, u8 *val) |
@@ -1850,6 +1858,8 @@ static inline void pci_set_of_node(struct pci_dev *dev) { } | |||
1850 | static inline void pci_release_of_node(struct pci_dev *dev) { } | 1858 | static inline void pci_release_of_node(struct pci_dev *dev) { } |
1851 | static inline void pci_set_bus_of_node(struct pci_bus *bus) { } | 1859 | static inline void pci_set_bus_of_node(struct pci_bus *bus) { } |
1852 | static inline void pci_release_bus_of_node(struct pci_bus *bus) { } | 1860 | static inline void pci_release_bus_of_node(struct pci_bus *bus) { } |
1861 | static inline struct device_node * | ||
1862 | pci_device_to_OF_node(const struct pci_dev *pdev) { return NULL; } | ||
1853 | #endif /* CONFIG_OF */ | 1863 | #endif /* CONFIG_OF */ |
1854 | 1864 | ||
1855 | #ifdef CONFIG_EEH | 1865 | #ifdef CONFIG_EEH |
diff --git a/include/linux/percpu-refcount.h b/include/linux/percpu-refcount.h index b4337646388b..12c9b485beb7 100644 --- a/include/linux/percpu-refcount.h +++ b/include/linux/percpu-refcount.h | |||
@@ -128,8 +128,22 @@ static inline void percpu_ref_kill(struct percpu_ref *ref) | |||
128 | static inline bool __ref_is_percpu(struct percpu_ref *ref, | 128 | static inline bool __ref_is_percpu(struct percpu_ref *ref, |
129 | unsigned long __percpu **percpu_countp) | 129 | unsigned long __percpu **percpu_countp) |
130 | { | 130 | { |
131 | /* paired with smp_store_release() in percpu_ref_reinit() */ | 131 | unsigned long percpu_ptr; |
132 | unsigned long percpu_ptr = lockless_dereference(ref->percpu_count_ptr); | 132 | |
133 | /* | ||
134 | * The value of @ref->percpu_count_ptr is tested for | ||
135 | * !__PERCPU_REF_ATOMIC, which may be set asynchronously, and then | ||
136 | * used as a pointer. If the compiler generates a separate fetch | ||
137 | * when using it as a pointer, __PERCPU_REF_ATOMIC may be set in | ||
138 | * between contaminating the pointer value, meaning that | ||
139 | * ACCESS_ONCE() is required when fetching it. | ||
140 | * | ||
141 | * Also, we need a data dependency barrier to be paired with | ||
142 | * smp_store_release() in __percpu_ref_switch_to_percpu(). | ||
143 | * | ||
144 | * Use lockless deref which contains both. | ||
145 | */ | ||
146 | percpu_ptr = lockless_dereference(ref->percpu_count_ptr); | ||
133 | 147 | ||
134 | /* | 148 | /* |
135 | * Theoretically, the following could test just ATOMIC; however, | 149 | * Theoretically, the following could test just ATOMIC; however, |
@@ -233,7 +247,7 @@ static inline bool percpu_ref_tryget_live(struct percpu_ref *ref) | |||
233 | if (__ref_is_percpu(ref, &percpu_count)) { | 247 | if (__ref_is_percpu(ref, &percpu_count)) { |
234 | this_cpu_inc(*percpu_count); | 248 | this_cpu_inc(*percpu_count); |
235 | ret = true; | 249 | ret = true; |
236 | } else if (!(ACCESS_ONCE(ref->percpu_count_ptr) & __PERCPU_REF_DEAD)) { | 250 | } else if (!(ref->percpu_count_ptr & __PERCPU_REF_DEAD)) { |
237 | ret = atomic_long_inc_not_zero(&ref->count); | 251 | ret = atomic_long_inc_not_zero(&ref->count); |
238 | } | 252 | } |
239 | 253 | ||
@@ -281,6 +295,20 @@ static inline void percpu_ref_put(struct percpu_ref *ref) | |||
281 | } | 295 | } |
282 | 296 | ||
283 | /** | 297 | /** |
298 | * percpu_ref_is_dying - test whether a percpu refcount is dying or dead | ||
299 | * @ref: percpu_ref to test | ||
300 | * | ||
301 | * Returns %true if @ref is dying or dead. | ||
302 | * | ||
303 | * This function is safe to call as long as @ref is between init and exit | ||
304 | * and the caller is responsible for synchronizing against state changes. | ||
305 | */ | ||
306 | static inline bool percpu_ref_is_dying(struct percpu_ref *ref) | ||
307 | { | ||
308 | return ref->percpu_count_ptr & __PERCPU_REF_DEAD; | ||
309 | } | ||
310 | |||
311 | /** | ||
284 | * percpu_ref_is_zero - test whether a percpu refcount reached zero | 312 | * percpu_ref_is_zero - test whether a percpu refcount reached zero |
285 | * @ref: percpu_ref to test | 313 | * @ref: percpu_ref to test |
286 | * | 314 | * |
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 664de5a4ec46..2b621982938d 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h | |||
@@ -202,6 +202,13 @@ struct pmu { | |||
202 | */ | 202 | */ |
203 | int (*event_init) (struct perf_event *event); | 203 | int (*event_init) (struct perf_event *event); |
204 | 204 | ||
205 | /* | ||
206 | * Notification that the event was mapped or unmapped. Called | ||
207 | * in the context of the mapping task. | ||
208 | */ | ||
209 | void (*event_mapped) (struct perf_event *event); /*optional*/ | ||
210 | void (*event_unmapped) (struct perf_event *event); /*optional*/ | ||
211 | |||
205 | #define PERF_EF_START 0x01 /* start the counter when adding */ | 212 | #define PERF_EF_START 0x01 /* start the counter when adding */ |
206 | #define PERF_EF_RELOAD 0x02 /* reload the counter when starting */ | 213 | #define PERF_EF_RELOAD 0x02 /* reload the counter when starting */ |
207 | #define PERF_EF_UPDATE 0x04 /* update the counter when stopping */ | 214 | #define PERF_EF_UPDATE 0x04 /* update the counter when stopping */ |
@@ -469,6 +476,7 @@ struct perf_event_context { | |||
469 | */ | 476 | */ |
470 | struct mutex mutex; | 477 | struct mutex mutex; |
471 | 478 | ||
479 | struct list_head active_ctx_list; | ||
472 | struct list_head pinned_groups; | 480 | struct list_head pinned_groups; |
473 | struct list_head flexible_groups; | 481 | struct list_head flexible_groups; |
474 | struct list_head event_list; | 482 | struct list_head event_list; |
@@ -519,7 +527,6 @@ struct perf_cpu_context { | |||
519 | int exclusive; | 527 | int exclusive; |
520 | struct hrtimer hrtimer; | 528 | struct hrtimer hrtimer; |
521 | ktime_t hrtimer_interval; | 529 | ktime_t hrtimer_interval; |
522 | struct list_head rotation_list; | ||
523 | struct pmu *unique_pmu; | 530 | struct pmu *unique_pmu; |
524 | struct perf_cgroup *cgrp; | 531 | struct perf_cgroup *cgrp; |
525 | }; | 532 | }; |
@@ -659,6 +666,7 @@ static inline int is_software_event(struct perf_event *event) | |||
659 | 666 | ||
660 | extern struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX]; | 667 | extern struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX]; |
661 | 668 | ||
669 | extern void ___perf_sw_event(u32, u64, struct pt_regs *, u64); | ||
662 | extern void __perf_sw_event(u32, u64, struct pt_regs *, u64); | 670 | extern void __perf_sw_event(u32, u64, struct pt_regs *, u64); |
663 | 671 | ||
664 | #ifndef perf_arch_fetch_caller_regs | 672 | #ifndef perf_arch_fetch_caller_regs |
@@ -683,14 +691,25 @@ static inline void perf_fetch_caller_regs(struct pt_regs *regs) | |||
683 | static __always_inline void | 691 | static __always_inline void |
684 | perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) | 692 | perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) |
685 | { | 693 | { |
686 | struct pt_regs hot_regs; | 694 | if (static_key_false(&perf_swevent_enabled[event_id])) |
695 | __perf_sw_event(event_id, nr, regs, addr); | ||
696 | } | ||
697 | |||
698 | DECLARE_PER_CPU(struct pt_regs, __perf_regs[4]); | ||
687 | 699 | ||
700 | /* | ||
701 | * 'Special' version for the scheduler, it hard assumes no recursion, | ||
702 | * which is guaranteed by us not actually scheduling inside other swevents | ||
703 | * because those disable preemption. | ||
704 | */ | ||
705 | static __always_inline void | ||
706 | perf_sw_event_sched(u32 event_id, u64 nr, u64 addr) | ||
707 | { | ||
688 | if (static_key_false(&perf_swevent_enabled[event_id])) { | 708 | if (static_key_false(&perf_swevent_enabled[event_id])) { |
689 | if (!regs) { | 709 | struct pt_regs *regs = this_cpu_ptr(&__perf_regs[0]); |
690 | perf_fetch_caller_regs(&hot_regs); | 710 | |
691 | regs = &hot_regs; | 711 | perf_fetch_caller_regs(regs); |
692 | } | 712 | ___perf_sw_event(event_id, nr, regs, addr); |
693 | __perf_sw_event(event_id, nr, regs, addr); | ||
694 | } | 713 | } |
695 | } | 714 | } |
696 | 715 | ||
@@ -706,7 +725,7 @@ static inline void perf_event_task_sched_in(struct task_struct *prev, | |||
706 | static inline void perf_event_task_sched_out(struct task_struct *prev, | 725 | static inline void perf_event_task_sched_out(struct task_struct *prev, |
707 | struct task_struct *next) | 726 | struct task_struct *next) |
708 | { | 727 | { |
709 | perf_sw_event(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, NULL, 0); | 728 | perf_sw_event_sched(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 0); |
710 | 729 | ||
711 | if (static_key_false(&perf_sched_events.key)) | 730 | if (static_key_false(&perf_sched_events.key)) |
712 | __perf_event_task_sched_out(prev, next); | 731 | __perf_event_task_sched_out(prev, next); |
@@ -817,6 +836,8 @@ static inline int perf_event_refresh(struct perf_event *event, int refresh) | |||
817 | static inline void | 836 | static inline void |
818 | perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) { } | 837 | perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) { } |
819 | static inline void | 838 | static inline void |
839 | perf_sw_event_sched(u32 event_id, u64 nr, u64 addr) { } | ||
840 | static inline void | ||
820 | perf_bp_event(struct perf_event *event, void *data) { } | 841 | perf_bp_event(struct perf_event *event, void *data) { } |
821 | 842 | ||
822 | static inline int perf_register_guest_info_callbacks | 843 | static inline int perf_register_guest_info_callbacks |
@@ -893,12 +914,22 @@ struct perf_pmu_events_attr { | |||
893 | const char *event_str; | 914 | const char *event_str; |
894 | }; | 915 | }; |
895 | 916 | ||
917 | ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr, | ||
918 | char *page); | ||
919 | |||
896 | #define PMU_EVENT_ATTR(_name, _var, _id, _show) \ | 920 | #define PMU_EVENT_ATTR(_name, _var, _id, _show) \ |
897 | static struct perf_pmu_events_attr _var = { \ | 921 | static struct perf_pmu_events_attr _var = { \ |
898 | .attr = __ATTR(_name, 0444, _show, NULL), \ | 922 | .attr = __ATTR(_name, 0444, _show, NULL), \ |
899 | .id = _id, \ | 923 | .id = _id, \ |
900 | }; | 924 | }; |
901 | 925 | ||
926 | #define PMU_EVENT_ATTR_STRING(_name, _var, _str) \ | ||
927 | static struct perf_pmu_events_attr _var = { \ | ||
928 | .attr = __ATTR(_name, 0444, perf_event_sysfs_show, NULL), \ | ||
929 | .id = 0, \ | ||
930 | .event_str = _str, \ | ||
931 | }; | ||
932 | |||
902 | #define PMU_FORMAT_ATTR(_name, _format) \ | 933 | #define PMU_FORMAT_ATTR(_name, _format) \ |
903 | static ssize_t \ | 934 | static ssize_t \ |
904 | _name##_show(struct device *dev, \ | 935 | _name##_show(struct device *dev, \ |
diff --git a/include/linux/phy.h b/include/linux/phy.h index 22af8f8f5802..685809835b5c 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h | |||
@@ -327,6 +327,8 @@ struct phy_c45_device_ids { | |||
327 | * c45_ids: 802.3-c45 Device Identifers if is_c45. | 327 | * c45_ids: 802.3-c45 Device Identifers if is_c45. |
328 | * is_c45: Set to true if this phy uses clause 45 addressing. | 328 | * is_c45: Set to true if this phy uses clause 45 addressing. |
329 | * is_internal: Set to true if this phy is internal to a MAC. | 329 | * is_internal: Set to true if this phy is internal to a MAC. |
330 | * has_fixups: Set to true if this phy has fixups/quirks. | ||
331 | * suspended: Set to true if this phy has been suspended successfully. | ||
330 | * state: state of the PHY for management purposes | 332 | * state: state of the PHY for management purposes |
331 | * dev_flags: Device-specific flags used by the PHY driver. | 333 | * dev_flags: Device-specific flags used by the PHY driver. |
332 | * addr: Bus address of PHY | 334 | * addr: Bus address of PHY |
@@ -364,6 +366,7 @@ struct phy_device { | |||
364 | bool is_c45; | 366 | bool is_c45; |
365 | bool is_internal; | 367 | bool is_internal; |
366 | bool has_fixups; | 368 | bool has_fixups; |
369 | bool suspended; | ||
367 | 370 | ||
368 | enum phy_state state; | 371 | enum phy_state state; |
369 | 372 | ||
@@ -565,6 +568,15 @@ struct phy_driver { | |||
565 | void (*write_mmd_indirect)(struct phy_device *dev, int ptrad, | 568 | void (*write_mmd_indirect)(struct phy_device *dev, int ptrad, |
566 | int devnum, int regnum, u32 val); | 569 | int devnum, int regnum, u32 val); |
567 | 570 | ||
571 | /* Get the size and type of the eeprom contained within a plug-in | ||
572 | * module */ | ||
573 | int (*module_info)(struct phy_device *dev, | ||
574 | struct ethtool_modinfo *modinfo); | ||
575 | |||
576 | /* Get the eeprom information from the plug-in module */ | ||
577 | int (*module_eeprom)(struct phy_device *dev, | ||
578 | struct ethtool_eeprom *ee, u8 *data); | ||
579 | |||
568 | struct device_driver driver; | 580 | struct device_driver driver; |
569 | }; | 581 | }; |
570 | #define to_phy_driver(d) container_of(d, struct phy_driver, driver) | 582 | #define to_phy_driver(d) container_of(d, struct phy_driver, driver) |
diff --git a/include/linux/phy/phy-qcom-ufs.h b/include/linux/phy/phy-qcom-ufs.h new file mode 100644 index 000000000000..9d18e9f948e9 --- /dev/null +++ b/include/linux/phy/phy-qcom-ufs.h | |||
@@ -0,0 +1,59 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2013-2015, Linux Foundation. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #ifndef PHY_QCOM_UFS_H_ | ||
16 | #define PHY_QCOM_UFS_H_ | ||
17 | |||
18 | #include "phy.h" | ||
19 | |||
20 | /** | ||
21 | * ufs_qcom_phy_enable_ref_clk() - Enable the phy | ||
22 | * ref clock. | ||
23 | * @phy: reference to a generic phy | ||
24 | * | ||
25 | * returns 0 for success, and non-zero for error. | ||
26 | */ | ||
27 | int ufs_qcom_phy_enable_ref_clk(struct phy *phy); | ||
28 | |||
29 | /** | ||
30 | * ufs_qcom_phy_disable_ref_clk() - Disable the phy | ||
31 | * ref clock. | ||
32 | * @phy: reference to a generic phy. | ||
33 | */ | ||
34 | void ufs_qcom_phy_disable_ref_clk(struct phy *phy); | ||
35 | |||
36 | /** | ||
37 | * ufs_qcom_phy_enable_dev_ref_clk() - Enable the device | ||
38 | * ref clock. | ||
39 | * @phy: reference to a generic phy. | ||
40 | */ | ||
41 | void ufs_qcom_phy_enable_dev_ref_clk(struct phy *phy); | ||
42 | |||
43 | /** | ||
44 | * ufs_qcom_phy_disable_dev_ref_clk() - Disable the device | ||
45 | * ref clock. | ||
46 | * @phy: reference to a generic phy. | ||
47 | */ | ||
48 | void ufs_qcom_phy_disable_dev_ref_clk(struct phy *phy); | ||
49 | |||
50 | int ufs_qcom_phy_enable_iface_clk(struct phy *phy); | ||
51 | void ufs_qcom_phy_disable_iface_clk(struct phy *phy); | ||
52 | int ufs_qcom_phy_start_serdes(struct phy *phy); | ||
53 | int ufs_qcom_phy_set_tx_lane_enable(struct phy *phy, u32 tx_lanes); | ||
54 | int ufs_qcom_phy_calibrate_phy(struct phy *phy, bool is_rate_B); | ||
55 | int ufs_qcom_phy_is_pcs_ready(struct phy *phy); | ||
56 | void ufs_qcom_phy_save_controller_version(struct phy *phy, | ||
57 | u8 major, u16 minor, u16 step); | ||
58 | |||
59 | #endif /* PHY_QCOM_UFS_H_ */ | ||
diff --git a/include/linux/pid_namespace.h b/include/linux/pid_namespace.h index b9cf6c51b181..918b117a7cd3 100644 --- a/include/linux/pid_namespace.h +++ b/include/linux/pid_namespace.h | |||
@@ -19,7 +19,7 @@ struct pidmap { | |||
19 | #define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1) | 19 | #define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1) |
20 | #define PIDMAP_ENTRIES ((PID_MAX_LIMIT+BITS_PER_PAGE-1)/BITS_PER_PAGE) | 20 | #define PIDMAP_ENTRIES ((PID_MAX_LIMIT+BITS_PER_PAGE-1)/BITS_PER_PAGE) |
21 | 21 | ||
22 | struct bsd_acct_struct; | 22 | struct fs_pin; |
23 | 23 | ||
24 | struct pid_namespace { | 24 | struct pid_namespace { |
25 | struct kref kref; | 25 | struct kref kref; |
@@ -37,7 +37,7 @@ struct pid_namespace { | |||
37 | struct dentry *proc_thread_self; | 37 | struct dentry *proc_thread_self; |
38 | #endif | 38 | #endif |
39 | #ifdef CONFIG_BSD_PROCESS_ACCT | 39 | #ifdef CONFIG_BSD_PROCESS_ACCT |
40 | struct bsd_acct_struct *bacct; | 40 | struct fs_pin *bacct; |
41 | #endif | 41 | #endif |
42 | struct user_namespace *user_ns; | 42 | struct user_namespace *user_ns; |
43 | struct work_struct proc_work; | 43 | struct work_struct proc_work; |
diff --git a/include/linux/pinctrl/consumer.h b/include/linux/pinctrl/consumer.h index 18eccefea06e..72c0415d6c21 100644 --- a/include/linux/pinctrl/consumer.h +++ b/include/linux/pinctrl/consumer.h | |||
@@ -82,7 +82,7 @@ static inline int pinctrl_gpio_direction_output(unsigned gpio) | |||
82 | 82 | ||
83 | static inline struct pinctrl * __must_check pinctrl_get(struct device *dev) | 83 | static inline struct pinctrl * __must_check pinctrl_get(struct device *dev) |
84 | { | 84 | { |
85 | return NULL; | 85 | return ERR_PTR(-ENOSYS); |
86 | } | 86 | } |
87 | 87 | ||
88 | static inline void pinctrl_put(struct pinctrl *p) | 88 | static inline void pinctrl_put(struct pinctrl *p) |
@@ -93,7 +93,7 @@ static inline struct pinctrl_state * __must_check pinctrl_lookup_state( | |||
93 | struct pinctrl *p, | 93 | struct pinctrl *p, |
94 | const char *name) | 94 | const char *name) |
95 | { | 95 | { |
96 | return NULL; | 96 | return ERR_PTR(-ENOSYS); |
97 | } | 97 | } |
98 | 98 | ||
99 | static inline int pinctrl_select_state(struct pinctrl *p, | 99 | static inline int pinctrl_select_state(struct pinctrl *p, |
@@ -104,7 +104,7 @@ static inline int pinctrl_select_state(struct pinctrl *p, | |||
104 | 104 | ||
105 | static inline struct pinctrl * __must_check devm_pinctrl_get(struct device *dev) | 105 | static inline struct pinctrl * __must_check devm_pinctrl_get(struct device *dev) |
106 | { | 106 | { |
107 | return NULL; | 107 | return ERR_PTR(-ENOSYS); |
108 | } | 108 | } |
109 | 109 | ||
110 | static inline void devm_pinctrl_put(struct pinctrl *p) | 110 | static inline void devm_pinctrl_put(struct pinctrl *p) |
diff --git a/include/linux/pinctrl/pinconf-generic.h b/include/linux/pinctrl/pinconf-generic.h index d578a60eff23..fe65962b264f 100644 --- a/include/linux/pinctrl/pinconf-generic.h +++ b/include/linux/pinctrl/pinconf-generic.h | |||
@@ -115,6 +115,18 @@ enum pin_config_param { | |||
115 | PIN_CONFIG_END = 0x7FFF, | 115 | PIN_CONFIG_END = 0x7FFF, |
116 | }; | 116 | }; |
117 | 117 | ||
118 | #ifdef CONFIG_DEBUG_FS | ||
119 | #define PCONFDUMP(a, b, c, d) { .param = a, .display = b, .format = c, \ | ||
120 | .has_arg = d } | ||
121 | |||
122 | struct pin_config_item { | ||
123 | const enum pin_config_param param; | ||
124 | const char * const display; | ||
125 | const char * const format; | ||
126 | bool has_arg; | ||
127 | }; | ||
128 | #endif /* CONFIG_DEBUG_FS */ | ||
129 | |||
118 | /* | 130 | /* |
119 | * Helpful configuration macro to be used in tables etc. | 131 | * Helpful configuration macro to be used in tables etc. |
120 | */ | 132 | */ |
@@ -150,6 +162,12 @@ static inline unsigned long pinconf_to_config_packed(enum pin_config_param param | |||
150 | struct pinctrl_dev; | 162 | struct pinctrl_dev; |
151 | struct pinctrl_map; | 163 | struct pinctrl_map; |
152 | 164 | ||
165 | struct pinconf_generic_params { | ||
166 | const char * const property; | ||
167 | enum pin_config_param param; | ||
168 | u32 default_value; | ||
169 | }; | ||
170 | |||
153 | int pinconf_generic_dt_subnode_to_map(struct pinctrl_dev *pctldev, | 171 | int pinconf_generic_dt_subnode_to_map(struct pinctrl_dev *pctldev, |
154 | struct device_node *np, struct pinctrl_map **map, | 172 | struct device_node *np, struct pinctrl_map **map, |
155 | unsigned *reserved_maps, unsigned *num_maps, | 173 | unsigned *reserved_maps, unsigned *num_maps, |
@@ -174,6 +192,17 @@ static inline int pinconf_generic_dt_node_to_map_pin( | |||
174 | PIN_MAP_TYPE_CONFIGS_PIN); | 192 | PIN_MAP_TYPE_CONFIGS_PIN); |
175 | } | 193 | } |
176 | 194 | ||
195 | static inline int pinconf_generic_dt_node_to_map_all( | ||
196 | struct pinctrl_dev *pctldev, struct device_node *np_config, | ||
197 | struct pinctrl_map **map, unsigned *num_maps) | ||
198 | { | ||
199 | /* | ||
200 | * passing the type as PIN_MAP_TYPE_INVALID causes the underlying parser | ||
201 | * to infer the map type from the DT properties used. | ||
202 | */ | ||
203 | return pinconf_generic_dt_node_to_map(pctldev, np_config, map, num_maps, | ||
204 | PIN_MAP_TYPE_INVALID); | ||
205 | } | ||
177 | #endif | 206 | #endif |
178 | 207 | ||
179 | #endif /* CONFIG_GENERIC_PINCONF */ | 208 | #endif /* CONFIG_GENERIC_PINCONF */ |
diff --git a/include/linux/pinctrl/pinctrl.h b/include/linux/pinctrl/pinctrl.h index cc8e1aff0e28..66e4697516de 100644 --- a/include/linux/pinctrl/pinctrl.h +++ b/include/linux/pinctrl/pinctrl.h | |||
@@ -24,6 +24,7 @@ struct pinctrl_dev; | |||
24 | struct pinctrl_map; | 24 | struct pinctrl_map; |
25 | struct pinmux_ops; | 25 | struct pinmux_ops; |
26 | struct pinconf_ops; | 26 | struct pinconf_ops; |
27 | struct pin_config_item; | ||
27 | struct gpio_chip; | 28 | struct gpio_chip; |
28 | struct device_node; | 29 | struct device_node; |
29 | 30 | ||
@@ -117,6 +118,12 @@ struct pinctrl_ops { | |||
117 | * @confops: pin config operations vtable, if you support pin configuration in | 118 | * @confops: pin config operations vtable, if you support pin configuration in |
118 | * your driver | 119 | * your driver |
119 | * @owner: module providing the pin controller, used for refcounting | 120 | * @owner: module providing the pin controller, used for refcounting |
121 | * @num_custom_params: Number of driver-specific custom parameters to be parsed | ||
122 | * from the hardware description | ||
123 | * @custom_params: List of driver_specific custom parameters to be parsed from | ||
124 | * the hardware description | ||
125 | * @custom_conf_items: Information how to print @params in debugfs, must be | ||
126 | * the same size as the @custom_params, i.e. @num_custom_params | ||
120 | */ | 127 | */ |
121 | struct pinctrl_desc { | 128 | struct pinctrl_desc { |
122 | const char *name; | 129 | const char *name; |
@@ -126,6 +133,11 @@ struct pinctrl_desc { | |||
126 | const struct pinmux_ops *pmxops; | 133 | const struct pinmux_ops *pmxops; |
127 | const struct pinconf_ops *confops; | 134 | const struct pinconf_ops *confops; |
128 | struct module *owner; | 135 | struct module *owner; |
136 | #ifdef CONFIG_GENERIC_PINCONF | ||
137 | unsigned int num_custom_params; | ||
138 | const struct pinconf_generic_params *custom_params; | ||
139 | const struct pin_config_item *custom_conf_items; | ||
140 | #endif | ||
129 | }; | 141 | }; |
130 | 142 | ||
131 | /* External interface to pin controller */ | 143 | /* External interface to pin controller */ |
diff --git a/include/linux/platform_data/cpuidle-exynos.h b/include/linux/platform_data/cpuidle-exynos.h new file mode 100644 index 000000000000..bfa40e4c5d5f --- /dev/null +++ b/include/linux/platform_data/cpuidle-exynos.h | |||
@@ -0,0 +1,20 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2014 Samsung Electronics Co., Ltd. | ||
3 | * http://www.samsung.com | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * published by the Free Software Foundation. | ||
8 | */ | ||
9 | |||
10 | #ifndef __CPUIDLE_EXYNOS_H | ||
11 | #define __CPUIDLE_EXYNOS_H | ||
12 | |||
13 | struct cpuidle_exynos_data { | ||
14 | int (*cpu0_enter_aftr)(void); | ||
15 | int (*cpu1_powerdown)(void); | ||
16 | void (*pre_enter_aftr)(void); | ||
17 | void (*post_enter_aftr)(void); | ||
18 | }; | ||
19 | |||
20 | #endif | ||
diff --git a/include/linux/platform_data/dma-dw.h b/include/linux/platform_data/dma-dw.h index d8155c005242..87ac14c584f2 100644 --- a/include/linux/platform_data/dma-dw.h +++ b/include/linux/platform_data/dma-dw.h | |||
@@ -13,10 +13,12 @@ | |||
13 | 13 | ||
14 | #include <linux/device.h> | 14 | #include <linux/device.h> |
15 | 15 | ||
16 | #define DW_DMA_MAX_NR_MASTERS 4 | ||
17 | |||
16 | /** | 18 | /** |
17 | * struct dw_dma_slave - Controller-specific information about a slave | 19 | * struct dw_dma_slave - Controller-specific information about a slave |
18 | * | 20 | * |
19 | * @dma_dev: required DMA master device. Depricated. | 21 | * @dma_dev: required DMA master device |
20 | * @src_id: src request line | 22 | * @src_id: src request line |
21 | * @dst_id: dst request line | 23 | * @dst_id: dst request line |
22 | * @src_master: src master for transfers on allocated channel. | 24 | * @src_master: src master for transfers on allocated channel. |
@@ -53,7 +55,7 @@ struct dw_dma_platform_data { | |||
53 | unsigned char chan_priority; | 55 | unsigned char chan_priority; |
54 | unsigned short block_size; | 56 | unsigned short block_size; |
55 | unsigned char nr_masters; | 57 | unsigned char nr_masters; |
56 | unsigned char data_width[4]; | 58 | unsigned char data_width[DW_DMA_MAX_NR_MASTERS]; |
57 | }; | 59 | }; |
58 | 60 | ||
59 | #endif /* _PLATFORM_DATA_DMA_DW_H */ | 61 | #endif /* _PLATFORM_DATA_DMA_DW_H */ |
diff --git a/include/linux/platform_data/dma-mmp_tdma.h b/include/linux/platform_data/dma-mmp_tdma.h index 66574ea39f97..0c72886030ef 100644 --- a/include/linux/platform_data/dma-mmp_tdma.h +++ b/include/linux/platform_data/dma-mmp_tdma.h | |||
@@ -28,6 +28,13 @@ struct sram_platdata { | |||
28 | int granularity; | 28 | int granularity; |
29 | }; | 29 | }; |
30 | 30 | ||
31 | #ifdef CONFIG_ARM | ||
31 | extern struct gen_pool *sram_get_gpool(char *pool_name); | 32 | extern struct gen_pool *sram_get_gpool(char *pool_name); |
33 | #else | ||
34 | static inline struct gen_pool *sram_get_gpool(char *pool_name) | ||
35 | { | ||
36 | return NULL; | ||
37 | } | ||
38 | #endif | ||
32 | 39 | ||
33 | #endif /* __DMA_MMP_TDMA_H */ | 40 | #endif /* __DMA_MMP_TDMA_H */ |
diff --git a/include/linux/platform_data/ipmmu-vmsa.h b/include/linux/platform_data/ipmmu-vmsa.h deleted file mode 100644 index 5275b3ac6d37..000000000000 --- a/include/linux/platform_data/ipmmu-vmsa.h +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | /* | ||
2 | * IPMMU VMSA Platform Data | ||
3 | * | ||
4 | * Copyright (C) 2014 Renesas Electronics Corporation | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; version 2 of the License. | ||
9 | */ | ||
10 | |||
11 | #ifndef __IPMMU_VMSA_H__ | ||
12 | #define __IPMMU_VMSA_H__ | ||
13 | |||
14 | struct ipmmu_vmsa_master { | ||
15 | const char *name; | ||
16 | unsigned int utlb; | ||
17 | }; | ||
18 | |||
19 | struct ipmmu_vmsa_platform_data { | ||
20 | const struct ipmmu_vmsa_master *masters; | ||
21 | unsigned int num_masters; | ||
22 | }; | ||
23 | |||
24 | #endif /* __IPMMU_VMSA_H__ */ | ||
diff --git a/include/linux/platform_data/irda-sa11x0.h b/include/linux/platform_data/irda-sa11x0.h new file mode 100644 index 000000000000..38f77b5e56cf --- /dev/null +++ b/include/linux/platform_data/irda-sa11x0.h | |||
@@ -0,0 +1,20 @@ | |||
1 | /* | ||
2 | * arch/arm/include/asm/mach/irda.h | ||
3 | * | ||
4 | * Copyright (C) 2004 Russell King. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #ifndef __ASM_ARM_MACH_IRDA_H | ||
11 | #define __ASM_ARM_MACH_IRDA_H | ||
12 | |||
13 | struct irda_platform_data { | ||
14 | int (*startup)(struct device *); | ||
15 | void (*shutdown)(struct device *); | ||
16 | int (*set_power)(struct device *, unsigned int state); | ||
17 | void (*set_speed)(struct device *, unsigned int speed); | ||
18 | }; | ||
19 | |||
20 | #endif | ||
diff --git a/include/linux/platform_data/mmc-omap.h b/include/linux/platform_data/mmc-omap.h index 5c188f4e9bec..929469291406 100644 --- a/include/linux/platform_data/mmc-omap.h +++ b/include/linux/platform_data/mmc-omap.h | |||
@@ -31,10 +31,6 @@ struct omap_mmc_platform_data { | |||
31 | void (*cleanup)(struct device *dev); | 31 | void (*cleanup)(struct device *dev); |
32 | void (*shutdown)(struct device *dev); | 32 | void (*shutdown)(struct device *dev); |
33 | 33 | ||
34 | /* To handle board related suspend/resume functionality for MMC */ | ||
35 | int (*suspend)(struct device *dev, int slot); | ||
36 | int (*resume)(struct device *dev, int slot); | ||
37 | |||
38 | /* Return context loss count due to PM states changing */ | 34 | /* Return context loss count due to PM states changing */ |
39 | int (*get_context_loss_count)(struct device *dev); | 35 | int (*get_context_loss_count)(struct device *dev); |
40 | 36 | ||
diff --git a/include/linux/platform_data/st21nfca.h b/include/linux/platform_data/st21nfca.h index 5087fff96d86..cc2bdafb0c69 100644 --- a/include/linux/platform_data/st21nfca.h +++ b/include/linux/platform_data/st21nfca.h | |||
@@ -26,6 +26,8 @@ | |||
26 | struct st21nfca_nfc_platform_data { | 26 | struct st21nfca_nfc_platform_data { |
27 | unsigned int gpio_ena; | 27 | unsigned int gpio_ena; |
28 | unsigned int irq_polarity; | 28 | unsigned int irq_polarity; |
29 | bool is_ese_present; | ||
30 | bool is_uicc_present; | ||
29 | }; | 31 | }; |
30 | 32 | ||
31 | #endif /* _ST21NFCA_HCI_H_ */ | 33 | #endif /* _ST21NFCA_HCI_H_ */ |
diff --git a/include/linux/platform_data/st21nfcb.h b/include/linux/platform_data/st21nfcb.h index c3b432f5b63e..b023373d9874 100644 --- a/include/linux/platform_data/st21nfcb.h +++ b/include/linux/platform_data/st21nfcb.h | |||
@@ -19,8 +19,6 @@ | |||
19 | #ifndef _ST21NFCB_NCI_H_ | 19 | #ifndef _ST21NFCB_NCI_H_ |
20 | #define _ST21NFCB_NCI_H_ | 20 | #define _ST21NFCB_NCI_H_ |
21 | 21 | ||
22 | #include <linux/i2c.h> | ||
23 | |||
24 | #define ST21NFCB_NCI_DRIVER_NAME "st21nfcb_nci" | 22 | #define ST21NFCB_NCI_DRIVER_NAME "st21nfcb_nci" |
25 | 23 | ||
26 | struct st21nfcb_nfc_platform_data { | 24 | struct st21nfcb_nfc_platform_data { |
@@ -28,4 +26,4 @@ struct st21nfcb_nfc_platform_data { | |||
28 | unsigned int irq_polarity; | 26 | unsigned int irq_polarity; |
29 | }; | 27 | }; |
30 | 28 | ||
31 | #endif /* _ST21NFCA_HCI_H_ */ | 29 | #endif /* _ST21NFCB_NCI_H_ */ |
diff --git a/include/linux/platform_data/tpm_stm_st33.h b/include/linux/platform_data/tpm_stm_st33.h new file mode 100644 index 000000000000..ff75310c0f47 --- /dev/null +++ b/include/linux/platform_data/tpm_stm_st33.h | |||
@@ -0,0 +1,39 @@ | |||
1 | /* | ||
2 | * STMicroelectronics TPM I2C Linux driver for TPM ST33ZP24 | ||
3 | * Copyright (C) 2009, 2010 STMicroelectronics | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License as published by | ||
7 | * the Free Software Foundation; either version 2 of the License, or | ||
8 | * (at your option) any later version. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
17 | * | ||
18 | * STMicroelectronics version 1.2.0, Copyright (C) 2010 | ||
19 | * STMicroelectronics comes with ABSOLUTELY NO WARRANTY. | ||
20 | * This is free software, and you are welcome to redistribute it | ||
21 | * under certain conditions. | ||
22 | * | ||
23 | * @Author: Christophe RICARD tpmsupport@st.com | ||
24 | * | ||
25 | * @File: stm_st33_tpm.h | ||
26 | * | ||
27 | * @Date: 09/15/2010 | ||
28 | */ | ||
29 | #ifndef __STM_ST33_TPM_H__ | ||
30 | #define __STM_ST33_TPM_H__ | ||
31 | |||
32 | #define TPM_ST33_I2C "st33zp24-i2c" | ||
33 | #define TPM_ST33_SPI "st33zp24-spi" | ||
34 | |||
35 | struct st33zp24_platform_data { | ||
36 | int io_lpcpd; | ||
37 | }; | ||
38 | |||
39 | #endif /* __STM_ST33_TPM_H__ */ | ||
diff --git a/include/linux/platform_data/vsp1.h b/include/linux/platform_data/vsp1.h deleted file mode 100644 index 63170e2614b3..000000000000 --- a/include/linux/platform_data/vsp1.h +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | /* | ||
2 | * vsp1.h -- R-Car VSP1 Platform Data | ||
3 | * | ||
4 | * Copyright (C) 2013 Renesas Corporation | ||
5 | * | ||
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.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 | ||
11 | * (at your option) any later version. | ||
12 | */ | ||
13 | #ifndef __PLATFORM_VSP1_H__ | ||
14 | #define __PLATFORM_VSP1_H__ | ||
15 | |||
16 | #define VSP1_HAS_LIF (1 << 0) | ||
17 | #define VSP1_HAS_LUT (1 << 1) | ||
18 | #define VSP1_HAS_SRU (1 << 2) | ||
19 | |||
20 | struct vsp1_platform_data { | ||
21 | unsigned int features; | ||
22 | unsigned int rpf_count; | ||
23 | unsigned int uds_count; | ||
24 | unsigned int wpf_count; | ||
25 | }; | ||
26 | |||
27 | #endif /* __PLATFORM_VSP1_H__ */ | ||
diff --git a/include/linux/pm.h b/include/linux/pm.h index 8b5976364619..e2f1be6dd9dd 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h | |||
@@ -597,7 +597,7 @@ struct dev_pm_info { | |||
597 | 597 | ||
598 | extern void update_pm_runtime_accounting(struct device *dev); | 598 | extern void update_pm_runtime_accounting(struct device *dev); |
599 | extern int dev_pm_get_subsys_data(struct device *dev); | 599 | extern int dev_pm_get_subsys_data(struct device *dev); |
600 | extern int dev_pm_put_subsys_data(struct device *dev); | 600 | extern void dev_pm_put_subsys_data(struct device *dev); |
601 | 601 | ||
602 | /* | 602 | /* |
603 | * Power domains provide callbacks that are executed during system suspend, | 603 | * Power domains provide callbacks that are executed during system suspend, |
diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h index a9edab2c787a..080e778118ba 100644 --- a/include/linux/pm_domain.h +++ b/include/linux/pm_domain.h | |||
@@ -113,8 +113,6 @@ struct generic_pm_domain_data { | |||
113 | struct pm_domain_data base; | 113 | struct pm_domain_data base; |
114 | struct gpd_timing_data td; | 114 | struct gpd_timing_data td; |
115 | struct notifier_block nb; | 115 | struct notifier_block nb; |
116 | struct mutex lock; | ||
117 | unsigned int refcount; | ||
118 | int need_restore; | 116 | int need_restore; |
119 | }; | 117 | }; |
120 | 118 | ||
@@ -140,7 +138,6 @@ extern int __pm_genpd_name_add_device(const char *domain_name, | |||
140 | 138 | ||
141 | extern int pm_genpd_remove_device(struct generic_pm_domain *genpd, | 139 | extern int pm_genpd_remove_device(struct generic_pm_domain *genpd, |
142 | struct device *dev); | 140 | struct device *dev); |
143 | extern void pm_genpd_dev_need_restore(struct device *dev, bool val); | ||
144 | extern int pm_genpd_add_subdomain(struct generic_pm_domain *genpd, | 141 | extern int pm_genpd_add_subdomain(struct generic_pm_domain *genpd, |
145 | struct generic_pm_domain *new_subdomain); | 142 | struct generic_pm_domain *new_subdomain); |
146 | extern int pm_genpd_add_subdomain_names(const char *master_name, | 143 | extern int pm_genpd_add_subdomain_names(const char *master_name, |
@@ -187,7 +184,6 @@ static inline int pm_genpd_remove_device(struct generic_pm_domain *genpd, | |||
187 | { | 184 | { |
188 | return -ENOSYS; | 185 | return -ENOSYS; |
189 | } | 186 | } |
190 | static inline void pm_genpd_dev_need_restore(struct device *dev, bool val) {} | ||
191 | static inline int pm_genpd_add_subdomain(struct generic_pm_domain *genpd, | 187 | static inline int pm_genpd_add_subdomain(struct generic_pm_domain *genpd, |
192 | struct generic_pm_domain *new_sd) | 188 | struct generic_pm_domain *new_sd) |
193 | { | 189 | { |
diff --git a/include/linux/pnp.h b/include/linux/pnp.h index 195aafc6cd07..6512e9cbc6d5 100644 --- a/include/linux/pnp.h +++ b/include/linux/pnp.h | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/list.h> | 12 | #include <linux/list.h> |
13 | #include <linux/errno.h> | 13 | #include <linux/errno.h> |
14 | #include <linux/mod_devicetable.h> | 14 | #include <linux/mod_devicetable.h> |
15 | #include <linux/console.h> | ||
15 | 16 | ||
16 | #define PNP_NAME_LEN 50 | 17 | #define PNP_NAME_LEN 50 |
17 | 18 | ||
@@ -309,15 +310,22 @@ struct pnp_fixup { | |||
309 | #define PNP_DISABLE 0x0004 | 310 | #define PNP_DISABLE 0x0004 |
310 | #define PNP_CONFIGURABLE 0x0008 | 311 | #define PNP_CONFIGURABLE 0x0008 |
311 | #define PNP_REMOVABLE 0x0010 | 312 | #define PNP_REMOVABLE 0x0010 |
313 | #define PNP_CONSOLE 0x0020 | ||
312 | 314 | ||
313 | #define pnp_can_read(dev) (((dev)->protocol->get) && \ | 315 | #define pnp_can_read(dev) (((dev)->protocol->get) && \ |
314 | ((dev)->capabilities & PNP_READ)) | 316 | ((dev)->capabilities & PNP_READ)) |
315 | #define pnp_can_write(dev) (((dev)->protocol->set) && \ | 317 | #define pnp_can_write(dev) (((dev)->protocol->set) && \ |
316 | ((dev)->capabilities & PNP_WRITE)) | 318 | ((dev)->capabilities & PNP_WRITE)) |
317 | #define pnp_can_disable(dev) (((dev)->protocol->disable) && \ | 319 | #define pnp_can_disable(dev) (((dev)->protocol->disable) && \ |
318 | ((dev)->capabilities & PNP_DISABLE)) | 320 | ((dev)->capabilities & PNP_DISABLE) && \ |
321 | (!((dev)->capabilities & PNP_CONSOLE) || \ | ||
322 | console_suspend_enabled)) | ||
319 | #define pnp_can_configure(dev) ((!(dev)->active) && \ | 323 | #define pnp_can_configure(dev) ((!(dev)->active) && \ |
320 | ((dev)->capabilities & PNP_CONFIGURABLE)) | 324 | ((dev)->capabilities & PNP_CONFIGURABLE)) |
325 | #define pnp_can_suspend(dev) (((dev)->protocol->suspend) && \ | ||
326 | (!((dev)->capabilities & PNP_CONSOLE) || \ | ||
327 | console_suspend_enabled)) | ||
328 | |||
321 | 329 | ||
322 | #ifdef CONFIG_ISAPNP | 330 | #ifdef CONFIG_ISAPNP |
323 | extern struct pnp_protocol isapnp_protocol; | 331 | extern struct pnp_protocol isapnp_protocol; |
diff --git a/include/linux/power/charger-manager.h b/include/linux/power/charger-manager.h index e97fc656a058..416ebeb6ee1e 100644 --- a/include/linux/power/charger-manager.h +++ b/include/linux/power/charger-manager.h | |||
@@ -17,6 +17,7 @@ | |||
17 | 17 | ||
18 | #include <linux/power_supply.h> | 18 | #include <linux/power_supply.h> |
19 | #include <linux/extcon.h> | 19 | #include <linux/extcon.h> |
20 | #include <linux/alarmtimer.h> | ||
20 | 21 | ||
21 | enum data_source { | 22 | enum data_source { |
22 | CM_BATTERY_PRESENT, | 23 | CM_BATTERY_PRESENT, |
@@ -45,29 +46,6 @@ enum cm_event_types { | |||
45 | }; | 46 | }; |
46 | 47 | ||
47 | /** | 48 | /** |
48 | * struct charger_global_desc | ||
49 | * @rtc_name: the name of RTC used to wake up the system from suspend. | ||
50 | * @rtc_only_wakeup: | ||
51 | * If the system is woken up by waekup-sources other than the RTC or | ||
52 | * callbacks, Charger Manager should recognize with | ||
53 | * rtc_only_wakeup() returning false. | ||
54 | * If the RTC given to CM is the only wakeup reason, | ||
55 | * rtc_only_wakeup should return true. | ||
56 | * @assume_timer_stops_in_suspend: | ||
57 | * Assume that the jiffy timer stops in suspend-to-RAM. | ||
58 | * When enabled, CM does not rely on jiffies value in | ||
59 | * suspend_again and assumes that jiffies value does not | ||
60 | * change during suspend. | ||
61 | */ | ||
62 | struct charger_global_desc { | ||
63 | char *rtc_name; | ||
64 | |||
65 | bool (*rtc_only_wakeup)(void); | ||
66 | |||
67 | bool assume_timer_stops_in_suspend; | ||
68 | }; | ||
69 | |||
70 | /** | ||
71 | * struct charger_cable | 49 | * struct charger_cable |
72 | * @extcon_name: the name of extcon device. | 50 | * @extcon_name: the name of extcon device. |
73 | * @name: the name of charger cable(external connector). | 51 | * @name: the name of charger cable(external connector). |
@@ -266,22 +244,14 @@ struct charger_manager { | |||
266 | char psy_name_buf[PSY_NAME_MAX + 1]; | 244 | char psy_name_buf[PSY_NAME_MAX + 1]; |
267 | struct power_supply charger_psy; | 245 | struct power_supply charger_psy; |
268 | 246 | ||
269 | bool status_save_ext_pwr_inserted; | ||
270 | bool status_save_batt; | ||
271 | |||
272 | u64 charging_start_time; | 247 | u64 charging_start_time; |
273 | u64 charging_end_time; | 248 | u64 charging_end_time; |
274 | }; | 249 | }; |
275 | 250 | ||
276 | #ifdef CONFIG_CHARGER_MANAGER | 251 | #ifdef CONFIG_CHARGER_MANAGER |
277 | extern int setup_charger_manager(struct charger_global_desc *gd); | ||
278 | extern bool cm_suspend_again(void); | ||
279 | extern void cm_notify_event(struct power_supply *psy, | 252 | extern void cm_notify_event(struct power_supply *psy, |
280 | enum cm_event_types type, char *msg); | 253 | enum cm_event_types type, char *msg); |
281 | #else | 254 | #else |
282 | static inline int setup_charger_manager(struct charger_global_desc *gd) | ||
283 | { return 0; } | ||
284 | static inline bool cm_suspend_again(void) { return false; } | ||
285 | static inline void cm_notify_event(struct power_supply *psy, | 255 | static inline void cm_notify_event(struct power_supply *psy, |
286 | enum cm_event_types type, char *msg) { } | 256 | enum cm_event_types type, char *msg) { } |
287 | #endif | 257 | #endif |
diff --git a/include/linux/printk.h b/include/linux/printk.h index 4d5bf5726578..baa3f97d8ce8 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h | |||
@@ -417,9 +417,9 @@ enum { | |||
417 | DUMP_PREFIX_ADDRESS, | 417 | DUMP_PREFIX_ADDRESS, |
418 | DUMP_PREFIX_OFFSET | 418 | DUMP_PREFIX_OFFSET |
419 | }; | 419 | }; |
420 | extern void hex_dump_to_buffer(const void *buf, size_t len, | 420 | extern int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, |
421 | int rowsize, int groupsize, | 421 | int groupsize, char *linebuf, size_t linebuflen, |
422 | char *linebuf, size_t linebuflen, bool ascii); | 422 | bool ascii); |
423 | #ifdef CONFIG_PRINTK | 423 | #ifdef CONFIG_PRINTK |
424 | extern void print_hex_dump(const char *level, const char *prefix_str, | 424 | extern void print_hex_dump(const char *level, const char *prefix_str, |
425 | int prefix_type, int rowsize, int groupsize, | 425 | int prefix_type, int rowsize, int groupsize, |
diff --git a/include/linux/pstore.h b/include/linux/pstore.h index ece0c6bbfcc5..8884f6e507f7 100644 --- a/include/linux/pstore.h +++ b/include/linux/pstore.h | |||
@@ -39,6 +39,7 @@ enum pstore_type_id { | |||
39 | PSTORE_TYPE_PPC_RTAS = 4, | 39 | PSTORE_TYPE_PPC_RTAS = 4, |
40 | PSTORE_TYPE_PPC_OF = 5, | 40 | PSTORE_TYPE_PPC_OF = 5, |
41 | PSTORE_TYPE_PPC_COMMON = 6, | 41 | PSTORE_TYPE_PPC_COMMON = 6, |
42 | PSTORE_TYPE_PMSG = 7, | ||
42 | PSTORE_TYPE_UNKNOWN = 255 | 43 | PSTORE_TYPE_UNKNOWN = 255 |
43 | }; | 44 | }; |
44 | 45 | ||
diff --git a/include/linux/pstore_ram.h b/include/linux/pstore_ram.h index 4af3fdc85b01..9c9d6c154c8e 100644 --- a/include/linux/pstore_ram.h +++ b/include/linux/pstore_ram.h | |||
@@ -81,6 +81,7 @@ struct ramoops_platform_data { | |||
81 | unsigned long record_size; | 81 | unsigned long record_size; |
82 | unsigned long console_size; | 82 | unsigned long console_size; |
83 | unsigned long ftrace_size; | 83 | unsigned long ftrace_size; |
84 | unsigned long pmsg_size; | ||
84 | int dump_oops; | 85 | int dump_oops; |
85 | struct persistent_ram_ecc_info ecc_info; | 86 | struct persistent_ram_ecc_info ecc_info; |
86 | }; | 87 | }; |
diff --git a/include/linux/pxa2xx_ssp.h b/include/linux/pxa2xx_ssp.h index 77aed9ea1d26..dab545bb66b3 100644 --- a/include/linux/pxa2xx_ssp.h +++ b/include/linux/pxa2xx_ssp.h | |||
@@ -37,6 +37,7 @@ | |||
37 | #define SSDR (0x10) /* SSP Data Write/Data Read Register */ | 37 | #define SSDR (0x10) /* SSP Data Write/Data Read Register */ |
38 | 38 | ||
39 | #define SSTO (0x28) /* SSP Time Out Register */ | 39 | #define SSTO (0x28) /* SSP Time Out Register */ |
40 | #define DDS_RATE (0x28) /* SSP DDS Clock Rate Register (Intel Quark) */ | ||
40 | #define SSPSP (0x2C) /* SSP Programmable Serial Protocol */ | 41 | #define SSPSP (0x2C) /* SSP Programmable Serial Protocol */ |
41 | #define SSTSA (0x30) /* SSP Tx Timeslot Active */ | 42 | #define SSTSA (0x30) /* SSP Tx Timeslot Active */ |
42 | #define SSRSA (0x34) /* SSP Rx Timeslot Active */ | 43 | #define SSRSA (0x34) /* SSP Rx Timeslot Active */ |
diff --git a/include/linux/quota.h b/include/linux/quota.h index 097d7eb2441e..d534e8ed308a 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
@@ -216,19 +216,21 @@ struct mem_dqinfo { | |||
216 | unsigned long dqi_flags; | 216 | unsigned long dqi_flags; |
217 | unsigned int dqi_bgrace; | 217 | unsigned int dqi_bgrace; |
218 | unsigned int dqi_igrace; | 218 | unsigned int dqi_igrace; |
219 | qsize_t dqi_maxblimit; | 219 | qsize_t dqi_max_spc_limit; |
220 | qsize_t dqi_maxilimit; | 220 | qsize_t dqi_max_ino_limit; |
221 | void *dqi_priv; | 221 | void *dqi_priv; |
222 | }; | 222 | }; |
223 | 223 | ||
224 | struct super_block; | 224 | struct super_block; |
225 | 225 | ||
226 | #define DQF_MASK 0xffff /* Mask for format specific flags */ | 226 | /* Mask for flags passed to userspace */ |
227 | #define DQF_GETINFO_MASK 0x1ffff /* Mask for flags passed to userspace */ | 227 | #define DQF_GETINFO_MASK (DQF_ROOT_SQUASH | DQF_SYS_FILE) |
228 | #define DQF_SETINFO_MASK 0xffff /* Mask for flags modifiable from userspace */ | 228 | /* Mask for flags modifiable from userspace */ |
229 | #define DQF_SYS_FILE_B 16 | 229 | #define DQF_SETINFO_MASK DQF_ROOT_SQUASH |
230 | #define DQF_SYS_FILE (1 << DQF_SYS_FILE_B) /* Quota file stored as system file */ | 230 | |
231 | #define DQF_INFO_DIRTY_B 31 | 231 | enum { |
232 | DQF_INFO_DIRTY_B = DQF_PRIVATE, | ||
233 | }; | ||
232 | #define DQF_INFO_DIRTY (1 << DQF_INFO_DIRTY_B) /* Is info dirty? */ | 234 | #define DQF_INFO_DIRTY (1 << DQF_INFO_DIRTY_B) /* Is info dirty? */ |
233 | 235 | ||
234 | extern void mark_info_dirty(struct super_block *sb, int type); | 236 | extern void mark_info_dirty(struct super_block *sb, int type); |
@@ -367,15 +369,15 @@ struct qc_dqblk { | |||
367 | /* Operations handling requests from userspace */ | 369 | /* Operations handling requests from userspace */ |
368 | struct quotactl_ops { | 370 | struct quotactl_ops { |
369 | int (*quota_on)(struct super_block *, int, int, struct path *); | 371 | int (*quota_on)(struct super_block *, int, int, struct path *); |
370 | int (*quota_on_meta)(struct super_block *, int, int); | ||
371 | int (*quota_off)(struct super_block *, int); | 372 | int (*quota_off)(struct super_block *, int); |
373 | int (*quota_enable)(struct super_block *, unsigned int); | ||
374 | int (*quota_disable)(struct super_block *, unsigned int); | ||
372 | int (*quota_sync)(struct super_block *, int); | 375 | int (*quota_sync)(struct super_block *, int); |
373 | int (*get_info)(struct super_block *, int, struct if_dqinfo *); | 376 | int (*get_info)(struct super_block *, int, struct if_dqinfo *); |
374 | int (*set_info)(struct super_block *, int, struct if_dqinfo *); | 377 | int (*set_info)(struct super_block *, int, struct if_dqinfo *); |
375 | int (*get_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); | 378 | int (*get_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); |
376 | int (*set_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); | 379 | int (*set_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); |
377 | int (*get_xstate)(struct super_block *, struct fs_quota_stat *); | 380 | int (*get_xstate)(struct super_block *, struct fs_quota_stat *); |
378 | int (*set_xstate)(struct super_block *, unsigned int, int); | ||
379 | int (*get_xstatev)(struct super_block *, struct fs_quota_statv *); | 381 | int (*get_xstatev)(struct super_block *, struct fs_quota_statv *); |
380 | int (*rm_xquota)(struct super_block *, unsigned int); | 382 | int (*rm_xquota)(struct super_block *, unsigned int); |
381 | }; | 383 | }; |
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index 29e3455f7d41..df73258cca47 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h | |||
@@ -166,6 +166,7 @@ static inline bool sb_has_quota_active(struct super_block *sb, int type) | |||
166 | */ | 166 | */ |
167 | extern const struct dquot_operations dquot_operations; | 167 | extern const struct dquot_operations dquot_operations; |
168 | extern const struct quotactl_ops dquot_quotactl_ops; | 168 | extern const struct quotactl_ops dquot_quotactl_ops; |
169 | extern const struct quotactl_ops dquot_quotactl_sysfile_ops; | ||
169 | 170 | ||
170 | #else | 171 | #else |
171 | 172 | ||
@@ -386,4 +387,6 @@ static inline void dquot_release_reservation_block(struct inode *inode, | |||
386 | __dquot_free_space(inode, nr << inode->i_blkbits, DQUOT_SPACE_RESERVE); | 387 | __dquot_free_space(inode, nr << inode->i_blkbits, DQUOT_SPACE_RESERVE); |
387 | } | 388 | } |
388 | 389 | ||
390 | unsigned int qtype_enforce_flag(int type); | ||
391 | |||
389 | #endif /* _LINUX_QUOTAOPS_ */ | 392 | #endif /* _LINUX_QUOTAOPS_ */ |
diff --git a/include/linux/rbtree.h b/include/linux/rbtree.h index 57e75ae9910f..fb31765e935a 100644 --- a/include/linux/rbtree.h +++ b/include/linux/rbtree.h | |||
@@ -51,7 +51,7 @@ struct rb_root { | |||
51 | 51 | ||
52 | #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL) | 52 | #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL) |
53 | 53 | ||
54 | /* 'empty' nodes are nodes that are known not to be inserted in an rbree */ | 54 | /* 'empty' nodes are nodes that are known not to be inserted in an rbtree */ |
55 | #define RB_EMPTY_NODE(node) \ | 55 | #define RB_EMPTY_NODE(node) \ |
56 | ((node)->__rb_parent_color == (unsigned long)(node)) | 56 | ((node)->__rb_parent_color == (unsigned long)(node)) |
57 | #define RB_CLEAR_NODE(node) \ | 57 | #define RB_CLEAR_NODE(node) \ |
diff --git a/include/linux/rculist.h b/include/linux/rculist.h index 529bc946f450..a18b16f1dc0e 100644 --- a/include/linux/rculist.h +++ b/include/linux/rculist.h | |||
@@ -524,11 +524,11 @@ static inline void hlist_add_behind_rcu(struct hlist_node *n, | |||
524 | * @member: the name of the hlist_node within the struct. | 524 | * @member: the name of the hlist_node within the struct. |
525 | */ | 525 | */ |
526 | #define hlist_for_each_entry_continue_rcu(pos, member) \ | 526 | #define hlist_for_each_entry_continue_rcu(pos, member) \ |
527 | for (pos = hlist_entry_safe(rcu_dereference((pos)->member.next),\ | 527 | for (pos = hlist_entry_safe(rcu_dereference_raw(hlist_next_rcu( \ |
528 | typeof(*(pos)), member); \ | 528 | &(pos)->member)), typeof(*(pos)), member); \ |
529 | pos; \ | 529 | pos; \ |
530 | pos = hlist_entry_safe(rcu_dereference((pos)->member.next),\ | 530 | pos = hlist_entry_safe(rcu_dereference_raw(hlist_next_rcu( \ |
531 | typeof(*(pos)), member)) | 531 | &(pos)->member)), typeof(*(pos)), member)) |
532 | 532 | ||
533 | /** | 533 | /** |
534 | * hlist_for_each_entry_continue_rcu_bh - iterate over a hlist continuing after current point | 534 | * hlist_for_each_entry_continue_rcu_bh - iterate over a hlist continuing after current point |
@@ -536,11 +536,11 @@ static inline void hlist_add_behind_rcu(struct hlist_node *n, | |||
536 | * @member: the name of the hlist_node within the struct. | 536 | * @member: the name of the hlist_node within the struct. |
537 | */ | 537 | */ |
538 | #define hlist_for_each_entry_continue_rcu_bh(pos, member) \ | 538 | #define hlist_for_each_entry_continue_rcu_bh(pos, member) \ |
539 | for (pos = hlist_entry_safe(rcu_dereference_bh((pos)->member.next),\ | 539 | for (pos = hlist_entry_safe(rcu_dereference_bh(hlist_next_rcu( \ |
540 | typeof(*(pos)), member); \ | 540 | &(pos)->member)), typeof(*(pos)), member); \ |
541 | pos; \ | 541 | pos; \ |
542 | pos = hlist_entry_safe(rcu_dereference_bh((pos)->member.next),\ | 542 | pos = hlist_entry_safe(rcu_dereference_bh(hlist_next_rcu( \ |
543 | typeof(*(pos)), member)) | 543 | &(pos)->member)), typeof(*(pos)), member)) |
544 | 544 | ||
545 | /** | 545 | /** |
546 | * hlist_for_each_entry_from_rcu - iterate over a hlist continuing from current point | 546 | * hlist_for_each_entry_from_rcu - iterate over a hlist continuing from current point |
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index ed4f5939a452..78097491cd99 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h | |||
@@ -331,12 +331,13 @@ static inline void rcu_init_nohz(void) | |||
331 | extern struct srcu_struct tasks_rcu_exit_srcu; | 331 | extern struct srcu_struct tasks_rcu_exit_srcu; |
332 | #define rcu_note_voluntary_context_switch(t) \ | 332 | #define rcu_note_voluntary_context_switch(t) \ |
333 | do { \ | 333 | do { \ |
334 | rcu_all_qs(); \ | ||
334 | if (ACCESS_ONCE((t)->rcu_tasks_holdout)) \ | 335 | if (ACCESS_ONCE((t)->rcu_tasks_holdout)) \ |
335 | ACCESS_ONCE((t)->rcu_tasks_holdout) = false; \ | 336 | ACCESS_ONCE((t)->rcu_tasks_holdout) = false; \ |
336 | } while (0) | 337 | } while (0) |
337 | #else /* #ifdef CONFIG_TASKS_RCU */ | 338 | #else /* #ifdef CONFIG_TASKS_RCU */ |
338 | #define TASKS_RCU(x) do { } while (0) | 339 | #define TASKS_RCU(x) do { } while (0) |
339 | #define rcu_note_voluntary_context_switch(t) do { } while (0) | 340 | #define rcu_note_voluntary_context_switch(t) rcu_all_qs() |
340 | #endif /* #else #ifdef CONFIG_TASKS_RCU */ | 341 | #endif /* #else #ifdef CONFIG_TASKS_RCU */ |
341 | 342 | ||
342 | /** | 343 | /** |
@@ -582,11 +583,11 @@ static inline void rcu_preempt_sleep_check(void) | |||
582 | }) | 583 | }) |
583 | #define __rcu_dereference_check(p, c, space) \ | 584 | #define __rcu_dereference_check(p, c, space) \ |
584 | ({ \ | 585 | ({ \ |
585 | typeof(*p) *_________p1 = (typeof(*p) *__force)ACCESS_ONCE(p); \ | 586 | /* Dependency order vs. p above. */ \ |
587 | typeof(*p) *________p1 = (typeof(*p) *__force)lockless_dereference(p); \ | ||
586 | rcu_lockdep_assert(c, "suspicious rcu_dereference_check() usage"); \ | 588 | rcu_lockdep_assert(c, "suspicious rcu_dereference_check() usage"); \ |
587 | rcu_dereference_sparse(p, space); \ | 589 | rcu_dereference_sparse(p, space); \ |
588 | smp_read_barrier_depends(); /* Dependency order vs. p above. */ \ | 590 | ((typeof(*p) __force __kernel *)(________p1)); \ |
589 | ((typeof(*p) __force __kernel *)(_________p1)); \ | ||
590 | }) | 591 | }) |
591 | #define __rcu_dereference_protected(p, c, space) \ | 592 | #define __rcu_dereference_protected(p, c, space) \ |
592 | ({ \ | 593 | ({ \ |
@@ -603,10 +604,10 @@ static inline void rcu_preempt_sleep_check(void) | |||
603 | }) | 604 | }) |
604 | #define __rcu_dereference_index_check(p, c) \ | 605 | #define __rcu_dereference_index_check(p, c) \ |
605 | ({ \ | 606 | ({ \ |
606 | typeof(p) _________p1 = ACCESS_ONCE(p); \ | 607 | /* Dependency order vs. p above. */ \ |
608 | typeof(p) _________p1 = lockless_dereference(p); \ | ||
607 | rcu_lockdep_assert(c, \ | 609 | rcu_lockdep_assert(c, \ |
608 | "suspicious rcu_dereference_index_check() usage"); \ | 610 | "suspicious rcu_dereference_index_check() usage"); \ |
609 | smp_read_barrier_depends(); /* Dependency order vs. p above. */ \ | ||
610 | (_________p1); \ | 611 | (_________p1); \ |
611 | }) | 612 | }) |
612 | 613 | ||
diff --git a/include/linux/rcutiny.h b/include/linux/rcutiny.h index 0e5366200154..937edaeb150d 100644 --- a/include/linux/rcutiny.h +++ b/include/linux/rcutiny.h | |||
@@ -92,17 +92,49 @@ static inline void rcu_virt_note_context_switch(int cpu) | |||
92 | } | 92 | } |
93 | 93 | ||
94 | /* | 94 | /* |
95 | * Return the number of grace periods. | 95 | * Return the number of grace periods started. |
96 | */ | 96 | */ |
97 | static inline long rcu_batches_completed(void) | 97 | static inline unsigned long rcu_batches_started(void) |
98 | { | 98 | { |
99 | return 0; | 99 | return 0; |
100 | } | 100 | } |
101 | 101 | ||
102 | /* | 102 | /* |
103 | * Return the number of bottom-half grace periods. | 103 | * Return the number of bottom-half grace periods started. |
104 | */ | 104 | */ |
105 | static inline long rcu_batches_completed_bh(void) | 105 | static inline unsigned long rcu_batches_started_bh(void) |
106 | { | ||
107 | return 0; | ||
108 | } | ||
109 | |||
110 | /* | ||
111 | * Return the number of sched grace periods started. | ||
112 | */ | ||
113 | static inline unsigned long rcu_batches_started_sched(void) | ||
114 | { | ||
115 | return 0; | ||
116 | } | ||
117 | |||
118 | /* | ||
119 | * Return the number of grace periods completed. | ||
120 | */ | ||
121 | static inline unsigned long rcu_batches_completed(void) | ||
122 | { | ||
123 | return 0; | ||
124 | } | ||
125 | |||
126 | /* | ||
127 | * Return the number of bottom-half grace periods completed. | ||
128 | */ | ||
129 | static inline unsigned long rcu_batches_completed_bh(void) | ||
130 | { | ||
131 | return 0; | ||
132 | } | ||
133 | |||
134 | /* | ||
135 | * Return the number of sched grace periods completed. | ||
136 | */ | ||
137 | static inline unsigned long rcu_batches_completed_sched(void) | ||
106 | { | 138 | { |
107 | return 0; | 139 | return 0; |
108 | } | 140 | } |
@@ -154,7 +186,10 @@ static inline bool rcu_is_watching(void) | |||
154 | return true; | 186 | return true; |
155 | } | 187 | } |
156 | 188 | ||
157 | |||
158 | #endif /* #else defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_RCU_TRACE) */ | 189 | #endif /* #else defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_RCU_TRACE) */ |
159 | 190 | ||
191 | static inline void rcu_all_qs(void) | ||
192 | { | ||
193 | } | ||
194 | |||
160 | #endif /* __LINUX_RCUTINY_H */ | 195 | #endif /* __LINUX_RCUTINY_H */ |
diff --git a/include/linux/rcutree.h b/include/linux/rcutree.h index 52953790dcca..d2e583a6aaca 100644 --- a/include/linux/rcutree.h +++ b/include/linux/rcutree.h | |||
@@ -81,9 +81,12 @@ void cond_synchronize_rcu(unsigned long oldstate); | |||
81 | 81 | ||
82 | extern unsigned long rcutorture_testseq; | 82 | extern unsigned long rcutorture_testseq; |
83 | extern unsigned long rcutorture_vernum; | 83 | extern unsigned long rcutorture_vernum; |
84 | long rcu_batches_completed(void); | 84 | unsigned long rcu_batches_started(void); |
85 | long rcu_batches_completed_bh(void); | 85 | unsigned long rcu_batches_started_bh(void); |
86 | long rcu_batches_completed_sched(void); | 86 | unsigned long rcu_batches_started_sched(void); |
87 | unsigned long rcu_batches_completed(void); | ||
88 | unsigned long rcu_batches_completed_bh(void); | ||
89 | unsigned long rcu_batches_completed_sched(void); | ||
87 | void show_rcu_gp_kthreads(void); | 90 | void show_rcu_gp_kthreads(void); |
88 | 91 | ||
89 | void rcu_force_quiescent_state(void); | 92 | void rcu_force_quiescent_state(void); |
@@ -97,4 +100,6 @@ extern int rcu_scheduler_active __read_mostly; | |||
97 | 100 | ||
98 | bool rcu_is_watching(void); | 101 | bool rcu_is_watching(void); |
99 | 102 | ||
103 | void rcu_all_qs(void); | ||
104 | |||
100 | #endif /* __LINUX_RCUTREE_H */ | 105 | #endif /* __LINUX_RCUTREE_H */ |
diff --git a/include/linux/regmap.h b/include/linux/regmap.h index 4419b99d8d6e..116655d92269 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h | |||
@@ -468,7 +468,7 @@ bool regmap_reg_in_ranges(unsigned int reg, | |||
468 | * | 468 | * |
469 | * @reg: Offset of the register within the regmap bank | 469 | * @reg: Offset of the register within the regmap bank |
470 | * @lsb: lsb of the register field. | 470 | * @lsb: lsb of the register field. |
471 | * @reg: msb of the register field. | 471 | * @msb: msb of the register field. |
472 | * @id_size: port size if it has some ports | 472 | * @id_size: port size if it has some ports |
473 | * @id_offset: address offset for each ports | 473 | * @id_offset: address offset for each ports |
474 | */ | 474 | */ |
diff --git a/include/linux/regulator/da9211.h b/include/linux/regulator/da9211.h index 5479394fefce..5dd65acc2a69 100644 --- a/include/linux/regulator/da9211.h +++ b/include/linux/regulator/da9211.h | |||
@@ -32,6 +32,8 @@ struct da9211_pdata { | |||
32 | * 2 : 2 phase 2 buck | 32 | * 2 : 2 phase 2 buck |
33 | */ | 33 | */ |
34 | int num_buck; | 34 | int num_buck; |
35 | int gpio_ren[DA9211_MAX_REGULATORS]; | ||
36 | struct device_node *reg_node[DA9211_MAX_REGULATORS]; | ||
35 | struct regulator_init_data *init_data[DA9211_MAX_REGULATORS]; | 37 | struct regulator_init_data *init_data[DA9211_MAX_REGULATORS]; |
36 | }; | 38 | }; |
37 | #endif | 39 | #endif |
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h index 5f1e9ca47417..d4ad5b5a02bb 100644 --- a/include/linux/regulator/driver.h +++ b/include/linux/regulator/driver.h | |||
@@ -21,6 +21,7 @@ | |||
21 | 21 | ||
22 | struct regmap; | 22 | struct regmap; |
23 | struct regulator_dev; | 23 | struct regulator_dev; |
24 | struct regulator_config; | ||
24 | struct regulator_init_data; | 25 | struct regulator_init_data; |
25 | struct regulator_enable_gpio; | 26 | struct regulator_enable_gpio; |
26 | 27 | ||
@@ -205,6 +206,15 @@ enum regulator_type { | |||
205 | * @supply_name: Identifying the regulator supply | 206 | * @supply_name: Identifying the regulator supply |
206 | * @of_match: Name used to identify regulator in DT. | 207 | * @of_match: Name used to identify regulator in DT. |
207 | * @regulators_node: Name of node containing regulator definitions in DT. | 208 | * @regulators_node: Name of node containing regulator definitions in DT. |
209 | * @of_parse_cb: Optional callback called only if of_match is present. | ||
210 | * Will be called for each regulator parsed from DT, during | ||
211 | * init_data parsing. | ||
212 | * The regulator_config passed as argument to the callback will | ||
213 | * be a copy of config passed to regulator_register, valid only | ||
214 | * for this particular call. Callback may freely change the | ||
215 | * config but it cannot store it for later usage. | ||
216 | * Callback should return 0 on success or negative ERRNO | ||
217 | * indicating failure. | ||
208 | * @id: Numerical identifier for the regulator. | 218 | * @id: Numerical identifier for the regulator. |
209 | * @ops: Regulator operations table. | 219 | * @ops: Regulator operations table. |
210 | * @irq: Interrupt number for the regulator. | 220 | * @irq: Interrupt number for the regulator. |
@@ -251,6 +261,9 @@ struct regulator_desc { | |||
251 | const char *supply_name; | 261 | const char *supply_name; |
252 | const char *of_match; | 262 | const char *of_match; |
253 | const char *regulators_node; | 263 | const char *regulators_node; |
264 | int (*of_parse_cb)(struct device_node *, | ||
265 | const struct regulator_desc *, | ||
266 | struct regulator_config *); | ||
254 | int id; | 267 | int id; |
255 | bool continuous_voltage_range; | 268 | bool continuous_voltage_range; |
256 | unsigned n_voltages; | 269 | unsigned n_voltages; |
diff --git a/include/linux/regulator/machine.h b/include/linux/regulator/machine.h index 0b08d05d470b..b07562e082c4 100644 --- a/include/linux/regulator/machine.h +++ b/include/linux/regulator/machine.h | |||
@@ -191,15 +191,22 @@ struct regulator_init_data { | |||
191 | void *driver_data; /* core does not touch this */ | 191 | void *driver_data; /* core does not touch this */ |
192 | }; | 192 | }; |
193 | 193 | ||
194 | int regulator_suspend_prepare(suspend_state_t state); | ||
195 | int regulator_suspend_finish(void); | ||
196 | |||
197 | #ifdef CONFIG_REGULATOR | 194 | #ifdef CONFIG_REGULATOR |
198 | void regulator_has_full_constraints(void); | 195 | void regulator_has_full_constraints(void); |
196 | int regulator_suspend_prepare(suspend_state_t state); | ||
197 | int regulator_suspend_finish(void); | ||
199 | #else | 198 | #else |
200 | static inline void regulator_has_full_constraints(void) | 199 | static inline void regulator_has_full_constraints(void) |
201 | { | 200 | { |
202 | } | 201 | } |
202 | static inline int regulator_suspend_prepare(suspend_state_t state) | ||
203 | { | ||
204 | return 0; | ||
205 | } | ||
206 | static inline int regulator_suspend_finish(void) | ||
207 | { | ||
208 | return 0; | ||
209 | } | ||
203 | #endif | 210 | #endif |
204 | 211 | ||
205 | #endif | 212 | #endif |
diff --git a/include/linux/regulator/mt6397-regulator.h b/include/linux/regulator/mt6397-regulator.h new file mode 100644 index 000000000000..30cc5963e265 --- /dev/null +++ b/include/linux/regulator/mt6397-regulator.h | |||
@@ -0,0 +1,49 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2014 MediaTek Inc. | ||
3 | * Author: Flora Fu <flora.fu@mediatek.com> | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * published by the Free Software Foundation. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | */ | ||
14 | |||
15 | #ifndef __LINUX_REGULATOR_MT6397_H | ||
16 | #define __LINUX_REGULATOR_MT6397_H | ||
17 | |||
18 | enum { | ||
19 | MT6397_ID_VPCA15 = 0, | ||
20 | MT6397_ID_VPCA7, | ||
21 | MT6397_ID_VSRAMCA15, | ||
22 | MT6397_ID_VSRAMCA7, | ||
23 | MT6397_ID_VCORE, | ||
24 | MT6397_ID_VGPU, | ||
25 | MT6397_ID_VDRM, | ||
26 | MT6397_ID_VIO18 = 7, | ||
27 | MT6397_ID_VTCXO, | ||
28 | MT6397_ID_VA28, | ||
29 | MT6397_ID_VCAMA, | ||
30 | MT6397_ID_VIO28, | ||
31 | MT6397_ID_VUSB, | ||
32 | MT6397_ID_VMC, | ||
33 | MT6397_ID_VMCH, | ||
34 | MT6397_ID_VEMC3V3, | ||
35 | MT6397_ID_VGP1, | ||
36 | MT6397_ID_VGP2, | ||
37 | MT6397_ID_VGP3, | ||
38 | MT6397_ID_VGP4, | ||
39 | MT6397_ID_VGP5, | ||
40 | MT6397_ID_VGP6, | ||
41 | MT6397_ID_VIBR, | ||
42 | MT6397_ID_RG_MAX, | ||
43 | }; | ||
44 | |||
45 | #define MT6397_MAX_REGULATOR MT6397_ID_RG_MAX | ||
46 | #define MT6397_REGULATOR_ID97 0x97 | ||
47 | #define MT6397_REGULATOR_ID91 0x91 | ||
48 | |||
49 | #endif /* __LINUX_REGULATOR_MT6397_H */ | ||
diff --git a/include/linux/regulator/pfuze100.h b/include/linux/regulator/pfuze100.h index 364f7a7c43db..70c6c66c5bcf 100644 --- a/include/linux/regulator/pfuze100.h +++ b/include/linux/regulator/pfuze100.h | |||
@@ -49,6 +49,20 @@ | |||
49 | #define PFUZE200_VGEN5 11 | 49 | #define PFUZE200_VGEN5 11 |
50 | #define PFUZE200_VGEN6 12 | 50 | #define PFUZE200_VGEN6 12 |
51 | 51 | ||
52 | #define PFUZE3000_SW1A 0 | ||
53 | #define PFUZE3000_SW1B 1 | ||
54 | #define PFUZE3000_SW2 2 | ||
55 | #define PFUZE3000_SW3 3 | ||
56 | #define PFUZE3000_SWBST 4 | ||
57 | #define PFUZE3000_VSNVS 5 | ||
58 | #define PFUZE3000_VREFDDR 6 | ||
59 | #define PFUZE3000_VLDO1 7 | ||
60 | #define PFUZE3000_VLDO2 8 | ||
61 | #define PFUZE3000_VCCSD 9 | ||
62 | #define PFUZE3000_V33 10 | ||
63 | #define PFUZE3000_VLDO3 11 | ||
64 | #define PFUZE3000_VLDO4 12 | ||
65 | |||
52 | struct regulator_init_data; | 66 | struct regulator_init_data; |
53 | 67 | ||
54 | struct pfuze_regulator_platform_data { | 68 | struct pfuze_regulator_platform_data { |
diff --git a/include/linux/resource_ext.h b/include/linux/resource_ext.h new file mode 100644 index 000000000000..e2bf63d881d4 --- /dev/null +++ b/include/linux/resource_ext.h | |||
@@ -0,0 +1,77 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2015, Intel Corporation | ||
3 | * Author: Jiang Liu <jiang.liu@linux.intel.com> | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify it | ||
6 | * under the terms and conditions of the GNU General Public License, | ||
7 | * version 2, as published by the Free Software Foundation. | ||
8 | * | ||
9 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
12 | * more details. | ||
13 | */ | ||
14 | #ifndef _LINUX_RESOURCE_EXT_H | ||
15 | #define _LINUX_RESOURCE_EXT_H | ||
16 | #include <linux/types.h> | ||
17 | #include <linux/list.h> | ||
18 | #include <linux/ioport.h> | ||
19 | #include <linux/slab.h> | ||
20 | |||
21 | /* Represent resource window for bridge devices */ | ||
22 | struct resource_win { | ||
23 | struct resource res; /* In master (CPU) address space */ | ||
24 | resource_size_t offset; /* Translation offset for bridge */ | ||
25 | }; | ||
26 | |||
27 | /* | ||
28 | * Common resource list management data structure and interfaces to support | ||
29 | * ACPI, PNP and PCI host bridge etc. | ||
30 | */ | ||
31 | struct resource_entry { | ||
32 | struct list_head node; | ||
33 | struct resource *res; /* In master (CPU) address space */ | ||
34 | resource_size_t offset; /* Translation offset for bridge */ | ||
35 | struct resource __res; /* Default storage for res */ | ||
36 | }; | ||
37 | |||
38 | extern struct resource_entry * | ||
39 | resource_list_create_entry(struct resource *res, size_t extra_size); | ||
40 | extern void resource_list_free(struct list_head *head); | ||
41 | |||
42 | static inline void resource_list_add(struct resource_entry *entry, | ||
43 | struct list_head *head) | ||
44 | { | ||
45 | list_add(&entry->node, head); | ||
46 | } | ||
47 | |||
48 | static inline void resource_list_add_tail(struct resource_entry *entry, | ||
49 | struct list_head *head) | ||
50 | { | ||
51 | list_add_tail(&entry->node, head); | ||
52 | } | ||
53 | |||
54 | static inline void resource_list_del(struct resource_entry *entry) | ||
55 | { | ||
56 | list_del(&entry->node); | ||
57 | } | ||
58 | |||
59 | static inline void resource_list_free_entry(struct resource_entry *entry) | ||
60 | { | ||
61 | kfree(entry); | ||
62 | } | ||
63 | |||
64 | static inline void | ||
65 | resource_list_destroy_entry(struct resource_entry *entry) | ||
66 | { | ||
67 | resource_list_del(entry); | ||
68 | resource_list_free_entry(entry); | ||
69 | } | ||
70 | |||
71 | #define resource_list_for_each_entry(entry, list) \ | ||
72 | list_for_each_entry((entry), (list), node) | ||
73 | |||
74 | #define resource_list_for_each_entry_safe(entry, tmp, list) \ | ||
75 | list_for_each_entry_safe((entry), (tmp), (list), node) | ||
76 | |||
77 | #endif /* _LINUX_RESOURCE_EXT_H */ | ||
diff --git a/include/linux/rhashtable.h b/include/linux/rhashtable.h index b93fd89b2e5e..58851275fed9 100644 --- a/include/linux/rhashtable.h +++ b/include/linux/rhashtable.h | |||
@@ -18,16 +18,45 @@ | |||
18 | #ifndef _LINUX_RHASHTABLE_H | 18 | #ifndef _LINUX_RHASHTABLE_H |
19 | #define _LINUX_RHASHTABLE_H | 19 | #define _LINUX_RHASHTABLE_H |
20 | 20 | ||
21 | #include <linux/rculist.h> | 21 | #include <linux/compiler.h> |
22 | #include <linux/list_nulls.h> | ||
23 | #include <linux/workqueue.h> | ||
24 | #include <linux/mutex.h> | ||
25 | |||
26 | /* | ||
27 | * The end of the chain is marked with a special nulls marks which has | ||
28 | * the following format: | ||
29 | * | ||
30 | * +-------+-----------------------------------------------------+-+ | ||
31 | * | Base | Hash |1| | ||
32 | * +-------+-----------------------------------------------------+-+ | ||
33 | * | ||
34 | * Base (4 bits) : Reserved to distinguish between multiple tables. | ||
35 | * Specified via &struct rhashtable_params.nulls_base. | ||
36 | * Hash (27 bits): Full hash (unmasked) of first element added to bucket | ||
37 | * 1 (1 bit) : Nulls marker (always set) | ||
38 | * | ||
39 | * The remaining bits of the next pointer remain unused for now. | ||
40 | */ | ||
41 | #define RHT_BASE_BITS 4 | ||
42 | #define RHT_HASH_BITS 27 | ||
43 | #define RHT_BASE_SHIFT RHT_HASH_BITS | ||
22 | 44 | ||
23 | struct rhash_head { | 45 | struct rhash_head { |
24 | struct rhash_head __rcu *next; | 46 | struct rhash_head __rcu *next; |
25 | }; | 47 | }; |
26 | 48 | ||
27 | #define INIT_HASH_HEAD(ptr) ((ptr)->next = NULL) | 49 | /** |
28 | 50 | * struct bucket_table - Table of hash buckets | |
51 | * @size: Number of hash buckets | ||
52 | * @locks_mask: Mask to apply before accessing locks[] | ||
53 | * @locks: Array of spinlocks protecting individual buckets | ||
54 | * @buckets: size * hash buckets | ||
55 | */ | ||
29 | struct bucket_table { | 56 | struct bucket_table { |
30 | size_t size; | 57 | size_t size; |
58 | unsigned int locks_mask; | ||
59 | spinlock_t *locks; | ||
31 | struct rhash_head __rcu *buckets[]; | 60 | struct rhash_head __rcu *buckets[]; |
32 | }; | 61 | }; |
33 | 62 | ||
@@ -45,11 +74,16 @@ struct rhashtable; | |||
45 | * @hash_rnd: Seed to use while hashing | 74 | * @hash_rnd: Seed to use while hashing |
46 | * @max_shift: Maximum number of shifts while expanding | 75 | * @max_shift: Maximum number of shifts while expanding |
47 | * @min_shift: Minimum number of shifts while shrinking | 76 | * @min_shift: Minimum number of shifts while shrinking |
77 | * @nulls_base: Base value to generate nulls marker | ||
78 | * @locks_mul: Number of bucket locks to allocate per cpu (default: 128) | ||
48 | * @hashfn: Function to hash key | 79 | * @hashfn: Function to hash key |
49 | * @obj_hashfn: Function to hash object | 80 | * @obj_hashfn: Function to hash object |
50 | * @grow_decision: If defined, may return true if table should expand | 81 | * @grow_decision: If defined, may return true if table should expand |
51 | * @shrink_decision: If defined, may return true if table should shrink | 82 | * @shrink_decision: If defined, may return true if table should shrink |
52 | * @mutex_is_held: Must return true if protecting mutex is held | 83 | * |
84 | * Note: when implementing the grow and shrink decision function, min/max | ||
85 | * shift must be enforced, otherwise, resizing watermarks they set may be | ||
86 | * useless. | ||
53 | */ | 87 | */ |
54 | struct rhashtable_params { | 88 | struct rhashtable_params { |
55 | size_t nelem_hint; | 89 | size_t nelem_hint; |
@@ -59,36 +93,95 @@ struct rhashtable_params { | |||
59 | u32 hash_rnd; | 93 | u32 hash_rnd; |
60 | size_t max_shift; | 94 | size_t max_shift; |
61 | size_t min_shift; | 95 | size_t min_shift; |
96 | u32 nulls_base; | ||
97 | size_t locks_mul; | ||
62 | rht_hashfn_t hashfn; | 98 | rht_hashfn_t hashfn; |
63 | rht_obj_hashfn_t obj_hashfn; | 99 | rht_obj_hashfn_t obj_hashfn; |
64 | bool (*grow_decision)(const struct rhashtable *ht, | 100 | bool (*grow_decision)(const struct rhashtable *ht, |
65 | size_t new_size); | 101 | size_t new_size); |
66 | bool (*shrink_decision)(const struct rhashtable *ht, | 102 | bool (*shrink_decision)(const struct rhashtable *ht, |
67 | size_t new_size); | 103 | size_t new_size); |
68 | #ifdef CONFIG_PROVE_LOCKING | ||
69 | int (*mutex_is_held)(void *parent); | ||
70 | void *parent; | ||
71 | #endif | ||
72 | }; | 104 | }; |
73 | 105 | ||
74 | /** | 106 | /** |
75 | * struct rhashtable - Hash table handle | 107 | * struct rhashtable - Hash table handle |
76 | * @tbl: Bucket table | 108 | * @tbl: Bucket table |
109 | * @future_tbl: Table under construction during expansion/shrinking | ||
77 | * @nelems: Number of elements in table | 110 | * @nelems: Number of elements in table |
78 | * @shift: Current size (1 << shift) | 111 | * @shift: Current size (1 << shift) |
79 | * @p: Configuration parameters | 112 | * @p: Configuration parameters |
113 | * @run_work: Deferred worker to expand/shrink asynchronously | ||
114 | * @mutex: Mutex to protect current/future table swapping | ||
115 | * @walkers: List of active walkers | ||
116 | * @being_destroyed: True if table is set up for destruction | ||
80 | */ | 117 | */ |
81 | struct rhashtable { | 118 | struct rhashtable { |
82 | struct bucket_table __rcu *tbl; | 119 | struct bucket_table __rcu *tbl; |
83 | size_t nelems; | 120 | struct bucket_table __rcu *future_tbl; |
84 | size_t shift; | 121 | atomic_t nelems; |
122 | atomic_t shift; | ||
85 | struct rhashtable_params p; | 123 | struct rhashtable_params p; |
124 | struct work_struct run_work; | ||
125 | struct mutex mutex; | ||
126 | struct list_head walkers; | ||
127 | bool being_destroyed; | ||
128 | }; | ||
129 | |||
130 | /** | ||
131 | * struct rhashtable_walker - Hash table walker | ||
132 | * @list: List entry on list of walkers | ||
133 | * @resize: Resize event occured | ||
134 | */ | ||
135 | struct rhashtable_walker { | ||
136 | struct list_head list; | ||
137 | bool resize; | ||
86 | }; | 138 | }; |
87 | 139 | ||
140 | /** | ||
141 | * struct rhashtable_iter - Hash table iterator, fits into netlink cb | ||
142 | * @ht: Table to iterate through | ||
143 | * @p: Current pointer | ||
144 | * @walker: Associated rhashtable walker | ||
145 | * @slot: Current slot | ||
146 | * @skip: Number of entries to skip in slot | ||
147 | */ | ||
148 | struct rhashtable_iter { | ||
149 | struct rhashtable *ht; | ||
150 | struct rhash_head *p; | ||
151 | struct rhashtable_walker *walker; | ||
152 | unsigned int slot; | ||
153 | unsigned int skip; | ||
154 | }; | ||
155 | |||
156 | static inline unsigned long rht_marker(const struct rhashtable *ht, u32 hash) | ||
157 | { | ||
158 | return NULLS_MARKER(ht->p.nulls_base + hash); | ||
159 | } | ||
160 | |||
161 | #define INIT_RHT_NULLS_HEAD(ptr, ht, hash) \ | ||
162 | ((ptr) = (typeof(ptr)) rht_marker(ht, hash)) | ||
163 | |||
164 | static inline bool rht_is_a_nulls(const struct rhash_head *ptr) | ||
165 | { | ||
166 | return ((unsigned long) ptr & 1); | ||
167 | } | ||
168 | |||
169 | static inline unsigned long rht_get_nulls_value(const struct rhash_head *ptr) | ||
170 | { | ||
171 | return ((unsigned long) ptr) >> 1; | ||
172 | } | ||
173 | |||
88 | #ifdef CONFIG_PROVE_LOCKING | 174 | #ifdef CONFIG_PROVE_LOCKING |
89 | int lockdep_rht_mutex_is_held(const struct rhashtable *ht); | 175 | int lockdep_rht_mutex_is_held(struct rhashtable *ht); |
176 | int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash); | ||
90 | #else | 177 | #else |
91 | static inline int lockdep_rht_mutex_is_held(const struct rhashtable *ht) | 178 | static inline int lockdep_rht_mutex_is_held(struct rhashtable *ht) |
179 | { | ||
180 | return 1; | ||
181 | } | ||
182 | |||
183 | static inline int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, | ||
184 | u32 hash) | ||
92 | { | 185 | { |
93 | return 1; | 186 | return 1; |
94 | } | 187 | } |
@@ -96,13 +189,8 @@ static inline int lockdep_rht_mutex_is_held(const struct rhashtable *ht) | |||
96 | 189 | ||
97 | int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params); | 190 | int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params); |
98 | 191 | ||
99 | u32 rhashtable_hashfn(const struct rhashtable *ht, const void *key, u32 len); | ||
100 | u32 rhashtable_obj_hashfn(const struct rhashtable *ht, void *ptr); | ||
101 | |||
102 | void rhashtable_insert(struct rhashtable *ht, struct rhash_head *node); | 192 | void rhashtable_insert(struct rhashtable *ht, struct rhash_head *node); |
103 | bool rhashtable_remove(struct rhashtable *ht, struct rhash_head *node); | 193 | bool rhashtable_remove(struct rhashtable *ht, struct rhash_head *node); |
104 | void rhashtable_remove_pprev(struct rhashtable *ht, struct rhash_head *obj, | ||
105 | struct rhash_head __rcu **pprev); | ||
106 | 194 | ||
107 | bool rht_grow_above_75(const struct rhashtable *ht, size_t new_size); | 195 | bool rht_grow_above_75(const struct rhashtable *ht, size_t new_size); |
108 | bool rht_shrink_below_30(const struct rhashtable *ht, size_t new_size); | 196 | bool rht_shrink_below_30(const struct rhashtable *ht, size_t new_size); |
@@ -110,11 +198,23 @@ bool rht_shrink_below_30(const struct rhashtable *ht, size_t new_size); | |||
110 | int rhashtable_expand(struct rhashtable *ht); | 198 | int rhashtable_expand(struct rhashtable *ht); |
111 | int rhashtable_shrink(struct rhashtable *ht); | 199 | int rhashtable_shrink(struct rhashtable *ht); |
112 | 200 | ||
113 | void *rhashtable_lookup(const struct rhashtable *ht, const void *key); | 201 | void *rhashtable_lookup(struct rhashtable *ht, const void *key); |
114 | void *rhashtable_lookup_compare(const struct rhashtable *ht, u32 hash, | 202 | void *rhashtable_lookup_compare(struct rhashtable *ht, const void *key, |
115 | bool (*compare)(void *, void *), void *arg); | 203 | bool (*compare)(void *, void *), void *arg); |
116 | 204 | ||
117 | void rhashtable_destroy(const struct rhashtable *ht); | 205 | bool rhashtable_lookup_insert(struct rhashtable *ht, struct rhash_head *obj); |
206 | bool rhashtable_lookup_compare_insert(struct rhashtable *ht, | ||
207 | struct rhash_head *obj, | ||
208 | bool (*compare)(void *, void *), | ||
209 | void *arg); | ||
210 | |||
211 | int rhashtable_walk_init(struct rhashtable *ht, struct rhashtable_iter *iter); | ||
212 | void rhashtable_walk_exit(struct rhashtable_iter *iter); | ||
213 | int rhashtable_walk_start(struct rhashtable_iter *iter) __acquires(RCU); | ||
214 | void *rhashtable_walk_next(struct rhashtable_iter *iter); | ||
215 | void rhashtable_walk_stop(struct rhashtable_iter *iter) __releases(RCU); | ||
216 | |||
217 | void rhashtable_destroy(struct rhashtable *ht); | ||
118 | 218 | ||
119 | #define rht_dereference(p, ht) \ | 219 | #define rht_dereference(p, ht) \ |
120 | rcu_dereference_protected(p, lockdep_rht_mutex_is_held(ht)) | 220 | rcu_dereference_protected(p, lockdep_rht_mutex_is_held(ht)) |
@@ -122,92 +222,146 @@ void rhashtable_destroy(const struct rhashtable *ht); | |||
122 | #define rht_dereference_rcu(p, ht) \ | 222 | #define rht_dereference_rcu(p, ht) \ |
123 | rcu_dereference_check(p, lockdep_rht_mutex_is_held(ht)) | 223 | rcu_dereference_check(p, lockdep_rht_mutex_is_held(ht)) |
124 | 224 | ||
125 | #define rht_entry(ptr, type, member) container_of(ptr, type, member) | 225 | #define rht_dereference_bucket(p, tbl, hash) \ |
126 | #define rht_entry_safe(ptr, type, member) \ | 226 | rcu_dereference_protected(p, lockdep_rht_bucket_is_held(tbl, hash)) |
127 | ({ \ | 227 | |
128 | typeof(ptr) __ptr = (ptr); \ | 228 | #define rht_dereference_bucket_rcu(p, tbl, hash) \ |
129 | __ptr ? rht_entry(__ptr, type, member) : NULL; \ | 229 | rcu_dereference_check(p, lockdep_rht_bucket_is_held(tbl, hash)) |
130 | }) | ||
131 | 230 | ||
132 | #define rht_next_entry_safe(pos, ht, member) \ | 231 | #define rht_entry(tpos, pos, member) \ |
133 | ({ \ | 232 | ({ tpos = container_of(pos, typeof(*tpos), member); 1; }) |
134 | pos ? rht_entry_safe(rht_dereference((pos)->member.next, ht), \ | 233 | |
135 | typeof(*(pos)), member) : NULL; \ | 234 | /** |
136 | }) | 235 | * rht_for_each_continue - continue iterating over hash chain |
236 | * @pos: the &struct rhash_head to use as a loop cursor. | ||
237 | * @head: the previous &struct rhash_head to continue from | ||
238 | * @tbl: the &struct bucket_table | ||
239 | * @hash: the hash value / bucket index | ||
240 | */ | ||
241 | #define rht_for_each_continue(pos, head, tbl, hash) \ | ||
242 | for (pos = rht_dereference_bucket(head, tbl, hash); \ | ||
243 | !rht_is_a_nulls(pos); \ | ||
244 | pos = rht_dereference_bucket((pos)->next, tbl, hash)) | ||
137 | 245 | ||
138 | /** | 246 | /** |
139 | * rht_for_each - iterate over hash chain | 247 | * rht_for_each - iterate over hash chain |
140 | * @pos: &struct rhash_head to use as a loop cursor. | 248 | * @pos: the &struct rhash_head to use as a loop cursor. |
141 | * @head: head of the hash chain (struct rhash_head *) | 249 | * @tbl: the &struct bucket_table |
142 | * @ht: pointer to your struct rhashtable | 250 | * @hash: the hash value / bucket index |
143 | */ | 251 | */ |
144 | #define rht_for_each(pos, head, ht) \ | 252 | #define rht_for_each(pos, tbl, hash) \ |
145 | for (pos = rht_dereference(head, ht); \ | 253 | rht_for_each_continue(pos, (tbl)->buckets[hash], tbl, hash) |
146 | pos; \ | 254 | |
147 | pos = rht_dereference((pos)->next, ht)) | 255 | /** |
256 | * rht_for_each_entry_continue - continue iterating over hash chain | ||
257 | * @tpos: the type * to use as a loop cursor. | ||
258 | * @pos: the &struct rhash_head to use as a loop cursor. | ||
259 | * @head: the previous &struct rhash_head to continue from | ||
260 | * @tbl: the &struct bucket_table | ||
261 | * @hash: the hash value / bucket index | ||
262 | * @member: name of the &struct rhash_head within the hashable struct. | ||
263 | */ | ||
264 | #define rht_for_each_entry_continue(tpos, pos, head, tbl, hash, member) \ | ||
265 | for (pos = rht_dereference_bucket(head, tbl, hash); \ | ||
266 | (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \ | ||
267 | pos = rht_dereference_bucket((pos)->next, tbl, hash)) | ||
148 | 268 | ||
149 | /** | 269 | /** |
150 | * rht_for_each_entry - iterate over hash chain of given type | 270 | * rht_for_each_entry - iterate over hash chain of given type |
151 | * @pos: type * to use as a loop cursor. | 271 | * @tpos: the type * to use as a loop cursor. |
152 | * @head: head of the hash chain (struct rhash_head *) | 272 | * @pos: the &struct rhash_head to use as a loop cursor. |
153 | * @ht: pointer to your struct rhashtable | 273 | * @tbl: the &struct bucket_table |
154 | * @member: name of the rhash_head within the hashable struct. | 274 | * @hash: the hash value / bucket index |
275 | * @member: name of the &struct rhash_head within the hashable struct. | ||
155 | */ | 276 | */ |
156 | #define rht_for_each_entry(pos, head, ht, member) \ | 277 | #define rht_for_each_entry(tpos, pos, tbl, hash, member) \ |
157 | for (pos = rht_entry_safe(rht_dereference(head, ht), \ | 278 | rht_for_each_entry_continue(tpos, pos, (tbl)->buckets[hash], \ |
158 | typeof(*(pos)), member); \ | 279 | tbl, hash, member) |
159 | pos; \ | ||
160 | pos = rht_next_entry_safe(pos, ht, member)) | ||
161 | 280 | ||
162 | /** | 281 | /** |
163 | * rht_for_each_entry_safe - safely iterate over hash chain of given type | 282 | * rht_for_each_entry_safe - safely iterate over hash chain of given type |
164 | * @pos: type * to use as a loop cursor. | 283 | * @tpos: the type * to use as a loop cursor. |
165 | * @n: type * to use for temporary next object storage | 284 | * @pos: the &struct rhash_head to use as a loop cursor. |
166 | * @head: head of the hash chain (struct rhash_head *) | 285 | * @next: the &struct rhash_head to use as next in loop cursor. |
167 | * @ht: pointer to your struct rhashtable | 286 | * @tbl: the &struct bucket_table |
168 | * @member: name of the rhash_head within the hashable struct. | 287 | * @hash: the hash value / bucket index |
288 | * @member: name of the &struct rhash_head within the hashable struct. | ||
169 | * | 289 | * |
170 | * This hash chain list-traversal primitive allows for the looped code to | 290 | * This hash chain list-traversal primitive allows for the looped code to |
171 | * remove the loop cursor from the list. | 291 | * remove the loop cursor from the list. |
172 | */ | 292 | */ |
173 | #define rht_for_each_entry_safe(pos, n, head, ht, member) \ | 293 | #define rht_for_each_entry_safe(tpos, pos, next, tbl, hash, member) \ |
174 | for (pos = rht_entry_safe(rht_dereference(head, ht), \ | 294 | for (pos = rht_dereference_bucket((tbl)->buckets[hash], tbl, hash), \ |
175 | typeof(*(pos)), member), \ | 295 | next = !rht_is_a_nulls(pos) ? \ |
176 | n = rht_next_entry_safe(pos, ht, member); \ | 296 | rht_dereference_bucket(pos->next, tbl, hash) : NULL; \ |
177 | pos; \ | 297 | (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \ |
178 | pos = n, \ | 298 | pos = next, \ |
179 | n = rht_next_entry_safe(pos, ht, member)) | 299 | next = !rht_is_a_nulls(pos) ? \ |
300 | rht_dereference_bucket(pos->next, tbl, hash) : NULL) | ||
301 | |||
302 | /** | ||
303 | * rht_for_each_rcu_continue - continue iterating over rcu hash chain | ||
304 | * @pos: the &struct rhash_head to use as a loop cursor. | ||
305 | * @head: the previous &struct rhash_head to continue from | ||
306 | * @tbl: the &struct bucket_table | ||
307 | * @hash: the hash value / bucket index | ||
308 | * | ||
309 | * This hash chain list-traversal primitive may safely run concurrently with | ||
310 | * the _rcu mutation primitives such as rhashtable_insert() as long as the | ||
311 | * traversal is guarded by rcu_read_lock(). | ||
312 | */ | ||
313 | #define rht_for_each_rcu_continue(pos, head, tbl, hash) \ | ||
314 | for (({barrier(); }), \ | ||
315 | pos = rht_dereference_bucket_rcu(head, tbl, hash); \ | ||
316 | !rht_is_a_nulls(pos); \ | ||
317 | pos = rcu_dereference_raw(pos->next)) | ||
180 | 318 | ||
181 | /** | 319 | /** |
182 | * rht_for_each_rcu - iterate over rcu hash chain | 320 | * rht_for_each_rcu - iterate over rcu hash chain |
183 | * @pos: &struct rhash_head to use as a loop cursor. | 321 | * @pos: the &struct rhash_head to use as a loop cursor. |
184 | * @head: head of the hash chain (struct rhash_head *) | 322 | * @tbl: the &struct bucket_table |
185 | * @ht: pointer to your struct rhashtable | 323 | * @hash: the hash value / bucket index |
324 | * | ||
325 | * This hash chain list-traversal primitive may safely run concurrently with | ||
326 | * the _rcu mutation primitives such as rhashtable_insert() as long as the | ||
327 | * traversal is guarded by rcu_read_lock(). | ||
328 | */ | ||
329 | #define rht_for_each_rcu(pos, tbl, hash) \ | ||
330 | rht_for_each_rcu_continue(pos, (tbl)->buckets[hash], tbl, hash) | ||
331 | |||
332 | /** | ||
333 | * rht_for_each_entry_rcu_continue - continue iterating over rcu hash chain | ||
334 | * @tpos: the type * to use as a loop cursor. | ||
335 | * @pos: the &struct rhash_head to use as a loop cursor. | ||
336 | * @head: the previous &struct rhash_head to continue from | ||
337 | * @tbl: the &struct bucket_table | ||
338 | * @hash: the hash value / bucket index | ||
339 | * @member: name of the &struct rhash_head within the hashable struct. | ||
186 | * | 340 | * |
187 | * This hash chain list-traversal primitive may safely run concurrently with | 341 | * This hash chain list-traversal primitive may safely run concurrently with |
188 | * the _rcu fkht mutation primitives such as rht_insert() as long as the | 342 | * the _rcu mutation primitives such as rhashtable_insert() as long as the |
189 | * traversal is guarded by rcu_read_lock(). | 343 | * traversal is guarded by rcu_read_lock(). |
190 | */ | 344 | */ |
191 | #define rht_for_each_rcu(pos, head, ht) \ | 345 | #define rht_for_each_entry_rcu_continue(tpos, pos, head, tbl, hash, member) \ |
192 | for (pos = rht_dereference_rcu(head, ht); \ | 346 | for (({barrier(); }), \ |
193 | pos; \ | 347 | pos = rht_dereference_bucket_rcu(head, tbl, hash); \ |
194 | pos = rht_dereference_rcu((pos)->next, ht)) | 348 | (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \ |
349 | pos = rht_dereference_bucket_rcu(pos->next, tbl, hash)) | ||
195 | 350 | ||
196 | /** | 351 | /** |
197 | * rht_for_each_entry_rcu - iterate over rcu hash chain of given type | 352 | * rht_for_each_entry_rcu - iterate over rcu hash chain of given type |
198 | * @pos: type * to use as a loop cursor. | 353 | * @tpos: the type * to use as a loop cursor. |
199 | * @head: head of the hash chain (struct rhash_head *) | 354 | * @pos: the &struct rhash_head to use as a loop cursor. |
200 | * @member: name of the rhash_head within the hashable struct. | 355 | * @tbl: the &struct bucket_table |
356 | * @hash: the hash value / bucket index | ||
357 | * @member: name of the &struct rhash_head within the hashable struct. | ||
201 | * | 358 | * |
202 | * This hash chain list-traversal primitive may safely run concurrently with | 359 | * This hash chain list-traversal primitive may safely run concurrently with |
203 | * the _rcu fkht mutation primitives such as rht_insert() as long as the | 360 | * the _rcu mutation primitives such as rhashtable_insert() as long as the |
204 | * traversal is guarded by rcu_read_lock(). | 361 | * traversal is guarded by rcu_read_lock(). |
205 | */ | 362 | */ |
206 | #define rht_for_each_entry_rcu(pos, head, member) \ | 363 | #define rht_for_each_entry_rcu(tpos, pos, tbl, hash, member) \ |
207 | for (pos = rht_entry_safe(rcu_dereference_raw(head), \ | 364 | rht_for_each_entry_rcu_continue(tpos, pos, (tbl)->buckets[hash],\ |
208 | typeof(*(pos)), member); \ | 365 | tbl, hash, member) |
209 | pos; \ | ||
210 | pos = rht_entry_safe(rcu_dereference_raw((pos)->member.next), \ | ||
211 | typeof(*(pos)), member)) | ||
212 | 366 | ||
213 | #endif /* _LINUX_RHASHTABLE_H */ | 367 | #endif /* _LINUX_RHASHTABLE_H */ |
diff --git a/include/linux/rmap.h b/include/linux/rmap.h index d9d7e7e56352..c4c559a45dc8 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h | |||
@@ -198,7 +198,7 @@ int page_referenced(struct page *, int is_locked, | |||
198 | int try_to_unmap(struct page *, enum ttu_flags flags); | 198 | int try_to_unmap(struct page *, enum ttu_flags flags); |
199 | 199 | ||
200 | /* | 200 | /* |
201 | * Called from mm/filemap_xip.c to unmap empty zero page | 201 | * Used by uprobes to replace a userspace page safely |
202 | */ | 202 | */ |
203 | pte_t *__page_check_address(struct page *, struct mm_struct *, | 203 | pte_t *__page_check_address(struct page *, struct mm_struct *, |
204 | unsigned long, spinlock_t **, int); | 204 | unsigned long, spinlock_t **, int); |
@@ -246,7 +246,6 @@ int page_mapped_in_vma(struct page *page, struct vm_area_struct *vma); | |||
246 | * arg: passed to rmap_one() and invalid_vma() | 246 | * arg: passed to rmap_one() and invalid_vma() |
247 | * rmap_one: executed on each vma where page is mapped | 247 | * rmap_one: executed on each vma where page is mapped |
248 | * done: for checking traversing termination condition | 248 | * done: for checking traversing termination condition |
249 | * file_nonlinear: for handling file nonlinear mapping | ||
250 | * anon_lock: for getting anon_lock by optimized way rather than default | 249 | * anon_lock: for getting anon_lock by optimized way rather than default |
251 | * invalid_vma: for skipping uninterested vma | 250 | * invalid_vma: for skipping uninterested vma |
252 | */ | 251 | */ |
@@ -255,7 +254,6 @@ struct rmap_walk_control { | |||
255 | int (*rmap_one)(struct page *page, struct vm_area_struct *vma, | 254 | int (*rmap_one)(struct page *page, struct vm_area_struct *vma, |
256 | unsigned long addr, void *arg); | 255 | unsigned long addr, void *arg); |
257 | int (*done)(struct page *page); | 256 | int (*done)(struct page *page); |
258 | int (*file_nonlinear)(struct page *, struct address_space *, void *arg); | ||
259 | struct anon_vma *(*anon_lock)(struct page *page); | 257 | struct anon_vma *(*anon_lock)(struct page *page); |
260 | bool (*invalid_vma)(struct vm_area_struct *vma, void *arg); | 258 | bool (*invalid_vma)(struct vm_area_struct *vma, void *arg); |
261 | }; | 259 | }; |
diff --git a/include/linux/rtc.h b/include/linux/rtc.h index 6d6be09a2fe5..dcad7ee0d746 100644 --- a/include/linux/rtc.h +++ b/include/linux/rtc.h | |||
@@ -161,7 +161,7 @@ extern void devm_rtc_device_unregister(struct device *dev, | |||
161 | extern int rtc_read_time(struct rtc_device *rtc, struct rtc_time *tm); | 161 | extern int rtc_read_time(struct rtc_device *rtc, struct rtc_time *tm); |
162 | extern int rtc_set_time(struct rtc_device *rtc, struct rtc_time *tm); | 162 | extern int rtc_set_time(struct rtc_device *rtc, struct rtc_time *tm); |
163 | extern int rtc_set_mmss(struct rtc_device *rtc, unsigned long secs); | 163 | extern int rtc_set_mmss(struct rtc_device *rtc, unsigned long secs); |
164 | extern int rtc_set_ntp_time(struct timespec now); | 164 | extern int rtc_set_ntp_time(struct timespec64 now); |
165 | int __rtc_read_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm); | 165 | int __rtc_read_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm); |
166 | extern int rtc_read_alarm(struct rtc_device *rtc, | 166 | extern int rtc_read_alarm(struct rtc_device *rtc, |
167 | struct rtc_wkalrm *alrm); | 167 | struct rtc_wkalrm *alrm); |
diff --git a/include/linux/rtc/ds1685.h b/include/linux/rtc/ds1685.h new file mode 100644 index 000000000000..e6337a56d741 --- /dev/null +++ b/include/linux/rtc/ds1685.h | |||
@@ -0,0 +1,375 @@ | |||
1 | /* | ||
2 | * Definitions for the registers, addresses, and platform data of the | ||
3 | * DS1685/DS1687-series RTC chips. | ||
4 | * | ||
5 | * This Driver also works for the DS17X85/DS17X87 RTC chips. Functionally | ||
6 | * similar to the DS1685/DS1687, they support a few extra features which | ||
7 | * include larger, battery-backed NV-SRAM, burst-mode access, and an RTC | ||
8 | * write counter. | ||
9 | * | ||
10 | * Copyright (C) 2011-2014 Joshua Kinard <kumba@gentoo.org>. | ||
11 | * Copyright (C) 2009 Matthias Fuchs <matthias.fuchs@esd-electronics.com>. | ||
12 | * | ||
13 | * References: | ||
14 | * DS1685/DS1687 3V/5V Real-Time Clocks, 19-5215, Rev 4/10. | ||
15 | * DS17x85/DS17x87 3V/5V Real-Time Clocks, 19-5222, Rev 4/10. | ||
16 | * DS1689/DS1693 3V/5V Serialized Real-Time Clocks, Rev 112105. | ||
17 | * Application Note 90, Using the Multiplex Bus RTC Extended Features. | ||
18 | * | ||
19 | * This program is free software; you can redistribute it and/or modify | ||
20 | * it under the terms of the GNU General Public License version 2 as | ||
21 | * published by the Free Software Foundation. | ||
22 | */ | ||
23 | |||
24 | #ifndef _LINUX_RTC_DS1685_H_ | ||
25 | #define _LINUX_RTC_DS1685_H_ | ||
26 | |||
27 | #include <linux/rtc.h> | ||
28 | #include <linux/platform_device.h> | ||
29 | #include <linux/workqueue.h> | ||
30 | |||
31 | /** | ||
32 | * struct ds1685_priv - DS1685 private data structure. | ||
33 | * @dev: pointer to the rtc_device structure. | ||
34 | * @regs: iomapped base address pointer of the RTC registers. | ||
35 | * @regstep: padding/step size between registers (optional). | ||
36 | * @baseaddr: base address of the RTC device. | ||
37 | * @size: resource size. | ||
38 | * @lock: private lock variable for spin locking/unlocking. | ||
39 | * @work: private workqueue. | ||
40 | * @irq: IRQ number assigned to the RTC device. | ||
41 | * @prepare_poweroff: pointer to platform pre-poweroff function. | ||
42 | * @wake_alarm: pointer to platform wake alarm function. | ||
43 | * @post_ram_clear: pointer to platform post ram-clear function. | ||
44 | */ | ||
45 | struct ds1685_priv { | ||
46 | struct rtc_device *dev; | ||
47 | void __iomem *regs; | ||
48 | u32 regstep; | ||
49 | resource_size_t baseaddr; | ||
50 | size_t size; | ||
51 | spinlock_t lock; | ||
52 | struct work_struct work; | ||
53 | int irq_num; | ||
54 | bool bcd_mode; | ||
55 | bool no_irq; | ||
56 | bool uie_unsupported; | ||
57 | bool alloc_io_resources; | ||
58 | u8 (*read)(struct ds1685_priv *, int); | ||
59 | void (*write)(struct ds1685_priv *, int, u8); | ||
60 | void (*prepare_poweroff)(void); | ||
61 | void (*wake_alarm)(void); | ||
62 | void (*post_ram_clear)(void); | ||
63 | }; | ||
64 | |||
65 | |||
66 | /** | ||
67 | * struct ds1685_rtc_platform_data - platform data structure. | ||
68 | * @plat_prepare_poweroff: platform-specific pre-poweroff function. | ||
69 | * @plat_wake_alarm: platform-specific wake alarm function. | ||
70 | * @plat_post_ram_clear: platform-specific post ram-clear function. | ||
71 | * | ||
72 | * If your platform needs to use a custom padding/step size between | ||
73 | * registers, or uses one or more of the extended interrupts and needs special | ||
74 | * handling, then include this header file in your platform definition and | ||
75 | * set regstep and the plat_* pointers as appropriate. | ||
76 | */ | ||
77 | struct ds1685_rtc_platform_data { | ||
78 | const u32 regstep; | ||
79 | const bool bcd_mode; | ||
80 | const bool no_irq; | ||
81 | const bool uie_unsupported; | ||
82 | const bool alloc_io_resources; | ||
83 | u8 (*plat_read)(struct ds1685_priv *, int); | ||
84 | void (*plat_write)(struct ds1685_priv *, int, u8); | ||
85 | void (*plat_prepare_poweroff)(void); | ||
86 | void (*plat_wake_alarm)(void); | ||
87 | void (*plat_post_ram_clear)(void); | ||
88 | }; | ||
89 | |||
90 | |||
91 | /* | ||
92 | * Time Registers. | ||
93 | */ | ||
94 | #define RTC_SECS 0x00 /* Seconds 00-59 */ | ||
95 | #define RTC_SECS_ALARM 0x01 /* Alarm Seconds 00-59 */ | ||
96 | #define RTC_MINS 0x02 /* Minutes 00-59 */ | ||
97 | #define RTC_MINS_ALARM 0x03 /* Alarm Minutes 00-59 */ | ||
98 | #define RTC_HRS 0x04 /* Hours 01-12 AM/PM || 00-23 */ | ||
99 | #define RTC_HRS_ALARM 0x05 /* Alarm Hours 01-12 AM/PM || 00-23 */ | ||
100 | #define RTC_WDAY 0x06 /* Day of Week 01-07 */ | ||
101 | #define RTC_MDAY 0x07 /* Day of Month 01-31 */ | ||
102 | #define RTC_MONTH 0x08 /* Month 01-12 */ | ||
103 | #define RTC_YEAR 0x09 /* Year 00-99 */ | ||
104 | #define RTC_CENTURY 0x48 /* Century 00-99 */ | ||
105 | #define RTC_MDAY_ALARM 0x49 /* Alarm Day of Month 01-31 */ | ||
106 | |||
107 | |||
108 | /* | ||
109 | * Bit masks for the Time registers in BCD Mode (DM = 0). | ||
110 | */ | ||
111 | #define RTC_SECS_BCD_MASK 0x7f /* - x x x x x x x */ | ||
112 | #define RTC_MINS_BCD_MASK 0x7f /* - x x x x x x x */ | ||
113 | #define RTC_HRS_12_BCD_MASK 0x1f /* - - - x x x x x */ | ||
114 | #define RTC_HRS_24_BCD_MASK 0x3f /* - - x x x x x x */ | ||
115 | #define RTC_MDAY_BCD_MASK 0x3f /* - - x x x x x x */ | ||
116 | #define RTC_MONTH_BCD_MASK 0x1f /* - - - x x x x x */ | ||
117 | #define RTC_YEAR_BCD_MASK 0xff /* x x x x x x x x */ | ||
118 | |||
119 | /* | ||
120 | * Bit masks for the Time registers in BIN Mode (DM = 1). | ||
121 | */ | ||
122 | #define RTC_SECS_BIN_MASK 0x3f /* - - x x x x x x */ | ||
123 | #define RTC_MINS_BIN_MASK 0x3f /* - - x x x x x x */ | ||
124 | #define RTC_HRS_12_BIN_MASK 0x0f /* - - - - x x x x */ | ||
125 | #define RTC_HRS_24_BIN_MASK 0x1f /* - - - x x x x x */ | ||
126 | #define RTC_MDAY_BIN_MASK 0x1f /* - - - x x x x x */ | ||
127 | #define RTC_MONTH_BIN_MASK 0x0f /* - - - - x x x x */ | ||
128 | #define RTC_YEAR_BIN_MASK 0x7f /* - x x x x x x x */ | ||
129 | |||
130 | /* | ||
131 | * Bit masks common for the Time registers in BCD or BIN Mode. | ||
132 | */ | ||
133 | #define RTC_WDAY_MASK 0x07 /* - - - - - x x x */ | ||
134 | #define RTC_CENTURY_MASK 0xff /* x x x x x x x x */ | ||
135 | #define RTC_MDAY_ALARM_MASK 0xff /* x x x x x x x x */ | ||
136 | #define RTC_HRS_AMPM_MASK BIT(7) /* Mask for the AM/PM bit */ | ||
137 | |||
138 | |||
139 | |||
140 | /* | ||
141 | * Control Registers. | ||
142 | */ | ||
143 | #define RTC_CTRL_A 0x0a /* Control Register A */ | ||
144 | #define RTC_CTRL_B 0x0b /* Control Register B */ | ||
145 | #define RTC_CTRL_C 0x0c /* Control Register C */ | ||
146 | #define RTC_CTRL_D 0x0d /* Control Register D */ | ||
147 | #define RTC_EXT_CTRL_4A 0x4a /* Extended Control Register 4A */ | ||
148 | #define RTC_EXT_CTRL_4B 0x4b /* Extended Control Register 4B */ | ||
149 | |||
150 | |||
151 | /* | ||
152 | * Bit names in Control Register A. | ||
153 | */ | ||
154 | #define RTC_CTRL_A_UIP BIT(7) /* Update In Progress */ | ||
155 | #define RTC_CTRL_A_DV2 BIT(6) /* Countdown Chain */ | ||
156 | #define RTC_CTRL_A_DV1 BIT(5) /* Oscillator Enable */ | ||
157 | #define RTC_CTRL_A_DV0 BIT(4) /* Bank Select */ | ||
158 | #define RTC_CTRL_A_RS2 BIT(2) /* Rate-Selection Bit 2 */ | ||
159 | #define RTC_CTRL_A_RS3 BIT(3) /* Rate-Selection Bit 3 */ | ||
160 | #define RTC_CTRL_A_RS1 BIT(1) /* Rate-Selection Bit 1 */ | ||
161 | #define RTC_CTRL_A_RS0 BIT(0) /* Rate-Selection Bit 0 */ | ||
162 | #define RTC_CTRL_A_RS_MASK 0x0f /* RS3 + RS2 + RS1 + RS0 */ | ||
163 | |||
164 | /* | ||
165 | * Bit names in Control Register B. | ||
166 | */ | ||
167 | #define RTC_CTRL_B_SET BIT(7) /* SET Bit */ | ||
168 | #define RTC_CTRL_B_PIE BIT(6) /* Periodic-Interrupt Enable */ | ||
169 | #define RTC_CTRL_B_AIE BIT(5) /* Alarm-Interrupt Enable */ | ||
170 | #define RTC_CTRL_B_UIE BIT(4) /* Update-Ended Interrupt-Enable */ | ||
171 | #define RTC_CTRL_B_SQWE BIT(3) /* Square-Wave Enable */ | ||
172 | #define RTC_CTRL_B_DM BIT(2) /* Data Mode */ | ||
173 | #define RTC_CTRL_B_2412 BIT(1) /* 12-Hr/24-Hr Mode */ | ||
174 | #define RTC_CTRL_B_DSE BIT(0) /* Daylight Savings Enable */ | ||
175 | #define RTC_CTRL_B_PAU_MASK 0x70 /* PIE + AIE + UIE */ | ||
176 | |||
177 | |||
178 | /* | ||
179 | * Bit names in Control Register C. | ||
180 | * | ||
181 | * BIT(0), BIT(1), BIT(2), & BIT(3) are unused, always return 0, and cannot | ||
182 | * be written to. | ||
183 | */ | ||
184 | #define RTC_CTRL_C_IRQF BIT(7) /* Interrupt-Request Flag */ | ||
185 | #define RTC_CTRL_C_PF BIT(6) /* Periodic-Interrupt Flag */ | ||
186 | #define RTC_CTRL_C_AF BIT(5) /* Alarm-Interrupt Flag */ | ||
187 | #define RTC_CTRL_C_UF BIT(4) /* Update-Ended Interrupt Flag */ | ||
188 | #define RTC_CTRL_C_PAU_MASK 0x70 /* PF + AF + UF */ | ||
189 | |||
190 | |||
191 | /* | ||
192 | * Bit names in Control Register D. | ||
193 | * | ||
194 | * BIT(0) through BIT(6) are unused, always return 0, and cannot | ||
195 | * be written to. | ||
196 | */ | ||
197 | #define RTC_CTRL_D_VRT BIT(7) /* Valid RAM and Time */ | ||
198 | |||
199 | |||
200 | /* | ||
201 | * Bit names in Extended Control Register 4A. | ||
202 | * | ||
203 | * On the DS1685/DS1687/DS1689/DS1693, BIT(4) and BIT(5) are reserved for | ||
204 | * future use. They can be read from and written to, but have no effect | ||
205 | * on the RTC's operation. | ||
206 | * | ||
207 | * On the DS17x85/DS17x87, BIT(5) is Burst-Mode Enable (BME), and allows | ||
208 | * access to the extended NV-SRAM by automatically incrementing the address | ||
209 | * register when they are read from or written to. | ||
210 | */ | ||
211 | #define RTC_CTRL_4A_VRT2 BIT(7) /* Auxillary Battery Status */ | ||
212 | #define RTC_CTRL_4A_INCR BIT(6) /* Increment-in-Progress Status */ | ||
213 | #define RTC_CTRL_4A_PAB BIT(3) /* Power-Active Bar Control */ | ||
214 | #define RTC_CTRL_4A_RF BIT(2) /* RAM-Clear Flag */ | ||
215 | #define RTC_CTRL_4A_WF BIT(1) /* Wake-Up Alarm Flag */ | ||
216 | #define RTC_CTRL_4A_KF BIT(0) /* Kickstart Flag */ | ||
217 | #if !defined(CONFIG_RTC_DRV_DS1685) && !defined(CONFIG_RTC_DRV_DS1689) | ||
218 | #define RTC_CTRL_4A_BME BIT(5) /* Burst-Mode Enable */ | ||
219 | #endif | ||
220 | #define RTC_CTRL_4A_RWK_MASK 0x07 /* RF + WF + KF */ | ||
221 | |||
222 | |||
223 | /* | ||
224 | * Bit names in Extended Control Register 4B. | ||
225 | */ | ||
226 | #define RTC_CTRL_4B_ABE BIT(7) /* Auxillary Battery Enable */ | ||
227 | #define RTC_CTRL_4B_E32K BIT(6) /* Enable 32.768Hz on SQW Pin */ | ||
228 | #define RTC_CTRL_4B_CS BIT(5) /* Crystal Select */ | ||
229 | #define RTC_CTRL_4B_RCE BIT(4) /* RAM Clear-Enable */ | ||
230 | #define RTC_CTRL_4B_PRS BIT(3) /* PAB Reset-Select */ | ||
231 | #define RTC_CTRL_4B_RIE BIT(2) /* RAM Clear-Interrupt Enable */ | ||
232 | #define RTC_CTRL_4B_WIE BIT(1) /* Wake-Up Alarm-Interrupt Enable */ | ||
233 | #define RTC_CTRL_4B_KSE BIT(0) /* Kickstart Interrupt-Enable */ | ||
234 | #define RTC_CTRL_4B_RWK_MASK 0x07 /* RIE + WIE + KSE */ | ||
235 | |||
236 | |||
237 | /* | ||
238 | * Misc register names in Bank 1. | ||
239 | * | ||
240 | * The DV0 bit in Control Register A must be set to 1 for these registers | ||
241 | * to become available, including Extended Control Registers 4A & 4B. | ||
242 | */ | ||
243 | #define RTC_BANK1_SSN_MODEL 0x40 /* Model Number */ | ||
244 | #define RTC_BANK1_SSN_BYTE_1 0x41 /* 1st Byte of Serial Number */ | ||
245 | #define RTC_BANK1_SSN_BYTE_2 0x42 /* 2nd Byte of Serial Number */ | ||
246 | #define RTC_BANK1_SSN_BYTE_3 0x43 /* 3rd Byte of Serial Number */ | ||
247 | #define RTC_BANK1_SSN_BYTE_4 0x44 /* 4th Byte of Serial Number */ | ||
248 | #define RTC_BANK1_SSN_BYTE_5 0x45 /* 5th Byte of Serial Number */ | ||
249 | #define RTC_BANK1_SSN_BYTE_6 0x46 /* 6th Byte of Serial Number */ | ||
250 | #define RTC_BANK1_SSN_CRC 0x47 /* Serial CRC Byte */ | ||
251 | #define RTC_BANK1_RAM_DATA_PORT 0x53 /* Extended RAM Data Port */ | ||
252 | |||
253 | |||
254 | /* | ||
255 | * Model-specific registers in Bank 1. | ||
256 | * | ||
257 | * The addresses below differ depending on the model of the RTC chip | ||
258 | * selected in the kernel configuration. Not all of these features are | ||
259 | * supported in the main driver at present. | ||
260 | * | ||
261 | * DS1685/DS1687 - Extended NV-SRAM address (LSB only). | ||
262 | * DS1689/DS1693 - Vcc, Vbat, Pwr Cycle Counters & Customer-specific S/N. | ||
263 | * DS17x85/DS17x87 - Extended NV-SRAM addresses (MSB & LSB) & Write counter. | ||
264 | */ | ||
265 | #if defined(CONFIG_RTC_DRV_DS1685) | ||
266 | #define RTC_BANK1_RAM_ADDR 0x50 /* NV-SRAM Addr */ | ||
267 | #elif defined(CONFIG_RTC_DRV_DS1689) | ||
268 | #define RTC_BANK1_VCC_CTR_LSB 0x54 /* Vcc Counter Addr (LSB) */ | ||
269 | #define RTC_BANK1_VCC_CTR_MSB 0x57 /* Vcc Counter Addr (MSB) */ | ||
270 | #define RTC_BANK1_VBAT_CTR_LSB 0x58 /* Vbat Counter Addr (LSB) */ | ||
271 | #define RTC_BANK1_VBAT_CTR_MSB 0x5b /* Vbat Counter Addr (MSB) */ | ||
272 | #define RTC_BANK1_PWR_CTR_LSB 0x5c /* Pwr Cycle Counter Addr (LSB) */ | ||
273 | #define RTC_BANK1_PWR_CTR_MSB 0x5d /* Pwr Cycle Counter Addr (MSB) */ | ||
274 | #define RTC_BANK1_UNIQ_SN 0x60 /* Customer-specific S/N */ | ||
275 | #else /* DS17x85/DS17x87 */ | ||
276 | #define RTC_BANK1_RAM_ADDR_LSB 0x50 /* NV-SRAM Addr (LSB) */ | ||
277 | #define RTC_BANK1_RAM_ADDR_MSB 0x51 /* NV-SRAM Addr (MSB) */ | ||
278 | #define RTC_BANK1_WRITE_CTR 0x5e /* RTC Write Counter */ | ||
279 | #endif | ||
280 | |||
281 | |||
282 | /* | ||
283 | * Model numbers. | ||
284 | * | ||
285 | * The DS1688/DS1691 and DS1689/DS1693 chips share the same model number | ||
286 | * and the manual doesn't indicate any major differences. As such, they | ||
287 | * are regarded as the same chip in this driver. | ||
288 | */ | ||
289 | #define RTC_MODEL_DS1685 0x71 /* DS1685/DS1687 */ | ||
290 | #define RTC_MODEL_DS17285 0x72 /* DS17285/DS17287 */ | ||
291 | #define RTC_MODEL_DS1689 0x73 /* DS1688/DS1691/DS1689/DS1693 */ | ||
292 | #define RTC_MODEL_DS17485 0x74 /* DS17485/DS17487 */ | ||
293 | #define RTC_MODEL_DS17885 0x78 /* DS17885/DS17887 */ | ||
294 | |||
295 | |||
296 | /* | ||
297 | * Periodic Interrupt Rates / Square-Wave Output Frequency | ||
298 | * | ||
299 | * Periodic rates are selected by setting the RS3-RS0 bits in Control | ||
300 | * Register A and enabled via either the E32K bit in Extended Control | ||
301 | * Register 4B or the SQWE bit in Control Register B. | ||
302 | * | ||
303 | * E32K overrides the settings of RS3-RS0 and outputs a frequency of 32768Hz | ||
304 | * on the SQW pin of the RTC chip. While there are 16 possible selections, | ||
305 | * the 1-of-16 decoder is only able to divide the base 32768Hz signal into 13 | ||
306 | * smaller frequencies. The values 0x01 and 0x02 are not used and are | ||
307 | * synonymous with 0x08 and 0x09, respectively. | ||
308 | * | ||
309 | * When E32K is set to a logic 1, periodic interrupts are disabled and reading | ||
310 | * /dev/rtc will return -EINVAL. This also applies if the periodic interrupt | ||
311 | * frequency is set to 0Hz. | ||
312 | * | ||
313 | * Not currently used by the rtc-ds1685 driver because the RTC core removed | ||
314 | * support for hardware-generated periodic-interrupts in favour of | ||
315 | * hrtimer-generated interrupts. But these defines are kept around for use | ||
316 | * in userland, as documentation to the hardware, and possible future use if | ||
317 | * hardware-generated periodic interrupts are ever added back. | ||
318 | */ | ||
319 | /* E32K RS3 RS2 RS1 RS0 */ | ||
320 | #define RTC_SQW_8192HZ 0x03 /* 0 0 0 1 1 */ | ||
321 | #define RTC_SQW_4096HZ 0x04 /* 0 0 1 0 0 */ | ||
322 | #define RTC_SQW_2048HZ 0x05 /* 0 0 1 0 1 */ | ||
323 | #define RTC_SQW_1024HZ 0x06 /* 0 0 1 1 0 */ | ||
324 | #define RTC_SQW_512HZ 0x07 /* 0 0 1 1 1 */ | ||
325 | #define RTC_SQW_256HZ 0x08 /* 0 1 0 0 0 */ | ||
326 | #define RTC_SQW_128HZ 0x09 /* 0 1 0 0 1 */ | ||
327 | #define RTC_SQW_64HZ 0x0a /* 0 1 0 1 0 */ | ||
328 | #define RTC_SQW_32HZ 0x0b /* 0 1 0 1 1 */ | ||
329 | #define RTC_SQW_16HZ 0x0c /* 0 1 1 0 0 */ | ||
330 | #define RTC_SQW_8HZ 0x0d /* 0 1 1 0 1 */ | ||
331 | #define RTC_SQW_4HZ 0x0e /* 0 1 1 1 0 */ | ||
332 | #define RTC_SQW_2HZ 0x0f /* 0 1 1 1 1 */ | ||
333 | #define RTC_SQW_0HZ 0x00 /* 0 0 0 0 0 */ | ||
334 | #define RTC_SQW_32768HZ 32768 /* 1 - - - - */ | ||
335 | #define RTC_MAX_USER_FREQ 8192 | ||
336 | |||
337 | |||
338 | /* | ||
339 | * NVRAM data & addresses: | ||
340 | * - 50 bytes of NVRAM are available just past the clock registers. | ||
341 | * - 64 additional bytes are available in Bank0. | ||
342 | * | ||
343 | * Extended, battery-backed NV-SRAM: | ||
344 | * - DS1685/DS1687 - 128 bytes. | ||
345 | * - DS1689/DS1693 - 0 bytes. | ||
346 | * - DS17285/DS17287 - 2048 bytes. | ||
347 | * - DS17485/DS17487 - 4096 bytes. | ||
348 | * - DS17885/DS17887 - 8192 bytes. | ||
349 | */ | ||
350 | #define NVRAM_TIME_BASE 0x0e /* NVRAM Addr in Time regs */ | ||
351 | #define NVRAM_BANK0_BASE 0x40 /* NVRAM Addr in Bank0 regs */ | ||
352 | #define NVRAM_SZ_TIME 50 | ||
353 | #define NVRAM_SZ_BANK0 64 | ||
354 | #if defined(CONFIG_RTC_DRV_DS1685) | ||
355 | # define NVRAM_SZ_EXTND 128 | ||
356 | #elif defined(CONFIG_RTC_DRV_DS1689) | ||
357 | # define NVRAM_SZ_EXTND 0 | ||
358 | #elif defined(CONFIG_RTC_DRV_DS17285) | ||
359 | # define NVRAM_SZ_EXTND 2048 | ||
360 | #elif defined(CONFIG_RTC_DRV_DS17485) | ||
361 | # define NVRAM_SZ_EXTND 4096 | ||
362 | #elif defined(CONFIG_RTC_DRV_DS17885) | ||
363 | # define NVRAM_SZ_EXTND 8192 | ||
364 | #endif | ||
365 | #define NVRAM_TOTAL_SZ_BANK0 (NVRAM_SZ_TIME + NVRAM_SZ_BANK0) | ||
366 | #define NVRAM_TOTAL_SZ (NVRAM_TOTAL_SZ_BANK0 + NVRAM_SZ_EXTND) | ||
367 | |||
368 | |||
369 | /* | ||
370 | * Function Prototypes. | ||
371 | */ | ||
372 | extern void __noreturn | ||
373 | ds1685_rtc_poweroff(struct platform_device *pdev); | ||
374 | |||
375 | #endif /* _LINUX_RTC_DS1685_H_ */ | ||
diff --git a/include/linux/sched.h b/include/linux/sched.h index 8db31ef98d2f..6d77432e14ff 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -363,9 +363,6 @@ extern void show_regs(struct pt_regs *); | |||
363 | */ | 363 | */ |
364 | extern void show_stack(struct task_struct *task, unsigned long *sp); | 364 | extern void show_stack(struct task_struct *task, unsigned long *sp); |
365 | 365 | ||
366 | void io_schedule(void); | ||
367 | long io_schedule_timeout(long timeout); | ||
368 | |||
369 | extern void cpu_init (void); | 366 | extern void cpu_init (void); |
370 | extern void trap_init(void); | 367 | extern void trap_init(void); |
371 | extern void update_process_times(int user); | 368 | extern void update_process_times(int user); |
@@ -422,6 +419,13 @@ extern signed long schedule_timeout_uninterruptible(signed long timeout); | |||
422 | asmlinkage void schedule(void); | 419 | asmlinkage void schedule(void); |
423 | extern void schedule_preempt_disabled(void); | 420 | extern void schedule_preempt_disabled(void); |
424 | 421 | ||
422 | extern long io_schedule_timeout(long timeout); | ||
423 | |||
424 | static inline void io_schedule(void) | ||
425 | { | ||
426 | io_schedule_timeout(MAX_SCHEDULE_TIMEOUT); | ||
427 | } | ||
428 | |||
425 | struct nsproxy; | 429 | struct nsproxy; |
426 | struct user_namespace; | 430 | struct user_namespace; |
427 | 431 | ||
@@ -1370,6 +1374,8 @@ struct task_struct { | |||
1370 | 1374 | ||
1371 | unsigned long atomic_flags; /* Flags needing atomic access. */ | 1375 | unsigned long atomic_flags; /* Flags needing atomic access. */ |
1372 | 1376 | ||
1377 | struct restart_block restart_block; | ||
1378 | |||
1373 | pid_t pid; | 1379 | pid_t pid; |
1374 | pid_t tgid; | 1380 | pid_t tgid; |
1375 | 1381 | ||
@@ -1662,6 +1668,9 @@ struct task_struct { | |||
1662 | unsigned long timer_slack_ns; | 1668 | unsigned long timer_slack_ns; |
1663 | unsigned long default_timer_slack_ns; | 1669 | unsigned long default_timer_slack_ns; |
1664 | 1670 | ||
1671 | #ifdef CONFIG_KASAN | ||
1672 | unsigned int kasan_depth; | ||
1673 | #endif | ||
1665 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER | 1674 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
1666 | /* Index of current stored address in ret_stack */ | 1675 | /* Index of current stored address in ret_stack */ |
1667 | int curr_ret_stack; | 1676 | int curr_ret_stack; |
@@ -2145,6 +2154,7 @@ extern unsigned long long notrace sched_clock(void); | |||
2145 | */ | 2154 | */ |
2146 | extern u64 cpu_clock(int cpu); | 2155 | extern u64 cpu_clock(int cpu); |
2147 | extern u64 local_clock(void); | 2156 | extern u64 local_clock(void); |
2157 | extern u64 running_clock(void); | ||
2148 | extern u64 sched_clock_cpu(int cpu); | 2158 | extern u64 sched_clock_cpu(int cpu); |
2149 | 2159 | ||
2150 | 2160 | ||
diff --git a/include/linux/security.h b/include/linux/security.h index ba96471c11ba..a1b7dbd127ff 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
@@ -1281,6 +1281,25 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
1281 | * @alter contains the flag indicating whether changes are to be made. | 1281 | * @alter contains the flag indicating whether changes are to be made. |
1282 | * Return 0 if permission is granted. | 1282 | * Return 0 if permission is granted. |
1283 | * | 1283 | * |
1284 | * @binder_set_context_mgr | ||
1285 | * Check whether @mgr is allowed to be the binder context manager. | ||
1286 | * @mgr contains the task_struct for the task being registered. | ||
1287 | * Return 0 if permission is granted. | ||
1288 | * @binder_transaction | ||
1289 | * Check whether @from is allowed to invoke a binder transaction call | ||
1290 | * to @to. | ||
1291 | * @from contains the task_struct for the sending task. | ||
1292 | * @to contains the task_struct for the receiving task. | ||
1293 | * @binder_transfer_binder | ||
1294 | * Check whether @from is allowed to transfer a binder reference to @to. | ||
1295 | * @from contains the task_struct for the sending task. | ||
1296 | * @to contains the task_struct for the receiving task. | ||
1297 | * @binder_transfer_file | ||
1298 | * Check whether @from is allowed to transfer @file to @to. | ||
1299 | * @from contains the task_struct for the sending task. | ||
1300 | * @file contains the struct file being transferred. | ||
1301 | * @to contains the task_struct for the receiving task. | ||
1302 | * | ||
1284 | * @ptrace_access_check: | 1303 | * @ptrace_access_check: |
1285 | * Check permission before allowing the current process to trace the | 1304 | * Check permission before allowing the current process to trace the |
1286 | * @child process. | 1305 | * @child process. |
@@ -1441,6 +1460,14 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
1441 | struct security_operations { | 1460 | struct security_operations { |
1442 | char name[SECURITY_NAME_MAX + 1]; | 1461 | char name[SECURITY_NAME_MAX + 1]; |
1443 | 1462 | ||
1463 | int (*binder_set_context_mgr) (struct task_struct *mgr); | ||
1464 | int (*binder_transaction) (struct task_struct *from, | ||
1465 | struct task_struct *to); | ||
1466 | int (*binder_transfer_binder) (struct task_struct *from, | ||
1467 | struct task_struct *to); | ||
1468 | int (*binder_transfer_file) (struct task_struct *from, | ||
1469 | struct task_struct *to, struct file *file); | ||
1470 | |||
1444 | int (*ptrace_access_check) (struct task_struct *child, unsigned int mode); | 1471 | int (*ptrace_access_check) (struct task_struct *child, unsigned int mode); |
1445 | int (*ptrace_traceme) (struct task_struct *parent); | 1472 | int (*ptrace_traceme) (struct task_struct *parent); |
1446 | int (*capget) (struct task_struct *target, | 1473 | int (*capget) (struct task_struct *target, |
@@ -1739,6 +1766,13 @@ extern void __init security_fixup_ops(struct security_operations *ops); | |||
1739 | 1766 | ||
1740 | 1767 | ||
1741 | /* Security operations */ | 1768 | /* Security operations */ |
1769 | int security_binder_set_context_mgr(struct task_struct *mgr); | ||
1770 | int security_binder_transaction(struct task_struct *from, | ||
1771 | struct task_struct *to); | ||
1772 | int security_binder_transfer_binder(struct task_struct *from, | ||
1773 | struct task_struct *to); | ||
1774 | int security_binder_transfer_file(struct task_struct *from, | ||
1775 | struct task_struct *to, struct file *file); | ||
1742 | int security_ptrace_access_check(struct task_struct *child, unsigned int mode); | 1776 | int security_ptrace_access_check(struct task_struct *child, unsigned int mode); |
1743 | int security_ptrace_traceme(struct task_struct *parent); | 1777 | int security_ptrace_traceme(struct task_struct *parent); |
1744 | int security_capget(struct task_struct *target, | 1778 | int security_capget(struct task_struct *target, |
@@ -1927,6 +1961,30 @@ static inline int security_init(void) | |||
1927 | return 0; | 1961 | return 0; |
1928 | } | 1962 | } |
1929 | 1963 | ||
1964 | static inline int security_binder_set_context_mgr(struct task_struct *mgr) | ||
1965 | { | ||
1966 | return 0; | ||
1967 | } | ||
1968 | |||
1969 | static inline int security_binder_transaction(struct task_struct *from, | ||
1970 | struct task_struct *to) | ||
1971 | { | ||
1972 | return 0; | ||
1973 | } | ||
1974 | |||
1975 | static inline int security_binder_transfer_binder(struct task_struct *from, | ||
1976 | struct task_struct *to) | ||
1977 | { | ||
1978 | return 0; | ||
1979 | } | ||
1980 | |||
1981 | static inline int security_binder_transfer_file(struct task_struct *from, | ||
1982 | struct task_struct *to, | ||
1983 | struct file *file) | ||
1984 | { | ||
1985 | return 0; | ||
1986 | } | ||
1987 | |||
1930 | static inline int security_ptrace_access_check(struct task_struct *child, | 1988 | static inline int security_ptrace_access_check(struct task_struct *child, |
1931 | unsigned int mode) | 1989 | unsigned int mode) |
1932 | { | 1990 | { |
diff --git a/include/linux/seq_buf.h b/include/linux/seq_buf.h index 9aafe0e24c68..fb7eb9ccb1cd 100644 --- a/include/linux/seq_buf.h +++ b/include/linux/seq_buf.h | |||
@@ -125,9 +125,6 @@ extern int seq_buf_putmem_hex(struct seq_buf *s, const void *mem, | |||
125 | unsigned int len); | 125 | unsigned int len); |
126 | extern int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc); | 126 | extern int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc); |
127 | 127 | ||
128 | extern int seq_buf_bitmask(struct seq_buf *s, const unsigned long *maskp, | ||
129 | int nmaskbits); | ||
130 | |||
131 | #ifdef CONFIG_BINARY_PRINTF | 128 | #ifdef CONFIG_BINARY_PRINTF |
132 | extern int | 129 | extern int |
133 | seq_buf_bprintf(struct seq_buf *s, const char *fmt, const u32 *binary); | 130 | seq_buf_bprintf(struct seq_buf *s, const char *fmt, const u32 *binary); |
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h index cf6a9daaaf6d..afbb1fd77c77 100644 --- a/include/linux/seq_file.h +++ b/include/linux/seq_file.h | |||
@@ -126,31 +126,6 @@ int seq_path(struct seq_file *, const struct path *, const char *); | |||
126 | int seq_dentry(struct seq_file *, struct dentry *, const char *); | 126 | int seq_dentry(struct seq_file *, struct dentry *, const char *); |
127 | int seq_path_root(struct seq_file *m, const struct path *path, | 127 | int seq_path_root(struct seq_file *m, const struct path *path, |
128 | const struct path *root, const char *esc); | 128 | const struct path *root, const char *esc); |
129 | int seq_bitmap(struct seq_file *m, const unsigned long *bits, | ||
130 | unsigned int nr_bits); | ||
131 | static inline int seq_cpumask(struct seq_file *m, const struct cpumask *mask) | ||
132 | { | ||
133 | return seq_bitmap(m, cpumask_bits(mask), nr_cpu_ids); | ||
134 | } | ||
135 | |||
136 | static inline int seq_nodemask(struct seq_file *m, nodemask_t *mask) | ||
137 | { | ||
138 | return seq_bitmap(m, mask->bits, MAX_NUMNODES); | ||
139 | } | ||
140 | |||
141 | int seq_bitmap_list(struct seq_file *m, const unsigned long *bits, | ||
142 | unsigned int nr_bits); | ||
143 | |||
144 | static inline int seq_cpumask_list(struct seq_file *m, | ||
145 | const struct cpumask *mask) | ||
146 | { | ||
147 | return seq_bitmap_list(m, cpumask_bits(mask), nr_cpu_ids); | ||
148 | } | ||
149 | |||
150 | static inline int seq_nodemask_list(struct seq_file *m, nodemask_t *mask) | ||
151 | { | ||
152 | return seq_bitmap_list(m, mask->bits, MAX_NUMNODES); | ||
153 | } | ||
154 | 129 | ||
155 | int single_open(struct file *, int (*)(struct seq_file *, void *), void *); | 130 | int single_open(struct file *, int (*)(struct seq_file *, void *), void *); |
156 | int single_open_size(struct file *, int (*)(struct seq_file *, void *), void *, size_t); | 131 | int single_open_size(struct file *, int (*)(struct seq_file *, void *), void *, size_t); |
diff --git a/include/linux/serial_8250.h b/include/linux/serial_8250.h index e02acf0a0ec9..a8efa235b7c1 100644 --- a/include/linux/serial_8250.h +++ b/include/linux/serial_8250.h | |||
@@ -85,6 +85,9 @@ struct uart_8250_port { | |||
85 | unsigned char mcr_force; /* mask of forced bits */ | 85 | unsigned char mcr_force; /* mask of forced bits */ |
86 | unsigned char cur_iotype; /* Running I/O type */ | 86 | unsigned char cur_iotype; /* Running I/O type */ |
87 | unsigned int rpm_tx_active; | 87 | unsigned int rpm_tx_active; |
88 | unsigned char canary; /* non-zero during system sleep | ||
89 | * if no_console_suspend | ||
90 | */ | ||
88 | 91 | ||
89 | /* | 92 | /* |
90 | * Some bits in registers are cleared on a read, so they must | 93 | * Some bits in registers are cleared on a read, so they must |
@@ -126,6 +129,7 @@ extern int serial8250_do_startup(struct uart_port *port); | |||
126 | extern void serial8250_do_shutdown(struct uart_port *port); | 129 | extern void serial8250_do_shutdown(struct uart_port *port); |
127 | extern void serial8250_do_pm(struct uart_port *port, unsigned int state, | 130 | extern void serial8250_do_pm(struct uart_port *port, unsigned int state, |
128 | unsigned int oldstate); | 131 | unsigned int oldstate); |
132 | extern void serial8250_do_set_mctrl(struct uart_port *port, unsigned int mctrl); | ||
129 | extern int fsl8250_handle_irq(struct uart_port *port); | 133 | extern int fsl8250_handle_irq(struct uart_port *port); |
130 | int serial8250_handle_irq(struct uart_port *port, unsigned int iir); | 134 | int serial8250_handle_irq(struct uart_port *port, unsigned int iir); |
131 | unsigned char serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr); | 135 | unsigned char serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr); |
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index 057038cf2788..baf3e1d08416 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h | |||
@@ -123,6 +123,7 @@ struct uart_port { | |||
123 | void (*set_termios)(struct uart_port *, | 123 | void (*set_termios)(struct uart_port *, |
124 | struct ktermios *new, | 124 | struct ktermios *new, |
125 | struct ktermios *old); | 125 | struct ktermios *old); |
126 | void (*set_mctrl)(struct uart_port *, unsigned int); | ||
126 | int (*startup)(struct uart_port *port); | 127 | int (*startup)(struct uart_port *port); |
127 | void (*shutdown)(struct uart_port *port); | 128 | void (*shutdown)(struct uart_port *port); |
128 | void (*throttle)(struct uart_port *port); | 129 | void (*throttle)(struct uart_port *port); |
@@ -190,8 +191,10 @@ struct uart_port { | |||
190 | #define UPF_NO_TXEN_TEST ((__force upf_t) (1 << 15)) | 191 | #define UPF_NO_TXEN_TEST ((__force upf_t) (1 << 15)) |
191 | #define UPF_MAGIC_MULTIPLIER ((__force upf_t) ASYNC_MAGIC_MULTIPLIER /* 16 */ ) | 192 | #define UPF_MAGIC_MULTIPLIER ((__force upf_t) ASYNC_MAGIC_MULTIPLIER /* 16 */ ) |
192 | 193 | ||
193 | /* Port has hardware-assisted h/w flow control (iow, auto-RTS *not* auto-CTS) */ | 194 | /* Port has hardware-assisted h/w flow control */ |
194 | #define UPF_HARD_FLOW ((__force upf_t) (1 << 21)) | 195 | #define UPF_AUTO_CTS ((__force upf_t) (1 << 20)) |
196 | #define UPF_AUTO_RTS ((__force upf_t) (1 << 21)) | ||
197 | #define UPF_HARD_FLOW ((__force upf_t) (UPF_AUTO_CTS | UPF_AUTO_RTS)) | ||
195 | /* Port has hardware-assisted s/w flow control */ | 198 | /* Port has hardware-assisted s/w flow control */ |
196 | #define UPF_SOFT_FLOW ((__force upf_t) (1 << 22)) | 199 | #define UPF_SOFT_FLOW ((__force upf_t) (1 << 22)) |
197 | #define UPF_CONS_FLOW ((__force upf_t) (1 << 23)) | 200 | #define UPF_CONS_FLOW ((__force upf_t) (1 << 23)) |
@@ -213,11 +216,17 @@ struct uart_port { | |||
213 | #error Change mask not equivalent to userspace-visible bit defines | 216 | #error Change mask not equivalent to userspace-visible bit defines |
214 | #endif | 217 | #endif |
215 | 218 | ||
216 | /* status must be updated while holding port lock */ | 219 | /* |
220 | * Must hold termios_rwsem, port mutex and port lock to change; | ||
221 | * can hold any one lock to read. | ||
222 | */ | ||
217 | upstat_t status; | 223 | upstat_t status; |
218 | 224 | ||
219 | #define UPSTAT_CTS_ENABLE ((__force upstat_t) (1 << 0)) | 225 | #define UPSTAT_CTS_ENABLE ((__force upstat_t) (1 << 0)) |
220 | #define UPSTAT_DCD_ENABLE ((__force upstat_t) (1 << 1)) | 226 | #define UPSTAT_DCD_ENABLE ((__force upstat_t) (1 << 1)) |
227 | #define UPSTAT_AUTORTS ((__force upstat_t) (1 << 2)) | ||
228 | #define UPSTAT_AUTOCTS ((__force upstat_t) (1 << 3)) | ||
229 | #define UPSTAT_AUTOXOFF ((__force upstat_t) (1 << 4)) | ||
221 | 230 | ||
222 | int hw_stopped; /* sw-assisted CTS flow state */ | 231 | int hw_stopped; /* sw-assisted CTS flow state */ |
223 | unsigned int mctrl; /* current modem ctrl settings */ | 232 | unsigned int mctrl; /* current modem ctrl settings */ |
@@ -391,6 +400,13 @@ static inline bool uart_cts_enabled(struct uart_port *uport) | |||
391 | return !!(uport->status & UPSTAT_CTS_ENABLE); | 400 | return !!(uport->status & UPSTAT_CTS_ENABLE); |
392 | } | 401 | } |
393 | 402 | ||
403 | static inline bool uart_softcts_mode(struct uart_port *uport) | ||
404 | { | ||
405 | upstat_t mask = UPSTAT_CTS_ENABLE | UPSTAT_AUTOCTS; | ||
406 | |||
407 | return ((uport->status & mask) == UPSTAT_CTS_ENABLE); | ||
408 | } | ||
409 | |||
394 | /* | 410 | /* |
395 | * The following are helper functions for the low level drivers. | 411 | * The following are helper functions for the low level drivers. |
396 | */ | 412 | */ |
diff --git a/include/linux/serial_s3c.h b/include/linux/serial_s3c.h index e6fc9567690b..a7f004a3c177 100644 --- a/include/linux/serial_s3c.h +++ b/include/linux/serial_s3c.h | |||
@@ -104,6 +104,31 @@ | |||
104 | S3C2410_UCON_RXIRQMODE | \ | 104 | S3C2410_UCON_RXIRQMODE | \ |
105 | S3C2410_UCON_RXFIFO_TOI) | 105 | S3C2410_UCON_RXFIFO_TOI) |
106 | 106 | ||
107 | #define S3C64XX_UCON_TXBURST_1 (0<<20) | ||
108 | #define S3C64XX_UCON_TXBURST_4 (1<<20) | ||
109 | #define S3C64XX_UCON_TXBURST_8 (2<<20) | ||
110 | #define S3C64XX_UCON_TXBURST_16 (3<<20) | ||
111 | #define S3C64XX_UCON_TXBURST_MASK (0xf<<20) | ||
112 | #define S3C64XX_UCON_RXBURST_1 (0<<16) | ||
113 | #define S3C64XX_UCON_RXBURST_4 (1<<16) | ||
114 | #define S3C64XX_UCON_RXBURST_8 (2<<16) | ||
115 | #define S3C64XX_UCON_RXBURST_16 (3<<16) | ||
116 | #define S3C64XX_UCON_RXBURST_MASK (0xf<<16) | ||
117 | #define S3C64XX_UCON_TIMEOUT_SHIFT (12) | ||
118 | #define S3C64XX_UCON_TIMEOUT_MASK (0xf<<12) | ||
119 | #define S3C64XX_UCON_EMPTYINT_EN (1<<11) | ||
120 | #define S3C64XX_UCON_DMASUS_EN (1<<10) | ||
121 | #define S3C64XX_UCON_TXINT_LEVEL (1<<9) | ||
122 | #define S3C64XX_UCON_RXINT_LEVEL (1<<8) | ||
123 | #define S3C64XX_UCON_TIMEOUT_EN (1<<7) | ||
124 | #define S3C64XX_UCON_ERRINT_EN (1<<6) | ||
125 | #define S3C64XX_UCON_TXMODE_DMA (2<<2) | ||
126 | #define S3C64XX_UCON_TXMODE_CPU (1<<2) | ||
127 | #define S3C64XX_UCON_TXMODE_MASK (3<<2) | ||
128 | #define S3C64XX_UCON_RXMODE_DMA (2<<0) | ||
129 | #define S3C64XX_UCON_RXMODE_CPU (1<<0) | ||
130 | #define S3C64XX_UCON_RXMODE_MASK (3<<0) | ||
131 | |||
107 | #define S3C2410_UFCON_FIFOMODE (1<<0) | 132 | #define S3C2410_UFCON_FIFOMODE (1<<0) |
108 | #define S3C2410_UFCON_TXTRIG0 (0<<6) | 133 | #define S3C2410_UFCON_TXTRIG0 (0<<6) |
109 | #define S3C2410_UFCON_RXTRIG8 (1<<4) | 134 | #define S3C2410_UFCON_RXTRIG8 (1<<4) |
@@ -155,6 +180,7 @@ | |||
155 | #define S3C2440_UFSTAT_TXMASK (63<<8) | 180 | #define S3C2440_UFSTAT_TXMASK (63<<8) |
156 | #define S3C2440_UFSTAT_RXMASK (63) | 181 | #define S3C2440_UFSTAT_RXMASK (63) |
157 | 182 | ||
183 | #define S3C2410_UTRSTAT_TIMEOUT (1<<3) | ||
158 | #define S3C2410_UTRSTAT_TXE (1<<2) | 184 | #define S3C2410_UTRSTAT_TXE (1<<2) |
159 | #define S3C2410_UTRSTAT_TXFE (1<<1) | 185 | #define S3C2410_UTRSTAT_TXFE (1<<1) |
160 | #define S3C2410_UTRSTAT_RXDR (1<<0) | 186 | #define S3C2410_UTRSTAT_RXDR (1<<0) |
@@ -179,8 +205,10 @@ | |||
179 | #define S3C64XX_UINTM 0x38 | 205 | #define S3C64XX_UINTM 0x38 |
180 | 206 | ||
181 | #define S3C64XX_UINTM_RXD (0) | 207 | #define S3C64XX_UINTM_RXD (0) |
208 | #define S3C64XX_UINTM_ERROR (1) | ||
182 | #define S3C64XX_UINTM_TXD (2) | 209 | #define S3C64XX_UINTM_TXD (2) |
183 | #define S3C64XX_UINTM_RXD_MSK (1 << S3C64XX_UINTM_RXD) | 210 | #define S3C64XX_UINTM_RXD_MSK (1 << S3C64XX_UINTM_RXD) |
211 | #define S3C64XX_UINTM_ERR_MSK (1 << S3C64XX_UINTM_ERROR) | ||
184 | #define S3C64XX_UINTM_TXD_MSK (1 << S3C64XX_UINTM_TXD) | 212 | #define S3C64XX_UINTM_TXD_MSK (1 << S3C64XX_UINTM_TXD) |
185 | 213 | ||
186 | /* Following are specific to S5PV210 */ | 214 | /* Following are specific to S5PV210 */ |
diff --git a/include/linux/shrinker.h b/include/linux/shrinker.h index f4aee75f00b1..4fcacd915d45 100644 --- a/include/linux/shrinker.h +++ b/include/linux/shrinker.h | |||
@@ -20,6 +20,9 @@ struct shrink_control { | |||
20 | 20 | ||
21 | /* current node being shrunk (for NUMA aware shrinkers) */ | 21 | /* current node being shrunk (for NUMA aware shrinkers) */ |
22 | int nid; | 22 | int nid; |
23 | |||
24 | /* current memcg being shrunk (for memcg aware shrinkers) */ | ||
25 | struct mem_cgroup *memcg; | ||
23 | }; | 26 | }; |
24 | 27 | ||
25 | #define SHRINK_STOP (~0UL) | 28 | #define SHRINK_STOP (~0UL) |
@@ -61,7 +64,8 @@ struct shrinker { | |||
61 | #define DEFAULT_SEEKS 2 /* A good number if you don't know better. */ | 64 | #define DEFAULT_SEEKS 2 /* A good number if you don't know better. */ |
62 | 65 | ||
63 | /* Flags */ | 66 | /* Flags */ |
64 | #define SHRINKER_NUMA_AWARE (1 << 0) | 67 | #define SHRINKER_NUMA_AWARE (1 << 0) |
68 | #define SHRINKER_MEMCG_AWARE (1 << 1) | ||
65 | 69 | ||
66 | extern int register_shrinker(struct shrinker *); | 70 | extern int register_shrinker(struct shrinker *); |
67 | extern void unregister_shrinker(struct shrinker *); | 71 | extern void unregister_shrinker(struct shrinker *); |
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 85ab7d72b54c..30007afe70b3 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -83,11 +83,15 @@ | |||
83 | * | 83 | * |
84 | * CHECKSUM_PARTIAL: | 84 | * CHECKSUM_PARTIAL: |
85 | * | 85 | * |
86 | * This is identical to the case for output below. This may occur on a packet | 86 | * A checksum is set up to be offloaded to a device as described in the |
87 | * output description for CHECKSUM_PARTIAL. This may occur on a packet | ||
87 | * received directly from another Linux OS, e.g., a virtualized Linux kernel | 88 | * received directly from another Linux OS, e.g., a virtualized Linux kernel |
88 | * on the same host. The packet can be treated in the same way as | 89 | * on the same host, or it may be set in the input path in GRO or remote |
89 | * CHECKSUM_UNNECESSARY, except that on output (i.e., forwarding) the | 90 | * checksum offload. For the purposes of checksum verification, the checksum |
90 | * checksum must be filled in by the OS or the hardware. | 91 | * referred to by skb->csum_start + skb->csum_offset and any preceding |
92 | * checksums in the packet are considered verified. Any checksums in the | ||
93 | * packet that are after the checksum being offloaded are not considered to | ||
94 | * be verified. | ||
91 | * | 95 | * |
92 | * B. Checksumming on output. | 96 | * B. Checksumming on output. |
93 | * | 97 | * |
@@ -626,8 +630,11 @@ struct sk_buff { | |||
626 | __u32 hash; | 630 | __u32 hash; |
627 | __be16 vlan_proto; | 631 | __be16 vlan_proto; |
628 | __u16 vlan_tci; | 632 | __u16 vlan_tci; |
629 | #ifdef CONFIG_NET_RX_BUSY_POLL | 633 | #if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS) |
630 | unsigned int napi_id; | 634 | union { |
635 | unsigned int napi_id; | ||
636 | unsigned int sender_cpu; | ||
637 | }; | ||
631 | #endif | 638 | #endif |
632 | #ifdef CONFIG_NETWORK_SECMARK | 639 | #ifdef CONFIG_NETWORK_SECMARK |
633 | __u32 secmark; | 640 | __u32 secmark; |
@@ -2484,19 +2491,18 @@ static inline int skb_put_padto(struct sk_buff *skb, unsigned int len) | |||
2484 | } | 2491 | } |
2485 | 2492 | ||
2486 | static inline int skb_add_data(struct sk_buff *skb, | 2493 | static inline int skb_add_data(struct sk_buff *skb, |
2487 | char __user *from, int copy) | 2494 | struct iov_iter *from, int copy) |
2488 | { | 2495 | { |
2489 | const int off = skb->len; | 2496 | const int off = skb->len; |
2490 | 2497 | ||
2491 | if (skb->ip_summed == CHECKSUM_NONE) { | 2498 | if (skb->ip_summed == CHECKSUM_NONE) { |
2492 | int err = 0; | 2499 | __wsum csum = 0; |
2493 | __wsum csum = csum_and_copy_from_user(from, skb_put(skb, copy), | 2500 | if (csum_and_copy_from_iter(skb_put(skb, copy), copy, |
2494 | copy, 0, &err); | 2501 | &csum, from) == copy) { |
2495 | if (!err) { | ||
2496 | skb->csum = csum_block_add(skb->csum, csum, off); | 2502 | skb->csum = csum_block_add(skb->csum, csum, off); |
2497 | return 0; | 2503 | return 0; |
2498 | } | 2504 | } |
2499 | } else if (!copy_from_user(skb_put(skb, copy), from, copy)) | 2505 | } else if (copy_from_iter(skb_put(skb, copy), copy, from) == copy) |
2500 | return 0; | 2506 | return 0; |
2501 | 2507 | ||
2502 | __skb_trim(skb, off); | 2508 | __skb_trim(skb, off); |
@@ -2693,8 +2699,7 @@ int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci); | |||
2693 | 2699 | ||
2694 | static inline int memcpy_from_msg(void *data, struct msghdr *msg, int len) | 2700 | static inline int memcpy_from_msg(void *data, struct msghdr *msg, int len) |
2695 | { | 2701 | { |
2696 | /* XXX: stripping const */ | 2702 | return copy_from_iter(data, len, &msg->msg_iter) == len ? 0 : -EFAULT; |
2697 | return memcpy_fromiovec(data, (struct iovec *)msg->msg_iter.iov, len); | ||
2698 | } | 2703 | } |
2699 | 2704 | ||
2700 | static inline int memcpy_to_msg(struct msghdr *msg, void *data, int len) | 2705 | static inline int memcpy_to_msg(struct msghdr *msg, void *data, int len) |
@@ -2914,7 +2919,10 @@ __sum16 __skb_checksum_complete(struct sk_buff *skb); | |||
2914 | 2919 | ||
2915 | static inline int skb_csum_unnecessary(const struct sk_buff *skb) | 2920 | static inline int skb_csum_unnecessary(const struct sk_buff *skb) |
2916 | { | 2921 | { |
2917 | return ((skb->ip_summed & CHECKSUM_UNNECESSARY) || skb->csum_valid); | 2922 | return ((skb->ip_summed == CHECKSUM_UNNECESSARY) || |
2923 | skb->csum_valid || | ||
2924 | (skb->ip_summed == CHECKSUM_PARTIAL && | ||
2925 | skb_checksum_start_offset(skb) >= 0)); | ||
2918 | } | 2926 | } |
2919 | 2927 | ||
2920 | /** | 2928 | /** |
@@ -3071,7 +3079,7 @@ static inline __wsum null_compute_pseudo(struct sk_buff *skb, int proto) | |||
3071 | 3079 | ||
3072 | #define skb_checksum_validate_zero_check(skb, proto, check, \ | 3080 | #define skb_checksum_validate_zero_check(skb, proto, check, \ |
3073 | compute_pseudo) \ | 3081 | compute_pseudo) \ |
3074 | __skb_checksum_validate_(skb, proto, true, true, check, compute_pseudo) | 3082 | __skb_checksum_validate(skb, proto, true, true, check, compute_pseudo) |
3075 | 3083 | ||
3076 | #define skb_checksum_simple_validate(skb) \ | 3084 | #define skb_checksum_simple_validate(skb) \ |
3077 | __skb_checksum_validate(skb, 0, true, false, 0, null_compute_pseudo) | 3085 | __skb_checksum_validate(skb, 0, true, false, 0, null_compute_pseudo) |
@@ -3096,6 +3104,40 @@ do { \ | |||
3096 | compute_pseudo(skb, proto)); \ | 3104 | compute_pseudo(skb, proto)); \ |
3097 | } while (0) | 3105 | } while (0) |
3098 | 3106 | ||
3107 | static inline void skb_remcsum_adjust_partial(struct sk_buff *skb, void *ptr, | ||
3108 | u16 start, u16 offset) | ||
3109 | { | ||
3110 | skb->ip_summed = CHECKSUM_PARTIAL; | ||
3111 | skb->csum_start = ((unsigned char *)ptr + start) - skb->head; | ||
3112 | skb->csum_offset = offset - start; | ||
3113 | } | ||
3114 | |||
3115 | /* Update skbuf and packet to reflect the remote checksum offload operation. | ||
3116 | * When called, ptr indicates the starting point for skb->csum when | ||
3117 | * ip_summed is CHECKSUM_COMPLETE. If we need create checksum complete | ||
3118 | * here, skb_postpull_rcsum is done so skb->csum start is ptr. | ||
3119 | */ | ||
3120 | static inline void skb_remcsum_process(struct sk_buff *skb, void *ptr, | ||
3121 | int start, int offset, bool nopartial) | ||
3122 | { | ||
3123 | __wsum delta; | ||
3124 | |||
3125 | if (!nopartial) { | ||
3126 | skb_remcsum_adjust_partial(skb, ptr, start, offset); | ||
3127 | return; | ||
3128 | } | ||
3129 | |||
3130 | if (unlikely(skb->ip_summed != CHECKSUM_COMPLETE)) { | ||
3131 | __skb_checksum_complete(skb); | ||
3132 | skb_postpull_rcsum(skb, skb->data, ptr - (void *)skb->data); | ||
3133 | } | ||
3134 | |||
3135 | delta = remcsum_adjust(ptr, skb->csum, start, offset); | ||
3136 | |||
3137 | /* Adjust skb->csum since we changed the packet */ | ||
3138 | skb->csum = csum_add(skb->csum, delta); | ||
3139 | } | ||
3140 | |||
3099 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) | 3141 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) |
3100 | void nf_conntrack_destroy(struct nf_conntrack *nfct); | 3142 | void nf_conntrack_destroy(struct nf_conntrack *nfct); |
3101 | static inline void nf_conntrack_put(struct nf_conntrack *nfct) | 3143 | static inline void nf_conntrack_put(struct nf_conntrack *nfct) |
diff --git a/include/linux/slab.h b/include/linux/slab.h index 9a139b637069..76f1feeabd38 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
@@ -104,6 +104,7 @@ | |||
104 | (unsigned long)ZERO_SIZE_PTR) | 104 | (unsigned long)ZERO_SIZE_PTR) |
105 | 105 | ||
106 | #include <linux/kmemleak.h> | 106 | #include <linux/kmemleak.h> |
107 | #include <linux/kasan.h> | ||
107 | 108 | ||
108 | struct mem_cgroup; | 109 | struct mem_cgroup; |
109 | /* | 110 | /* |
@@ -115,14 +116,12 @@ int slab_is_available(void); | |||
115 | struct kmem_cache *kmem_cache_create(const char *, size_t, size_t, | 116 | struct kmem_cache *kmem_cache_create(const char *, size_t, size_t, |
116 | unsigned long, | 117 | unsigned long, |
117 | void (*)(void *)); | 118 | void (*)(void *)); |
118 | #ifdef CONFIG_MEMCG_KMEM | ||
119 | struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *, | ||
120 | struct kmem_cache *, | ||
121 | const char *); | ||
122 | #endif | ||
123 | void kmem_cache_destroy(struct kmem_cache *); | 119 | void kmem_cache_destroy(struct kmem_cache *); |
124 | int kmem_cache_shrink(struct kmem_cache *); | 120 | int kmem_cache_shrink(struct kmem_cache *); |
125 | void kmem_cache_free(struct kmem_cache *, void *); | 121 | |
122 | void memcg_create_kmem_cache(struct mem_cgroup *, struct kmem_cache *); | ||
123 | void memcg_deactivate_kmem_caches(struct mem_cgroup *); | ||
124 | void memcg_destroy_kmem_caches(struct mem_cgroup *); | ||
126 | 125 | ||
127 | /* | 126 | /* |
128 | * Please use this macro to create slab caches. Simply specify the | 127 | * Please use this macro to create slab caches. Simply specify the |
@@ -289,6 +288,7 @@ static __always_inline int kmalloc_index(size_t size) | |||
289 | 288 | ||
290 | void *__kmalloc(size_t size, gfp_t flags); | 289 | void *__kmalloc(size_t size, gfp_t flags); |
291 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t flags); | 290 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t flags); |
291 | void kmem_cache_free(struct kmem_cache *, void *); | ||
292 | 292 | ||
293 | #ifdef CONFIG_NUMA | 293 | #ifdef CONFIG_NUMA |
294 | void *__kmalloc_node(size_t size, gfp_t flags, int node); | 294 | void *__kmalloc_node(size_t size, gfp_t flags, int node); |
@@ -326,7 +326,10 @@ kmem_cache_alloc_node_trace(struct kmem_cache *s, | |||
326 | static __always_inline void *kmem_cache_alloc_trace(struct kmem_cache *s, | 326 | static __always_inline void *kmem_cache_alloc_trace(struct kmem_cache *s, |
327 | gfp_t flags, size_t size) | 327 | gfp_t flags, size_t size) |
328 | { | 328 | { |
329 | return kmem_cache_alloc(s, flags); | 329 | void *ret = kmem_cache_alloc(s, flags); |
330 | |||
331 | kasan_kmalloc(s, ret, size); | ||
332 | return ret; | ||
330 | } | 333 | } |
331 | 334 | ||
332 | static __always_inline void * | 335 | static __always_inline void * |
@@ -334,7 +337,10 @@ kmem_cache_alloc_node_trace(struct kmem_cache *s, | |||
334 | gfp_t gfpflags, | 337 | gfp_t gfpflags, |
335 | int node, size_t size) | 338 | int node, size_t size) |
336 | { | 339 | { |
337 | return kmem_cache_alloc_node(s, gfpflags, node); | 340 | void *ret = kmem_cache_alloc_node(s, gfpflags, node); |
341 | |||
342 | kasan_kmalloc(s, ret, size); | ||
343 | return ret; | ||
338 | } | 344 | } |
339 | #endif /* CONFIG_TRACING */ | 345 | #endif /* CONFIG_TRACING */ |
340 | 346 | ||
@@ -474,14 +480,14 @@ static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) | |||
474 | #ifndef ARCH_SLAB_MINALIGN | 480 | #ifndef ARCH_SLAB_MINALIGN |
475 | #define ARCH_SLAB_MINALIGN __alignof__(unsigned long long) | 481 | #define ARCH_SLAB_MINALIGN __alignof__(unsigned long long) |
476 | #endif | 482 | #endif |
483 | |||
484 | struct memcg_cache_array { | ||
485 | struct rcu_head rcu; | ||
486 | struct kmem_cache *entries[0]; | ||
487 | }; | ||
488 | |||
477 | /* | 489 | /* |
478 | * This is the main placeholder for memcg-related information in kmem caches. | 490 | * This is the main placeholder for memcg-related information in kmem caches. |
479 | * struct kmem_cache will hold a pointer to it, so the memory cost while | ||
480 | * disabled is 1 pointer. The runtime cost while enabled, gets bigger than it | ||
481 | * would otherwise be if that would be bundled in kmem_cache: we'll need an | ||
482 | * extra pointer chase. But the trade off clearly lays in favor of not | ||
483 | * penalizing non-users. | ||
484 | * | ||
485 | * Both the root cache and the child caches will have it. For the root cache, | 491 | * Both the root cache and the child caches will have it. For the root cache, |
486 | * this will hold a dynamically allocated array large enough to hold | 492 | * this will hold a dynamically allocated array large enough to hold |
487 | * information about the currently limited memcgs in the system. To allow the | 493 | * information about the currently limited memcgs in the system. To allow the |
@@ -491,19 +497,18 @@ static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) | |||
491 | * Child caches will hold extra metadata needed for its operation. Fields are: | 497 | * Child caches will hold extra metadata needed for its operation. Fields are: |
492 | * | 498 | * |
493 | * @memcg: pointer to the memcg this cache belongs to | 499 | * @memcg: pointer to the memcg this cache belongs to |
494 | * @list: list_head for the list of all caches in this memcg | ||
495 | * @root_cache: pointer to the global, root cache, this cache was derived from | 500 | * @root_cache: pointer to the global, root cache, this cache was derived from |
501 | * | ||
502 | * Both root and child caches of the same kind are linked into a list chained | ||
503 | * through @list. | ||
496 | */ | 504 | */ |
497 | struct memcg_cache_params { | 505 | struct memcg_cache_params { |
498 | bool is_root_cache; | 506 | bool is_root_cache; |
507 | struct list_head list; | ||
499 | union { | 508 | union { |
500 | struct { | 509 | struct memcg_cache_array __rcu *memcg_caches; |
501 | struct rcu_head rcu_head; | ||
502 | struct kmem_cache *memcg_caches[0]; | ||
503 | }; | ||
504 | struct { | 510 | struct { |
505 | struct mem_cgroup *memcg; | 511 | struct mem_cgroup *memcg; |
506 | struct list_head list; | ||
507 | struct kmem_cache *root_cache; | 512 | struct kmem_cache *root_cache; |
508 | }; | 513 | }; |
509 | }; | 514 | }; |
diff --git a/include/linux/slab_def.h b/include/linux/slab_def.h index b869d1662ba3..33d049066c3d 100644 --- a/include/linux/slab_def.h +++ b/include/linux/slab_def.h | |||
@@ -70,7 +70,7 @@ struct kmem_cache { | |||
70 | int obj_offset; | 70 | int obj_offset; |
71 | #endif /* CONFIG_DEBUG_SLAB */ | 71 | #endif /* CONFIG_DEBUG_SLAB */ |
72 | #ifdef CONFIG_MEMCG_KMEM | 72 | #ifdef CONFIG_MEMCG_KMEM |
73 | struct memcg_cache_params *memcg_params; | 73 | struct memcg_cache_params memcg_params; |
74 | #endif | 74 | #endif |
75 | 75 | ||
76 | struct kmem_cache_node *node[MAX_NUMNODES]; | 76 | struct kmem_cache_node *node[MAX_NUMNODES]; |
diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index d82abd40a3c0..33885118523c 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h | |||
@@ -85,7 +85,7 @@ struct kmem_cache { | |||
85 | struct kobject kobj; /* For sysfs */ | 85 | struct kobject kobj; /* For sysfs */ |
86 | #endif | 86 | #endif |
87 | #ifdef CONFIG_MEMCG_KMEM | 87 | #ifdef CONFIG_MEMCG_KMEM |
88 | struct memcg_cache_params *memcg_params; | 88 | struct memcg_cache_params memcg_params; |
89 | int max_attr_size; /* for propagation, maximum size of a stored attr */ | 89 | int max_attr_size; /* for propagation, maximum size of a stored attr */ |
90 | #ifdef CONFIG_SYSFS | 90 | #ifdef CONFIG_SYSFS |
91 | struct kset *memcg_kset; | 91 | struct kset *memcg_kset; |
@@ -110,4 +110,23 @@ static inline void sysfs_slab_remove(struct kmem_cache *s) | |||
110 | } | 110 | } |
111 | #endif | 111 | #endif |
112 | 112 | ||
113 | |||
114 | /** | ||
115 | * virt_to_obj - returns address of the beginning of object. | ||
116 | * @s: object's kmem_cache | ||
117 | * @slab_page: address of slab page | ||
118 | * @x: address within object memory range | ||
119 | * | ||
120 | * Returns address of the beginning of object | ||
121 | */ | ||
122 | static inline void *virt_to_obj(struct kmem_cache *s, | ||
123 | const void *slab_page, | ||
124 | const void *x) | ||
125 | { | ||
126 | return (void *)x - ((x - slab_page) % s->size); | ||
127 | } | ||
128 | |||
129 | void object_err(struct kmem_cache *s, struct page *page, | ||
130 | u8 *object, char *reason); | ||
131 | |||
113 | #endif /* _LINUX_SLUB_DEF_H */ | 132 | #endif /* _LINUX_SLUB_DEF_H */ |
diff --git a/include/linux/smp.h b/include/linux/smp.h index 93dff5fff524..be91db2a7017 100644 --- a/include/linux/smp.h +++ b/include/linux/smp.h | |||
@@ -151,6 +151,13 @@ smp_call_function_any(const struct cpumask *mask, smp_call_func_t func, | |||
151 | static inline void kick_all_cpus_sync(void) { } | 151 | static inline void kick_all_cpus_sync(void) { } |
152 | static inline void wake_up_all_idle_cpus(void) { } | 152 | static inline void wake_up_all_idle_cpus(void) { } |
153 | 153 | ||
154 | #ifdef CONFIG_UP_LATE_INIT | ||
155 | extern void __init up_late_init(void); | ||
156 | static inline void smp_init(void) { up_late_init(); } | ||
157 | #else | ||
158 | static inline void smp_init(void) { } | ||
159 | #endif | ||
160 | |||
154 | #endif /* !SMP */ | 161 | #endif /* !SMP */ |
155 | 162 | ||
156 | /* | 163 | /* |
diff --git a/include/linux/socket.h b/include/linux/socket.h index 6e49a14365dc..5c19cba34dce 100644 --- a/include/linux/socket.h +++ b/include/linux/socket.h | |||
@@ -318,13 +318,6 @@ struct ucred { | |||
318 | /* IPX options */ | 318 | /* IPX options */ |
319 | #define IPX_TYPE 1 | 319 | #define IPX_TYPE 1 |
320 | 320 | ||
321 | extern int csum_partial_copy_fromiovecend(unsigned char *kdata, | ||
322 | struct iovec *iov, | ||
323 | int offset, | ||
324 | unsigned int len, __wsum *csump); | ||
325 | extern unsigned long iov_pages(const struct iovec *iov, int offset, | ||
326 | unsigned long nr_segs); | ||
327 | |||
328 | extern int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr); | 321 | extern int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr); |
329 | extern int put_cmsg(struct msghdr*, int level, int type, int len, void *data); | 322 | extern int put_cmsg(struct msghdr*, int level, int type, int len, void *data); |
330 | 323 | ||
diff --git a/include/linux/spi/at86rf230.h b/include/linux/spi/at86rf230.h index b2b1afbb3202..cd519a11c2c6 100644 --- a/include/linux/spi/at86rf230.h +++ b/include/linux/spi/at86rf230.h | |||
@@ -12,10 +12,6 @@ | |||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | * GNU General Public License for more details. | 13 | * GNU General Public License for more details. |
14 | * | 14 | * |
15 | * You should have received a copy of the GNU General Public License along | ||
16 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | * | ||
19 | * Written by: | 15 | * Written by: |
20 | * Dmitry Eremin-Solenikov <dmitry.baryshkov@siemens.com> | 16 | * Dmitry Eremin-Solenikov <dmitry.baryshkov@siemens.com> |
21 | */ | 17 | */ |
diff --git a/include/linux/spi/l4f00242t03.h b/include/linux/spi/l4f00242t03.h index bc8677c8eba9..e69e9b51b21a 100644 --- a/include/linux/spi/l4f00242t03.h +++ b/include/linux/spi/l4f00242t03.h | |||
@@ -12,10 +12,6 @@ | |||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | * GNU General Public License for more details. | 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 | */ | 15 | */ |
20 | 16 | ||
21 | #ifndef _INCLUDE_LINUX_SPI_L4F00242T03_H_ | 17 | #ifndef _INCLUDE_LINUX_SPI_L4F00242T03_H_ |
diff --git a/include/linux/spi/lms283gf05.h b/include/linux/spi/lms283gf05.h index 555d254e6606..fdd1d1d51da5 100644 --- a/include/linux/spi/lms283gf05.h +++ b/include/linux/spi/lms283gf05.h | |||
@@ -11,10 +11,6 @@ | |||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | * GNU General Public License for more details. | 13 | * GNU General Public License for more details. |
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this program; if not, write to the Free Software | ||
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
18 | */ | 14 | */ |
19 | 15 | ||
20 | #ifndef _INCLUDE_LINUX_SPI_LMS283GF05_H_ | 16 | #ifndef _INCLUDE_LINUX_SPI_LMS283GF05_H_ |
diff --git a/include/linux/spi/mxs-spi.h b/include/linux/spi/mxs-spi.h index 4835486f58e5..381d368b91b4 100644 --- a/include/linux/spi/mxs-spi.h +++ b/include/linux/spi/mxs-spi.h | |||
@@ -15,10 +15,6 @@ | |||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | * GNU General Public License for more details. | 17 | * GNU General Public License for more details. |
18 | * | ||
19 | * You should have received a copy of the GNU General Public License along | ||
20 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
21 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
22 | */ | 18 | */ |
23 | 19 | ||
24 | #ifndef __LINUX_SPI_MXS_SPI_H__ | 20 | #ifndef __LINUX_SPI_MXS_SPI_H__ |
diff --git a/include/linux/spi/pxa2xx_spi.h b/include/linux/spi/pxa2xx_spi.h index d5a316550177..6d36dacec4ba 100644 --- a/include/linux/spi/pxa2xx_spi.h +++ b/include/linux/spi/pxa2xx_spi.h | |||
@@ -10,10 +10,6 @@ | |||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. | 12 | * GNU General Public License for more details. |
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
17 | */ | 13 | */ |
18 | #ifndef __linux_pxa2xx_spi_h | 14 | #ifndef __linux_pxa2xx_spi_h |
19 | #define __linux_pxa2xx_spi_h | 15 | #define __linux_pxa2xx_spi_h |
@@ -57,7 +53,6 @@ struct pxa2xx_spi_chip { | |||
57 | #if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP) | 53 | #if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP) |
58 | 54 | ||
59 | #include <linux/clk.h> | 55 | #include <linux/clk.h> |
60 | #include <mach/dma.h> | ||
61 | 56 | ||
62 | extern void pxa2xx_set_spi_info(unsigned id, struct pxa2xx_spi_master *info); | 57 | extern void pxa2xx_set_spi_info(unsigned id, struct pxa2xx_spi_master *info); |
63 | 58 | ||
diff --git a/include/linux/spi/rspi.h b/include/linux/spi/rspi.h index e546b2ceb623..a693188cc08b 100644 --- a/include/linux/spi/rspi.h +++ b/include/linux/spi/rspi.h | |||
@@ -11,11 +11,6 @@ | |||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | * GNU General Public License for more details. | 13 | * GNU General Public License for more details. |
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this program; if not, write to the Free Software | ||
17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
18 | * | ||
19 | */ | 14 | */ |
20 | 15 | ||
21 | #ifndef __LINUX_SPI_RENESAS_SPI_H__ | 16 | #ifndef __LINUX_SPI_RENESAS_SPI_H__ |
diff --git a/include/linux/spi/sh_hspi.h b/include/linux/spi/sh_hspi.h index a1121f872ac1..aa0d440ab4f0 100644 --- a/include/linux/spi/sh_hspi.h +++ b/include/linux/spi/sh_hspi.h | |||
@@ -9,10 +9,6 @@ | |||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 | * GNU General Public License for more details. | 11 | * GNU General Public License for more details. |
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
16 | */ | 12 | */ |
17 | #ifndef SH_HSPI_H | 13 | #ifndef SH_HSPI_H |
18 | #define SH_HSPI_H | 14 | #define SH_HSPI_H |
diff --git a/include/linux/spi/sh_msiof.h b/include/linux/spi/sh_msiof.h index 88a14d81c49e..b087a85f5f72 100644 --- a/include/linux/spi/sh_msiof.h +++ b/include/linux/spi/sh_msiof.h | |||
@@ -7,6 +7,8 @@ struct sh_msiof_spi_info { | |||
7 | u16 num_chipselect; | 7 | u16 num_chipselect; |
8 | unsigned int dma_tx_id; | 8 | unsigned int dma_tx_id; |
9 | unsigned int dma_rx_id; | 9 | unsigned int dma_rx_id; |
10 | u32 dtdl; | ||
11 | u32 syncdl; | ||
10 | }; | 12 | }; |
11 | 13 | ||
12 | #endif /* __SPI_SH_MSIOF_H__ */ | 14 | #endif /* __SPI_SH_MSIOF_H__ */ |
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index a6ef2a8e6de4..ed9489d893a4 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h | |||
@@ -10,10 +10,6 @@ | |||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. | 12 | * GNU General Public License for more details. |
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
17 | */ | 13 | */ |
18 | 14 | ||
19 | #ifndef __LINUX_SPI_H | 15 | #ifndef __LINUX_SPI_H |
@@ -260,6 +256,7 @@ static inline void spi_unregister_driver(struct spi_driver *sdrv) | |||
260 | * @pump_messages: work struct for scheduling work to the message pump | 256 | * @pump_messages: work struct for scheduling work to the message pump |
261 | * @queue_lock: spinlock to syncronise access to message queue | 257 | * @queue_lock: spinlock to syncronise access to message queue |
262 | * @queue: message queue | 258 | * @queue: message queue |
259 | * @idling: the device is entering idle state | ||
263 | * @cur_msg: the currently in-flight message | 260 | * @cur_msg: the currently in-flight message |
264 | * @cur_msg_prepared: spi_prepare_message was called for the currently | 261 | * @cur_msg_prepared: spi_prepare_message was called for the currently |
265 | * in-flight message | 262 | * in-flight message |
@@ -425,6 +422,7 @@ struct spi_master { | |||
425 | spinlock_t queue_lock; | 422 | spinlock_t queue_lock; |
426 | struct list_head queue; | 423 | struct list_head queue; |
427 | struct spi_message *cur_msg; | 424 | struct spi_message *cur_msg; |
425 | bool idling; | ||
428 | bool busy; | 426 | bool busy; |
429 | bool running; | 427 | bool running; |
430 | bool rt; | 428 | bool rt; |
diff --git a/include/linux/spi/tle62x0.h b/include/linux/spi/tle62x0.h index 60b59187e590..414c6fddfcf0 100644 --- a/include/linux/spi/tle62x0.h +++ b/include/linux/spi/tle62x0.h | |||
@@ -12,10 +12,6 @@ | |||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | * GNU General Public License for more details. | 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 | */ | 15 | */ |
20 | 16 | ||
21 | struct tle62x0_pdata { | 17 | struct tle62x0_pdata { |
diff --git a/include/linux/spi/tsc2005.h b/include/linux/spi/tsc2005.h index 8f721e465e05..563b3b1799a8 100644 --- a/include/linux/spi/tsc2005.h +++ b/include/linux/spi/tsc2005.h | |||
@@ -12,11 +12,6 @@ | |||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | * GNU General Public License for more details. | 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 | */ | 15 | */ |
21 | 16 | ||
22 | #ifndef _LINUX_SPI_TSC2005_H | 17 | #ifndef _LINUX_SPI_TSC2005_H |
diff --git a/include/linux/spinlock.h b/include/linux/spinlock.h index 262ba4ef9a8e..3e18379dfa6f 100644 --- a/include/linux/spinlock.h +++ b/include/linux/spinlock.h | |||
@@ -190,6 +190,8 @@ static inline void do_raw_spin_unlock(raw_spinlock_t *lock) __releases(lock) | |||
190 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 190 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
191 | # define raw_spin_lock_nested(lock, subclass) \ | 191 | # define raw_spin_lock_nested(lock, subclass) \ |
192 | _raw_spin_lock_nested(lock, subclass) | 192 | _raw_spin_lock_nested(lock, subclass) |
193 | # define raw_spin_lock_bh_nested(lock, subclass) \ | ||
194 | _raw_spin_lock_bh_nested(lock, subclass) | ||
193 | 195 | ||
194 | # define raw_spin_lock_nest_lock(lock, nest_lock) \ | 196 | # define raw_spin_lock_nest_lock(lock, nest_lock) \ |
195 | do { \ | 197 | do { \ |
@@ -205,6 +207,7 @@ static inline void do_raw_spin_unlock(raw_spinlock_t *lock) __releases(lock) | |||
205 | # define raw_spin_lock_nested(lock, subclass) \ | 207 | # define raw_spin_lock_nested(lock, subclass) \ |
206 | _raw_spin_lock(((void)(subclass), (lock))) | 208 | _raw_spin_lock(((void)(subclass), (lock))) |
207 | # define raw_spin_lock_nest_lock(lock, nest_lock) _raw_spin_lock(lock) | 209 | # define raw_spin_lock_nest_lock(lock, nest_lock) _raw_spin_lock(lock) |
210 | # define raw_spin_lock_bh_nested(lock, subclass) _raw_spin_lock_bh(lock) | ||
208 | #endif | 211 | #endif |
209 | 212 | ||
210 | #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) | 213 | #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) |
@@ -324,6 +327,11 @@ do { \ | |||
324 | raw_spin_lock_nested(spinlock_check(lock), subclass); \ | 327 | raw_spin_lock_nested(spinlock_check(lock), subclass); \ |
325 | } while (0) | 328 | } while (0) |
326 | 329 | ||
330 | #define spin_lock_bh_nested(lock, subclass) \ | ||
331 | do { \ | ||
332 | raw_spin_lock_bh_nested(spinlock_check(lock), subclass);\ | ||
333 | } while (0) | ||
334 | |||
327 | #define spin_lock_nest_lock(lock, nest_lock) \ | 335 | #define spin_lock_nest_lock(lock, nest_lock) \ |
328 | do { \ | 336 | do { \ |
329 | raw_spin_lock_nest_lock(spinlock_check(lock), nest_lock); \ | 337 | raw_spin_lock_nest_lock(spinlock_check(lock), nest_lock); \ |
diff --git a/include/linux/spinlock_api_smp.h b/include/linux/spinlock_api_smp.h index 42dfab89e740..5344268e6e62 100644 --- a/include/linux/spinlock_api_smp.h +++ b/include/linux/spinlock_api_smp.h | |||
@@ -22,6 +22,8 @@ int in_lock_functions(unsigned long addr); | |||
22 | void __lockfunc _raw_spin_lock(raw_spinlock_t *lock) __acquires(lock); | 22 | void __lockfunc _raw_spin_lock(raw_spinlock_t *lock) __acquires(lock); |
23 | void __lockfunc _raw_spin_lock_nested(raw_spinlock_t *lock, int subclass) | 23 | void __lockfunc _raw_spin_lock_nested(raw_spinlock_t *lock, int subclass) |
24 | __acquires(lock); | 24 | __acquires(lock); |
25 | void __lockfunc _raw_spin_lock_bh_nested(raw_spinlock_t *lock, int subclass) | ||
26 | __acquires(lock); | ||
25 | void __lockfunc | 27 | void __lockfunc |
26 | _raw_spin_lock_nest_lock(raw_spinlock_t *lock, struct lockdep_map *map) | 28 | _raw_spin_lock_nest_lock(raw_spinlock_t *lock, struct lockdep_map *map) |
27 | __acquires(lock); | 29 | __acquires(lock); |
diff --git a/include/linux/spinlock_api_up.h b/include/linux/spinlock_api_up.h index d0d188861ad6..d3afef9d8dbe 100644 --- a/include/linux/spinlock_api_up.h +++ b/include/linux/spinlock_api_up.h | |||
@@ -57,6 +57,7 @@ | |||
57 | 57 | ||
58 | #define _raw_spin_lock(lock) __LOCK(lock) | 58 | #define _raw_spin_lock(lock) __LOCK(lock) |
59 | #define _raw_spin_lock_nested(lock, subclass) __LOCK(lock) | 59 | #define _raw_spin_lock_nested(lock, subclass) __LOCK(lock) |
60 | #define _raw_spin_lock_bh_nested(lock, subclass) __LOCK(lock) | ||
60 | #define _raw_read_lock(lock) __LOCK(lock) | 61 | #define _raw_read_lock(lock) __LOCK(lock) |
61 | #define _raw_write_lock(lock) __LOCK(lock) | 62 | #define _raw_write_lock(lock) __LOCK(lock) |
62 | #define _raw_spin_lock_bh(lock) __LOCK_BH(lock) | 63 | #define _raw_spin_lock_bh(lock) __LOCK_BH(lock) |
diff --git a/include/linux/srcu.h b/include/linux/srcu.h index a2783cb5d275..9cfd9623fb03 100644 --- a/include/linux/srcu.h +++ b/include/linux/srcu.h | |||
@@ -45,7 +45,7 @@ struct rcu_batch { | |||
45 | #define RCU_BATCH_INIT(name) { NULL, &(name.head) } | 45 | #define RCU_BATCH_INIT(name) { NULL, &(name.head) } |
46 | 46 | ||
47 | struct srcu_struct { | 47 | struct srcu_struct { |
48 | unsigned completed; | 48 | unsigned long completed; |
49 | struct srcu_struct_array __percpu *per_cpu_ref; | 49 | struct srcu_struct_array __percpu *per_cpu_ref; |
50 | spinlock_t queue_lock; /* protect ->batch_queue, ->running */ | 50 | spinlock_t queue_lock; /* protect ->batch_queue, ->running */ |
51 | bool running; | 51 | bool running; |
@@ -102,13 +102,11 @@ void process_srcu(struct work_struct *work); | |||
102 | * define and init a srcu struct at build time. | 102 | * define and init a srcu struct at build time. |
103 | * dont't call init_srcu_struct() nor cleanup_srcu_struct() on it. | 103 | * dont't call init_srcu_struct() nor cleanup_srcu_struct() on it. |
104 | */ | 104 | */ |
105 | #define DEFINE_SRCU(name) \ | 105 | #define __DEFINE_SRCU(name, is_static) \ |
106 | static DEFINE_PER_CPU(struct srcu_struct_array, name##_srcu_array);\ | 106 | static DEFINE_PER_CPU(struct srcu_struct_array, name##_srcu_array);\ |
107 | struct srcu_struct name = __SRCU_STRUCT_INIT(name); | 107 | is_static struct srcu_struct name = __SRCU_STRUCT_INIT(name) |
108 | 108 | #define DEFINE_SRCU(name) __DEFINE_SRCU(name, /* not static */) | |
109 | #define DEFINE_STATIC_SRCU(name) \ | 109 | #define DEFINE_STATIC_SRCU(name) __DEFINE_SRCU(name, static) |
110 | static DEFINE_PER_CPU(struct srcu_struct_array, name##_srcu_array);\ | ||
111 | static struct srcu_struct name = __SRCU_STRUCT_INIT(name); | ||
112 | 110 | ||
113 | /** | 111 | /** |
114 | * call_srcu() - Queue a callback for invocation after an SRCU grace period | 112 | * call_srcu() - Queue a callback for invocation after an SRCU grace period |
@@ -135,7 +133,7 @@ int __srcu_read_lock(struct srcu_struct *sp) __acquires(sp); | |||
135 | void __srcu_read_unlock(struct srcu_struct *sp, int idx) __releases(sp); | 133 | void __srcu_read_unlock(struct srcu_struct *sp, int idx) __releases(sp); |
136 | void synchronize_srcu(struct srcu_struct *sp); | 134 | void synchronize_srcu(struct srcu_struct *sp); |
137 | void synchronize_srcu_expedited(struct srcu_struct *sp); | 135 | void synchronize_srcu_expedited(struct srcu_struct *sp); |
138 | long srcu_batches_completed(struct srcu_struct *sp); | 136 | unsigned long srcu_batches_completed(struct srcu_struct *sp); |
139 | void srcu_barrier(struct srcu_struct *sp); | 137 | void srcu_barrier(struct srcu_struct *sp); |
140 | 138 | ||
141 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 139 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
diff --git a/include/linux/ssb/ssb_regs.h b/include/linux/ssb/ssb_regs.h index f7b9100686c3..c0f707ac192b 100644 --- a/include/linux/ssb/ssb_regs.h +++ b/include/linux/ssb/ssb_regs.h | |||
@@ -173,6 +173,7 @@ | |||
173 | #define SSB_SPROMSIZE_BYTES_R123 (SSB_SPROMSIZE_WORDS_R123 * sizeof(u16)) | 173 | #define SSB_SPROMSIZE_BYTES_R123 (SSB_SPROMSIZE_WORDS_R123 * sizeof(u16)) |
174 | #define SSB_SPROMSIZE_BYTES_R4 (SSB_SPROMSIZE_WORDS_R4 * sizeof(u16)) | 174 | #define SSB_SPROMSIZE_BYTES_R4 (SSB_SPROMSIZE_WORDS_R4 * sizeof(u16)) |
175 | #define SSB_SPROMSIZE_WORDS_R10 230 | 175 | #define SSB_SPROMSIZE_WORDS_R10 230 |
176 | #define SSB_SPROMSIZE_WORDS_R11 234 | ||
176 | #define SSB_SPROM_BASE1 0x1000 | 177 | #define SSB_SPROM_BASE1 0x1000 |
177 | #define SSB_SPROM_BASE31 0x0800 | 178 | #define SSB_SPROM_BASE31 0x0800 |
178 | #define SSB_SPROM_REVISION 0x007E | 179 | #define SSB_SPROM_REVISION 0x007E |
diff --git a/include/linux/string.h b/include/linux/string.h index 2e22a2e58f3a..e40099e585c9 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
@@ -40,9 +40,6 @@ extern int strcmp(const char *,const char *); | |||
40 | #ifndef __HAVE_ARCH_STRNCMP | 40 | #ifndef __HAVE_ARCH_STRNCMP |
41 | extern int strncmp(const char *,const char *,__kernel_size_t); | 41 | extern int strncmp(const char *,const char *,__kernel_size_t); |
42 | #endif | 42 | #endif |
43 | #ifndef __HAVE_ARCH_STRNICMP | ||
44 | #define strnicmp strncasecmp | ||
45 | #endif | ||
46 | #ifndef __HAVE_ARCH_STRCASECMP | 43 | #ifndef __HAVE_ARCH_STRCASECMP |
47 | extern int strcasecmp(const char *s1, const char *s2); | 44 | extern int strcasecmp(const char *s1, const char *s2); |
48 | #endif | 45 | #endif |
@@ -115,7 +112,10 @@ extern void * memchr(const void *,int,__kernel_size_t); | |||
115 | #endif | 112 | #endif |
116 | void *memchr_inv(const void *s, int c, size_t n); | 113 | void *memchr_inv(const void *s, int c, size_t n); |
117 | 114 | ||
115 | extern void kfree_const(const void *x); | ||
116 | |||
118 | extern char *kstrdup(const char *s, gfp_t gfp); | 117 | extern char *kstrdup(const char *s, gfp_t gfp); |
118 | extern const char *kstrdup_const(const char *s, gfp_t gfp); | ||
119 | extern char *kstrndup(const char *s, size_t len, gfp_t gfp); | 119 | extern char *kstrndup(const char *s, size_t len, gfp_t gfp); |
120 | extern void *kmemdup(const void *src, size_t len, gfp_t gfp); | 120 | extern void *kmemdup(const void *src, size_t len, gfp_t gfp); |
121 | 121 | ||
diff --git a/include/linux/string_helpers.h b/include/linux/string_helpers.h index 6eb567ac56bc..657571817260 100644 --- a/include/linux/string_helpers.h +++ b/include/linux/string_helpers.h | |||
@@ -10,8 +10,8 @@ enum string_size_units { | |||
10 | STRING_UNITS_2, /* use binary powers of 2^10 */ | 10 | STRING_UNITS_2, /* use binary powers of 2^10 */ |
11 | }; | 11 | }; |
12 | 12 | ||
13 | int string_get_size(u64 size, enum string_size_units units, | 13 | void string_get_size(u64 size, enum string_size_units units, |
14 | char *buf, int len); | 14 | char *buf, int len); |
15 | 15 | ||
16 | #define UNESCAPE_SPACE 0x01 | 16 | #define UNESCAPE_SPACE 0x01 |
17 | #define UNESCAPE_OCTAL 0x02 | 17 | #define UNESCAPE_OCTAL 0x02 |
diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h index d86acc63b25f..598ba80ec30c 100644 --- a/include/linux/sunrpc/clnt.h +++ b/include/linux/sunrpc/clnt.h | |||
@@ -57,7 +57,7 @@ struct rpc_clnt { | |||
57 | const struct rpc_timeout *cl_timeout; /* Timeout strategy */ | 57 | const struct rpc_timeout *cl_timeout; /* Timeout strategy */ |
58 | 58 | ||
59 | int cl_nodelen; /* nodename length */ | 59 | int cl_nodelen; /* nodename length */ |
60 | char cl_nodename[UNX_MAXNODENAME]; | 60 | char cl_nodename[UNX_MAXNODENAME+1]; |
61 | struct rpc_pipe_dir_head cl_pipedir_objects; | 61 | struct rpc_pipe_dir_head cl_pipedir_objects; |
62 | struct rpc_clnt * cl_parent; /* Points to parent of clones */ | 62 | struct rpc_clnt * cl_parent; /* Points to parent of clones */ |
63 | struct rpc_rtt cl_rtt_default; | 63 | struct rpc_rtt cl_rtt_default; |
@@ -112,6 +112,7 @@ struct rpc_create_args { | |||
112 | struct sockaddr *saddress; | 112 | struct sockaddr *saddress; |
113 | const struct rpc_timeout *timeout; | 113 | const struct rpc_timeout *timeout; |
114 | const char *servername; | 114 | const char *servername; |
115 | const char *nodename; | ||
115 | const struct rpc_program *program; | 116 | const struct rpc_program *program; |
116 | u32 prognumber; /* overrides program->number */ | 117 | u32 prognumber; /* overrides program->number */ |
117 | u32 version; | 118 | u32 version; |
diff --git a/include/linux/sunrpc/metrics.h b/include/linux/sunrpc/metrics.h index eecb5a71e6c0..7e61a17030a4 100644 --- a/include/linux/sunrpc/metrics.h +++ b/include/linux/sunrpc/metrics.h | |||
@@ -79,6 +79,8 @@ struct rpc_clnt; | |||
79 | struct rpc_iostats * rpc_alloc_iostats(struct rpc_clnt *); | 79 | struct rpc_iostats * rpc_alloc_iostats(struct rpc_clnt *); |
80 | void rpc_count_iostats(const struct rpc_task *, | 80 | void rpc_count_iostats(const struct rpc_task *, |
81 | struct rpc_iostats *); | 81 | struct rpc_iostats *); |
82 | void rpc_count_iostats_metrics(const struct rpc_task *, | ||
83 | struct rpc_iostats *); | ||
82 | void rpc_print_iostats(struct seq_file *, struct rpc_clnt *); | 84 | void rpc_print_iostats(struct seq_file *, struct rpc_clnt *); |
83 | void rpc_free_iostats(struct rpc_iostats *); | 85 | void rpc_free_iostats(struct rpc_iostats *); |
84 | 86 | ||
@@ -87,6 +89,8 @@ void rpc_free_iostats(struct rpc_iostats *); | |||
87 | static inline struct rpc_iostats *rpc_alloc_iostats(struct rpc_clnt *clnt) { return NULL; } | 89 | static inline struct rpc_iostats *rpc_alloc_iostats(struct rpc_clnt *clnt) { return NULL; } |
88 | static inline void rpc_count_iostats(const struct rpc_task *task, | 90 | static inline void rpc_count_iostats(const struct rpc_task *task, |
89 | struct rpc_iostats *stats) {} | 91 | struct rpc_iostats *stats) {} |
92 | static inline void rpc_count_iostats_metrics(const struct rpc_task *, | ||
93 | struct rpc_iostats *) {} | ||
90 | static inline void rpc_print_iostats(struct seq_file *seq, struct rpc_clnt *clnt) {} | 94 | static inline void rpc_print_iostats(struct seq_file *seq, struct rpc_clnt *clnt) {} |
91 | static inline void rpc_free_iostats(struct rpc_iostats *stats) {} | 95 | static inline void rpc_free_iostats(struct rpc_iostats *stats) {} |
92 | 96 | ||
diff --git a/include/linux/sunrpc/rpc_rdma.h b/include/linux/sunrpc/rpc_rdma.h index b78f16b1dea3..f33c5a4d6fe4 100644 --- a/include/linux/sunrpc/rpc_rdma.h +++ b/include/linux/sunrpc/rpc_rdma.h | |||
@@ -42,6 +42,9 @@ | |||
42 | 42 | ||
43 | #include <linux/types.h> | 43 | #include <linux/types.h> |
44 | 44 | ||
45 | #define RPCRDMA_VERSION 1 | ||
46 | #define rpcrdma_version cpu_to_be32(RPCRDMA_VERSION) | ||
47 | |||
45 | struct rpcrdma_segment { | 48 | struct rpcrdma_segment { |
46 | __be32 rs_handle; /* Registered memory handle */ | 49 | __be32 rs_handle; /* Registered memory handle */ |
47 | __be32 rs_length; /* Length of the chunk in bytes */ | 50 | __be32 rs_length; /* Length of the chunk in bytes */ |
@@ -95,7 +98,10 @@ struct rpcrdma_msg { | |||
95 | } rm_body; | 98 | } rm_body; |
96 | }; | 99 | }; |
97 | 100 | ||
98 | #define RPCRDMA_HDRLEN_MIN 28 | 101 | /* |
102 | * Smallest RPC/RDMA header: rm_xid through rm_type, then rm_nochunks | ||
103 | */ | ||
104 | #define RPCRDMA_HDRLEN_MIN (sizeof(__be32) * 7) | ||
99 | 105 | ||
100 | enum rpcrdma_errcode { | 106 | enum rpcrdma_errcode { |
101 | ERR_VERS = 1, | 107 | ERR_VERS = 1, |
@@ -115,4 +121,10 @@ enum rpcrdma_proc { | |||
115 | RDMA_ERROR = 4 /* An RPC RDMA encoding error */ | 121 | RDMA_ERROR = 4 /* An RPC RDMA encoding error */ |
116 | }; | 122 | }; |
117 | 123 | ||
124 | #define rdma_msg cpu_to_be32(RDMA_MSG) | ||
125 | #define rdma_nomsg cpu_to_be32(RDMA_NOMSG) | ||
126 | #define rdma_msgp cpu_to_be32(RDMA_MSGP) | ||
127 | #define rdma_done cpu_to_be32(RDMA_DONE) | ||
128 | #define rdma_error cpu_to_be32(RDMA_ERROR) | ||
129 | |||
118 | #endif /* _LINUX_SUNRPC_RPC_RDMA_H */ | 130 | #endif /* _LINUX_SUNRPC_RPC_RDMA_H */ |
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index 6f22cfeef5e3..fae6fb947fc8 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h | |||
@@ -110,7 +110,7 @@ struct svc_serv { | |||
110 | * We use sv_nrthreads as a reference count. svc_destroy() drops | 110 | * We use sv_nrthreads as a reference count. svc_destroy() drops |
111 | * this refcount, so we need to bump it up around operations that | 111 | * this refcount, so we need to bump it up around operations that |
112 | * change the number of threads. Horrible, but there it is. | 112 | * change the number of threads. Horrible, but there it is. |
113 | * Should be called with the BKL held. | 113 | * Should be called with the "service mutex" held. |
114 | */ | 114 | */ |
115 | static inline void svc_get(struct svc_serv *serv) | 115 | static inline void svc_get(struct svc_serv *serv) |
116 | { | 116 | { |
diff --git a/include/linux/sunrpc/svc_rdma.h b/include/linux/sunrpc/svc_rdma.h index 975da754c778..df8edf8ec914 100644 --- a/include/linux/sunrpc/svc_rdma.h +++ b/include/linux/sunrpc/svc_rdma.h | |||
@@ -63,8 +63,6 @@ extern atomic_t rdma_stat_rq_prod; | |||
63 | extern atomic_t rdma_stat_sq_poll; | 63 | extern atomic_t rdma_stat_sq_poll; |
64 | extern atomic_t rdma_stat_sq_prod; | 64 | extern atomic_t rdma_stat_sq_prod; |
65 | 65 | ||
66 | #define RPCRDMA_VERSION 1 | ||
67 | |||
68 | /* | 66 | /* |
69 | * Contexts are built when an RDMA request is created and are a | 67 | * Contexts are built when an RDMA request is created and are a |
70 | * record of the resources that can be recovered when the request | 68 | * record of the resources that can be recovered when the request |
@@ -79,6 +77,7 @@ struct svc_rdma_op_ctxt { | |||
79 | enum ib_wr_opcode wr_op; | 77 | enum ib_wr_opcode wr_op; |
80 | enum ib_wc_status wc_status; | 78 | enum ib_wc_status wc_status; |
81 | u32 byte_len; | 79 | u32 byte_len; |
80 | u32 position; | ||
82 | struct svcxprt_rdma *xprt; | 81 | struct svcxprt_rdma *xprt; |
83 | unsigned long flags; | 82 | unsigned long flags; |
84 | enum dma_data_direction direction; | 83 | enum dma_data_direction direction; |
@@ -150,6 +149,10 @@ struct svcxprt_rdma { | |||
150 | struct ib_cq *sc_rq_cq; | 149 | struct ib_cq *sc_rq_cq; |
151 | struct ib_cq *sc_sq_cq; | 150 | struct ib_cq *sc_sq_cq; |
152 | struct ib_mr *sc_phys_mr; /* MR for server memory */ | 151 | struct ib_mr *sc_phys_mr; /* MR for server memory */ |
152 | int (*sc_reader)(struct svcxprt_rdma *, | ||
153 | struct svc_rqst *, | ||
154 | struct svc_rdma_op_ctxt *, | ||
155 | int *, u32 *, u32, u32, u64, bool); | ||
153 | u32 sc_dev_caps; /* distilled device caps */ | 156 | u32 sc_dev_caps; /* distilled device caps */ |
154 | u32 sc_dma_lkey; /* local dma key */ | 157 | u32 sc_dma_lkey; /* local dma key */ |
155 | unsigned int sc_frmr_pg_list_len; | 158 | unsigned int sc_frmr_pg_list_len; |
@@ -178,8 +181,6 @@ struct svcxprt_rdma { | |||
178 | #define RPCRDMA_MAX_REQ_SIZE 4096 | 181 | #define RPCRDMA_MAX_REQ_SIZE 4096 |
179 | 182 | ||
180 | /* svc_rdma_marshal.c */ | 183 | /* svc_rdma_marshal.c */ |
181 | extern void svc_rdma_rcl_chunk_counts(struct rpcrdma_read_chunk *, | ||
182 | int *, int *); | ||
183 | extern int svc_rdma_xdr_decode_req(struct rpcrdma_msg **, struct svc_rqst *); | 184 | extern int svc_rdma_xdr_decode_req(struct rpcrdma_msg **, struct svc_rqst *); |
184 | extern int svc_rdma_xdr_decode_deferred_req(struct svc_rqst *); | 185 | extern int svc_rdma_xdr_decode_deferred_req(struct svc_rqst *); |
185 | extern int svc_rdma_xdr_encode_error(struct svcxprt_rdma *, | 186 | extern int svc_rdma_xdr_encode_error(struct svcxprt_rdma *, |
@@ -197,6 +198,12 @@ extern int svc_rdma_xdr_get_reply_hdr_len(struct rpcrdma_msg *); | |||
197 | 198 | ||
198 | /* svc_rdma_recvfrom.c */ | 199 | /* svc_rdma_recvfrom.c */ |
199 | extern int svc_rdma_recvfrom(struct svc_rqst *); | 200 | extern int svc_rdma_recvfrom(struct svc_rqst *); |
201 | extern int rdma_read_chunk_lcl(struct svcxprt_rdma *, struct svc_rqst *, | ||
202 | struct svc_rdma_op_ctxt *, int *, u32 *, | ||
203 | u32, u32, u64, bool); | ||
204 | extern int rdma_read_chunk_frmr(struct svcxprt_rdma *, struct svc_rqst *, | ||
205 | struct svc_rdma_op_ctxt *, int *, u32 *, | ||
206 | u32, u32, u64, bool); | ||
200 | 207 | ||
201 | /* svc_rdma_sendto.c */ | 208 | /* svc_rdma_sendto.c */ |
202 | extern int svc_rdma_sendto(struct svc_rqst *); | 209 | extern int svc_rdma_sendto(struct svc_rqst *); |
diff --git a/include/linux/sunrpc/xprt.h b/include/linux/sunrpc/xprt.h index 9d27ac45b909..8b93ef53df3c 100644 --- a/include/linux/sunrpc/xprt.h +++ b/include/linux/sunrpc/xprt.h | |||
@@ -347,6 +347,9 @@ void xprt_force_disconnect(struct rpc_xprt *xprt); | |||
347 | void xprt_conditional_disconnect(struct rpc_xprt *xprt, unsigned int cookie); | 347 | void xprt_conditional_disconnect(struct rpc_xprt *xprt, unsigned int cookie); |
348 | int xs_swapper(struct rpc_xprt *xprt, int enable); | 348 | int xs_swapper(struct rpc_xprt *xprt, int enable); |
349 | 349 | ||
350 | bool xprt_lock_connect(struct rpc_xprt *, struct rpc_task *, void *); | ||
351 | void xprt_unlock_connect(struct rpc_xprt *, void *); | ||
352 | |||
350 | /* | 353 | /* |
351 | * Reserved bit positions in xprt->state | 354 | * Reserved bit positions in xprt->state |
352 | */ | 355 | */ |
@@ -357,10 +360,7 @@ int xs_swapper(struct rpc_xprt *xprt, int enable); | |||
357 | #define XPRT_BOUND (4) | 360 | #define XPRT_BOUND (4) |
358 | #define XPRT_BINDING (5) | 361 | #define XPRT_BINDING (5) |
359 | #define XPRT_CLOSING (6) | 362 | #define XPRT_CLOSING (6) |
360 | #define XPRT_CONNECTION_ABORT (7) | ||
361 | #define XPRT_CONNECTION_CLOSE (8) | ||
362 | #define XPRT_CONGESTED (9) | 363 | #define XPRT_CONGESTED (9) |
363 | #define XPRT_CONNECTION_REUSE (10) | ||
364 | 364 | ||
365 | static inline void xprt_set_connected(struct rpc_xprt *xprt) | 365 | static inline void xprt_set_connected(struct rpc_xprt *xprt) |
366 | { | 366 | { |
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index 3388c1b6f7d8..5efe743ce1e8 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
@@ -201,6 +201,21 @@ struct platform_freeze_ops { | |||
201 | */ | 201 | */ |
202 | extern void suspend_set_ops(const struct platform_suspend_ops *ops); | 202 | extern void suspend_set_ops(const struct platform_suspend_ops *ops); |
203 | extern int suspend_valid_only_mem(suspend_state_t state); | 203 | extern int suspend_valid_only_mem(suspend_state_t state); |
204 | |||
205 | /* Suspend-to-idle state machnine. */ | ||
206 | enum freeze_state { | ||
207 | FREEZE_STATE_NONE, /* Not suspended/suspending. */ | ||
208 | FREEZE_STATE_ENTER, /* Enter suspend-to-idle. */ | ||
209 | FREEZE_STATE_WAKE, /* Wake up from suspend-to-idle. */ | ||
210 | }; | ||
211 | |||
212 | extern enum freeze_state __read_mostly suspend_freeze_state; | ||
213 | |||
214 | static inline bool idle_should_freeze(void) | ||
215 | { | ||
216 | return unlikely(suspend_freeze_state == FREEZE_STATE_ENTER); | ||
217 | } | ||
218 | |||
204 | extern void freeze_set_ops(const struct platform_freeze_ops *ops); | 219 | extern void freeze_set_ops(const struct platform_freeze_ops *ops); |
205 | extern void freeze_wake(void); | 220 | extern void freeze_wake(void); |
206 | 221 | ||
@@ -228,6 +243,7 @@ extern int pm_suspend(suspend_state_t state); | |||
228 | 243 | ||
229 | static inline void suspend_set_ops(const struct platform_suspend_ops *ops) {} | 244 | static inline void suspend_set_ops(const struct platform_suspend_ops *ops) {} |
230 | static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; } | 245 | static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; } |
246 | static inline bool idle_should_freeze(void) { return false; } | ||
231 | static inline void freeze_set_ops(const struct platform_freeze_ops *ops) {} | 247 | static inline void freeze_set_ops(const struct platform_freeze_ops *ops) {} |
232 | static inline void freeze_wake(void) {} | 248 | static inline void freeze_wake(void) {} |
233 | #endif /* !CONFIG_SUSPEND */ | 249 | #endif /* !CONFIG_SUSPEND */ |
diff --git a/include/linux/swap.h b/include/linux/swap.h index 34e8b60ab973..7067eca501e2 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
@@ -437,16 +437,6 @@ extern int reuse_swap_page(struct page *); | |||
437 | extern int try_to_free_swap(struct page *); | 437 | extern int try_to_free_swap(struct page *); |
438 | struct backing_dev_info; | 438 | struct backing_dev_info; |
439 | 439 | ||
440 | #ifdef CONFIG_MEMCG | ||
441 | extern void | ||
442 | mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout); | ||
443 | #else | ||
444 | static inline void | ||
445 | mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout) | ||
446 | { | ||
447 | } | ||
448 | #endif | ||
449 | |||
450 | #else /* CONFIG_SWAP */ | 440 | #else /* CONFIG_SWAP */ |
451 | 441 | ||
452 | #define swap_address_space(entry) (NULL) | 442 | #define swap_address_space(entry) (NULL) |
@@ -547,11 +537,6 @@ static inline swp_entry_t get_swap_page(void) | |||
547 | return entry; | 537 | return entry; |
548 | } | 538 | } |
549 | 539 | ||
550 | static inline void | ||
551 | mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent) | ||
552 | { | ||
553 | } | ||
554 | |||
555 | #endif /* CONFIG_SWAP */ | 540 | #endif /* CONFIG_SWAP */ |
556 | #endif /* __KERNEL__*/ | 541 | #endif /* __KERNEL__*/ |
557 | #endif /* _LINUX_SWAP_H */ | 542 | #endif /* _LINUX_SWAP_H */ |
diff --git a/include/linux/swapops.h b/include/linux/swapops.h index 6adfb7bfbf44..cedf3d3c373f 100644 --- a/include/linux/swapops.h +++ b/include/linux/swapops.h | |||
@@ -54,7 +54,7 @@ static inline pgoff_t swp_offset(swp_entry_t entry) | |||
54 | /* check whether a pte points to a swap entry */ | 54 | /* check whether a pte points to a swap entry */ |
55 | static inline int is_swap_pte(pte_t pte) | 55 | static inline int is_swap_pte(pte_t pte) |
56 | { | 56 | { |
57 | return !pte_none(pte) && !pte_present_nonuma(pte) && !pte_file(pte); | 57 | return !pte_none(pte) && !pte_present(pte); |
58 | } | 58 | } |
59 | #endif | 59 | #endif |
60 | 60 | ||
@@ -66,7 +66,6 @@ static inline swp_entry_t pte_to_swp_entry(pte_t pte) | |||
66 | { | 66 | { |
67 | swp_entry_t arch_entry; | 67 | swp_entry_t arch_entry; |
68 | 68 | ||
69 | BUG_ON(pte_file(pte)); | ||
70 | if (pte_swp_soft_dirty(pte)) | 69 | if (pte_swp_soft_dirty(pte)) |
71 | pte = pte_swp_clear_soft_dirty(pte); | 70 | pte = pte_swp_clear_soft_dirty(pte); |
72 | arch_entry = __pte_to_swp_entry(pte); | 71 | arch_entry = __pte_to_swp_entry(pte); |
@@ -82,7 +81,6 @@ static inline pte_t swp_entry_to_pte(swp_entry_t entry) | |||
82 | swp_entry_t arch_entry; | 81 | swp_entry_t arch_entry; |
83 | 82 | ||
84 | arch_entry = __swp_entry(swp_type(entry), swp_offset(entry)); | 83 | arch_entry = __swp_entry(swp_type(entry), swp_offset(entry)); |
85 | BUG_ON(pte_file(__swp_entry_to_pte(arch_entry))); | ||
86 | return __swp_entry_to_pte(arch_entry); | 84 | return __swp_entry_to_pte(arch_entry); |
87 | } | 85 | } |
88 | 86 | ||
@@ -137,6 +135,8 @@ static inline void make_migration_entry_read(swp_entry_t *entry) | |||
137 | *entry = swp_entry(SWP_MIGRATION_READ, swp_offset(*entry)); | 135 | *entry = swp_entry(SWP_MIGRATION_READ, swp_offset(*entry)); |
138 | } | 136 | } |
139 | 137 | ||
138 | extern void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep, | ||
139 | spinlock_t *ptl); | ||
140 | extern void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, | 140 | extern void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, |
141 | unsigned long address); | 141 | unsigned long address); |
142 | extern void migration_entry_wait_huge(struct vm_area_struct *vma, | 142 | extern void migration_entry_wait_huge(struct vm_area_struct *vma, |
@@ -150,6 +150,8 @@ static inline int is_migration_entry(swp_entry_t swp) | |||
150 | } | 150 | } |
151 | #define migration_entry_to_page(swp) NULL | 151 | #define migration_entry_to_page(swp) NULL |
152 | static inline void make_migration_entry_read(swp_entry_t *entryp) { } | 152 | static inline void make_migration_entry_read(swp_entry_t *entryp) { } |
153 | static inline void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep, | ||
154 | spinlock_t *ptl) { } | ||
153 | static inline void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, | 155 | static inline void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, |
154 | unsigned long address) { } | 156 | unsigned long address) { } |
155 | static inline void migration_entry_wait_huge(struct vm_area_struct *vma, | 157 | static inline void migration_entry_wait_huge(struct vm_area_struct *vma, |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 85893d744901..76d1e38aabe1 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
@@ -410,12 +410,16 @@ asmlinkage long sys_newlstat(const char __user *filename, | |||
410 | struct stat __user *statbuf); | 410 | struct stat __user *statbuf); |
411 | asmlinkage long sys_newfstat(unsigned int fd, struct stat __user *statbuf); | 411 | asmlinkage long sys_newfstat(unsigned int fd, struct stat __user *statbuf); |
412 | asmlinkage long sys_ustat(unsigned dev, struct ustat __user *ubuf); | 412 | asmlinkage long sys_ustat(unsigned dev, struct ustat __user *ubuf); |
413 | #if BITS_PER_LONG == 32 | 413 | #if defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_COMPAT_STAT64) |
414 | asmlinkage long sys_stat64(const char __user *filename, | 414 | asmlinkage long sys_stat64(const char __user *filename, |
415 | struct stat64 __user *statbuf); | 415 | struct stat64 __user *statbuf); |
416 | asmlinkage long sys_fstat64(unsigned long fd, struct stat64 __user *statbuf); | 416 | asmlinkage long sys_fstat64(unsigned long fd, struct stat64 __user *statbuf); |
417 | asmlinkage long sys_lstat64(const char __user *filename, | 417 | asmlinkage long sys_lstat64(const char __user *filename, |
418 | struct stat64 __user *statbuf); | 418 | struct stat64 __user *statbuf); |
419 | asmlinkage long sys_fstatat64(int dfd, const char __user *filename, | ||
420 | struct stat64 __user *statbuf, int flag); | ||
421 | #endif | ||
422 | #if BITS_PER_LONG == 32 | ||
419 | asmlinkage long sys_truncate64(const char __user *path, loff_t length); | 423 | asmlinkage long sys_truncate64(const char __user *path, loff_t length); |
420 | asmlinkage long sys_ftruncate64(unsigned int fd, loff_t length); | 424 | asmlinkage long sys_ftruncate64(unsigned int fd, loff_t length); |
421 | #endif | 425 | #endif |
@@ -771,8 +775,6 @@ asmlinkage long sys_openat(int dfd, const char __user *filename, int flags, | |||
771 | umode_t mode); | 775 | umode_t mode); |
772 | asmlinkage long sys_newfstatat(int dfd, const char __user *filename, | 776 | asmlinkage long sys_newfstatat(int dfd, const char __user *filename, |
773 | struct stat __user *statbuf, int flag); | 777 | struct stat __user *statbuf, int flag); |
774 | asmlinkage long sys_fstatat64(int dfd, const char __user *filename, | ||
775 | struct stat64 __user *statbuf, int flag); | ||
776 | asmlinkage long sys_readlinkat(int dfd, const char __user *path, char __user *buf, | 778 | asmlinkage long sys_readlinkat(int dfd, const char __user *path, char __user *buf, |
777 | int bufsiz); | 779 | int bufsiz); |
778 | asmlinkage long sys_utimensat(int dfd, const char __user *filename, | 780 | asmlinkage long sys_utimensat(int dfd, const char __user *filename, |
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 67309ece0772..1a7adb411647 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h | |||
@@ -115,6 +115,7 @@ struct tcp_request_sock { | |||
115 | u32 rcv_isn; | 115 | u32 rcv_isn; |
116 | u32 snt_isn; | 116 | u32 snt_isn; |
117 | u32 snt_synack; /* synack sent time */ | 117 | u32 snt_synack; /* synack sent time */ |
118 | u32 last_oow_ack_time; /* last SYNACK */ | ||
118 | u32 rcv_nxt; /* the ack # by SYNACK. For | 119 | u32 rcv_nxt; /* the ack # by SYNACK. For |
119 | * FastOpen it's the seq# | 120 | * FastOpen it's the seq# |
120 | * after data-in-SYN. | 121 | * after data-in-SYN. |
@@ -152,6 +153,7 @@ struct tcp_sock { | |||
152 | u32 snd_sml; /* Last byte of the most recently transmitted small packet */ | 153 | u32 snd_sml; /* Last byte of the most recently transmitted small packet */ |
153 | u32 rcv_tstamp; /* timestamp of last received ACK (for keepalives) */ | 154 | u32 rcv_tstamp; /* timestamp of last received ACK (for keepalives) */ |
154 | u32 lsndtime; /* timestamp of last sent data packet (for restart window) */ | 155 | u32 lsndtime; /* timestamp of last sent data packet (for restart window) */ |
156 | u32 last_oow_ack_time; /* timestamp of last out-of-window ACK */ | ||
155 | 157 | ||
156 | u32 tsoffset; /* timestamp offset */ | 158 | u32 tsoffset; /* timestamp offset */ |
157 | 159 | ||
@@ -340,6 +342,10 @@ struct tcp_timewait_sock { | |||
340 | u32 tw_rcv_wnd; | 342 | u32 tw_rcv_wnd; |
341 | u32 tw_ts_offset; | 343 | u32 tw_ts_offset; |
342 | u32 tw_ts_recent; | 344 | u32 tw_ts_recent; |
345 | |||
346 | /* The time we sent the last out-of-window ACK: */ | ||
347 | u32 tw_last_oow_ack_time; | ||
348 | |||
343 | long tw_ts_recent_stamp; | 349 | long tw_ts_recent_stamp; |
344 | #ifdef CONFIG_TCP_MD5SIG | 350 | #ifdef CONFIG_TCP_MD5SIG |
345 | struct tcp_md5sig_key *tw_md5_key; | 351 | struct tcp_md5sig_key *tw_md5_key; |
diff --git a/include/linux/ti_wilink_st.h b/include/linux/ti_wilink_st.h index 884d6263e962..c78dcfeaf25f 100644 --- a/include/linux/ti_wilink_st.h +++ b/include/linux/ti_wilink_st.h | |||
@@ -86,6 +86,7 @@ struct st_proto_s { | |||
86 | extern long st_register(struct st_proto_s *); | 86 | extern long st_register(struct st_proto_s *); |
87 | extern long st_unregister(struct st_proto_s *); | 87 | extern long st_unregister(struct st_proto_s *); |
88 | 88 | ||
89 | extern struct ti_st_plat_data *dt_pdata; | ||
89 | 90 | ||
90 | /* | 91 | /* |
91 | * header information used by st_core.c | 92 | * header information used by st_core.c |
@@ -261,7 +262,7 @@ struct kim_data_s { | |||
261 | struct completion kim_rcvd, ldisc_installed; | 262 | struct completion kim_rcvd, ldisc_installed; |
262 | char resp_buffer[30]; | 263 | char resp_buffer[30]; |
263 | const struct firmware *fw_entry; | 264 | const struct firmware *fw_entry; |
264 | long nshutdown; | 265 | unsigned nshutdown; |
265 | unsigned long rx_state; | 266 | unsigned long rx_state; |
266 | unsigned long rx_count; | 267 | unsigned long rx_count; |
267 | struct sk_buff *rx_skb; | 268 | struct sk_buff *rx_skb; |
@@ -269,8 +270,8 @@ struct kim_data_s { | |||
269 | struct chip_version version; | 270 | struct chip_version version; |
270 | unsigned char ldisc_install; | 271 | unsigned char ldisc_install; |
271 | unsigned char dev_name[UART_DEV_NAME_LEN + 1]; | 272 | unsigned char dev_name[UART_DEV_NAME_LEN + 1]; |
272 | unsigned char flow_cntrl; | 273 | unsigned flow_cntrl; |
273 | unsigned long baud_rate; | 274 | unsigned baud_rate; |
274 | }; | 275 | }; |
275 | 276 | ||
276 | /** | 277 | /** |
@@ -436,10 +437,10 @@ struct gps_event_hdr { | |||
436 | * | 437 | * |
437 | */ | 438 | */ |
438 | struct ti_st_plat_data { | 439 | struct ti_st_plat_data { |
439 | long nshutdown_gpio; | 440 | u32 nshutdown_gpio; |
440 | unsigned char dev_name[UART_DEV_NAME_LEN]; /* uart name */ | 441 | unsigned char dev_name[UART_DEV_NAME_LEN]; /* uart name */ |
441 | unsigned char flow_cntrl; /* flow control flag */ | 442 | u32 flow_cntrl; /* flow control flag */ |
442 | unsigned long baud_rate; | 443 | u32 baud_rate; |
443 | int (*suspend)(struct platform_device *, pm_message_t); | 444 | int (*suspend)(struct platform_device *, pm_message_t); |
444 | int (*resume)(struct platform_device *); | 445 | int (*resume)(struct platform_device *); |
445 | int (*chip_enable) (struct kim_data_s *); | 446 | int (*chip_enable) (struct kim_data_s *); |
diff --git a/include/linux/tick.h b/include/linux/tick.h index eda850ca757a..9c085dc12ae9 100644 --- a/include/linux/tick.h +++ b/include/linux/tick.h | |||
@@ -79,6 +79,9 @@ extern void __init tick_init(void); | |||
79 | extern int tick_is_oneshot_available(void); | 79 | extern int tick_is_oneshot_available(void); |
80 | extern struct tick_device *tick_get_device(int cpu); | 80 | extern struct tick_device *tick_get_device(int cpu); |
81 | 81 | ||
82 | extern void tick_freeze(void); | ||
83 | extern void tick_unfreeze(void); | ||
84 | |||
82 | # ifdef CONFIG_HIGH_RES_TIMERS | 85 | # ifdef CONFIG_HIGH_RES_TIMERS |
83 | extern int tick_init_highres(void); | 86 | extern int tick_init_highres(void); |
84 | extern int tick_program_event(ktime_t expires, int force); | 87 | extern int tick_program_event(ktime_t expires, int force); |
@@ -119,6 +122,8 @@ static inline int tick_oneshot_mode_active(void) { return 0; } | |||
119 | 122 | ||
120 | #else /* CONFIG_GENERIC_CLOCKEVENTS */ | 123 | #else /* CONFIG_GENERIC_CLOCKEVENTS */ |
121 | static inline void tick_init(void) { } | 124 | static inline void tick_init(void) { } |
125 | static inline void tick_freeze(void) { } | ||
126 | static inline void tick_unfreeze(void) { } | ||
122 | static inline void tick_cancel_sched_timer(int cpu) { } | 127 | static inline void tick_cancel_sched_timer(int cpu) { } |
123 | static inline void tick_clock_notify(void) { } | 128 | static inline void tick_clock_notify(void) { } |
124 | static inline int tick_check_oneshot_change(int allow_nohz) { return 0; } | 129 | static inline int tick_check_oneshot_change(int allow_nohz) { return 0; } |
@@ -226,5 +231,4 @@ static inline void tick_nohz_task_switch(struct task_struct *tsk) | |||
226 | __tick_nohz_task_switch(tsk); | 231 | __tick_nohz_task_switch(tsk); |
227 | } | 232 | } |
228 | 233 | ||
229 | |||
230 | #endif | 234 | #endif |
diff --git a/include/linux/timecounter.h b/include/linux/timecounter.h new file mode 100644 index 000000000000..4382035a75bb --- /dev/null +++ b/include/linux/timecounter.h | |||
@@ -0,0 +1,139 @@ | |||
1 | /* | ||
2 | * linux/include/linux/timecounter.h | ||
3 | * | ||
4 | * based on code that migrated away from | ||
5 | * linux/include/linux/clocksource.h | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | */ | ||
17 | #ifndef _LINUX_TIMECOUNTER_H | ||
18 | #define _LINUX_TIMECOUNTER_H | ||
19 | |||
20 | #include <linux/types.h> | ||
21 | |||
22 | /* simplify initialization of mask field */ | ||
23 | #define CYCLECOUNTER_MASK(bits) (cycle_t)((bits) < 64 ? ((1ULL<<(bits))-1) : -1) | ||
24 | |||
25 | /** | ||
26 | * struct cyclecounter - hardware abstraction for a free running counter | ||
27 | * Provides completely state-free accessors to the underlying hardware. | ||
28 | * Depending on which hardware it reads, the cycle counter may wrap | ||
29 | * around quickly. Locking rules (if necessary) have to be defined | ||
30 | * by the implementor and user of specific instances of this API. | ||
31 | * | ||
32 | * @read: returns the current cycle value | ||
33 | * @mask: bitmask for two's complement | ||
34 | * subtraction of non 64 bit counters, | ||
35 | * see CYCLECOUNTER_MASK() helper macro | ||
36 | * @mult: cycle to nanosecond multiplier | ||
37 | * @shift: cycle to nanosecond divisor (power of two) | ||
38 | */ | ||
39 | struct cyclecounter { | ||
40 | cycle_t (*read)(const struct cyclecounter *cc); | ||
41 | cycle_t mask; | ||
42 | u32 mult; | ||
43 | u32 shift; | ||
44 | }; | ||
45 | |||
46 | /** | ||
47 | * struct timecounter - layer above a %struct cyclecounter which counts nanoseconds | ||
48 | * Contains the state needed by timecounter_read() to detect | ||
49 | * cycle counter wrap around. Initialize with | ||
50 | * timecounter_init(). Also used to convert cycle counts into the | ||
51 | * corresponding nanosecond counts with timecounter_cyc2time(). Users | ||
52 | * of this code are responsible for initializing the underlying | ||
53 | * cycle counter hardware, locking issues and reading the time | ||
54 | * more often than the cycle counter wraps around. The nanosecond | ||
55 | * counter will only wrap around after ~585 years. | ||
56 | * | ||
57 | * @cc: the cycle counter used by this instance | ||
58 | * @cycle_last: most recent cycle counter value seen by | ||
59 | * timecounter_read() | ||
60 | * @nsec: continuously increasing count | ||
61 | * @mask: bit mask for maintaining the 'frac' field | ||
62 | * @frac: accumulated fractional nanoseconds | ||
63 | */ | ||
64 | struct timecounter { | ||
65 | const struct cyclecounter *cc; | ||
66 | cycle_t cycle_last; | ||
67 | u64 nsec; | ||
68 | u64 mask; | ||
69 | u64 frac; | ||
70 | }; | ||
71 | |||
72 | /** | ||
73 | * cyclecounter_cyc2ns - converts cycle counter cycles to nanoseconds | ||
74 | * @cc: Pointer to cycle counter. | ||
75 | * @cycles: Cycles | ||
76 | * @mask: bit mask for maintaining the 'frac' field | ||
77 | * @frac: pointer to storage for the fractional nanoseconds. | ||
78 | */ | ||
79 | static inline u64 cyclecounter_cyc2ns(const struct cyclecounter *cc, | ||
80 | cycle_t cycles, u64 mask, u64 *frac) | ||
81 | { | ||
82 | u64 ns = (u64) cycles; | ||
83 | |||
84 | ns = (ns * cc->mult) + *frac; | ||
85 | *frac = ns & mask; | ||
86 | return ns >> cc->shift; | ||
87 | } | ||
88 | |||
89 | /** | ||
90 | * timecounter_adjtime - Shifts the time of the clock. | ||
91 | * @delta: Desired change in nanoseconds. | ||
92 | */ | ||
93 | static inline void timecounter_adjtime(struct timecounter *tc, s64 delta) | ||
94 | { | ||
95 | tc->nsec += delta; | ||
96 | } | ||
97 | |||
98 | /** | ||
99 | * timecounter_init - initialize a time counter | ||
100 | * @tc: Pointer to time counter which is to be initialized/reset | ||
101 | * @cc: A cycle counter, ready to be used. | ||
102 | * @start_tstamp: Arbitrary initial time stamp. | ||
103 | * | ||
104 | * After this call the current cycle register (roughly) corresponds to | ||
105 | * the initial time stamp. Every call to timecounter_read() increments | ||
106 | * the time stamp counter by the number of elapsed nanoseconds. | ||
107 | */ | ||
108 | extern void timecounter_init(struct timecounter *tc, | ||
109 | const struct cyclecounter *cc, | ||
110 | u64 start_tstamp); | ||
111 | |||
112 | /** | ||
113 | * timecounter_read - return nanoseconds elapsed since timecounter_init() | ||
114 | * plus the initial time stamp | ||
115 | * @tc: Pointer to time counter. | ||
116 | * | ||
117 | * In other words, keeps track of time since the same epoch as | ||
118 | * the function which generated the initial time stamp. | ||
119 | */ | ||
120 | extern u64 timecounter_read(struct timecounter *tc); | ||
121 | |||
122 | /** | ||
123 | * timecounter_cyc2time - convert a cycle counter to same | ||
124 | * time base as values returned by | ||
125 | * timecounter_read() | ||
126 | * @tc: Pointer to time counter. | ||
127 | * @cycle_tstamp: a value returned by tc->cc->read() | ||
128 | * | ||
129 | * Cycle counts that are converted correctly as long as they | ||
130 | * fall into the interval [-1/2 max cycle count, +1/2 max cycle count], | ||
131 | * with "max cycle count" == cs->mask+1. | ||
132 | * | ||
133 | * This allows conversion of cycle counter values which were generated | ||
134 | * in the past. | ||
135 | */ | ||
136 | extern u64 timecounter_cyc2time(struct timecounter *tc, | ||
137 | cycle_t cycle_tstamp); | ||
138 | |||
139 | #endif | ||
diff --git a/include/linux/timekeeping.h b/include/linux/timekeeping.h index 9b63d13ba82b..3eaae4754275 100644 --- a/include/linux/timekeeping.h +++ b/include/linux/timekeeping.h | |||
@@ -33,6 +33,7 @@ extern time64_t ktime_get_real_seconds(void); | |||
33 | 33 | ||
34 | extern int __getnstimeofday64(struct timespec64 *tv); | 34 | extern int __getnstimeofday64(struct timespec64 *tv); |
35 | extern void getnstimeofday64(struct timespec64 *tv); | 35 | extern void getnstimeofday64(struct timespec64 *tv); |
36 | extern void getboottime64(struct timespec64 *ts); | ||
36 | 37 | ||
37 | #if BITS_PER_LONG == 64 | 38 | #if BITS_PER_LONG == 64 |
38 | /** | 39 | /** |
@@ -72,6 +73,11 @@ static inline struct timespec get_monotonic_coarse(void) | |||
72 | { | 73 | { |
73 | return get_monotonic_coarse64(); | 74 | return get_monotonic_coarse64(); |
74 | } | 75 | } |
76 | |||
77 | static inline void getboottime(struct timespec *ts) | ||
78 | { | ||
79 | return getboottime64(ts); | ||
80 | } | ||
75 | #else | 81 | #else |
76 | /** | 82 | /** |
77 | * Deprecated. Use do_settimeofday64(). | 83 | * Deprecated. Use do_settimeofday64(). |
@@ -129,9 +135,15 @@ static inline struct timespec get_monotonic_coarse(void) | |||
129 | { | 135 | { |
130 | return timespec64_to_timespec(get_monotonic_coarse64()); | 136 | return timespec64_to_timespec(get_monotonic_coarse64()); |
131 | } | 137 | } |
132 | #endif | ||
133 | 138 | ||
134 | extern void getboottime(struct timespec *ts); | 139 | static inline void getboottime(struct timespec *ts) |
140 | { | ||
141 | struct timespec64 ts64; | ||
142 | |||
143 | getboottime64(&ts64); | ||
144 | *ts = timespec64_to_timespec(ts64); | ||
145 | } | ||
146 | #endif | ||
135 | 147 | ||
136 | #define do_posix_clock_monotonic_gettime(ts) ktime_get_ts(ts) | 148 | #define do_posix_clock_monotonic_gettime(ts) ktime_get_ts(ts) |
137 | #define ktime_get_real_ts64(ts) getnstimeofday64(ts) | 149 | #define ktime_get_real_ts64(ts) getnstimeofday64(ts) |
@@ -217,6 +229,11 @@ static inline void get_monotonic_boottime(struct timespec *ts) | |||
217 | *ts = ktime_to_timespec(ktime_get_boottime()); | 229 | *ts = ktime_to_timespec(ktime_get_boottime()); |
218 | } | 230 | } |
219 | 231 | ||
232 | static inline void get_monotonic_boottime64(struct timespec64 *ts) | ||
233 | { | ||
234 | *ts = ktime_to_timespec64(ktime_get_boottime()); | ||
235 | } | ||
236 | |||
220 | static inline void timekeeping_clocktai(struct timespec *ts) | 237 | static inline void timekeeping_clocktai(struct timespec *ts) |
221 | { | 238 | { |
222 | *ts = ktime_to_timespec(ktime_get_clocktai()); | 239 | *ts = ktime_to_timespec(ktime_get_clocktai()); |
diff --git a/include/linux/tty.h b/include/linux/tty.h index 7d66ae508e5c..358a337af598 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
@@ -14,6 +14,29 @@ | |||
14 | #include <linux/llist.h> | 14 | #include <linux/llist.h> |
15 | 15 | ||
16 | 16 | ||
17 | /* | ||
18 | * Lock subclasses for tty locks | ||
19 | * | ||
20 | * TTY_LOCK_NORMAL is for normal ttys and master ptys. | ||
21 | * TTY_LOCK_SLAVE is for slave ptys only. | ||
22 | * | ||
23 | * Lock subclasses are necessary for handling nested locking with pty pairs. | ||
24 | * tty locks which use nested locking: | ||
25 | * | ||
26 | * legacy_mutex - Nested tty locks are necessary for releasing pty pairs. | ||
27 | * The stable lock order is master pty first, then slave pty. | ||
28 | * termios_rwsem - The stable lock order is tty_buffer lock->termios_rwsem. | ||
29 | * Subclassing this lock enables the slave pty to hold its | ||
30 | * termios_rwsem when claiming the master tty_buffer lock. | ||
31 | * tty_buffer lock - slave ptys can claim nested buffer lock when handling | ||
32 | * signal chars. The stable lock order is slave pty, then | ||
33 | * master. | ||
34 | */ | ||
35 | |||
36 | enum { | ||
37 | TTY_LOCK_NORMAL = 0, | ||
38 | TTY_LOCK_SLAVE, | ||
39 | }; | ||
17 | 40 | ||
18 | /* | 41 | /* |
19 | * (Note: the *_driver.minor_start values 1, 64, 128, 192 are | 42 | * (Note: the *_driver.minor_start values 1, 64, 128, 192 are |
@@ -443,6 +466,7 @@ extern void tty_flush_to_ldisc(struct tty_struct *tty); | |||
443 | extern void tty_buffer_free_all(struct tty_port *port); | 466 | extern void tty_buffer_free_all(struct tty_port *port); |
444 | extern void tty_buffer_flush(struct tty_struct *tty, struct tty_ldisc *ld); | 467 | extern void tty_buffer_flush(struct tty_struct *tty, struct tty_ldisc *ld); |
445 | extern void tty_buffer_init(struct tty_port *port); | 468 | extern void tty_buffer_init(struct tty_port *port); |
469 | extern void tty_buffer_set_lock_subclass(struct tty_port *port); | ||
446 | extern speed_t tty_termios_baud_rate(struct ktermios *termios); | 470 | extern speed_t tty_termios_baud_rate(struct ktermios *termios); |
447 | extern speed_t tty_termios_input_baud_rate(struct ktermios *termios); | 471 | extern speed_t tty_termios_input_baud_rate(struct ktermios *termios); |
448 | extern void tty_termios_encode_baud_rate(struct ktermios *termios, | 472 | extern void tty_termios_encode_baud_rate(struct ktermios *termios, |
@@ -467,7 +491,6 @@ static inline speed_t tty_get_baud_rate(struct tty_struct *tty) | |||
467 | 491 | ||
468 | extern void tty_termios_copy_hw(struct ktermios *new, struct ktermios *old); | 492 | extern void tty_termios_copy_hw(struct ktermios *new, struct ktermios *old); |
469 | extern int tty_termios_hw_change(struct ktermios *a, struct ktermios *b); | 493 | extern int tty_termios_hw_change(struct ktermios *a, struct ktermios *b); |
470 | extern int tty_set_termios(struct tty_struct *tty, struct ktermios *kt); | ||
471 | 494 | ||
472 | extern struct tty_ldisc *tty_ldisc_ref(struct tty_struct *); | 495 | extern struct tty_ldisc *tty_ldisc_ref(struct tty_struct *); |
473 | extern void tty_ldisc_deref(struct tty_ldisc *); | 496 | extern void tty_ldisc_deref(struct tty_ldisc *); |
diff --git a/include/linux/types.h b/include/linux/types.h index a0bb7048687f..6747247e3f9f 100644 --- a/include/linux/types.h +++ b/include/linux/types.h | |||
@@ -135,12 +135,9 @@ typedef unsigned long blkcnt_t; | |||
135 | #endif | 135 | #endif |
136 | 136 | ||
137 | /* | 137 | /* |
138 | * The type of an index into the pagecache. Use a #define so asm/types.h | 138 | * The type of an index into the pagecache. |
139 | * can override it. | ||
140 | */ | 139 | */ |
141 | #ifndef pgoff_t | ||
142 | #define pgoff_t unsigned long | 140 | #define pgoff_t unsigned long |
143 | #endif | ||
144 | 141 | ||
145 | /* A dma_addr_t can hold any valid DMA or bus address for the platform */ | 142 | /* A dma_addr_t can hold any valid DMA or bus address for the platform */ |
146 | #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT | 143 | #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT |
@@ -213,5 +210,8 @@ struct callback_head { | |||
213 | }; | 210 | }; |
214 | #define rcu_head callback_head | 211 | #define rcu_head callback_head |
215 | 212 | ||
213 | /* clocksource cycle base type */ | ||
214 | typedef u64 cycle_t; | ||
215 | |||
216 | #endif /* __ASSEMBLY__ */ | 216 | #endif /* __ASSEMBLY__ */ |
217 | #endif /* _LINUX_TYPES_H */ | 217 | #endif /* _LINUX_TYPES_H */ |
diff --git a/include/linux/udp.h b/include/linux/udp.h index ee3277593222..247cfdcc4b08 100644 --- a/include/linux/udp.h +++ b/include/linux/udp.h | |||
@@ -49,11 +49,7 @@ struct udp_sock { | |||
49 | unsigned int corkflag; /* Cork is required */ | 49 | unsigned int corkflag; /* Cork is required */ |
50 | __u8 encap_type; /* Is this an Encapsulation socket? */ | 50 | __u8 encap_type; /* Is this an Encapsulation socket? */ |
51 | unsigned char no_check6_tx:1,/* Send zero UDP6 checksums on TX? */ | 51 | unsigned char no_check6_tx:1,/* Send zero UDP6 checksums on TX? */ |
52 | no_check6_rx:1,/* Allow zero UDP6 checksums on RX? */ | 52 | no_check6_rx:1;/* Allow zero UDP6 checksums on RX? */ |
53 | convert_csum:1;/* On receive, convert checksum | ||
54 | * unnecessary to checksum complete | ||
55 | * if possible. | ||
56 | */ | ||
57 | /* | 53 | /* |
58 | * Following member retains the information to create a UDP header | 54 | * Following member retains the information to create a UDP header |
59 | * when the socket is uncorked. | 55 | * when the socket is uncorked. |
@@ -102,16 +98,6 @@ static inline bool udp_get_no_check6_rx(struct sock *sk) | |||
102 | return udp_sk(sk)->no_check6_rx; | 98 | return udp_sk(sk)->no_check6_rx; |
103 | } | 99 | } |
104 | 100 | ||
105 | static inline void udp_set_convert_csum(struct sock *sk, bool val) | ||
106 | { | ||
107 | udp_sk(sk)->convert_csum = val; | ||
108 | } | ||
109 | |||
110 | static inline bool udp_get_convert_csum(struct sock *sk) | ||
111 | { | ||
112 | return udp_sk(sk)->convert_csum; | ||
113 | } | ||
114 | |||
115 | #define udp_portaddr_for_each_entry(__sk, node, list) \ | 101 | #define udp_portaddr_for_each_entry(__sk, node, list) \ |
116 | hlist_nulls_for_each_entry(__sk, node, list, __sk_common.skc_portaddr_node) | 102 | hlist_nulls_for_each_entry(__sk, node, list, __sk_common.skc_portaddr_node) |
117 | 103 | ||
diff --git a/include/linux/uio.h b/include/linux/uio.h index 1c5e453f7ea9..07a022641996 100644 --- a/include/linux/uio.h +++ b/include/linux/uio.h | |||
@@ -88,7 +88,9 @@ size_t iov_iter_zero(size_t bytes, struct iov_iter *); | |||
88 | unsigned long iov_iter_alignment(const struct iov_iter *i); | 88 | unsigned long iov_iter_alignment(const struct iov_iter *i); |
89 | void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov, | 89 | void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov, |
90 | unsigned long nr_segs, size_t count); | 90 | unsigned long nr_segs, size_t count); |
91 | void iov_iter_kvec(struct iov_iter *i, int direction, const struct kvec *iov, | 91 | void iov_iter_kvec(struct iov_iter *i, int direction, const struct kvec *kvec, |
92 | unsigned long nr_segs, size_t count); | ||
93 | void iov_iter_bvec(struct iov_iter *i, int direction, const struct bio_vec *bvec, | ||
92 | unsigned long nr_segs, size_t count); | 94 | unsigned long nr_segs, size_t count); |
93 | ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages, | 95 | ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages, |
94 | size_t maxsize, unsigned maxpages, size_t *start); | 96 | size_t maxsize, unsigned maxpages, size_t *start); |
@@ -135,10 +137,4 @@ static inline void iov_iter_reexpand(struct iov_iter *i, size_t count) | |||
135 | size_t csum_and_copy_to_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i); | 137 | size_t csum_and_copy_to_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i); |
136 | size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i); | 138 | size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i); |
137 | 139 | ||
138 | int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len); | ||
139 | int memcpy_fromiovecend(unsigned char *kdata, const struct iovec *iov, | ||
140 | int offset, int len); | ||
141 | int memcpy_toiovecend(const struct iovec *v, unsigned char *kdata, | ||
142 | int offset, int len); | ||
143 | |||
144 | #endif | 140 | #endif |
diff --git a/include/linux/usb.h b/include/linux/usb.h index f89c24a03bd9..7ee1b5c3b4cb 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
@@ -82,7 +82,7 @@ struct usb_host_interface { | |||
82 | int extralen; | 82 | int extralen; |
83 | unsigned char *extra; /* Extra descriptors */ | 83 | unsigned char *extra; /* Extra descriptors */ |
84 | 84 | ||
85 | /* array of desc.bNumEndpoint endpoints associated with this | 85 | /* array of desc.bNumEndpoints endpoints associated with this |
86 | * interface setting. these will be in no particular order. | 86 | * interface setting. these will be in no particular order. |
87 | */ | 87 | */ |
88 | struct usb_host_endpoint *endpoint; | 88 | struct usb_host_endpoint *endpoint; |
@@ -127,10 +127,6 @@ enum usb_interface_condition { | |||
127 | * to the sysfs representation for that device. | 127 | * to the sysfs representation for that device. |
128 | * @pm_usage_cnt: PM usage counter for this interface | 128 | * @pm_usage_cnt: PM usage counter for this interface |
129 | * @reset_ws: Used for scheduling resets from atomic context. | 129 | * @reset_ws: Used for scheduling resets from atomic context. |
130 | * @reset_running: set to 1 if the interface is currently running a | ||
131 | * queued reset so that usb_cancel_queued_reset() doesn't try to | ||
132 | * remove from the workqueue when running inside the worker | ||
133 | * thread. See __usb_queue_reset_device(). | ||
134 | * @resetting_device: USB core reset the device, so use alt setting 0 as | 130 | * @resetting_device: USB core reset the device, so use alt setting 0 as |
135 | * current; needs bandwidth alloc after reset. | 131 | * current; needs bandwidth alloc after reset. |
136 | * | 132 | * |
@@ -181,7 +177,6 @@ struct usb_interface { | |||
181 | unsigned needs_remote_wakeup:1; /* driver requires remote wakeup */ | 177 | unsigned needs_remote_wakeup:1; /* driver requires remote wakeup */ |
182 | unsigned needs_altsetting0:1; /* switch to altsetting 0 is pending */ | 178 | unsigned needs_altsetting0:1; /* switch to altsetting 0 is pending */ |
183 | unsigned needs_binding:1; /* needs delayed unbind/rebind */ | 179 | unsigned needs_binding:1; /* needs delayed unbind/rebind */ |
184 | unsigned reset_running:1; | ||
185 | unsigned resetting_device:1; /* true: bandwidth alloc after reset */ | 180 | unsigned resetting_device:1; /* true: bandwidth alloc after reset */ |
186 | 181 | ||
187 | struct device dev; /* interface specific device info */ | 182 | struct device dev; /* interface specific device info */ |
diff --git a/include/linux/usb/ehci_pdriver.h b/include/linux/usb/ehci_pdriver.h index 7eb4dcd0d386..db0431b39a63 100644 --- a/include/linux/usb/ehci_pdriver.h +++ b/include/linux/usb/ehci_pdriver.h | |||
@@ -34,6 +34,8 @@ struct usb_hcd; | |||
34 | * after initialization. | 34 | * after initialization. |
35 | * @no_io_watchdog: set to 1 if the controller does not need the I/O | 35 | * @no_io_watchdog: set to 1 if the controller does not need the I/O |
36 | * watchdog to run. | 36 | * watchdog to run. |
37 | * @reset_on_resume: set to 1 if the controller needs to be reset after | ||
38 | * a suspend / resume cycle (but can't detect that itself). | ||
37 | * | 39 | * |
38 | * These are general configuration options for the EHCI controller. All of | 40 | * These are general configuration options for the EHCI controller. All of |
39 | * these options are activating more or less workarounds for some hardware. | 41 | * these options are activating more or less workarounds for some hardware. |
@@ -45,6 +47,8 @@ struct usb_ehci_pdata { | |||
45 | unsigned big_endian_desc:1; | 47 | unsigned big_endian_desc:1; |
46 | unsigned big_endian_mmio:1; | 48 | unsigned big_endian_mmio:1; |
47 | unsigned no_io_watchdog:1; | 49 | unsigned no_io_watchdog:1; |
50 | unsigned reset_on_resume:1; | ||
51 | unsigned dma_mask_64:1; | ||
48 | 52 | ||
49 | /* Turn on all power and clocks */ | 53 | /* Turn on all power and clocks */ |
50 | int (*power_on)(struct platform_device *pdev); | 54 | int (*power_on)(struct platform_device *pdev); |
diff --git a/include/linux/usb/gadget.h b/include/linux/usb/gadget.h index 70ddb3943b62..e2f00fd8cd47 100644 --- a/include/linux/usb/gadget.h +++ b/include/linux/usb/gadget.h | |||
@@ -523,6 +523,7 @@ struct usb_gadget_ops { | |||
523 | * enabled HNP support. | 523 | * enabled HNP support. |
524 | * @quirk_ep_out_aligned_size: epout requires buffer size to be aligned to | 524 | * @quirk_ep_out_aligned_size: epout requires buffer size to be aligned to |
525 | * MaxPacketSize. | 525 | * MaxPacketSize. |
526 | * @is_selfpowered: if the gadget is self-powered. | ||
526 | * | 527 | * |
527 | * Gadgets have a mostly-portable "gadget driver" implementing device | 528 | * Gadgets have a mostly-portable "gadget driver" implementing device |
528 | * functions, handling all usb configurations and interfaces. Gadget | 529 | * functions, handling all usb configurations and interfaces. Gadget |
@@ -563,6 +564,7 @@ struct usb_gadget { | |||
563 | unsigned a_hnp_support:1; | 564 | unsigned a_hnp_support:1; |
564 | unsigned a_alt_hnp_support:1; | 565 | unsigned a_alt_hnp_support:1; |
565 | unsigned quirk_ep_out_aligned_size:1; | 566 | unsigned quirk_ep_out_aligned_size:1; |
567 | unsigned is_selfpowered:1; | ||
566 | }; | 568 | }; |
567 | #define work_to_gadget(w) (container_of((w), struct usb_gadget, work)) | 569 | #define work_to_gadget(w) (container_of((w), struct usb_gadget, work)) |
568 | 570 | ||
diff --git a/include/linux/usb/hcd.h b/include/linux/usb/hcd.h index 086bf13307e6..68b1e836dff1 100644 --- a/include/linux/usb/hcd.h +++ b/include/linux/usb/hcd.h | |||
@@ -146,6 +146,8 @@ struct usb_hcd { | |||
146 | unsigned amd_resume_bug:1; /* AMD remote wakeup quirk */ | 146 | unsigned amd_resume_bug:1; /* AMD remote wakeup quirk */ |
147 | unsigned can_do_streams:1; /* HC supports streams */ | 147 | unsigned can_do_streams:1; /* HC supports streams */ |
148 | unsigned tpl_support:1; /* OTG & EH TPL support */ | 148 | unsigned tpl_support:1; /* OTG & EH TPL support */ |
149 | unsigned cant_recv_wakeups:1; | ||
150 | /* wakeup requests from downstream aren't received */ | ||
149 | 151 | ||
150 | unsigned int irq; /* irq allocated */ | 152 | unsigned int irq; /* irq allocated */ |
151 | void __iomem *regs; /* device memory/io */ | 153 | void __iomem *regs; /* device memory/io */ |
@@ -453,6 +455,7 @@ extern const struct dev_pm_ops usb_hcd_pci_pm_ops; | |||
453 | #endif /* CONFIG_PCI */ | 455 | #endif /* CONFIG_PCI */ |
454 | 456 | ||
455 | /* pci-ish (pdev null is ok) buffer alloc/mapping support */ | 457 | /* pci-ish (pdev null is ok) buffer alloc/mapping support */ |
458 | void usb_init_pool_max(void); | ||
456 | int hcd_buffer_create(struct usb_hcd *hcd); | 459 | int hcd_buffer_create(struct usb_hcd *hcd); |
457 | void hcd_buffer_destroy(struct usb_hcd *hcd); | 460 | void hcd_buffer_destroy(struct usb_hcd *hcd); |
458 | 461 | ||
diff --git a/include/linux/usb/phy.h b/include/linux/usb/phy.h index f499c23e6342..bc91b5d380fd 100644 --- a/include/linux/usb/phy.h +++ b/include/linux/usb/phy.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* USB OTG (On The Go) defines */ | ||
2 | /* | 1 | /* |
2 | * USB PHY defines | ||
3 | * | 3 | * |
4 | * These APIs may be used between USB controllers. USB device drivers | 4 | * These APIs may be used between USB controllers. USB device drivers |
5 | * (for either host or peripheral roles) don't use these calls; they | 5 | * (for either host or peripheral roles) don't use these calls; they |
@@ -106,7 +106,7 @@ struct usb_phy { | |||
106 | int (*set_power)(struct usb_phy *x, | 106 | int (*set_power)(struct usb_phy *x, |
107 | unsigned mA); | 107 | unsigned mA); |
108 | 108 | ||
109 | /* for non-OTG B devices: set transceiver into suspend mode */ | 109 | /* Set transceiver into suspend mode */ |
110 | int (*set_suspend)(struct usb_phy *x, | 110 | int (*set_suspend)(struct usb_phy *x, |
111 | int suspend); | 111 | int suspend); |
112 | 112 | ||
diff --git a/include/linux/usb/usb_phy_generic.h b/include/linux/usb/usb_phy_generic.h index 68adae83affc..c13632d5292e 100644 --- a/include/linux/usb/usb_phy_generic.h +++ b/include/linux/usb/usb_phy_generic.h | |||
@@ -2,6 +2,7 @@ | |||
2 | #define __LINUX_USB_NOP_XCEIV_H | 2 | #define __LINUX_USB_NOP_XCEIV_H |
3 | 3 | ||
4 | #include <linux/usb/otg.h> | 4 | #include <linux/usb/otg.h> |
5 | #include <linux/gpio/consumer.h> | ||
5 | 6 | ||
6 | struct usb_phy_generic_platform_data { | 7 | struct usb_phy_generic_platform_data { |
7 | enum usb_phy_type type; | 8 | enum usb_phy_type type; |
@@ -11,6 +12,7 @@ struct usb_phy_generic_platform_data { | |||
11 | unsigned int needs_vcc:1; | 12 | unsigned int needs_vcc:1; |
12 | unsigned int needs_reset:1; /* deprecated */ | 13 | unsigned int needs_reset:1; /* deprecated */ |
13 | int gpio_reset; | 14 | int gpio_reset; |
15 | struct gpio_desc *gpiod_vbus; | ||
14 | }; | 16 | }; |
15 | 17 | ||
16 | #if IS_ENABLED(CONFIG_NOP_USB_XCEIV) | 18 | #if IS_ENABLED(CONFIG_NOP_USB_XCEIV) |
diff --git a/include/linux/vfio.h b/include/linux/vfio.h index d3204115f15d..2d67b8998fd8 100644 --- a/include/linux/vfio.h +++ b/include/linux/vfio.h | |||
@@ -26,6 +26,7 @@ | |||
26 | * @ioctl: Perform ioctl(2) on device file descriptor, supporting VFIO_DEVICE_* | 26 | * @ioctl: Perform ioctl(2) on device file descriptor, supporting VFIO_DEVICE_* |
27 | * operations documented below | 27 | * operations documented below |
28 | * @mmap: Perform mmap(2) on a region of the device file descriptor | 28 | * @mmap: Perform mmap(2) on a region of the device file descriptor |
29 | * @request: Request for the bus driver to release the device | ||
29 | */ | 30 | */ |
30 | struct vfio_device_ops { | 31 | struct vfio_device_ops { |
31 | char *name; | 32 | char *name; |
@@ -38,6 +39,7 @@ struct vfio_device_ops { | |||
38 | long (*ioctl)(void *device_data, unsigned int cmd, | 39 | long (*ioctl)(void *device_data, unsigned int cmd, |
39 | unsigned long arg); | 40 | unsigned long arg); |
40 | int (*mmap)(void *device_data, struct vm_area_struct *vma); | 41 | int (*mmap)(void *device_data, struct vm_area_struct *vma); |
42 | void (*request)(void *device_data, unsigned int count); | ||
41 | }; | 43 | }; |
42 | 44 | ||
43 | extern int vfio_add_group_dev(struct device *dev, | 45 | extern int vfio_add_group_dev(struct device *dev, |
diff --git a/include/linux/virtio_mmio.h b/include/linux/virtio_mmio.h index 5c7b6f0daef8..c4b09689ab64 100644 --- a/include/linux/virtio_mmio.h +++ b/include/linux/virtio_mmio.h | |||
@@ -51,23 +51,29 @@ | |||
51 | /* Virtio vendor ID - Read Only */ | 51 | /* Virtio vendor ID - Read Only */ |
52 | #define VIRTIO_MMIO_VENDOR_ID 0x00c | 52 | #define VIRTIO_MMIO_VENDOR_ID 0x00c |
53 | 53 | ||
54 | /* Bitmask of the features supported by the host | 54 | /* Bitmask of the features supported by the device (host) |
55 | * (32 bits per set) - Read Only */ | 55 | * (32 bits per set) - Read Only */ |
56 | #define VIRTIO_MMIO_HOST_FEATURES 0x010 | 56 | #define VIRTIO_MMIO_DEVICE_FEATURES 0x010 |
57 | 57 | ||
58 | /* Host features set selector - Write Only */ | 58 | /* Device (host) features set selector - Write Only */ |
59 | #define VIRTIO_MMIO_HOST_FEATURES_SEL 0x014 | 59 | #define VIRTIO_MMIO_DEVICE_FEATURES_SEL 0x014 |
60 | 60 | ||
61 | /* Bitmask of features activated by the guest | 61 | /* Bitmask of features activated by the driver (guest) |
62 | * (32 bits per set) - Write Only */ | 62 | * (32 bits per set) - Write Only */ |
63 | #define VIRTIO_MMIO_GUEST_FEATURES 0x020 | 63 | #define VIRTIO_MMIO_DRIVER_FEATURES 0x020 |
64 | 64 | ||
65 | /* Activated features set selector - Write Only */ | 65 | /* Activated features set selector - Write Only */ |
66 | #define VIRTIO_MMIO_GUEST_FEATURES_SEL 0x024 | 66 | #define VIRTIO_MMIO_DRIVER_FEATURES_SEL 0x024 |
67 | |||
68 | |||
69 | #ifndef VIRTIO_MMIO_NO_LEGACY /* LEGACY DEVICES ONLY! */ | ||
67 | 70 | ||
68 | /* Guest's memory page size in bytes - Write Only */ | 71 | /* Guest's memory page size in bytes - Write Only */ |
69 | #define VIRTIO_MMIO_GUEST_PAGE_SIZE 0x028 | 72 | #define VIRTIO_MMIO_GUEST_PAGE_SIZE 0x028 |
70 | 73 | ||
74 | #endif | ||
75 | |||
76 | |||
71 | /* Queue selector - Write Only */ | 77 | /* Queue selector - Write Only */ |
72 | #define VIRTIO_MMIO_QUEUE_SEL 0x030 | 78 | #define VIRTIO_MMIO_QUEUE_SEL 0x030 |
73 | 79 | ||
@@ -77,12 +83,21 @@ | |||
77 | /* Queue size for the currently selected queue - Write Only */ | 83 | /* Queue size for the currently selected queue - Write Only */ |
78 | #define VIRTIO_MMIO_QUEUE_NUM 0x038 | 84 | #define VIRTIO_MMIO_QUEUE_NUM 0x038 |
79 | 85 | ||
86 | |||
87 | #ifndef VIRTIO_MMIO_NO_LEGACY /* LEGACY DEVICES ONLY! */ | ||
88 | |||
80 | /* Used Ring alignment for the currently selected queue - Write Only */ | 89 | /* Used Ring alignment for the currently selected queue - Write Only */ |
81 | #define VIRTIO_MMIO_QUEUE_ALIGN 0x03c | 90 | #define VIRTIO_MMIO_QUEUE_ALIGN 0x03c |
82 | 91 | ||
83 | /* Guest's PFN for the currently selected queue - Read Write */ | 92 | /* Guest's PFN for the currently selected queue - Read Write */ |
84 | #define VIRTIO_MMIO_QUEUE_PFN 0x040 | 93 | #define VIRTIO_MMIO_QUEUE_PFN 0x040 |
85 | 94 | ||
95 | #endif | ||
96 | |||
97 | |||
98 | /* Ready bit for the currently selected queue - Read Write */ | ||
99 | #define VIRTIO_MMIO_QUEUE_READY 0x044 | ||
100 | |||
86 | /* Queue notifier - Write Only */ | 101 | /* Queue notifier - Write Only */ |
87 | #define VIRTIO_MMIO_QUEUE_NOTIFY 0x050 | 102 | #define VIRTIO_MMIO_QUEUE_NOTIFY 0x050 |
88 | 103 | ||
@@ -95,6 +110,21 @@ | |||
95 | /* Device status register - Read Write */ | 110 | /* Device status register - Read Write */ |
96 | #define VIRTIO_MMIO_STATUS 0x070 | 111 | #define VIRTIO_MMIO_STATUS 0x070 |
97 | 112 | ||
113 | /* Selected queue's Descriptor Table address, 64 bits in two halves */ | ||
114 | #define VIRTIO_MMIO_QUEUE_DESC_LOW 0x080 | ||
115 | #define VIRTIO_MMIO_QUEUE_DESC_HIGH 0x084 | ||
116 | |||
117 | /* Selected queue's Available Ring address, 64 bits in two halves */ | ||
118 | #define VIRTIO_MMIO_QUEUE_AVAIL_LOW 0x090 | ||
119 | #define VIRTIO_MMIO_QUEUE_AVAIL_HIGH 0x094 | ||
120 | |||
121 | /* Selected queue's Used Ring address, 64 bits in two halves */ | ||
122 | #define VIRTIO_MMIO_QUEUE_USED_LOW 0x0a0 | ||
123 | #define VIRTIO_MMIO_QUEUE_USED_HIGH 0x0a4 | ||
124 | |||
125 | /* Configuration atomicity value */ | ||
126 | #define VIRTIO_MMIO_CONFIG_GENERATION 0x0fc | ||
127 | |||
98 | /* The config space is defined by each driver as | 128 | /* The config space is defined by each driver as |
99 | * the per-driver configuration space - Read Write */ | 129 | * the per-driver configuration space - Read Write */ |
100 | #define VIRTIO_MMIO_CONFIG 0x100 | 130 | #define VIRTIO_MMIO_CONFIG 0x100 |
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h index b87696fdf06a..7d7acb35603d 100644 --- a/include/linux/vmalloc.h +++ b/include/linux/vmalloc.h | |||
@@ -16,6 +16,7 @@ struct vm_area_struct; /* vma defining user mapping in mm_types.h */ | |||
16 | #define VM_USERMAP 0x00000008 /* suitable for remap_vmalloc_range */ | 16 | #define VM_USERMAP 0x00000008 /* suitable for remap_vmalloc_range */ |
17 | #define VM_VPAGES 0x00000010 /* buffer for pages was vmalloc'ed */ | 17 | #define VM_VPAGES 0x00000010 /* buffer for pages was vmalloc'ed */ |
18 | #define VM_UNINITIALIZED 0x00000020 /* vm_struct is not fully initialized */ | 18 | #define VM_UNINITIALIZED 0x00000020 /* vm_struct is not fully initialized */ |
19 | #define VM_NO_GUARD 0x00000040 /* don't add guard page */ | ||
19 | /* bits [20..32] reserved for arch specific ioremap internals */ | 20 | /* bits [20..32] reserved for arch specific ioremap internals */ |
20 | 21 | ||
21 | /* | 22 | /* |
@@ -75,7 +76,9 @@ extern void *vmalloc_32_user(unsigned long size); | |||
75 | extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot); | 76 | extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot); |
76 | extern void *__vmalloc_node_range(unsigned long size, unsigned long align, | 77 | extern void *__vmalloc_node_range(unsigned long size, unsigned long align, |
77 | unsigned long start, unsigned long end, gfp_t gfp_mask, | 78 | unsigned long start, unsigned long end, gfp_t gfp_mask, |
78 | pgprot_t prot, int node, const void *caller); | 79 | pgprot_t prot, unsigned long vm_flags, int node, |
80 | const void *caller); | ||
81 | |||
79 | extern void vfree(const void *addr); | 82 | extern void vfree(const void *addr); |
80 | 83 | ||
81 | extern void *vmap(struct page **pages, unsigned int count, | 84 | extern void *vmap(struct page **pages, unsigned int count, |
@@ -96,8 +99,12 @@ void vmalloc_sync_all(void); | |||
96 | 99 | ||
97 | static inline size_t get_vm_area_size(const struct vm_struct *area) | 100 | static inline size_t get_vm_area_size(const struct vm_struct *area) |
98 | { | 101 | { |
99 | /* return actual size without guard page */ | 102 | if (!(area->flags & VM_NO_GUARD)) |
100 | return area->size - PAGE_SIZE; | 103 | /* return actual size without guard page */ |
104 | return area->size - PAGE_SIZE; | ||
105 | else | ||
106 | return area->size; | ||
107 | |||
101 | } | 108 | } |
102 | 109 | ||
103 | extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags); | 110 | extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags); |
diff --git a/include/linux/vmw_vmci_api.h b/include/linux/vmw_vmci_api.h index 5691f752ce8f..63df3a2a8ce5 100644 --- a/include/linux/vmw_vmci_api.h +++ b/include/linux/vmw_vmci_api.h | |||
@@ -74,7 +74,7 @@ ssize_t vmci_qpair_dequeue(struct vmci_qp *qpair, | |||
74 | ssize_t vmci_qpair_peek(struct vmci_qp *qpair, void *buf, size_t buf_size, | 74 | ssize_t vmci_qpair_peek(struct vmci_qp *qpair, void *buf, size_t buf_size, |
75 | int mode); | 75 | int mode); |
76 | ssize_t vmci_qpair_enquev(struct vmci_qp *qpair, | 76 | ssize_t vmci_qpair_enquev(struct vmci_qp *qpair, |
77 | void *iov, size_t iov_size, int mode); | 77 | struct msghdr *msg, size_t iov_size, int mode); |
78 | ssize_t vmci_qpair_dequev(struct vmci_qp *qpair, | 78 | ssize_t vmci_qpair_dequev(struct vmci_qp *qpair, |
79 | struct msghdr *msg, size_t iov_size, int mode); | 79 | struct msghdr *msg, size_t iov_size, int mode); |
80 | ssize_t vmci_qpair_peekv(struct vmci_qp *qpair, struct msghdr *msg, size_t iov_size, | 80 | ssize_t vmci_qpair_peekv(struct vmci_qp *qpair, struct msghdr *msg, size_t iov_size, |
diff --git a/include/linux/vt_buffer.h b/include/linux/vt_buffer.h index 057db7d2f448..f38c10ba3ff5 100644 --- a/include/linux/vt_buffer.h +++ b/include/linux/vt_buffer.h | |||
@@ -21,10 +21,6 @@ | |||
21 | #ifndef VT_BUF_HAVE_RW | 21 | #ifndef VT_BUF_HAVE_RW |
22 | #define scr_writew(val, addr) (*(addr) = (val)) | 22 | #define scr_writew(val, addr) (*(addr) = (val)) |
23 | #define scr_readw(addr) (*(addr)) | 23 | #define scr_readw(addr) (*(addr)) |
24 | #define scr_memcpyw(d, s, c) memcpy(d, s, c) | ||
25 | #define scr_memmovew(d, s, c) memmove(d, s, c) | ||
26 | #define VT_BUF_HAVE_MEMCPYW | ||
27 | #define VT_BUF_HAVE_MEMMOVEW | ||
28 | #endif | 24 | #endif |
29 | 25 | ||
30 | #ifndef VT_BUF_HAVE_MEMSETW | 26 | #ifndef VT_BUF_HAVE_MEMSETW |
diff --git a/include/linux/wait.h b/include/linux/wait.h index 37423e0e1379..2db83349865b 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h | |||
@@ -267,6 +267,21 @@ do { \ | |||
267 | __wait_event(wq, condition); \ | 267 | __wait_event(wq, condition); \ |
268 | } while (0) | 268 | } while (0) |
269 | 269 | ||
270 | #define __io_wait_event(wq, condition) \ | ||
271 | (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ | ||
272 | io_schedule()) | ||
273 | |||
274 | /* | ||
275 | * io_wait_event() -- like wait_event() but with io_schedule() | ||
276 | */ | ||
277 | #define io_wait_event(wq, condition) \ | ||
278 | do { \ | ||
279 | might_sleep(); \ | ||
280 | if (condition) \ | ||
281 | break; \ | ||
282 | __io_wait_event(wq, condition); \ | ||
283 | } while (0) | ||
284 | |||
270 | #define __wait_event_freezable(wq, condition) \ | 285 | #define __wait_event_freezable(wq, condition) \ |
271 | ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \ | 286 | ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \ |
272 | schedule(); try_to_freeze()) | 287 | schedule(); try_to_freeze()) |
@@ -990,6 +1005,32 @@ wait_on_bit_io(void *word, int bit, unsigned mode) | |||
990 | } | 1005 | } |
991 | 1006 | ||
992 | /** | 1007 | /** |
1008 | * wait_on_bit_timeout - wait for a bit to be cleared or a timeout elapses | ||
1009 | * @word: the word being waited on, a kernel virtual address | ||
1010 | * @bit: the bit of the word being waited on | ||
1011 | * @mode: the task state to sleep in | ||
1012 | * @timeout: timeout, in jiffies | ||
1013 | * | ||
1014 | * Use the standard hashed waitqueue table to wait for a bit | ||
1015 | * to be cleared. This is similar to wait_on_bit(), except also takes a | ||
1016 | * timeout parameter. | ||
1017 | * | ||
1018 | * Returned value will be zero if the bit was cleared before the | ||
1019 | * @timeout elapsed, or non-zero if the @timeout elapsed or process | ||
1020 | * received a signal and the mode permitted wakeup on that signal. | ||
1021 | */ | ||
1022 | static inline int | ||
1023 | wait_on_bit_timeout(void *word, int bit, unsigned mode, unsigned long timeout) | ||
1024 | { | ||
1025 | might_sleep(); | ||
1026 | if (!test_bit(bit, word)) | ||
1027 | return 0; | ||
1028 | return out_of_line_wait_on_bit_timeout(word, bit, | ||
1029 | bit_wait_timeout, | ||
1030 | mode, timeout); | ||
1031 | } | ||
1032 | |||
1033 | /** | ||
993 | * wait_on_bit_action - wait for a bit to be cleared | 1034 | * wait_on_bit_action - wait for a bit to be cleared |
994 | * @word: the word being waited on, a kernel virtual address | 1035 | * @word: the word being waited on, a kernel virtual address |
995 | * @bit: the bit of the word being waited on | 1036 | * @bit: the bit of the word being waited on |
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index b996e6cde6bb..74db135f9957 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h | |||
@@ -220,14 +220,10 @@ static inline unsigned int work_static(struct work_struct *work) { return 0; } | |||
220 | #endif | 220 | #endif |
221 | 221 | ||
222 | #define INIT_WORK(_work, _func) \ | 222 | #define INIT_WORK(_work, _func) \ |
223 | do { \ | 223 | __INIT_WORK((_work), (_func), 0) |
224 | __INIT_WORK((_work), (_func), 0); \ | ||
225 | } while (0) | ||
226 | 224 | ||
227 | #define INIT_WORK_ONSTACK(_work, _func) \ | 225 | #define INIT_WORK_ONSTACK(_work, _func) \ |
228 | do { \ | 226 | __INIT_WORK((_work), (_func), 1) |
229 | __INIT_WORK((_work), (_func), 1); \ | ||
230 | } while (0) | ||
231 | 227 | ||
232 | #define __INIT_DELAYED_WORK(_work, _func, _tflags) \ | 228 | #define __INIT_DELAYED_WORK(_work, _func, _tflags) \ |
233 | do { \ | 229 | do { \ |
diff --git a/include/linux/zpool.h b/include/linux/zpool.h index f14bd75f08b3..56529b34dc63 100644 --- a/include/linux/zpool.h +++ b/include/linux/zpool.h | |||
@@ -36,7 +36,8 @@ enum zpool_mapmode { | |||
36 | ZPOOL_MM_DEFAULT = ZPOOL_MM_RW | 36 | ZPOOL_MM_DEFAULT = ZPOOL_MM_RW |
37 | }; | 37 | }; |
38 | 38 | ||
39 | struct zpool *zpool_create_pool(char *type, gfp_t gfp, struct zpool_ops *ops); | 39 | struct zpool *zpool_create_pool(char *type, char *name, |
40 | gfp_t gfp, struct zpool_ops *ops); | ||
40 | 41 | ||
41 | char *zpool_get_type(struct zpool *pool); | 42 | char *zpool_get_type(struct zpool *pool); |
42 | 43 | ||
@@ -80,7 +81,7 @@ struct zpool_driver { | |||
80 | atomic_t refcount; | 81 | atomic_t refcount; |
81 | struct list_head list; | 82 | struct list_head list; |
82 | 83 | ||
83 | void *(*create)(gfp_t gfp, struct zpool_ops *ops); | 84 | void *(*create)(char *name, gfp_t gfp, struct zpool_ops *ops); |
84 | void (*destroy)(void *pool); | 85 | void (*destroy)(void *pool); |
85 | 86 | ||
86 | int (*malloc)(void *pool, size_t size, gfp_t gfp, | 87 | int (*malloc)(void *pool, size_t size, gfp_t gfp, |
diff --git a/include/linux/zsmalloc.h b/include/linux/zsmalloc.h index 05c214760977..3283c6a55425 100644 --- a/include/linux/zsmalloc.h +++ b/include/linux/zsmalloc.h | |||
@@ -36,7 +36,7 @@ enum zs_mapmode { | |||
36 | 36 | ||
37 | struct zs_pool; | 37 | struct zs_pool; |
38 | 38 | ||
39 | struct zs_pool *zs_create_pool(gfp_t flags); | 39 | struct zs_pool *zs_create_pool(char *name, gfp_t flags); |
40 | void zs_destroy_pool(struct zs_pool *pool); | 40 | void zs_destroy_pool(struct zs_pool *pool); |
41 | 41 | ||
42 | unsigned long zs_malloc(struct zs_pool *pool, size_t size); | 42 | unsigned long zs_malloc(struct zs_pool *pool, size_t size); |