diff options
Diffstat (limited to 'include')
464 files changed, 16994 insertions, 7656 deletions
diff --git a/include/acpi/acexcep.h b/include/acpi/acexcep.h index 92d6e1d701ff..19503449814f 100644 --- a/include/acpi/acexcep.h +++ b/include/acpi/acexcep.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
@@ -52,6 +52,7 @@ | |||
52 | #define AE_CODE_ACPI_TABLES 0x2000 | 52 | #define AE_CODE_ACPI_TABLES 0x2000 |
53 | #define AE_CODE_AML 0x3000 | 53 | #define AE_CODE_AML 0x3000 |
54 | #define AE_CODE_CONTROL 0x4000 | 54 | #define AE_CODE_CONTROL 0x4000 |
55 | #define AE_CODE_MAX 0x4000 | ||
55 | #define AE_CODE_MASK 0xF000 | 56 | #define AE_CODE_MASK 0xF000 |
56 | 57 | ||
57 | #define ACPI_SUCCESS(a) (!(a)) | 58 | #define ACPI_SUCCESS(a) (!(a)) |
@@ -181,7 +182,7 @@ | |||
181 | 182 | ||
182 | /* Exception strings for acpi_format_exception */ | 183 | /* Exception strings for acpi_format_exception */ |
183 | 184 | ||
184 | #ifdef DEFINE_ACPI_GLOBALS | 185 | #ifdef ACPI_DEFINE_EXCEPTION_TABLE |
185 | 186 | ||
186 | /* | 187 | /* |
187 | * String versions of the exception codes above | 188 | * String versions of the exception codes above |
@@ -295,6 +296,6 @@ char const *acpi_gbl_exception_names_ctrl[] = { | |||
295 | "AE_CTRL_PARSE_PENDING" | 296 | "AE_CTRL_PARSE_PENDING" |
296 | }; | 297 | }; |
297 | 298 | ||
298 | #endif /* ACPI GLOBALS */ | 299 | #endif /* EXCEPTION_TABLE */ |
299 | 300 | ||
300 | #endif /* __ACEXCEP_H__ */ | 301 | #endif /* __ACEXCEP_H__ */ |
diff --git a/include/acpi/acnames.h b/include/acpi/acnames.h index 38f508816e4a..d988ac54f41e 100644 --- a/include/acpi/acnames.h +++ b/include/acpi/acnames.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
@@ -62,6 +62,7 @@ | |||
62 | #define METHOD_NAME__AEI "_AEI" | 62 | #define METHOD_NAME__AEI "_AEI" |
63 | #define METHOD_NAME__PRW "_PRW" | 63 | #define METHOD_NAME__PRW "_PRW" |
64 | #define METHOD_NAME__SRS "_SRS" | 64 | #define METHOD_NAME__SRS "_SRS" |
65 | #define METHOD_NAME__CBA "_CBA" | ||
65 | 66 | ||
66 | /* Method names - these methods must appear at the namespace root */ | 67 | /* Method names - these methods must appear at the namespace root */ |
67 | 68 | ||
diff --git a/include/acpi/acoutput.h b/include/acpi/acoutput.h index d7bd661bfae7..2457ac849655 100644 --- a/include/acpi/acoutput.h +++ b/include/acpi/acoutput.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
@@ -213,6 +213,8 @@ | |||
213 | #define ACPI_WARNING(plist) acpi_warning plist | 213 | #define ACPI_WARNING(plist) acpi_warning plist |
214 | #define ACPI_EXCEPTION(plist) acpi_exception plist | 214 | #define ACPI_EXCEPTION(plist) acpi_exception plist |
215 | #define ACPI_ERROR(plist) acpi_error plist | 215 | #define ACPI_ERROR(plist) acpi_error plist |
216 | #define ACPI_BIOS_WARNING(plist) acpi_bios_warning plist | ||
217 | #define ACPI_BIOS_ERROR(plist) acpi_bios_error plist | ||
216 | #define ACPI_DEBUG_OBJECT(obj,l,i) acpi_ex_do_debug_object(obj,l,i) | 218 | #define ACPI_DEBUG_OBJECT(obj,l,i) acpi_ex_do_debug_object(obj,l,i) |
217 | 219 | ||
218 | #else | 220 | #else |
@@ -223,6 +225,8 @@ | |||
223 | #define ACPI_WARNING(plist) | 225 | #define ACPI_WARNING(plist) |
224 | #define ACPI_EXCEPTION(plist) | 226 | #define ACPI_EXCEPTION(plist) |
225 | #define ACPI_ERROR(plist) | 227 | #define ACPI_ERROR(plist) |
228 | #define ACPI_BIOS_WARNING(plist) | ||
229 | #define ACPI_BIOS_ERROR(plist) | ||
226 | #define ACPI_DEBUG_OBJECT(obj,l,i) | 230 | #define ACPI_DEBUG_OBJECT(obj,l,i) |
227 | 231 | ||
228 | #endif /* ACPI_NO_ERROR_MESSAGES */ | 232 | #endif /* ACPI_NO_ERROR_MESSAGES */ |
diff --git a/include/acpi/acpi.h b/include/acpi/acpi.h index de39915f6b7f..c433d5e27679 100644 --- a/include/acpi/acpi.h +++ b/include/acpi/acpi.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index 9e6e1c6eb60a..bde976ee068d 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
@@ -50,6 +50,9 @@ acpi_evaluate_reference(acpi_handle handle, | |||
50 | acpi_string pathname, | 50 | acpi_string pathname, |
51 | struct acpi_object_list *arguments, | 51 | struct acpi_object_list *arguments, |
52 | struct acpi_handle_list *list); | 52 | struct acpi_handle_list *list); |
53 | acpi_status | ||
54 | acpi_evaluate_hotplug_ost(acpi_handle handle, u32 source_event, | ||
55 | u32 status_code, struct acpi_buffer *status_buf); | ||
53 | 56 | ||
54 | struct acpi_pld { | 57 | struct acpi_pld { |
55 | unsigned int revision:7; /* 0 */ | 58 | unsigned int revision:7; /* 0 */ |
@@ -117,9 +120,6 @@ struct acpi_device; | |||
117 | typedef int (*acpi_op_add) (struct acpi_device * device); | 120 | typedef int (*acpi_op_add) (struct acpi_device * device); |
118 | typedef int (*acpi_op_remove) (struct acpi_device * device, int type); | 121 | typedef int (*acpi_op_remove) (struct acpi_device * device, int type); |
119 | typedef int (*acpi_op_start) (struct acpi_device * device); | 122 | typedef int (*acpi_op_start) (struct acpi_device * device); |
120 | typedef int (*acpi_op_suspend) (struct acpi_device * device, | ||
121 | pm_message_t state); | ||
122 | typedef int (*acpi_op_resume) (struct acpi_device * device); | ||
123 | typedef int (*acpi_op_bind) (struct acpi_device * device); | 123 | typedef int (*acpi_op_bind) (struct acpi_device * device); |
124 | typedef int (*acpi_op_unbind) (struct acpi_device * device); | 124 | typedef int (*acpi_op_unbind) (struct acpi_device * device); |
125 | typedef void (*acpi_op_notify) (struct acpi_device * device, u32 event); | 125 | typedef void (*acpi_op_notify) (struct acpi_device * device, u32 event); |
@@ -133,8 +133,6 @@ struct acpi_device_ops { | |||
133 | acpi_op_add add; | 133 | acpi_op_add add; |
134 | acpi_op_remove remove; | 134 | acpi_op_remove remove; |
135 | acpi_op_start start; | 135 | acpi_op_start start; |
136 | acpi_op_suspend suspend; | ||
137 | acpi_op_resume resume; | ||
138 | acpi_op_bind bind; | 136 | acpi_op_bind bind; |
139 | acpi_op_unbind unbind; | 137 | acpi_op_unbind unbind; |
140 | acpi_op_notify notify; | 138 | acpi_op_notify notify; |
@@ -179,7 +177,8 @@ struct acpi_device_flags { | |||
179 | u32 suprise_removal_ok:1; | 177 | u32 suprise_removal_ok:1; |
180 | u32 power_manageable:1; | 178 | u32 power_manageable:1; |
181 | u32 performance_manageable:1; | 179 | u32 performance_manageable:1; |
182 | u32 reserved:24; | 180 | u32 eject_pending:1; |
181 | u32 reserved:23; | ||
183 | }; | 182 | }; |
184 | 183 | ||
185 | /* File System */ | 184 | /* File System */ |
@@ -331,6 +330,11 @@ struct acpi_bus_event { | |||
331 | u32 data; | 330 | u32 data; |
332 | }; | 331 | }; |
333 | 332 | ||
333 | struct acpi_eject_event { | ||
334 | acpi_handle handle; | ||
335 | u32 event; | ||
336 | }; | ||
337 | |||
334 | extern struct kobject *acpi_kobj; | 338 | extern struct kobject *acpi_kobj; |
335 | extern int acpi_bus_generate_netlink_event(const char*, const char*, u8, int); | 339 | extern int acpi_bus_generate_netlink_event(const char*, const char*, u8, int); |
336 | void acpi_bus_private_data_handler(acpi_handle, void *); | 340 | void acpi_bus_private_data_handler(acpi_handle, void *); |
@@ -368,6 +372,7 @@ int acpi_bus_register_driver(struct acpi_driver *driver); | |||
368 | void acpi_bus_unregister_driver(struct acpi_driver *driver); | 372 | void acpi_bus_unregister_driver(struct acpi_driver *driver); |
369 | int acpi_bus_add(struct acpi_device **child, struct acpi_device *parent, | 373 | int acpi_bus_add(struct acpi_device **child, struct acpi_device *parent, |
370 | acpi_handle handle, int type); | 374 | acpi_handle handle, int type); |
375 | void acpi_bus_hot_remove_device(void *context); | ||
371 | int acpi_bus_trim(struct acpi_device *start, int rmdevice); | 376 | int acpi_bus_trim(struct acpi_device *start, int rmdevice); |
372 | int acpi_bus_start(struct acpi_device *device); | 377 | int acpi_bus_start(struct acpi_device *device); |
373 | acpi_status acpi_bus_get_ejd(acpi_handle handle, acpi_handle * ejd); | 378 | acpi_status acpi_bus_get_ejd(acpi_handle handle, acpi_handle * ejd); |
@@ -401,6 +406,7 @@ struct acpi_pci_root { | |||
401 | 406 | ||
402 | u32 osc_support_set; /* _OSC state of support bits */ | 407 | u32 osc_support_set; /* _OSC state of support bits */ |
403 | u32 osc_control_set; /* _OSC state of control bits */ | 408 | u32 osc_control_set; /* _OSC state of control bits */ |
409 | phys_addr_t mcfg_addr; | ||
404 | }; | 410 | }; |
405 | 411 | ||
406 | /* helper */ | 412 | /* helper */ |
@@ -414,13 +420,13 @@ int acpi_enable_wakeup_device_power(struct acpi_device *dev, int state); | |||
414 | int acpi_disable_wakeup_device_power(struct acpi_device *dev); | 420 | int acpi_disable_wakeup_device_power(struct acpi_device *dev); |
415 | 421 | ||
416 | #ifdef CONFIG_PM | 422 | #ifdef CONFIG_PM |
417 | int acpi_pm_device_sleep_state(struct device *, int *); | 423 | int acpi_pm_device_sleep_state(struct device *, int *, int); |
418 | #else | 424 | #else |
419 | static inline int acpi_pm_device_sleep_state(struct device *d, int *p) | 425 | static inline int acpi_pm_device_sleep_state(struct device *d, int *p, int m) |
420 | { | 426 | { |
421 | if (p) | 427 | if (p) |
422 | *p = ACPI_STATE_D0; | 428 | *p = ACPI_STATE_D0; |
423 | return ACPI_STATE_D3; | 429 | return (m >= ACPI_STATE_D0 && m <= ACPI_STATE_D3) ? m : ACPI_STATE_D0; |
424 | } | 430 | } |
425 | #endif | 431 | #endif |
426 | 432 | ||
diff --git a/include/acpi/acpiosxf.h b/include/acpi/acpiosxf.h index 21a5548c6686..0650f5fa7ce9 100644 --- a/include/acpi/acpiosxf.h +++ b/include/acpi/acpiosxf.h | |||
@@ -8,7 +8,7 @@ | |||
8 | *****************************************************************************/ | 8 | *****************************************************************************/ |
9 | 9 | ||
10 | /* | 10 | /* |
11 | * Copyright (C) 2000 - 2011, Intel Corp. | 11 | * Copyright (C) 2000 - 2012, Intel Corp. |
12 | * All rights reserved. | 12 | * All rights reserved. |
13 | * | 13 | * |
14 | * Redistribution and use in source and binary forms, with or without | 14 | * Redistribution and use in source and binary forms, with or without |
@@ -205,7 +205,7 @@ acpi_os_execute(acpi_execute_type type, | |||
205 | acpi_status | 205 | acpi_status |
206 | acpi_os_hotplug_execute(acpi_osd_exec_callback function, void *context); | 206 | acpi_os_hotplug_execute(acpi_osd_exec_callback function, void *context); |
207 | 207 | ||
208 | void acpi_os_wait_events_complete(void *context); | 208 | void acpi_os_wait_events_complete(void); |
209 | 209 | ||
210 | void acpi_os_sleep(u64 milliseconds); | 210 | void acpi_os_sleep(u64 milliseconds); |
211 | 211 | ||
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index 982110134672..2c744c7a5b3d 100644 --- a/include/acpi/acpixf.h +++ b/include/acpi/acpixf.h | |||
@@ -6,7 +6,7 @@ | |||
6 | *****************************************************************************/ | 6 | *****************************************************************************/ |
7 | 7 | ||
8 | /* | 8 | /* |
9 | * Copyright (C) 2000 - 2011, Intel Corp. | 9 | * Copyright (C) 2000 - 2012, Intel Corp. |
10 | * All rights reserved. | 10 | * All rights reserved. |
11 | * | 11 | * |
12 | * Redistribution and use in source and binary forms, with or without | 12 | * Redistribution and use in source and binary forms, with or without |
@@ -47,7 +47,7 @@ | |||
47 | 47 | ||
48 | /* Current ACPICA subsystem version in YYYYMMDD format */ | 48 | /* Current ACPICA subsystem version in YYYYMMDD format */ |
49 | 49 | ||
50 | #define ACPI_CA_VERSION 0x20120320 | 50 | #define ACPI_CA_VERSION 0x20120711 |
51 | 51 | ||
52 | #include "acconfig.h" | 52 | #include "acconfig.h" |
53 | #include "actypes.h" | 53 | #include "actypes.h" |
@@ -154,15 +154,20 @@ void *acpi_callocate(u32 size); | |||
154 | void acpi_free(void *address); | 154 | void acpi_free(void *address); |
155 | 155 | ||
156 | /* | 156 | /* |
157 | * ACPI table manipulation interfaces | 157 | * ACPI table load/unload interfaces |
158 | */ | 158 | */ |
159 | acpi_status acpi_reallocate_root_table(void); | 159 | acpi_status acpi_load_table(struct acpi_table_header *table); |
160 | 160 | ||
161 | acpi_status acpi_find_root_pointer(acpi_size *rsdp_address); | 161 | acpi_status acpi_unload_parent_table(acpi_handle object); |
162 | 162 | ||
163 | acpi_status acpi_load_tables(void); | 163 | acpi_status acpi_load_tables(void); |
164 | 164 | ||
165 | acpi_status acpi_load_table(struct acpi_table_header *table_ptr); | 165 | /* |
166 | * ACPI table manipulation interfaces | ||
167 | */ | ||
168 | acpi_status acpi_reallocate_root_table(void); | ||
169 | |||
170 | acpi_status acpi_find_root_pointer(acpi_size *rsdp_address); | ||
166 | 171 | ||
167 | acpi_status acpi_unload_table_id(acpi_owner_id id); | 172 | acpi_status acpi_unload_table_id(acpi_owner_id id); |
168 | 173 | ||
@@ -529,6 +534,14 @@ void ACPI_INTERNAL_VAR_XFACE | |||
529 | acpi_info(const char *module_name, | 534 | acpi_info(const char *module_name, |
530 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); | 535 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); |
531 | 536 | ||
537 | void ACPI_INTERNAL_VAR_XFACE | ||
538 | acpi_bios_error(const char *module_name, | ||
539 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); | ||
540 | |||
541 | void ACPI_INTERNAL_VAR_XFACE | ||
542 | acpi_bios_warning(const char *module_name, | ||
543 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); | ||
544 | |||
532 | /* | 545 | /* |
533 | * Debug output | 546 | * Debug output |
534 | */ | 547 | */ |
diff --git a/include/acpi/acrestyp.h b/include/acpi/acrestyp.h index 3506e39a66b1..40349ae65464 100644 --- a/include/acpi/acrestyp.h +++ b/include/acpi/acrestyp.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
@@ -48,7 +48,7 @@ | |||
48 | * Definitions for Resource Attributes | 48 | * Definitions for Resource Attributes |
49 | */ | 49 | */ |
50 | typedef u16 acpi_rs_length; /* Resource Length field is fixed at 16 bits */ | 50 | typedef u16 acpi_rs_length; /* Resource Length field is fixed at 16 bits */ |
51 | typedef u32 acpi_rsdesc_size; /* Max Resource Descriptor size is (Length+3) = (64_k-1)+3 */ | 51 | typedef u32 acpi_rsdesc_size; /* Max Resource Descriptor size is (Length+3) = (64K-1)+3 */ |
52 | 52 | ||
53 | /* | 53 | /* |
54 | * Memory Attributes | 54 | * Memory Attributes |
@@ -332,7 +332,7 @@ struct acpi_resource_address64 { | |||
332 | }; | 332 | }; |
333 | 333 | ||
334 | struct acpi_resource_extended_address64 { | 334 | struct acpi_resource_extended_address64 { |
335 | ACPI_RESOURCE_ADDRESS_COMMON u8 revision_iD; | 335 | ACPI_RESOURCE_ADDRESS_COMMON u8 revision_ID; |
336 | u64 granularity; | 336 | u64 granularity; |
337 | u64 minimum; | 337 | u64 minimum; |
338 | u64 maximum; | 338 | u64 maximum; |
diff --git a/include/acpi/actbl.h b/include/acpi/actbl.h index 8dea54665dcf..59a73e1b2845 100644 --- a/include/acpi/actbl.h +++ b/include/acpi/actbl.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
@@ -212,7 +212,7 @@ struct acpi_table_fadt { | |||
212 | u32 smi_command; /* 32-bit Port address of SMI command port */ | 212 | u32 smi_command; /* 32-bit Port address of SMI command port */ |
213 | u8 acpi_enable; /* Value to write to smi_cmd to enable ACPI */ | 213 | u8 acpi_enable; /* Value to write to smi_cmd to enable ACPI */ |
214 | u8 acpi_disable; /* Value to write to smi_cmd to disable ACPI */ | 214 | u8 acpi_disable; /* Value to write to smi_cmd to disable ACPI */ |
215 | u8 S4bios_request; /* Value to write to SMI CMD to enter S4BIOS state */ | 215 | u8 s4_bios_request; /* Value to write to SMI CMD to enter S4BIOS state */ |
216 | u8 pstate_control; /* Processor performance state control */ | 216 | u8 pstate_control; /* Processor performance state control */ |
217 | u32 pm1a_event_block; /* 32-bit Port address of Power Mgt 1a Event Reg Blk */ | 217 | u32 pm1a_event_block; /* 32-bit Port address of Power Mgt 1a Event Reg Blk */ |
218 | u32 pm1b_event_block; /* 32-bit Port address of Power Mgt 1b Event Reg Blk */ | 218 | u32 pm1b_event_block; /* 32-bit Port address of Power Mgt 1b Event Reg Blk */ |
@@ -230,8 +230,8 @@ struct acpi_table_fadt { | |||
230 | u8 gpe1_block_length; /* Byte Length of ports at gpe1_block */ | 230 | u8 gpe1_block_length; /* Byte Length of ports at gpe1_block */ |
231 | u8 gpe1_base; /* Offset in GPE number space where GPE1 events start */ | 231 | u8 gpe1_base; /* Offset in GPE number space where GPE1 events start */ |
232 | u8 cst_control; /* Support for the _CST object and C States change notification */ | 232 | u8 cst_control; /* Support for the _CST object and C States change notification */ |
233 | u16 C2latency; /* Worst case HW latency to enter/exit C2 state */ | 233 | u16 c2_latency; /* Worst case HW latency to enter/exit C2 state */ |
234 | u16 C3latency; /* Worst case HW latency to enter/exit C3 state */ | 234 | u16 c3_latency; /* Worst case HW latency to enter/exit C3 state */ |
235 | u16 flush_size; /* Processor's memory cache line width, in bytes */ | 235 | u16 flush_size; /* Processor's memory cache line width, in bytes */ |
236 | u16 flush_stride; /* Number of flush strides that need to be read */ | 236 | u16 flush_stride; /* Number of flush strides that need to be read */ |
237 | u8 duty_offset; /* Processor duty cycle index in processor's P_CNT reg */ | 237 | u8 duty_offset; /* Processor duty cycle index in processor's P_CNT reg */ |
@@ -291,7 +291,7 @@ struct acpi_table_fadt { | |||
291 | #define ACPI_FADT_S4_RTC_VALID (1<<16) /* 16: [V4] Contents of RTC_STS valid after S4 wake (ACPI 3.0) */ | 291 | #define ACPI_FADT_S4_RTC_VALID (1<<16) /* 16: [V4] Contents of RTC_STS valid after S4 wake (ACPI 3.0) */ |
292 | #define ACPI_FADT_REMOTE_POWER_ON (1<<17) /* 17: [V4] System is compatible with remote power on (ACPI 3.0) */ | 292 | #define ACPI_FADT_REMOTE_POWER_ON (1<<17) /* 17: [V4] System is compatible with remote power on (ACPI 3.0) */ |
293 | #define ACPI_FADT_APIC_CLUSTER (1<<18) /* 18: [V4] All local APICs must use cluster model (ACPI 3.0) */ | 293 | #define ACPI_FADT_APIC_CLUSTER (1<<18) /* 18: [V4] All local APICs must use cluster model (ACPI 3.0) */ |
294 | #define ACPI_FADT_APIC_PHYSICAL (1<<19) /* 19: [V4] All local x_aPICs must use physical dest mode (ACPI 3.0) */ | 294 | #define ACPI_FADT_APIC_PHYSICAL (1<<19) /* 19: [V4] All local xAPICs must use physical dest mode (ACPI 3.0) */ |
295 | #define ACPI_FADT_HW_REDUCED (1<<20) /* 20: [V5] ACPI hardware is not implemented (ACPI 5.0) */ | 295 | #define ACPI_FADT_HW_REDUCED (1<<20) /* 20: [V5] ACPI hardware is not implemented (ACPI 5.0) */ |
296 | #define ACPI_FADT_LOW_POWER_S0 (1<<21) /* 21: [V5] S0 power savings are equal or better than S3 (ACPI 5.0) */ | 296 | #define ACPI_FADT_LOW_POWER_S0 (1<<21) /* 21: [V5] S0 power savings are equal or better than S3 (ACPI 5.0) */ |
297 | 297 | ||
diff --git a/include/acpi/actbl1.h b/include/acpi/actbl1.h index 71e747beac8f..300d14e7c5d5 100644 --- a/include/acpi/actbl1.h +++ b/include/acpi/actbl1.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
@@ -676,7 +676,7 @@ struct acpi_madt_local_apic { | |||
676 | struct acpi_madt_io_apic { | 676 | struct acpi_madt_io_apic { |
677 | struct acpi_subtable_header header; | 677 | struct acpi_subtable_header header; |
678 | u8 id; /* I/O APIC ID */ | 678 | u8 id; /* I/O APIC ID */ |
679 | u8 reserved; /* Reserved - must be zero */ | 679 | u8 reserved; /* reserved - must be zero */ |
680 | u32 address; /* APIC physical address */ | 680 | u32 address; /* APIC physical address */ |
681 | u32 global_irq_base; /* Global system interrupt where INTI lines start */ | 681 | u32 global_irq_base; /* Global system interrupt where INTI lines start */ |
682 | }; | 682 | }; |
@@ -794,11 +794,11 @@ struct acpi_madt_generic_interrupt { | |||
794 | 794 | ||
795 | struct acpi_madt_generic_distributor { | 795 | struct acpi_madt_generic_distributor { |
796 | struct acpi_subtable_header header; | 796 | struct acpi_subtable_header header; |
797 | u16 reserved; /* Reserved - must be zero */ | 797 | u16 reserved; /* reserved - must be zero */ |
798 | u32 gic_id; | 798 | u32 gic_id; |
799 | u64 base_address; | 799 | u64 base_address; |
800 | u32 global_irq_base; | 800 | u32 global_irq_base; |
801 | u32 reserved2; /* Reserved - must be zero */ | 801 | u32 reserved2; /* reserved - must be zero */ |
802 | }; | 802 | }; |
803 | 803 | ||
804 | /* | 804 | /* |
@@ -841,7 +841,7 @@ struct acpi_table_msct { | |||
841 | u64 max_address; /* Max physical address in system */ | 841 | u64 max_address; /* Max physical address in system */ |
842 | }; | 842 | }; |
843 | 843 | ||
844 | /* Subtable - Maximum Proximity Domain Information. Version 1 */ | 844 | /* subtable - Maximum Proximity Domain Information. Version 1 */ |
845 | 845 | ||
846 | struct acpi_msct_proximity { | 846 | struct acpi_msct_proximity { |
847 | u8 revision; | 847 | u8 revision; |
diff --git a/include/acpi/actbl2.h b/include/acpi/actbl2.h index 58bdd0545c5a..d9ceb3d31629 100644 --- a/include/acpi/actbl2.h +++ b/include/acpi/actbl2.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
@@ -66,7 +66,7 @@ | |||
66 | #define ACPI_SIG_DBGP "DBGP" /* Debug Port table */ | 66 | #define ACPI_SIG_DBGP "DBGP" /* Debug Port table */ |
67 | #define ACPI_SIG_DMAR "DMAR" /* DMA Remapping table */ | 67 | #define ACPI_SIG_DMAR "DMAR" /* DMA Remapping table */ |
68 | #define ACPI_SIG_HPET "HPET" /* High Precision Event Timer table */ | 68 | #define ACPI_SIG_HPET "HPET" /* High Precision Event Timer table */ |
69 | #define ACPI_SIG_IBFT "IBFT" /* i_sCSI Boot Firmware Table */ | 69 | #define ACPI_SIG_IBFT "IBFT" /* iSCSI Boot Firmware Table */ |
70 | #define ACPI_SIG_IVRS "IVRS" /* I/O Virtualization Reporting Structure */ | 70 | #define ACPI_SIG_IVRS "IVRS" /* I/O Virtualization Reporting Structure */ |
71 | #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */ | 71 | #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */ |
72 | #define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */ | 72 | #define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */ |
@@ -334,8 +334,8 @@ struct acpi_dmar_reserved_memory { | |||
334 | struct acpi_dmar_header header; | 334 | struct acpi_dmar_header header; |
335 | u16 reserved; | 335 | u16 reserved; |
336 | u16 segment; | 336 | u16 segment; |
337 | u64 base_address; /* 4_k aligned base address */ | 337 | u64 base_address; /* 4K aligned base address */ |
338 | u64 end_address; /* 4_k aligned limit address */ | 338 | u64 end_address; /* 4K aligned limit address */ |
339 | }; | 339 | }; |
340 | 340 | ||
341 | /* Masks for Flags field above */ | 341 | /* Masks for Flags field above */ |
@@ -565,7 +565,7 @@ struct acpi_ivrs_hardware { | |||
565 | /* Masks for Info field above */ | 565 | /* Masks for Info field above */ |
566 | 566 | ||
567 | #define ACPI_IVHD_MSI_NUMBER_MASK 0x001F /* 5 bits, MSI message number */ | 567 | #define ACPI_IVHD_MSI_NUMBER_MASK 0x001F /* 5 bits, MSI message number */ |
568 | #define ACPI_IVHD_UNIT_ID_MASK 0x1F00 /* 5 bits, unit_iD */ | 568 | #define ACPI_IVHD_UNIT_ID_MASK 0x1F00 /* 5 bits, unit_ID */ |
569 | 569 | ||
570 | /* | 570 | /* |
571 | * Device Entries for IVHD subtable, appear after struct acpi_ivrs_hardware structure. | 571 | * Device Entries for IVHD subtable, appear after struct acpi_ivrs_hardware structure. |
diff --git a/include/acpi/actbl3.h b/include/acpi/actbl3.h index c22ce80e9535..f65a0ed869eb 100644 --- a/include/acpi/actbl3.h +++ b/include/acpi/actbl3.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index e8bcc4742e0e..3af87de6a68c 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
@@ -173,7 +173,7 @@ typedef u64 acpi_physical_address; | |||
173 | * to indicate that special precautions must be taken to avoid alignment faults. | 173 | * to indicate that special precautions must be taken to avoid alignment faults. |
174 | * (IA64 or ia64 is currently used by existing compilers to indicate IPF.) | 174 | * (IA64 or ia64 is currently used by existing compilers to indicate IPF.) |
175 | * | 175 | * |
176 | * Note: Em64_t and other X86-64 processors support misaligned transfers, | 176 | * Note: EM64T and other X86-64 processors support misaligned transfers, |
177 | * so there is no need to define this flag. | 177 | * so there is no need to define this flag. |
178 | */ | 178 | */ |
179 | #if defined (__IA64__) || defined (__ia64__) | 179 | #if defined (__IA64__) || defined (__ia64__) |
@@ -636,7 +636,7 @@ typedef u32 acpi_event_type; | |||
636 | #define ACPI_NUM_FIXED_EVENTS ACPI_EVENT_MAX + 1 | 636 | #define ACPI_NUM_FIXED_EVENTS ACPI_EVENT_MAX + 1 |
637 | 637 | ||
638 | /* | 638 | /* |
639 | * Event Status - Per event | 639 | * Event status - Per event |
640 | * ------------- | 640 | * ------------- |
641 | * The encoding of acpi_event_status is illustrated below. | 641 | * The encoding of acpi_event_status is illustrated below. |
642 | * Note that a set bit (1) indicates the property is TRUE | 642 | * Note that a set bit (1) indicates the property is TRUE |
@@ -706,10 +706,14 @@ typedef u32 acpi_event_status; | |||
706 | #define ACPI_DEVICE_NOTIFY 0x2 | 706 | #define ACPI_DEVICE_NOTIFY 0x2 |
707 | #define ACPI_ALL_NOTIFY (ACPI_SYSTEM_NOTIFY | ACPI_DEVICE_NOTIFY) | 707 | #define ACPI_ALL_NOTIFY (ACPI_SYSTEM_NOTIFY | ACPI_DEVICE_NOTIFY) |
708 | #define ACPI_MAX_NOTIFY_HANDLER_TYPE 0x3 | 708 | #define ACPI_MAX_NOTIFY_HANDLER_TYPE 0x3 |
709 | #define ACPI_NUM_NOTIFY_TYPES 2 | ||
709 | 710 | ||
710 | #define ACPI_MAX_SYS_NOTIFY 0x7F | 711 | #define ACPI_MAX_SYS_NOTIFY 0x7F |
711 | #define ACPI_MAX_DEVICE_SPECIFIC_NOTIFY 0xBF | 712 | #define ACPI_MAX_DEVICE_SPECIFIC_NOTIFY 0xBF |
712 | 713 | ||
714 | #define ACPI_SYSTEM_HANDLER_LIST 0 /* Used as index, must be SYSTEM_NOTIFY -1 */ | ||
715 | #define ACPI_DEVICE_HANDLER_LIST 1 /* Used as index, must be DEVICE_NOTIFY -1 */ | ||
716 | |||
713 | /* Address Space (Operation Region) Types */ | 717 | /* Address Space (Operation Region) Types */ |
714 | 718 | ||
715 | typedef u8 acpi_adr_space_type; | 719 | typedef u8 acpi_adr_space_type; |
@@ -724,8 +728,9 @@ typedef u8 acpi_adr_space_type; | |||
724 | #define ACPI_ADR_SPACE_IPMI (acpi_adr_space_type) 7 | 728 | #define ACPI_ADR_SPACE_IPMI (acpi_adr_space_type) 7 |
725 | #define ACPI_ADR_SPACE_GPIO (acpi_adr_space_type) 8 | 729 | #define ACPI_ADR_SPACE_GPIO (acpi_adr_space_type) 8 |
726 | #define ACPI_ADR_SPACE_GSBUS (acpi_adr_space_type) 9 | 730 | #define ACPI_ADR_SPACE_GSBUS (acpi_adr_space_type) 9 |
731 | #define ACPI_ADR_SPACE_PLATFORM_COMM (acpi_adr_space_type) 10 | ||
727 | 732 | ||
728 | #define ACPI_NUM_PREDEFINED_REGIONS 10 | 733 | #define ACPI_NUM_PREDEFINED_REGIONS 11 |
729 | 734 | ||
730 | /* | 735 | /* |
731 | * Special Address Spaces | 736 | * Special Address Spaces |
diff --git a/include/acpi/platform/acenv.h b/include/acpi/platform/acenv.h index 5af3ed52ef98..560a9f272f34 100644 --- a/include/acpi/platform/acenv.h +++ b/include/acpi/platform/acenv.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
diff --git a/include/acpi/platform/acgcc.h b/include/acpi/platform/acgcc.h index e228893591a9..72553b0c9f33 100644 --- a/include/acpi/platform/acgcc.h +++ b/include/acpi/platform/acgcc.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
diff --git a/include/acpi/platform/aclinux.h b/include/acpi/platform/aclinux.h index 6fbc4cab5834..7509be30ca01 100644 --- a/include/acpi/platform/aclinux.h +++ b/include/acpi/platform/aclinux.h | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
diff --git a/include/acpi/processor.h b/include/acpi/processor.h index 9d650476d5dc..64ec644808bc 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor.h | |||
@@ -59,10 +59,7 @@ struct acpi_processor_cx { | |||
59 | u8 entry_method; | 59 | u8 entry_method; |
60 | u8 index; | 60 | u8 index; |
61 | u32 latency; | 61 | u32 latency; |
62 | u32 latency_ticks; | ||
63 | u32 power; | 62 | u32 power; |
64 | u32 usage; | ||
65 | u64 time; | ||
66 | u8 bm_sts_skip; | 63 | u8 bm_sts_skip; |
67 | char desc[ACPI_CX_DESC_LEN]; | 64 | char desc[ACPI_CX_DESC_LEN]; |
68 | }; | 65 | }; |
@@ -334,8 +331,8 @@ int acpi_processor_cst_has_changed(struct acpi_processor *pr); | |||
334 | int acpi_processor_hotplug(struct acpi_processor *pr); | 331 | int acpi_processor_hotplug(struct acpi_processor *pr); |
335 | int acpi_processor_power_exit(struct acpi_processor *pr, | 332 | int acpi_processor_power_exit(struct acpi_processor *pr, |
336 | struct acpi_device *device); | 333 | struct acpi_device *device); |
337 | int acpi_processor_suspend(struct acpi_device * device, pm_message_t state); | 334 | int acpi_processor_suspend(struct device *dev); |
338 | int acpi_processor_resume(struct acpi_device * device); | 335 | int acpi_processor_resume(struct device *dev); |
339 | extern struct cpuidle_driver acpi_idle_driver; | 336 | extern struct cpuidle_driver acpi_idle_driver; |
340 | 337 | ||
341 | /* in processor_thermal.c */ | 338 | /* in processor_thermal.c */ |
diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h index 506ec19a3736..7d10f962aa13 100644 --- a/include/asm-generic/bug.h +++ b/include/asm-generic/bug.h | |||
@@ -3,10 +3,18 @@ | |||
3 | 3 | ||
4 | #include <linux/compiler.h> | 4 | #include <linux/compiler.h> |
5 | 5 | ||
6 | #ifdef CONFIG_GENERIC_BUG | ||
7 | #define BUGFLAG_WARNING (1 << 0) | ||
8 | #define BUGFLAG_TAINT(taint) (BUGFLAG_WARNING | ((taint) << 8)) | ||
9 | #define BUG_GET_TAINT(bug) ((bug)->flags >> 8) | ||
10 | #endif | ||
11 | |||
12 | #ifndef __ASSEMBLY__ | ||
13 | #include <linux/kernel.h> | ||
14 | |||
6 | #ifdef CONFIG_BUG | 15 | #ifdef CONFIG_BUG |
7 | 16 | ||
8 | #ifdef CONFIG_GENERIC_BUG | 17 | #ifdef CONFIG_GENERIC_BUG |
9 | #ifndef __ASSEMBLY__ | ||
10 | struct bug_entry { | 18 | struct bug_entry { |
11 | #ifndef CONFIG_GENERIC_BUG_RELATIVE_POINTERS | 19 | #ifndef CONFIG_GENERIC_BUG_RELATIVE_POINTERS |
12 | unsigned long bug_addr; | 20 | unsigned long bug_addr; |
@@ -23,17 +31,8 @@ struct bug_entry { | |||
23 | #endif | 31 | #endif |
24 | unsigned short flags; | 32 | unsigned short flags; |
25 | }; | 33 | }; |
26 | #endif /* __ASSEMBLY__ */ | ||
27 | |||
28 | #define BUGFLAG_WARNING (1 << 0) | ||
29 | #define BUGFLAG_TAINT(taint) (BUGFLAG_WARNING | ((taint) << 8)) | ||
30 | #define BUG_GET_TAINT(bug) ((bug)->flags >> 8) | ||
31 | |||
32 | #endif /* CONFIG_GENERIC_BUG */ | 34 | #endif /* CONFIG_GENERIC_BUG */ |
33 | 35 | ||
34 | #ifndef __ASSEMBLY__ | ||
35 | #include <linux/kernel.h> | ||
36 | |||
37 | /* | 36 | /* |
38 | * Don't use BUG() or BUG_ON() unless there's really no way out; one | 37 | * Don't use BUG() or BUG_ON() unless there's really no way out; one |
39 | * example might be detecting data structure corruption in the middle | 38 | * example might be detecting data structure corruption in the middle |
diff --git a/include/asm-generic/dma-coherent.h b/include/asm-generic/dma-coherent.h index abfb2682de7f..2be8a2dbc868 100644 --- a/include/asm-generic/dma-coherent.h +++ b/include/asm-generic/dma-coherent.h | |||
@@ -29,6 +29,7 @@ dma_mark_declared_memory_occupied(struct device *dev, | |||
29 | #else | 29 | #else |
30 | #define dma_alloc_from_coherent(dev, size, handle, ret) (0) | 30 | #define dma_alloc_from_coherent(dev, size, handle, ret) (0) |
31 | #define dma_release_from_coherent(dev, order, vaddr) (0) | 31 | #define dma_release_from_coherent(dev, order, vaddr) (0) |
32 | #define dma_mmap_from_coherent(dev, vma, vaddr, order, ret) (0) | ||
32 | #endif | 33 | #endif |
33 | 34 | ||
34 | #endif | 35 | #endif |
diff --git a/include/asm-generic/dma-contiguous.h b/include/asm-generic/dma-contiguous.h index c544356b374b..294b1e755ab2 100644 --- a/include/asm-generic/dma-contiguous.h +++ b/include/asm-generic/dma-contiguous.h | |||
@@ -18,7 +18,7 @@ static inline void dev_set_cma_area(struct device *dev, struct cma *cma) | |||
18 | { | 18 | { |
19 | if (dev) | 19 | if (dev) |
20 | dev->cma_area = cma; | 20 | dev->cma_area = cma; |
21 | if (!dev || !dma_contiguous_default_area) | 21 | if (!dev && !dma_contiguous_default_area) |
22 | dma_contiguous_default_area = cma; | 22 | dma_contiguous_default_area = cma; |
23 | } | 23 | } |
24 | 24 | ||
diff --git a/include/asm-generic/dma-mapping-common.h b/include/asm-generic/dma-mapping-common.h index 2e248d8924dc..de8bf89940f8 100644 --- a/include/asm-generic/dma-mapping-common.h +++ b/include/asm-generic/dma-mapping-common.h | |||
@@ -176,4 +176,59 @@ dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, | |||
176 | #define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, NULL) | 176 | #define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, NULL) |
177 | #define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, NULL) | 177 | #define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, NULL) |
178 | 178 | ||
179 | extern int dma_common_mmap(struct device *dev, struct vm_area_struct *vma, | ||
180 | void *cpu_addr, dma_addr_t dma_addr, size_t size); | ||
181 | |||
182 | /** | ||
183 | * dma_mmap_attrs - map a coherent DMA allocation into user space | ||
184 | * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices | ||
185 | * @vma: vm_area_struct describing requested user mapping | ||
186 | * @cpu_addr: kernel CPU-view address returned from dma_alloc_attrs | ||
187 | * @handle: device-view address returned from dma_alloc_attrs | ||
188 | * @size: size of memory originally requested in dma_alloc_attrs | ||
189 | * @attrs: attributes of mapping properties requested in dma_alloc_attrs | ||
190 | * | ||
191 | * Map a coherent DMA buffer previously allocated by dma_alloc_attrs | ||
192 | * into user space. The coherent DMA buffer must not be freed by the | ||
193 | * driver until the user space mapping has been released. | ||
194 | */ | ||
195 | static inline int | ||
196 | dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma, void *cpu_addr, | ||
197 | dma_addr_t dma_addr, size_t size, struct dma_attrs *attrs) | ||
198 | { | ||
199 | struct dma_map_ops *ops = get_dma_ops(dev); | ||
200 | BUG_ON(!ops); | ||
201 | if (ops->mmap) | ||
202 | return ops->mmap(dev, vma, cpu_addr, dma_addr, size, attrs); | ||
203 | return dma_common_mmap(dev, vma, cpu_addr, dma_addr, size); | ||
204 | } | ||
205 | |||
206 | #define dma_mmap_coherent(d, v, c, h, s) dma_mmap_attrs(d, v, c, h, s, NULL) | ||
207 | |||
208 | static inline int dma_mmap_writecombine(struct device *dev, struct vm_area_struct *vma, | ||
209 | void *cpu_addr, dma_addr_t dma_addr, size_t size) | ||
210 | { | ||
211 | DEFINE_DMA_ATTRS(attrs); | ||
212 | dma_set_attr(DMA_ATTR_WRITE_COMBINE, &attrs); | ||
213 | return dma_mmap_attrs(dev, vma, cpu_addr, dma_addr, size, &attrs); | ||
214 | } | ||
215 | |||
216 | int | ||
217 | dma_common_get_sgtable(struct device *dev, struct sg_table *sgt, | ||
218 | void *cpu_addr, dma_addr_t dma_addr, size_t size); | ||
219 | |||
220 | static inline int | ||
221 | dma_get_sgtable_attrs(struct device *dev, struct sg_table *sgt, void *cpu_addr, | ||
222 | dma_addr_t dma_addr, size_t size, struct dma_attrs *attrs) | ||
223 | { | ||
224 | struct dma_map_ops *ops = get_dma_ops(dev); | ||
225 | BUG_ON(!ops); | ||
226 | if (ops->get_sgtable) | ||
227 | return ops->get_sgtable(dev, sgt, cpu_addr, dma_addr, size, | ||
228 | attrs); | ||
229 | return dma_common_get_sgtable(dev, sgt, cpu_addr, dma_addr, size); | ||
230 | } | ||
231 | |||
232 | #define dma_get_sgtable(d, t, v, h, s) dma_get_sgtable_attrs(d, t, v, h, s, NULL) | ||
233 | |||
179 | #endif | 234 | #endif |
diff --git a/include/asm-generic/fcntl.h b/include/asm-generic/fcntl.h index 9e5b0356e2bb..a48937d4a5ea 100644 --- a/include/asm-generic/fcntl.h +++ b/include/asm-generic/fcntl.h | |||
@@ -120,6 +120,10 @@ | |||
120 | #define F_GETOWN_EX 16 | 120 | #define F_GETOWN_EX 16 |
121 | #endif | 121 | #endif |
122 | 122 | ||
123 | #ifndef F_GETOWNER_UIDS | ||
124 | #define F_GETOWNER_UIDS 17 | ||
125 | #endif | ||
126 | |||
123 | #define F_OWNER_TID 0 | 127 | #define F_OWNER_TID 0 |
124 | #define F_OWNER_PID 1 | 128 | #define F_OWNER_PID 1 |
125 | #define F_OWNER_PGRP 2 | 129 | #define F_OWNER_PGRP 2 |
diff --git a/include/asm-generic/kmap_types.h b/include/asm-generic/kmap_types.h index 0232ccb76f2b..90f99c74dd38 100644 --- a/include/asm-generic/kmap_types.h +++ b/include/asm-generic/kmap_types.h | |||
@@ -2,39 +2,9 @@ | |||
2 | #define _ASM_GENERIC_KMAP_TYPES_H | 2 | #define _ASM_GENERIC_KMAP_TYPES_H |
3 | 3 | ||
4 | #ifdef __WITH_KM_FENCE | 4 | #ifdef __WITH_KM_FENCE |
5 | # define KMAP_D(n) __KM_FENCE_##n , | 5 | # define KM_TYPE_NR 41 |
6 | #else | 6 | #else |
7 | # define KMAP_D(n) | 7 | # define KM_TYPE_NR 20 |
8 | #endif | 8 | #endif |
9 | 9 | ||
10 | enum km_type { | ||
11 | KMAP_D(0) KM_BOUNCE_READ, | ||
12 | KMAP_D(1) KM_SKB_SUNRPC_DATA, | ||
13 | KMAP_D(2) KM_SKB_DATA_SOFTIRQ, | ||
14 | KMAP_D(3) KM_USER0, | ||
15 | KMAP_D(4) KM_USER1, | ||
16 | KMAP_D(5) KM_BIO_SRC_IRQ, | ||
17 | KMAP_D(6) KM_BIO_DST_IRQ, | ||
18 | KMAP_D(7) KM_PTE0, | ||
19 | KMAP_D(8) KM_PTE1, | ||
20 | KMAP_D(9) KM_IRQ0, | ||
21 | KMAP_D(10) KM_IRQ1, | ||
22 | KMAP_D(11) KM_SOFTIRQ0, | ||
23 | KMAP_D(12) KM_SOFTIRQ1, | ||
24 | KMAP_D(13) KM_SYNC_ICACHE, | ||
25 | KMAP_D(14) KM_SYNC_DCACHE, | ||
26 | /* UML specific, for copy_*_user - used in do_op_one_page */ | ||
27 | KMAP_D(15) KM_UML_USERCOPY, | ||
28 | KMAP_D(16) KM_IRQ_PTE, | ||
29 | KMAP_D(17) KM_NMI, | ||
30 | KMAP_D(18) KM_NMI_PTE, | ||
31 | KMAP_D(19) KM_KDB, | ||
32 | /* | ||
33 | * Remember to update debug_kmap_atomic() when adding new kmap types! | ||
34 | */ | ||
35 | KMAP_D(20) KM_TYPE_NR | ||
36 | }; | ||
37 | |||
38 | #undef KMAP_D | ||
39 | |||
40 | #endif | 10 | #endif |
diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h index 6f2b45a9b6bc..ff4947b7a976 100644 --- a/include/asm-generic/pgtable.h +++ b/include/asm-generic/pgtable.h | |||
@@ -484,6 +484,16 @@ static inline int pmd_none_or_trans_huge_or_clear_bad(pmd_t *pmd) | |||
484 | /* | 484 | /* |
485 | * The barrier will stabilize the pmdval in a register or on | 485 | * The barrier will stabilize the pmdval in a register or on |
486 | * the stack so that it will stop changing under the code. | 486 | * the stack so that it will stop changing under the code. |
487 | * | ||
488 | * When CONFIG_TRANSPARENT_HUGEPAGE=y on x86 32bit PAE, | ||
489 | * pmd_read_atomic is allowed to return a not atomic pmdval | ||
490 | * (for example pointing to an hugepage that has never been | ||
491 | * mapped in the pmd). The below checks will only care about | ||
492 | * the low part of the pmd with 32bit PAE x86 anyway, with the | ||
493 | * exception of pmd_none(). So the important thing is that if | ||
494 | * the low part of the pmd is found null, the high part will | ||
495 | * be also null or the pmd_none() check below would be | ||
496 | * confused. | ||
487 | */ | 497 | */ |
488 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE | 498 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
489 | barrier(); | 499 | barrier(); |
diff --git a/include/asm-generic/sizes.h b/include/asm-generic/sizes.h index ea5d4ef81061..1dcfad9629ef 100644 --- a/include/asm-generic/sizes.h +++ b/include/asm-generic/sizes.h | |||
@@ -1,47 +1,2 @@ | |||
1 | /* | 1 | /* This is a placeholder, to be removed over time */ |
2 | * linux/include/asm-generic/sizes.h | 2 | #include <linux/sizes.h> |
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 | #ifndef __ASM_GENERIC_SIZES_H__ | ||
9 | #define __ASM_GENERIC_SIZES_H__ | ||
10 | |||
11 | #define SZ_1 0x00000001 | ||
12 | #define SZ_2 0x00000002 | ||
13 | #define SZ_4 0x00000004 | ||
14 | #define SZ_8 0x00000008 | ||
15 | #define SZ_16 0x00000010 | ||
16 | #define SZ_32 0x00000020 | ||
17 | #define SZ_64 0x00000040 | ||
18 | #define SZ_128 0x00000080 | ||
19 | #define SZ_256 0x00000100 | ||
20 | #define SZ_512 0x00000200 | ||
21 | |||
22 | #define SZ_1K 0x00000400 | ||
23 | #define SZ_2K 0x00000800 | ||
24 | #define SZ_4K 0x00001000 | ||
25 | #define SZ_8K 0x00002000 | ||
26 | #define SZ_16K 0x00004000 | ||
27 | #define SZ_32K 0x00008000 | ||
28 | #define SZ_64K 0x00010000 | ||
29 | #define SZ_128K 0x00020000 | ||
30 | #define SZ_256K 0x00040000 | ||
31 | #define SZ_512K 0x00080000 | ||
32 | |||
33 | #define SZ_1M 0x00100000 | ||
34 | #define SZ_2M 0x00200000 | ||
35 | #define SZ_4M 0x00400000 | ||
36 | #define SZ_8M 0x00800000 | ||
37 | #define SZ_16M 0x01000000 | ||
38 | #define SZ_32M 0x02000000 | ||
39 | #define SZ_64M 0x04000000 | ||
40 | #define SZ_128M 0x08000000 | ||
41 | #define SZ_256M 0x10000000 | ||
42 | #define SZ_512M 0x20000000 | ||
43 | |||
44 | #define SZ_1G 0x40000000 | ||
45 | #define SZ_2G 0x80000000 | ||
46 | |||
47 | #endif /* __ASM_GENERIC_SIZES_H__ */ | ||
diff --git a/include/asm-generic/tlb.h b/include/asm-generic/tlb.h index f96a5b58a975..ed6642ad03e0 100644 --- a/include/asm-generic/tlb.h +++ b/include/asm-generic/tlb.h | |||
@@ -86,6 +86,8 @@ struct mmu_gather { | |||
86 | #ifdef CONFIG_HAVE_RCU_TABLE_FREE | 86 | #ifdef CONFIG_HAVE_RCU_TABLE_FREE |
87 | struct mmu_table_batch *batch; | 87 | struct mmu_table_batch *batch; |
88 | #endif | 88 | #endif |
89 | unsigned long start; | ||
90 | unsigned long end; | ||
89 | unsigned int need_flush : 1, /* Did free PTEs */ | 91 | unsigned int need_flush : 1, /* Did free PTEs */ |
90 | fast_mode : 1; /* No batching */ | 92 | fast_mode : 1; /* No batching */ |
91 | 93 | ||
@@ -113,7 +115,8 @@ static inline int tlb_fast_mode(struct mmu_gather *tlb) | |||
113 | 115 | ||
114 | void tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm, bool fullmm); | 116 | void tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm, bool fullmm); |
115 | void tlb_flush_mmu(struct mmu_gather *tlb); | 117 | void tlb_flush_mmu(struct mmu_gather *tlb); |
116 | void tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end); | 118 | void tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, |
119 | unsigned long end); | ||
117 | int __tlb_remove_page(struct mmu_gather *tlb, struct page *page); | 120 | int __tlb_remove_page(struct mmu_gather *tlb, struct page *page); |
118 | 121 | ||
119 | /* tlb_remove_page | 122 | /* tlb_remove_page |
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 31ad880ca2ef..d6b67bb9075f 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h | |||
@@ -348,7 +348,6 @@ struct drm_buf { | |||
348 | struct drm_buf *next; /**< Kernel-only: used for free list */ | 348 | struct drm_buf *next; /**< Kernel-only: used for free list */ |
349 | __volatile__ int waiting; /**< On kernel DMA queue */ | 349 | __volatile__ int waiting; /**< On kernel DMA queue */ |
350 | __volatile__ int pending; /**< On hardware DMA queue */ | 350 | __volatile__ int pending; /**< On hardware DMA queue */ |
351 | wait_queue_head_t dma_wait; /**< Processes waiting */ | ||
352 | struct drm_file *file_priv; /**< Private of holding file descr */ | 351 | struct drm_file *file_priv; /**< Private of holding file descr */ |
353 | int context; /**< Kernel queue for this buffer */ | 352 | int context; /**< Kernel queue for this buffer */ |
354 | int while_locked; /**< Dispatch this buffer while locked */ | 353 | int while_locked; /**< Dispatch this buffer while locked */ |
@@ -876,12 +875,6 @@ struct drm_driver { | |||
876 | void (*irq_preinstall) (struct drm_device *dev); | 875 | void (*irq_preinstall) (struct drm_device *dev); |
877 | int (*irq_postinstall) (struct drm_device *dev); | 876 | int (*irq_postinstall) (struct drm_device *dev); |
878 | void (*irq_uninstall) (struct drm_device *dev); | 877 | void (*irq_uninstall) (struct drm_device *dev); |
879 | void (*reclaim_buffers) (struct drm_device *dev, | ||
880 | struct drm_file * file_priv); | ||
881 | void (*reclaim_buffers_locked) (struct drm_device *dev, | ||
882 | struct drm_file *file_priv); | ||
883 | void (*reclaim_buffers_idlelocked) (struct drm_device *dev, | ||
884 | struct drm_file *file_priv); | ||
885 | void (*set_version) (struct drm_device *dev, | 878 | void (*set_version) (struct drm_device *dev, |
886 | struct drm_set_version *sv); | 879 | struct drm_set_version *sv); |
887 | 880 | ||
@@ -1108,12 +1101,8 @@ struct drm_device { | |||
1108 | 1101 | ||
1109 | /*@} */ | 1102 | /*@} */ |
1110 | 1103 | ||
1111 | /** \name DMA queues (contexts) */ | 1104 | /** \name DMA support */ |
1112 | /*@{ */ | 1105 | /*@{ */ |
1113 | int queue_count; /**< Number of active DMA queues */ | ||
1114 | int queue_reserved; /**< Number of reserved DMA queues */ | ||
1115 | int queue_slots; /**< Actual length of queuelist */ | ||
1116 | struct drm_queue **queuelist; /**< Vector of pointers to DMA queues */ | ||
1117 | struct drm_device_dma *dma; /**< Optional pointer for DMA support */ | 1106 | struct drm_device_dma *dma; /**< Optional pointer for DMA support */ |
1118 | /*@} */ | 1107 | /*@} */ |
1119 | 1108 | ||
@@ -1540,7 +1529,6 @@ extern int drm_debugfs_cleanup(struct drm_minor *minor); | |||
1540 | /* Info file support */ | 1529 | /* Info file support */ |
1541 | extern int drm_name_info(struct seq_file *m, void *data); | 1530 | extern int drm_name_info(struct seq_file *m, void *data); |
1542 | extern int drm_vm_info(struct seq_file *m, void *data); | 1531 | extern int drm_vm_info(struct seq_file *m, void *data); |
1543 | extern int drm_queues_info(struct seq_file *m, void *data); | ||
1544 | extern int drm_bufs_info(struct seq_file *m, void *data); | 1532 | extern int drm_bufs_info(struct seq_file *m, void *data); |
1545 | extern int drm_vblank_info(struct seq_file *m, void *data); | 1533 | extern int drm_vblank_info(struct seq_file *m, void *data); |
1546 | extern int drm_clients_info(struct seq_file *m, void* data); | 1534 | extern int drm_clients_info(struct seq_file *m, void* data); |
@@ -1761,6 +1749,11 @@ extern int drm_get_pci_dev(struct pci_dev *pdev, | |||
1761 | const struct pci_device_id *ent, | 1749 | const struct pci_device_id *ent, |
1762 | struct drm_driver *driver); | 1750 | struct drm_driver *driver); |
1763 | 1751 | ||
1752 | #define DRM_PCIE_SPEED_25 1 | ||
1753 | #define DRM_PCIE_SPEED_50 2 | ||
1754 | #define DRM_PCIE_SPEED_80 4 | ||
1755 | |||
1756 | extern int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *speed_mask); | ||
1764 | 1757 | ||
1765 | /* platform section */ | 1758 | /* platform section */ |
1766 | extern int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device); | 1759 | extern int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device); |
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index bac55c215113..a1a0386e0160 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
@@ -676,8 +676,6 @@ struct drm_plane { | |||
676 | * This is used to set modes. | 676 | * This is used to set modes. |
677 | */ | 677 | */ |
678 | struct drm_mode_set { | 678 | struct drm_mode_set { |
679 | struct list_head head; | ||
680 | |||
681 | struct drm_framebuffer *fb; | 679 | struct drm_framebuffer *fb; |
682 | struct drm_crtc *crtc; | 680 | struct drm_crtc *crtc; |
683 | struct drm_display_mode *mode; | 681 | struct drm_display_mode *mode; |
diff --git a/include/drm/drm_crtc_helper.h b/include/drm/drm_crtc_helper.h index 7988e55c98d0..e01cc80c9c30 100644 --- a/include/drm/drm_crtc_helper.h +++ b/include/drm/drm_crtc_helper.h | |||
@@ -62,7 +62,7 @@ struct drm_crtc_helper_funcs { | |||
62 | 62 | ||
63 | /* Provider can fixup or change mode timings before modeset occurs */ | 63 | /* Provider can fixup or change mode timings before modeset occurs */ |
64 | bool (*mode_fixup)(struct drm_crtc *crtc, | 64 | bool (*mode_fixup)(struct drm_crtc *crtc, |
65 | struct drm_display_mode *mode, | 65 | const struct drm_display_mode *mode, |
66 | struct drm_display_mode *adjusted_mode); | 66 | struct drm_display_mode *adjusted_mode); |
67 | /* Actually set the mode */ | 67 | /* Actually set the mode */ |
68 | int (*mode_set)(struct drm_crtc *crtc, struct drm_display_mode *mode, | 68 | int (*mode_set)(struct drm_crtc *crtc, struct drm_display_mode *mode, |
@@ -96,7 +96,7 @@ struct drm_encoder_helper_funcs { | |||
96 | void (*restore)(struct drm_encoder *encoder); | 96 | void (*restore)(struct drm_encoder *encoder); |
97 | 97 | ||
98 | bool (*mode_fixup)(struct drm_encoder *encoder, | 98 | bool (*mode_fixup)(struct drm_encoder *encoder, |
99 | struct drm_display_mode *mode, | 99 | const struct drm_display_mode *mode, |
100 | struct drm_display_mode *adjusted_mode); | 100 | struct drm_display_mode *adjusted_mode); |
101 | void (*prepare)(struct drm_encoder *encoder); | 101 | void (*prepare)(struct drm_encoder *encoder); |
102 | void (*commit)(struct drm_encoder *encoder); | 102 | void (*commit)(struct drm_encoder *encoder); |
diff --git a/include/drm/drm_encoder_slave.h b/include/drm/drm_encoder_slave.h index 2f65633d28a7..7dc385233805 100644 --- a/include/drm/drm_encoder_slave.h +++ b/include/drm/drm_encoder_slave.h | |||
@@ -54,7 +54,7 @@ struct drm_encoder_slave_funcs { | |||
54 | void (*save)(struct drm_encoder *encoder); | 54 | void (*save)(struct drm_encoder *encoder); |
55 | void (*restore)(struct drm_encoder *encoder); | 55 | void (*restore)(struct drm_encoder *encoder); |
56 | bool (*mode_fixup)(struct drm_encoder *encoder, | 56 | bool (*mode_fixup)(struct drm_encoder *encoder, |
57 | struct drm_display_mode *mode, | 57 | const struct drm_display_mode *mode, |
58 | struct drm_display_mode *adjusted_mode); | 58 | struct drm_display_mode *adjusted_mode); |
59 | int (*mode_valid)(struct drm_encoder *encoder, | 59 | int (*mode_valid)(struct drm_encoder *encoder, |
60 | struct drm_display_mode *mode); | 60 | struct drm_display_mode *mode); |
diff --git a/include/drm/drm_mm.h b/include/drm/drm_mm.h index 564b14aa7e16..06d7f798a08c 100644 --- a/include/drm/drm_mm.h +++ b/include/drm/drm_mm.h | |||
@@ -50,6 +50,7 @@ struct drm_mm_node { | |||
50 | unsigned scanned_next_free : 1; | 50 | unsigned scanned_next_free : 1; |
51 | unsigned scanned_preceeds_hole : 1; | 51 | unsigned scanned_preceeds_hole : 1; |
52 | unsigned allocated : 1; | 52 | unsigned allocated : 1; |
53 | unsigned long color; | ||
53 | unsigned long start; | 54 | unsigned long start; |
54 | unsigned long size; | 55 | unsigned long size; |
55 | struct drm_mm *mm; | 56 | struct drm_mm *mm; |
@@ -66,6 +67,7 @@ struct drm_mm { | |||
66 | spinlock_t unused_lock; | 67 | spinlock_t unused_lock; |
67 | unsigned int scan_check_range : 1; | 68 | unsigned int scan_check_range : 1; |
68 | unsigned scan_alignment; | 69 | unsigned scan_alignment; |
70 | unsigned long scan_color; | ||
69 | unsigned long scan_size; | 71 | unsigned long scan_size; |
70 | unsigned long scan_hit_start; | 72 | unsigned long scan_hit_start; |
71 | unsigned scan_hit_size; | 73 | unsigned scan_hit_size; |
@@ -73,6 +75,9 @@ struct drm_mm { | |||
73 | unsigned long scan_start; | 75 | unsigned long scan_start; |
74 | unsigned long scan_end; | 76 | unsigned long scan_end; |
75 | struct drm_mm_node *prev_scanned_node; | 77 | struct drm_mm_node *prev_scanned_node; |
78 | |||
79 | void (*color_adjust)(struct drm_mm_node *node, unsigned long color, | ||
80 | unsigned long *start, unsigned long *end); | ||
76 | }; | 81 | }; |
77 | 82 | ||
78 | static inline bool drm_mm_node_allocated(struct drm_mm_node *node) | 83 | static inline bool drm_mm_node_allocated(struct drm_mm_node *node) |
@@ -100,11 +105,13 @@ static inline bool drm_mm_initialized(struct drm_mm *mm) | |||
100 | extern struct drm_mm_node *drm_mm_get_block_generic(struct drm_mm_node *node, | 105 | extern struct drm_mm_node *drm_mm_get_block_generic(struct drm_mm_node *node, |
101 | unsigned long size, | 106 | unsigned long size, |
102 | unsigned alignment, | 107 | unsigned alignment, |
108 | unsigned long color, | ||
103 | int atomic); | 109 | int atomic); |
104 | extern struct drm_mm_node *drm_mm_get_block_range_generic( | 110 | extern struct drm_mm_node *drm_mm_get_block_range_generic( |
105 | struct drm_mm_node *node, | 111 | struct drm_mm_node *node, |
106 | unsigned long size, | 112 | unsigned long size, |
107 | unsigned alignment, | 113 | unsigned alignment, |
114 | unsigned long color, | ||
108 | unsigned long start, | 115 | unsigned long start, |
109 | unsigned long end, | 116 | unsigned long end, |
110 | int atomic); | 117 | int atomic); |
@@ -112,13 +119,13 @@ static inline struct drm_mm_node *drm_mm_get_block(struct drm_mm_node *parent, | |||
112 | unsigned long size, | 119 | unsigned long size, |
113 | unsigned alignment) | 120 | unsigned alignment) |
114 | { | 121 | { |
115 | return drm_mm_get_block_generic(parent, size, alignment, 0); | 122 | return drm_mm_get_block_generic(parent, size, alignment, 0, 0); |
116 | } | 123 | } |
117 | static inline struct drm_mm_node *drm_mm_get_block_atomic(struct drm_mm_node *parent, | 124 | static inline struct drm_mm_node *drm_mm_get_block_atomic(struct drm_mm_node *parent, |
118 | unsigned long size, | 125 | unsigned long size, |
119 | unsigned alignment) | 126 | unsigned alignment) |
120 | { | 127 | { |
121 | return drm_mm_get_block_generic(parent, size, alignment, 1); | 128 | return drm_mm_get_block_generic(parent, size, alignment, 0, 1); |
122 | } | 129 | } |
123 | static inline struct drm_mm_node *drm_mm_get_block_range( | 130 | static inline struct drm_mm_node *drm_mm_get_block_range( |
124 | struct drm_mm_node *parent, | 131 | struct drm_mm_node *parent, |
@@ -127,8 +134,19 @@ static inline struct drm_mm_node *drm_mm_get_block_range( | |||
127 | unsigned long start, | 134 | unsigned long start, |
128 | unsigned long end) | 135 | unsigned long end) |
129 | { | 136 | { |
130 | return drm_mm_get_block_range_generic(parent, size, alignment, | 137 | return drm_mm_get_block_range_generic(parent, size, alignment, 0, |
131 | start, end, 0); | 138 | start, end, 0); |
139 | } | ||
140 | static inline struct drm_mm_node *drm_mm_get_color_block_range( | ||
141 | struct drm_mm_node *parent, | ||
142 | unsigned long size, | ||
143 | unsigned alignment, | ||
144 | unsigned long color, | ||
145 | unsigned long start, | ||
146 | unsigned long end) | ||
147 | { | ||
148 | return drm_mm_get_block_range_generic(parent, size, alignment, color, | ||
149 | start, end, 0); | ||
132 | } | 150 | } |
133 | static inline struct drm_mm_node *drm_mm_get_block_atomic_range( | 151 | static inline struct drm_mm_node *drm_mm_get_block_atomic_range( |
134 | struct drm_mm_node *parent, | 152 | struct drm_mm_node *parent, |
@@ -137,7 +155,7 @@ static inline struct drm_mm_node *drm_mm_get_block_atomic_range( | |||
137 | unsigned long start, | 155 | unsigned long start, |
138 | unsigned long end) | 156 | unsigned long end) |
139 | { | 157 | { |
140 | return drm_mm_get_block_range_generic(parent, size, alignment, | 158 | return drm_mm_get_block_range_generic(parent, size, alignment, 0, |
141 | start, end, 1); | 159 | start, end, 1); |
142 | } | 160 | } |
143 | extern int drm_mm_insert_node(struct drm_mm *mm, struct drm_mm_node *node, | 161 | extern int drm_mm_insert_node(struct drm_mm *mm, struct drm_mm_node *node, |
@@ -149,18 +167,59 @@ extern int drm_mm_insert_node_in_range(struct drm_mm *mm, | |||
149 | extern void drm_mm_put_block(struct drm_mm_node *cur); | 167 | extern void drm_mm_put_block(struct drm_mm_node *cur); |
150 | extern void drm_mm_remove_node(struct drm_mm_node *node); | 168 | extern void drm_mm_remove_node(struct drm_mm_node *node); |
151 | extern void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new); | 169 | extern void drm_mm_replace_node(struct drm_mm_node *old, struct drm_mm_node *new); |
152 | extern struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm, | 170 | extern struct drm_mm_node *drm_mm_search_free_generic(const struct drm_mm *mm, |
153 | unsigned long size, | 171 | unsigned long size, |
154 | unsigned alignment, | 172 | unsigned alignment, |
155 | int best_match); | 173 | unsigned long color, |
156 | extern struct drm_mm_node *drm_mm_search_free_in_range( | 174 | bool best_match); |
175 | extern struct drm_mm_node *drm_mm_search_free_in_range_generic( | ||
176 | const struct drm_mm *mm, | ||
177 | unsigned long size, | ||
178 | unsigned alignment, | ||
179 | unsigned long color, | ||
180 | unsigned long start, | ||
181 | unsigned long end, | ||
182 | bool best_match); | ||
183 | static inline struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm, | ||
184 | unsigned long size, | ||
185 | unsigned alignment, | ||
186 | bool best_match) | ||
187 | { | ||
188 | return drm_mm_search_free_generic(mm,size, alignment, 0, best_match); | ||
189 | } | ||
190 | static inline struct drm_mm_node *drm_mm_search_free_in_range( | ||
157 | const struct drm_mm *mm, | 191 | const struct drm_mm *mm, |
158 | unsigned long size, | 192 | unsigned long size, |
159 | unsigned alignment, | 193 | unsigned alignment, |
160 | unsigned long start, | 194 | unsigned long start, |
161 | unsigned long end, | 195 | unsigned long end, |
162 | int best_match); | 196 | bool best_match) |
163 | extern int drm_mm_init(struct drm_mm *mm, unsigned long start, | 197 | { |
198 | return drm_mm_search_free_in_range_generic(mm, size, alignment, 0, | ||
199 | start, end, best_match); | ||
200 | } | ||
201 | static inline struct drm_mm_node *drm_mm_search_free_color(const struct drm_mm *mm, | ||
202 | unsigned long size, | ||
203 | unsigned alignment, | ||
204 | unsigned long color, | ||
205 | bool best_match) | ||
206 | { | ||
207 | return drm_mm_search_free_generic(mm,size, alignment, color, best_match); | ||
208 | } | ||
209 | static inline struct drm_mm_node *drm_mm_search_free_in_range_color( | ||
210 | const struct drm_mm *mm, | ||
211 | unsigned long size, | ||
212 | unsigned alignment, | ||
213 | unsigned long color, | ||
214 | unsigned long start, | ||
215 | unsigned long end, | ||
216 | bool best_match) | ||
217 | { | ||
218 | return drm_mm_search_free_in_range_generic(mm, size, alignment, color, | ||
219 | start, end, best_match); | ||
220 | } | ||
221 | extern int drm_mm_init(struct drm_mm *mm, | ||
222 | unsigned long start, | ||
164 | unsigned long size); | 223 | unsigned long size); |
165 | extern void drm_mm_takedown(struct drm_mm *mm); | 224 | extern void drm_mm_takedown(struct drm_mm *mm); |
166 | extern int drm_mm_clean(struct drm_mm *mm); | 225 | extern int drm_mm_clean(struct drm_mm *mm); |
@@ -171,10 +230,14 @@ static inline struct drm_mm *drm_get_mm(struct drm_mm_node *block) | |||
171 | return block->mm; | 230 | return block->mm; |
172 | } | 231 | } |
173 | 232 | ||
174 | void drm_mm_init_scan(struct drm_mm *mm, unsigned long size, | 233 | void drm_mm_init_scan(struct drm_mm *mm, |
175 | unsigned alignment); | 234 | unsigned long size, |
176 | void drm_mm_init_scan_with_range(struct drm_mm *mm, unsigned long size, | 235 | unsigned alignment, |
236 | unsigned long color); | ||
237 | void drm_mm_init_scan_with_range(struct drm_mm *mm, | ||
238 | unsigned long size, | ||
177 | unsigned alignment, | 239 | unsigned alignment, |
240 | unsigned long color, | ||
178 | unsigned long start, | 241 | unsigned long start, |
179 | unsigned long end); | 242 | unsigned long end); |
180 | int drm_mm_scan_add_block(struct drm_mm_node *node); | 243 | int drm_mm_scan_add_block(struct drm_mm_node *node); |
diff --git a/include/drm/drm_pciids.h b/include/drm/drm_pciids.h index 81368ab6c611..7ff5c99b1638 100644 --- a/include/drm/drm_pciids.h +++ b/include/drm/drm_pciids.h | |||
@@ -1,7 +1,3 @@ | |||
1 | /* | ||
2 | This file is auto-generated from the drm_pciids.txt in the DRM CVS | ||
3 | Please contact dri-devel@lists.sf.net to add new cards to this list | ||
4 | */ | ||
5 | #define radeon_PCI_IDS \ | 1 | #define radeon_PCI_IDS \ |
6 | {0x1002, 0x3150, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV380|RADEON_IS_MOBILITY}, \ | 2 | {0x1002, 0x3150, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV380|RADEON_IS_MOBILITY}, \ |
7 | {0x1002, 0x3151, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV380|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | 3 | {0x1002, 0x3151, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV380|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ |
@@ -690,14 +686,6 @@ | |||
690 | {0x8086, 0x1132, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \ | 686 | {0x8086, 0x1132, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \ |
691 | {0, 0, 0} | 687 | {0, 0, 0} |
692 | 688 | ||
693 | #define i830_PCI_IDS \ | ||
694 | {0x8086, 0x3577, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \ | ||
695 | {0x8086, 0x2562, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \ | ||
696 | {0x8086, 0x3582, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \ | ||
697 | {0x8086, 0x2572, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \ | ||
698 | {0x8086, 0x358e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \ | ||
699 | {0, 0, 0} | ||
700 | |||
701 | #define gamma_PCI_IDS \ | 689 | #define gamma_PCI_IDS \ |
702 | {0x3d3d, 0x0008, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \ | 690 | {0x3d3d, 0x0008, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \ |
703 | {0, 0, 0} | 691 | {0, 0, 0} |
@@ -730,37 +718,3 @@ | |||
730 | 718 | ||
731 | #define ffb_PCI_IDS \ | 719 | #define ffb_PCI_IDS \ |
732 | {0, 0, 0} | 720 | {0, 0, 0} |
733 | |||
734 | #define i915_PCI_IDS \ | ||
735 | {0x8086, 0x3577, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
736 | {0x8086, 0x2562, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
737 | {0x8086, 0x3582, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
738 | {0x8086, 0x2572, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
739 | {0x8086, 0x2582, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
740 | {0x8086, 0x258a, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
741 | {0x8086, 0x2592, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
742 | {0x8086, 0x2772, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
743 | {0x8086, 0x27a2, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
744 | {0x8086, 0x27ae, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
745 | {0x8086, 0x2972, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
746 | {0x8086, 0x2982, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
747 | {0x8086, 0x2992, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
748 | {0x8086, 0x29a2, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
749 | {0x8086, 0x29b2, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
750 | {0x8086, 0x29c2, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
751 | {0x8086, 0x29d2, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
752 | {0x8086, 0x2a02, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
753 | {0x8086, 0x2a12, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
754 | {0x8086, 0x2a42, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
755 | {0x8086, 0x2e02, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
756 | {0x8086, 0x2e12, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
757 | {0x8086, 0x2e22, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
758 | {0x8086, 0x2e32, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
759 | {0x8086, 0x2e42, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
760 | {0x8086, 0xa001, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
761 | {0x8086, 0xa011, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
762 | {0x8086, 0x35e8, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
763 | {0x8086, 0x0042, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
764 | {0x8086, 0x0046, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
765 | {0x8086, 0x0102, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
766 | {0, 0, 0} | ||
diff --git a/include/drm/exynos_drm.h b/include/drm/exynos_drm.h index 68733587e700..c20b00181530 100644 --- a/include/drm/exynos_drm.h +++ b/include/drm/exynos_drm.h | |||
@@ -107,11 +107,6 @@ struct drm_exynos_vidi_connection { | |||
107 | uint64_t edid; | 107 | uint64_t edid; |
108 | }; | 108 | }; |
109 | 109 | ||
110 | struct drm_exynos_plane_set_zpos { | ||
111 | __u32 plane_id; | ||
112 | __s32 zpos; | ||
113 | }; | ||
114 | |||
115 | /* memory type definitions. */ | 110 | /* memory type definitions. */ |
116 | enum e_drm_exynos_gem_mem_type { | 111 | enum e_drm_exynos_gem_mem_type { |
117 | /* Physically Continuous memory and used as default. */ | 112 | /* Physically Continuous memory and used as default. */ |
@@ -164,7 +159,6 @@ struct drm_exynos_g2d_exec { | |||
164 | #define DRM_EXYNOS_GEM_MMAP 0x02 | 159 | #define DRM_EXYNOS_GEM_MMAP 0x02 |
165 | /* Reserved 0x03 ~ 0x05 for exynos specific gem ioctl */ | 160 | /* Reserved 0x03 ~ 0x05 for exynos specific gem ioctl */ |
166 | #define DRM_EXYNOS_GEM_GET 0x04 | 161 | #define DRM_EXYNOS_GEM_GET 0x04 |
167 | #define DRM_EXYNOS_PLANE_SET_ZPOS 0x06 | ||
168 | #define DRM_EXYNOS_VIDI_CONNECTION 0x07 | 162 | #define DRM_EXYNOS_VIDI_CONNECTION 0x07 |
169 | 163 | ||
170 | /* G2D */ | 164 | /* G2D */ |
@@ -184,9 +178,6 @@ struct drm_exynos_g2d_exec { | |||
184 | #define DRM_IOCTL_EXYNOS_GEM_GET DRM_IOWR(DRM_COMMAND_BASE + \ | 178 | #define DRM_IOCTL_EXYNOS_GEM_GET DRM_IOWR(DRM_COMMAND_BASE + \ |
185 | DRM_EXYNOS_GEM_GET, struct drm_exynos_gem_info) | 179 | DRM_EXYNOS_GEM_GET, struct drm_exynos_gem_info) |
186 | 180 | ||
187 | #define DRM_IOCTL_EXYNOS_PLANE_SET_ZPOS DRM_IOWR(DRM_COMMAND_BASE + \ | ||
188 | DRM_EXYNOS_PLANE_SET_ZPOS, struct drm_exynos_plane_set_zpos) | ||
189 | |||
190 | #define DRM_IOCTL_EXYNOS_VIDI_CONNECTION DRM_IOWR(DRM_COMMAND_BASE + \ | 181 | #define DRM_IOCTL_EXYNOS_VIDI_CONNECTION DRM_IOWR(DRM_COMMAND_BASE + \ |
191 | DRM_EXYNOS_VIDI_CONNECTION, struct drm_exynos_vidi_connection) | 182 | DRM_EXYNOS_VIDI_CONNECTION, struct drm_exynos_vidi_connection) |
192 | 183 | ||
diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h index f3f82242bf1d..8cc70837f929 100644 --- a/include/drm/i915_drm.h +++ b/include/drm/i915_drm.h | |||
@@ -200,6 +200,9 @@ typedef struct _drm_i915_sarea { | |||
200 | #define DRM_I915_GEM_EXECBUFFER2 0x29 | 200 | #define DRM_I915_GEM_EXECBUFFER2 0x29 |
201 | #define DRM_I915_GET_SPRITE_COLORKEY 0x2a | 201 | #define DRM_I915_GET_SPRITE_COLORKEY 0x2a |
202 | #define DRM_I915_SET_SPRITE_COLORKEY 0x2b | 202 | #define DRM_I915_SET_SPRITE_COLORKEY 0x2b |
203 | #define DRM_I915_GEM_WAIT 0x2c | ||
204 | #define DRM_I915_GEM_CONTEXT_CREATE 0x2d | ||
205 | #define DRM_I915_GEM_CONTEXT_DESTROY 0x2e | ||
203 | 206 | ||
204 | #define DRM_IOCTL_I915_INIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t) | 207 | #define DRM_IOCTL_I915_INIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t) |
205 | #define DRM_IOCTL_I915_FLUSH DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH) | 208 | #define DRM_IOCTL_I915_FLUSH DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH) |
@@ -243,6 +246,9 @@ typedef struct _drm_i915_sarea { | |||
243 | #define DRM_IOCTL_I915_OVERLAY_ATTRS DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_OVERLAY_ATTRS, struct drm_intel_overlay_attrs) | 246 | #define DRM_IOCTL_I915_OVERLAY_ATTRS DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_OVERLAY_ATTRS, struct drm_intel_overlay_attrs) |
244 | #define DRM_IOCTL_I915_SET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_SET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey) | 247 | #define DRM_IOCTL_I915_SET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_SET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey) |
245 | #define DRM_IOCTL_I915_GET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_SET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey) | 248 | #define DRM_IOCTL_I915_GET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_SET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey) |
249 | #define DRM_IOCTL_I915_GEM_WAIT DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_WAIT, struct drm_i915_gem_wait) | ||
250 | #define DRM_IOCTL_I915_GEM_CONTEXT_CREATE DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_CREATE, struct drm_i915_gem_context_create) | ||
251 | #define DRM_IOCTL_I915_GEM_CONTEXT_DESTROY DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_DESTROY, struct drm_i915_gem_context_destroy) | ||
246 | 252 | ||
247 | /* Allow drivers to submit batchbuffers directly to hardware, relying | 253 | /* Allow drivers to submit batchbuffers directly to hardware, relying |
248 | * on the security mechanisms provided by hardware. | 254 | * on the security mechanisms provided by hardware. |
@@ -298,6 +304,7 @@ typedef struct drm_i915_irq_wait { | |||
298 | #define I915_PARAM_HAS_GEN7_SOL_RESET 16 | 304 | #define I915_PARAM_HAS_GEN7_SOL_RESET 16 |
299 | #define I915_PARAM_HAS_LLC 17 | 305 | #define I915_PARAM_HAS_LLC 17 |
300 | #define I915_PARAM_HAS_ALIASING_PPGTT 18 | 306 | #define I915_PARAM_HAS_ALIASING_PPGTT 18 |
307 | #define I915_PARAM_HAS_WAIT_TIMEOUT 19 | ||
301 | 308 | ||
302 | typedef struct drm_i915_getparam { | 309 | typedef struct drm_i915_getparam { |
303 | int param; | 310 | int param; |
@@ -656,13 +663,19 @@ struct drm_i915_gem_execbuffer2 { | |||
656 | #define I915_EXEC_CONSTANTS_ABSOLUTE (1<<6) | 663 | #define I915_EXEC_CONSTANTS_ABSOLUTE (1<<6) |
657 | #define I915_EXEC_CONSTANTS_REL_SURFACE (2<<6) /* gen4/5 only */ | 664 | #define I915_EXEC_CONSTANTS_REL_SURFACE (2<<6) /* gen4/5 only */ |
658 | __u64 flags; | 665 | __u64 flags; |
659 | __u64 rsvd1; | 666 | __u64 rsvd1; /* now used for context info */ |
660 | __u64 rsvd2; | 667 | __u64 rsvd2; |
661 | }; | 668 | }; |
662 | 669 | ||
663 | /** Resets the SO write offset registers for transform feedback on gen7. */ | 670 | /** Resets the SO write offset registers for transform feedback on gen7. */ |
664 | #define I915_EXEC_GEN7_SOL_RESET (1<<8) | 671 | #define I915_EXEC_GEN7_SOL_RESET (1<<8) |
665 | 672 | ||
673 | #define I915_EXEC_CONTEXT_ID_MASK (0xffffffff) | ||
674 | #define i915_execbuffer2_set_context_id(eb2, context) \ | ||
675 | (eb2).rsvd1 = context & I915_EXEC_CONTEXT_ID_MASK | ||
676 | #define i915_execbuffer2_get_context_id(eb2) \ | ||
677 | ((eb2).rsvd1 & I915_EXEC_CONTEXT_ID_MASK) | ||
678 | |||
666 | struct drm_i915_gem_pin { | 679 | struct drm_i915_gem_pin { |
667 | /** Handle of the buffer to be pinned. */ | 680 | /** Handle of the buffer to be pinned. */ |
668 | __u32 handle; | 681 | __u32 handle; |
@@ -886,4 +899,23 @@ struct drm_intel_sprite_colorkey { | |||
886 | __u32 flags; | 899 | __u32 flags; |
887 | }; | 900 | }; |
888 | 901 | ||
902 | struct drm_i915_gem_wait { | ||
903 | /** Handle of BO we shall wait on */ | ||
904 | __u32 bo_handle; | ||
905 | __u32 flags; | ||
906 | /** Number of nanoseconds to wait, Returns time remaining. */ | ||
907 | __s64 timeout_ns; | ||
908 | }; | ||
909 | |||
910 | struct drm_i915_gem_context_create { | ||
911 | /* output: id of new context*/ | ||
912 | __u32 ctx_id; | ||
913 | __u32 pad; | ||
914 | }; | ||
915 | |||
916 | struct drm_i915_gem_context_destroy { | ||
917 | __u32 ctx_id; | ||
918 | __u32 pad; | ||
919 | }; | ||
920 | |||
889 | #endif /* _I915_DRM_H_ */ | 921 | #endif /* _I915_DRM_H_ */ |
diff --git a/include/drm/intel-gtt.h b/include/drm/intel-gtt.h index 923afb5dcf0c..8e29d551bb3c 100644 --- a/include/drm/intel-gtt.h +++ b/include/drm/intel-gtt.h | |||
@@ -19,8 +19,16 @@ const struct intel_gtt { | |||
19 | dma_addr_t scratch_page_dma; | 19 | dma_addr_t scratch_page_dma; |
20 | /* for ppgtt PDE access */ | 20 | /* for ppgtt PDE access */ |
21 | u32 __iomem *gtt; | 21 | u32 __iomem *gtt; |
22 | /* needed for ioremap in drm/i915 */ | ||
23 | phys_addr_t gma_bus_addr; | ||
22 | } *intel_gtt_get(void); | 24 | } *intel_gtt_get(void); |
23 | 25 | ||
26 | int intel_gmch_probe(struct pci_dev *bridge_pdev, struct pci_dev *gpu_pdev, | ||
27 | struct agp_bridge_data *bridge); | ||
28 | void intel_gmch_remove(void); | ||
29 | |||
30 | bool intel_enable_gtt(void); | ||
31 | |||
24 | void intel_gtt_chipset_flush(void); | 32 | void intel_gtt_chipset_flush(void); |
25 | void intel_gtt_unmap_memory(struct scatterlist *sg_list, int num_sg); | 33 | void intel_gtt_unmap_memory(struct scatterlist *sg_list, int num_sg); |
26 | void intel_gtt_clear_range(unsigned int first_entry, unsigned int num_entries); | 34 | void intel_gtt_clear_range(unsigned int first_entry, unsigned int num_entries); |
diff --git a/include/drm/nouveau_drm.h b/include/drm/nouveau_drm.h index 5edd3a76fffa..2a5769fdf8ba 100644 --- a/include/drm/nouveau_drm.h +++ b/include/drm/nouveau_drm.h | |||
@@ -25,70 +25,6 @@ | |||
25 | #ifndef __NOUVEAU_DRM_H__ | 25 | #ifndef __NOUVEAU_DRM_H__ |
26 | #define __NOUVEAU_DRM_H__ | 26 | #define __NOUVEAU_DRM_H__ |
27 | 27 | ||
28 | #define NOUVEAU_DRM_HEADER_PATCHLEVEL 16 | ||
29 | |||
30 | struct drm_nouveau_channel_alloc { | ||
31 | uint32_t fb_ctxdma_handle; | ||
32 | uint32_t tt_ctxdma_handle; | ||
33 | |||
34 | int channel; | ||
35 | uint32_t pushbuf_domains; | ||
36 | |||
37 | /* Notifier memory */ | ||
38 | uint32_t notifier_handle; | ||
39 | |||
40 | /* DRM-enforced subchannel assignments */ | ||
41 | struct { | ||
42 | uint32_t handle; | ||
43 | uint32_t grclass; | ||
44 | } subchan[8]; | ||
45 | uint32_t nr_subchan; | ||
46 | }; | ||
47 | |||
48 | struct drm_nouveau_channel_free { | ||
49 | int channel; | ||
50 | }; | ||
51 | |||
52 | struct drm_nouveau_grobj_alloc { | ||
53 | int channel; | ||
54 | uint32_t handle; | ||
55 | int class; | ||
56 | }; | ||
57 | |||
58 | struct drm_nouveau_notifierobj_alloc { | ||
59 | uint32_t channel; | ||
60 | uint32_t handle; | ||
61 | uint32_t size; | ||
62 | uint32_t offset; | ||
63 | }; | ||
64 | |||
65 | struct drm_nouveau_gpuobj_free { | ||
66 | int channel; | ||
67 | uint32_t handle; | ||
68 | }; | ||
69 | |||
70 | /* FIXME : maybe unify {GET,SET}PARAMs */ | ||
71 | #define NOUVEAU_GETPARAM_PCI_VENDOR 3 | ||
72 | #define NOUVEAU_GETPARAM_PCI_DEVICE 4 | ||
73 | #define NOUVEAU_GETPARAM_BUS_TYPE 5 | ||
74 | #define NOUVEAU_GETPARAM_FB_SIZE 8 | ||
75 | #define NOUVEAU_GETPARAM_AGP_SIZE 9 | ||
76 | #define NOUVEAU_GETPARAM_CHIPSET_ID 11 | ||
77 | #define NOUVEAU_GETPARAM_VM_VRAM_BASE 12 | ||
78 | #define NOUVEAU_GETPARAM_GRAPH_UNITS 13 | ||
79 | #define NOUVEAU_GETPARAM_PTIMER_TIME 14 | ||
80 | #define NOUVEAU_GETPARAM_HAS_BO_USAGE 15 | ||
81 | #define NOUVEAU_GETPARAM_HAS_PAGEFLIP 16 | ||
82 | struct drm_nouveau_getparam { | ||
83 | uint64_t param; | ||
84 | uint64_t value; | ||
85 | }; | ||
86 | |||
87 | struct drm_nouveau_setparam { | ||
88 | uint64_t param; | ||
89 | uint64_t value; | ||
90 | }; | ||
91 | |||
92 | #define NOUVEAU_GEM_DOMAIN_CPU (1 << 0) | 28 | #define NOUVEAU_GEM_DOMAIN_CPU (1 << 0) |
93 | #define NOUVEAU_GEM_DOMAIN_VRAM (1 << 1) | 29 | #define NOUVEAU_GEM_DOMAIN_VRAM (1 << 1) |
94 | #define NOUVEAU_GEM_DOMAIN_GART (1 << 2) | 30 | #define NOUVEAU_GEM_DOMAIN_GART (1 << 2) |
@@ -180,35 +116,19 @@ struct drm_nouveau_gem_cpu_fini { | |||
180 | uint32_t handle; | 116 | uint32_t handle; |
181 | }; | 117 | }; |
182 | 118 | ||
183 | enum nouveau_bus_type { | 119 | #define DRM_NOUVEAU_GETPARAM 0x00 /* deprecated */ |
184 | NV_AGP = 0, | 120 | #define DRM_NOUVEAU_SETPARAM 0x01 /* deprecated */ |
185 | NV_PCI = 1, | 121 | #define DRM_NOUVEAU_CHANNEL_ALLOC 0x02 /* deprecated */ |
186 | NV_PCIE = 2, | 122 | #define DRM_NOUVEAU_CHANNEL_FREE 0x03 /* deprecated */ |
187 | }; | 123 | #define DRM_NOUVEAU_GROBJ_ALLOC 0x04 /* deprecated */ |
188 | 124 | #define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x05 /* deprecated */ | |
189 | struct drm_nouveau_sarea { | 125 | #define DRM_NOUVEAU_GPUOBJ_FREE 0x06 /* deprecated */ |
190 | }; | ||
191 | |||
192 | #define DRM_NOUVEAU_GETPARAM 0x00 | ||
193 | #define DRM_NOUVEAU_SETPARAM 0x01 | ||
194 | #define DRM_NOUVEAU_CHANNEL_ALLOC 0x02 | ||
195 | #define DRM_NOUVEAU_CHANNEL_FREE 0x03 | ||
196 | #define DRM_NOUVEAU_GROBJ_ALLOC 0x04 | ||
197 | #define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x05 | ||
198 | #define DRM_NOUVEAU_GPUOBJ_FREE 0x06 | ||
199 | #define DRM_NOUVEAU_GEM_NEW 0x40 | 126 | #define DRM_NOUVEAU_GEM_NEW 0x40 |
200 | #define DRM_NOUVEAU_GEM_PUSHBUF 0x41 | 127 | #define DRM_NOUVEAU_GEM_PUSHBUF 0x41 |
201 | #define DRM_NOUVEAU_GEM_CPU_PREP 0x42 | 128 | #define DRM_NOUVEAU_GEM_CPU_PREP 0x42 |
202 | #define DRM_NOUVEAU_GEM_CPU_FINI 0x43 | 129 | #define DRM_NOUVEAU_GEM_CPU_FINI 0x43 |
203 | #define DRM_NOUVEAU_GEM_INFO 0x44 | 130 | #define DRM_NOUVEAU_GEM_INFO 0x44 |
204 | 131 | ||
205 | #define DRM_IOCTL_NOUVEAU_GETPARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GETPARAM, struct drm_nouveau_getparam) | ||
206 | #define DRM_IOCTL_NOUVEAU_SETPARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_SETPARAM, struct drm_nouveau_setparam) | ||
207 | #define DRM_IOCTL_NOUVEAU_CHANNEL_ALLOC DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_CHANNEL_ALLOC, struct drm_nouveau_channel_alloc) | ||
208 | #define DRM_IOCTL_NOUVEAU_CHANNEL_FREE DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_CHANNEL_FREE, struct drm_nouveau_channel_free) | ||
209 | #define DRM_IOCTL_NOUVEAU_GROBJ_ALLOC DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GROBJ_ALLOC, struct drm_nouveau_grobj_alloc) | ||
210 | #define DRM_IOCTL_NOUVEAU_NOTIFIEROBJ_ALLOC DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_NOTIFIEROBJ_ALLOC, struct drm_nouveau_notifierobj_alloc) | ||
211 | #define DRM_IOCTL_NOUVEAU_GPUOBJ_FREE DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GPUOBJ_FREE, struct drm_nouveau_gpuobj_free) | ||
212 | #define DRM_IOCTL_NOUVEAU_GEM_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_NEW, struct drm_nouveau_gem_new) | 132 | #define DRM_IOCTL_NOUVEAU_GEM_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_NEW, struct drm_nouveau_gem_new) |
213 | #define DRM_IOCTL_NOUVEAU_GEM_PUSHBUF DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_PUSHBUF, struct drm_nouveau_gem_pushbuf) | 133 | #define DRM_IOCTL_NOUVEAU_GEM_PUSHBUF DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_PUSHBUF, struct drm_nouveau_gem_pushbuf) |
214 | #define DRM_IOCTL_NOUVEAU_GEM_CPU_PREP DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_PREP, struct drm_nouveau_gem_cpu_prep) | 134 | #define DRM_IOCTL_NOUVEAU_GEM_CPU_PREP DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_PREP, struct drm_nouveau_gem_cpu_prep) |
diff --git a/include/drm/sis_drm.h b/include/drm/sis_drm.h index 035b804dda6d..df3763222d73 100644 --- a/include/drm/sis_drm.h +++ b/include/drm/sis_drm.h | |||
@@ -51,17 +51,17 @@ | |||
51 | 51 | ||
52 | typedef struct { | 52 | typedef struct { |
53 | int context; | 53 | int context; |
54 | unsigned int offset; | 54 | unsigned long offset; |
55 | unsigned int size; | 55 | unsigned long size; |
56 | unsigned long free; | 56 | unsigned long free; |
57 | } drm_sis_mem_t; | 57 | } drm_sis_mem_t; |
58 | 58 | ||
59 | typedef struct { | 59 | typedef struct { |
60 | unsigned int offset, size; | 60 | unsigned long offset, size; |
61 | } drm_sis_agp_t; | 61 | } drm_sis_agp_t; |
62 | 62 | ||
63 | typedef struct { | 63 | typedef struct { |
64 | unsigned int offset, size; | 64 | unsigned long offset, size; |
65 | } drm_sis_fb_t; | 65 | } drm_sis_fb_t; |
66 | 66 | ||
67 | struct sis_file_private { | 67 | struct sis_file_private { |
diff --git a/include/drm/ttm/ttm_bo_driver.h b/include/drm/ttm/ttm_bo_driver.h index a05f1b55714d..084e8989a6e1 100644 --- a/include/drm/ttm/ttm_bo_driver.h +++ b/include/drm/ttm/ttm_bo_driver.h | |||
@@ -39,8 +39,6 @@ | |||
39 | #include "linux/fs.h" | 39 | #include "linux/fs.h" |
40 | #include "linux/spinlock.h" | 40 | #include "linux/spinlock.h" |
41 | 41 | ||
42 | struct ttm_backend; | ||
43 | |||
44 | struct ttm_backend_func { | 42 | struct ttm_backend_func { |
45 | /** | 43 | /** |
46 | * struct ttm_backend_func member bind | 44 | * struct ttm_backend_func member bind |
@@ -119,7 +117,6 @@ struct ttm_tt { | |||
119 | unsigned long num_pages; | 117 | unsigned long num_pages; |
120 | struct sg_table *sg; /* for SG objects via dma-buf */ | 118 | struct sg_table *sg; /* for SG objects via dma-buf */ |
121 | struct ttm_bo_global *glob; | 119 | struct ttm_bo_global *glob; |
122 | struct ttm_backend *be; | ||
123 | struct file *swap_storage; | 120 | struct file *swap_storage; |
124 | enum ttm_caching_state caching_state; | 121 | enum ttm_caching_state caching_state; |
125 | enum { | 122 | enum { |
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index 8760be30b375..d9a754474878 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
@@ -183,7 +183,6 @@ header-y += if_ppp.h | |||
183 | header-y += if_pppol2tp.h | 183 | header-y += if_pppol2tp.h |
184 | header-y += if_pppox.h | 184 | header-y += if_pppox.h |
185 | header-y += if_slip.h | 185 | header-y += if_slip.h |
186 | header-y += if_strip.h | ||
187 | header-y += if_team.h | 186 | header-y += if_team.h |
188 | header-y += if_tun.h | 187 | header-y += if_tun.h |
189 | header-y += if_tunnel.h | 188 | header-y += if_tunnel.h |
@@ -376,6 +375,7 @@ header-y += tty.h | |||
376 | header-y += types.h | 375 | header-y += types.h |
377 | header-y += udf_fs_i.h | 376 | header-y += udf_fs_i.h |
378 | header-y += udp.h | 377 | header-y += udp.h |
378 | header-y += uhid.h | ||
379 | header-y += uinput.h | 379 | header-y += uinput.h |
380 | header-y += uio.h | 380 | header-y += uio.h |
381 | header-y += ultrasound.h | 381 | header-y += ultrasound.h |
@@ -386,6 +386,7 @@ header-y += utime.h | |||
386 | header-y += utsname.h | 386 | header-y += utsname.h |
387 | header-y += uuid.h | 387 | header-y += uuid.h |
388 | header-y += uvcvideo.h | 388 | header-y += uvcvideo.h |
389 | header-y += v4l2-common.h | ||
389 | header-y += v4l2-dv-timings.h | 390 | header-y += v4l2-dv-timings.h |
390 | header-y += v4l2-mediabus.h | 391 | header-y += v4l2-mediabus.h |
391 | header-y += v4l2-subdev.h | 392 | header-y += v4l2-subdev.h |
diff --git a/include/linux/ac97_codec.h b/include/linux/ac97_codec.h deleted file mode 100644 index 0260c3e79fdd..000000000000 --- a/include/linux/ac97_codec.h +++ /dev/null | |||
@@ -1,362 +0,0 @@ | |||
1 | #ifndef _AC97_CODEC_H_ | ||
2 | #define _AC97_CODEC_H_ | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | #include <linux/soundcard.h> | ||
6 | |||
7 | /* AC97 1.0 */ | ||
8 | #define AC97_RESET 0x0000 // | ||
9 | #define AC97_MASTER_VOL_STEREO 0x0002 // Line Out | ||
10 | #define AC97_HEADPHONE_VOL 0x0004 // | ||
11 | #define AC97_MASTER_VOL_MONO 0x0006 // TAD Output | ||
12 | #define AC97_MASTER_TONE 0x0008 // | ||
13 | #define AC97_PCBEEP_VOL 0x000a // none | ||
14 | #define AC97_PHONE_VOL 0x000c // TAD Input (mono) | ||
15 | #define AC97_MIC_VOL 0x000e // MIC Input (mono) | ||
16 | #define AC97_LINEIN_VOL 0x0010 // Line Input (stereo) | ||
17 | #define AC97_CD_VOL 0x0012 // CD Input (stereo) | ||
18 | #define AC97_VIDEO_VOL 0x0014 // none | ||
19 | #define AC97_AUX_VOL 0x0016 // Aux Input (stereo) | ||
20 | #define AC97_PCMOUT_VOL 0x0018 // Wave Output (stereo) | ||
21 | #define AC97_RECORD_SELECT 0x001a // | ||
22 | #define AC97_RECORD_GAIN 0x001c | ||
23 | #define AC97_RECORD_GAIN_MIC 0x001e | ||
24 | #define AC97_GENERAL_PURPOSE 0x0020 | ||
25 | #define AC97_3D_CONTROL 0x0022 | ||
26 | #define AC97_MODEM_RATE 0x0024 | ||
27 | #define AC97_POWER_CONTROL 0x0026 | ||
28 | |||
29 | /* AC'97 2.0 */ | ||
30 | #define AC97_EXTENDED_ID 0x0028 /* Extended Audio ID */ | ||
31 | #define AC97_EXTENDED_STATUS 0x002A /* Extended Audio Status */ | ||
32 | #define AC97_PCM_FRONT_DAC_RATE 0x002C /* PCM Front DAC Rate */ | ||
33 | #define AC97_PCM_SURR_DAC_RATE 0x002E /* PCM Surround DAC Rate */ | ||
34 | #define AC97_PCM_LFE_DAC_RATE 0x0030 /* PCM LFE DAC Rate */ | ||
35 | #define AC97_PCM_LR_ADC_RATE 0x0032 /* PCM LR ADC Rate */ | ||
36 | #define AC97_PCM_MIC_ADC_RATE 0x0034 /* PCM MIC ADC Rate */ | ||
37 | #define AC97_CENTER_LFE_MASTER 0x0036 /* Center + LFE Master Volume */ | ||
38 | #define AC97_SURROUND_MASTER 0x0038 /* Surround (Rear) Master Volume */ | ||
39 | #define AC97_RESERVED_3A 0x003A /* Reserved in AC '97 < 2.2 */ | ||
40 | |||
41 | /* AC'97 2.2 */ | ||
42 | #define AC97_SPDIF_CONTROL 0x003A /* S/PDIF Control */ | ||
43 | |||
44 | /* range 0x3c-0x58 - MODEM */ | ||
45 | #define AC97_EXTENDED_MODEM_ID 0x003C | ||
46 | #define AC97_EXTEND_MODEM_STAT 0x003E | ||
47 | #define AC97_LINE1_RATE 0x0040 | ||
48 | #define AC97_LINE2_RATE 0x0042 | ||
49 | #define AC97_HANDSET_RATE 0x0044 | ||
50 | #define AC97_LINE1_LEVEL 0x0046 | ||
51 | #define AC97_LINE2_LEVEL 0x0048 | ||
52 | #define AC97_HANDSET_LEVEL 0x004A | ||
53 | #define AC97_GPIO_CONFIG 0x004C | ||
54 | #define AC97_GPIO_POLARITY 0x004E | ||
55 | #define AC97_GPIO_STICKY 0x0050 | ||
56 | #define AC97_GPIO_WAKE_UP 0x0052 | ||
57 | #define AC97_GPIO_STATUS 0x0054 | ||
58 | #define AC97_MISC_MODEM_STAT 0x0056 | ||
59 | #define AC97_RESERVED_58 0x0058 | ||
60 | |||
61 | /* registers 0x005a - 0x007a are vendor reserved */ | ||
62 | |||
63 | #define AC97_VENDOR_ID1 0x007c | ||
64 | #define AC97_VENDOR_ID2 0x007e | ||
65 | |||
66 | /* volume control bit defines */ | ||
67 | #define AC97_MUTE 0x8000 | ||
68 | #define AC97_MICBOOST 0x0040 | ||
69 | #define AC97_LEFTVOL 0x3f00 | ||
70 | #define AC97_RIGHTVOL 0x003f | ||
71 | |||
72 | /* record mux defines */ | ||
73 | #define AC97_RECMUX_MIC 0x0000 | ||
74 | #define AC97_RECMUX_CD 0x0101 | ||
75 | #define AC97_RECMUX_VIDEO 0x0202 | ||
76 | #define AC97_RECMUX_AUX 0x0303 | ||
77 | #define AC97_RECMUX_LINE 0x0404 | ||
78 | #define AC97_RECMUX_STEREO_MIX 0x0505 | ||
79 | #define AC97_RECMUX_MONO_MIX 0x0606 | ||
80 | #define AC97_RECMUX_PHONE 0x0707 | ||
81 | |||
82 | /* general purpose register bit defines */ | ||
83 | #define AC97_GP_LPBK 0x0080 /* Loopback mode */ | ||
84 | #define AC97_GP_MS 0x0100 /* Mic Select 0=Mic1, 1=Mic2 */ | ||
85 | #define AC97_GP_MIX 0x0200 /* Mono output select 0=Mix, 1=Mic */ | ||
86 | #define AC97_GP_RLBK 0x0400 /* Remote Loopback - Modem line codec */ | ||
87 | #define AC97_GP_LLBK 0x0800 /* Local Loopback - Modem Line codec */ | ||
88 | #define AC97_GP_LD 0x1000 /* Loudness 1=on */ | ||
89 | #define AC97_GP_3D 0x2000 /* 3D Enhancement 1=on */ | ||
90 | #define AC97_GP_ST 0x4000 /* Stereo Enhancement 1=on */ | ||
91 | #define AC97_GP_POP 0x8000 /* Pcm Out Path, 0=pre 3D, 1=post 3D */ | ||
92 | |||
93 | /* extended audio status and control bit defines */ | ||
94 | #define AC97_EA_VRA 0x0001 /* Variable bit rate enable bit */ | ||
95 | #define AC97_EA_DRA 0x0002 /* Double-rate audio enable bit */ | ||
96 | #define AC97_EA_SPDIF 0x0004 /* S/PDIF Enable bit */ | ||
97 | #define AC97_EA_VRM 0x0008 /* Variable bit rate for MIC enable bit */ | ||
98 | #define AC97_EA_CDAC 0x0040 /* PCM Center DAC is ready (Read only) */ | ||
99 | #define AC97_EA_SDAC 0x0040 /* PCM Surround DACs are ready (Read only) */ | ||
100 | #define AC97_EA_LDAC 0x0080 /* PCM LFE DAC is ready (Read only) */ | ||
101 | #define AC97_EA_MDAC 0x0100 /* MIC ADC is ready (Read only) */ | ||
102 | #define AC97_EA_SPCV 0x0400 /* S/PDIF configuration valid (Read only) */ | ||
103 | #define AC97_EA_PRI 0x0800 /* Turns the PCM Center DAC off */ | ||
104 | #define AC97_EA_PRJ 0x1000 /* Turns the PCM Surround DACs off */ | ||
105 | #define AC97_EA_PRK 0x2000 /* Turns the PCM LFE DAC off */ | ||
106 | #define AC97_EA_PRL 0x4000 /* Turns the MIC ADC off */ | ||
107 | #define AC97_EA_SLOT_MASK 0xffcf /* Mask for slot assignment bits */ | ||
108 | #define AC97_EA_SPSA_3_4 0x0000 /* Slot assigned to 3 & 4 */ | ||
109 | #define AC97_EA_SPSA_7_8 0x0010 /* Slot assigned to 7 & 8 */ | ||
110 | #define AC97_EA_SPSA_6_9 0x0020 /* Slot assigned to 6 & 9 */ | ||
111 | #define AC97_EA_SPSA_10_11 0x0030 /* Slot assigned to 10 & 11 */ | ||
112 | |||
113 | /* S/PDIF control bit defines */ | ||
114 | #define AC97_SC_PRO 0x0001 /* Professional status */ | ||
115 | #define AC97_SC_NAUDIO 0x0002 /* Non audio stream */ | ||
116 | #define AC97_SC_COPY 0x0004 /* Copyright status */ | ||
117 | #define AC97_SC_PRE 0x0008 /* Preemphasis status */ | ||
118 | #define AC97_SC_CC_MASK 0x07f0 /* Category Code mask */ | ||
119 | #define AC97_SC_L 0x0800 /* Generation Level status */ | ||
120 | #define AC97_SC_SPSR_MASK 0xcfff /* S/PDIF Sample Rate bits */ | ||
121 | #define AC97_SC_SPSR_44K 0x0000 /* Use 44.1kHz Sample rate */ | ||
122 | #define AC97_SC_SPSR_48K 0x2000 /* Use 48kHz Sample rate */ | ||
123 | #define AC97_SC_SPSR_32K 0x3000 /* Use 32kHz Sample rate */ | ||
124 | #define AC97_SC_DRS 0x4000 /* Double Rate S/PDIF */ | ||
125 | #define AC97_SC_V 0x8000 /* Validity status */ | ||
126 | |||
127 | /* powerdown control and status bit defines */ | ||
128 | |||
129 | /* status */ | ||
130 | #define AC97_PWR_MDM 0x0010 /* Modem section ready */ | ||
131 | #define AC97_PWR_REF 0x0008 /* Vref nominal */ | ||
132 | #define AC97_PWR_ANL 0x0004 /* Analog section ready */ | ||
133 | #define AC97_PWR_DAC 0x0002 /* DAC section ready */ | ||
134 | #define AC97_PWR_ADC 0x0001 /* ADC section ready */ | ||
135 | |||
136 | /* control */ | ||
137 | #define AC97_PWR_PR0 0x0100 /* ADC and Mux powerdown */ | ||
138 | #define AC97_PWR_PR1 0x0200 /* DAC powerdown */ | ||
139 | #define AC97_PWR_PR2 0x0400 /* Output mixer powerdown (Vref on) */ | ||
140 | #define AC97_PWR_PR3 0x0800 /* Output mixer powerdown (Vref off) */ | ||
141 | #define AC97_PWR_PR4 0x1000 /* AC-link powerdown */ | ||
142 | #define AC97_PWR_PR5 0x2000 /* Internal Clk disable */ | ||
143 | #define AC97_PWR_PR6 0x4000 /* HP amp powerdown */ | ||
144 | #define AC97_PWR_PR7 0x8000 /* Modem off - if supported */ | ||
145 | |||
146 | /* extended audio ID register bit defines */ | ||
147 | #define AC97_EXTID_VRA 0x0001 | ||
148 | #define AC97_EXTID_DRA 0x0002 | ||
149 | #define AC97_EXTID_SPDIF 0x0004 | ||
150 | #define AC97_EXTID_VRM 0x0008 | ||
151 | #define AC97_EXTID_DSA0 0x0010 | ||
152 | #define AC97_EXTID_DSA1 0x0020 | ||
153 | #define AC97_EXTID_CDAC 0x0040 | ||
154 | #define AC97_EXTID_SDAC 0x0080 | ||
155 | #define AC97_EXTID_LDAC 0x0100 | ||
156 | #define AC97_EXTID_AMAP 0x0200 | ||
157 | #define AC97_EXTID_REV0 0x0400 | ||
158 | #define AC97_EXTID_REV1 0x0800 | ||
159 | #define AC97_EXTID_ID0 0x4000 | ||
160 | #define AC97_EXTID_ID1 0x8000 | ||
161 | |||
162 | /* extended status register bit defines */ | ||
163 | #define AC97_EXTSTAT_VRA 0x0001 | ||
164 | #define AC97_EXTSTAT_DRA 0x0002 | ||
165 | #define AC97_EXTSTAT_SPDIF 0x0004 | ||
166 | #define AC97_EXTSTAT_VRM 0x0008 | ||
167 | #define AC97_EXTSTAT_SPSA0 0x0010 | ||
168 | #define AC97_EXTSTAT_SPSA1 0x0020 | ||
169 | #define AC97_EXTSTAT_CDAC 0x0040 | ||
170 | #define AC97_EXTSTAT_SDAC 0x0080 | ||
171 | #define AC97_EXTSTAT_LDAC 0x0100 | ||
172 | #define AC97_EXTSTAT_MADC 0x0200 | ||
173 | #define AC97_EXTSTAT_SPCV 0x0400 | ||
174 | #define AC97_EXTSTAT_PRI 0x0800 | ||
175 | #define AC97_EXTSTAT_PRJ 0x1000 | ||
176 | #define AC97_EXTSTAT_PRK 0x2000 | ||
177 | #define AC97_EXTSTAT_PRL 0x4000 | ||
178 | |||
179 | /* extended audio ID register bit defines */ | ||
180 | #define AC97_EXTID_VRA 0x0001 | ||
181 | #define AC97_EXTID_DRA 0x0002 | ||
182 | #define AC97_EXTID_SPDIF 0x0004 | ||
183 | #define AC97_EXTID_VRM 0x0008 | ||
184 | #define AC97_EXTID_DSA0 0x0010 | ||
185 | #define AC97_EXTID_DSA1 0x0020 | ||
186 | #define AC97_EXTID_CDAC 0x0040 | ||
187 | #define AC97_EXTID_SDAC 0x0080 | ||
188 | #define AC97_EXTID_LDAC 0x0100 | ||
189 | #define AC97_EXTID_AMAP 0x0200 | ||
190 | #define AC97_EXTID_REV0 0x0400 | ||
191 | #define AC97_EXTID_REV1 0x0800 | ||
192 | #define AC97_EXTID_ID0 0x4000 | ||
193 | #define AC97_EXTID_ID1 0x8000 | ||
194 | |||
195 | /* extended status register bit defines */ | ||
196 | #define AC97_EXTSTAT_VRA 0x0001 | ||
197 | #define AC97_EXTSTAT_DRA 0x0002 | ||
198 | #define AC97_EXTSTAT_SPDIF 0x0004 | ||
199 | #define AC97_EXTSTAT_VRM 0x0008 | ||
200 | #define AC97_EXTSTAT_SPSA0 0x0010 | ||
201 | #define AC97_EXTSTAT_SPSA1 0x0020 | ||
202 | #define AC97_EXTSTAT_CDAC 0x0040 | ||
203 | #define AC97_EXTSTAT_SDAC 0x0080 | ||
204 | #define AC97_EXTSTAT_LDAC 0x0100 | ||
205 | #define AC97_EXTSTAT_MADC 0x0200 | ||
206 | #define AC97_EXTSTAT_SPCV 0x0400 | ||
207 | #define AC97_EXTSTAT_PRI 0x0800 | ||
208 | #define AC97_EXTSTAT_PRJ 0x1000 | ||
209 | #define AC97_EXTSTAT_PRK 0x2000 | ||
210 | #define AC97_EXTSTAT_PRL 0x4000 | ||
211 | |||
212 | /* useful power states */ | ||
213 | #define AC97_PWR_D0 0x0000 /* everything on */ | ||
214 | #define AC97_PWR_D1 AC97_PWR_PR0|AC97_PWR_PR1|AC97_PWR_PR4 | ||
215 | #define AC97_PWR_D2 AC97_PWR_PR0|AC97_PWR_PR1|AC97_PWR_PR2|AC97_PWR_PR3|AC97_PWR_PR4 | ||
216 | #define AC97_PWR_D3 AC97_PWR_PR0|AC97_PWR_PR1|AC97_PWR_PR2|AC97_PWR_PR3|AC97_PWR_PR4 | ||
217 | #define AC97_PWR_ANLOFF AC97_PWR_PR2|AC97_PWR_PR3 /* analog section off */ | ||
218 | |||
219 | /* Total number of defined registers. */ | ||
220 | #define AC97_REG_CNT 64 | ||
221 | |||
222 | |||
223 | /* OSS interface to the ac97s.. */ | ||
224 | #define AC97_STEREO_MASK (SOUND_MASK_VOLUME|SOUND_MASK_PCM|\ | ||
225 | SOUND_MASK_LINE|SOUND_MASK_CD|\ | ||
226 | SOUND_MASK_ALTPCM|SOUND_MASK_IGAIN|\ | ||
227 | SOUND_MASK_LINE1|SOUND_MASK_VIDEO) | ||
228 | |||
229 | #define AC97_SUPPORTED_MASK (AC97_STEREO_MASK | \ | ||
230 | SOUND_MASK_BASS|SOUND_MASK_TREBLE|\ | ||
231 | SOUND_MASK_SPEAKER|SOUND_MASK_MIC|\ | ||
232 | SOUND_MASK_PHONEIN|SOUND_MASK_PHONEOUT) | ||
233 | |||
234 | #define AC97_RECORD_MASK (SOUND_MASK_MIC|\ | ||
235 | SOUND_MASK_CD|SOUND_MASK_IGAIN|SOUND_MASK_VIDEO|\ | ||
236 | SOUND_MASK_LINE1| SOUND_MASK_LINE|\ | ||
237 | SOUND_MASK_PHONEIN) | ||
238 | |||
239 | /* original check is not good enough in case FOO is greater than | ||
240 | * SOUND_MIXER_NRDEVICES because the supported_mixers has exactly | ||
241 | * SOUND_MIXER_NRDEVICES elements. | ||
242 | * before matching the given mixer against the bitmask in supported_mixers we | ||
243 | * check if mixer number exceeds maximum allowed size which is as mentioned | ||
244 | * above SOUND_MIXER_NRDEVICES */ | ||
245 | #define supported_mixer(CODEC,FOO) ((FOO >= 0) && \ | ||
246 | (FOO < SOUND_MIXER_NRDEVICES) && \ | ||
247 | (CODEC)->supported_mixers & (1<<FOO) ) | ||
248 | |||
249 | struct ac97_codec { | ||
250 | /* Linked list of codecs */ | ||
251 | struct list_head list; | ||
252 | |||
253 | /* AC97 controller connected with */ | ||
254 | void *private_data; | ||
255 | |||
256 | char *name; | ||
257 | int id; | ||
258 | int dev_mixer; | ||
259 | int type; | ||
260 | u32 model; | ||
261 | |||
262 | unsigned int modem:1; | ||
263 | |||
264 | struct ac97_ops *codec_ops; | ||
265 | |||
266 | /* controller specific lower leverl ac97 accessing routines. | ||
267 | must be re-entrant safe */ | ||
268 | u16 (*codec_read) (struct ac97_codec *codec, u8 reg); | ||
269 | void (*codec_write) (struct ac97_codec *codec, u8 reg, u16 val); | ||
270 | |||
271 | /* Wait for codec-ready. Ok to sleep here. */ | ||
272 | void (*codec_wait) (struct ac97_codec *codec); | ||
273 | |||
274 | /* callback used by helper drivers for interesting ac97 setups */ | ||
275 | void (*codec_unregister) (struct ac97_codec *codec); | ||
276 | |||
277 | struct ac97_driver *driver; | ||
278 | void *driver_private; /* Private data for the driver */ | ||
279 | |||
280 | spinlock_t lock; | ||
281 | |||
282 | /* OSS mixer masks */ | ||
283 | int modcnt; | ||
284 | int supported_mixers; | ||
285 | int stereo_mixers; | ||
286 | int record_sources; | ||
287 | |||
288 | /* Property flags */ | ||
289 | int flags; | ||
290 | |||
291 | int bit_resolution; | ||
292 | |||
293 | /* OSS mixer interface */ | ||
294 | int (*read_mixer) (struct ac97_codec *codec, int oss_channel); | ||
295 | void (*write_mixer)(struct ac97_codec *codec, int oss_channel, | ||
296 | unsigned int left, unsigned int right); | ||
297 | int (*recmask_io) (struct ac97_codec *codec, int rw, int mask); | ||
298 | int (*mixer_ioctl)(struct ac97_codec *codec, unsigned int cmd, unsigned long arg); | ||
299 | |||
300 | /* saved OSS mixer states */ | ||
301 | unsigned int mixer_state[SOUND_MIXER_NRDEVICES]; | ||
302 | |||
303 | /* Software Modem interface */ | ||
304 | int (*modem_ioctl)(struct ac97_codec *codec, unsigned int cmd, unsigned long arg); | ||
305 | }; | ||
306 | |||
307 | /* | ||
308 | * Operation structures for each known AC97 chip | ||
309 | */ | ||
310 | |||
311 | struct ac97_ops | ||
312 | { | ||
313 | /* Initialise */ | ||
314 | int (*init)(struct ac97_codec *c); | ||
315 | /* Amplifier control */ | ||
316 | int (*amplifier)(struct ac97_codec *codec, int on); | ||
317 | /* Digital mode control */ | ||
318 | int (*digital)(struct ac97_codec *codec, int slots, int rate, int mode); | ||
319 | #define AUDIO_DIGITAL 0x8000 | ||
320 | #define AUDIO_PRO 0x4000 | ||
321 | #define AUDIO_DRS 0x2000 | ||
322 | #define AUDIO_CCMASK 0x003F | ||
323 | |||
324 | #define AC97_DELUDED_MODEM 1 /* Audio codec reports its a modem */ | ||
325 | #define AC97_NO_PCM_VOLUME 2 /* Volume control is missing */ | ||
326 | #define AC97_DEFAULT_POWER_OFF 4 /* Needs warm reset to power up */ | ||
327 | }; | ||
328 | |||
329 | extern int ac97_probe_codec(struct ac97_codec *); | ||
330 | |||
331 | extern struct ac97_codec *ac97_alloc_codec(void); | ||
332 | extern void ac97_release_codec(struct ac97_codec *codec); | ||
333 | |||
334 | struct ac97_driver { | ||
335 | struct list_head list; | ||
336 | char *name; | ||
337 | u32 codec_id; | ||
338 | u32 codec_mask; | ||
339 | int (*probe) (struct ac97_codec *codec, struct ac97_driver *driver); | ||
340 | void (*remove) (struct ac97_codec *codec, struct ac97_driver *driver); | ||
341 | }; | ||
342 | |||
343 | /* quirk types */ | ||
344 | enum { | ||
345 | AC97_TUNE_DEFAULT = -1, /* use default from quirk list (not valid in list) */ | ||
346 | AC97_TUNE_NONE = 0, /* nothing extra to do */ | ||
347 | AC97_TUNE_HP_ONLY, /* headphone (true line-out) control as master only */ | ||
348 | AC97_TUNE_SWAP_HP, /* swap headphone and master controls */ | ||
349 | AC97_TUNE_SWAP_SURROUND, /* swap master and surround controls */ | ||
350 | AC97_TUNE_AD_SHARING, /* for AD1985, turn on OMS bit and use headphone */ | ||
351 | AC97_TUNE_ALC_JACK, /* for Realtek, enable JACK detection */ | ||
352 | }; | ||
353 | |||
354 | struct ac97_quirk { | ||
355 | unsigned short vendor; /* PCI vendor id */ | ||
356 | unsigned short device; /* PCI device id */ | ||
357 | unsigned short mask; /* device id bit mask, 0 = accept all */ | ||
358 | const char *name; /* name shown as info */ | ||
359 | int type; /* quirk type above */ | ||
360 | }; | ||
361 | |||
362 | #endif /* _AC97_CODEC_H_ */ | ||
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index f421dd84f29d..3ad510b25283 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
@@ -190,6 +190,8 @@ extern bool wmi_has_guid(const char *guid); | |||
190 | 190 | ||
191 | extern long acpi_video_get_capabilities(acpi_handle graphics_dev_handle); | 191 | extern long acpi_video_get_capabilities(acpi_handle graphics_dev_handle); |
192 | extern long acpi_is_video_device(struct acpi_device *device); | 192 | extern long acpi_is_video_device(struct acpi_device *device); |
193 | extern void acpi_video_dmi_promote_vendor(void); | ||
194 | extern void acpi_video_dmi_demote_vendor(void); | ||
193 | extern int acpi_video_backlight_support(void); | 195 | extern int acpi_video_backlight_support(void); |
194 | extern int acpi_video_display_switch_support(void); | 196 | extern int acpi_video_display_switch_support(void); |
195 | 197 | ||
@@ -205,6 +207,14 @@ static inline long acpi_is_video_device(struct acpi_device *device) | |||
205 | return 0; | 207 | return 0; |
206 | } | 208 | } |
207 | 209 | ||
210 | static inline void acpi_video_dmi_promote_vendor(void) | ||
211 | { | ||
212 | } | ||
213 | |||
214 | static inline void acpi_video_dmi_demote_vendor(void) | ||
215 | { | ||
216 | } | ||
217 | |||
208 | static inline int acpi_video_backlight_support(void) | 218 | static inline int acpi_video_backlight_support(void) |
209 | { | 219 | { |
210 | return 0; | 220 | return 0; |
@@ -277,7 +287,7 @@ acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context); | |||
277 | #define OSC_SB_PAD_SUPPORT 1 | 287 | #define OSC_SB_PAD_SUPPORT 1 |
278 | #define OSC_SB_PPC_OST_SUPPORT 2 | 288 | #define OSC_SB_PPC_OST_SUPPORT 2 |
279 | #define OSC_SB_PR3_SUPPORT 4 | 289 | #define OSC_SB_PR3_SUPPORT 4 |
280 | #define OSC_SB_CPUHP_OST_SUPPORT 8 | 290 | #define OSC_SB_HOTPLUG_OST_SUPPORT 8 |
281 | #define OSC_SB_APEI_SUPPORT 16 | 291 | #define OSC_SB_APEI_SUPPORT 16 |
282 | 292 | ||
283 | extern bool osc_sb_apei_support_acked; | 293 | extern bool osc_sb_apei_support_acked; |
@@ -309,6 +319,44 @@ extern bool osc_sb_apei_support_acked; | |||
309 | 319 | ||
310 | extern acpi_status acpi_pci_osc_control_set(acpi_handle handle, | 320 | extern acpi_status acpi_pci_osc_control_set(acpi_handle handle, |
311 | u32 *mask, u32 req); | 321 | u32 *mask, u32 req); |
322 | |||
323 | /* Enable _OST when all relevant hotplug operations are enabled */ | ||
324 | #if defined(CONFIG_ACPI_HOTPLUG_CPU) && \ | ||
325 | (defined(CONFIG_ACPI_HOTPLUG_MEMORY) || \ | ||
326 | defined(CONFIG_ACPI_HOTPLUG_MEMORY_MODULE)) && \ | ||
327 | (defined(CONFIG_ACPI_CONTAINER) || \ | ||
328 | defined(CONFIG_ACPI_CONTAINER_MODULE)) | ||
329 | #define ACPI_HOTPLUG_OST | ||
330 | #endif | ||
331 | |||
332 | /* _OST Source Event Code (OSPM Action) */ | ||
333 | #define ACPI_OST_EC_OSPM_SHUTDOWN 0x100 | ||
334 | #define ACPI_OST_EC_OSPM_EJECT 0x103 | ||
335 | #define ACPI_OST_EC_OSPM_INSERTION 0x200 | ||
336 | |||
337 | /* _OST General Processing Status Code */ | ||
338 | #define ACPI_OST_SC_SUCCESS 0x0 | ||
339 | #define ACPI_OST_SC_NON_SPECIFIC_FAILURE 0x1 | ||
340 | #define ACPI_OST_SC_UNRECOGNIZED_NOTIFY 0x2 | ||
341 | |||
342 | /* _OST OS Shutdown Processing (0x100) Status Code */ | ||
343 | #define ACPI_OST_SC_OS_SHUTDOWN_DENIED 0x80 | ||
344 | #define ACPI_OST_SC_OS_SHUTDOWN_IN_PROGRESS 0x81 | ||
345 | #define ACPI_OST_SC_OS_SHUTDOWN_COMPLETED 0x82 | ||
346 | #define ACPI_OST_SC_OS_SHUTDOWN_NOT_SUPPORTED 0x83 | ||
347 | |||
348 | /* _OST Ejection Request (0x3, 0x103) Status Code */ | ||
349 | #define ACPI_OST_SC_EJECT_NOT_SUPPORTED 0x80 | ||
350 | #define ACPI_OST_SC_DEVICE_IN_USE 0x81 | ||
351 | #define ACPI_OST_SC_DEVICE_BUSY 0x82 | ||
352 | #define ACPI_OST_SC_EJECT_DEPENDENCY_BUSY 0x83 | ||
353 | #define ACPI_OST_SC_EJECT_IN_PROGRESS 0x84 | ||
354 | |||
355 | /* _OST Insertion Request (0x200) Status Code */ | ||
356 | #define ACPI_OST_SC_INSERT_IN_PROGRESS 0x80 | ||
357 | #define ACPI_OST_SC_DRIVER_LOAD_FAILURE 0x81 | ||
358 | #define ACPI_OST_SC_INSERT_NOT_SUPPORTED 0x82 | ||
359 | |||
312 | extern void acpi_early_init(void); | 360 | extern void acpi_early_init(void); |
313 | 361 | ||
314 | extern int acpi_nvs_register(__u64 start, __u64 size); | 362 | extern int acpi_nvs_register(__u64 start, __u64 size); |
diff --git a/include/linux/aio.h b/include/linux/aio.h index 2314ad8b3c9c..31ff6dba4872 100644 --- a/include/linux/aio.h +++ b/include/linux/aio.h | |||
@@ -126,21 +126,20 @@ struct kiocb { | |||
126 | struct eventfd_ctx *ki_eventfd; | 126 | struct eventfd_ctx *ki_eventfd; |
127 | }; | 127 | }; |
128 | 128 | ||
129 | #define is_sync_kiocb(iocb) ((iocb)->ki_key == KIOCB_SYNC_KEY) | 129 | static inline bool is_sync_kiocb(struct kiocb *kiocb) |
130 | #define init_sync_kiocb(x, filp) \ | 130 | { |
131 | do { \ | 131 | return kiocb->ki_key == KIOCB_SYNC_KEY; |
132 | struct task_struct *tsk = current; \ | 132 | } |
133 | (x)->ki_flags = 0; \ | 133 | |
134 | (x)->ki_users = 1; \ | 134 | static inline void init_sync_kiocb(struct kiocb *kiocb, struct file *filp) |
135 | (x)->ki_key = KIOCB_SYNC_KEY; \ | 135 | { |
136 | (x)->ki_filp = (filp); \ | 136 | *kiocb = (struct kiocb) { |
137 | (x)->ki_ctx = NULL; \ | 137 | .ki_users = 1, |
138 | (x)->ki_cancel = NULL; \ | 138 | .ki_key = KIOCB_SYNC_KEY, |
139 | (x)->ki_retry = NULL; \ | 139 | .ki_filp = filp, |
140 | (x)->ki_dtor = NULL; \ | 140 | .ki_obj.tsk = current, |
141 | (x)->ki_obj.tsk = tsk; \ | 141 | }; |
142 | (x)->ki_user_data = 0; \ | 142 | } |
143 | } while (0) | ||
144 | 143 | ||
145 | #define AIO_RING_MAGIC 0xa10a10a1 | 144 | #define AIO_RING_MAGIC 0xa10a10a1 |
146 | #define AIO_RING_COMPAT_FEATURES 1 | 145 | #define AIO_RING_COMPAT_FEATURES 1 |
@@ -160,8 +159,6 @@ struct aio_ring { | |||
160 | struct io_event io_events[0]; | 159 | struct io_event io_events[0]; |
161 | }; /* 128 bytes + ring size */ | 160 | }; /* 128 bytes + ring size */ |
162 | 161 | ||
163 | #define aio_ring_avail(info, ring) (((ring)->head + (info)->nr - 1 - (ring)->tail) % (info)->nr) | ||
164 | |||
165 | #define AIO_RING_PAGES 8 | 162 | #define AIO_RING_PAGES 8 |
166 | struct aio_ring_info { | 163 | struct aio_ring_info { |
167 | unsigned long mmap_base; | 164 | unsigned long mmap_base; |
@@ -176,6 +173,12 @@ struct aio_ring_info { | |||
176 | struct page *internal_pages[AIO_RING_PAGES]; | 173 | struct page *internal_pages[AIO_RING_PAGES]; |
177 | }; | 174 | }; |
178 | 175 | ||
176 | static inline unsigned aio_ring_avail(struct aio_ring_info *info, | ||
177 | struct aio_ring *ring) | ||
178 | { | ||
179 | return (ring->head + info->nr - 1 - ring->tail) % info->nr; | ||
180 | } | ||
181 | |||
179 | struct kioctx { | 182 | struct kioctx { |
180 | atomic_t users; | 183 | atomic_t users; |
181 | int dead; | 184 | int dead; |
diff --git a/include/linux/amba/pl022.h b/include/linux/amba/pl022.h index 76dd1b199a1b..fe1d7b283cb6 100644 --- a/include/linux/amba/pl022.h +++ b/include/linux/amba/pl022.h | |||
@@ -231,6 +231,7 @@ enum ssp_chip_select { | |||
231 | struct dma_chan; | 231 | struct dma_chan; |
232 | /** | 232 | /** |
233 | * struct pl022_ssp_master - device.platform_data for SPI controller devices. | 233 | * struct pl022_ssp_master - device.platform_data for SPI controller devices. |
234 | * @bus_id: identifier for this bus | ||
234 | * @num_chipselect: chipselects are used to distinguish individual | 235 | * @num_chipselect: chipselects are used to distinguish individual |
235 | * SPI slaves, and are numbered from zero to num_chipselects - 1. | 236 | * SPI slaves, and are numbered from zero to num_chipselects - 1. |
236 | * each slave has a chipselect signal, but it's common that not | 237 | * each slave has a chipselect signal, but it's common that not |
@@ -259,19 +260,13 @@ struct pl022_ssp_controller { | |||
259 | * struct ssp_config_chip - spi_board_info.controller_data for SPI | 260 | * struct ssp_config_chip - spi_board_info.controller_data for SPI |
260 | * slave devices, copied to spi_device.controller_data. | 261 | * slave devices, copied to spi_device.controller_data. |
261 | * | 262 | * |
262 | * @lbm: used for test purpose to internally connect RX and TX | ||
263 | * @iface: Interface type(Motorola, TI, Microwire, Universal) | 263 | * @iface: Interface type(Motorola, TI, Microwire, Universal) |
264 | * @hierarchy: sets whether interface is master or slave | 264 | * @hierarchy: sets whether interface is master or slave |
265 | * @slave_tx_disable: SSPTXD is disconnected (in slave mode only) | 265 | * @slave_tx_disable: SSPTXD is disconnected (in slave mode only) |
266 | * @clk_freq: Tune freq parameters of SSP(when in master mode) | 266 | * @clk_freq: Tune freq parameters of SSP(when in master mode) |
267 | * @endian_rx: Endianess of Data in Rx FIFO | ||
268 | * @endian_tx: Endianess of Data in Tx FIFO | ||
269 | * @data_size: Width of data element(4 to 32 bits) | ||
270 | * @com_mode: communication mode: polling, Interrupt or DMA | 267 | * @com_mode: communication mode: polling, Interrupt or DMA |
271 | * @rx_lev_trig: Rx FIFO watermark level (for IT & DMA mode) | 268 | * @rx_lev_trig: Rx FIFO watermark level (for IT & DMA mode) |
272 | * @tx_lev_trig: Tx FIFO watermark level (for IT & DMA mode) | 269 | * @tx_lev_trig: Tx FIFO watermark level (for IT & DMA mode) |
273 | * @clk_phase: Motorola SPI interface Clock phase | ||
274 | * @clk_pol: Motorola SPI interface Clock polarity | ||
275 | * @ctrl_len: Microwire interface: Control length | 270 | * @ctrl_len: Microwire interface: Control length |
276 | * @wait_state: Microwire interface: Wait state | 271 | * @wait_state: Microwire interface: Wait state |
277 | * @duplex: Microwire interface: Full/Half duplex | 272 | * @duplex: Microwire interface: Full/Half duplex |
@@ -279,8 +274,6 @@ struct pl022_ssp_controller { | |||
279 | * before sampling the incoming line | 274 | * before sampling the incoming line |
280 | * @cs_control: function pointer to board-specific function to | 275 | * @cs_control: function pointer to board-specific function to |
281 | * assert/deassert I/O port to control HW generation of devices chip-select. | 276 | * assert/deassert I/O port to control HW generation of devices chip-select. |
282 | * @dma_xfer_type: Type of DMA xfer (Mem-to-periph or Periph-to-Periph) | ||
283 | * @dma_config: DMA configuration for SSP controller and peripheral | ||
284 | */ | 277 | */ |
285 | struct pl022_config_chip { | 278 | struct pl022_config_chip { |
286 | enum ssp_interface iface; | 279 | enum ssp_interface iface; |
diff --git a/include/linux/async.h b/include/linux/async.h index 68a9530196f2..7a24fe9b44b4 100644 --- a/include/linux/async.h +++ b/include/linux/async.h | |||
@@ -9,19 +9,47 @@ | |||
9 | * as published by the Free Software Foundation; version 2 | 9 | * as published by the Free Software Foundation; version 2 |
10 | * of the License. | 10 | * of the License. |
11 | */ | 11 | */ |
12 | #ifndef __ASYNC_H__ | ||
13 | #define __ASYNC_H__ | ||
12 | 14 | ||
13 | #include <linux/types.h> | 15 | #include <linux/types.h> |
14 | #include <linux/list.h> | 16 | #include <linux/list.h> |
15 | 17 | ||
16 | typedef u64 async_cookie_t; | 18 | typedef u64 async_cookie_t; |
17 | typedef void (async_func_ptr) (void *data, async_cookie_t cookie); | 19 | typedef void (async_func_ptr) (void *data, async_cookie_t cookie); |
20 | struct async_domain { | ||
21 | struct list_head node; | ||
22 | struct list_head domain; | ||
23 | int count; | ||
24 | unsigned registered:1; | ||
25 | }; | ||
26 | |||
27 | /* | ||
28 | * domain participates in global async_synchronize_full | ||
29 | */ | ||
30 | #define ASYNC_DOMAIN(_name) \ | ||
31 | struct async_domain _name = { .node = LIST_HEAD_INIT(_name.node), \ | ||
32 | .domain = LIST_HEAD_INIT(_name.domain), \ | ||
33 | .count = 0, \ | ||
34 | .registered = 1 } | ||
35 | |||
36 | /* | ||
37 | * domain is free to go out of scope as soon as all pending work is | ||
38 | * complete, this domain does not participate in async_synchronize_full | ||
39 | */ | ||
40 | #define ASYNC_DOMAIN_EXCLUSIVE(_name) \ | ||
41 | struct async_domain _name = { .node = LIST_HEAD_INIT(_name.node), \ | ||
42 | .domain = LIST_HEAD_INIT(_name.domain), \ | ||
43 | .count = 0, \ | ||
44 | .registered = 0 } | ||
18 | 45 | ||
19 | extern async_cookie_t async_schedule(async_func_ptr *ptr, void *data); | 46 | extern async_cookie_t async_schedule(async_func_ptr *ptr, void *data); |
20 | extern async_cookie_t async_schedule_domain(async_func_ptr *ptr, void *data, | 47 | extern async_cookie_t async_schedule_domain(async_func_ptr *ptr, void *data, |
21 | struct list_head *list); | 48 | struct async_domain *domain); |
49 | void async_unregister_domain(struct async_domain *domain); | ||
22 | extern void async_synchronize_full(void); | 50 | extern void async_synchronize_full(void); |
23 | extern void async_synchronize_full_domain(struct list_head *list); | 51 | extern void async_synchronize_full_domain(struct async_domain *domain); |
24 | extern void async_synchronize_cookie(async_cookie_t cookie); | 52 | extern void async_synchronize_cookie(async_cookie_t cookie); |
25 | extern void async_synchronize_cookie_domain(async_cookie_t cookie, | 53 | extern void async_synchronize_cookie_domain(async_cookie_t cookie, |
26 | struct list_head *list); | 54 | struct async_domain *domain); |
27 | 55 | #endif | |
diff --git a/include/linux/ata.h b/include/linux/ata.h index 32df2b6ef0e0..5713d3ac381a 100644 --- a/include/linux/ata.h +++ b/include/linux/ata.h | |||
@@ -578,6 +578,7 @@ static inline int ata_is_data(u8 prot) | |||
578 | ((u64) (id)[(n) + 0]) ) | 578 | ((u64) (id)[(n) + 0]) ) |
579 | 579 | ||
580 | #define ata_id_cdb_intr(id) (((id)[ATA_ID_CONFIG] & 0x60) == 0x20) | 580 | #define ata_id_cdb_intr(id) (((id)[ATA_ID_CONFIG] & 0x60) == 0x20) |
581 | #define ata_id_has_da(id) ((id)[77] & (1 << 4)) | ||
581 | 582 | ||
582 | static inline bool ata_id_has_hipm(const u16 *id) | 583 | static inline bool ata_id_has_hipm(const u16 *id) |
583 | { | 584 | { |
diff --git a/include/linux/backing-dev.h b/include/linux/backing-dev.h index b1038bd686ac..489de625cd25 100644 --- a/include/linux/backing-dev.h +++ b/include/linux/backing-dev.h | |||
@@ -10,7 +10,7 @@ | |||
10 | 10 | ||
11 | #include <linux/percpu_counter.h> | 11 | #include <linux/percpu_counter.h> |
12 | #include <linux/log2.h> | 12 | #include <linux/log2.h> |
13 | #include <linux/proportions.h> | 13 | #include <linux/flex_proportions.h> |
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/fs.h> | 15 | #include <linux/fs.h> |
16 | #include <linux/sched.h> | 16 | #include <linux/sched.h> |
@@ -89,7 +89,7 @@ struct backing_dev_info { | |||
89 | unsigned long dirty_ratelimit; | 89 | unsigned long dirty_ratelimit; |
90 | unsigned long balanced_dirty_ratelimit; | 90 | unsigned long balanced_dirty_ratelimit; |
91 | 91 | ||
92 | struct prop_local_percpu completions; | 92 | struct fprop_local_percpu completions; |
93 | int dirty_exceeded; | 93 | int dirty_exceeded; |
94 | 94 | ||
95 | unsigned int min_ratio; | 95 | unsigned int min_ratio; |
diff --git a/include/linux/bcma/bcma.h b/include/linux/bcma/bcma.h index 8deaf6d050c3..1954a4e305a3 100644 --- a/include/linux/bcma/bcma.h +++ b/include/linux/bcma/bcma.h | |||
@@ -7,6 +7,7 @@ | |||
7 | #include <linux/bcma/bcma_driver_chipcommon.h> | 7 | #include <linux/bcma/bcma_driver_chipcommon.h> |
8 | #include <linux/bcma/bcma_driver_pci.h> | 8 | #include <linux/bcma/bcma_driver_pci.h> |
9 | #include <linux/bcma/bcma_driver_mips.h> | 9 | #include <linux/bcma/bcma_driver_mips.h> |
10 | #include <linux/bcma/bcma_driver_gmac_cmn.h> | ||
10 | #include <linux/ssb/ssb.h> /* SPROM sharing */ | 11 | #include <linux/ssb/ssb.h> /* SPROM sharing */ |
11 | 12 | ||
12 | #include "bcma_regs.h" | 13 | #include "bcma_regs.h" |
@@ -70,6 +71,13 @@ struct bcma_host_ops { | |||
70 | 71 | ||
71 | /* Core-ID values. */ | 72 | /* Core-ID values. */ |
72 | #define BCMA_CORE_OOB_ROUTER 0x367 /* Out of band */ | 73 | #define BCMA_CORE_OOB_ROUTER 0x367 /* Out of band */ |
74 | #define BCMA_CORE_4706_CHIPCOMMON 0x500 | ||
75 | #define BCMA_CORE_4706_SOC_RAM 0x50E | ||
76 | #define BCMA_CORE_4706_MAC_GBIT 0x52D | ||
77 | #define BCMA_CORE_AMEMC 0x52E /* DDR1/2 memory controller core */ | ||
78 | #define BCMA_CORE_ALTA 0x534 /* I2S core */ | ||
79 | #define BCMA_CORE_4706_MAC_GBIT_COMMON 0x5DC | ||
80 | #define BCMA_CORE_DDR23_PHY 0x5DD | ||
73 | #define BCMA_CORE_INVALID 0x700 | 81 | #define BCMA_CORE_INVALID 0x700 |
74 | #define BCMA_CORE_CHIPCOMMON 0x800 | 82 | #define BCMA_CORE_CHIPCOMMON 0x800 |
75 | #define BCMA_CORE_ILINE20 0x801 | 83 | #define BCMA_CORE_ILINE20 0x801 |
@@ -130,6 +138,36 @@ struct bcma_host_ops { | |||
130 | 138 | ||
131 | #define BCMA_MAX_NR_CORES 16 | 139 | #define BCMA_MAX_NR_CORES 16 |
132 | 140 | ||
141 | /* Chip IDs of PCIe devices */ | ||
142 | #define BCMA_CHIP_ID_BCM4313 0x4313 | ||
143 | #define BCMA_CHIP_ID_BCM43224 43224 | ||
144 | #define BCMA_PKG_ID_BCM43224_FAB_CSM 0x8 | ||
145 | #define BCMA_PKG_ID_BCM43224_FAB_SMIC 0xa | ||
146 | #define BCMA_CHIP_ID_BCM43225 43225 | ||
147 | #define BCMA_CHIP_ID_BCM43227 43227 | ||
148 | #define BCMA_CHIP_ID_BCM43228 43228 | ||
149 | #define BCMA_CHIP_ID_BCM43421 43421 | ||
150 | #define BCMA_CHIP_ID_BCM43428 43428 | ||
151 | #define BCMA_CHIP_ID_BCM43431 43431 | ||
152 | #define BCMA_CHIP_ID_BCM43460 43460 | ||
153 | #define BCMA_CHIP_ID_BCM4331 0x4331 | ||
154 | #define BCMA_CHIP_ID_BCM6362 0x6362 | ||
155 | #define BCMA_CHIP_ID_BCM4360 0x4360 | ||
156 | #define BCMA_CHIP_ID_BCM4352 0x4352 | ||
157 | |||
158 | /* Chip IDs of SoCs */ | ||
159 | #define BCMA_CHIP_ID_BCM4706 0x5300 | ||
160 | #define BCMA_CHIP_ID_BCM4716 0x4716 | ||
161 | #define BCMA_PKG_ID_BCM4716 8 | ||
162 | #define BCMA_PKG_ID_BCM4717 9 | ||
163 | #define BCMA_PKG_ID_BCM4718 10 | ||
164 | #define BCMA_CHIP_ID_BCM47162 47162 | ||
165 | #define BCMA_CHIP_ID_BCM4748 0x4748 | ||
166 | #define BCMA_CHIP_ID_BCM4749 0x4749 | ||
167 | #define BCMA_CHIP_ID_BCM5356 0x5356 | ||
168 | #define BCMA_CHIP_ID_BCM5357 0x5357 | ||
169 | #define BCMA_CHIP_ID_BCM53572 53572 | ||
170 | |||
133 | struct bcma_device { | 171 | struct bcma_device { |
134 | struct bcma_bus *bus; | 172 | struct bcma_bus *bus; |
135 | struct bcma_device_id id; | 173 | struct bcma_device_id id; |
@@ -215,6 +253,7 @@ struct bcma_bus { | |||
215 | struct bcma_drv_cc drv_cc; | 253 | struct bcma_drv_cc drv_cc; |
216 | struct bcma_drv_pci drv_pci; | 254 | struct bcma_drv_pci drv_pci; |
217 | struct bcma_drv_mips drv_mips; | 255 | struct bcma_drv_mips drv_mips; |
256 | struct bcma_drv_gmac_cmn drv_gmac_cmn; | ||
218 | 257 | ||
219 | /* We decided to share SPROM struct with SSB as long as we do not need | 258 | /* We decided to share SPROM struct with SSB as long as we do not need |
220 | * any hacks for BCMA. This simplifies drivers code. */ | 259 | * any hacks for BCMA. This simplifies drivers code. */ |
diff --git a/include/linux/bcma/bcma_driver_chipcommon.h b/include/linux/bcma/bcma_driver_chipcommon.h index 8bbfe31fbac8..3c80885fa829 100644 --- a/include/linux/bcma/bcma_driver_chipcommon.h +++ b/include/linux/bcma/bcma_driver_chipcommon.h | |||
@@ -24,7 +24,7 @@ | |||
24 | #define BCMA_CC_FLASHT_NONE 0x00000000 /* No flash */ | 24 | #define BCMA_CC_FLASHT_NONE 0x00000000 /* No flash */ |
25 | #define BCMA_CC_FLASHT_STSER 0x00000100 /* ST serial flash */ | 25 | #define BCMA_CC_FLASHT_STSER 0x00000100 /* ST serial flash */ |
26 | #define BCMA_CC_FLASHT_ATSER 0x00000200 /* Atmel serial flash */ | 26 | #define BCMA_CC_FLASHT_ATSER 0x00000200 /* Atmel serial flash */ |
27 | #define BCMA_CC_FLASHT_NFLASH 0x00000200 | 27 | #define BCMA_CC_FLASHT_NFLASH 0x00000200 /* NAND flash */ |
28 | #define BCMA_CC_FLASHT_PARA 0x00000700 /* Parallel flash */ | 28 | #define BCMA_CC_FLASHT_PARA 0x00000700 /* Parallel flash */ |
29 | #define BCMA_CC_CAP_PLLT 0x00038000 /* PLL Type */ | 29 | #define BCMA_CC_CAP_PLLT 0x00038000 /* PLL Type */ |
30 | #define BCMA_PLLTYPE_NONE 0x00000000 | 30 | #define BCMA_PLLTYPE_NONE 0x00000000 |
@@ -45,6 +45,7 @@ | |||
45 | #define BCMA_CC_CAP_PMU 0x10000000 /* PMU available (rev >= 20) */ | 45 | #define BCMA_CC_CAP_PMU 0x10000000 /* PMU available (rev >= 20) */ |
46 | #define BCMA_CC_CAP_ECI 0x20000000 /* ECI available (rev >= 20) */ | 46 | #define BCMA_CC_CAP_ECI 0x20000000 /* ECI available (rev >= 20) */ |
47 | #define BCMA_CC_CAP_SPROM 0x40000000 /* SPROM present */ | 47 | #define BCMA_CC_CAP_SPROM 0x40000000 /* SPROM present */ |
48 | #define BCMA_CC_CAP_NFLASH 0x80000000 /* NAND flash present (rev >= 35 or BCM4706?) */ | ||
48 | #define BCMA_CC_CORECTL 0x0008 | 49 | #define BCMA_CC_CORECTL 0x0008 |
49 | #define BCMA_CC_CORECTL_UARTCLK0 0x00000001 /* Drive UART with internal clock */ | 50 | #define BCMA_CC_CORECTL_UARTCLK0 0x00000001 /* Drive UART with internal clock */ |
50 | #define BCMA_CC_CORECTL_SE 0x00000002 /* sync clk out enable (corerev >= 3) */ | 51 | #define BCMA_CC_CORECTL_SE 0x00000002 /* sync clk out enable (corerev >= 3) */ |
@@ -88,6 +89,11 @@ | |||
88 | #define BCMA_CC_CHIPST_4313_OTP_PRESENT 2 | 89 | #define BCMA_CC_CHIPST_4313_OTP_PRESENT 2 |
89 | #define BCMA_CC_CHIPST_4331_SPROM_PRESENT 2 | 90 | #define BCMA_CC_CHIPST_4331_SPROM_PRESENT 2 |
90 | #define BCMA_CC_CHIPST_4331_OTP_PRESENT 4 | 91 | #define BCMA_CC_CHIPST_4331_OTP_PRESENT 4 |
92 | #define BCMA_CC_CHIPST_4706_PKG_OPTION BIT(0) /* 0: full-featured package 1: low-cost package */ | ||
93 | #define BCMA_CC_CHIPST_4706_SFLASH_PRESENT BIT(1) /* 0: parallel, 1: serial flash is present */ | ||
94 | #define BCMA_CC_CHIPST_4706_SFLASH_TYPE BIT(2) /* 0: 8b-p/ST-s flash, 1: 16b-p/Atmal-s flash */ | ||
95 | #define BCMA_CC_CHIPST_4706_MIPS_BENDIAN BIT(3) /* 0: little, 1: big endian */ | ||
96 | #define BCMA_CC_CHIPST_4706_PCIE1_DISABLE BIT(5) /* PCIE1 enable strap pin */ | ||
91 | #define BCMA_CC_JCMD 0x0030 /* Rev >= 10 only */ | 97 | #define BCMA_CC_JCMD 0x0030 /* Rev >= 10 only */ |
92 | #define BCMA_CC_JCMD_START 0x80000000 | 98 | #define BCMA_CC_JCMD_START 0x80000000 |
93 | #define BCMA_CC_JCMD_BUSY 0x80000000 | 99 | #define BCMA_CC_JCMD_BUSY 0x80000000 |
@@ -117,10 +123,58 @@ | |||
117 | #define BCMA_CC_JCTL_EXT_EN 2 /* Enable external targets */ | 123 | #define BCMA_CC_JCTL_EXT_EN 2 /* Enable external targets */ |
118 | #define BCMA_CC_JCTL_EN 1 /* Enable Jtag master */ | 124 | #define BCMA_CC_JCTL_EN 1 /* Enable Jtag master */ |
119 | #define BCMA_CC_FLASHCTL 0x0040 | 125 | #define BCMA_CC_FLASHCTL 0x0040 |
126 | /* Start/busy bit in flashcontrol */ | ||
127 | #define BCMA_CC_FLASHCTL_OPCODE 0x000000ff | ||
128 | #define BCMA_CC_FLASHCTL_ACTION 0x00000700 | ||
129 | #define BCMA_CC_FLASHCTL_CS_ACTIVE 0x00001000 /* Chip Select Active, rev >= 20 */ | ||
120 | #define BCMA_CC_FLASHCTL_START 0x80000000 | 130 | #define BCMA_CC_FLASHCTL_START 0x80000000 |
121 | #define BCMA_CC_FLASHCTL_BUSY BCMA_CC_FLASHCTL_START | 131 | #define BCMA_CC_FLASHCTL_BUSY BCMA_CC_FLASHCTL_START |
132 | /* Flashcontrol action + opcodes for ST flashes */ | ||
133 | #define BCMA_CC_FLASHCTL_ST_WREN 0x0006 /* Write Enable */ | ||
134 | #define BCMA_CC_FLASHCTL_ST_WRDIS 0x0004 /* Write Disable */ | ||
135 | #define BCMA_CC_FLASHCTL_ST_RDSR 0x0105 /* Read Status Register */ | ||
136 | #define BCMA_CC_FLASHCTL_ST_WRSR 0x0101 /* Write Status Register */ | ||
137 | #define BCMA_CC_FLASHCTL_ST_READ 0x0303 /* Read Data Bytes */ | ||
138 | #define BCMA_CC_FLASHCTL_ST_PP 0x0302 /* Page Program */ | ||
139 | #define BCMA_CC_FLASHCTL_ST_SE 0x02d8 /* Sector Erase */ | ||
140 | #define BCMA_CC_FLASHCTL_ST_BE 0x00c7 /* Bulk Erase */ | ||
141 | #define BCMA_CC_FLASHCTL_ST_DP 0x00b9 /* Deep Power-down */ | ||
142 | #define BCMA_CC_FLASHCTL_ST_RES 0x03ab /* Read Electronic Signature */ | ||
143 | #define BCMA_CC_FLASHCTL_ST_CSA 0x1000 /* Keep chip select asserted */ | ||
144 | #define BCMA_CC_FLASHCTL_ST_SSE 0x0220 /* Sub-sector Erase */ | ||
145 | /* Flashcontrol action + opcodes for Atmel flashes */ | ||
146 | #define BCMA_CC_FLASHCTL_AT_READ 0x07e8 | ||
147 | #define BCMA_CC_FLASHCTL_AT_PAGE_READ 0x07d2 | ||
148 | #define BCMA_CC_FLASHCTL_AT_STATUS 0x01d7 | ||
149 | #define BCMA_CC_FLASHCTL_AT_BUF1_WRITE 0x0384 | ||
150 | #define BCMA_CC_FLASHCTL_AT_BUF2_WRITE 0x0387 | ||
151 | #define BCMA_CC_FLASHCTL_AT_BUF1_ERASE_PROGRAM 0x0283 | ||
152 | #define BCMA_CC_FLASHCTL_AT_BUF2_ERASE_PROGRAM 0x0286 | ||
153 | #define BCMA_CC_FLASHCTL_AT_BUF1_PROGRAM 0x0288 | ||
154 | #define BCMA_CC_FLASHCTL_AT_BUF2_PROGRAM 0x0289 | ||
155 | #define BCMA_CC_FLASHCTL_AT_PAGE_ERASE 0x0281 | ||
156 | #define BCMA_CC_FLASHCTL_AT_BLOCK_ERASE 0x0250 | ||
157 | #define BCMA_CC_FLASHCTL_AT_BUF1_WRITE_ERASE_PROGRAM 0x0382 | ||
158 | #define BCMA_CC_FLASHCTL_AT_BUF2_WRITE_ERASE_PROGRAM 0x0385 | ||
159 | #define BCMA_CC_FLASHCTL_AT_BUF1_LOAD 0x0253 | ||
160 | #define BCMA_CC_FLASHCTL_AT_BUF2_LOAD 0x0255 | ||
161 | #define BCMA_CC_FLASHCTL_AT_BUF1_COMPARE 0x0260 | ||
162 | #define BCMA_CC_FLASHCTL_AT_BUF2_COMPARE 0x0261 | ||
163 | #define BCMA_CC_FLASHCTL_AT_BUF1_REPROGRAM 0x0258 | ||
164 | #define BCMA_CC_FLASHCTL_AT_BUF2_REPROGRAM 0x0259 | ||
122 | #define BCMA_CC_FLASHADDR 0x0044 | 165 | #define BCMA_CC_FLASHADDR 0x0044 |
123 | #define BCMA_CC_FLASHDATA 0x0048 | 166 | #define BCMA_CC_FLASHDATA 0x0048 |
167 | /* Status register bits for ST flashes */ | ||
168 | #define BCMA_CC_FLASHDATA_ST_WIP 0x01 /* Write In Progress */ | ||
169 | #define BCMA_CC_FLASHDATA_ST_WEL 0x02 /* Write Enable Latch */ | ||
170 | #define BCMA_CC_FLASHDATA_ST_BP_MASK 0x1c /* Block Protect */ | ||
171 | #define BCMA_CC_FLASHDATA_ST_BP_SHIFT 2 | ||
172 | #define BCMA_CC_FLASHDATA_ST_SRWD 0x80 /* Status Register Write Disable */ | ||
173 | /* Status register bits for Atmel flashes */ | ||
174 | #define BCMA_CC_FLASHDATA_AT_READY 0x80 | ||
175 | #define BCMA_CC_FLASHDATA_AT_MISMATCH 0x40 | ||
176 | #define BCMA_CC_FLASHDATA_AT_ID_MASK 0x38 | ||
177 | #define BCMA_CC_FLASHDATA_AT_ID_SHIFT 3 | ||
124 | #define BCMA_CC_BCAST_ADDR 0x0050 | 178 | #define BCMA_CC_BCAST_ADDR 0x0050 |
125 | #define BCMA_CC_BCAST_DATA 0x0054 | 179 | #define BCMA_CC_BCAST_DATA 0x0054 |
126 | #define BCMA_CC_GPIOPULLUP 0x0058 /* Rev >= 20 only */ | 180 | #define BCMA_CC_GPIOPULLUP 0x0058 /* Rev >= 20 only */ |
@@ -280,6 +334,15 @@ | |||
280 | 334 | ||
281 | /* 4706 PMU */ | 335 | /* 4706 PMU */ |
282 | #define BCMA_CC_PMU4706_MAINPLL_PLL0 0 | 336 | #define BCMA_CC_PMU4706_MAINPLL_PLL0 0 |
337 | #define BCMA_CC_PMU6_4706_PROCPLL_OFF 4 /* The CPU PLL */ | ||
338 | #define BCMA_CC_PMU6_4706_PROC_P2DIV_MASK 0x000f0000 | ||
339 | #define BCMA_CC_PMU6_4706_PROC_P2DIV_SHIFT 16 | ||
340 | #define BCMA_CC_PMU6_4706_PROC_P1DIV_MASK 0x0000f000 | ||
341 | #define BCMA_CC_PMU6_4706_PROC_P1DIV_SHIFT 12 | ||
342 | #define BCMA_CC_PMU6_4706_PROC_NDIV_INT_MASK 0x00000ff8 | ||
343 | #define BCMA_CC_PMU6_4706_PROC_NDIV_INT_SHIFT 3 | ||
344 | #define BCMA_CC_PMU6_4706_PROC_NDIV_MODE_MASK 0x00000007 | ||
345 | #define BCMA_CC_PMU6_4706_PROC_NDIV_MODE_SHIFT 0 | ||
283 | 346 | ||
284 | /* ALP clock on pre-PMU chips */ | 347 | /* ALP clock on pre-PMU chips */ |
285 | #define BCMA_CC_PMU_ALP_CLOCK 20000000 | 348 | #define BCMA_CC_PMU_ALP_CLOCK 20000000 |
@@ -308,6 +371,19 @@ | |||
308 | #define BCMA_CC_PPL_PCHI_OFF 5 | 371 | #define BCMA_CC_PPL_PCHI_OFF 5 |
309 | #define BCMA_CC_PPL_PCHI_MASK 0x0000003f | 372 | #define BCMA_CC_PPL_PCHI_MASK 0x0000003f |
310 | 373 | ||
374 | #define BCMA_CC_PMU_PLL_CTL0 0 | ||
375 | #define BCMA_CC_PMU_PLL_CTL1 1 | ||
376 | #define BCMA_CC_PMU_PLL_CTL2 2 | ||
377 | #define BCMA_CC_PMU_PLL_CTL3 3 | ||
378 | #define BCMA_CC_PMU_PLL_CTL4 4 | ||
379 | #define BCMA_CC_PMU_PLL_CTL5 5 | ||
380 | |||
381 | #define BCMA_CC_PMU1_PLL0_PC0_P1DIV_MASK 0x00f00000 | ||
382 | #define BCMA_CC_PMU1_PLL0_PC0_P1DIV_SHIFT 20 | ||
383 | |||
384 | #define BCMA_CC_PMU1_PLL0_PC2_NDIV_INT_MASK 0x1ff00000 | ||
385 | #define BCMA_CC_PMU1_PLL0_PC2_NDIV_INT_SHIFT 20 | ||
386 | |||
311 | /* BCM4331 ChipControl numbers. */ | 387 | /* BCM4331 ChipControl numbers. */ |
312 | #define BCMA_CHIPCTL_4331_BT_COEXIST BIT(0) /* 0 disable */ | 388 | #define BCMA_CHIPCTL_4331_BT_COEXIST BIT(0) /* 0 disable */ |
313 | #define BCMA_CHIPCTL_4331_SECI BIT(1) /* 0 SECI is disabled (JATG functional) */ | 389 | #define BCMA_CHIPCTL_4331_SECI BIT(1) /* 0 SECI is disabled (JATG functional) */ |
@@ -321,9 +397,18 @@ | |||
321 | #define BCMA_CHIPCTL_4331_OVR_PIPEAUXPWRDOWN BIT(9) /* override core control on pipe_AuxPowerDown */ | 397 | #define BCMA_CHIPCTL_4331_OVR_PIPEAUXPWRDOWN BIT(9) /* override core control on pipe_AuxPowerDown */ |
322 | #define BCMA_CHIPCTL_4331_PCIE_AUXCLKEN BIT(10) /* pcie_auxclkenable */ | 398 | #define BCMA_CHIPCTL_4331_PCIE_AUXCLKEN BIT(10) /* pcie_auxclkenable */ |
323 | #define BCMA_CHIPCTL_4331_PCIE_PIPE_PLLDOWN BIT(11) /* pcie_pipe_pllpowerdown */ | 399 | #define BCMA_CHIPCTL_4331_PCIE_PIPE_PLLDOWN BIT(11) /* pcie_pipe_pllpowerdown */ |
400 | #define BCMA_CHIPCTL_4331_EXTPA_EN2 BIT(12) /* 0 ext pa disable, 1 ext pa enabled */ | ||
324 | #define BCMA_CHIPCTL_4331_BT_SHD0_ON_GPIO4 BIT(16) /* enable bt_shd0 at gpio4 */ | 401 | #define BCMA_CHIPCTL_4331_BT_SHD0_ON_GPIO4 BIT(16) /* enable bt_shd0 at gpio4 */ |
325 | #define BCMA_CHIPCTL_4331_BT_SHD1_ON_GPIO5 BIT(17) /* enable bt_shd1 at gpio5 */ | 402 | #define BCMA_CHIPCTL_4331_BT_SHD1_ON_GPIO5 BIT(17) /* enable bt_shd1 at gpio5 */ |
326 | 403 | ||
404 | /* 43224 chip-specific ChipControl register bits */ | ||
405 | #define BCMA_CCTRL_43224_GPIO_TOGGLE 0x8000 /* gpio[3:0] pins as btcoex or s/w gpio */ | ||
406 | #define BCMA_CCTRL_43224A0_12MA_LED_DRIVE 0x00F000F0 /* 12 mA drive strength */ | ||
407 | #define BCMA_CCTRL_43224B0_12MA_LED_DRIVE 0xF0 /* 12 mA drive strength for later 43224s */ | ||
408 | |||
409 | /* 4313 Chip specific ChipControl register bits */ | ||
410 | #define BCMA_CCTRL_4313_12MA_LED_DRIVE 0x00000007 /* 12 mA drive strengh for later 4313 */ | ||
411 | |||
327 | /* Data for the PMU, if available. | 412 | /* Data for the PMU, if available. |
328 | * Check availability with ((struct bcma_chipcommon)->capabilities & BCMA_CC_CAP_PMU) | 413 | * Check availability with ((struct bcma_chipcommon)->capabilities & BCMA_CC_CAP_PMU) |
329 | */ | 414 | */ |
@@ -411,5 +496,6 @@ extern void bcma_chipco_chipctl_maskset(struct bcma_drv_cc *cc, | |||
411 | u32 offset, u32 mask, u32 set); | 496 | u32 offset, u32 mask, u32 set); |
412 | extern void bcma_chipco_regctl_maskset(struct bcma_drv_cc *cc, | 497 | extern void bcma_chipco_regctl_maskset(struct bcma_drv_cc *cc, |
413 | u32 offset, u32 mask, u32 set); | 498 | u32 offset, u32 mask, u32 set); |
499 | extern void bcma_pmu_spuravoid_pllupdate(struct bcma_drv_cc *cc, int spuravoid); | ||
414 | 500 | ||
415 | #endif /* LINUX_BCMA_DRIVER_CC_H_ */ | 501 | #endif /* LINUX_BCMA_DRIVER_CC_H_ */ |
diff --git a/include/linux/bcma/bcma_driver_gmac_cmn.h b/include/linux/bcma/bcma_driver_gmac_cmn.h new file mode 100644 index 000000000000..def894b83b0d --- /dev/null +++ b/include/linux/bcma/bcma_driver_gmac_cmn.h | |||
@@ -0,0 +1,100 @@ | |||
1 | #ifndef LINUX_BCMA_DRIVER_GMAC_CMN_H_ | ||
2 | #define LINUX_BCMA_DRIVER_GMAC_CMN_H_ | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | |||
6 | #define BCMA_GMAC_CMN_STAG0 0x000 | ||
7 | #define BCMA_GMAC_CMN_STAG1 0x004 | ||
8 | #define BCMA_GMAC_CMN_STAG2 0x008 | ||
9 | #define BCMA_GMAC_CMN_STAG3 0x00C | ||
10 | #define BCMA_GMAC_CMN_PARSER_CTL 0x020 | ||
11 | #define BCMA_GMAC_CMN_MIB_MAX_LEN 0x024 | ||
12 | #define BCMA_GMAC_CMN_PHY_ACCESS 0x100 | ||
13 | #define BCMA_GMAC_CMN_PA_DATA_MASK 0x0000ffff | ||
14 | #define BCMA_GMAC_CMN_PA_ADDR_MASK 0x001f0000 | ||
15 | #define BCMA_GMAC_CMN_PA_ADDR_SHIFT 16 | ||
16 | #define BCMA_GMAC_CMN_PA_REG_MASK 0x1f000000 | ||
17 | #define BCMA_GMAC_CMN_PA_REG_SHIFT 24 | ||
18 | #define BCMA_GMAC_CMN_PA_WRITE 0x20000000 | ||
19 | #define BCMA_GMAC_CMN_PA_START 0x40000000 | ||
20 | #define BCMA_GMAC_CMN_PHY_CTL 0x104 | ||
21 | #define BCMA_GMAC_CMN_PC_EPA_MASK 0x0000001f | ||
22 | #define BCMA_GMAC_CMN_PC_MCT_MASK 0x007f0000 | ||
23 | #define BCMA_GMAC_CMN_PC_MCT_SHIFT 16 | ||
24 | #define BCMA_GMAC_CMN_PC_MTE 0x00800000 | ||
25 | #define BCMA_GMAC_CMN_GMAC0_RGMII_CTL 0x110 | ||
26 | #define BCMA_GMAC_CMN_CFP_ACCESS 0x200 | ||
27 | #define BCMA_GMAC_CMN_CFP_TCAM_DATA0 0x210 | ||
28 | #define BCMA_GMAC_CMN_CFP_TCAM_DATA1 0x214 | ||
29 | #define BCMA_GMAC_CMN_CFP_TCAM_DATA2 0x218 | ||
30 | #define BCMA_GMAC_CMN_CFP_TCAM_DATA3 0x21C | ||
31 | #define BCMA_GMAC_CMN_CFP_TCAM_DATA4 0x220 | ||
32 | #define BCMA_GMAC_CMN_CFP_TCAM_DATA5 0x224 | ||
33 | #define BCMA_GMAC_CMN_CFP_TCAM_DATA6 0x228 | ||
34 | #define BCMA_GMAC_CMN_CFP_TCAM_DATA7 0x22C | ||
35 | #define BCMA_GMAC_CMN_CFP_TCAM_MASK0 0x230 | ||
36 | #define BCMA_GMAC_CMN_CFP_TCAM_MASK1 0x234 | ||
37 | #define BCMA_GMAC_CMN_CFP_TCAM_MASK2 0x238 | ||
38 | #define BCMA_GMAC_CMN_CFP_TCAM_MASK3 0x23C | ||
39 | #define BCMA_GMAC_CMN_CFP_TCAM_MASK4 0x240 | ||
40 | #define BCMA_GMAC_CMN_CFP_TCAM_MASK5 0x244 | ||
41 | #define BCMA_GMAC_CMN_CFP_TCAM_MASK6 0x248 | ||
42 | #define BCMA_GMAC_CMN_CFP_TCAM_MASK7 0x24C | ||
43 | #define BCMA_GMAC_CMN_CFP_ACTION_DATA 0x250 | ||
44 | #define BCMA_GMAC_CMN_TCAM_BIST_CTL 0x2A0 | ||
45 | #define BCMA_GMAC_CMN_TCAM_BIST_STATUS 0x2A4 | ||
46 | #define BCMA_GMAC_CMN_TCAM_CMP_STATUS 0x2A8 | ||
47 | #define BCMA_GMAC_CMN_TCAM_DISABLE 0x2AC | ||
48 | #define BCMA_GMAC_CMN_TCAM_TEST_CTL 0x2F0 | ||
49 | #define BCMA_GMAC_CMN_UDF_0_A3_A0 0x300 | ||
50 | #define BCMA_GMAC_CMN_UDF_0_A7_A4 0x304 | ||
51 | #define BCMA_GMAC_CMN_UDF_0_A8 0x308 | ||
52 | #define BCMA_GMAC_CMN_UDF_1_A3_A0 0x310 | ||
53 | #define BCMA_GMAC_CMN_UDF_1_A7_A4 0x314 | ||
54 | #define BCMA_GMAC_CMN_UDF_1_A8 0x318 | ||
55 | #define BCMA_GMAC_CMN_UDF_2_A3_A0 0x320 | ||
56 | #define BCMA_GMAC_CMN_UDF_2_A7_A4 0x324 | ||
57 | #define BCMA_GMAC_CMN_UDF_2_A8 0x328 | ||
58 | #define BCMA_GMAC_CMN_UDF_0_B3_B0 0x330 | ||
59 | #define BCMA_GMAC_CMN_UDF_0_B7_B4 0x334 | ||
60 | #define BCMA_GMAC_CMN_UDF_0_B8 0x338 | ||
61 | #define BCMA_GMAC_CMN_UDF_1_B3_B0 0x340 | ||
62 | #define BCMA_GMAC_CMN_UDF_1_B7_B4 0x344 | ||
63 | #define BCMA_GMAC_CMN_UDF_1_B8 0x348 | ||
64 | #define BCMA_GMAC_CMN_UDF_2_B3_B0 0x350 | ||
65 | #define BCMA_GMAC_CMN_UDF_2_B7_B4 0x354 | ||
66 | #define BCMA_GMAC_CMN_UDF_2_B8 0x358 | ||
67 | #define BCMA_GMAC_CMN_UDF_0_C3_C0 0x360 | ||
68 | #define BCMA_GMAC_CMN_UDF_0_C7_C4 0x364 | ||
69 | #define BCMA_GMAC_CMN_UDF_0_C8 0x368 | ||
70 | #define BCMA_GMAC_CMN_UDF_1_C3_C0 0x370 | ||
71 | #define BCMA_GMAC_CMN_UDF_1_C7_C4 0x374 | ||
72 | #define BCMA_GMAC_CMN_UDF_1_C8 0x378 | ||
73 | #define BCMA_GMAC_CMN_UDF_2_C3_C0 0x380 | ||
74 | #define BCMA_GMAC_CMN_UDF_2_C7_C4 0x384 | ||
75 | #define BCMA_GMAC_CMN_UDF_2_C8 0x388 | ||
76 | #define BCMA_GMAC_CMN_UDF_0_D3_D0 0x390 | ||
77 | #define BCMA_GMAC_CMN_UDF_0_D7_D4 0x394 | ||
78 | #define BCMA_GMAC_CMN_UDF_0_D11_D8 0x394 | ||
79 | |||
80 | struct bcma_drv_gmac_cmn { | ||
81 | struct bcma_device *core; | ||
82 | |||
83 | /* Drivers accessing BCMA_GMAC_CMN_PHY_ACCESS and | ||
84 | * BCMA_GMAC_CMN_PHY_CTL need to take that mutex first. */ | ||
85 | struct mutex phy_mutex; | ||
86 | }; | ||
87 | |||
88 | /* Register access */ | ||
89 | #define gmac_cmn_read16(gc, offset) bcma_read16((gc)->core, offset) | ||
90 | #define gmac_cmn_read32(gc, offset) bcma_read32((gc)->core, offset) | ||
91 | #define gmac_cmn_write16(gc, offset, val) bcma_write16((gc)->core, offset, val) | ||
92 | #define gmac_cmn_write32(gc, offset, val) bcma_write32((gc)->core, offset, val) | ||
93 | |||
94 | #ifdef CONFIG_BCMA_DRIVER_GMAC_CMN | ||
95 | extern void __devinit bcma_core_gmac_cmn_init(struct bcma_drv_gmac_cmn *gc); | ||
96 | #else | ||
97 | static inline void bcma_core_gmac_cmn_init(struct bcma_drv_gmac_cmn *gc) { } | ||
98 | #endif | ||
99 | |||
100 | #endif /* LINUX_BCMA_DRIVER_GMAC_CMN_H_ */ | ||
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index ba43f408baa3..07954b05b86c 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
@@ -827,7 +827,6 @@ extern bool __blk_end_request_err(struct request *rq, int error); | |||
827 | extern void blk_complete_request(struct request *); | 827 | extern void blk_complete_request(struct request *); |
828 | extern void __blk_complete_request(struct request *); | 828 | extern void __blk_complete_request(struct request *); |
829 | extern void blk_abort_request(struct request *); | 829 | extern void blk_abort_request(struct request *); |
830 | extern void blk_abort_queue(struct request_queue *); | ||
831 | extern void blk_unprep_request(struct request *); | 830 | extern void blk_unprep_request(struct request *); |
832 | 831 | ||
833 | /* | 832 | /* |
diff --git a/include/linux/bootmem.h b/include/linux/bootmem.h index 324fe08ea3b1..6d6795d46a75 100644 --- a/include/linux/bootmem.h +++ b/include/linux/bootmem.h | |||
@@ -91,6 +91,11 @@ extern void *__alloc_bootmem_node_nopanic(pg_data_t *pgdat, | |||
91 | unsigned long size, | 91 | unsigned long size, |
92 | unsigned long align, | 92 | unsigned long align, |
93 | unsigned long goal); | 93 | unsigned long goal); |
94 | void *___alloc_bootmem_node_nopanic(pg_data_t *pgdat, | ||
95 | unsigned long size, | ||
96 | unsigned long align, | ||
97 | unsigned long goal, | ||
98 | unsigned long limit); | ||
94 | extern void *__alloc_bootmem_low(unsigned long size, | 99 | extern void *__alloc_bootmem_low(unsigned long size, |
95 | unsigned long align, | 100 | unsigned long align, |
96 | unsigned long goal); | 101 | unsigned long goal); |
diff --git a/include/linux/can.h b/include/linux/can.h index 9a19bcb3eeaf..018055efc034 100644 --- a/include/linux/can.h +++ b/include/linux/can.h | |||
@@ -21,7 +21,7 @@ | |||
21 | /* special address description flags for the CAN_ID */ | 21 | /* special address description flags for the CAN_ID */ |
22 | #define CAN_EFF_FLAG 0x80000000U /* EFF/SFF is set in the MSB */ | 22 | #define CAN_EFF_FLAG 0x80000000U /* EFF/SFF is set in the MSB */ |
23 | #define CAN_RTR_FLAG 0x40000000U /* remote transmission request */ | 23 | #define CAN_RTR_FLAG 0x40000000U /* remote transmission request */ |
24 | #define CAN_ERR_FLAG 0x20000000U /* error frame */ | 24 | #define CAN_ERR_FLAG 0x20000000U /* error message frame */ |
25 | 25 | ||
26 | /* valid bits in CAN ID for frame formats */ | 26 | /* valid bits in CAN ID for frame formats */ |
27 | #define CAN_SFF_MASK 0x000007FFU /* standard frame format (SFF) */ | 27 | #define CAN_SFF_MASK 0x000007FFU /* standard frame format (SFF) */ |
@@ -32,32 +32,84 @@ | |||
32 | * Controller Area Network Identifier structure | 32 | * Controller Area Network Identifier structure |
33 | * | 33 | * |
34 | * bit 0-28 : CAN identifier (11/29 bit) | 34 | * bit 0-28 : CAN identifier (11/29 bit) |
35 | * bit 29 : error frame flag (0 = data frame, 1 = error frame) | 35 | * bit 29 : error message frame flag (0 = data frame, 1 = error message) |
36 | * bit 30 : remote transmission request flag (1 = rtr frame) | 36 | * bit 30 : remote transmission request flag (1 = rtr frame) |
37 | * bit 31 : frame format flag (0 = standard 11 bit, 1 = extended 29 bit) | 37 | * bit 31 : frame format flag (0 = standard 11 bit, 1 = extended 29 bit) |
38 | */ | 38 | */ |
39 | typedef __u32 canid_t; | 39 | typedef __u32 canid_t; |
40 | 40 | ||
41 | #define CAN_SFF_ID_BITS 11 | ||
42 | #define CAN_EFF_ID_BITS 29 | ||
43 | |||
41 | /* | 44 | /* |
42 | * Controller Area Network Error Frame Mask structure | 45 | * Controller Area Network Error Message Frame Mask structure |
43 | * | 46 | * |
44 | * bit 0-28 : error class mask (see include/linux/can/error.h) | 47 | * bit 0-28 : error class mask (see include/linux/can/error.h) |
45 | * bit 29-31 : set to zero | 48 | * bit 29-31 : set to zero |
46 | */ | 49 | */ |
47 | typedef __u32 can_err_mask_t; | 50 | typedef __u32 can_err_mask_t; |
48 | 51 | ||
52 | /* CAN payload length and DLC definitions according to ISO 11898-1 */ | ||
53 | #define CAN_MAX_DLC 8 | ||
54 | #define CAN_MAX_DLEN 8 | ||
55 | |||
56 | /* CAN FD payload length and DLC definitions according to ISO 11898-7 */ | ||
57 | #define CANFD_MAX_DLC 15 | ||
58 | #define CANFD_MAX_DLEN 64 | ||
59 | |||
49 | /** | 60 | /** |
50 | * struct can_frame - basic CAN frame structure | 61 | * struct can_frame - basic CAN frame structure |
51 | * @can_id: the CAN ID of the frame and CAN_*_FLAG flags, see above. | 62 | * @can_id: CAN ID of the frame and CAN_*_FLAG flags, see canid_t definition |
52 | * @can_dlc: the data length field of the CAN frame | 63 | * @can_dlc: frame payload length in byte (0 .. 8) aka data length code |
53 | * @data: the CAN frame payload. | 64 | * N.B. the DLC field from ISO 11898-1 Chapter 8.4.2.3 has a 1:1 |
65 | * mapping of the 'data length code' to the real payload length | ||
66 | * @data: CAN frame payload (up to 8 byte) | ||
54 | */ | 67 | */ |
55 | struct can_frame { | 68 | struct can_frame { |
56 | canid_t can_id; /* 32 bit CAN_ID + EFF/RTR/ERR flags */ | 69 | canid_t can_id; /* 32 bit CAN_ID + EFF/RTR/ERR flags */ |
57 | __u8 can_dlc; /* data length code: 0 .. 8 */ | 70 | __u8 can_dlc; /* frame payload length in byte (0 .. CAN_MAX_DLEN) */ |
58 | __u8 data[8] __attribute__((aligned(8))); | 71 | __u8 data[CAN_MAX_DLEN] __attribute__((aligned(8))); |
72 | }; | ||
73 | |||
74 | /* | ||
75 | * defined bits for canfd_frame.flags | ||
76 | * | ||
77 | * As the default for CAN FD should be to support the high data rate in the | ||
78 | * payload section of the frame (HDR) and to support up to 64 byte in the | ||
79 | * data section (EDL) the bits are only set in the non-default case. | ||
80 | * Btw. as long as there's no real implementation for CAN FD network driver | ||
81 | * these bits are only preliminary. | ||
82 | * | ||
83 | * RX: NOHDR/NOEDL - info about received CAN FD frame | ||
84 | * ESI - bit from originating CAN controller | ||
85 | * TX: NOHDR/NOEDL - control per-frame settings if supported by CAN controller | ||
86 | * ESI - bit is set by local CAN controller | ||
87 | */ | ||
88 | #define CANFD_NOHDR 0x01 /* frame without high data rate */ | ||
89 | #define CANFD_NOEDL 0x02 /* frame without extended data length */ | ||
90 | #define CANFD_ESI 0x04 /* error state indicator */ | ||
91 | |||
92 | /** | ||
93 | * struct canfd_frame - CAN flexible data rate frame structure | ||
94 | * @can_id: CAN ID of the frame and CAN_*_FLAG flags, see canid_t definition | ||
95 | * @len: frame payload length in byte (0 .. CANFD_MAX_DLEN) | ||
96 | * @flags: additional flags for CAN FD | ||
97 | * @__res0: reserved / padding | ||
98 | * @__res1: reserved / padding | ||
99 | * @data: CAN FD frame payload (up to CANFD_MAX_DLEN byte) | ||
100 | */ | ||
101 | struct canfd_frame { | ||
102 | canid_t can_id; /* 32 bit CAN_ID + EFF/RTR/ERR flags */ | ||
103 | __u8 len; /* frame payload length in byte */ | ||
104 | __u8 flags; /* additional flags for CAN FD */ | ||
105 | __u8 __res0; /* reserved / padding */ | ||
106 | __u8 __res1; /* reserved / padding */ | ||
107 | __u8 data[CANFD_MAX_DLEN] __attribute__((aligned(8))); | ||
59 | }; | 108 | }; |
60 | 109 | ||
110 | #define CAN_MTU (sizeof(struct can_frame)) | ||
111 | #define CANFD_MTU (sizeof(struct canfd_frame)) | ||
112 | |||
61 | /* particular protocols of the protocol family PF_CAN */ | 113 | /* particular protocols of the protocol family PF_CAN */ |
62 | #define CAN_RAW 1 /* RAW sockets */ | 114 | #define CAN_RAW 1 /* RAW sockets */ |
63 | #define CAN_BCM 2 /* Broadcast Manager */ | 115 | #define CAN_BCM 2 /* Broadcast Manager */ |
@@ -97,7 +149,7 @@ struct sockaddr_can { | |||
97 | * <received_can_id> & mask == can_id & mask | 149 | * <received_can_id> & mask == can_id & mask |
98 | * | 150 | * |
99 | * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can | 151 | * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can |
100 | * filter for error frames (CAN_ERR_FLAG bit set in mask). | 152 | * filter for error message frames (CAN_ERR_FLAG bit set in mask). |
101 | */ | 153 | */ |
102 | struct can_filter { | 154 | struct can_filter { |
103 | canid_t can_id; | 155 | canid_t can_id; |
diff --git a/include/linux/can/core.h b/include/linux/can/core.h index 0ccc1cd28b95..78c6c52073ad 100644 --- a/include/linux/can/core.h +++ b/include/linux/can/core.h | |||
@@ -17,10 +17,10 @@ | |||
17 | #include <linux/skbuff.h> | 17 | #include <linux/skbuff.h> |
18 | #include <linux/netdevice.h> | 18 | #include <linux/netdevice.h> |
19 | 19 | ||
20 | #define CAN_VERSION "20090105" | 20 | #define CAN_VERSION "20120528" |
21 | 21 | ||
22 | /* increment this number each time you change some user-space interface */ | 22 | /* increment this number each time you change some user-space interface */ |
23 | #define CAN_ABI_VERSION "8" | 23 | #define CAN_ABI_VERSION "9" |
24 | 24 | ||
25 | #define CAN_VERSION_STRING "rev " CAN_VERSION " abi " CAN_ABI_VERSION | 25 | #define CAN_VERSION_STRING "rev " CAN_VERSION " abi " CAN_ABI_VERSION |
26 | 26 | ||
diff --git a/include/linux/can/dev.h b/include/linux/can/dev.h index 5d2efe7e3f1b..2b2fc345afca 100644 --- a/include/linux/can/dev.h +++ b/include/linux/can/dev.h | |||
@@ -33,7 +33,7 @@ struct can_priv { | |||
33 | struct can_device_stats can_stats; | 33 | struct can_device_stats can_stats; |
34 | 34 | ||
35 | struct can_bittiming bittiming; | 35 | struct can_bittiming bittiming; |
36 | struct can_bittiming_const *bittiming_const; | 36 | const struct can_bittiming_const *bittiming_const; |
37 | struct can_clock clock; | 37 | struct can_clock clock; |
38 | 38 | ||
39 | enum can_state state; | 39 | enum can_state state; |
@@ -61,23 +61,40 @@ struct can_priv { | |||
61 | * To be used in the CAN netdriver receive path to ensure conformance with | 61 | * To be used in the CAN netdriver receive path to ensure conformance with |
62 | * ISO 11898-1 Chapter 8.4.2.3 (DLC field) | 62 | * ISO 11898-1 Chapter 8.4.2.3 (DLC field) |
63 | */ | 63 | */ |
64 | #define get_can_dlc(i) (min_t(__u8, (i), 8)) | 64 | #define get_can_dlc(i) (min_t(__u8, (i), CAN_MAX_DLC)) |
65 | #define get_canfd_dlc(i) (min_t(__u8, (i), CANFD_MAX_DLC)) | ||
65 | 66 | ||
66 | /* Drop a given socketbuffer if it does not contain a valid CAN frame. */ | 67 | /* Drop a given socketbuffer if it does not contain a valid CAN frame. */ |
67 | static inline int can_dropped_invalid_skb(struct net_device *dev, | 68 | static inline int can_dropped_invalid_skb(struct net_device *dev, |
68 | struct sk_buff *skb) | 69 | struct sk_buff *skb) |
69 | { | 70 | { |
70 | const struct can_frame *cf = (struct can_frame *)skb->data; | 71 | const struct canfd_frame *cfd = (struct canfd_frame *)skb->data; |
71 | 72 | ||
72 | if (unlikely(skb->len != sizeof(*cf) || cf->can_dlc > 8)) { | 73 | if (skb->protocol == htons(ETH_P_CAN)) { |
73 | kfree_skb(skb); | 74 | if (unlikely(skb->len != CAN_MTU || |
74 | dev->stats.tx_dropped++; | 75 | cfd->len > CAN_MAX_DLEN)) |
75 | return 1; | 76 | goto inval_skb; |
76 | } | 77 | } else if (skb->protocol == htons(ETH_P_CANFD)) { |
78 | if (unlikely(skb->len != CANFD_MTU || | ||
79 | cfd->len > CANFD_MAX_DLEN)) | ||
80 | goto inval_skb; | ||
81 | } else | ||
82 | goto inval_skb; | ||
77 | 83 | ||
78 | return 0; | 84 | return 0; |
85 | |||
86 | inval_skb: | ||
87 | kfree_skb(skb); | ||
88 | dev->stats.tx_dropped++; | ||
89 | return 1; | ||
79 | } | 90 | } |
80 | 91 | ||
92 | /* get data length from can_dlc with sanitized can_dlc */ | ||
93 | u8 can_dlc2len(u8 can_dlc); | ||
94 | |||
95 | /* map the sanitized data length to an appropriate data length code */ | ||
96 | u8 can_len2dlc(u8 len); | ||
97 | |||
81 | struct net_device *alloc_candev(int sizeof_priv, unsigned int echo_skb_max); | 98 | struct net_device *alloc_candev(int sizeof_priv, unsigned int echo_skb_max); |
82 | void free_candev(struct net_device *dev); | 99 | void free_candev(struct net_device *dev); |
83 | 100 | ||
diff --git a/include/linux/can/error.h b/include/linux/can/error.h index 63e855ea6b84..7b7148bded71 100644 --- a/include/linux/can/error.h +++ b/include/linux/can/error.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * linux/can/error.h | 2 | * linux/can/error.h |
3 | * | 3 | * |
4 | * Definitions of the CAN error frame to be filtered and passed to the user. | 4 | * Definitions of the CAN error messages to be filtered and passed to the user. |
5 | * | 5 | * |
6 | * Author: Oliver Hartkopp <oliver.hartkopp@volkswagen.de> | 6 | * Author: Oliver Hartkopp <oliver.hartkopp@volkswagen.de> |
7 | * Copyright (c) 2002-2007 Volkswagen Group Electronic Research | 7 | * Copyright (c) 2002-2007 Volkswagen Group Electronic Research |
@@ -12,7 +12,7 @@ | |||
12 | #ifndef CAN_ERROR_H | 12 | #ifndef CAN_ERROR_H |
13 | #define CAN_ERROR_H | 13 | #define CAN_ERROR_H |
14 | 14 | ||
15 | #define CAN_ERR_DLC 8 /* dlc for error frames */ | 15 | #define CAN_ERR_DLC 8 /* dlc for error message frames */ |
16 | 16 | ||
17 | /* error class (mask) in can_id */ | 17 | /* error class (mask) in can_id */ |
18 | #define CAN_ERR_TX_TIMEOUT 0x00000001U /* TX timeout (by netdevice driver) */ | 18 | #define CAN_ERR_TX_TIMEOUT 0x00000001U /* TX timeout (by netdevice driver) */ |
diff --git a/include/linux/can/raw.h b/include/linux/can/raw.h index 781f3a3701be..a814062b0719 100644 --- a/include/linux/can/raw.h +++ b/include/linux/can/raw.h | |||
@@ -23,7 +23,8 @@ enum { | |||
23 | CAN_RAW_FILTER = 1, /* set 0 .. n can_filter(s) */ | 23 | CAN_RAW_FILTER = 1, /* set 0 .. n can_filter(s) */ |
24 | CAN_RAW_ERR_FILTER, /* set filter for error frames */ | 24 | CAN_RAW_ERR_FILTER, /* set filter for error frames */ |
25 | CAN_RAW_LOOPBACK, /* local loopback (default:on) */ | 25 | CAN_RAW_LOOPBACK, /* local loopback (default:on) */ |
26 | CAN_RAW_RECV_OWN_MSGS /* receive my own msgs (default:off) */ | 26 | CAN_RAW_RECV_OWN_MSGS, /* receive my own msgs (default:off) */ |
27 | CAN_RAW_FD_FRAMES, /* allow CAN FD frames (default:off) */ | ||
27 | }; | 28 | }; |
28 | 29 | ||
29 | #endif | 30 | #endif |
diff --git a/include/linux/capability.h b/include/linux/capability.h index 68d56effc328..d10b7ed595b1 100644 --- a/include/linux/capability.h +++ b/include/linux/capability.h | |||
@@ -360,11 +360,11 @@ struct cpu_vfs_cap_data { | |||
360 | 360 | ||
361 | #define CAP_WAKE_ALARM 35 | 361 | #define CAP_WAKE_ALARM 35 |
362 | 362 | ||
363 | /* Allow preventing system suspends while epoll events are pending */ | 363 | /* Allow preventing system suspends */ |
364 | 364 | ||
365 | #define CAP_EPOLLWAKEUP 36 | 365 | #define CAP_BLOCK_SUSPEND 36 |
366 | 366 | ||
367 | #define CAP_LAST_CAP CAP_EPOLLWAKEUP | 367 | #define CAP_LAST_CAP CAP_BLOCK_SUSPEND |
368 | 368 | ||
369 | #define cap_valid(x) ((x) >= 0 && (x) <= CAP_LAST_CAP) | 369 | #define cap_valid(x) ((x) >= 0 && (x) <= CAP_LAST_CAP) |
370 | 370 | ||
diff --git a/include/linux/ceph/ceph_features.h b/include/linux/ceph/ceph_features.h new file mode 100644 index 000000000000..dad579b0c0e6 --- /dev/null +++ b/include/linux/ceph/ceph_features.h | |||
@@ -0,0 +1,27 @@ | |||
1 | #ifndef __CEPH_FEATURES | ||
2 | #define __CEPH_FEATURES | ||
3 | |||
4 | /* | ||
5 | * feature bits | ||
6 | */ | ||
7 | #define CEPH_FEATURE_UID (1<<0) | ||
8 | #define CEPH_FEATURE_NOSRCADDR (1<<1) | ||
9 | #define CEPH_FEATURE_MONCLOCKCHECK (1<<2) | ||
10 | #define CEPH_FEATURE_FLOCK (1<<3) | ||
11 | #define CEPH_FEATURE_SUBSCRIBE2 (1<<4) | ||
12 | #define CEPH_FEATURE_MONNAMES (1<<5) | ||
13 | #define CEPH_FEATURE_RECONNECT_SEQ (1<<6) | ||
14 | #define CEPH_FEATURE_DIRLAYOUTHASH (1<<7) | ||
15 | /* bits 8-17 defined by user-space; not supported yet here */ | ||
16 | #define CEPH_FEATURE_CRUSH_TUNABLES (1<<18) | ||
17 | |||
18 | /* | ||
19 | * Features supported. | ||
20 | */ | ||
21 | #define CEPH_FEATURES_SUPPORTED_DEFAULT \ | ||
22 | (CEPH_FEATURE_NOSRCADDR | \ | ||
23 | CEPH_FEATURE_CRUSH_TUNABLES) | ||
24 | |||
25 | #define CEPH_FEATURES_REQUIRED_DEFAULT \ | ||
26 | (CEPH_FEATURE_NOSRCADDR) | ||
27 | #endif | ||
diff --git a/include/linux/ceph/ceph_fs.h b/include/linux/ceph/ceph_fs.h index e81ab30d4896..d021610efd65 100644 --- a/include/linux/ceph/ceph_fs.h +++ b/include/linux/ceph/ceph_fs.h | |||
@@ -35,20 +35,6 @@ | |||
35 | /* arbitrary limit on max # of monitors (cluster of 3 is typical) */ | 35 | /* arbitrary limit on max # of monitors (cluster of 3 is typical) */ |
36 | #define CEPH_MAX_MON 31 | 36 | #define CEPH_MAX_MON 31 |
37 | 37 | ||
38 | |||
39 | /* | ||
40 | * feature bits | ||
41 | */ | ||
42 | #define CEPH_FEATURE_UID (1<<0) | ||
43 | #define CEPH_FEATURE_NOSRCADDR (1<<1) | ||
44 | #define CEPH_FEATURE_MONCLOCKCHECK (1<<2) | ||
45 | #define CEPH_FEATURE_FLOCK (1<<3) | ||
46 | #define CEPH_FEATURE_SUBSCRIBE2 (1<<4) | ||
47 | #define CEPH_FEATURE_MONNAMES (1<<5) | ||
48 | #define CEPH_FEATURE_RECONNECT_SEQ (1<<6) | ||
49 | #define CEPH_FEATURE_DIRLAYOUTHASH (1<<7) | ||
50 | |||
51 | |||
52 | /* | 38 | /* |
53 | * ceph_file_layout - describe data layout for a file/inode | 39 | * ceph_file_layout - describe data layout for a file/inode |
54 | */ | 40 | */ |
diff --git a/include/linux/ceph/decode.h b/include/linux/ceph/decode.h index d8615dee5808..4bbf2db45f46 100644 --- a/include/linux/ceph/decode.h +++ b/include/linux/ceph/decode.h | |||
@@ -1,6 +1,7 @@ | |||
1 | #ifndef __CEPH_DECODE_H | 1 | #ifndef __CEPH_DECODE_H |
2 | #define __CEPH_DECODE_H | 2 | #define __CEPH_DECODE_H |
3 | 3 | ||
4 | #include <linux/err.h> | ||
4 | #include <linux/bug.h> | 5 | #include <linux/bug.h> |
5 | #include <linux/time.h> | 6 | #include <linux/time.h> |
6 | #include <asm/unaligned.h> | 7 | #include <asm/unaligned.h> |
@@ -85,6 +86,52 @@ static inline int ceph_has_room(void **p, void *end, size_t n) | |||
85 | } while (0) | 86 | } while (0) |
86 | 87 | ||
87 | /* | 88 | /* |
89 | * Allocate a buffer big enough to hold the wire-encoded string, and | ||
90 | * decode the string into it. The resulting string will always be | ||
91 | * terminated with '\0'. If successful, *p will be advanced | ||
92 | * past the decoded data. Also, if lenp is not a null pointer, the | ||
93 | * length (not including the terminating '\0') will be recorded in | ||
94 | * *lenp. Note that a zero-length string is a valid return value. | ||
95 | * | ||
96 | * Returns a pointer to the newly-allocated string buffer, or a | ||
97 | * pointer-coded errno if an error occurs. Neither *p nor *lenp | ||
98 | * will have been updated if an error is returned. | ||
99 | * | ||
100 | * There are two possible failures: | ||
101 | * - converting the string would require accessing memory at or | ||
102 | * beyond the "end" pointer provided (-E | ||
103 | * - memory could not be allocated for the result | ||
104 | */ | ||
105 | static inline char *ceph_extract_encoded_string(void **p, void *end, | ||
106 | size_t *lenp, gfp_t gfp) | ||
107 | { | ||
108 | u32 len; | ||
109 | void *sp = *p; | ||
110 | char *buf; | ||
111 | |||
112 | ceph_decode_32_safe(&sp, end, len, bad); | ||
113 | if (!ceph_has_room(&sp, end, len)) | ||
114 | goto bad; | ||
115 | |||
116 | buf = kmalloc(len + 1, gfp); | ||
117 | if (!buf) | ||
118 | return ERR_PTR(-ENOMEM); | ||
119 | |||
120 | if (len) | ||
121 | memcpy(buf, sp, len); | ||
122 | buf[len] = '\0'; | ||
123 | |||
124 | *p = (char *) *p + sizeof (u32) + len; | ||
125 | if (lenp) | ||
126 | *lenp = (size_t) len; | ||
127 | |||
128 | return buf; | ||
129 | |||
130 | bad: | ||
131 | return ERR_PTR(-ERANGE); | ||
132 | } | ||
133 | |||
134 | /* | ||
88 | * struct ceph_timespec <-> struct timespec | 135 | * struct ceph_timespec <-> struct timespec |
89 | */ | 136 | */ |
90 | static inline void ceph_decode_timespec(struct timespec *ts, | 137 | static inline void ceph_decode_timespec(struct timespec *ts, |
@@ -151,7 +198,7 @@ static inline void ceph_encode_filepath(void **p, void *end, | |||
151 | u64 ino, const char *path) | 198 | u64 ino, const char *path) |
152 | { | 199 | { |
153 | u32 len = path ? strlen(path) : 0; | 200 | u32 len = path ? strlen(path) : 0; |
154 | BUG_ON(*p + sizeof(ino) + sizeof(len) + len > end); | 201 | BUG_ON(*p + 1 + sizeof(ino) + sizeof(len) + len > end); |
155 | ceph_encode_8(p, 1); | 202 | ceph_encode_8(p, 1); |
156 | ceph_encode_64(p, ino); | 203 | ceph_encode_64(p, ino); |
157 | ceph_encode_32(p, len); | 204 | ceph_encode_32(p, len); |
diff --git a/include/linux/ceph/libceph.h b/include/linux/ceph/libceph.h index e71d683982a6..42624789b06f 100644 --- a/include/linux/ceph/libceph.h +++ b/include/linux/ceph/libceph.h | |||
@@ -23,12 +23,6 @@ | |||
23 | #include "ceph_fs.h" | 23 | #include "ceph_fs.h" |
24 | 24 | ||
25 | /* | 25 | /* |
26 | * Supported features | ||
27 | */ | ||
28 | #define CEPH_FEATURE_SUPPORTED_DEFAULT CEPH_FEATURE_NOSRCADDR | ||
29 | #define CEPH_FEATURE_REQUIRED_DEFAULT CEPH_FEATURE_NOSRCADDR | ||
30 | |||
31 | /* | ||
32 | * mount options | 26 | * mount options |
33 | */ | 27 | */ |
34 | #define CEPH_OPT_FSID (1<<0) | 28 | #define CEPH_OPT_FSID (1<<0) |
@@ -132,7 +126,7 @@ struct ceph_client { | |||
132 | u32 supported_features; | 126 | u32 supported_features; |
133 | u32 required_features; | 127 | u32 required_features; |
134 | 128 | ||
135 | struct ceph_messenger *msgr; /* messenger instance */ | 129 | struct ceph_messenger msgr; /* messenger instance */ |
136 | struct ceph_mon_client monc; | 130 | struct ceph_mon_client monc; |
137 | struct ceph_osd_client osdc; | 131 | struct ceph_osd_client osdc; |
138 | 132 | ||
@@ -160,7 +154,7 @@ struct ceph_client { | |||
160 | struct ceph_snap_context { | 154 | struct ceph_snap_context { |
161 | atomic_t nref; | 155 | atomic_t nref; |
162 | u64 seq; | 156 | u64 seq; |
163 | int num_snaps; | 157 | u32 num_snaps; |
164 | u64 snaps[]; | 158 | u64 snaps[]; |
165 | }; | 159 | }; |
166 | 160 | ||
diff --git a/include/linux/ceph/messenger.h b/include/linux/ceph/messenger.h index 2521a95fa6d9..189ae0637634 100644 --- a/include/linux/ceph/messenger.h +++ b/include/linux/ceph/messenger.h | |||
@@ -31,9 +31,6 @@ struct ceph_connection_operations { | |||
31 | int (*verify_authorizer_reply) (struct ceph_connection *con, int len); | 31 | int (*verify_authorizer_reply) (struct ceph_connection *con, int len); |
32 | int (*invalidate_authorizer)(struct ceph_connection *con); | 32 | int (*invalidate_authorizer)(struct ceph_connection *con); |
33 | 33 | ||
34 | /* protocol version mismatch */ | ||
35 | void (*bad_proto) (struct ceph_connection *con); | ||
36 | |||
37 | /* there was some error on the socket (disconnect, whatever) */ | 34 | /* there was some error on the socket (disconnect, whatever) */ |
38 | void (*fault) (struct ceph_connection *con); | 35 | void (*fault) (struct ceph_connection *con); |
39 | 36 | ||
@@ -53,6 +50,7 @@ struct ceph_messenger { | |||
53 | struct ceph_entity_inst inst; /* my name+address */ | 50 | struct ceph_entity_inst inst; /* my name+address */ |
54 | struct ceph_entity_addr my_enc_addr; | 51 | struct ceph_entity_addr my_enc_addr; |
55 | 52 | ||
53 | atomic_t stopping; | ||
56 | bool nocrc; | 54 | bool nocrc; |
57 | 55 | ||
58 | /* | 56 | /* |
@@ -80,7 +78,10 @@ struct ceph_msg { | |||
80 | unsigned nr_pages; /* size of page array */ | 78 | unsigned nr_pages; /* size of page array */ |
81 | unsigned page_alignment; /* io offset in first page */ | 79 | unsigned page_alignment; /* io offset in first page */ |
82 | struct ceph_pagelist *pagelist; /* instead of pages */ | 80 | struct ceph_pagelist *pagelist; /* instead of pages */ |
81 | |||
82 | struct ceph_connection *con; | ||
83 | struct list_head list_head; | 83 | struct list_head list_head; |
84 | |||
84 | struct kref kref; | 85 | struct kref kref; |
85 | struct bio *bio; /* instead of pages/pagelist */ | 86 | struct bio *bio; /* instead of pages/pagelist */ |
86 | struct bio *bio_iter; /* bio iterator */ | 87 | struct bio *bio_iter; /* bio iterator */ |
@@ -106,23 +107,6 @@ struct ceph_msg_pos { | |||
106 | #define MAX_DELAY_INTERVAL (5 * 60 * HZ) | 107 | #define MAX_DELAY_INTERVAL (5 * 60 * HZ) |
107 | 108 | ||
108 | /* | 109 | /* |
109 | * ceph_connection state bit flags | ||
110 | */ | ||
111 | #define LOSSYTX 0 /* we can close channel or drop messages on errors */ | ||
112 | #define CONNECTING 1 | ||
113 | #define NEGOTIATING 2 | ||
114 | #define KEEPALIVE_PENDING 3 | ||
115 | #define WRITE_PENDING 4 /* we have data ready to send */ | ||
116 | #define STANDBY 8 /* no outgoing messages, socket closed. we keep | ||
117 | * the ceph_connection around to maintain shared | ||
118 | * state with the peer. */ | ||
119 | #define CLOSED 10 /* we've closed the connection */ | ||
120 | #define SOCK_CLOSED 11 /* socket state changed to closed */ | ||
121 | #define OPENING 13 /* open connection w/ (possibly new) peer */ | ||
122 | #define DEAD 14 /* dead, about to kfree */ | ||
123 | #define BACKOFF 15 | ||
124 | |||
125 | /* | ||
126 | * A single connection with another host. | 110 | * A single connection with another host. |
127 | * | 111 | * |
128 | * We maintain a queue of outgoing messages, and some session state to | 112 | * We maintain a queue of outgoing messages, and some session state to |
@@ -131,18 +115,22 @@ struct ceph_msg_pos { | |||
131 | */ | 115 | */ |
132 | struct ceph_connection { | 116 | struct ceph_connection { |
133 | void *private; | 117 | void *private; |
134 | atomic_t nref; | ||
135 | 118 | ||
136 | const struct ceph_connection_operations *ops; | 119 | const struct ceph_connection_operations *ops; |
137 | 120 | ||
138 | struct ceph_messenger *msgr; | 121 | struct ceph_messenger *msgr; |
122 | |||
123 | atomic_t sock_state; | ||
139 | struct socket *sock; | 124 | struct socket *sock; |
140 | unsigned long state; /* connection state (see flags above) */ | 125 | struct ceph_entity_addr peer_addr; /* peer address */ |
126 | struct ceph_entity_addr peer_addr_for_me; | ||
127 | |||
128 | unsigned long flags; | ||
129 | unsigned long state; | ||
141 | const char *error_msg; /* error message, if any */ | 130 | const char *error_msg; /* error message, if any */ |
142 | 131 | ||
143 | struct ceph_entity_addr peer_addr; /* peer address */ | ||
144 | struct ceph_entity_name peer_name; /* peer name */ | 132 | struct ceph_entity_name peer_name; /* peer name */ |
145 | struct ceph_entity_addr peer_addr_for_me; | 133 | |
146 | unsigned peer_features; | 134 | unsigned peer_features; |
147 | u32 connect_seq; /* identify the most recent connection | 135 | u32 connect_seq; /* identify the most recent connection |
148 | attempt for this connection, client */ | 136 | attempt for this connection, client */ |
@@ -163,16 +151,8 @@ struct ceph_connection { | |||
163 | 151 | ||
164 | /* connection negotiation temps */ | 152 | /* connection negotiation temps */ |
165 | char in_banner[CEPH_BANNER_MAX_LEN]; | 153 | char in_banner[CEPH_BANNER_MAX_LEN]; |
166 | union { | 154 | struct ceph_msg_connect out_connect; |
167 | struct { /* outgoing connection */ | 155 | struct ceph_msg_connect_reply in_reply; |
168 | struct ceph_msg_connect out_connect; | ||
169 | struct ceph_msg_connect_reply in_reply; | ||
170 | }; | ||
171 | struct { /* incoming */ | ||
172 | struct ceph_msg_connect in_connect; | ||
173 | struct ceph_msg_connect_reply out_reply; | ||
174 | }; | ||
175 | }; | ||
176 | struct ceph_entity_addr actual_peer_addr; | 156 | struct ceph_entity_addr actual_peer_addr; |
177 | 157 | ||
178 | /* message out temps */ | 158 | /* message out temps */ |
@@ -215,24 +195,26 @@ extern int ceph_msgr_init(void); | |||
215 | extern void ceph_msgr_exit(void); | 195 | extern void ceph_msgr_exit(void); |
216 | extern void ceph_msgr_flush(void); | 196 | extern void ceph_msgr_flush(void); |
217 | 197 | ||
218 | extern struct ceph_messenger *ceph_messenger_create( | 198 | extern void ceph_messenger_init(struct ceph_messenger *msgr, |
219 | struct ceph_entity_addr *myaddr, | 199 | struct ceph_entity_addr *myaddr, |
220 | u32 features, u32 required); | 200 | u32 supported_features, |
221 | extern void ceph_messenger_destroy(struct ceph_messenger *); | 201 | u32 required_features, |
202 | bool nocrc); | ||
222 | 203 | ||
223 | extern void ceph_con_init(struct ceph_messenger *msgr, | 204 | extern void ceph_con_init(struct ceph_connection *con, void *private, |
224 | struct ceph_connection *con); | 205 | const struct ceph_connection_operations *ops, |
206 | struct ceph_messenger *msgr); | ||
225 | extern void ceph_con_open(struct ceph_connection *con, | 207 | extern void ceph_con_open(struct ceph_connection *con, |
208 | __u8 entity_type, __u64 entity_num, | ||
226 | struct ceph_entity_addr *addr); | 209 | struct ceph_entity_addr *addr); |
227 | extern bool ceph_con_opened(struct ceph_connection *con); | 210 | extern bool ceph_con_opened(struct ceph_connection *con); |
228 | extern void ceph_con_close(struct ceph_connection *con); | 211 | extern void ceph_con_close(struct ceph_connection *con); |
229 | extern void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg); | 212 | extern void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg); |
230 | extern void ceph_con_revoke(struct ceph_connection *con, struct ceph_msg *msg); | 213 | |
231 | extern void ceph_con_revoke_message(struct ceph_connection *con, | 214 | extern void ceph_msg_revoke(struct ceph_msg *msg); |
232 | struct ceph_msg *msg); | 215 | extern void ceph_msg_revoke_incoming(struct ceph_msg *msg); |
216 | |||
233 | extern void ceph_con_keepalive(struct ceph_connection *con); | 217 | extern void ceph_con_keepalive(struct ceph_connection *con); |
234 | extern struct ceph_connection *ceph_con_get(struct ceph_connection *con); | ||
235 | extern void ceph_con_put(struct ceph_connection *con); | ||
236 | 218 | ||
237 | extern struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags, | 219 | extern struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags, |
238 | bool can_fail); | 220 | bool can_fail); |
diff --git a/include/linux/ceph/mon_client.h b/include/linux/ceph/mon_client.h index 545f85917780..2113e3850a4e 100644 --- a/include/linux/ceph/mon_client.h +++ b/include/linux/ceph/mon_client.h | |||
@@ -70,7 +70,7 @@ struct ceph_mon_client { | |||
70 | bool hunting; | 70 | bool hunting; |
71 | int cur_mon; /* last monitor i contacted */ | 71 | int cur_mon; /* last monitor i contacted */ |
72 | unsigned long sub_sent, sub_renew_after; | 72 | unsigned long sub_sent, sub_renew_after; |
73 | struct ceph_connection *con; | 73 | struct ceph_connection con; |
74 | bool have_fsid; | 74 | bool have_fsid; |
75 | 75 | ||
76 | /* pending generic requests */ | 76 | /* pending generic requests */ |
diff --git a/include/linux/ceph/msgpool.h b/include/linux/ceph/msgpool.h index a362605f9368..09fa96b43436 100644 --- a/include/linux/ceph/msgpool.h +++ b/include/linux/ceph/msgpool.h | |||
@@ -11,10 +11,11 @@ | |||
11 | struct ceph_msgpool { | 11 | struct ceph_msgpool { |
12 | const char *name; | 12 | const char *name; |
13 | mempool_t *pool; | 13 | mempool_t *pool; |
14 | int type; /* preallocated message type */ | ||
14 | int front_len; /* preallocated payload size */ | 15 | int front_len; /* preallocated payload size */ |
15 | }; | 16 | }; |
16 | 17 | ||
17 | extern int ceph_msgpool_init(struct ceph_msgpool *pool, | 18 | extern int ceph_msgpool_init(struct ceph_msgpool *pool, int type, |
18 | int front_len, int size, bool blocking, | 19 | int front_len, int size, bool blocking, |
19 | const char *name); | 20 | const char *name); |
20 | extern void ceph_msgpool_destroy(struct ceph_msgpool *pool); | 21 | extern void ceph_msgpool_destroy(struct ceph_msgpool *pool); |
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index d3f5fba2c159..c90eaa803440 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h | |||
@@ -500,21 +500,8 @@ struct cgroup_subsys { | |||
500 | const char *name; | 500 | const char *name; |
501 | 501 | ||
502 | /* | 502 | /* |
503 | * Protects sibling/children links of cgroups in this | ||
504 | * hierarchy, plus protects which hierarchy (or none) the | ||
505 | * subsystem is a part of (i.e. root/sibling). To avoid | ||
506 | * potential deadlocks, the following operations should not be | ||
507 | * undertaken while holding any hierarchy_mutex: | ||
508 | * | ||
509 | * - allocating memory | ||
510 | * - initiating hotplug events | ||
511 | */ | ||
512 | struct mutex hierarchy_mutex; | ||
513 | struct lock_class_key subsys_key; | ||
514 | |||
515 | /* | ||
516 | * Link to parent, and list entry in parent's children. | 503 | * Link to parent, and list entry in parent's children. |
517 | * Protected by this->hierarchy_mutex and cgroup_lock() | 504 | * Protected by cgroup_lock() |
518 | */ | 505 | */ |
519 | struct cgroupfs_root *root; | 506 | struct cgroupfs_root *root; |
520 | struct list_head sibling; | 507 | struct list_head sibling; |
@@ -602,7 +589,7 @@ int cgroup_attach_task_all(struct task_struct *from, struct task_struct *); | |||
602 | * the lifetime of cgroup_subsys_state is subsys's matter. | 589 | * the lifetime of cgroup_subsys_state is subsys's matter. |
603 | * | 590 | * |
604 | * Looking up and scanning function should be called under rcu_read_lock(). | 591 | * Looking up and scanning function should be called under rcu_read_lock(). |
605 | * Taking cgroup_mutex()/hierarchy_mutex() is not necessary for following calls. | 592 | * Taking cgroup_mutex is not necessary for following calls. |
606 | * But the css returned by this routine can be "not populated yet" or "being | 593 | * But the css returned by this routine can be "not populated yet" or "being |
607 | * destroyed". The caller should check css and cgroup's status. | 594 | * destroyed". The caller should check css and cgroup's status. |
608 | */ | 595 | */ |
diff --git a/include/linux/clk-private.h b/include/linux/clk-private.h index eb3f84bc5325..9c7f5807824b 100644 --- a/include/linux/clk-private.h +++ b/include/linux/clk-private.h | |||
@@ -64,7 +64,7 @@ struct clk { | |||
64 | .parent_names = _parent_names, \ | 64 | .parent_names = _parent_names, \ |
65 | .num_parents = ARRAY_SIZE(_parent_names), \ | 65 | .num_parents = ARRAY_SIZE(_parent_names), \ |
66 | .parents = _parents, \ | 66 | .parents = _parents, \ |
67 | .flags = _flags, \ | 67 | .flags = _flags | CLK_IS_BASIC, \ |
68 | } | 68 | } |
69 | 69 | ||
70 | #define DEFINE_CLK_FIXED_RATE(_name, _flags, _rate, \ | 70 | #define DEFINE_CLK_FIXED_RATE(_name, _flags, _rate, \ |
@@ -103,9 +103,9 @@ struct clk { | |||
103 | DEFINE_CLK(_name, clk_gate_ops, _flags, \ | 103 | DEFINE_CLK(_name, clk_gate_ops, _flags, \ |
104 | _name##_parent_names, _name##_parents); | 104 | _name##_parent_names, _name##_parents); |
105 | 105 | ||
106 | #define DEFINE_CLK_DIVIDER(_name, _parent_name, _parent_ptr, \ | 106 | #define _DEFINE_CLK_DIVIDER(_name, _parent_name, _parent_ptr, \ |
107 | _flags, _reg, _shift, _width, \ | 107 | _flags, _reg, _shift, _width, \ |
108 | _divider_flags, _lock) \ | 108 | _divider_flags, _table, _lock) \ |
109 | static struct clk _name; \ | 109 | static struct clk _name; \ |
110 | static const char *_name##_parent_names[] = { \ | 110 | static const char *_name##_parent_names[] = { \ |
111 | _parent_name, \ | 111 | _parent_name, \ |
@@ -121,11 +121,27 @@ struct clk { | |||
121 | .shift = _shift, \ | 121 | .shift = _shift, \ |
122 | .width = _width, \ | 122 | .width = _width, \ |
123 | .flags = _divider_flags, \ | 123 | .flags = _divider_flags, \ |
124 | .table = _table, \ | ||
124 | .lock = _lock, \ | 125 | .lock = _lock, \ |
125 | }; \ | 126 | }; \ |
126 | DEFINE_CLK(_name, clk_divider_ops, _flags, \ | 127 | DEFINE_CLK(_name, clk_divider_ops, _flags, \ |
127 | _name##_parent_names, _name##_parents); | 128 | _name##_parent_names, _name##_parents); |
128 | 129 | ||
130 | #define DEFINE_CLK_DIVIDER(_name, _parent_name, _parent_ptr, \ | ||
131 | _flags, _reg, _shift, _width, \ | ||
132 | _divider_flags, _lock) \ | ||
133 | _DEFINE_CLK_DIVIDER(_name, _parent_name, _parent_ptr, \ | ||
134 | _flags, _reg, _shift, _width, \ | ||
135 | _divider_flags, NULL, _lock) | ||
136 | |||
137 | #define DEFINE_CLK_DIVIDER_TABLE(_name, _parent_name, \ | ||
138 | _parent_ptr, _flags, _reg, \ | ||
139 | _shift, _width, _divider_flags, \ | ||
140 | _table, _lock) \ | ||
141 | _DEFINE_CLK_DIVIDER(_name, _parent_name, _parent_ptr, \ | ||
142 | _flags, _reg, _shift, _width, \ | ||
143 | _divider_flags, _table, _lock) \ | ||
144 | |||
129 | #define DEFINE_CLK_MUX(_name, _parent_names, _parents, _flags, \ | 145 | #define DEFINE_CLK_MUX(_name, _parent_names, _parents, _flags, \ |
130 | _reg, _shift, _width, \ | 146 | _reg, _shift, _width, \ |
131 | _mux_flags, _lock) \ | 147 | _mux_flags, _lock) \ |
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 4a0b483986c3..77335fac943e 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h | |||
@@ -25,6 +25,7 @@ | |||
25 | #define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */ | 25 | #define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */ |
26 | #define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */ | 26 | #define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */ |
27 | #define CLK_IS_ROOT BIT(4) /* root clk, has no parent */ | 27 | #define CLK_IS_ROOT BIT(4) /* root clk, has no parent */ |
28 | #define CLK_IS_BASIC BIT(5) /* Basic clk, can't do a to_clk_foo() */ | ||
28 | 29 | ||
29 | struct clk_hw; | 30 | struct clk_hw; |
30 | 31 | ||
@@ -143,7 +144,7 @@ struct clk_init_data { | |||
143 | */ | 144 | */ |
144 | struct clk_hw { | 145 | struct clk_hw { |
145 | struct clk *clk; | 146 | struct clk *clk; |
146 | struct clk_init_data *init; | 147 | const struct clk_init_data *init; |
147 | }; | 148 | }; |
148 | 149 | ||
149 | /* | 150 | /* |
@@ -171,6 +172,8 @@ struct clk *clk_register_fixed_rate(struct device *dev, const char *name, | |||
171 | const char *parent_name, unsigned long flags, | 172 | const char *parent_name, unsigned long flags, |
172 | unsigned long fixed_rate); | 173 | unsigned long fixed_rate); |
173 | 174 | ||
175 | void of_fixed_clk_setup(struct device_node *np); | ||
176 | |||
174 | /** | 177 | /** |
175 | * struct clk_gate - gating clock | 178 | * struct clk_gate - gating clock |
176 | * | 179 | * |
@@ -203,6 +206,11 @@ struct clk *clk_register_gate(struct device *dev, const char *name, | |||
203 | void __iomem *reg, u8 bit_idx, | 206 | void __iomem *reg, u8 bit_idx, |
204 | u8 clk_gate_flags, spinlock_t *lock); | 207 | u8 clk_gate_flags, spinlock_t *lock); |
205 | 208 | ||
209 | struct clk_div_table { | ||
210 | unsigned int val; | ||
211 | unsigned int div; | ||
212 | }; | ||
213 | |||
206 | /** | 214 | /** |
207 | * struct clk_divider - adjustable divider clock | 215 | * struct clk_divider - adjustable divider clock |
208 | * | 216 | * |
@@ -210,6 +218,7 @@ struct clk *clk_register_gate(struct device *dev, const char *name, | |||
210 | * @reg: register containing the divider | 218 | * @reg: register containing the divider |
211 | * @shift: shift to the divider bit field | 219 | * @shift: shift to the divider bit field |
212 | * @width: width of the divider bit field | 220 | * @width: width of the divider bit field |
221 | * @table: array of value/divider pairs, last entry should have div = 0 | ||
213 | * @lock: register lock | 222 | * @lock: register lock |
214 | * | 223 | * |
215 | * Clock with an adjustable divider affecting its output frequency. Implements | 224 | * Clock with an adjustable divider affecting its output frequency. Implements |
@@ -229,6 +238,7 @@ struct clk_divider { | |||
229 | u8 shift; | 238 | u8 shift; |
230 | u8 width; | 239 | u8 width; |
231 | u8 flags; | 240 | u8 flags; |
241 | const struct clk_div_table *table; | ||
232 | spinlock_t *lock; | 242 | spinlock_t *lock; |
233 | }; | 243 | }; |
234 | 244 | ||
@@ -240,6 +250,11 @@ struct clk *clk_register_divider(struct device *dev, const char *name, | |||
240 | const char *parent_name, unsigned long flags, | 250 | const char *parent_name, unsigned long flags, |
241 | void __iomem *reg, u8 shift, u8 width, | 251 | void __iomem *reg, u8 shift, u8 width, |
242 | u8 clk_divider_flags, spinlock_t *lock); | 252 | u8 clk_divider_flags, spinlock_t *lock); |
253 | struct clk *clk_register_divider_table(struct device *dev, const char *name, | ||
254 | const char *parent_name, unsigned long flags, | ||
255 | void __iomem *reg, u8 shift, u8 width, | ||
256 | u8 clk_divider_flags, const struct clk_div_table *table, | ||
257 | spinlock_t *lock); | ||
243 | 258 | ||
244 | /** | 259 | /** |
245 | * struct clk_mux - multiplexer clock | 260 | * struct clk_mux - multiplexer clock |
@@ -334,5 +349,19 @@ void __clk_unprepare(struct clk *clk); | |||
334 | void __clk_reparent(struct clk *clk, struct clk *new_parent); | 349 | void __clk_reparent(struct clk *clk, struct clk *new_parent); |
335 | unsigned long __clk_round_rate(struct clk *clk, unsigned long rate); | 350 | unsigned long __clk_round_rate(struct clk *clk, unsigned long rate); |
336 | 351 | ||
352 | struct of_device_id; | ||
353 | |||
354 | typedef void (*of_clk_init_cb_t)(struct device_node *); | ||
355 | |||
356 | int of_clk_add_provider(struct device_node *np, | ||
357 | struct clk *(*clk_src_get)(struct of_phandle_args *args, | ||
358 | void *data), | ||
359 | void *data); | ||
360 | void of_clk_del_provider(struct device_node *np); | ||
361 | struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec, | ||
362 | void *data); | ||
363 | const char *of_clk_get_parent_name(struct device_node *np, int index); | ||
364 | void of_clk_init(const struct of_device_id *matches); | ||
365 | |||
337 | #endif /* CONFIG_COMMON_CLK */ | 366 | #endif /* CONFIG_COMMON_CLK */ |
338 | #endif /* CLK_PROVIDER_H */ | 367 | #endif /* CLK_PROVIDER_H */ |
diff --git a/include/linux/clk.h b/include/linux/clk.h index ad5c43e8ae8a..b3ac22d0fc1f 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h | |||
@@ -12,6 +12,7 @@ | |||
12 | #ifndef __LINUX_CLK_H | 12 | #ifndef __LINUX_CLK_H |
13 | #define __LINUX_CLK_H | 13 | #define __LINUX_CLK_H |
14 | 14 | ||
15 | #include <linux/err.h> | ||
15 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
16 | #include <linux/notifier.h> | 17 | #include <linux/notifier.h> |
17 | 18 | ||
@@ -84,9 +85,46 @@ int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb); | |||
84 | #endif | 85 | #endif |
85 | 86 | ||
86 | /** | 87 | /** |
88 | * clk_prepare - prepare a clock source | ||
89 | * @clk: clock source | ||
90 | * | ||
91 | * This prepares the clock source for use. | ||
92 | * | ||
93 | * Must not be called from within atomic context. | ||
94 | */ | ||
95 | #ifdef CONFIG_HAVE_CLK_PREPARE | ||
96 | int clk_prepare(struct clk *clk); | ||
97 | #else | ||
98 | static inline int clk_prepare(struct clk *clk) | ||
99 | { | ||
100 | might_sleep(); | ||
101 | return 0; | ||
102 | } | ||
103 | #endif | ||
104 | |||
105 | /** | ||
106 | * clk_unprepare - undo preparation of a clock source | ||
107 | * @clk: clock source | ||
108 | * | ||
109 | * This undoes a previously prepared clock. The caller must balance | ||
110 | * the number of prepare and unprepare calls. | ||
111 | * | ||
112 | * Must not be called from within atomic context. | ||
113 | */ | ||
114 | #ifdef CONFIG_HAVE_CLK_PREPARE | ||
115 | void clk_unprepare(struct clk *clk); | ||
116 | #else | ||
117 | static inline void clk_unprepare(struct clk *clk) | ||
118 | { | ||
119 | might_sleep(); | ||
120 | } | ||
121 | #endif | ||
122 | |||
123 | #ifdef CONFIG_HAVE_CLK | ||
124 | /** | ||
87 | * clk_get - lookup and obtain a reference to a clock producer. | 125 | * clk_get - lookup and obtain a reference to a clock producer. |
88 | * @dev: device for clock "consumer" | 126 | * @dev: device for clock "consumer" |
89 | * @id: clock comsumer ID | 127 | * @id: clock consumer ID |
90 | * | 128 | * |
91 | * Returns a struct clk corresponding to the clock producer, or | 129 | * Returns a struct clk corresponding to the clock producer, or |
92 | * valid IS_ERR() condition containing errno. The implementation | 130 | * valid IS_ERR() condition containing errno. The implementation |
@@ -103,7 +141,7 @@ struct clk *clk_get(struct device *dev, const char *id); | |||
103 | /** | 141 | /** |
104 | * devm_clk_get - lookup and obtain a managed reference to a clock producer. | 142 | * devm_clk_get - lookup and obtain a managed reference to a clock producer. |
105 | * @dev: device for clock "consumer" | 143 | * @dev: device for clock "consumer" |
106 | * @id: clock comsumer ID | 144 | * @id: clock consumer ID |
107 | * | 145 | * |
108 | * Returns a struct clk corresponding to the clock producer, or | 146 | * Returns a struct clk corresponding to the clock producer, or |
109 | * valid IS_ERR() condition containing errno. The implementation | 147 | * valid IS_ERR() condition containing errno. The implementation |
@@ -121,24 +159,6 @@ struct clk *clk_get(struct device *dev, const char *id); | |||
121 | struct clk *devm_clk_get(struct device *dev, const char *id); | 159 | struct clk *devm_clk_get(struct device *dev, const char *id); |
122 | 160 | ||
123 | /** | 161 | /** |
124 | * clk_prepare - prepare a clock source | ||
125 | * @clk: clock source | ||
126 | * | ||
127 | * This prepares the clock source for use. | ||
128 | * | ||
129 | * Must not be called from within atomic context. | ||
130 | */ | ||
131 | #ifdef CONFIG_HAVE_CLK_PREPARE | ||
132 | int clk_prepare(struct clk *clk); | ||
133 | #else | ||
134 | static inline int clk_prepare(struct clk *clk) | ||
135 | { | ||
136 | might_sleep(); | ||
137 | return 0; | ||
138 | } | ||
139 | #endif | ||
140 | |||
141 | /** | ||
142 | * clk_enable - inform the system when the clock source should be running. | 162 | * clk_enable - inform the system when the clock source should be running. |
143 | * @clk: clock source | 163 | * @clk: clock source |
144 | * | 164 | * |
@@ -166,47 +186,6 @@ int clk_enable(struct clk *clk); | |||
166 | */ | 186 | */ |
167 | void clk_disable(struct clk *clk); | 187 | void clk_disable(struct clk *clk); |
168 | 188 | ||
169 | |||
170 | /** | ||
171 | * clk_unprepare - undo preparation of a clock source | ||
172 | * @clk: clock source | ||
173 | * | ||
174 | * This undoes a previously prepared clock. The caller must balance | ||
175 | * the number of prepare and unprepare calls. | ||
176 | * | ||
177 | * Must not be called from within atomic context. | ||
178 | */ | ||
179 | #ifdef CONFIG_HAVE_CLK_PREPARE | ||
180 | void clk_unprepare(struct clk *clk); | ||
181 | #else | ||
182 | static inline void clk_unprepare(struct clk *clk) | ||
183 | { | ||
184 | might_sleep(); | ||
185 | } | ||
186 | #endif | ||
187 | |||
188 | /* clk_prepare_enable helps cases using clk_enable in non-atomic context. */ | ||
189 | static inline int clk_prepare_enable(struct clk *clk) | ||
190 | { | ||
191 | int ret; | ||
192 | |||
193 | ret = clk_prepare(clk); | ||
194 | if (ret) | ||
195 | return ret; | ||
196 | ret = clk_enable(clk); | ||
197 | if (ret) | ||
198 | clk_unprepare(clk); | ||
199 | |||
200 | return ret; | ||
201 | } | ||
202 | |||
203 | /* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */ | ||
204 | static inline void clk_disable_unprepare(struct clk *clk) | ||
205 | { | ||
206 | clk_disable(clk); | ||
207 | clk_unprepare(clk); | ||
208 | } | ||
209 | |||
210 | /** | 189 | /** |
211 | * clk_get_rate - obtain the current clock rate (in Hz) for a clock source. | 190 | * clk_get_rate - obtain the current clock rate (in Hz) for a clock source. |
212 | * This is only valid once the clock source has been enabled. | 191 | * This is only valid once the clock source has been enabled. |
@@ -297,6 +276,78 @@ struct clk *clk_get_parent(struct clk *clk); | |||
297 | */ | 276 | */ |
298 | struct clk *clk_get_sys(const char *dev_id, const char *con_id); | 277 | struct clk *clk_get_sys(const char *dev_id, const char *con_id); |
299 | 278 | ||
279 | #else /* !CONFIG_HAVE_CLK */ | ||
280 | |||
281 | static inline struct clk *clk_get(struct device *dev, const char *id) | ||
282 | { | ||
283 | return NULL; | ||
284 | } | ||
285 | |||
286 | static inline struct clk *devm_clk_get(struct device *dev, const char *id) | ||
287 | { | ||
288 | return NULL; | ||
289 | } | ||
290 | |||
291 | static inline void clk_put(struct clk *clk) {} | ||
292 | |||
293 | static inline void devm_clk_put(struct device *dev, struct clk *clk) {} | ||
294 | |||
295 | static inline int clk_enable(struct clk *clk) | ||
296 | { | ||
297 | return 0; | ||
298 | } | ||
299 | |||
300 | static inline void clk_disable(struct clk *clk) {} | ||
301 | |||
302 | static inline unsigned long clk_get_rate(struct clk *clk) | ||
303 | { | ||
304 | return 0; | ||
305 | } | ||
306 | |||
307 | static inline int clk_set_rate(struct clk *clk, unsigned long rate) | ||
308 | { | ||
309 | return 0; | ||
310 | } | ||
311 | |||
312 | static inline long clk_round_rate(struct clk *clk, unsigned long rate) | ||
313 | { | ||
314 | return 0; | ||
315 | } | ||
316 | |||
317 | static inline int clk_set_parent(struct clk *clk, struct clk *parent) | ||
318 | { | ||
319 | return 0; | ||
320 | } | ||
321 | |||
322 | static inline struct clk *clk_get_parent(struct clk *clk) | ||
323 | { | ||
324 | return NULL; | ||
325 | } | ||
326 | |||
327 | #endif | ||
328 | |||
329 | /* clk_prepare_enable helps cases using clk_enable in non-atomic context. */ | ||
330 | static inline int clk_prepare_enable(struct clk *clk) | ||
331 | { | ||
332 | int ret; | ||
333 | |||
334 | ret = clk_prepare(clk); | ||
335 | if (ret) | ||
336 | return ret; | ||
337 | ret = clk_enable(clk); | ||
338 | if (ret) | ||
339 | clk_unprepare(clk); | ||
340 | |||
341 | return ret; | ||
342 | } | ||
343 | |||
344 | /* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */ | ||
345 | static inline void clk_disable_unprepare(struct clk *clk) | ||
346 | { | ||
347 | clk_disable(clk); | ||
348 | clk_unprepare(clk); | ||
349 | } | ||
350 | |||
300 | /** | 351 | /** |
301 | * clk_add_alias - add a new clock alias | 352 | * clk_add_alias - add a new clock alias |
302 | * @alias: name for clock alias | 353 | * @alias: name for clock alias |
@@ -310,4 +361,23 @@ struct clk *clk_get_sys(const char *dev_id, const char *con_id); | |||
310 | int clk_add_alias(const char *alias, const char *alias_dev_name, char *id, | 361 | int clk_add_alias(const char *alias, const char *alias_dev_name, char *id, |
311 | struct device *dev); | 362 | struct device *dev); |
312 | 363 | ||
364 | struct device_node; | ||
365 | struct of_phandle_args; | ||
366 | |||
367 | #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK) | ||
368 | struct clk *of_clk_get(struct device_node *np, int index); | ||
369 | struct clk *of_clk_get_by_name(struct device_node *np, const char *name); | ||
370 | struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec); | ||
371 | #else | ||
372 | static inline struct clk *of_clk_get(struct device_node *np, int index) | ||
373 | { | ||
374 | return ERR_PTR(-ENOENT); | ||
375 | } | ||
376 | static inline struct clk *of_clk_get_by_name(struct device_node *np, | ||
377 | const char *name) | ||
378 | { | ||
379 | return ERR_PTR(-ENOENT); | ||
380 | } | ||
381 | #endif | ||
382 | |||
313 | #endif | 383 | #endif |
diff --git a/include/linux/compat.h b/include/linux/compat.h index 4e890394ef99..09b28b7369d7 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h | |||
@@ -265,9 +265,9 @@ long compat_sys_shmat(int first, int second, compat_uptr_t third, int version, | |||
265 | #else | 265 | #else |
266 | long compat_sys_semctl(int semid, int semnum, int cmd, int arg); | 266 | long compat_sys_semctl(int semid, int semnum, int cmd, int arg); |
267 | long compat_sys_msgsnd(int msqid, struct compat_msgbuf __user *msgp, | 267 | long compat_sys_msgsnd(int msqid, struct compat_msgbuf __user *msgp, |
268 | size_t msgsz, int msgflg); | 268 | compat_ssize_t msgsz, int msgflg); |
269 | long compat_sys_msgrcv(int msqid, struct compat_msgbuf __user *msgp, | 269 | long compat_sys_msgrcv(int msqid, struct compat_msgbuf __user *msgp, |
270 | size_t msgsz, long msgtyp, int msgflg); | 270 | compat_ssize_t msgsz, long msgtyp, int msgflg); |
271 | long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg); | 271 | long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg); |
272 | #endif | 272 | #endif |
273 | long compat_sys_msgctl(int first, int second, void __user *uptr); | 273 | long compat_sys_msgctl(int first, int second, void __user *uptr); |
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h index e5834aa24b9e..6a6d7aefe12d 100644 --- a/include/linux/compiler-gcc.h +++ b/include/linux/compiler-gcc.h | |||
@@ -47,9 +47,9 @@ | |||
47 | */ | 47 | */ |
48 | #if !defined(CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING) || \ | 48 | #if !defined(CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING) || \ |
49 | !defined(CONFIG_OPTIMIZE_INLINING) || (__GNUC__ < 4) | 49 | !defined(CONFIG_OPTIMIZE_INLINING) || (__GNUC__ < 4) |
50 | # define inline inline __attribute__((always_inline)) | 50 | # define inline inline __attribute__((always_inline)) notrace |
51 | # define __inline__ __inline__ __attribute__((always_inline)) | 51 | # define __inline__ __inline__ __attribute__((always_inline)) notrace |
52 | # define __inline __inline __attribute__((always_inline)) | 52 | # define __inline __inline __attribute__((always_inline)) notrace |
53 | #else | 53 | #else |
54 | /* A lot of inline functions can cause havoc with function tracing */ | 54 | /* A lot of inline functions can cause havoc with function tracing */ |
55 | # define inline inline notrace | 55 | # define inline inline notrace |
diff --git a/include/linux/cpu.h b/include/linux/cpu.h index 2e9b9ebbeb78..ce7a074f2519 100644 --- a/include/linux/cpu.h +++ b/include/linux/cpu.h | |||
@@ -73,8 +73,9 @@ enum { | |||
73 | /* migration should happen before other stuff but after perf */ | 73 | /* migration should happen before other stuff but after perf */ |
74 | CPU_PRI_PERF = 20, | 74 | CPU_PRI_PERF = 20, |
75 | CPU_PRI_MIGRATION = 10, | 75 | CPU_PRI_MIGRATION = 10, |
76 | /* prepare workqueues for other notifiers */ | 76 | /* bring up workqueues before normal notifiers and down after */ |
77 | CPU_PRI_WORKQUEUE = 5, | 77 | CPU_PRI_WORKQUEUE_UP = 5, |
78 | CPU_PRI_WORKQUEUE_DOWN = -5, | ||
78 | }; | 79 | }; |
79 | 80 | ||
80 | #define CPU_ONLINE 0x0002 /* CPU (unsigned)v is up */ | 81 | #define CPU_ONLINE 0x0002 /* CPU (unsigned)v is up */ |
diff --git a/include/linux/cpu_rmap.h b/include/linux/cpu_rmap.h index 473771a528c0..ac3bbb5b9502 100644 --- a/include/linux/cpu_rmap.h +++ b/include/linux/cpu_rmap.h | |||
@@ -1,3 +1,6 @@ | |||
1 | #ifndef __LINUX_CPU_RMAP_H | ||
2 | #define __LINUX_CPU_RMAP_H | ||
3 | |||
1 | /* | 4 | /* |
2 | * cpu_rmap.c: CPU affinity reverse-map support | 5 | * cpu_rmap.c: CPU affinity reverse-map support |
3 | * Copyright 2011 Solarflare Communications Inc. | 6 | * Copyright 2011 Solarflare Communications Inc. |
@@ -71,3 +74,4 @@ extern void free_irq_cpu_rmap(struct cpu_rmap *rmap); | |||
71 | extern int irq_cpu_rmap_add(struct cpu_rmap *rmap, int irq); | 74 | extern int irq_cpu_rmap_add(struct cpu_rmap *rmap, int irq); |
72 | 75 | ||
73 | #endif | 76 | #endif |
77 | #endif /* __LINUX_CPU_RMAP_H */ | ||
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index 6c26a3da0e03..040b13b5c14a 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
@@ -34,6 +34,7 @@ struct cpuidle_driver; | |||
34 | struct cpuidle_state_usage { | 34 | struct cpuidle_state_usage { |
35 | void *driver_data; | 35 | void *driver_data; |
36 | 36 | ||
37 | unsigned long long disable; | ||
37 | unsigned long long usage; | 38 | unsigned long long usage; |
38 | unsigned long long time; /* in US */ | 39 | unsigned long long time; /* in US */ |
39 | }; | 40 | }; |
@@ -46,7 +47,7 @@ struct cpuidle_state { | |||
46 | unsigned int exit_latency; /* in US */ | 47 | unsigned int exit_latency; /* in US */ |
47 | int power_usage; /* in mW */ | 48 | int power_usage; /* in mW */ |
48 | unsigned int target_residency; /* in US */ | 49 | unsigned int target_residency; /* in US */ |
49 | unsigned int disable; | 50 | bool disabled; /* disabled on all CPUs */ |
50 | 51 | ||
51 | int (*enter) (struct cpuidle_device *dev, | 52 | int (*enter) (struct cpuidle_device *dev, |
52 | struct cpuidle_driver *drv, | 53 | struct cpuidle_driver *drv, |
@@ -57,6 +58,7 @@ struct cpuidle_state { | |||
57 | 58 | ||
58 | /* Idle State Flags */ | 59 | /* Idle State Flags */ |
59 | #define CPUIDLE_FLAG_TIME_VALID (0x01) /* is residency time measurable? */ | 60 | #define CPUIDLE_FLAG_TIME_VALID (0x01) /* is residency time measurable? */ |
61 | #define CPUIDLE_FLAG_COUPLED (0x02) /* state applies to multiple cpus */ | ||
60 | 62 | ||
61 | #define CPUIDLE_DRIVER_FLAGS_MASK (0xFFFF0000) | 63 | #define CPUIDLE_DRIVER_FLAGS_MASK (0xFFFF0000) |
62 | 64 | ||
@@ -100,6 +102,12 @@ struct cpuidle_device { | |||
100 | struct list_head device_list; | 102 | struct list_head device_list; |
101 | struct kobject kobj; | 103 | struct kobject kobj; |
102 | struct completion kobj_unregister; | 104 | struct completion kobj_unregister; |
105 | |||
106 | #ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED | ||
107 | int safe_state_index; | ||
108 | cpumask_t coupled_cpus; | ||
109 | struct cpuidle_coupled *coupled; | ||
110 | #endif | ||
103 | }; | 111 | }; |
104 | 112 | ||
105 | DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices); | 113 | DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices); |
@@ -136,13 +144,17 @@ struct cpuidle_driver { | |||
136 | extern void disable_cpuidle(void); | 144 | extern void disable_cpuidle(void); |
137 | extern int cpuidle_idle_call(void); | 145 | extern int cpuidle_idle_call(void); |
138 | extern int cpuidle_register_driver(struct cpuidle_driver *drv); | 146 | extern int cpuidle_register_driver(struct cpuidle_driver *drv); |
139 | struct cpuidle_driver *cpuidle_get_driver(void); | 147 | extern struct cpuidle_driver *cpuidle_get_driver(void); |
148 | extern struct cpuidle_driver *cpuidle_driver_ref(void); | ||
149 | extern void cpuidle_driver_unref(void); | ||
140 | extern void cpuidle_unregister_driver(struct cpuidle_driver *drv); | 150 | extern void cpuidle_unregister_driver(struct cpuidle_driver *drv); |
141 | extern int cpuidle_register_device(struct cpuidle_device *dev); | 151 | extern int cpuidle_register_device(struct cpuidle_device *dev); |
142 | extern void cpuidle_unregister_device(struct cpuidle_device *dev); | 152 | extern void cpuidle_unregister_device(struct cpuidle_device *dev); |
143 | 153 | ||
144 | extern void cpuidle_pause_and_lock(void); | 154 | extern void cpuidle_pause_and_lock(void); |
145 | extern void cpuidle_resume_and_unlock(void); | 155 | extern void cpuidle_resume_and_unlock(void); |
156 | extern void cpuidle_pause(void); | ||
157 | extern void cpuidle_resume(void); | ||
146 | extern int cpuidle_enable_device(struct cpuidle_device *dev); | 158 | extern int cpuidle_enable_device(struct cpuidle_device *dev); |
147 | extern void cpuidle_disable_device(struct cpuidle_device *dev); | 159 | extern void cpuidle_disable_device(struct cpuidle_device *dev); |
148 | extern int cpuidle_wrap_enter(struct cpuidle_device *dev, | 160 | extern int cpuidle_wrap_enter(struct cpuidle_device *dev, |
@@ -157,6 +169,8 @@ static inline int cpuidle_idle_call(void) { return -ENODEV; } | |||
157 | static inline int cpuidle_register_driver(struct cpuidle_driver *drv) | 169 | static inline int cpuidle_register_driver(struct cpuidle_driver *drv) |
158 | {return -ENODEV; } | 170 | {return -ENODEV; } |
159 | static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; } | 171 | static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; } |
172 | static inline struct cpuidle_driver *cpuidle_driver_ref(void) {return NULL; } | ||
173 | static inline void cpuidle_driver_unref(void) {} | ||
160 | static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { } | 174 | static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { } |
161 | static inline int cpuidle_register_device(struct cpuidle_device *dev) | 175 | static inline int cpuidle_register_device(struct cpuidle_device *dev) |
162 | {return -ENODEV; } | 176 | {return -ENODEV; } |
@@ -164,6 +178,8 @@ static inline void cpuidle_unregister_device(struct cpuidle_device *dev) { } | |||
164 | 178 | ||
165 | static inline void cpuidle_pause_and_lock(void) { } | 179 | static inline void cpuidle_pause_and_lock(void) { } |
166 | static inline void cpuidle_resume_and_unlock(void) { } | 180 | static inline void cpuidle_resume_and_unlock(void) { } |
181 | static inline void cpuidle_pause(void) { } | ||
182 | static inline void cpuidle_resume(void) { } | ||
167 | static inline int cpuidle_enable_device(struct cpuidle_device *dev) | 183 | static inline int cpuidle_enable_device(struct cpuidle_device *dev) |
168 | {return -ENODEV; } | 184 | {return -ENODEV; } |
169 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } | 185 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } |
@@ -176,6 +192,10 @@ static inline int cpuidle_play_dead(void) {return -ENODEV; } | |||
176 | 192 | ||
177 | #endif | 193 | #endif |
178 | 194 | ||
195 | #ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED | ||
196 | void cpuidle_coupled_parallel_barrier(struct cpuidle_device *dev, atomic_t *a); | ||
197 | #endif | ||
198 | |||
179 | /****************************** | 199 | /****************************** |
180 | * CPUIDLE GOVERNOR INTERFACE * | 200 | * CPUIDLE GOVERNOR INTERFACE * |
181 | ******************************/ | 201 | ******************************/ |
@@ -202,14 +222,7 @@ struct cpuidle_governor { | |||
202 | extern int cpuidle_register_governor(struct cpuidle_governor *gov); | 222 | extern int cpuidle_register_governor(struct cpuidle_governor *gov); |
203 | extern void cpuidle_unregister_governor(struct cpuidle_governor *gov); | 223 | extern void cpuidle_unregister_governor(struct cpuidle_governor *gov); |
204 | 224 | ||
205 | #ifdef CONFIG_INTEL_IDLE | ||
206 | extern int intel_idle_cpu_init(int cpu); | ||
207 | #else | ||
208 | static inline int intel_idle_cpu_init(int cpu) { return -1; } | ||
209 | #endif | ||
210 | |||
211 | #else | 225 | #else |
212 | static inline int intel_idle_cpu_init(int cpu) { return -1; } | ||
213 | 226 | ||
214 | static inline int cpuidle_register_governor(struct cpuidle_governor *gov) | 227 | static inline int cpuidle_register_governor(struct cpuidle_governor *gov) |
215 | {return 0;} | 228 | {return 0;} |
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index a2c819d3c96e..032560295fcb 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
@@ -272,6 +272,8 @@ static inline void cpumask_clear_cpu(int cpu, struct cpumask *dstp) | |||
272 | * @cpu: cpu number (< nr_cpu_ids) | 272 | * @cpu: cpu number (< nr_cpu_ids) |
273 | * @cpumask: the cpumask pointer | 273 | * @cpumask: the cpumask pointer |
274 | * | 274 | * |
275 | * Returns 1 if @cpu is set in @cpumask, else returns 0 | ||
276 | * | ||
275 | * No static inline type checking - see Subtlety (1) above. | 277 | * No static inline type checking - see Subtlety (1) above. |
276 | */ | 278 | */ |
277 | #define cpumask_test_cpu(cpu, cpumask) \ | 279 | #define cpumask_test_cpu(cpu, cpumask) \ |
@@ -282,6 +284,8 @@ static inline void cpumask_clear_cpu(int cpu, struct cpumask *dstp) | |||
282 | * @cpu: cpu number (< nr_cpu_ids) | 284 | * @cpu: cpu number (< nr_cpu_ids) |
283 | * @cpumask: the cpumask pointer | 285 | * @cpumask: the cpumask pointer |
284 | * | 286 | * |
287 | * Returns 1 if @cpu is set in old bitmap of @cpumask, else returns 0 | ||
288 | * | ||
285 | * test_and_set_bit wrapper for cpumasks. | 289 | * test_and_set_bit wrapper for cpumasks. |
286 | */ | 290 | */ |
287 | static inline int cpumask_test_and_set_cpu(int cpu, struct cpumask *cpumask) | 291 | static inline int cpumask_test_and_set_cpu(int cpu, struct cpumask *cpumask) |
@@ -294,6 +298,8 @@ static inline int cpumask_test_and_set_cpu(int cpu, struct cpumask *cpumask) | |||
294 | * @cpu: cpu number (< nr_cpu_ids) | 298 | * @cpu: cpu number (< nr_cpu_ids) |
295 | * @cpumask: the cpumask pointer | 299 | * @cpumask: the cpumask pointer |
296 | * | 300 | * |
301 | * Returns 1 if @cpu is set in old bitmap of @cpumask, else returns 0 | ||
302 | * | ||
297 | * test_and_clear_bit wrapper for cpumasks. | 303 | * test_and_clear_bit wrapper for cpumasks. |
298 | */ | 304 | */ |
299 | static inline int cpumask_test_and_clear_cpu(int cpu, struct cpumask *cpumask) | 305 | static inline int cpumask_test_and_clear_cpu(int cpu, struct cpumask *cpumask) |
@@ -324,6 +330,8 @@ static inline void cpumask_clear(struct cpumask *dstp) | |||
324 | * @dstp: the cpumask result | 330 | * @dstp: the cpumask result |
325 | * @src1p: the first input | 331 | * @src1p: the first input |
326 | * @src2p: the second input | 332 | * @src2p: the second input |
333 | * | ||
334 | * If *@dstp is empty, returns 0, else returns 1 | ||
327 | */ | 335 | */ |
328 | static inline int cpumask_and(struct cpumask *dstp, | 336 | static inline int cpumask_and(struct cpumask *dstp, |
329 | const struct cpumask *src1p, | 337 | const struct cpumask *src1p, |
@@ -365,6 +373,8 @@ static inline void cpumask_xor(struct cpumask *dstp, | |||
365 | * @dstp: the cpumask result | 373 | * @dstp: the cpumask result |
366 | * @src1p: the first input | 374 | * @src1p: the first input |
367 | * @src2p: the second input | 375 | * @src2p: the second input |
376 | * | ||
377 | * If *@dstp is empty, returns 0, else returns 1 | ||
368 | */ | 378 | */ |
369 | static inline int cpumask_andnot(struct cpumask *dstp, | 379 | static inline int cpumask_andnot(struct cpumask *dstp, |
370 | const struct cpumask *src1p, | 380 | const struct cpumask *src1p, |
@@ -414,6 +424,8 @@ static inline bool cpumask_intersects(const struct cpumask *src1p, | |||
414 | * cpumask_subset - (*src1p & ~*src2p) == 0 | 424 | * cpumask_subset - (*src1p & ~*src2p) == 0 |
415 | * @src1p: the first input | 425 | * @src1p: the first input |
416 | * @src2p: the second input | 426 | * @src2p: the second input |
427 | * | ||
428 | * Returns 1 if *@src1p is a subset of *@src2p, else returns 0 | ||
417 | */ | 429 | */ |
418 | static inline int cpumask_subset(const struct cpumask *src1p, | 430 | static inline int cpumask_subset(const struct cpumask *src1p, |
419 | const struct cpumask *src2p) | 431 | const struct cpumask *src2p) |
@@ -579,9 +591,8 @@ static inline int cpulist_scnprintf(char *buf, int len, | |||
579 | } | 591 | } |
580 | 592 | ||
581 | /** | 593 | /** |
582 | * cpulist_parse_user - extract a cpumask from a user string of ranges | 594 | * cpulist_parse - extract a cpumask from a user string of ranges |
583 | * @buf: the buffer to extract from | 595 | * @buf: the buffer to extract from |
584 | * @len: the length of the buffer | ||
585 | * @dstp: the cpumask to set. | 596 | * @dstp: the cpumask to set. |
586 | * | 597 | * |
587 | * Returns -errno, or 0 for success. | 598 | * Returns -errno, or 0 for success. |
diff --git a/include/linux/cpuset.h b/include/linux/cpuset.h index 668f66baac7b..838320fc3d1d 100644 --- a/include/linux/cpuset.h +++ b/include/linux/cpuset.h | |||
@@ -20,7 +20,7 @@ extern int number_of_cpusets; /* How many cpusets are defined in system? */ | |||
20 | 20 | ||
21 | extern int cpuset_init(void); | 21 | extern int cpuset_init(void); |
22 | extern void cpuset_init_smp(void); | 22 | extern void cpuset_init_smp(void); |
23 | extern void cpuset_update_active_cpus(void); | 23 | extern void cpuset_update_active_cpus(bool cpu_online); |
24 | extern void cpuset_cpus_allowed(struct task_struct *p, struct cpumask *mask); | 24 | extern void cpuset_cpus_allowed(struct task_struct *p, struct cpumask *mask); |
25 | extern void cpuset_cpus_allowed_fallback(struct task_struct *p); | 25 | extern void cpuset_cpus_allowed_fallback(struct task_struct *p); |
26 | extern nodemask_t cpuset_mems_allowed(struct task_struct *p); | 26 | extern nodemask_t cpuset_mems_allowed(struct task_struct *p); |
@@ -124,7 +124,7 @@ static inline void set_mems_allowed(nodemask_t nodemask) | |||
124 | static inline int cpuset_init(void) { return 0; } | 124 | static inline int cpuset_init(void) { return 0; } |
125 | static inline void cpuset_init_smp(void) {} | 125 | static inline void cpuset_init_smp(void) {} |
126 | 126 | ||
127 | static inline void cpuset_update_active_cpus(void) | 127 | static inline void cpuset_update_active_cpus(bool cpu_online) |
128 | { | 128 | { |
129 | partition_sched_domains(1, NULL, NULL); | 129 | partition_sched_domains(1, NULL, NULL); |
130 | } | 130 | } |
diff --git a/include/linux/crush/crush.h b/include/linux/crush/crush.h index 7c4750811b96..25baa287cff7 100644 --- a/include/linux/crush/crush.h +++ b/include/linux/crush/crush.h | |||
@@ -154,6 +154,14 @@ struct crush_map { | |||
154 | __s32 max_buckets; | 154 | __s32 max_buckets; |
155 | __u32 max_rules; | 155 | __u32 max_rules; |
156 | __s32 max_devices; | 156 | __s32 max_devices; |
157 | |||
158 | /* choose local retries before re-descent */ | ||
159 | __u32 choose_local_tries; | ||
160 | /* choose local attempts using a fallback permutation before | ||
161 | * re-descent */ | ||
162 | __u32 choose_local_fallback_tries; | ||
163 | /* choose attempts before giving up */ | ||
164 | __u32 choose_total_tries; | ||
157 | }; | 165 | }; |
158 | 166 | ||
159 | 167 | ||
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index 094789ff3e9f..caa34e50537e 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h | |||
@@ -128,7 +128,7 @@ struct dentry { | |||
128 | struct rcu_head d_rcu; | 128 | struct rcu_head d_rcu; |
129 | } d_u; | 129 | } d_u; |
130 | struct list_head d_subdirs; /* our children */ | 130 | struct list_head d_subdirs; /* our children */ |
131 | struct list_head d_alias; /* inode alias list */ | 131 | struct hlist_node d_alias; /* inode alias list */ |
132 | }; | 132 | }; |
133 | 133 | ||
134 | /* | 134 | /* |
@@ -144,7 +144,7 @@ enum dentry_d_lock_class | |||
144 | }; | 144 | }; |
145 | 145 | ||
146 | struct dentry_operations { | 146 | struct dentry_operations { |
147 | int (*d_revalidate)(struct dentry *, struct nameidata *); | 147 | int (*d_revalidate)(struct dentry *, unsigned int); |
148 | int (*d_hash)(const struct dentry *, const struct inode *, | 148 | int (*d_hash)(const struct dentry *, const struct inode *, |
149 | struct qstr *); | 149 | struct qstr *); |
150 | int (*d_compare)(const struct dentry *, const struct inode *, | 150 | int (*d_compare)(const struct dentry *, const struct inode *, |
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h index 98f34b886f95..38d27a10aa5d 100644 --- a/include/linux/device-mapper.h +++ b/include/linux/device-mapper.h | |||
@@ -66,14 +66,13 @@ typedef int (*dm_request_endio_fn) (struct dm_target *ti, | |||
66 | struct request *clone, int error, | 66 | struct request *clone, int error, |
67 | union map_info *map_context); | 67 | union map_info *map_context); |
68 | 68 | ||
69 | typedef void (*dm_flush_fn) (struct dm_target *ti); | ||
70 | typedef void (*dm_presuspend_fn) (struct dm_target *ti); | 69 | typedef void (*dm_presuspend_fn) (struct dm_target *ti); |
71 | typedef void (*dm_postsuspend_fn) (struct dm_target *ti); | 70 | typedef void (*dm_postsuspend_fn) (struct dm_target *ti); |
72 | typedef int (*dm_preresume_fn) (struct dm_target *ti); | 71 | typedef int (*dm_preresume_fn) (struct dm_target *ti); |
73 | typedef void (*dm_resume_fn) (struct dm_target *ti); | 72 | typedef void (*dm_resume_fn) (struct dm_target *ti); |
74 | 73 | ||
75 | typedef int (*dm_status_fn) (struct dm_target *ti, status_type_t status_type, | 74 | typedef int (*dm_status_fn) (struct dm_target *ti, status_type_t status_type, |
76 | char *result, unsigned int maxlen); | 75 | unsigned status_flags, char *result, unsigned maxlen); |
77 | 76 | ||
78 | typedef int (*dm_message_fn) (struct dm_target *ti, unsigned argc, char **argv); | 77 | typedef int (*dm_message_fn) (struct dm_target *ti, unsigned argc, char **argv); |
79 | 78 | ||
@@ -139,7 +138,6 @@ struct target_type { | |||
139 | dm_map_request_fn map_rq; | 138 | dm_map_request_fn map_rq; |
140 | dm_endio_fn end_io; | 139 | dm_endio_fn end_io; |
141 | dm_request_endio_fn rq_end_io; | 140 | dm_request_endio_fn rq_end_io; |
142 | dm_flush_fn flush; | ||
143 | dm_presuspend_fn presuspend; | 141 | dm_presuspend_fn presuspend; |
144 | dm_postsuspend_fn postsuspend; | 142 | dm_postsuspend_fn postsuspend; |
145 | dm_preresume_fn preresume; | 143 | dm_preresume_fn preresume; |
@@ -188,8 +186,8 @@ struct dm_target { | |||
188 | sector_t begin; | 186 | sector_t begin; |
189 | sector_t len; | 187 | sector_t len; |
190 | 188 | ||
191 | /* Always a power of 2 */ | 189 | /* If non-zero, maximum size of I/O submitted to a target. */ |
192 | sector_t split_io; | 190 | uint32_t max_io_len; |
193 | 191 | ||
194 | /* | 192 | /* |
195 | * A number of zero-length barrier requests that will be submitted | 193 | * A number of zero-length barrier requests that will be submitted |
@@ -214,15 +212,27 @@ struct dm_target { | |||
214 | char *error; | 212 | char *error; |
215 | 213 | ||
216 | /* | 214 | /* |
215 | * Set if this target needs to receive flushes regardless of | ||
216 | * whether or not its underlying devices have support. | ||
217 | */ | ||
218 | bool flush_supported:1; | ||
219 | |||
220 | /* | ||
217 | * Set if this target needs to receive discards regardless of | 221 | * Set if this target needs to receive discards regardless of |
218 | * whether or not its underlying devices have support. | 222 | * whether or not its underlying devices have support. |
219 | */ | 223 | */ |
220 | unsigned discards_supported:1; | 224 | bool discards_supported:1; |
225 | |||
226 | /* | ||
227 | * Set if the target required discard request to be split | ||
228 | * on max_io_len boundary. | ||
229 | */ | ||
230 | bool split_discard_requests:1; | ||
221 | 231 | ||
222 | /* | 232 | /* |
223 | * Set if this target does not return zeroes on discarded blocks. | 233 | * Set if this target does not return zeroes on discarded blocks. |
224 | */ | 234 | */ |
225 | unsigned discard_zeroes_data_unsupported:1; | 235 | bool discard_zeroes_data_unsupported:1; |
226 | }; | 236 | }; |
227 | 237 | ||
228 | /* Each target can link one of these into the table */ | 238 | /* Each target can link one of these into the table */ |
@@ -360,6 +370,11 @@ void dm_table_add_target_callbacks(struct dm_table *t, struct dm_target_callback | |||
360 | int dm_table_complete(struct dm_table *t); | 370 | int dm_table_complete(struct dm_table *t); |
361 | 371 | ||
362 | /* | 372 | /* |
373 | * Target may require that it is never sent I/O larger than len. | ||
374 | */ | ||
375 | int __must_check dm_set_target_max_io_len(struct dm_target *ti, sector_t len); | ||
376 | |||
377 | /* | ||
363 | * Table reference counting. | 378 | * Table reference counting. |
364 | */ | 379 | */ |
365 | struct dm_table *dm_get_live_table(struct mapped_device *md); | 380 | struct dm_table *dm_get_live_table(struct mapped_device *md); |
diff --git a/include/linux/device.h b/include/linux/device.h index 161d96241b1b..52a5f15a2223 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
@@ -36,6 +36,7 @@ struct subsys_private; | |||
36 | struct bus_type; | 36 | struct bus_type; |
37 | struct device_node; | 37 | struct device_node; |
38 | struct iommu_ops; | 38 | struct iommu_ops; |
39 | struct iommu_group; | ||
39 | 40 | ||
40 | struct bus_attribute { | 41 | struct bus_attribute { |
41 | struct attribute attr; | 42 | struct attribute attr; |
@@ -687,8 +688,14 @@ struct device { | |||
687 | const struct attribute_group **groups; /* optional groups */ | 688 | const struct attribute_group **groups; /* optional groups */ |
688 | 689 | ||
689 | void (*release)(struct device *dev); | 690 | void (*release)(struct device *dev); |
691 | struct iommu_group *iommu_group; | ||
690 | }; | 692 | }; |
691 | 693 | ||
694 | static inline struct device *kobj_to_dev(struct kobject *kobj) | ||
695 | { | ||
696 | return container_of(kobj, struct device, kobj); | ||
697 | } | ||
698 | |||
692 | /* Get the wakeup routines, which depend on struct device */ | 699 | /* Get the wakeup routines, which depend on struct device */ |
693 | #include <linux/pm_wakeup.h> | 700 | #include <linux/pm_wakeup.h> |
694 | 701 | ||
@@ -865,8 +872,6 @@ extern int (*platform_notify_remove)(struct device *dev); | |||
865 | extern struct device *get_device(struct device *dev); | 872 | extern struct device *get_device(struct device *dev); |
866 | extern void put_device(struct device *dev); | 873 | extern void put_device(struct device *dev); |
867 | 874 | ||
868 | extern void wait_for_device_probe(void); | ||
869 | |||
870 | #ifdef CONFIG_DEVTMPFS | 875 | #ifdef CONFIG_DEVTMPFS |
871 | extern int devtmpfs_create_node(struct device *dev); | 876 | extern int devtmpfs_create_node(struct device *dev); |
872 | extern int devtmpfs_delete_node(struct device *dev); | 877 | extern int devtmpfs_delete_node(struct device *dev); |
diff --git a/include/linux/dm-ioctl.h b/include/linux/dm-ioctl.h index 75fd5573516e..91e3a360f611 100644 --- a/include/linux/dm-ioctl.h +++ b/include/linux/dm-ioctl.h | |||
@@ -267,9 +267,9 @@ enum { | |||
267 | #define DM_DEV_SET_GEOMETRY _IOWR(DM_IOCTL, DM_DEV_SET_GEOMETRY_CMD, struct dm_ioctl) | 267 | #define DM_DEV_SET_GEOMETRY _IOWR(DM_IOCTL, DM_DEV_SET_GEOMETRY_CMD, struct dm_ioctl) |
268 | 268 | ||
269 | #define DM_VERSION_MAJOR 4 | 269 | #define DM_VERSION_MAJOR 4 |
270 | #define DM_VERSION_MINOR 22 | 270 | #define DM_VERSION_MINOR 23 |
271 | #define DM_VERSION_PATCHLEVEL 0 | 271 | #define DM_VERSION_PATCHLEVEL 0 |
272 | #define DM_VERSION_EXTRA "-ioctl (2011-10-19)" | 272 | #define DM_VERSION_EXTRA "-ioctl (2012-07-25)" |
273 | 273 | ||
274 | /* Status bits */ | 274 | /* Status bits */ |
275 | #define DM_READONLY_FLAG (1 << 0) /* In/Out */ | 275 | #define DM_READONLY_FLAG (1 << 0) /* In/Out */ |
@@ -307,6 +307,8 @@ enum { | |||
307 | 307 | ||
308 | /* | 308 | /* |
309 | * Set this to suspend without flushing queued ios. | 309 | * Set this to suspend without flushing queued ios. |
310 | * Also disables flushing uncommitted changes in the thin target before | ||
311 | * generating statistics for DM_TABLE_STATUS and DM_DEV_WAIT. | ||
310 | */ | 312 | */ |
311 | #define DM_NOFLUSH_FLAG (1 << 11) /* In */ | 313 | #define DM_NOFLUSH_FLAG (1 << 11) /* In */ |
312 | 314 | ||
diff --git a/include/linux/dma-attrs.h b/include/linux/dma-attrs.h index 547ab568d3ae..f83f793223ff 100644 --- a/include/linux/dma-attrs.h +++ b/include/linux/dma-attrs.h | |||
@@ -15,6 +15,8 @@ enum dma_attr { | |||
15 | DMA_ATTR_WEAK_ORDERING, | 15 | DMA_ATTR_WEAK_ORDERING, |
16 | DMA_ATTR_WRITE_COMBINE, | 16 | DMA_ATTR_WRITE_COMBINE, |
17 | DMA_ATTR_NON_CONSISTENT, | 17 | DMA_ATTR_NON_CONSISTENT, |
18 | DMA_ATTR_NO_KERNEL_MAPPING, | ||
19 | DMA_ATTR_SKIP_CPU_SYNC, | ||
18 | DMA_ATTR_MAX, | 20 | DMA_ATTR_MAX, |
19 | }; | 21 | }; |
20 | 22 | ||
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h index dfc099e56a66..94af41858513 100644 --- a/include/linux/dma-mapping.h +++ b/include/linux/dma-mapping.h | |||
@@ -18,6 +18,9 @@ struct dma_map_ops { | |||
18 | int (*mmap)(struct device *, struct vm_area_struct *, | 18 | int (*mmap)(struct device *, struct vm_area_struct *, |
19 | void *, dma_addr_t, size_t, struct dma_attrs *attrs); | 19 | void *, dma_addr_t, size_t, struct dma_attrs *attrs); |
20 | 20 | ||
21 | int (*get_sgtable)(struct device *dev, struct sg_table *sgt, void *, | ||
22 | dma_addr_t, size_t, struct dma_attrs *attrs); | ||
23 | |||
21 | dma_addr_t (*map_page)(struct device *dev, struct page *page, | 24 | dma_addr_t (*map_page)(struct device *dev, struct page *page, |
22 | unsigned long offset, size_t size, | 25 | unsigned long offset, size_t size, |
23 | enum dma_data_direction dir, | 26 | enum dma_data_direction dir, |
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 56377df39124..9c02a4508b25 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h | |||
@@ -338,6 +338,9 @@ enum dma_slave_buswidth { | |||
338 | * @device_fc: Flow Controller Settings. Only valid for slave channels. Fill | 338 | * @device_fc: Flow Controller Settings. Only valid for slave channels. Fill |
339 | * with 'true' if peripheral should be flow controller. Direction will be | 339 | * with 'true' if peripheral should be flow controller. Direction will be |
340 | * selected at Runtime. | 340 | * selected at Runtime. |
341 | * @slave_id: Slave requester id. Only valid for slave channels. The dma | ||
342 | * slave peripheral will have unique id as dma requester which need to be | ||
343 | * pass as slave config. | ||
341 | * | 344 | * |
342 | * This struct is passed in as configuration data to a DMA engine | 345 | * This struct is passed in as configuration data to a DMA engine |
343 | * in order to set up a certain channel for DMA transport at runtime. | 346 | * in order to set up a certain channel for DMA transport at runtime. |
@@ -365,6 +368,7 @@ struct dma_slave_config { | |||
365 | u32 src_maxburst; | 368 | u32 src_maxburst; |
366 | u32 dst_maxburst; | 369 | u32 dst_maxburst; |
367 | bool device_fc; | 370 | bool device_fc; |
371 | unsigned int slave_id; | ||
368 | }; | 372 | }; |
369 | 373 | ||
370 | static inline const char *dma_chan_name(struct dma_chan *chan) | 374 | static inline const char *dma_chan_name(struct dma_chan *chan) |
@@ -670,6 +674,12 @@ static inline int dmaengine_resume(struct dma_chan *chan) | |||
670 | return dmaengine_device_control(chan, DMA_RESUME, 0); | 674 | return dmaengine_device_control(chan, DMA_RESUME, 0); |
671 | } | 675 | } |
672 | 676 | ||
677 | static inline enum dma_status dmaengine_tx_status(struct dma_chan *chan, | ||
678 | dma_cookie_t cookie, struct dma_tx_state *state) | ||
679 | { | ||
680 | return chan->device->device_tx_status(chan, cookie, state); | ||
681 | } | ||
682 | |||
673 | static inline dma_cookie_t dmaengine_submit(struct dma_async_tx_descriptor *desc) | 683 | static inline dma_cookie_t dmaengine_submit(struct dma_async_tx_descriptor *desc) |
674 | { | 684 | { |
675 | return desc->tx_submit(desc); | 685 | return desc->tx_submit(desc); |
diff --git a/include/linux/dw_apb_timer.h b/include/linux/dw_apb_timer.h index 07261d52a6df..1148575fd134 100644 --- a/include/linux/dw_apb_timer.h +++ b/include/linux/dw_apb_timer.h | |||
@@ -53,4 +53,5 @@ void dw_apb_clocksource_start(struct dw_apb_clocksource *dw_cs); | |||
53 | cycle_t dw_apb_clocksource_read(struct dw_apb_clocksource *dw_cs); | 53 | cycle_t dw_apb_clocksource_read(struct dw_apb_clocksource *dw_cs); |
54 | void dw_apb_clocksource_unregister(struct dw_apb_clocksource *dw_cs); | 54 | void dw_apb_clocksource_unregister(struct dw_apb_clocksource *dw_cs); |
55 | 55 | ||
56 | extern struct sys_timer dw_apb_timer; | ||
56 | #endif /* __DW_APB_TIMER_H__ */ | 57 | #endif /* __DW_APB_TIMER_H__ */ |
diff --git a/include/linux/edac.h b/include/linux/edac.h index 91ba3bae42ee..bab9f8473dc1 100644 --- a/include/linux/edac.h +++ b/include/linux/edac.h | |||
@@ -13,9 +13,11 @@ | |||
13 | #define _LINUX_EDAC_H_ | 13 | #define _LINUX_EDAC_H_ |
14 | 14 | ||
15 | #include <linux/atomic.h> | 15 | #include <linux/atomic.h> |
16 | #include <linux/device.h> | ||
16 | #include <linux/kobject.h> | 17 | #include <linux/kobject.h> |
17 | #include <linux/completion.h> | 18 | #include <linux/completion.h> |
18 | #include <linux/workqueue.h> | 19 | #include <linux/workqueue.h> |
20 | #include <linux/debugfs.h> | ||
19 | 21 | ||
20 | struct device; | 22 | struct device; |
21 | 23 | ||
@@ -49,7 +51,19 @@ static inline void opstate_init(void) | |||
49 | #define EDAC_MC_LABEL_LEN 31 | 51 | #define EDAC_MC_LABEL_LEN 31 |
50 | #define MC_PROC_NAME_MAX_LEN 7 | 52 | #define MC_PROC_NAME_MAX_LEN 7 |
51 | 53 | ||
52 | /* memory devices */ | 54 | /** |
55 | * enum dev_type - describe the type of memory DRAM chips used at the stick | ||
56 | * @DEV_UNKNOWN: Can't be determined, or MC doesn't support detect it | ||
57 | * @DEV_X1: 1 bit for data | ||
58 | * @DEV_X2: 2 bits for data | ||
59 | * @DEV_X4: 4 bits for data | ||
60 | * @DEV_X8: 8 bits for data | ||
61 | * @DEV_X16: 16 bits for data | ||
62 | * @DEV_X32: 32 bits for data | ||
63 | * @DEV_X64: 64 bits for data | ||
64 | * | ||
65 | * Typical values are x4 and x8. | ||
66 | */ | ||
53 | enum dev_type { | 67 | enum dev_type { |
54 | DEV_UNKNOWN = 0, | 68 | DEV_UNKNOWN = 0, |
55 | DEV_X1, | 69 | DEV_X1, |
@@ -167,18 +181,30 @@ enum mem_type { | |||
167 | #define MEM_FLAG_DDR3 BIT(MEM_DDR3) | 181 | #define MEM_FLAG_DDR3 BIT(MEM_DDR3) |
168 | #define MEM_FLAG_RDDR3 BIT(MEM_RDDR3) | 182 | #define MEM_FLAG_RDDR3 BIT(MEM_RDDR3) |
169 | 183 | ||
170 | /* chipset Error Detection and Correction capabilities and mode */ | 184 | /** |
185 | * enum edac-type - Error Detection and Correction capabilities and mode | ||
186 | * @EDAC_UNKNOWN: Unknown if ECC is available | ||
187 | * @EDAC_NONE: Doesn't support ECC | ||
188 | * @EDAC_RESERVED: Reserved ECC type | ||
189 | * @EDAC_PARITY: Detects parity errors | ||
190 | * @EDAC_EC: Error Checking - no correction | ||
191 | * @EDAC_SECDED: Single bit error correction, Double detection | ||
192 | * @EDAC_S2ECD2ED: Chipkill x2 devices - do these exist? | ||
193 | * @EDAC_S4ECD4ED: Chipkill x4 devices | ||
194 | * @EDAC_S8ECD8ED: Chipkill x8 devices | ||
195 | * @EDAC_S16ECD16ED: Chipkill x16 devices | ||
196 | */ | ||
171 | enum edac_type { | 197 | enum edac_type { |
172 | EDAC_UNKNOWN = 0, /* Unknown if ECC is available */ | 198 | EDAC_UNKNOWN = 0, |
173 | EDAC_NONE, /* Doesn't support ECC */ | 199 | EDAC_NONE, |
174 | EDAC_RESERVED, /* Reserved ECC type */ | 200 | EDAC_RESERVED, |
175 | EDAC_PARITY, /* Detects parity errors */ | 201 | EDAC_PARITY, |
176 | EDAC_EC, /* Error Checking - no correction */ | 202 | EDAC_EC, |
177 | EDAC_SECDED, /* Single bit error correction, Double detection */ | 203 | EDAC_SECDED, |
178 | EDAC_S2ECD2ED, /* Chipkill x2 devices - do these exist? */ | 204 | EDAC_S2ECD2ED, |
179 | EDAC_S4ECD4ED, /* Chipkill x4 devices */ | 205 | EDAC_S4ECD4ED, |
180 | EDAC_S8ECD8ED, /* Chipkill x8 devices */ | 206 | EDAC_S8ECD8ED, |
181 | EDAC_S16ECD16ED, /* Chipkill x16 devices */ | 207 | EDAC_S16ECD16ED, |
182 | }; | 208 | }; |
183 | 209 | ||
184 | #define EDAC_FLAG_UNKNOWN BIT(EDAC_UNKNOWN) | 210 | #define EDAC_FLAG_UNKNOWN BIT(EDAC_UNKNOWN) |
@@ -191,18 +217,30 @@ enum edac_type { | |||
191 | #define EDAC_FLAG_S8ECD8ED BIT(EDAC_S8ECD8ED) | 217 | #define EDAC_FLAG_S8ECD8ED BIT(EDAC_S8ECD8ED) |
192 | #define EDAC_FLAG_S16ECD16ED BIT(EDAC_S16ECD16ED) | 218 | #define EDAC_FLAG_S16ECD16ED BIT(EDAC_S16ECD16ED) |
193 | 219 | ||
194 | /* scrubbing capabilities */ | 220 | /** |
221 | * enum scrub_type - scrubbing capabilities | ||
222 | * @SCRUB_UNKNOWN Unknown if scrubber is available | ||
223 | * @SCRUB_NONE: No scrubber | ||
224 | * @SCRUB_SW_PROG: SW progressive (sequential) scrubbing | ||
225 | * @SCRUB_SW_SRC: Software scrub only errors | ||
226 | * @SCRUB_SW_PROG_SRC: Progressive software scrub from an error | ||
227 | * @SCRUB_SW_TUNABLE: Software scrub frequency is tunable | ||
228 | * @SCRUB_HW_PROG: HW progressive (sequential) scrubbing | ||
229 | * @SCRUB_HW_SRC: Hardware scrub only errors | ||
230 | * @SCRUB_HW_PROG_SRC: Progressive hardware scrub from an error | ||
231 | * SCRUB_HW_TUNABLE: Hardware scrub frequency is tunable | ||
232 | */ | ||
195 | enum scrub_type { | 233 | enum scrub_type { |
196 | SCRUB_UNKNOWN = 0, /* Unknown if scrubber is available */ | 234 | SCRUB_UNKNOWN = 0, |
197 | SCRUB_NONE, /* No scrubber */ | 235 | SCRUB_NONE, |
198 | SCRUB_SW_PROG, /* SW progressive (sequential) scrubbing */ | 236 | SCRUB_SW_PROG, |
199 | SCRUB_SW_SRC, /* Software scrub only errors */ | 237 | SCRUB_SW_SRC, |
200 | SCRUB_SW_PROG_SRC, /* Progressive software scrub from an error */ | 238 | SCRUB_SW_PROG_SRC, |
201 | SCRUB_SW_TUNABLE, /* Software scrub frequency is tunable */ | 239 | SCRUB_SW_TUNABLE, |
202 | SCRUB_HW_PROG, /* HW progressive (sequential) scrubbing */ | 240 | SCRUB_HW_PROG, |
203 | SCRUB_HW_SRC, /* Hardware scrub only errors */ | 241 | SCRUB_HW_SRC, |
204 | SCRUB_HW_PROG_SRC, /* Progressive hardware scrub from an error */ | 242 | SCRUB_HW_PROG_SRC, |
205 | SCRUB_HW_TUNABLE /* Hardware scrub frequency is tunable */ | 243 | SCRUB_HW_TUNABLE |
206 | }; | 244 | }; |
207 | 245 | ||
208 | #define SCRUB_FLAG_SW_PROG BIT(SCRUB_SW_PROG) | 246 | #define SCRUB_FLAG_SW_PROG BIT(SCRUB_SW_PROG) |
@@ -374,23 +412,21 @@ struct edac_mc_layer { | |||
374 | #define EDAC_MAX_LAYERS 3 | 412 | #define EDAC_MAX_LAYERS 3 |
375 | 413 | ||
376 | /** | 414 | /** |
377 | * EDAC_DIMM_PTR - Macro responsible to find a pointer inside a pointer array | 415 | * EDAC_DIMM_OFF - Macro responsible to get a pointer offset inside a pointer array |
378 | * for the element given by [layer0,layer1,layer2] position | 416 | * for the element given by [layer0,layer1,layer2] position |
379 | * | 417 | * |
380 | * @layers: a struct edac_mc_layer array, describing how many elements | 418 | * @layers: a struct edac_mc_layer array, describing how many elements |
381 | * were allocated for each layer | 419 | * were allocated for each layer |
382 | * @var: name of the var where we want to get the pointer | ||
383 | * (like mci->dimms) | ||
384 | * @n_layers: Number of layers at the @layers array | 420 | * @n_layers: Number of layers at the @layers array |
385 | * @layer0: layer0 position | 421 | * @layer0: layer0 position |
386 | * @layer1: layer1 position. Unused if n_layers < 2 | 422 | * @layer1: layer1 position. Unused if n_layers < 2 |
387 | * @layer2: layer2 position. Unused if n_layers < 3 | 423 | * @layer2: layer2 position. Unused if n_layers < 3 |
388 | * | 424 | * |
389 | * For 1 layer, this macro returns &var[layer0] | 425 | * For 1 layer, this macro returns &var[layer0] - &var |
390 | * For 2 layers, this macro is similar to allocate a bi-dimensional array | 426 | * For 2 layers, this macro is similar to allocate a bi-dimensional array |
391 | * and to return "&var[layer0][layer1]" | 427 | * and to return "&var[layer0][layer1] - &var" |
392 | * For 3 layers, this macro is similar to allocate a tri-dimensional array | 428 | * For 3 layers, this macro is similar to allocate a tri-dimensional array |
393 | * and to return "&var[layer0][layer1][layer2]" | 429 | * and to return "&var[layer0][layer1][layer2] - &var" |
394 | * | 430 | * |
395 | * A loop could be used here to make it more generic, but, as we only have | 431 | * A loop could be used here to make it more generic, but, as we only have |
396 | * 3 layers, this is a little faster. | 432 | * 3 layers, this is a little faster. |
@@ -398,23 +434,52 @@ struct edac_mc_layer { | |||
398 | * a NULL is returned, causing an OOPS during the memory allocation routine, | 434 | * a NULL is returned, causing an OOPS during the memory allocation routine, |
399 | * with would point to the developer that he's doing something wrong. | 435 | * with would point to the developer that he's doing something wrong. |
400 | */ | 436 | */ |
401 | #define EDAC_DIMM_PTR(layers, var, nlayers, layer0, layer1, layer2) ({ \ | 437 | #define EDAC_DIMM_OFF(layers, nlayers, layer0, layer1, layer2) ({ \ |
402 | typeof(var) __p; \ | 438 | int __i; \ |
403 | if ((nlayers) == 1) \ | 439 | if ((nlayers) == 1) \ |
404 | __p = &var[layer0]; \ | 440 | __i = layer0; \ |
405 | else if ((nlayers) == 2) \ | 441 | else if ((nlayers) == 2) \ |
406 | __p = &var[(layer1) + ((layers[1]).size * (layer0))]; \ | 442 | __i = (layer1) + ((layers[1]).size * (layer0)); \ |
407 | else if ((nlayers) == 3) \ | 443 | else if ((nlayers) == 3) \ |
408 | __p = &var[(layer2) + ((layers[2]).size * ((layer1) + \ | 444 | __i = (layer2) + ((layers[2]).size * ((layer1) + \ |
409 | ((layers[1]).size * (layer0))))]; \ | 445 | ((layers[1]).size * (layer0)))); \ |
410 | else \ | 446 | else \ |
447 | __i = -EINVAL; \ | ||
448 | __i; \ | ||
449 | }) | ||
450 | |||
451 | /** | ||
452 | * EDAC_DIMM_PTR - Macro responsible to get a pointer inside a pointer array | ||
453 | * for the element given by [layer0,layer1,layer2] position | ||
454 | * | ||
455 | * @layers: a struct edac_mc_layer array, describing how many elements | ||
456 | * were allocated for each layer | ||
457 | * @var: name of the var where we want to get the pointer | ||
458 | * (like mci->dimms) | ||
459 | * @n_layers: Number of layers at the @layers array | ||
460 | * @layer0: layer0 position | ||
461 | * @layer1: layer1 position. Unused if n_layers < 2 | ||
462 | * @layer2: layer2 position. Unused if n_layers < 3 | ||
463 | * | ||
464 | * For 1 layer, this macro returns &var[layer0] | ||
465 | * For 2 layers, this macro is similar to allocate a bi-dimensional array | ||
466 | * and to return "&var[layer0][layer1]" | ||
467 | * For 3 layers, this macro is similar to allocate a tri-dimensional array | ||
468 | * and to return "&var[layer0][layer1][layer2]" | ||
469 | */ | ||
470 | #define EDAC_DIMM_PTR(layers, var, nlayers, layer0, layer1, layer2) ({ \ | ||
471 | typeof(*var) __p; \ | ||
472 | int ___i = EDAC_DIMM_OFF(layers, nlayers, layer0, layer1, layer2); \ | ||
473 | if (___i < 0) \ | ||
411 | __p = NULL; \ | 474 | __p = NULL; \ |
475 | else \ | ||
476 | __p = (var)[___i]; \ | ||
412 | __p; \ | 477 | __p; \ |
413 | }) | 478 | }) |
414 | 479 | ||
415 | |||
416 | /* FIXME: add the proper per-location error counts */ | ||
417 | struct dimm_info { | 480 | struct dimm_info { |
481 | struct device dev; | ||
482 | |||
418 | char label[EDAC_MC_LABEL_LEN + 1]; /* DIMM label on motherboard */ | 483 | char label[EDAC_MC_LABEL_LEN + 1]; /* DIMM label on motherboard */ |
419 | 484 | ||
420 | /* Memory location data */ | 485 | /* Memory location data */ |
@@ -456,6 +521,8 @@ struct rank_info { | |||
456 | }; | 521 | }; |
457 | 522 | ||
458 | struct csrow_info { | 523 | struct csrow_info { |
524 | struct device dev; | ||
525 | |||
459 | /* Used only by edac_mc_find_csrow_by_page() */ | 526 | /* Used only by edac_mc_find_csrow_by_page() */ |
460 | unsigned long first_page; /* first page number in csrow */ | 527 | unsigned long first_page; /* first page number in csrow */ |
461 | unsigned long last_page; /* last page number in csrow */ | 528 | unsigned long last_page; /* last page number in csrow */ |
@@ -469,44 +536,26 @@ struct csrow_info { | |||
469 | 536 | ||
470 | struct mem_ctl_info *mci; /* the parent */ | 537 | struct mem_ctl_info *mci; /* the parent */ |
471 | 538 | ||
472 | struct kobject kobj; /* sysfs kobject for this csrow */ | ||
473 | |||
474 | /* channel information for this csrow */ | 539 | /* channel information for this csrow */ |
475 | u32 nr_channels; | 540 | u32 nr_channels; |
476 | struct rank_info *channels; | 541 | struct rank_info **channels; |
477 | }; | 542 | }; |
478 | 543 | ||
479 | struct mcidev_sysfs_group { | 544 | /* |
480 | const char *name; /* group name */ | 545 | * struct errcount_attribute - used to store the several error counts |
481 | const struct mcidev_sysfs_attribute *mcidev_attr; /* group attributes */ | ||
482 | }; | ||
483 | |||
484 | struct mcidev_sysfs_group_kobj { | ||
485 | struct list_head list; /* list for all instances within a mc */ | ||
486 | |||
487 | struct kobject kobj; /* kobj for the group */ | ||
488 | |||
489 | const struct mcidev_sysfs_group *grp; /* group description table */ | ||
490 | struct mem_ctl_info *mci; /* the parent */ | ||
491 | }; | ||
492 | |||
493 | /* mcidev_sysfs_attribute structure | ||
494 | * used for driver sysfs attributes and in mem_ctl_info | ||
495 | * sysfs top level entries | ||
496 | */ | 546 | */ |
497 | struct mcidev_sysfs_attribute { | 547 | struct errcount_attribute_data { |
498 | /* It should use either attr or grp */ | 548 | int n_layers; |
499 | struct attribute attr; | 549 | int pos[EDAC_MAX_LAYERS]; |
500 | const struct mcidev_sysfs_group *grp; /* Points to a group of attributes */ | 550 | int layer0, layer1, layer2; |
501 | |||
502 | /* Ops for show/store values at the attribute - not used on group */ | ||
503 | ssize_t (*show)(struct mem_ctl_info *,char *); | ||
504 | ssize_t (*store)(struct mem_ctl_info *, const char *,size_t); | ||
505 | }; | 551 | }; |
506 | 552 | ||
507 | /* MEMORY controller information structure | 553 | /* MEMORY controller information structure |
508 | */ | 554 | */ |
509 | struct mem_ctl_info { | 555 | struct mem_ctl_info { |
556 | struct device dev; | ||
557 | struct bus_type bus; | ||
558 | |||
510 | struct list_head link; /* for global list of mem_ctl_info structs */ | 559 | struct list_head link; /* for global list of mem_ctl_info structs */ |
511 | 560 | ||
512 | struct module *owner; /* Module owner of this control struct */ | 561 | struct module *owner; /* Module owner of this control struct */ |
@@ -548,10 +597,18 @@ struct mem_ctl_info { | |||
548 | unsigned long (*ctl_page_to_phys) (struct mem_ctl_info * mci, | 597 | unsigned long (*ctl_page_to_phys) (struct mem_ctl_info * mci, |
549 | unsigned long page); | 598 | unsigned long page); |
550 | int mc_idx; | 599 | int mc_idx; |
551 | struct csrow_info *csrows; | 600 | struct csrow_info **csrows; |
552 | unsigned nr_csrows, num_cschannel; | 601 | unsigned nr_csrows, num_cschannel; |
553 | 602 | ||
554 | /* Memory Controller hierarchy */ | 603 | /* |
604 | * Memory Controller hierarchy | ||
605 | * | ||
606 | * There are basically two types of memory controller: the ones that | ||
607 | * sees memory sticks ("dimms"), and the ones that sees memory ranks. | ||
608 | * All old memory controllers enumerate memories per rank, but most | ||
609 | * of the recent drivers enumerate memories per DIMM, instead. | ||
610 | * When the memory controller is per rank, mem_is_per_rank is true. | ||
611 | */ | ||
555 | unsigned n_layers; | 612 | unsigned n_layers; |
556 | struct edac_mc_layer *layers; | 613 | struct edac_mc_layer *layers; |
557 | bool mem_is_per_rank; | 614 | bool mem_is_per_rank; |
@@ -560,14 +617,14 @@ struct mem_ctl_info { | |||
560 | * DIMM info. Will eventually remove the entire csrows_info some day | 617 | * DIMM info. Will eventually remove the entire csrows_info some day |
561 | */ | 618 | */ |
562 | unsigned tot_dimms; | 619 | unsigned tot_dimms; |
563 | struct dimm_info *dimms; | 620 | struct dimm_info **dimms; |
564 | 621 | ||
565 | /* | 622 | /* |
566 | * FIXME - what about controllers on other busses? - IDs must be | 623 | * FIXME - what about controllers on other busses? - IDs must be |
567 | * unique. dev pointer should be sufficiently unique, but | 624 | * unique. dev pointer should be sufficiently unique, but |
568 | * BUS:SLOT.FUNC numbers may not be unique. | 625 | * BUS:SLOT.FUNC numbers may not be unique. |
569 | */ | 626 | */ |
570 | struct device *dev; | 627 | struct device *pdev; |
571 | const char *mod_name; | 628 | const char *mod_name; |
572 | const char *mod_ver; | 629 | const char *mod_ver; |
573 | const char *ctl_name; | 630 | const char *ctl_name; |
@@ -586,12 +643,6 @@ struct mem_ctl_info { | |||
586 | 643 | ||
587 | struct completion complete; | 644 | struct completion complete; |
588 | 645 | ||
589 | /* edac sysfs device control */ | ||
590 | struct kobject edac_mci_kobj; | ||
591 | |||
592 | /* list for all grp instances within a mc */ | ||
593 | struct list_head grp_kobj_list; | ||
594 | |||
595 | /* Additional top controller level attributes, but specified | 646 | /* Additional top controller level attributes, but specified |
596 | * by the low level driver. | 647 | * by the low level driver. |
597 | * | 648 | * |
@@ -609,6 +660,13 @@ struct mem_ctl_info { | |||
609 | 660 | ||
610 | /* the internal state of this controller instance */ | 661 | /* the internal state of this controller instance */ |
611 | int op_state; | 662 | int op_state; |
663 | |||
664 | #ifdef CONFIG_EDAC_DEBUG | ||
665 | struct dentry *debugfs; | ||
666 | u8 fake_inject_layer[EDAC_MAX_LAYERS]; | ||
667 | u32 fake_inject_ue; | ||
668 | u16 fake_inject_count; | ||
669 | #endif | ||
612 | }; | 670 | }; |
613 | 671 | ||
614 | #endif | 672 | #endif |
diff --git a/include/linux/efi.h b/include/linux/efi.h index ec45ccd8708a..103adc6d7e3a 100644 --- a/include/linux/efi.h +++ b/include/linux/efi.h | |||
@@ -503,8 +503,6 @@ extern u64 efi_mem_attribute (unsigned long phys_addr, unsigned long size); | |||
503 | extern int __init efi_uart_console_only (void); | 503 | extern int __init efi_uart_console_only (void); |
504 | extern void efi_initialize_iomem_resources(struct resource *code_resource, | 504 | extern void efi_initialize_iomem_resources(struct resource *code_resource, |
505 | struct resource *data_resource, struct resource *bss_resource); | 505 | struct resource *data_resource, struct resource *bss_resource); |
506 | extern unsigned long efi_get_time(void); | ||
507 | extern int efi_set_rtc_mmss(unsigned long nowtime); | ||
508 | extern void efi_reserve_boot_services(void); | 506 | extern void efi_reserve_boot_services(void); |
509 | extern struct efi_memory_map memmap; | 507 | extern struct efi_memory_map memmap; |
510 | 508 | ||
diff --git a/include/linux/etherdevice.h b/include/linux/etherdevice.h index 3d406e0ede6d..d426336d92d9 100644 --- a/include/linux/etherdevice.h +++ b/include/linux/etherdevice.h | |||
@@ -124,17 +124,30 @@ static inline bool is_valid_ether_addr(const u8 *addr) | |||
124 | } | 124 | } |
125 | 125 | ||
126 | /** | 126 | /** |
127 | * random_ether_addr - Generate software assigned random Ethernet address | 127 | * eth_random_addr - Generate software assigned random Ethernet address |
128 | * @addr: Pointer to a six-byte array containing the Ethernet address | 128 | * @addr: Pointer to a six-byte array containing the Ethernet address |
129 | * | 129 | * |
130 | * Generate a random Ethernet address (MAC) that is not multicast | 130 | * Generate a random Ethernet address (MAC) that is not multicast |
131 | * and has the local assigned bit set. | 131 | * and has the local assigned bit set. |
132 | */ | 132 | */ |
133 | static inline void random_ether_addr(u8 *addr) | 133 | static inline void eth_random_addr(u8 *addr) |
134 | { | 134 | { |
135 | get_random_bytes (addr, ETH_ALEN); | 135 | get_random_bytes(addr, ETH_ALEN); |
136 | addr [0] &= 0xfe; /* clear multicast bit */ | 136 | addr[0] &= 0xfe; /* clear multicast bit */ |
137 | addr [0] |= 0x02; /* set local assignment bit (IEEE802) */ | 137 | addr[0] |= 0x02; /* set local assignment bit (IEEE802) */ |
138 | } | ||
139 | |||
140 | #define random_ether_addr(addr) eth_random_addr(addr) | ||
141 | |||
142 | /** | ||
143 | * eth_broadcast_addr - Assign broadcast address | ||
144 | * @addr: Pointer to a six-byte array containing the Ethernet address | ||
145 | * | ||
146 | * Assign the broadcast address to the given address array. | ||
147 | */ | ||
148 | static inline void eth_broadcast_addr(u8 *addr) | ||
149 | { | ||
150 | memset(addr, 0xff, ETH_ALEN); | ||
138 | } | 151 | } |
139 | 152 | ||
140 | /** | 153 | /** |
@@ -149,7 +162,7 @@ static inline void random_ether_addr(u8 *addr) | |||
149 | static inline void eth_hw_addr_random(struct net_device *dev) | 162 | static inline void eth_hw_addr_random(struct net_device *dev) |
150 | { | 163 | { |
151 | dev->addr_assign_type |= NET_ADDR_RANDOM; | 164 | dev->addr_assign_type |= NET_ADDR_RANDOM; |
152 | random_ether_addr(dev->dev_addr); | 165 | eth_random_addr(dev->dev_addr); |
153 | } | 166 | } |
154 | 167 | ||
155 | /** | 168 | /** |
diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h index e17fa7140588..21eff418091b 100644 --- a/include/linux/ethtool.h +++ b/include/linux/ethtool.h | |||
@@ -137,6 +137,35 @@ struct ethtool_eeprom { | |||
137 | }; | 137 | }; |
138 | 138 | ||
139 | /** | 139 | /** |
140 | * struct ethtool_eee - Energy Efficient Ethernet information | ||
141 | * @cmd: ETHTOOL_{G,S}EEE | ||
142 | * @supported: Mask of %SUPPORTED_* flags for the speed/duplex combinations | ||
143 | * for which there is EEE support. | ||
144 | * @advertised: Mask of %ADVERTISED_* flags for the speed/duplex combinations | ||
145 | * advertised as eee capable. | ||
146 | * @lp_advertised: Mask of %ADVERTISED_* flags for the speed/duplex | ||
147 | * combinations advertised by the link partner as eee capable. | ||
148 | * @eee_active: Result of the eee auto negotiation. | ||
149 | * @eee_enabled: EEE configured mode (enabled/disabled). | ||
150 | * @tx_lpi_enabled: Whether the interface should assert its tx lpi, given | ||
151 | * that eee was negotiated. | ||
152 | * @tx_lpi_timer: Time in microseconds the interface delays prior to asserting | ||
153 | * its tx lpi (after reaching 'idle' state). Effective only when eee | ||
154 | * was negotiated and tx_lpi_enabled was set. | ||
155 | */ | ||
156 | struct ethtool_eee { | ||
157 | __u32 cmd; | ||
158 | __u32 supported; | ||
159 | __u32 advertised; | ||
160 | __u32 lp_advertised; | ||
161 | __u32 eee_active; | ||
162 | __u32 eee_enabled; | ||
163 | __u32 tx_lpi_enabled; | ||
164 | __u32 tx_lpi_timer; | ||
165 | __u32 reserved[2]; | ||
166 | }; | ||
167 | |||
168 | /** | ||
140 | * struct ethtool_modinfo - plugin module eeprom information | 169 | * struct ethtool_modinfo - plugin module eeprom information |
141 | * @cmd: %ETHTOOL_GMODULEINFO | 170 | * @cmd: %ETHTOOL_GMODULEINFO |
142 | * @type: Standard the module information conforms to %ETH_MODULE_SFF_xxxx | 171 | * @type: Standard the module information conforms to %ETH_MODULE_SFF_xxxx |
@@ -945,6 +974,8 @@ static inline u32 ethtool_rxfh_indir_default(u32 index, u32 n_rx_rings) | |||
945 | * @get_module_info: Get the size and type of the eeprom contained within | 974 | * @get_module_info: Get the size and type of the eeprom contained within |
946 | * a plug-in module. | 975 | * a plug-in module. |
947 | * @get_module_eeprom: Get the eeprom information from the plug-in module | 976 | * @get_module_eeprom: Get the eeprom information from the plug-in module |
977 | * @get_eee: Get Energy-Efficient (EEE) supported and status. | ||
978 | * @set_eee: Set EEE status (enable/disable) as well as LPI timers. | ||
948 | * | 979 | * |
949 | * All operations are optional (i.e. the function pointer may be set | 980 | * All operations are optional (i.e. the function pointer may be set |
950 | * to %NULL) and callers must take this into account. Callers must | 981 | * to %NULL) and callers must take this into account. Callers must |
@@ -1011,6 +1042,8 @@ struct ethtool_ops { | |||
1011 | struct ethtool_modinfo *); | 1042 | struct ethtool_modinfo *); |
1012 | int (*get_module_eeprom)(struct net_device *, | 1043 | int (*get_module_eeprom)(struct net_device *, |
1013 | struct ethtool_eeprom *, u8 *); | 1044 | struct ethtool_eeprom *, u8 *); |
1045 | int (*get_eee)(struct net_device *, struct ethtool_eee *); | ||
1046 | int (*set_eee)(struct net_device *, struct ethtool_eee *); | ||
1014 | 1047 | ||
1015 | 1048 | ||
1016 | }; | 1049 | }; |
@@ -1089,6 +1122,8 @@ struct ethtool_ops { | |||
1089 | #define ETHTOOL_GET_TS_INFO 0x00000041 /* Get time stamping and PHC info */ | 1122 | #define ETHTOOL_GET_TS_INFO 0x00000041 /* Get time stamping and PHC info */ |
1090 | #define ETHTOOL_GMODULEINFO 0x00000042 /* Get plug-in module information */ | 1123 | #define ETHTOOL_GMODULEINFO 0x00000042 /* Get plug-in module information */ |
1091 | #define ETHTOOL_GMODULEEEPROM 0x00000043 /* Get plug-in module eeprom */ | 1124 | #define ETHTOOL_GMODULEEEPROM 0x00000043 /* Get plug-in module eeprom */ |
1125 | #define ETHTOOL_GEEE 0x00000044 /* Get EEE settings */ | ||
1126 | #define ETHTOOL_SEEE 0x00000045 /* Set EEE settings */ | ||
1092 | 1127 | ||
1093 | /* compatibility with older code */ | 1128 | /* compatibility with older code */ |
1094 | #define SPARC_ETH_GSET ETHTOOL_GSET | 1129 | #define SPARC_ETH_GSET ETHTOOL_GSET |
@@ -1118,6 +1153,10 @@ struct ethtool_ops { | |||
1118 | #define SUPPORTED_10000baseR_FEC (1 << 20) | 1153 | #define SUPPORTED_10000baseR_FEC (1 << 20) |
1119 | #define SUPPORTED_20000baseMLD2_Full (1 << 21) | 1154 | #define SUPPORTED_20000baseMLD2_Full (1 << 21) |
1120 | #define SUPPORTED_20000baseKR2_Full (1 << 22) | 1155 | #define SUPPORTED_20000baseKR2_Full (1 << 22) |
1156 | #define SUPPORTED_40000baseKR4_Full (1 << 23) | ||
1157 | #define SUPPORTED_40000baseCR4_Full (1 << 24) | ||
1158 | #define SUPPORTED_40000baseSR4_Full (1 << 25) | ||
1159 | #define SUPPORTED_40000baseLR4_Full (1 << 26) | ||
1121 | 1160 | ||
1122 | /* Indicates what features are advertised by the interface. */ | 1161 | /* Indicates what features are advertised by the interface. */ |
1123 | #define ADVERTISED_10baseT_Half (1 << 0) | 1162 | #define ADVERTISED_10baseT_Half (1 << 0) |
@@ -1143,6 +1182,10 @@ struct ethtool_ops { | |||
1143 | #define ADVERTISED_10000baseR_FEC (1 << 20) | 1182 | #define ADVERTISED_10000baseR_FEC (1 << 20) |
1144 | #define ADVERTISED_20000baseMLD2_Full (1 << 21) | 1183 | #define ADVERTISED_20000baseMLD2_Full (1 << 21) |
1145 | #define ADVERTISED_20000baseKR2_Full (1 << 22) | 1184 | #define ADVERTISED_20000baseKR2_Full (1 << 22) |
1185 | #define ADVERTISED_40000baseKR4_Full (1 << 23) | ||
1186 | #define ADVERTISED_40000baseCR4_Full (1 << 24) | ||
1187 | #define ADVERTISED_40000baseSR4_Full (1 << 25) | ||
1188 | #define ADVERTISED_40000baseLR4_Full (1 << 26) | ||
1146 | 1189 | ||
1147 | /* The following are all involved in forcing a particular link | 1190 | /* The following are all involved in forcing a particular link |
1148 | * mode for the device for setting things. When getting the | 1191 | * mode for the device for setting things. When getting the |
diff --git a/include/linux/eventpoll.h b/include/linux/eventpoll.h index 6f8be328770a..f4bb378ccf6a 100644 --- a/include/linux/eventpoll.h +++ b/include/linux/eventpoll.h | |||
@@ -34,7 +34,7 @@ | |||
34 | * re-allowed until epoll_wait is called again after consuming the wakeup | 34 | * re-allowed until epoll_wait is called again after consuming the wakeup |
35 | * event(s). | 35 | * event(s). |
36 | * | 36 | * |
37 | * Requires CAP_EPOLLWAKEUP | 37 | * Requires CAP_BLOCK_SUSPEND |
38 | */ | 38 | */ |
39 | #define EPOLLWAKEUP (1 << 29) | 39 | #define EPOLLWAKEUP (1 << 29) |
40 | 40 | ||
diff --git a/include/linux/extcon/extcon_gpio.h b/include/linux/extcon/extcon_gpio.h index a2129b73dcb1..2d8307f7d67d 100644 --- a/include/linux/extcon/extcon_gpio.h +++ b/include/linux/extcon/extcon_gpio.h | |||
@@ -31,7 +31,7 @@ | |||
31 | * @irq_flags IRQ Flags (e.g., IRQF_TRIGGER_LOW). | 31 | * @irq_flags IRQ Flags (e.g., IRQF_TRIGGER_LOW). |
32 | * @state_on print_state is overriden with state_on if attached. If Null, | 32 | * @state_on print_state is overriden with state_on if attached. If Null, |
33 | * default method of extcon class is used. | 33 | * default method of extcon class is used. |
34 | * @state_off print_state is overriden with state_on if dettached. If Null, | 34 | * @state_off print_state is overriden with state_on if detached. If Null, |
35 | * default method of extcon class is used. | 35 | * default method of extcon class is used. |
36 | * | 36 | * |
37 | * Note that in order for state_on or state_off to be valid, both state_on | 37 | * Note that in order for state_on or state_off to be valid, both state_on |
diff --git a/include/linux/file.h b/include/linux/file.h index 58bf158c53d9..a22408bac0d0 100644 --- a/include/linux/file.h +++ b/include/linux/file.h | |||
@@ -39,4 +39,7 @@ extern void put_unused_fd(unsigned int fd); | |||
39 | 39 | ||
40 | extern void fd_install(unsigned int fd, struct file *file); | 40 | extern void fd_install(unsigned int fd, struct file *file); |
41 | 41 | ||
42 | extern void flush_delayed_fput(void); | ||
43 | extern void __fput_sync(struct file *); | ||
44 | |||
42 | #endif /* __LINUX_FILE_H */ | 45 | #endif /* __LINUX_FILE_H */ |
diff --git a/include/linux/firewire.h b/include/linux/firewire.h index 7edcf1031718..db04ec5121cb 100644 --- a/include/linux/firewire.h +++ b/include/linux/firewire.h | |||
@@ -152,7 +152,7 @@ static inline void fw_card_put(struct fw_card *card) | |||
152 | struct fw_attribute_group { | 152 | struct fw_attribute_group { |
153 | struct attribute_group *groups[2]; | 153 | struct attribute_group *groups[2]; |
154 | struct attribute_group group; | 154 | struct attribute_group group; |
155 | struct attribute *attrs[12]; | 155 | struct attribute *attrs[13]; |
156 | }; | 156 | }; |
157 | 157 | ||
158 | enum fw_device_state { | 158 | enum fw_device_state { |
@@ -321,7 +321,7 @@ struct fw_transaction { | |||
321 | 321 | ||
322 | struct fw_address_handler { | 322 | struct fw_address_handler { |
323 | u64 offset; | 323 | u64 offset; |
324 | size_t length; | 324 | u64 length; |
325 | fw_address_callback_t address_callback; | 325 | fw_address_callback_t address_callback; |
326 | void *callback_data; | 326 | void *callback_data; |
327 | struct list_head link; | 327 | struct list_head link; |
diff --git a/include/linux/flex_proportions.h b/include/linux/flex_proportions.h new file mode 100644 index 000000000000..4ebc49fae391 --- /dev/null +++ b/include/linux/flex_proportions.h | |||
@@ -0,0 +1,101 @@ | |||
1 | /* | ||
2 | * Floating proportions with flexible aging period | ||
3 | * | ||
4 | * Copyright (C) 2011, SUSE, Jan Kara <jack@suse.cz> | ||
5 | */ | ||
6 | |||
7 | #ifndef _LINUX_FLEX_PROPORTIONS_H | ||
8 | #define _LINUX_FLEX_PROPORTIONS_H | ||
9 | |||
10 | #include <linux/percpu_counter.h> | ||
11 | #include <linux/spinlock.h> | ||
12 | #include <linux/seqlock.h> | ||
13 | |||
14 | /* | ||
15 | * When maximum proportion of some event type is specified, this is the | ||
16 | * precision with which we allow limitting. Note that this creates an upper | ||
17 | * bound on the number of events per period like | ||
18 | * ULLONG_MAX >> FPROP_FRAC_SHIFT. | ||
19 | */ | ||
20 | #define FPROP_FRAC_SHIFT 10 | ||
21 | #define FPROP_FRAC_BASE (1UL << FPROP_FRAC_SHIFT) | ||
22 | |||
23 | /* | ||
24 | * ---- Global proportion definitions ---- | ||
25 | */ | ||
26 | struct fprop_global { | ||
27 | /* Number of events in the current period */ | ||
28 | struct percpu_counter events; | ||
29 | /* Current period */ | ||
30 | unsigned int period; | ||
31 | /* Synchronization with period transitions */ | ||
32 | seqcount_t sequence; | ||
33 | }; | ||
34 | |||
35 | int fprop_global_init(struct fprop_global *p); | ||
36 | void fprop_global_destroy(struct fprop_global *p); | ||
37 | bool fprop_new_period(struct fprop_global *p, int periods); | ||
38 | |||
39 | /* | ||
40 | * ---- SINGLE ---- | ||
41 | */ | ||
42 | struct fprop_local_single { | ||
43 | /* the local events counter */ | ||
44 | unsigned long events; | ||
45 | /* Period in which we last updated events */ | ||
46 | unsigned int period; | ||
47 | raw_spinlock_t lock; /* Protect period and numerator */ | ||
48 | }; | ||
49 | |||
50 | #define INIT_FPROP_LOCAL_SINGLE(name) \ | ||
51 | { .lock = __RAW_SPIN_LOCK_UNLOCKED(name.lock), \ | ||
52 | } | ||
53 | |||
54 | int fprop_local_init_single(struct fprop_local_single *pl); | ||
55 | void fprop_local_destroy_single(struct fprop_local_single *pl); | ||
56 | void __fprop_inc_single(struct fprop_global *p, struct fprop_local_single *pl); | ||
57 | void fprop_fraction_single(struct fprop_global *p, | ||
58 | struct fprop_local_single *pl, unsigned long *numerator, | ||
59 | unsigned long *denominator); | ||
60 | |||
61 | static inline | ||
62 | void fprop_inc_single(struct fprop_global *p, struct fprop_local_single *pl) | ||
63 | { | ||
64 | unsigned long flags; | ||
65 | |||
66 | local_irq_save(flags); | ||
67 | __fprop_inc_single(p, pl); | ||
68 | local_irq_restore(flags); | ||
69 | } | ||
70 | |||
71 | /* | ||
72 | * ---- PERCPU ---- | ||
73 | */ | ||
74 | struct fprop_local_percpu { | ||
75 | /* the local events counter */ | ||
76 | struct percpu_counter events; | ||
77 | /* Period in which we last updated events */ | ||
78 | unsigned int period; | ||
79 | raw_spinlock_t lock; /* Protect period and numerator */ | ||
80 | }; | ||
81 | |||
82 | int fprop_local_init_percpu(struct fprop_local_percpu *pl); | ||
83 | void fprop_local_destroy_percpu(struct fprop_local_percpu *pl); | ||
84 | void __fprop_inc_percpu(struct fprop_global *p, struct fprop_local_percpu *pl); | ||
85 | void __fprop_inc_percpu_max(struct fprop_global *p, struct fprop_local_percpu *pl, | ||
86 | int max_frac); | ||
87 | void fprop_fraction_percpu(struct fprop_global *p, | ||
88 | struct fprop_local_percpu *pl, unsigned long *numerator, | ||
89 | unsigned long *denominator); | ||
90 | |||
91 | static inline | ||
92 | void fprop_inc_percpu(struct fprop_global *p, struct fprop_local_percpu *pl) | ||
93 | { | ||
94 | unsigned long flags; | ||
95 | |||
96 | local_irq_save(flags); | ||
97 | __fprop_inc_percpu(p, pl); | ||
98 | local_irq_restore(flags); | ||
99 | } | ||
100 | |||
101 | #endif | ||
diff --git a/include/linux/fs.h b/include/linux/fs.h index a1e77270f5a5..b178f9e91e23 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -826,7 +826,7 @@ struct inode { | |||
826 | struct list_head i_lru; /* inode LRU list */ | 826 | struct list_head i_lru; /* inode LRU list */ |
827 | struct list_head i_sb_list; | 827 | struct list_head i_sb_list; |
828 | union { | 828 | union { |
829 | struct list_head i_dentry; | 829 | struct hlist_head i_dentry; |
830 | struct rcu_head i_rcu; | 830 | struct rcu_head i_rcu; |
831 | }; | 831 | }; |
832 | u64 i_version; | 832 | u64 i_version; |
@@ -1572,7 +1572,7 @@ extern void unlock_super(struct super_block *); | |||
1572 | /* | 1572 | /* |
1573 | * VFS helper functions.. | 1573 | * VFS helper functions.. |
1574 | */ | 1574 | */ |
1575 | extern int vfs_create(struct inode *, struct dentry *, umode_t, struct nameidata *); | 1575 | extern int vfs_create(struct inode *, struct dentry *, umode_t, bool); |
1576 | extern int vfs_mkdir(struct inode *, struct dentry *, umode_t); | 1576 | extern int vfs_mkdir(struct inode *, struct dentry *, umode_t); |
1577 | extern int vfs_mknod(struct inode *, struct dentry *, umode_t, dev_t); | 1577 | extern int vfs_mknod(struct inode *, struct dentry *, umode_t, dev_t); |
1578 | extern int vfs_symlink(struct inode *, struct dentry *, const char *); | 1578 | extern int vfs_symlink(struct inode *, struct dentry *, const char *); |
@@ -1667,7 +1667,7 @@ struct file_operations { | |||
1667 | }; | 1667 | }; |
1668 | 1668 | ||
1669 | struct inode_operations { | 1669 | struct inode_operations { |
1670 | struct dentry * (*lookup) (struct inode *,struct dentry *, struct nameidata *); | 1670 | struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int); |
1671 | void * (*follow_link) (struct dentry *, struct nameidata *); | 1671 | void * (*follow_link) (struct dentry *, struct nameidata *); |
1672 | int (*permission) (struct inode *, int); | 1672 | int (*permission) (struct inode *, int); |
1673 | struct posix_acl * (*get_acl)(struct inode *, int); | 1673 | struct posix_acl * (*get_acl)(struct inode *, int); |
@@ -1675,7 +1675,7 @@ struct inode_operations { | |||
1675 | int (*readlink) (struct dentry *, char __user *,int); | 1675 | int (*readlink) (struct dentry *, char __user *,int); |
1676 | void (*put_link) (struct dentry *, struct nameidata *, void *); | 1676 | void (*put_link) (struct dentry *, struct nameidata *, void *); |
1677 | 1677 | ||
1678 | int (*create) (struct inode *,struct dentry *,umode_t,struct nameidata *); | 1678 | int (*create) (struct inode *,struct dentry *, umode_t, bool); |
1679 | int (*link) (struct dentry *,struct inode *,struct dentry *); | 1679 | int (*link) (struct dentry *,struct inode *,struct dentry *); |
1680 | int (*unlink) (struct inode *,struct dentry *); | 1680 | int (*unlink) (struct inode *,struct dentry *); |
1681 | int (*symlink) (struct inode *,struct dentry *,const char *); | 1681 | int (*symlink) (struct inode *,struct dentry *,const char *); |
@@ -1694,6 +1694,9 @@ struct inode_operations { | |||
1694 | int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start, | 1694 | int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start, |
1695 | u64 len); | 1695 | u64 len); |
1696 | int (*update_time)(struct inode *, struct timespec *, int); | 1696 | int (*update_time)(struct inode *, struct timespec *, int); |
1697 | int (*atomic_open)(struct inode *, struct dentry *, | ||
1698 | struct file *, unsigned open_flag, | ||
1699 | umode_t create_mode, int *opened); | ||
1697 | } ____cacheline_aligned; | 1700 | } ____cacheline_aligned; |
1698 | 1701 | ||
1699 | struct seq_file; | 1702 | struct seq_file; |
@@ -1912,7 +1915,7 @@ void free_anon_bdev(dev_t); | |||
1912 | struct super_block *sget(struct file_system_type *type, | 1915 | struct super_block *sget(struct file_system_type *type, |
1913 | int (*test)(struct super_block *,void *), | 1916 | int (*test)(struct super_block *,void *), |
1914 | int (*set)(struct super_block *,void *), | 1917 | int (*set)(struct super_block *,void *), |
1915 | void *data); | 1918 | int flags, void *data); |
1916 | extern struct dentry *mount_pseudo(struct file_system_type *, char *, | 1919 | extern struct dentry *mount_pseudo(struct file_system_type *, char *, |
1917 | const struct super_operations *ops, | 1920 | const struct super_operations *ops, |
1918 | const struct dentry_operations *dops, | 1921 | const struct dentry_operations *dops, |
@@ -2058,10 +2061,17 @@ extern long do_sys_open(int dfd, const char __user *filename, int flags, | |||
2058 | extern struct file *filp_open(const char *, int, umode_t); | 2061 | extern struct file *filp_open(const char *, int, umode_t); |
2059 | extern struct file *file_open_root(struct dentry *, struct vfsmount *, | 2062 | extern struct file *file_open_root(struct dentry *, struct vfsmount *, |
2060 | const char *, int); | 2063 | const char *, int); |
2061 | extern struct file * dentry_open(struct dentry *, struct vfsmount *, int, | 2064 | extern struct file * dentry_open(const struct path *, int, const struct cred *); |
2062 | const struct cred *); | ||
2063 | extern int filp_close(struct file *, fl_owner_t id); | 2065 | extern int filp_close(struct file *, fl_owner_t id); |
2064 | extern char * getname(const char __user *); | 2066 | extern char * getname(const char __user *); |
2067 | enum { | ||
2068 | FILE_CREATED = 1, | ||
2069 | FILE_OPENED = 2 | ||
2070 | }; | ||
2071 | extern int finish_open(struct file *file, struct dentry *dentry, | ||
2072 | int (*open)(struct inode *, struct file *), | ||
2073 | int *opened); | ||
2074 | extern int finish_no_open(struct file *file, struct dentry *dentry); | ||
2065 | 2075 | ||
2066 | /* fs/ioctl.c */ | 2076 | /* fs/ioctl.c */ |
2067 | 2077 | ||
@@ -2092,6 +2102,7 @@ extern sector_t blkdev_max_block(struct block_device *bdev); | |||
2092 | extern void bd_forget(struct inode *inode); | 2102 | extern void bd_forget(struct inode *inode); |
2093 | extern void bdput(struct block_device *); | 2103 | extern void bdput(struct block_device *); |
2094 | extern void invalidate_bdev(struct block_device *); | 2104 | extern void invalidate_bdev(struct block_device *); |
2105 | extern void iterate_bdevs(void (*)(struct block_device *, void *), void *); | ||
2095 | extern int sync_blockdev(struct block_device *bdev); | 2106 | extern int sync_blockdev(struct block_device *bdev); |
2096 | extern void kill_bdev(struct block_device *); | 2107 | extern void kill_bdev(struct block_device *); |
2097 | extern struct super_block *freeze_bdev(struct block_device *); | 2108 | extern struct super_block *freeze_bdev(struct block_device *); |
@@ -2113,6 +2124,10 @@ static inline int thaw_bdev(struct block_device *bdev, struct super_block *sb) | |||
2113 | { | 2124 | { |
2114 | return 0; | 2125 | return 0; |
2115 | } | 2126 | } |
2127 | |||
2128 | static inline void iterate_bdevs(void (*f)(struct block_device *, void *), void *arg) | ||
2129 | { | ||
2130 | } | ||
2116 | #endif | 2131 | #endif |
2117 | extern int sync_filesystem(struct super_block *); | 2132 | extern int sync_filesystem(struct super_block *); |
2118 | extern const struct file_operations def_blk_fops; | 2133 | extern const struct file_operations def_blk_fops; |
@@ -2439,7 +2454,7 @@ extern loff_t noop_llseek(struct file *file, loff_t offset, int origin); | |||
2439 | extern loff_t no_llseek(struct file *file, loff_t offset, int origin); | 2454 | extern loff_t no_llseek(struct file *file, loff_t offset, int origin); |
2440 | extern loff_t generic_file_llseek(struct file *file, loff_t offset, int origin); | 2455 | extern loff_t generic_file_llseek(struct file *file, loff_t offset, int origin); |
2441 | extern loff_t generic_file_llseek_size(struct file *file, loff_t offset, | 2456 | extern loff_t generic_file_llseek_size(struct file *file, loff_t offset, |
2442 | int origin, loff_t maxsize); | 2457 | int origin, loff_t maxsize, loff_t eof); |
2443 | extern int generic_file_open(struct inode * inode, struct file * filp); | 2458 | extern int generic_file_open(struct inode * inode, struct file * filp); |
2444 | extern int nonseekable_open(struct inode * inode, struct file * filp); | 2459 | extern int nonseekable_open(struct inode * inode, struct file * filp); |
2445 | 2460 | ||
@@ -2561,7 +2576,7 @@ extern int simple_write_end(struct file *file, struct address_space *mapping, | |||
2561 | loff_t pos, unsigned len, unsigned copied, | 2576 | loff_t pos, unsigned len, unsigned copied, |
2562 | struct page *page, void *fsdata); | 2577 | struct page *page, void *fsdata); |
2563 | 2578 | ||
2564 | extern struct dentry *simple_lookup(struct inode *, struct dentry *, struct nameidata *); | 2579 | extern struct dentry *simple_lookup(struct inode *, struct dentry *, unsigned int flags); |
2565 | extern ssize_t generic_read_dir(struct file *, char __user *, size_t, loff_t *); | 2580 | extern ssize_t generic_read_dir(struct file *, char __user *, size_t, loff_t *); |
2566 | extern const struct file_operations simple_dir_operations; | 2581 | extern const struct file_operations simple_dir_operations; |
2567 | extern const struct inode_operations simple_dir_inode_operations; | 2582 | extern const struct inode_operations simple_dir_inode_operations; |
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index 176a939d1547..af961d6f7ab1 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h | |||
@@ -65,7 +65,7 @@ struct trace_iterator { | |||
65 | void *private; | 65 | void *private; |
66 | int cpu_file; | 66 | int cpu_file; |
67 | struct mutex mutex; | 67 | struct mutex mutex; |
68 | struct ring_buffer_iter *buffer_iter[NR_CPUS]; | 68 | struct ring_buffer_iter **buffer_iter; |
69 | unsigned long iter_flags; | 69 | unsigned long iter_flags; |
70 | 70 | ||
71 | /* trace_seq for __print_flags() and __print_symbolic() etc. */ | 71 | /* trace_seq for __print_flags() and __print_symbolic() etc. */ |
@@ -207,6 +207,9 @@ struct ftrace_event_call { | |||
207 | * bit 1: enabled | 207 | * bit 1: enabled |
208 | * bit 2: filter_active | 208 | * bit 2: filter_active |
209 | * bit 3: enabled cmd record | 209 | * bit 3: enabled cmd record |
210 | * bit 4: allow trace by non root (cap any) | ||
211 | * bit 5: failed to apply filter | ||
212 | * bit 6: ftrace internal event (do not enable) | ||
210 | * | 213 | * |
211 | * Changes to flags must hold the event_mutex. | 214 | * Changes to flags must hold the event_mutex. |
212 | * | 215 | * |
diff --git a/include/linux/genetlink.h b/include/linux/genetlink.h index 7a114016ac7d..5ab61c1eb6bf 100644 --- a/include/linux/genetlink.h +++ b/include/linux/genetlink.h | |||
@@ -85,7 +85,7 @@ enum { | |||
85 | /* All generic netlink requests are serialized by a global lock. */ | 85 | /* All generic netlink requests are serialized by a global lock. */ |
86 | extern void genl_lock(void); | 86 | extern void genl_lock(void); |
87 | extern void genl_unlock(void); | 87 | extern void genl_unlock(void); |
88 | #ifdef CONFIG_PROVE_LOCKING | 88 | #ifdef CONFIG_LOCKDEP |
89 | extern int lockdep_genl_is_held(void); | 89 | extern int lockdep_genl_is_held(void); |
90 | #endif | 90 | #endif |
91 | 91 | ||
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index 017a7fb5a1fc..ae0aaa9d42fa 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h | |||
@@ -16,7 +16,6 @@ | |||
16 | 16 | ||
17 | #ifdef CONFIG_BLOCK | 17 | #ifdef CONFIG_BLOCK |
18 | 18 | ||
19 | #define kobj_to_dev(k) container_of((k), struct device, kobj) | ||
20 | #define dev_to_disk(device) container_of((device), struct gendisk, part0.__dev) | 19 | #define dev_to_disk(device) container_of((device), struct gendisk, part0.__dev) |
21 | #define dev_to_part(device) container_of((device), struct hd_struct, __dev) | 20 | #define dev_to_part(device) container_of((device), struct hd_struct, __dev) |
22 | #define disk_to_dev(disk) (&(disk)->part0.__dev) | 21 | #define disk_to_dev(disk) (&(disk)->part0.__dev) |
diff --git a/include/linux/gfs2_ondisk.h b/include/linux/gfs2_ondisk.h index fa98bdb073b9..b2de1f9a88d6 100644 --- a/include/linux/gfs2_ondisk.h +++ b/include/linux/gfs2_ondisk.h | |||
@@ -170,6 +170,16 @@ struct gfs2_rindex { | |||
170 | #define GFS2_RGF_NOALLOC 0x00000008 | 170 | #define GFS2_RGF_NOALLOC 0x00000008 |
171 | #define GFS2_RGF_TRIMMED 0x00000010 | 171 | #define GFS2_RGF_TRIMMED 0x00000010 |
172 | 172 | ||
173 | struct gfs2_rgrp_lvb { | ||
174 | __be32 rl_magic; | ||
175 | __be32 rl_flags; | ||
176 | __be32 rl_free; | ||
177 | __be32 rl_dinodes; | ||
178 | __be64 rl_igeneration; | ||
179 | __be32 rl_unlinked; | ||
180 | __be32 __pad; | ||
181 | }; | ||
182 | |||
173 | struct gfs2_rgrp { | 183 | struct gfs2_rgrp { |
174 | struct gfs2_meta_header rg_header; | 184 | struct gfs2_meta_header rg_header; |
175 | 185 | ||
@@ -214,6 +224,7 @@ enum { | |||
214 | gfs2fl_NoAtime = 7, | 224 | gfs2fl_NoAtime = 7, |
215 | gfs2fl_Sync = 8, | 225 | gfs2fl_Sync = 8, |
216 | gfs2fl_System = 9, | 226 | gfs2fl_System = 9, |
227 | gfs2fl_TopLevel = 10, | ||
217 | gfs2fl_TruncInProg = 29, | 228 | gfs2fl_TruncInProg = 29, |
218 | gfs2fl_InheritDirectio = 30, | 229 | gfs2fl_InheritDirectio = 30, |
219 | gfs2fl_InheritJdata = 31, | 230 | gfs2fl_InheritJdata = 31, |
@@ -230,8 +241,9 @@ enum { | |||
230 | #define GFS2_DIF_NOATIME 0x00000080 | 241 | #define GFS2_DIF_NOATIME 0x00000080 |
231 | #define GFS2_DIF_SYNC 0x00000100 | 242 | #define GFS2_DIF_SYNC 0x00000100 |
232 | #define GFS2_DIF_SYSTEM 0x00000200 /* New in gfs2 */ | 243 | #define GFS2_DIF_SYSTEM 0x00000200 /* New in gfs2 */ |
244 | #define GFS2_DIF_TOPDIR 0x00000400 /* New in gfs2 */ | ||
233 | #define GFS2_DIF_TRUNC_IN_PROG 0x20000000 /* New in gfs2 */ | 245 | #define GFS2_DIF_TRUNC_IN_PROG 0x20000000 /* New in gfs2 */ |
234 | #define GFS2_DIF_INHERIT_DIRECTIO 0x40000000 | 246 | #define GFS2_DIF_INHERIT_DIRECTIO 0x40000000 /* only in gfs1 */ |
235 | #define GFS2_DIF_INHERIT_JDATA 0x80000000 | 247 | #define GFS2_DIF_INHERIT_JDATA 0x80000000 |
236 | 248 | ||
237 | struct gfs2_dinode { | 249 | struct gfs2_dinode { |
diff --git a/include/linux/gpio.h b/include/linux/gpio.h index f07fc2d08159..2e31e8b3a190 100644 --- a/include/linux/gpio.h +++ b/include/linux/gpio.h | |||
@@ -22,8 +22,8 @@ | |||
22 | /* Gpio pin is open source */ | 22 | /* Gpio pin is open source */ |
23 | #define GPIOF_OPEN_SOURCE (1 << 3) | 23 | #define GPIOF_OPEN_SOURCE (1 << 3) |
24 | 24 | ||
25 | #define GPIOF_EXPORT (1 << 2) | 25 | #define GPIOF_EXPORT (1 << 4) |
26 | #define GPIOF_EXPORT_CHANGEABLE (1 << 3) | 26 | #define GPIOF_EXPORT_CHANGEABLE (1 << 5) |
27 | #define GPIOF_EXPORT_DIR_FIXED (GPIOF_EXPORT) | 27 | #define GPIOF_EXPORT_DIR_FIXED (GPIOF_EXPORT) |
28 | #define GPIOF_EXPORT_DIR_CHANGEABLE (GPIOF_EXPORT | GPIOF_EXPORT_CHANGEABLE) | 28 | #define GPIOF_EXPORT_DIR_CHANGEABLE (GPIOF_EXPORT | GPIOF_EXPORT_CHANGEABLE) |
29 | 29 | ||
diff --git a/include/linux/hid.h b/include/linux/hid.h index 449fa385703d..42970de1b40c 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h | |||
@@ -200,6 +200,7 @@ struct hid_item { | |||
200 | #define HID_UP_DIGITIZER 0x000d0000 | 200 | #define HID_UP_DIGITIZER 0x000d0000 |
201 | #define HID_UP_PID 0x000f0000 | 201 | #define HID_UP_PID 0x000f0000 |
202 | #define HID_UP_HPVENDOR 0xff7f0000 | 202 | #define HID_UP_HPVENDOR 0xff7f0000 |
203 | #define HID_UP_HPVENDOR2 0xff010000 | ||
203 | #define HID_UP_MSVENDOR 0xff000000 | 204 | #define HID_UP_MSVENDOR 0xff000000 |
204 | #define HID_UP_CUSTOM 0x00ff0000 | 205 | #define HID_UP_CUSTOM 0x00ff0000 |
205 | #define HID_UP_LOGIVENDOR 0xffbc0000 | 206 | #define HID_UP_LOGIVENDOR 0xffbc0000 |
diff --git a/include/linux/highmem.h b/include/linux/highmem.h index d3999b4e26cc..774fa47b3b5b 100644 --- a/include/linux/highmem.h +++ b/include/linux/highmem.h | |||
@@ -110,54 +110,15 @@ static inline void kmap_atomic_idx_pop(void) | |||
110 | #endif | 110 | #endif |
111 | 111 | ||
112 | /* | 112 | /* |
113 | * NOTE: | ||
114 | * kmap_atomic() and kunmap_atomic() with two arguments are deprecated. | ||
115 | * We only keep them for backward compatibility, any usage of them | ||
116 | * are now warned. | ||
117 | */ | ||
118 | |||
119 | #define PASTE(a, b) a ## b | ||
120 | #define PASTE2(a, b) PASTE(a, b) | ||
121 | |||
122 | #define NARG_(_2, _1, n, ...) n | ||
123 | #define NARG(...) NARG_(__VA_ARGS__, 2, 1, :) | ||
124 | |||
125 | static inline void __deprecated *kmap_atomic_deprecated(struct page *page, | ||
126 | enum km_type km) | ||
127 | { | ||
128 | return kmap_atomic(page); | ||
129 | } | ||
130 | |||
131 | #define kmap_atomic1(...) kmap_atomic(__VA_ARGS__) | ||
132 | #define kmap_atomic2(...) kmap_atomic_deprecated(__VA_ARGS__) | ||
133 | #define kmap_atomic(...) PASTE2(kmap_atomic, NARG(__VA_ARGS__)(__VA_ARGS__)) | ||
134 | |||
135 | static inline void __deprecated __kunmap_atomic_deprecated(void *addr, | ||
136 | enum km_type km) | ||
137 | { | ||
138 | __kunmap_atomic(addr); | ||
139 | } | ||
140 | |||
141 | /* | ||
142 | * Prevent people trying to call kunmap_atomic() as if it were kunmap() | 113 | * Prevent people trying to call kunmap_atomic() as if it were kunmap() |
143 | * kunmap_atomic() should get the return value of kmap_atomic, not the page. | 114 | * kunmap_atomic() should get the return value of kmap_atomic, not the page. |
144 | */ | 115 | */ |
145 | #define kunmap_atomic_deprecated(addr, km) \ | 116 | #define kunmap_atomic(addr) \ |
146 | do { \ | ||
147 | BUILD_BUG_ON(__same_type((addr), struct page *)); \ | ||
148 | __kunmap_atomic_deprecated(addr, km); \ | ||
149 | } while (0) | ||
150 | |||
151 | #define kunmap_atomic_withcheck(addr) \ | ||
152 | do { \ | 117 | do { \ |
153 | BUILD_BUG_ON(__same_type((addr), struct page *)); \ | 118 | BUILD_BUG_ON(__same_type((addr), struct page *)); \ |
154 | __kunmap_atomic(addr); \ | 119 | __kunmap_atomic(addr); \ |
155 | } while (0) | 120 | } while (0) |
156 | 121 | ||
157 | #define kunmap_atomic1(...) kunmap_atomic_withcheck(__VA_ARGS__) | ||
158 | #define kunmap_atomic2(...) kunmap_atomic_deprecated(__VA_ARGS__) | ||
159 | #define kunmap_atomic(...) PASTE2(kunmap_atomic, NARG(__VA_ARGS__)(__VA_ARGS__)) | ||
160 | /**** End of C pre-processor tricks for deprecated macros ****/ | ||
161 | 122 | ||
162 | /* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */ | 123 | /* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */ |
163 | #ifndef clear_user_highpage | 124 | #ifndef clear_user_highpage |
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index fd0dc30c9f15..cc07d2777bbe 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
@@ -165,6 +165,7 @@ enum hrtimer_base_type { | |||
165 | * @lock: lock protecting the base and associated clock bases | 165 | * @lock: lock protecting the base and associated clock bases |
166 | * and timers | 166 | * and timers |
167 | * @active_bases: Bitfield to mark bases with active timers | 167 | * @active_bases: Bitfield to mark bases with active timers |
168 | * @clock_was_set: Indicates that clock was set from irq context. | ||
168 | * @expires_next: absolute time of the next event which was scheduled | 169 | * @expires_next: absolute time of the next event which was scheduled |
169 | * via clock_set_next_event() | 170 | * via clock_set_next_event() |
170 | * @hres_active: State of high resolution mode | 171 | * @hres_active: State of high resolution mode |
@@ -177,7 +178,8 @@ enum hrtimer_base_type { | |||
177 | */ | 178 | */ |
178 | struct hrtimer_cpu_base { | 179 | struct hrtimer_cpu_base { |
179 | raw_spinlock_t lock; | 180 | raw_spinlock_t lock; |
180 | unsigned long active_bases; | 181 | unsigned int active_bases; |
182 | unsigned int clock_was_set; | ||
181 | #ifdef CONFIG_HIGH_RES_TIMERS | 183 | #ifdef CONFIG_HIGH_RES_TIMERS |
182 | ktime_t expires_next; | 184 | ktime_t expires_next; |
183 | int hres_active; | 185 | int hres_active; |
@@ -286,6 +288,8 @@ extern void hrtimer_peek_ahead_timers(void); | |||
286 | # define MONOTONIC_RES_NSEC HIGH_RES_NSEC | 288 | # define MONOTONIC_RES_NSEC HIGH_RES_NSEC |
287 | # define KTIME_MONOTONIC_RES KTIME_HIGH_RES | 289 | # define KTIME_MONOTONIC_RES KTIME_HIGH_RES |
288 | 290 | ||
291 | extern void clock_was_set_delayed(void); | ||
292 | |||
289 | #else | 293 | #else |
290 | 294 | ||
291 | # define MONOTONIC_RES_NSEC LOW_RES_NSEC | 295 | # define MONOTONIC_RES_NSEC LOW_RES_NSEC |
@@ -306,6 +310,9 @@ static inline int hrtimer_is_hres_active(struct hrtimer *timer) | |||
306 | { | 310 | { |
307 | return 0; | 311 | return 0; |
308 | } | 312 | } |
313 | |||
314 | static inline void clock_was_set_delayed(void) { } | ||
315 | |||
309 | #endif | 316 | #endif |
310 | 317 | ||
311 | extern void clock_was_set(void); | 318 | extern void clock_was_set(void); |
@@ -320,6 +327,7 @@ extern ktime_t ktime_get(void); | |||
320 | extern ktime_t ktime_get_real(void); | 327 | extern ktime_t ktime_get_real(void); |
321 | extern ktime_t ktime_get_boottime(void); | 328 | extern ktime_t ktime_get_boottime(void); |
322 | extern ktime_t ktime_get_monotonic_offset(void); | 329 | extern ktime_t ktime_get_monotonic_offset(void); |
330 | extern ktime_t ktime_get_update_offsets(ktime_t *offs_real, ktime_t *offs_boot); | ||
323 | 331 | ||
324 | DECLARE_PER_CPU(struct tick_device, tick_cpu_device); | 332 | DECLARE_PER_CPU(struct tick_device, tick_cpu_device); |
325 | 333 | ||
diff --git a/include/linux/i2c-ocores.h b/include/linux/i2c-ocores.h index 4d5e57ff6614..1c06b5c7c308 100644 --- a/include/linux/i2c-ocores.h +++ b/include/linux/i2c-ocores.h | |||
@@ -12,7 +12,8 @@ | |||
12 | #define _LINUX_I2C_OCORES_H | 12 | #define _LINUX_I2C_OCORES_H |
13 | 13 | ||
14 | struct ocores_i2c_platform_data { | 14 | struct ocores_i2c_platform_data { |
15 | u32 regstep; /* distance between registers */ | 15 | u32 reg_shift; /* register offset shift value */ |
16 | u32 reg_io_width; /* register io read/write width */ | ||
16 | u32 clock_khz; /* input clock in kHz */ | 17 | u32 clock_khz; /* input clock in kHz */ |
17 | u8 num_devices; /* number of devices in the devices list */ | 18 | u8 num_devices; /* number of devices in the devices list */ |
18 | struct i2c_board_info const *devices; /* devices connected to the bus */ | 19 | struct i2c_board_info const *devices; /* devices connected to the bus */ |
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index ddfa04108baf..5970266930a2 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
@@ -68,6 +68,9 @@ extern int i2c_master_recv(const struct i2c_client *client, char *buf, | |||
68 | */ | 68 | */ |
69 | extern int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, | 69 | extern int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, |
70 | int num); | 70 | int num); |
71 | /* Unlocked flavor */ | ||
72 | extern int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, | ||
73 | int num); | ||
71 | 74 | ||
72 | /* This is the very generalized SMBus access routine. You probably do not | 75 | /* This is the very generalized SMBus access routine. You probably do not |
73 | want to use this, though; one of the functions below may be much easier, | 76 | want to use this, though; one of the functions below may be much easier, |
@@ -425,6 +428,8 @@ void i2c_unlock_adapter(struct i2c_adapter *); | |||
425 | #define I2C_CLIENT_TEN 0x10 /* we have a ten bit chip address */ | 428 | #define I2C_CLIENT_TEN 0x10 /* we have a ten bit chip address */ |
426 | /* Must equal I2C_M_TEN below */ | 429 | /* Must equal I2C_M_TEN below */ |
427 | #define I2C_CLIENT_WAKE 0x80 /* for board_info; true iff can wake */ | 430 | #define I2C_CLIENT_WAKE 0x80 /* for board_info; true iff can wake */ |
431 | #define I2C_CLIENT_SCCB 0x9000 /* Use Omnivision SCCB protocol */ | ||
432 | /* Must match I2C_M_STOP|IGNORE_NAK */ | ||
428 | 433 | ||
429 | /* i2c adapter classes (bitmask) */ | 434 | /* i2c adapter classes (bitmask) */ |
430 | #define I2C_CLASS_HWMON (1<<0) /* lm_sensors, ... */ | 435 | #define I2C_CLASS_HWMON (1<<0) /* lm_sensors, ... */ |
@@ -541,6 +546,7 @@ struct i2c_msg { | |||
541 | __u16 flags; | 546 | __u16 flags; |
542 | #define I2C_M_TEN 0x0010 /* this is a ten bit chip address */ | 547 | #define I2C_M_TEN 0x0010 /* this is a ten bit chip address */ |
543 | #define I2C_M_RD 0x0001 /* read data, from slave to master */ | 548 | #define I2C_M_RD 0x0001 /* read data, from slave to master */ |
549 | #define I2C_M_STOP 0x8000 /* if I2C_FUNC_PROTOCOL_MANGLING */ | ||
544 | #define I2C_M_NOSTART 0x4000 /* if I2C_FUNC_NOSTART */ | 550 | #define I2C_M_NOSTART 0x4000 /* if I2C_FUNC_NOSTART */ |
545 | #define I2C_M_REV_DIR_ADDR 0x2000 /* if I2C_FUNC_PROTOCOL_MANGLING */ | 551 | #define I2C_M_REV_DIR_ADDR 0x2000 /* if I2C_FUNC_PROTOCOL_MANGLING */ |
546 | #define I2C_M_IGNORE_NAK 0x1000 /* if I2C_FUNC_PROTOCOL_MANGLING */ | 552 | #define I2C_M_IGNORE_NAK 0x1000 /* if I2C_FUNC_PROTOCOL_MANGLING */ |
diff --git a/include/linux/i2c/mms114.h b/include/linux/i2c/mms114.h new file mode 100644 index 000000000000..5722ebfb2738 --- /dev/null +++ b/include/linux/i2c/mms114.h | |||
@@ -0,0 +1,24 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2012 Samsung Electronics Co.Ltd | ||
3 | * Author: Joonyoung Shim <jy0922.shim@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 Foundationr | ||
8 | */ | ||
9 | |||
10 | #ifndef __LINUX_MMS114_H | ||
11 | #define __LINUX_MMS114_H | ||
12 | |||
13 | struct mms114_platform_data { | ||
14 | unsigned int x_size; | ||
15 | unsigned int y_size; | ||
16 | unsigned int contact_threshold; | ||
17 | unsigned int moving_threshold; | ||
18 | bool x_invert; | ||
19 | bool y_invert; | ||
20 | |||
21 | void (*cfg_pin)(bool); | ||
22 | }; | ||
23 | |||
24 | #endif /* __LINUX_MMS114_H */ | ||
diff --git a/include/linux/i2c/pca953x.h b/include/linux/i2c/pca953x.h index 139ba52667c8..3c98dd4f901f 100644 --- a/include/linux/i2c/pca953x.h +++ b/include/linux/i2c/pca953x.h | |||
@@ -11,7 +11,7 @@ struct pca953x_platform_data { | |||
11 | unsigned gpio_base; | 11 | unsigned gpio_base; |
12 | 12 | ||
13 | /* initial polarity inversion setting */ | 13 | /* initial polarity inversion setting */ |
14 | uint16_t invert; | 14 | u32 invert; |
15 | 15 | ||
16 | /* interrupt base */ | 16 | /* interrupt base */ |
17 | int irq_base; | 17 | int irq_base; |
diff --git a/include/linux/i2c/twl.h b/include/linux/i2c/twl.h index 3993477103a5..555382660bc4 100644 --- a/include/linux/i2c/twl.h +++ b/include/linux/i2c/twl.h | |||
@@ -683,7 +683,6 @@ struct twl4030_audio_data { | |||
683 | }; | 683 | }; |
684 | 684 | ||
685 | struct twl4030_platform_data { | 685 | struct twl4030_platform_data { |
686 | unsigned irq_base, irq_end; | ||
687 | struct twl4030_clock_init_data *clock; | 686 | struct twl4030_clock_init_data *clock; |
688 | struct twl4030_bci_platform_data *bci; | 687 | struct twl4030_bci_platform_data *bci; |
689 | struct twl4030_gpio_platform_data *gpio; | 688 | struct twl4030_gpio_platform_data *gpio; |
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index ce9af8918514..e02fc682bb68 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
@@ -47,6 +47,7 @@ | |||
47 | #define IEEE80211_FCTL_MOREDATA 0x2000 | 47 | #define IEEE80211_FCTL_MOREDATA 0x2000 |
48 | #define IEEE80211_FCTL_PROTECTED 0x4000 | 48 | #define IEEE80211_FCTL_PROTECTED 0x4000 |
49 | #define IEEE80211_FCTL_ORDER 0x8000 | 49 | #define IEEE80211_FCTL_ORDER 0x8000 |
50 | #define IEEE80211_FCTL_CTL_EXT 0x0f00 | ||
50 | 51 | ||
51 | #define IEEE80211_SCTL_FRAG 0x000F | 52 | #define IEEE80211_SCTL_FRAG 0x000F |
52 | #define IEEE80211_SCTL_SEQ 0xFFF0 | 53 | #define IEEE80211_SCTL_SEQ 0xFFF0 |
@@ -54,6 +55,7 @@ | |||
54 | #define IEEE80211_FTYPE_MGMT 0x0000 | 55 | #define IEEE80211_FTYPE_MGMT 0x0000 |
55 | #define IEEE80211_FTYPE_CTL 0x0004 | 56 | #define IEEE80211_FTYPE_CTL 0x0004 |
56 | #define IEEE80211_FTYPE_DATA 0x0008 | 57 | #define IEEE80211_FTYPE_DATA 0x0008 |
58 | #define IEEE80211_FTYPE_EXT 0x000c | ||
57 | 59 | ||
58 | /* management */ | 60 | /* management */ |
59 | #define IEEE80211_STYPE_ASSOC_REQ 0x0000 | 61 | #define IEEE80211_STYPE_ASSOC_REQ 0x0000 |
@@ -70,6 +72,7 @@ | |||
70 | #define IEEE80211_STYPE_ACTION 0x00D0 | 72 | #define IEEE80211_STYPE_ACTION 0x00D0 |
71 | 73 | ||
72 | /* control */ | 74 | /* control */ |
75 | #define IEEE80211_STYPE_CTL_EXT 0x0060 | ||
73 | #define IEEE80211_STYPE_BACK_REQ 0x0080 | 76 | #define IEEE80211_STYPE_BACK_REQ 0x0080 |
74 | #define IEEE80211_STYPE_BACK 0x0090 | 77 | #define IEEE80211_STYPE_BACK 0x0090 |
75 | #define IEEE80211_STYPE_PSPOLL 0x00A0 | 78 | #define IEEE80211_STYPE_PSPOLL 0x00A0 |
@@ -97,6 +100,18 @@ | |||
97 | #define IEEE80211_STYPE_QOS_CFPOLL 0x00E0 | 100 | #define IEEE80211_STYPE_QOS_CFPOLL 0x00E0 |
98 | #define IEEE80211_STYPE_QOS_CFACKPOLL 0x00F0 | 101 | #define IEEE80211_STYPE_QOS_CFACKPOLL 0x00F0 |
99 | 102 | ||
103 | /* extension, added by 802.11ad */ | ||
104 | #define IEEE80211_STYPE_DMG_BEACON 0x0000 | ||
105 | |||
106 | /* control extension - for IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTL_EXT */ | ||
107 | #define IEEE80211_CTL_EXT_POLL 0x2000 | ||
108 | #define IEEE80211_CTL_EXT_SPR 0x3000 | ||
109 | #define IEEE80211_CTL_EXT_GRANT 0x4000 | ||
110 | #define IEEE80211_CTL_EXT_DMG_CTS 0x5000 | ||
111 | #define IEEE80211_CTL_EXT_DMG_DTS 0x6000 | ||
112 | #define IEEE80211_CTL_EXT_SSW 0x8000 | ||
113 | #define IEEE80211_CTL_EXT_SSW_FBACK 0x9000 | ||
114 | #define IEEE80211_CTL_EXT_SSW_ACK 0xa000 | ||
100 | 115 | ||
101 | /* miscellaneous IEEE 802.11 constants */ | 116 | /* miscellaneous IEEE 802.11 constants */ |
102 | #define IEEE80211_MAX_FRAG_THRESHOLD 2352 | 117 | #define IEEE80211_MAX_FRAG_THRESHOLD 2352 |
@@ -568,6 +583,26 @@ struct ieee80211s_hdr { | |||
568 | #define MESH_FLAGS_PS_DEEP 0x4 | 583 | #define MESH_FLAGS_PS_DEEP 0x4 |
569 | 584 | ||
570 | /** | 585 | /** |
586 | * enum ieee80211_preq_flags - mesh PREQ element flags | ||
587 | * | ||
588 | * @IEEE80211_PREQ_PROACTIVE_PREP_FLAG: proactive PREP subfield | ||
589 | */ | ||
590 | enum ieee80211_preq_flags { | ||
591 | IEEE80211_PREQ_PROACTIVE_PREP_FLAG = 1<<2, | ||
592 | }; | ||
593 | |||
594 | /** | ||
595 | * enum ieee80211_preq_target_flags - mesh PREQ element per target flags | ||
596 | * | ||
597 | * @IEEE80211_PREQ_TO_FLAG: target only subfield | ||
598 | * @IEEE80211_PREQ_USN_FLAG: unknown target HWMP sequence number subfield | ||
599 | */ | ||
600 | enum ieee80211_preq_target_flags { | ||
601 | IEEE80211_PREQ_TO_FLAG = 1<<0, | ||
602 | IEEE80211_PREQ_USN_FLAG = 1<<2, | ||
603 | }; | ||
604 | |||
605 | /** | ||
571 | * struct ieee80211_quiet_ie | 606 | * struct ieee80211_quiet_ie |
572 | * | 607 | * |
573 | * This structure refers to "Quiet information element" | 608 | * This structure refers to "Quiet information element" |
@@ -1072,6 +1107,73 @@ struct ieee80211_ht_operation { | |||
1072 | #define WLAN_HT_SMPS_CONTROL_STATIC 1 | 1107 | #define WLAN_HT_SMPS_CONTROL_STATIC 1 |
1073 | #define WLAN_HT_SMPS_CONTROL_DYNAMIC 3 | 1108 | #define WLAN_HT_SMPS_CONTROL_DYNAMIC 3 |
1074 | 1109 | ||
1110 | #define VHT_MCS_SUPPORTED_SET_SIZE 8 | ||
1111 | |||
1112 | struct ieee80211_vht_capabilities { | ||
1113 | __le32 vht_capabilities_info; | ||
1114 | u8 vht_supported_mcs_set[VHT_MCS_SUPPORTED_SET_SIZE]; | ||
1115 | } __packed; | ||
1116 | |||
1117 | struct ieee80211_vht_operation { | ||
1118 | u8 vht_op_info_chwidth; | ||
1119 | u8 vht_op_info_chan_center_freq_seg1_idx; | ||
1120 | u8 vht_op_info_chan_center_freq_seg2_idx; | ||
1121 | __le16 vht_basic_mcs_set; | ||
1122 | } __packed; | ||
1123 | |||
1124 | /** | ||
1125 | * struct ieee80211_vht_mcs_info - VHT MCS information | ||
1126 | * @rx_mcs_map: RX MCS map 2 bits for each stream, total 8 streams | ||
1127 | * @rx_highest: Indicates highest long GI VHT PPDU data rate | ||
1128 | * STA can receive. Rate expressed in units of 1 Mbps. | ||
1129 | * If this field is 0 this value should not be used to | ||
1130 | * consider the highest RX data rate supported. | ||
1131 | * @tx_mcs_map: TX MCS map 2 bits for each stream, total 8 streams | ||
1132 | * @tx_highest: Indicates highest long GI VHT PPDU data rate | ||
1133 | * STA can transmit. Rate expressed in units of 1 Mbps. | ||
1134 | * If this field is 0 this value should not be used to | ||
1135 | * consider the highest TX data rate supported. | ||
1136 | */ | ||
1137 | struct ieee80211_vht_mcs_info { | ||
1138 | __le16 rx_mcs_map; | ||
1139 | __le16 rx_highest; | ||
1140 | __le16 tx_mcs_map; | ||
1141 | __le16 tx_highest; | ||
1142 | } __packed; | ||
1143 | |||
1144 | #define IEEE80211_VHT_MCS_ZERO_TO_SEVEN_SUPPORT 0 | ||
1145 | #define IEEE80211_VHT_MCS_ZERO_TO_EIGHT_SUPPORT 1 | ||
1146 | #define IEEE80211_VHT_MCS_ZERO_TO_NINE_SUPPORT 2 | ||
1147 | #define IEEE80211_VHT_MCS_NOT_SUPPORTED 3 | ||
1148 | |||
1149 | /* 802.11ac VHT Capabilities */ | ||
1150 | #define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895 0x00000000 | ||
1151 | #define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991 0x00000001 | ||
1152 | #define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 0x00000002 | ||
1153 | #define IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ 0x00000004 | ||
1154 | #define IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ 0x00000008 | ||
1155 | #define IEEE80211_VHT_CAP_RXLDPC 0x00000010 | ||
1156 | #define IEEE80211_VHT_CAP_SHORT_GI_80 0x00000020 | ||
1157 | #define IEEE80211_VHT_CAP_SHORT_GI_160 0x00000040 | ||
1158 | #define IEEE80211_VHT_CAP_TXSTBC 0x00000080 | ||
1159 | #define IEEE80211_VHT_CAP_RXSTBC_1 0x00000100 | ||
1160 | #define IEEE80211_VHT_CAP_RXSTBC_2 0x00000200 | ||
1161 | #define IEEE80211_VHT_CAP_RXSTBC_3 0x00000300 | ||
1162 | #define IEEE80211_VHT_CAP_RXSTBC_4 0x00000400 | ||
1163 | #define IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE 0x00000800 | ||
1164 | #define IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE 0x00001000 | ||
1165 | #define IEEE80211_VHT_CAP_BEAMFORMER_ANTENNAS_MAX 0x00006000 | ||
1166 | #define IEEE80211_VHT_CAP_SOUNDING_DIMENTION_MAX 0x00030000 | ||
1167 | #define IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE 0x00080000 | ||
1168 | #define IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE 0x00100000 | ||
1169 | #define IEEE80211_VHT_CAP_VHT_TXOP_PS 0x00200000 | ||
1170 | #define IEEE80211_VHT_CAP_HTC_VHT 0x00400000 | ||
1171 | #define IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT 0x00800000 | ||
1172 | #define IEEE80211_VHT_CAP_VHT_LINK_ADAPTATION_VHT_UNSOL_MFB 0x08000000 | ||
1173 | #define IEEE80211_VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB 0x0c000000 | ||
1174 | #define IEEE80211_VHT_CAP_RX_ANTENNA_PATTERN 0x10000000 | ||
1175 | #define IEEE80211_VHT_CAP_TX_ANTENNA_PATTERN 0x20000000 | ||
1176 | |||
1075 | /* Authentication algorithms */ | 1177 | /* Authentication algorithms */ |
1076 | #define WLAN_AUTH_OPEN 0 | 1178 | #define WLAN_AUTH_OPEN 0 |
1077 | #define WLAN_AUTH_SHARED_KEY 1 | 1179 | #define WLAN_AUTH_SHARED_KEY 1 |
@@ -1104,6 +1206,21 @@ struct ieee80211_ht_operation { | |||
1104 | #define WLAN_CAPABILITY_QOS (1<<9) | 1206 | #define WLAN_CAPABILITY_QOS (1<<9) |
1105 | #define WLAN_CAPABILITY_SHORT_SLOT_TIME (1<<10) | 1207 | #define WLAN_CAPABILITY_SHORT_SLOT_TIME (1<<10) |
1106 | #define WLAN_CAPABILITY_DSSS_OFDM (1<<13) | 1208 | #define WLAN_CAPABILITY_DSSS_OFDM (1<<13) |
1209 | |||
1210 | /* DMG (60gHz) 802.11ad */ | ||
1211 | /* type - bits 0..1 */ | ||
1212 | #define WLAN_CAPABILITY_DMG_TYPE_IBSS (1<<0) /* Tx by: STA */ | ||
1213 | #define WLAN_CAPABILITY_DMG_TYPE_PBSS (2<<0) /* Tx by: PCP */ | ||
1214 | #define WLAN_CAPABILITY_DMG_TYPE_AP (3<<0) /* Tx by: AP */ | ||
1215 | |||
1216 | #define WLAN_CAPABILITY_DMG_CBAP_ONLY (1<<2) | ||
1217 | #define WLAN_CAPABILITY_DMG_CBAP_SOURCE (1<<3) | ||
1218 | #define WLAN_CAPABILITY_DMG_PRIVACY (1<<4) | ||
1219 | #define WLAN_CAPABILITY_DMG_ECPAC (1<<5) | ||
1220 | |||
1221 | #define WLAN_CAPABILITY_DMG_SPECTRUM_MGMT (1<<8) | ||
1222 | #define WLAN_CAPABILITY_DMG_RADIO_MEASURE (1<<12) | ||
1223 | |||
1107 | /* measurement */ | 1224 | /* measurement */ |
1108 | #define IEEE80211_SPCT_MSR_RPRT_MODE_LATE (1<<0) | 1225 | #define IEEE80211_SPCT_MSR_RPRT_MODE_LATE (1<<0) |
1109 | #define IEEE80211_SPCT_MSR_RPRT_MODE_INCAPABLE (1<<1) | 1226 | #define IEEE80211_SPCT_MSR_RPRT_MODE_INCAPABLE (1<<1) |
@@ -1113,7 +1230,6 @@ struct ieee80211_ht_operation { | |||
1113 | #define IEEE80211_SPCT_MSR_RPRT_TYPE_CCA 1 | 1230 | #define IEEE80211_SPCT_MSR_RPRT_TYPE_CCA 1 |
1114 | #define IEEE80211_SPCT_MSR_RPRT_TYPE_RPI 2 | 1231 | #define IEEE80211_SPCT_MSR_RPRT_TYPE_RPI 2 |
1115 | 1232 | ||
1116 | |||
1117 | /* 802.11g ERP information element */ | 1233 | /* 802.11g ERP information element */ |
1118 | #define WLAN_ERP_NON_ERP_PRESENT (1<<0) | 1234 | #define WLAN_ERP_NON_ERP_PRESENT (1<<0) |
1119 | #define WLAN_ERP_USE_PROTECTION (1<<1) | 1235 | #define WLAN_ERP_USE_PROTECTION (1<<1) |
@@ -1125,6 +1241,16 @@ enum { | |||
1125 | WLAN_ERP_PREAMBLE_LONG = 1, | 1241 | WLAN_ERP_PREAMBLE_LONG = 1, |
1126 | }; | 1242 | }; |
1127 | 1243 | ||
1244 | /* Band ID, 802.11ad #8.4.1.45 */ | ||
1245 | enum { | ||
1246 | IEEE80211_BANDID_TV_WS = 0, /* TV white spaces */ | ||
1247 | IEEE80211_BANDID_SUB1 = 1, /* Sub-1 GHz (excluding TV white spaces) */ | ||
1248 | IEEE80211_BANDID_2G = 2, /* 2.4 GHz */ | ||
1249 | IEEE80211_BANDID_3G = 3, /* 3.6 GHz */ | ||
1250 | IEEE80211_BANDID_5G = 4, /* 4.9 and 5 GHz */ | ||
1251 | IEEE80211_BANDID_60G = 5, /* 60 GHz */ | ||
1252 | }; | ||
1253 | |||
1128 | /* Status codes */ | 1254 | /* Status codes */ |
1129 | enum ieee80211_statuscode { | 1255 | enum ieee80211_statuscode { |
1130 | WLAN_STATUS_SUCCESS = 0, | 1256 | WLAN_STATUS_SUCCESS = 0, |
@@ -1176,6 +1302,17 @@ enum ieee80211_statuscode { | |||
1176 | WLAN_STATUS_ANTI_CLOG_REQUIRED = 76, | 1302 | WLAN_STATUS_ANTI_CLOG_REQUIRED = 76, |
1177 | WLAN_STATUS_FCG_NOT_SUPP = 78, | 1303 | WLAN_STATUS_FCG_NOT_SUPP = 78, |
1178 | WLAN_STATUS_STA_NO_TBTT = 78, | 1304 | WLAN_STATUS_STA_NO_TBTT = 78, |
1305 | /* 802.11ad */ | ||
1306 | WLAN_STATUS_REJECTED_WITH_SUGGESTED_CHANGES = 39, | ||
1307 | WLAN_STATUS_REJECTED_FOR_DELAY_PERIOD = 47, | ||
1308 | WLAN_STATUS_REJECT_WITH_SCHEDULE = 83, | ||
1309 | WLAN_STATUS_PENDING_ADMITTING_FST_SESSION = 86, | ||
1310 | WLAN_STATUS_PERFORMING_FST_NOW = 87, | ||
1311 | WLAN_STATUS_PENDING_GAP_IN_BA_WINDOW = 88, | ||
1312 | WLAN_STATUS_REJECT_U_PID_SETTING = 89, | ||
1313 | WLAN_STATUS_REJECT_DSE_BAND = 96, | ||
1314 | WLAN_STATUS_DENIED_WITH_SUGGESTED_BAND_AND_CHANNEL = 99, | ||
1315 | WLAN_STATUS_DENIED_DUE_TO_SPECTRUM_MANAGEMENT = 103, | ||
1179 | }; | 1316 | }; |
1180 | 1317 | ||
1181 | 1318 | ||
@@ -1332,6 +1469,43 @@ enum ieee80211_eid { | |||
1332 | WLAN_EID_DSE_REGISTERED_LOCATION = 58, | 1469 | WLAN_EID_DSE_REGISTERED_LOCATION = 58, |
1333 | WLAN_EID_SUPPORTED_REGULATORY_CLASSES = 59, | 1470 | WLAN_EID_SUPPORTED_REGULATORY_CLASSES = 59, |
1334 | WLAN_EID_EXT_CHANSWITCH_ANN = 60, | 1471 | WLAN_EID_EXT_CHANSWITCH_ANN = 60, |
1472 | |||
1473 | WLAN_EID_VHT_CAPABILITY = 191, | ||
1474 | WLAN_EID_VHT_OPERATION = 192, | ||
1475 | |||
1476 | /* 802.11ad */ | ||
1477 | WLAN_EID_NON_TX_BSSID_CAP = 83, | ||
1478 | WLAN_EID_WAKEUP_SCHEDULE = 143, | ||
1479 | WLAN_EID_EXT_SCHEDULE = 144, | ||
1480 | WLAN_EID_STA_AVAILABILITY = 145, | ||
1481 | WLAN_EID_DMG_TSPEC = 146, | ||
1482 | WLAN_EID_DMG_AT = 147, | ||
1483 | WLAN_EID_DMG_CAP = 148, | ||
1484 | WLAN_EID_DMG_OPERATION = 151, | ||
1485 | WLAN_EID_DMG_BSS_PARAM_CHANGE = 152, | ||
1486 | WLAN_EID_DMG_BEAM_REFINEMENT = 153, | ||
1487 | WLAN_EID_CHANNEL_MEASURE_FEEDBACK = 154, | ||
1488 | WLAN_EID_AWAKE_WINDOW = 157, | ||
1489 | WLAN_EID_MULTI_BAND = 158, | ||
1490 | WLAN_EID_ADDBA_EXT = 159, | ||
1491 | WLAN_EID_NEXT_PCP_LIST = 160, | ||
1492 | WLAN_EID_PCP_HANDOVER = 161, | ||
1493 | WLAN_EID_DMG_LINK_MARGIN = 162, | ||
1494 | WLAN_EID_SWITCHING_STREAM = 163, | ||
1495 | WLAN_EID_SESSION_TRANSITION = 164, | ||
1496 | WLAN_EID_DYN_TONE_PAIRING_REPORT = 165, | ||
1497 | WLAN_EID_CLUSTER_REPORT = 166, | ||
1498 | WLAN_EID_RELAY_CAP = 167, | ||
1499 | WLAN_EID_RELAY_XFER_PARAM_SET = 168, | ||
1500 | WLAN_EID_BEAM_LINK_MAINT = 169, | ||
1501 | WLAN_EID_MULTIPLE_MAC_ADDR = 170, | ||
1502 | WLAN_EID_U_PID = 171, | ||
1503 | WLAN_EID_DMG_LINK_ADAPT_ACK = 172, | ||
1504 | WLAN_EID_QUIET_PERIOD_REQ = 175, | ||
1505 | WLAN_EID_QUIET_PERIOD_RESP = 177, | ||
1506 | WLAN_EID_EPAC_POLICY = 182, | ||
1507 | WLAN_EID_CLISTER_TIME_OFF = 183, | ||
1508 | WLAN_EID_ANTENNA_SECTOR_ID_PATTERN = 190, | ||
1335 | }; | 1509 | }; |
1336 | 1510 | ||
1337 | /* Action category code */ | 1511 | /* Action category code */ |
@@ -1348,7 +1522,10 @@ enum ieee80211_category { | |||
1348 | WLAN_CATEGORY_MESH_ACTION = 13, | 1522 | WLAN_CATEGORY_MESH_ACTION = 13, |
1349 | WLAN_CATEGORY_MULTIHOP_ACTION = 14, | 1523 | WLAN_CATEGORY_MULTIHOP_ACTION = 14, |
1350 | WLAN_CATEGORY_SELF_PROTECTED = 15, | 1524 | WLAN_CATEGORY_SELF_PROTECTED = 15, |
1525 | WLAN_CATEGORY_DMG = 16, | ||
1351 | WLAN_CATEGORY_WMM = 17, | 1526 | WLAN_CATEGORY_WMM = 17, |
1527 | WLAN_CATEGORY_FST = 18, | ||
1528 | WLAN_CATEGORY_UNPROT_DMG = 20, | ||
1352 | WLAN_CATEGORY_VENDOR_SPECIFIC_PROTECTED = 126, | 1529 | WLAN_CATEGORY_VENDOR_SPECIFIC_PROTECTED = 126, |
1353 | WLAN_CATEGORY_VENDOR_SPECIFIC = 127, | 1530 | WLAN_CATEGORY_VENDOR_SPECIFIC = 127, |
1354 | }; | 1531 | }; |
@@ -1443,7 +1620,7 @@ enum ieee80211_tdls_actioncode { | |||
1443 | * | 1620 | * |
1444 | * @IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET: the default synchronization method | 1621 | * @IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET: the default synchronization method |
1445 | * @IEEE80211_SYNC_METHOD_VENDOR: a vendor specific synchronization method | 1622 | * @IEEE80211_SYNC_METHOD_VENDOR: a vendor specific synchronization method |
1446 | * that will be specified in a vendor specific information element | 1623 | * that will be specified in a vendor specific information element |
1447 | */ | 1624 | */ |
1448 | enum { | 1625 | enum { |
1449 | IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET = 1, | 1626 | IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET = 1, |
@@ -1455,7 +1632,7 @@ enum { | |||
1455 | * | 1632 | * |
1456 | * @IEEE80211_PATH_PROTOCOL_HWMP: the default path selection protocol | 1633 | * @IEEE80211_PATH_PROTOCOL_HWMP: the default path selection protocol |
1457 | * @IEEE80211_PATH_PROTOCOL_VENDOR: a vendor specific protocol that will | 1634 | * @IEEE80211_PATH_PROTOCOL_VENDOR: a vendor specific protocol that will |
1458 | * be specified in a vendor specific information element | 1635 | * be specified in a vendor specific information element |
1459 | */ | 1636 | */ |
1460 | enum { | 1637 | enum { |
1461 | IEEE80211_PATH_PROTOCOL_HWMP = 1, | 1638 | IEEE80211_PATH_PROTOCOL_HWMP = 1, |
@@ -1467,13 +1644,35 @@ enum { | |||
1467 | * | 1644 | * |
1468 | * @IEEE80211_PATH_METRIC_AIRTIME: the default path selection metric | 1645 | * @IEEE80211_PATH_METRIC_AIRTIME: the default path selection metric |
1469 | * @IEEE80211_PATH_METRIC_VENDOR: a vendor specific metric that will be | 1646 | * @IEEE80211_PATH_METRIC_VENDOR: a vendor specific metric that will be |
1470 | * specified in a vendor specific information element | 1647 | * specified in a vendor specific information element |
1471 | */ | 1648 | */ |
1472 | enum { | 1649 | enum { |
1473 | IEEE80211_PATH_METRIC_AIRTIME = 1, | 1650 | IEEE80211_PATH_METRIC_AIRTIME = 1, |
1474 | IEEE80211_PATH_METRIC_VENDOR = 255, | 1651 | IEEE80211_PATH_METRIC_VENDOR = 255, |
1475 | }; | 1652 | }; |
1476 | 1653 | ||
1654 | /** | ||
1655 | * enum ieee80211_root_mode_identifier - root mesh STA mode identifier | ||
1656 | * | ||
1657 | * These attribute are used by dot11MeshHWMPRootMode to set root mesh STA mode | ||
1658 | * | ||
1659 | * @IEEE80211_ROOTMODE_NO_ROOT: the mesh STA is not a root mesh STA (default) | ||
1660 | * @IEEE80211_ROOTMODE_ROOT: the mesh STA is a root mesh STA if greater than | ||
1661 | * this value | ||
1662 | * @IEEE80211_PROACTIVE_PREQ_NO_PREP: the mesh STA is a root mesh STA supports | ||
1663 | * the proactive PREQ with proactive PREP subfield set to 0 | ||
1664 | * @IEEE80211_PROACTIVE_PREQ_WITH_PREP: the mesh STA is a root mesh STA | ||
1665 | * supports the proactive PREQ with proactive PREP subfield set to 1 | ||
1666 | * @IEEE80211_PROACTIVE_RANN: the mesh STA is a root mesh STA supports | ||
1667 | * the proactive RANN | ||
1668 | */ | ||
1669 | enum ieee80211_root_mode_identifier { | ||
1670 | IEEE80211_ROOTMODE_NO_ROOT = 0, | ||
1671 | IEEE80211_ROOTMODE_ROOT = 1, | ||
1672 | IEEE80211_PROACTIVE_PREQ_NO_PREP = 2, | ||
1673 | IEEE80211_PROACTIVE_PREQ_WITH_PREP = 3, | ||
1674 | IEEE80211_PROACTIVE_RANN = 4, | ||
1675 | }; | ||
1477 | 1676 | ||
1478 | /* | 1677 | /* |
1479 | * IEEE 802.11-2007 7.3.2.9 Country information element | 1678 | * IEEE 802.11-2007 7.3.2.9 Country information element |
@@ -1574,6 +1773,7 @@ enum ieee80211_sa_query_action { | |||
1574 | #define WLAN_CIPHER_SUITE_CCMP 0x000FAC04 | 1773 | #define WLAN_CIPHER_SUITE_CCMP 0x000FAC04 |
1575 | #define WLAN_CIPHER_SUITE_WEP104 0x000FAC05 | 1774 | #define WLAN_CIPHER_SUITE_WEP104 0x000FAC05 |
1576 | #define WLAN_CIPHER_SUITE_AES_CMAC 0x000FAC06 | 1775 | #define WLAN_CIPHER_SUITE_AES_CMAC 0x000FAC06 |
1776 | #define WLAN_CIPHER_SUITE_GCMP 0x000FAC08 | ||
1577 | 1777 | ||
1578 | #define WLAN_CIPHER_SUITE_SMS4 0x00147201 | 1778 | #define WLAN_CIPHER_SUITE_SMS4 0x00147201 |
1579 | 1779 | ||
@@ -1589,6 +1789,10 @@ enum ieee80211_sa_query_action { | |||
1589 | 1789 | ||
1590 | #define WLAN_OUI_WFA 0x506f9a | 1790 | #define WLAN_OUI_WFA 0x506f9a |
1591 | #define WLAN_OUI_TYPE_WFA_P2P 9 | 1791 | #define WLAN_OUI_TYPE_WFA_P2P 9 |
1792 | #define WLAN_OUI_MICROSOFT 0x0050f2 | ||
1793 | #define WLAN_OUI_TYPE_MICROSOFT_WPA 1 | ||
1794 | #define WLAN_OUI_TYPE_MICROSOFT_WMM 2 | ||
1795 | #define WLAN_OUI_TYPE_MICROSOFT_WPS 4 | ||
1592 | 1796 | ||
1593 | /* | 1797 | /* |
1594 | * WMM/802.11e Tspec Element | 1798 | * WMM/802.11e Tspec Element |
diff --git a/include/linux/if.h b/include/linux/if.h index f995c663c493..1ec407b01e46 100644 --- a/include/linux/if.h +++ b/include/linux/if.h | |||
@@ -81,6 +81,8 @@ | |||
81 | #define IFF_UNICAST_FLT 0x20000 /* Supports unicast filtering */ | 81 | #define IFF_UNICAST_FLT 0x20000 /* Supports unicast filtering */ |
82 | #define IFF_TEAM_PORT 0x40000 /* device used as team port */ | 82 | #define IFF_TEAM_PORT 0x40000 /* device used as team port */ |
83 | #define IFF_SUPP_NOFCS 0x80000 /* device supports sending custom FCS */ | 83 | #define IFF_SUPP_NOFCS 0x80000 /* device supports sending custom FCS */ |
84 | #define IFF_LIVE_ADDR_CHANGE 0x100000 /* device supports hardware address | ||
85 | * change when it's running */ | ||
84 | 86 | ||
85 | 87 | ||
86 | #define IF_GET_IFACE 0x0001 /* for querying only */ | 88 | #define IF_GET_IFACE 0x0001 /* for querying only */ |
diff --git a/include/linux/if_ether.h b/include/linux/if_ether.h index 56d907a2c804..167ce5b363d2 100644 --- a/include/linux/if_ether.h +++ b/include/linux/if_ether.h | |||
@@ -105,7 +105,8 @@ | |||
105 | #define ETH_P_WAN_PPP 0x0007 /* Dummy type for WAN PPP frames*/ | 105 | #define ETH_P_WAN_PPP 0x0007 /* Dummy type for WAN PPP frames*/ |
106 | #define ETH_P_PPP_MP 0x0008 /* Dummy type for PPP MP frames */ | 106 | #define ETH_P_PPP_MP 0x0008 /* Dummy type for PPP MP frames */ |
107 | #define ETH_P_LOCALTALK 0x0009 /* Localtalk pseudo type */ | 107 | #define ETH_P_LOCALTALK 0x0009 /* Localtalk pseudo type */ |
108 | #define ETH_P_CAN 0x000C /* Controller Area Network */ | 108 | #define ETH_P_CAN 0x000C /* CAN: Controller Area Network */ |
109 | #define ETH_P_CANFD 0x000D /* CANFD: CAN flexible data rate*/ | ||
109 | #define ETH_P_PPPTALK 0x0010 /* Dummy type for Atalk over PPP*/ | 110 | #define ETH_P_PPPTALK 0x0010 /* Dummy type for Atalk over PPP*/ |
110 | #define ETH_P_TR_802_2 0x0011 /* 802.2 frames */ | 111 | #define ETH_P_TR_802_2 0x0011 /* 802.2 frames */ |
111 | #define ETH_P_MOBITEX 0x0015 /* Mobitex (kaz@cafe.net) */ | 112 | #define ETH_P_MOBITEX 0x0015 /* Mobitex (kaz@cafe.net) */ |
diff --git a/include/linux/if_link.h b/include/linux/if_link.h index f715750d0b87..ac173bd2ab65 100644 --- a/include/linux/if_link.h +++ b/include/linux/if_link.h | |||
@@ -140,6 +140,8 @@ enum { | |||
140 | IFLA_EXT_MASK, /* Extended info mask, VFs, etc */ | 140 | IFLA_EXT_MASK, /* Extended info mask, VFs, etc */ |
141 | IFLA_PROMISCUITY, /* Promiscuity count: > 0 means acts PROMISC */ | 141 | IFLA_PROMISCUITY, /* Promiscuity count: > 0 means acts PROMISC */ |
142 | #define IFLA_PROMISCUITY IFLA_PROMISCUITY | 142 | #define IFLA_PROMISCUITY IFLA_PROMISCUITY |
143 | IFLA_NUM_TX_QUEUES, | ||
144 | IFLA_NUM_RX_QUEUES, | ||
143 | __IFLA_MAX | 145 | __IFLA_MAX |
144 | }; | 146 | }; |
145 | 147 | ||
diff --git a/include/linux/if_strip.h b/include/linux/if_strip.h deleted file mode 100644 index 6526a6235832..000000000000 --- a/include/linux/if_strip.h +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | /* | ||
2 | * if_strip.h -- | ||
3 | * | ||
4 | * Definitions for the STRIP interface | ||
5 | * | ||
6 | * Copyright 1996 The Board of Trustees of The Leland Stanford | ||
7 | * Junior University. All Rights Reserved. | ||
8 | * | ||
9 | * Permission to use, copy, modify, and distribute this | ||
10 | * software and its documentation for any purpose and without | ||
11 | * fee is hereby granted, provided that the above copyright | ||
12 | * notice appear in all copies. Stanford University | ||
13 | * makes no representations about the suitability of this | ||
14 | * software for any purpose. It is provided "as is" without | ||
15 | * express or implied warranty. | ||
16 | */ | ||
17 | |||
18 | #ifndef __LINUX_STRIP_H | ||
19 | #define __LINUX_STRIP_H | ||
20 | |||
21 | #include <linux/types.h> | ||
22 | |||
23 | typedef struct { | ||
24 | __u8 c[6]; | ||
25 | } MetricomAddress; | ||
26 | |||
27 | #endif | ||
diff --git a/include/linux/if_team.h b/include/linux/if_team.h index 8185f57a9c7f..6960fc1841a7 100644 --- a/include/linux/if_team.h +++ b/include/linux/if_team.h | |||
@@ -13,6 +13,9 @@ | |||
13 | 13 | ||
14 | #ifdef __KERNEL__ | 14 | #ifdef __KERNEL__ |
15 | 15 | ||
16 | #include <linux/netpoll.h> | ||
17 | #include <net/sch_generic.h> | ||
18 | |||
16 | struct team_pcpu_stats { | 19 | struct team_pcpu_stats { |
17 | u64 rx_packets; | 20 | u64 rx_packets; |
18 | u64 rx_bytes; | 21 | u64 rx_bytes; |
@@ -60,9 +63,54 @@ struct team_port { | |||
60 | unsigned int mtu; | 63 | unsigned int mtu; |
61 | } orig; | 64 | } orig; |
62 | 65 | ||
63 | struct rcu_head rcu; | 66 | #ifdef CONFIG_NET_POLL_CONTROLLER |
67 | struct netpoll *np; | ||
68 | #endif | ||
69 | |||
70 | long mode_priv[0]; | ||
64 | }; | 71 | }; |
65 | 72 | ||
73 | static inline bool team_port_enabled(struct team_port *port) | ||
74 | { | ||
75 | return port->index != -1; | ||
76 | } | ||
77 | |||
78 | static inline bool team_port_txable(struct team_port *port) | ||
79 | { | ||
80 | return port->linkup && team_port_enabled(port); | ||
81 | } | ||
82 | |||
83 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
84 | static inline void team_netpoll_send_skb(struct team_port *port, | ||
85 | struct sk_buff *skb) | ||
86 | { | ||
87 | struct netpoll *np = port->np; | ||
88 | |||
89 | if (np) | ||
90 | netpoll_send_skb(np, skb); | ||
91 | } | ||
92 | #else | ||
93 | static inline void team_netpoll_send_skb(struct team_port *port, | ||
94 | struct sk_buff *skb) | ||
95 | { | ||
96 | } | ||
97 | #endif | ||
98 | |||
99 | static inline int team_dev_queue_xmit(struct team *team, struct team_port *port, | ||
100 | struct sk_buff *skb) | ||
101 | { | ||
102 | BUILD_BUG_ON(sizeof(skb->queue_mapping) != | ||
103 | sizeof(qdisc_skb_cb(skb)->slave_dev_queue_mapping)); | ||
104 | skb_set_queue_mapping(skb, qdisc_skb_cb(skb)->slave_dev_queue_mapping); | ||
105 | |||
106 | skb->dev = port->dev; | ||
107 | if (unlikely(netpoll_tx_running(port->dev))) { | ||
108 | team_netpoll_send_skb(port, skb); | ||
109 | return 0; | ||
110 | } | ||
111 | return dev_queue_xmit(skb); | ||
112 | } | ||
113 | |||
66 | struct team_mode_ops { | 114 | struct team_mode_ops { |
67 | int (*init)(struct team *team); | 115 | int (*init)(struct team *team); |
68 | void (*exit)(struct team *team); | 116 | void (*exit)(struct team *team); |
@@ -73,6 +121,8 @@ struct team_mode_ops { | |||
73 | int (*port_enter)(struct team *team, struct team_port *port); | 121 | int (*port_enter)(struct team *team, struct team_port *port); |
74 | void (*port_leave)(struct team *team, struct team_port *port); | 122 | void (*port_leave)(struct team *team, struct team_port *port); |
75 | void (*port_change_mac)(struct team *team, struct team_port *port); | 123 | void (*port_change_mac)(struct team *team, struct team_port *port); |
124 | void (*port_enabled)(struct team *team, struct team_port *port); | ||
125 | void (*port_disabled)(struct team *team, struct team_port *port); | ||
76 | }; | 126 | }; |
77 | 127 | ||
78 | enum team_option_type { | 128 | enum team_option_type { |
@@ -82,6 +132,11 @@ enum team_option_type { | |||
82 | TEAM_OPTION_TYPE_BOOL, | 132 | TEAM_OPTION_TYPE_BOOL, |
83 | }; | 133 | }; |
84 | 134 | ||
135 | struct team_option_inst_info { | ||
136 | u32 array_index; | ||
137 | struct team_port *port; /* != NULL if per-port */ | ||
138 | }; | ||
139 | |||
85 | struct team_gsetter_ctx { | 140 | struct team_gsetter_ctx { |
86 | union { | 141 | union { |
87 | u32 u32_val; | 142 | u32 u32_val; |
@@ -92,23 +147,28 @@ struct team_gsetter_ctx { | |||
92 | } bin_val; | 147 | } bin_val; |
93 | bool bool_val; | 148 | bool bool_val; |
94 | } data; | 149 | } data; |
95 | struct team_port *port; | 150 | struct team_option_inst_info *info; |
96 | }; | 151 | }; |
97 | 152 | ||
98 | struct team_option { | 153 | struct team_option { |
99 | struct list_head list; | 154 | struct list_head list; |
100 | const char *name; | 155 | const char *name; |
101 | bool per_port; | 156 | bool per_port; |
157 | unsigned int array_size; /* != 0 means the option is array */ | ||
102 | enum team_option_type type; | 158 | enum team_option_type type; |
159 | int (*init)(struct team *team, struct team_option_inst_info *info); | ||
103 | int (*getter)(struct team *team, struct team_gsetter_ctx *ctx); | 160 | int (*getter)(struct team *team, struct team_gsetter_ctx *ctx); |
104 | int (*setter)(struct team *team, struct team_gsetter_ctx *ctx); | 161 | int (*setter)(struct team *team, struct team_gsetter_ctx *ctx); |
105 | }; | 162 | }; |
106 | 163 | ||
164 | extern void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info); | ||
165 | extern void team_options_change_check(struct team *team); | ||
166 | |||
107 | struct team_mode { | 167 | struct team_mode { |
108 | struct list_head list; | ||
109 | const char *kind; | 168 | const char *kind; |
110 | struct module *owner; | 169 | struct module *owner; |
111 | size_t priv_size; | 170 | size_t priv_size; |
171 | size_t port_priv_size; | ||
112 | const struct team_mode_ops *ops; | 172 | const struct team_mode_ops *ops; |
113 | }; | 173 | }; |
114 | 174 | ||
@@ -178,8 +238,11 @@ extern int team_options_register(struct team *team, | |||
178 | extern void team_options_unregister(struct team *team, | 238 | extern void team_options_unregister(struct team *team, |
179 | const struct team_option *option, | 239 | const struct team_option *option, |
180 | size_t option_count); | 240 | size_t option_count); |
181 | extern int team_mode_register(struct team_mode *mode); | 241 | extern int team_mode_register(const struct team_mode *mode); |
182 | extern int team_mode_unregister(struct team_mode *mode); | 242 | extern void team_mode_unregister(const struct team_mode *mode); |
243 | |||
244 | #define TEAM_DEFAULT_NUM_TX_QUEUES 16 | ||
245 | #define TEAM_DEFAULT_NUM_RX_QUEUES 16 | ||
183 | 246 | ||
184 | #endif /* __KERNEL__ */ | 247 | #endif /* __KERNEL__ */ |
185 | 248 | ||
@@ -241,6 +304,7 @@ enum { | |||
241 | TEAM_ATTR_OPTION_DATA, /* dynamic */ | 304 | TEAM_ATTR_OPTION_DATA, /* dynamic */ |
242 | TEAM_ATTR_OPTION_REMOVED, /* flag */ | 305 | TEAM_ATTR_OPTION_REMOVED, /* flag */ |
243 | TEAM_ATTR_OPTION_PORT_IFINDEX, /* u32 */ /* for per-port options */ | 306 | TEAM_ATTR_OPTION_PORT_IFINDEX, /* u32 */ /* for per-port options */ |
307 | TEAM_ATTR_OPTION_ARRAY_INDEX, /* u32 */ /* for array options */ | ||
244 | 308 | ||
245 | __TEAM_ATTR_OPTION_MAX, | 309 | __TEAM_ATTR_OPTION_MAX, |
246 | TEAM_ATTR_OPTION_MAX = __TEAM_ATTR_OPTION_MAX - 1, | 310 | TEAM_ATTR_OPTION_MAX = __TEAM_ATTR_OPTION_MAX - 1, |
diff --git a/include/linux/if_tunnel.h b/include/linux/if_tunnel.h index 16b92d008bed..5efff60b6f56 100644 --- a/include/linux/if_tunnel.h +++ b/include/linux/if_tunnel.h | |||
@@ -80,4 +80,18 @@ enum { | |||
80 | 80 | ||
81 | #define IFLA_GRE_MAX (__IFLA_GRE_MAX - 1) | 81 | #define IFLA_GRE_MAX (__IFLA_GRE_MAX - 1) |
82 | 82 | ||
83 | /* VTI-mode i_flags */ | ||
84 | #define VTI_ISVTI 0x0001 | ||
85 | |||
86 | enum { | ||
87 | IFLA_VTI_UNSPEC, | ||
88 | IFLA_VTI_LINK, | ||
89 | IFLA_VTI_IKEY, | ||
90 | IFLA_VTI_OKEY, | ||
91 | IFLA_VTI_LOCAL, | ||
92 | IFLA_VTI_REMOTE, | ||
93 | __IFLA_VTI_MAX, | ||
94 | }; | ||
95 | |||
96 | #define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1) | ||
83 | #endif /* _IF_TUNNEL_H_ */ | 97 | #endif /* _IF_TUNNEL_H_ */ |
diff --git a/include/linux/iio/buffer.h b/include/linux/iio/buffer.h index fb0fe46fd659..8ba516fc2ec6 100644 --- a/include/linux/iio/buffer.h +++ b/include/linux/iio/buffer.h | |||
@@ -85,7 +85,7 @@ struct iio_buffer { | |||
85 | 85 | ||
86 | /** | 86 | /** |
87 | * iio_buffer_init() - Initialize the buffer structure | 87 | * iio_buffer_init() - Initialize the buffer structure |
88 | * @buffer: buffer to be initialized | 88 | * @buffer: buffer to be initialized |
89 | **/ | 89 | **/ |
90 | void iio_buffer_init(struct iio_buffer *buffer); | 90 | void iio_buffer_init(struct iio_buffer *buffer); |
91 | 91 | ||
@@ -107,8 +107,9 @@ int iio_scan_mask_query(struct iio_dev *indio_dev, | |||
107 | 107 | ||
108 | /** | 108 | /** |
109 | * iio_scan_mask_set() - set particular bit in the scan mask | 109 | * iio_scan_mask_set() - set particular bit in the scan mask |
110 | * @buffer: the buffer whose scan mask we are interested in | 110 | * @indio_dev IIO device structure |
111 | * @bit: the bit to be set. | 111 | * @buffer: the buffer whose scan mask we are interested in |
112 | * @bit: the bit to be set. | ||
112 | **/ | 113 | **/ |
113 | int iio_scan_mask_set(struct iio_dev *indio_dev, | 114 | int iio_scan_mask_set(struct iio_dev *indio_dev, |
114 | struct iio_buffer *buffer, int bit); | 115 | struct iio_buffer *buffer, int bit); |
@@ -116,8 +117,8 @@ int iio_scan_mask_set(struct iio_dev *indio_dev, | |||
116 | /** | 117 | /** |
117 | * iio_push_to_buffer() - push to a registered buffer. | 118 | * iio_push_to_buffer() - push to a registered buffer. |
118 | * @buffer: IIO buffer structure for device | 119 | * @buffer: IIO buffer structure for device |
119 | * @scan: Full scan. | 120 | * @data: the data to push to the buffer |
120 | * @timestamp: | 121 | * @timestamp: timestamp to associate with the data |
121 | */ | 122 | */ |
122 | int iio_push_to_buffer(struct iio_buffer *buffer, unsigned char *data, | 123 | int iio_push_to_buffer(struct iio_buffer *buffer, unsigned char *data, |
123 | s64 timestamp); | 124 | s64 timestamp); |
@@ -126,7 +127,9 @@ int iio_update_demux(struct iio_dev *indio_dev); | |||
126 | 127 | ||
127 | /** | 128 | /** |
128 | * iio_buffer_register() - register the buffer with IIO core | 129 | * iio_buffer_register() - register the buffer with IIO core |
129 | * @indio_dev: device with the buffer to be registered | 130 | * @indio_dev: device with the buffer to be registered |
131 | * @channels: the channel descriptions used to construct buffer | ||
132 | * @num_channels: the number of channels | ||
130 | **/ | 133 | **/ |
131 | int iio_buffer_register(struct iio_dev *indio_dev, | 134 | int iio_buffer_register(struct iio_dev *indio_dev, |
132 | const struct iio_chan_spec *channels, | 135 | const struct iio_chan_spec *channels, |
@@ -134,7 +137,7 @@ int iio_buffer_register(struct iio_dev *indio_dev, | |||
134 | 137 | ||
135 | /** | 138 | /** |
136 | * iio_buffer_unregister() - unregister the buffer from IIO core | 139 | * iio_buffer_unregister() - unregister the buffer from IIO core |
137 | * @indio_dev: the device with the buffer to be unregistered | 140 | * @indio_dev: the device with the buffer to be unregistered |
138 | **/ | 141 | **/ |
139 | void iio_buffer_unregister(struct iio_dev *indio_dev); | 142 | void iio_buffer_unregister(struct iio_dev *indio_dev); |
140 | 143 | ||
@@ -174,6 +177,9 @@ ssize_t iio_buffer_show_enable(struct device *dev, | |||
174 | 177 | ||
175 | int iio_sw_buffer_preenable(struct iio_dev *indio_dev); | 178 | int iio_sw_buffer_preenable(struct iio_dev *indio_dev); |
176 | 179 | ||
180 | bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev, | ||
181 | const unsigned long *mask); | ||
182 | |||
177 | #else /* CONFIG_IIO_BUFFER */ | 183 | #else /* CONFIG_IIO_BUFFER */ |
178 | 184 | ||
179 | static inline int iio_buffer_register(struct iio_dev *indio_dev, | 185 | static inline int iio_buffer_register(struct iio_dev *indio_dev, |
@@ -184,7 +190,7 @@ static inline int iio_buffer_register(struct iio_dev *indio_dev, | |||
184 | } | 190 | } |
185 | 191 | ||
186 | static inline void iio_buffer_unregister(struct iio_dev *indio_dev) | 192 | static inline void iio_buffer_unregister(struct iio_dev *indio_dev) |
187 | {}; | 193 | {} |
188 | 194 | ||
189 | #endif /* CONFIG_IIO_BUFFER */ | 195 | #endif /* CONFIG_IIO_BUFFER */ |
190 | 196 | ||
diff --git a/include/linux/iio/consumer.h b/include/linux/iio/consumer.h index 1a15e560a5a1..e2657e6d4d26 100644 --- a/include/linux/iio/consumer.h +++ b/include/linux/iio/consumer.h | |||
@@ -33,17 +33,17 @@ struct iio_channel { | |||
33 | * side. This typically describes the channels use within | 33 | * side. This typically describes the channels use within |
34 | * the consumer. E.g. 'battery_voltage' | 34 | * the consumer. E.g. 'battery_voltage' |
35 | */ | 35 | */ |
36 | struct iio_channel *iio_st_channel_get(const char *name, | 36 | struct iio_channel *iio_channel_get(const char *name, |
37 | const char *consumer_channel); | 37 | const char *consumer_channel); |
38 | 38 | ||
39 | /** | 39 | /** |
40 | * iio_st_channel_release() - release channels obtained via iio_st_channel_get | 40 | * iio_channel_release() - release channels obtained via iio_channel_get |
41 | * @chan: The channel to be released. | 41 | * @chan: The channel to be released. |
42 | */ | 42 | */ |
43 | void iio_st_channel_release(struct iio_channel *chan); | 43 | void iio_channel_release(struct iio_channel *chan); |
44 | 44 | ||
45 | /** | 45 | /** |
46 | * iio_st_channel_get_all() - get all channels associated with a client | 46 | * iio_channel_get_all() - get all channels associated with a client |
47 | * @name: name of consumer device. | 47 | * @name: name of consumer device. |
48 | * | 48 | * |
49 | * Returns an array of iio_channel structures terminated with one with | 49 | * Returns an array of iio_channel structures terminated with one with |
@@ -51,37 +51,37 @@ void iio_st_channel_release(struct iio_channel *chan); | |||
51 | * This function is used by fairly generic consumers to get all the | 51 | * This function is used by fairly generic consumers to get all the |
52 | * channels registered as having this consumer. | 52 | * channels registered as having this consumer. |
53 | */ | 53 | */ |
54 | struct iio_channel *iio_st_channel_get_all(const char *name); | 54 | struct iio_channel *iio_channel_get_all(const char *name); |
55 | 55 | ||
56 | /** | 56 | /** |
57 | * iio_st_channel_release_all() - reverse iio_st_get_all | 57 | * iio_channel_release_all() - reverse iio_channel_get_all |
58 | * @chan: Array of channels to be released. | 58 | * @chan: Array of channels to be released. |
59 | */ | 59 | */ |
60 | void iio_st_channel_release_all(struct iio_channel *chan); | 60 | void iio_channel_release_all(struct iio_channel *chan); |
61 | 61 | ||
62 | /** | 62 | /** |
63 | * iio_st_read_channel_raw() - read from a given channel | 63 | * iio_read_channel_raw() - read from a given channel |
64 | * @channel: The channel being queried. | 64 | * @channel: The channel being queried. |
65 | * @val: Value read back. | 65 | * @val: Value read back. |
66 | * | 66 | * |
67 | * Note raw reads from iio channels are in adc counts and hence | 67 | * Note raw reads from iio channels are in adc counts and hence |
68 | * scale will need to be applied if standard units required. | 68 | * scale will need to be applied if standard units required. |
69 | */ | 69 | */ |
70 | int iio_st_read_channel_raw(struct iio_channel *chan, | 70 | int iio_read_channel_raw(struct iio_channel *chan, |
71 | int *val); | 71 | int *val); |
72 | 72 | ||
73 | /** | 73 | /** |
74 | * iio_st_get_channel_type() - get the type of a channel | 74 | * iio_get_channel_type() - get the type of a channel |
75 | * @channel: The channel being queried. | 75 | * @channel: The channel being queried. |
76 | * @type: The type of the channel. | 76 | * @type: The type of the channel. |
77 | * | 77 | * |
78 | * returns the enum iio_chan_type of the channel | 78 | * returns the enum iio_chan_type of the channel |
79 | */ | 79 | */ |
80 | int iio_st_get_channel_type(struct iio_channel *channel, | 80 | int iio_get_channel_type(struct iio_channel *channel, |
81 | enum iio_chan_type *type); | 81 | enum iio_chan_type *type); |
82 | 82 | ||
83 | /** | 83 | /** |
84 | * iio_st_read_channel_scale() - read the scale value for a channel | 84 | * iio_read_channel_scale() - read the scale value for a channel |
85 | * @channel: The channel being queried. | 85 | * @channel: The channel being queried. |
86 | * @val: First part of value read back. | 86 | * @val: First part of value read back. |
87 | * @val2: Second part of value read back. | 87 | * @val2: Second part of value read back. |
@@ -90,7 +90,7 @@ int iio_st_get_channel_type(struct iio_channel *channel, | |||
90 | * as IIO_VAL_INT_PLUS_MICRO telling us we have a value of val | 90 | * as IIO_VAL_INT_PLUS_MICRO telling us we have a value of val |
91 | * + val2/1e6 | 91 | * + val2/1e6 |
92 | */ | 92 | */ |
93 | int iio_st_read_channel_scale(struct iio_channel *chan, int *val, | 93 | int iio_read_channel_scale(struct iio_channel *chan, int *val, |
94 | int *val2); | 94 | int *val2); |
95 | 95 | ||
96 | #endif | 96 | #endif |
diff --git a/include/linux/iio/dac/ad5421.h b/include/linux/iio/dac/ad5421.h new file mode 100644 index 000000000000..8fd8f057a890 --- /dev/null +++ b/include/linux/iio/dac/ad5421.h | |||
@@ -0,0 +1,28 @@ | |||
1 | #ifndef __IIO_DAC_AD5421_H__ | ||
2 | #define __IIO_DAC_AD5421_H__ | ||
3 | |||
4 | /** | ||
5 | * enum ad5421_current_range - Current range the AD5421 is configured for. | ||
6 | * @AD5421_CURRENT_RANGE_4mA_20mA: 4 mA to 20 mA (RANGE1,0 pins = 00) | ||
7 | * @AD5421_CURRENT_RANGE_3mA8_21mA: 3.8 mA to 21 mA (RANGE1,0 pins = x1) | ||
8 | * @AD5421_CURRENT_RANGE_3mA2_24mA: 3.2 mA to 24 mA (RANGE1,0 pins = 10) | ||
9 | */ | ||
10 | |||
11 | enum ad5421_current_range { | ||
12 | AD5421_CURRENT_RANGE_4mA_20mA, | ||
13 | AD5421_CURRENT_RANGE_3mA8_21mA, | ||
14 | AD5421_CURRENT_RANGE_3mA2_24mA, | ||
15 | }; | ||
16 | |||
17 | /** | ||
18 | * struct ad5421_platform_data - AD5421 DAC driver platform data | ||
19 | * @external_vref: whether an external reference voltage is used or not | ||
20 | * @current_range: Current range the AD5421 is configured for | ||
21 | */ | ||
22 | |||
23 | struct ad5421_platform_data { | ||
24 | bool external_vref; | ||
25 | enum ad5421_current_range current_range; | ||
26 | }; | ||
27 | |||
28 | #endif | ||
diff --git a/include/linux/iio/dac/ad5504.h b/include/linux/iio/dac/ad5504.h new file mode 100644 index 000000000000..43895376a9ca --- /dev/null +++ b/include/linux/iio/dac/ad5504.h | |||
@@ -0,0 +1,16 @@ | |||
1 | /* | ||
2 | * AD5504 SPI DAC driver | ||
3 | * | ||
4 | * Copyright 2011 Analog Devices Inc. | ||
5 | * | ||
6 | * Licensed under the GPL-2. | ||
7 | */ | ||
8 | |||
9 | #ifndef SPI_AD5504_H_ | ||
10 | #define SPI_AD5504_H_ | ||
11 | |||
12 | struct ad5504_platform_data { | ||
13 | u16 vref_mv; | ||
14 | }; | ||
15 | |||
16 | #endif /* SPI_AD5504_H_ */ | ||
diff --git a/include/linux/iio/dac/ad5791.h b/include/linux/iio/dac/ad5791.h new file mode 100644 index 000000000000..45ee281c6660 --- /dev/null +++ b/include/linux/iio/dac/ad5791.h | |||
@@ -0,0 +1,25 @@ | |||
1 | /* | ||
2 | * AD5791 SPI DAC driver | ||
3 | * | ||
4 | * Copyright 2011 Analog Devices Inc. | ||
5 | * | ||
6 | * Licensed under the GPL-2. | ||
7 | */ | ||
8 | |||
9 | #ifndef SPI_AD5791_H_ | ||
10 | #define SPI_AD5791_H_ | ||
11 | |||
12 | /** | ||
13 | * struct ad5791_platform_data - platform specific information | ||
14 | * @vref_pos_mv: Vdd Positive Analog Supply Volatge (mV) | ||
15 | * @vref_neg_mv: Vdd Negative Analog Supply Volatge (mV) | ||
16 | * @use_rbuf_gain2: ext. amplifier connected in gain of two configuration | ||
17 | */ | ||
18 | |||
19 | struct ad5791_platform_data { | ||
20 | u16 vref_pos_mv; | ||
21 | u16 vref_neg_mv; | ||
22 | bool use_rbuf_gain2; | ||
23 | }; | ||
24 | |||
25 | #endif /* SPI_AD5791_H_ */ | ||
diff --git a/include/linux/iio/dac/max517.h b/include/linux/iio/dac/max517.h new file mode 100644 index 000000000000..f6d1d252f08d --- /dev/null +++ b/include/linux/iio/dac/max517.h | |||
@@ -0,0 +1,15 @@ | |||
1 | /* | ||
2 | * MAX517 DAC driver | ||
3 | * | ||
4 | * Copyright 2011 Roland Stigge <stigge@antcom.de> | ||
5 | * | ||
6 | * Licensed under the GPL-2 or later. | ||
7 | */ | ||
8 | #ifndef IIO_DAC_MAX517_H_ | ||
9 | #define IIO_DAC_MAX517_H_ | ||
10 | |||
11 | struct max517_platform_data { | ||
12 | u16 vref_mv[2]; | ||
13 | }; | ||
14 | |||
15 | #endif /* IIO_DAC_MAX517_H_ */ | ||
diff --git a/include/linux/iio/dac/mcp4725.h b/include/linux/iio/dac/mcp4725.h new file mode 100644 index 000000000000..91530e6611e9 --- /dev/null +++ b/include/linux/iio/dac/mcp4725.h | |||
@@ -0,0 +1,16 @@ | |||
1 | /* | ||
2 | * MCP4725 DAC driver | ||
3 | * | ||
4 | * Copyright (C) 2012 Peter Meerwald <pmeerw@pmeerw.net> | ||
5 | * | ||
6 | * Licensed under the GPL-2 or later. | ||
7 | */ | ||
8 | |||
9 | #ifndef IIO_DAC_MCP4725_H_ | ||
10 | #define IIO_DAC_MCP4725_H_ | ||
11 | |||
12 | struct mcp4725_platform_data { | ||
13 | u16 vref_mv; | ||
14 | }; | ||
15 | |||
16 | #endif /* IIO_DAC_MCP4725_H_ */ | ||
diff --git a/include/linux/iio/events.h b/include/linux/iio/events.h index b5acbf93c5da..13ce220c7003 100644 --- a/include/linux/iio/events.h +++ b/include/linux/iio/events.h | |||
@@ -46,7 +46,7 @@ enum iio_event_direction { | |||
46 | * @diff: Whether the event is for an differential channel or not. | 46 | * @diff: Whether the event is for an differential channel or not. |
47 | * @modifier: Modifier for the channel. Should be one of enum iio_modifier. | 47 | * @modifier: Modifier for the channel. Should be one of enum iio_modifier. |
48 | * @direction: Direction of the event. One of enum iio_event_direction. | 48 | * @direction: Direction of the event. One of enum iio_event_direction. |
49 | * @type: Type of the event. Should be one enum iio_event_type. | 49 | * @type: Type of the event. Should be one of enum iio_event_type. |
50 | * @chan: Channel number for non-differential channels. | 50 | * @chan: Channel number for non-differential channels. |
51 | * @chan1: First channel number for differential channels. | 51 | * @chan1: First channel number for differential channels. |
52 | * @chan2: Second channel number for differential channels. | 52 | * @chan2: Second channel number for differential channels. |
@@ -69,7 +69,7 @@ enum iio_event_direction { | |||
69 | * @chan_type: Type of the channel. Should be one of enum iio_chan_type. | 69 | * @chan_type: Type of the channel. Should be one of enum iio_chan_type. |
70 | * @number: Channel number. | 70 | * @number: Channel number. |
71 | * @modifier: Modifier for the channel. Should be one of enum iio_modifier. | 71 | * @modifier: Modifier for the channel. Should be one of enum iio_modifier. |
72 | * @type: Type of the event. Should be one enum iio_event_type. | 72 | * @type: Type of the event. Should be one of enum iio_event_type. |
73 | * @direction: Direction of the event. One of enum iio_event_direction. | 73 | * @direction: Direction of the event. One of enum iio_event_direction. |
74 | */ | 74 | */ |
75 | 75 | ||
@@ -81,7 +81,7 @@ enum iio_event_direction { | |||
81 | * IIO_UNMOD_EVENT_CODE() - create event identifier for unmodified channels | 81 | * IIO_UNMOD_EVENT_CODE() - create event identifier for unmodified channels |
82 | * @chan_type: Type of the channel. Should be one of enum iio_chan_type. | 82 | * @chan_type: Type of the channel. Should be one of enum iio_chan_type. |
83 | * @number: Channel number. | 83 | * @number: Channel number. |
84 | * @type: Type of the event. Should be one enum iio_event_type. | 84 | * @type: Type of the event. Should be one of enum iio_event_type. |
85 | * @direction: Direction of the event. One of enum iio_event_direction. | 85 | * @direction: Direction of the event. One of enum iio_event_direction. |
86 | */ | 86 | */ |
87 | 87 | ||
diff --git a/include/linux/iio/frequency/ad9523.h b/include/linux/iio/frequency/ad9523.h new file mode 100644 index 000000000000..12ce3ee427fd --- /dev/null +++ b/include/linux/iio/frequency/ad9523.h | |||
@@ -0,0 +1,195 @@ | |||
1 | /* | ||
2 | * AD9523 SPI Low Jitter Clock Generator | ||
3 | * | ||
4 | * Copyright 2012 Analog Devices Inc. | ||
5 | * | ||
6 | * Licensed under the GPL-2. | ||
7 | */ | ||
8 | |||
9 | #ifndef IIO_FREQUENCY_AD9523_H_ | ||
10 | #define IIO_FREQUENCY_AD9523_H_ | ||
11 | |||
12 | enum outp_drv_mode { | ||
13 | TRISTATE, | ||
14 | LVPECL_8mA, | ||
15 | LVDS_4mA, | ||
16 | LVDS_7mA, | ||
17 | HSTL0_16mA, | ||
18 | HSTL1_8mA, | ||
19 | CMOS_CONF1, | ||
20 | CMOS_CONF2, | ||
21 | CMOS_CONF3, | ||
22 | CMOS_CONF4, | ||
23 | CMOS_CONF5, | ||
24 | CMOS_CONF6, | ||
25 | CMOS_CONF7, | ||
26 | CMOS_CONF8, | ||
27 | CMOS_CONF9 | ||
28 | }; | ||
29 | |||
30 | enum ref_sel_mode { | ||
31 | NONEREVERTIVE_STAY_ON_REFB, | ||
32 | REVERT_TO_REFA, | ||
33 | SELECT_REFA, | ||
34 | SELECT_REFB, | ||
35 | EXT_REF_SEL | ||
36 | }; | ||
37 | |||
38 | /** | ||
39 | * struct ad9523_channel_spec - Output channel configuration | ||
40 | * | ||
41 | * @channel_num: Output channel number. | ||
42 | * @divider_output_invert_en: Invert the polarity of the output clock. | ||
43 | * @sync_ignore_en: Ignore chip-level SYNC signal. | ||
44 | * @low_power_mode_en: Reduce power used in the differential output modes. | ||
45 | * @use_alt_clock_src: Channel divider uses alternative clk source. | ||
46 | * @output_dis: Disables, powers down the entire channel. | ||
47 | * @driver_mode: Output driver mode (logic level family). | ||
48 | * @divider_phase: Divider initial phase after a SYNC. Range 0..63 | ||
49 | LSB = 1/2 of a period of the divider input clock. | ||
50 | * @channel_divider: 10-bit channel divider. | ||
51 | * @extended_name: Optional descriptive channel name. | ||
52 | */ | ||
53 | |||
54 | struct ad9523_channel_spec { | ||
55 | unsigned channel_num; | ||
56 | bool divider_output_invert_en; | ||
57 | bool sync_ignore_en; | ||
58 | bool low_power_mode_en; | ||
59 | /* CH0..CH3 VCXO, CH4..CH9 VCO2 */ | ||
60 | bool use_alt_clock_src; | ||
61 | bool output_dis; | ||
62 | enum outp_drv_mode driver_mode; | ||
63 | unsigned char divider_phase; | ||
64 | unsigned short channel_divider; | ||
65 | char extended_name[16]; | ||
66 | }; | ||
67 | |||
68 | enum pll1_rzero_resistor { | ||
69 | RZERO_883_OHM, | ||
70 | RZERO_677_OHM, | ||
71 | RZERO_341_OHM, | ||
72 | RZERO_135_OHM, | ||
73 | RZERO_10_OHM, | ||
74 | RZERO_USE_EXT_RES = 8, | ||
75 | }; | ||
76 | |||
77 | enum rpole2_resistor { | ||
78 | RPOLE2_900_OHM, | ||
79 | RPOLE2_450_OHM, | ||
80 | RPOLE2_300_OHM, | ||
81 | RPOLE2_225_OHM, | ||
82 | }; | ||
83 | |||
84 | enum rzero_resistor { | ||
85 | RZERO_3250_OHM, | ||
86 | RZERO_2750_OHM, | ||
87 | RZERO_2250_OHM, | ||
88 | RZERO_2100_OHM, | ||
89 | RZERO_3000_OHM, | ||
90 | RZERO_2500_OHM, | ||
91 | RZERO_2000_OHM, | ||
92 | RZERO_1850_OHM, | ||
93 | }; | ||
94 | |||
95 | enum cpole1_capacitor { | ||
96 | CPOLE1_0_PF, | ||
97 | CPOLE1_8_PF, | ||
98 | CPOLE1_16_PF, | ||
99 | CPOLE1_24_PF, | ||
100 | _CPOLE1_24_PF, /* place holder */ | ||
101 | CPOLE1_32_PF, | ||
102 | CPOLE1_40_PF, | ||
103 | CPOLE1_48_PF, | ||
104 | }; | ||
105 | |||
106 | /** | ||
107 | * struct ad9523_platform_data - platform specific information | ||
108 | * | ||
109 | * @vcxo_freq: External VCXO frequency in Hz | ||
110 | * @refa_diff_rcv_en: REFA differential/single-ended input selection. | ||
111 | * @refb_diff_rcv_en: REFB differential/single-ended input selection. | ||
112 | * @zd_in_diff_en: Zero Delay differential/single-ended input selection. | ||
113 | * @osc_in_diff_en: OSC differential/ single-ended input selection. | ||
114 | * @refa_cmos_neg_inp_en: REFA single-ended neg./pos. input enable. | ||
115 | * @refb_cmos_neg_inp_en: REFB single-ended neg./pos. input enable. | ||
116 | * @zd_in_cmos_neg_inp_en: Zero Delay single-ended neg./pos. input enable. | ||
117 | * @osc_in_cmos_neg_inp_en: OSC single-ended neg./pos. input enable. | ||
118 | * @refa_r_div: PLL1 10-bit REFA R divider. | ||
119 | * @refb_r_div: PLL1 10-bit REFB R divider. | ||
120 | * @pll1_feedback_div: PLL1 10-bit Feedback N divider. | ||
121 | * @pll1_charge_pump_current_nA: Magnitude of PLL1 charge pump current (nA). | ||
122 | * @zero_delay_mode_internal_en: Internal, external Zero Delay mode selection. | ||
123 | * @osc_in_feedback_en: PLL1 feedback path, local feedback from | ||
124 | * the OSC_IN receiver or zero delay mode | ||
125 | * @pll1_loop_filter_rzero: PLL1 Loop Filter Zero Resistor selection. | ||
126 | * @ref_mode: Reference selection mode. | ||
127 | * @pll2_charge_pump_current_nA: Magnitude of PLL2 charge pump current (nA). | ||
128 | * @pll2_ndiv_a_cnt: PLL2 Feedback N-divider, A Counter, range 0..4. | ||
129 | * @pll2_ndiv_b_cnt: PLL2 Feedback N-divider, B Counter, range 0..63. | ||
130 | * @pll2_freq_doubler_en: PLL2 frequency doubler enable. | ||
131 | * @pll2_r2_div: PLL2 R2 divider, range 0..31. | ||
132 | * @pll2_vco_diff_m1: VCO1 divider, range 3..5. | ||
133 | * @pll2_vco_diff_m2: VCO2 divider, range 3..5. | ||
134 | * @rpole2: PLL2 loop filter Rpole resistor value. | ||
135 | * @rzero: PLL2 loop filter Rzero resistor value. | ||
136 | * @cpole1: PLL2 loop filter Cpole capacitor value. | ||
137 | * @rzero_bypass_en: PLL2 loop filter Rzero bypass enable. | ||
138 | * @num_channels: Array size of struct ad9523_channel_spec. | ||
139 | * @channels: Pointer to channel array. | ||
140 | * @name: Optional alternative iio device name. | ||
141 | */ | ||
142 | |||
143 | struct ad9523_platform_data { | ||
144 | unsigned long vcxo_freq; | ||
145 | |||
146 | /* Differential/ Single-Ended Input Configuration */ | ||
147 | bool refa_diff_rcv_en; | ||
148 | bool refb_diff_rcv_en; | ||
149 | bool zd_in_diff_en; | ||
150 | bool osc_in_diff_en; | ||
151 | |||
152 | /* | ||
153 | * Valid if differential input disabled | ||
154 | * if false defaults to pos input | ||
155 | */ | ||
156 | bool refa_cmos_neg_inp_en; | ||
157 | bool refb_cmos_neg_inp_en; | ||
158 | bool zd_in_cmos_neg_inp_en; | ||
159 | bool osc_in_cmos_neg_inp_en; | ||
160 | |||
161 | /* PLL1 Setting */ | ||
162 | unsigned short refa_r_div; | ||
163 | unsigned short refb_r_div; | ||
164 | unsigned short pll1_feedback_div; | ||
165 | unsigned short pll1_charge_pump_current_nA; | ||
166 | bool zero_delay_mode_internal_en; | ||
167 | bool osc_in_feedback_en; | ||
168 | enum pll1_rzero_resistor pll1_loop_filter_rzero; | ||
169 | |||
170 | /* Reference */ | ||
171 | enum ref_sel_mode ref_mode; | ||
172 | |||
173 | /* PLL2 Setting */ | ||
174 | unsigned int pll2_charge_pump_current_nA; | ||
175 | unsigned char pll2_ndiv_a_cnt; | ||
176 | unsigned char pll2_ndiv_b_cnt; | ||
177 | bool pll2_freq_doubler_en; | ||
178 | unsigned char pll2_r2_div; | ||
179 | unsigned char pll2_vco_diff_m1; /* 3..5 */ | ||
180 | unsigned char pll2_vco_diff_m2; /* 3..5 */ | ||
181 | |||
182 | /* Loop Filter PLL2 */ | ||
183 | enum rpole2_resistor rpole2; | ||
184 | enum rzero_resistor rzero; | ||
185 | enum cpole1_capacitor cpole1; | ||
186 | bool rzero_bypass_en; | ||
187 | |||
188 | /* Output Channel Configuration */ | ||
189 | int num_channels; | ||
190 | struct ad9523_channel_spec *channels; | ||
191 | |||
192 | char name[SPI_NAME_SIZE]; | ||
193 | }; | ||
194 | |||
195 | #endif /* IIO_FREQUENCY_AD9523_H_ */ | ||
diff --git a/include/linux/iio/frequency/adf4350.h b/include/linux/iio/frequency/adf4350.h new file mode 100644 index 000000000000..b76b4a87065e --- /dev/null +++ b/include/linux/iio/frequency/adf4350.h | |||
@@ -0,0 +1,126 @@ | |||
1 | /* | ||
2 | * ADF4350/ADF4351 SPI PLL driver | ||
3 | * | ||
4 | * Copyright 2012 Analog Devices Inc. | ||
5 | * | ||
6 | * Licensed under the GPL-2. | ||
7 | */ | ||
8 | |||
9 | #ifndef IIO_PLL_ADF4350_H_ | ||
10 | #define IIO_PLL_ADF4350_H_ | ||
11 | |||
12 | /* Registers */ | ||
13 | #define ADF4350_REG0 0 | ||
14 | #define ADF4350_REG1 1 | ||
15 | #define ADF4350_REG2 2 | ||
16 | #define ADF4350_REG3 3 | ||
17 | #define ADF4350_REG4 4 | ||
18 | #define ADF4350_REG5 5 | ||
19 | |||
20 | /* REG0 Bit Definitions */ | ||
21 | #define ADF4350_REG0_FRACT(x) (((x) & 0xFFF) << 3) | ||
22 | #define ADF4350_REG0_INT(x) (((x) & 0xFFFF) << 15) | ||
23 | |||
24 | /* REG1 Bit Definitions */ | ||
25 | #define ADF4350_REG1_MOD(x) (((x) & 0xFFF) << 3) | ||
26 | #define ADF4350_REG1_PHASE(x) (((x) & 0xFFF) << 15) | ||
27 | #define ADF4350_REG1_PRESCALER (1 << 27) | ||
28 | |||
29 | /* REG2 Bit Definitions */ | ||
30 | #define ADF4350_REG2_COUNTER_RESET_EN (1 << 3) | ||
31 | #define ADF4350_REG2_CP_THREESTATE_EN (1 << 4) | ||
32 | #define ADF4350_REG2_POWER_DOWN_EN (1 << 5) | ||
33 | #define ADF4350_REG2_PD_POLARITY_POS (1 << 6) | ||
34 | #define ADF4350_REG2_LDP_6ns (1 << 7) | ||
35 | #define ADF4350_REG2_LDP_10ns (0 << 7) | ||
36 | #define ADF4350_REG2_LDF_FRACT_N (0 << 8) | ||
37 | #define ADF4350_REG2_LDF_INT_N (1 << 8) | ||
38 | #define ADF4350_REG2_CHARGE_PUMP_CURR_uA(x) (((((x)-312) / 312) & 0xF) << 9) | ||
39 | #define ADF4350_REG2_DOUBLE_BUFF_EN (1 << 13) | ||
40 | #define ADF4350_REG2_10BIT_R_CNT(x) ((x) << 14) | ||
41 | #define ADF4350_REG2_RDIV2_EN (1 << 24) | ||
42 | #define ADF4350_REG2_RMULT2_EN (1 << 25) | ||
43 | #define ADF4350_REG2_MUXOUT(x) ((x) << 26) | ||
44 | #define ADF4350_REG2_NOISE_MODE(x) ((x) << 29) | ||
45 | #define ADF4350_MUXOUT_THREESTATE 0 | ||
46 | #define ADF4350_MUXOUT_DVDD 1 | ||
47 | #define ADF4350_MUXOUT_GND 2 | ||
48 | #define ADF4350_MUXOUT_R_DIV_OUT 3 | ||
49 | #define ADF4350_MUXOUT_N_DIV_OUT 4 | ||
50 | #define ADF4350_MUXOUT_ANALOG_LOCK_DETECT 5 | ||
51 | #define ADF4350_MUXOUT_DIGITAL_LOCK_DETECT 6 | ||
52 | |||
53 | /* REG3 Bit Definitions */ | ||
54 | #define ADF4350_REG3_12BIT_CLKDIV(x) ((x) << 3) | ||
55 | #define ADF4350_REG3_12BIT_CLKDIV_MODE(x) ((x) << 16) | ||
56 | #define ADF4350_REG3_12BIT_CSR_EN (1 << 18) | ||
57 | #define ADF4351_REG3_CHARGE_CANCELLATION_EN (1 << 21) | ||
58 | #define ADF4351_REG3_ANTI_BACKLASH_3ns_EN (1 << 22) | ||
59 | #define ADF4351_REG3_BAND_SEL_CLOCK_MODE_HIGH (1 << 23) | ||
60 | |||
61 | /* REG4 Bit Definitions */ | ||
62 | #define ADF4350_REG4_OUTPUT_PWR(x) ((x) << 3) | ||
63 | #define ADF4350_REG4_RF_OUT_EN (1 << 5) | ||
64 | #define ADF4350_REG4_AUX_OUTPUT_PWR(x) ((x) << 6) | ||
65 | #define ADF4350_REG4_AUX_OUTPUT_EN (1 << 8) | ||
66 | #define ADF4350_REG4_AUX_OUTPUT_FUND (1 << 9) | ||
67 | #define ADF4350_REG4_AUX_OUTPUT_DIV (0 << 9) | ||
68 | #define ADF4350_REG4_MUTE_TILL_LOCK_EN (1 << 10) | ||
69 | #define ADF4350_REG4_VCO_PWRDOWN_EN (1 << 11) | ||
70 | #define ADF4350_REG4_8BIT_BAND_SEL_CLKDIV(x) ((x) << 12) | ||
71 | #define ADF4350_REG4_RF_DIV_SEL(x) ((x) << 20) | ||
72 | #define ADF4350_REG4_FEEDBACK_DIVIDED (0 << 23) | ||
73 | #define ADF4350_REG4_FEEDBACK_FUND (1 << 23) | ||
74 | |||
75 | /* REG5 Bit Definitions */ | ||
76 | #define ADF4350_REG5_LD_PIN_MODE_LOW (0 << 22) | ||
77 | #define ADF4350_REG5_LD_PIN_MODE_DIGITAL (1 << 22) | ||
78 | #define ADF4350_REG5_LD_PIN_MODE_HIGH (3 << 22) | ||
79 | |||
80 | /* Specifications */ | ||
81 | #define ADF4350_MAX_OUT_FREQ 4400000000ULL /* Hz */ | ||
82 | #define ADF4350_MIN_OUT_FREQ 137500000 /* Hz */ | ||
83 | #define ADF4351_MIN_OUT_FREQ 34375000 /* Hz */ | ||
84 | #define ADF4350_MIN_VCO_FREQ 2200000000ULL /* Hz */ | ||
85 | #define ADF4350_MAX_FREQ_45_PRESC 3000000000ULL /* Hz */ | ||
86 | #define ADF4350_MAX_FREQ_PFD 32000000 /* Hz */ | ||
87 | #define ADF4350_MAX_BANDSEL_CLK 125000 /* Hz */ | ||
88 | #define ADF4350_MAX_FREQ_REFIN 250000000 /* Hz */ | ||
89 | #define ADF4350_MAX_MODULUS 4095 | ||
90 | |||
91 | /** | ||
92 | * struct adf4350_platform_data - platform specific information | ||
93 | * @name: Optional device name. | ||
94 | * @clkin: REFin frequency in Hz. | ||
95 | * @channel_spacing: Channel spacing in Hz (influences MODULUS). | ||
96 | * @power_up_frequency: Optional, If set in Hz the PLL tunes to the desired | ||
97 | * frequency on probe. | ||
98 | * @ref_div_factor: Optional, if set the driver skips dynamic calculation | ||
99 | * and uses this default value instead. | ||
100 | * @ref_doubler_en: Enables reference doubler. | ||
101 | * @ref_div2_en: Enables reference divider. | ||
102 | * @r2_user_settings: User defined settings for ADF4350/1 REGISTER_2. | ||
103 | * @r3_user_settings: User defined settings for ADF4350/1 REGISTER_3. | ||
104 | * @r4_user_settings: User defined settings for ADF4350/1 REGISTER_4. | ||
105 | * @gpio_lock_detect: Optional, if set with a valid GPIO number, | ||
106 | * pll lock state is tested upon read. | ||
107 | * If not used - set to -1. | ||
108 | */ | ||
109 | |||
110 | struct adf4350_platform_data { | ||
111 | char name[32]; | ||
112 | unsigned long clkin; | ||
113 | unsigned long channel_spacing; | ||
114 | unsigned long long power_up_frequency; | ||
115 | |||
116 | unsigned short ref_div_factor; /* 10-bit R counter */ | ||
117 | bool ref_doubler_en; | ||
118 | bool ref_div2_en; | ||
119 | |||
120 | unsigned r2_user_settings; | ||
121 | unsigned r3_user_settings; | ||
122 | unsigned r4_user_settings; | ||
123 | int gpio_lock_detect; | ||
124 | }; | ||
125 | |||
126 | #endif /* IIO_PLL_ADF4350_H_ */ | ||
diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h index 3a4f6a3ab80d..be82936c4089 100644 --- a/include/linux/iio/iio.h +++ b/include/linux/iio/iio.h | |||
@@ -130,14 +130,78 @@ struct iio_chan_spec_ext_info { | |||
130 | }; | 130 | }; |
131 | 131 | ||
132 | /** | 132 | /** |
133 | * struct iio_enum - Enum channel info attribute | ||
134 | * @items: An array of strings. | ||
135 | * @num_items: Length of the item array. | ||
136 | * @set: Set callback function, may be NULL. | ||
137 | * @get: Get callback function, may be NULL. | ||
138 | * | ||
139 | * The iio_enum struct can be used to implement enum style channel attributes. | ||
140 | * Enum style attributes are those which have a set of strings which map to | ||
141 | * unsigned integer values. The IIO enum helper code takes care of mapping | ||
142 | * between value and string as well as generating a "_available" file which | ||
143 | * contains a list of all available items. The set callback will be called when | ||
144 | * the attribute is updated. The last parameter is the index to the newly | ||
145 | * activated item. The get callback will be used to query the currently active | ||
146 | * item and is supposed to return the index for it. | ||
147 | */ | ||
148 | struct iio_enum { | ||
149 | const char * const *items; | ||
150 | unsigned int num_items; | ||
151 | int (*set)(struct iio_dev *, const struct iio_chan_spec *, unsigned int); | ||
152 | int (*get)(struct iio_dev *, const struct iio_chan_spec *); | ||
153 | }; | ||
154 | |||
155 | ssize_t iio_enum_available_read(struct iio_dev *indio_dev, | ||
156 | uintptr_t priv, const struct iio_chan_spec *chan, char *buf); | ||
157 | ssize_t iio_enum_read(struct iio_dev *indio_dev, | ||
158 | uintptr_t priv, const struct iio_chan_spec *chan, char *buf); | ||
159 | ssize_t iio_enum_write(struct iio_dev *indio_dev, | ||
160 | uintptr_t priv, const struct iio_chan_spec *chan, const char *buf, | ||
161 | size_t len); | ||
162 | |||
163 | /** | ||
164 | * IIO_ENUM() - Initialize enum extended channel attribute | ||
165 | * @_name: Attribute name | ||
166 | * @_shared: Whether the attribute is shared between all channels | ||
167 | * @_e: Pointer to a iio_enum struct | ||
168 | * | ||
169 | * This should usually be used together with IIO_ENUM_AVAILABLE() | ||
170 | */ | ||
171 | #define IIO_ENUM(_name, _shared, _e) \ | ||
172 | { \ | ||
173 | .name = (_name), \ | ||
174 | .shared = (_shared), \ | ||
175 | .read = iio_enum_read, \ | ||
176 | .write = iio_enum_write, \ | ||
177 | .private = (uintptr_t)(_e), \ | ||
178 | } | ||
179 | |||
180 | /** | ||
181 | * IIO_ENUM_AVAILABLE() - Initialize enum available extended channel attribute | ||
182 | * @_name: Attribute name ("_available" will be appended to the name) | ||
183 | * @_e: Pointer to a iio_enum struct | ||
184 | * | ||
185 | * Creates a read only attribute which list all the available enum items in a | ||
186 | * space separated list. This should usually be used together with IIO_ENUM() | ||
187 | */ | ||
188 | #define IIO_ENUM_AVAILABLE(_name, _e) \ | ||
189 | { \ | ||
190 | .name = (_name "_available"), \ | ||
191 | .shared = true, \ | ||
192 | .read = iio_enum_available_read, \ | ||
193 | .private = (uintptr_t)(_e), \ | ||
194 | } | ||
195 | |||
196 | /** | ||
133 | * struct iio_chan_spec - specification of a single channel | 197 | * struct iio_chan_spec - specification of a single channel |
134 | * @type: What type of measurement is the channel making. | 198 | * @type: What type of measurement is the channel making. |
135 | * @channel: What number or name do we wish to assign the channel. | 199 | * @channel: What number do we wish to assign the channel. |
136 | * @channel2: If there is a second number for a differential | 200 | * @channel2: If there is a second number for a differential |
137 | * channel then this is it. If modified is set then the | 201 | * channel then this is it. If modified is set then the |
138 | * value here specifies the modifier. | 202 | * value here specifies the modifier. |
139 | * @address: Driver specific identifier. | 203 | * @address: Driver specific identifier. |
140 | * @scan_index: Monotonic index to give ordering in scans when read | 204 | * @scan_index: Monotonic index to give ordering in scans when read |
141 | * from a buffer. | 205 | * from a buffer. |
142 | * @scan_type: Sign: 's' or 'u' to specify signed or unsigned | 206 | * @scan_type: Sign: 's' or 'u' to specify signed or unsigned |
143 | * realbits: Number of valid bits of data | 207 | * realbits: Number of valid bits of data |
@@ -147,14 +211,14 @@ struct iio_chan_spec_ext_info { | |||
147 | * endianness: little or big endian | 211 | * endianness: little or big endian |
148 | * @info_mask: What information is to be exported about this channel. | 212 | * @info_mask: What information is to be exported about this channel. |
149 | * This includes calibbias, scale etc. | 213 | * This includes calibbias, scale etc. |
150 | * @event_mask: What events can this channel produce. | 214 | * @event_mask: What events can this channel produce. |
151 | * @ext_info: Array of extended info attributes for this channel. | 215 | * @ext_info: Array of extended info attributes for this channel. |
152 | * The array is NULL terminated, the last element should | 216 | * The array is NULL terminated, the last element should |
153 | * have it's name field set to NULL. | 217 | * have its name field set to NULL. |
154 | * @extend_name: Allows labeling of channel attributes with an | 218 | * @extend_name: Allows labeling of channel attributes with an |
155 | * informative name. Note this has no effect codes etc, | 219 | * informative name. Note this has no effect codes etc, |
156 | * unlike modifiers. | 220 | * unlike modifiers. |
157 | * @datasheet_name: A name used in in kernel mapping of channels. It should | 221 | * @datasheet_name: A name used in in-kernel mapping of channels. It should |
158 | * correspond to the first name that the channel is referred | 222 | * correspond to the first name that the channel is referred |
159 | * to by in the datasheet (e.g. IND), or the nearest | 223 | * to by in the datasheet (e.g. IND), or the nearest |
160 | * possible compound name (e.g. IND-INC). | 224 | * possible compound name (e.g. IND-INC). |
@@ -163,9 +227,8 @@ struct iio_chan_spec_ext_info { | |||
163 | * channel2. Examples are IIO_MOD_X for axial sensors about | 227 | * channel2. Examples are IIO_MOD_X for axial sensors about |
164 | * the 'x' axis. | 228 | * the 'x' axis. |
165 | * @indexed: Specify the channel has a numerical index. If not, | 229 | * @indexed: Specify the channel has a numerical index. If not, |
166 | * the value in channel will be suppressed for attribute | 230 | * the channel index number will be suppressed for sysfs |
167 | * but not for event codes. Typically set it to 0 when | 231 | * attributes but not for event codes. |
168 | * the index is false. | ||
169 | * @differential: Channel is differential. | 232 | * @differential: Channel is differential. |
170 | */ | 233 | */ |
171 | struct iio_chan_spec { | 234 | struct iio_chan_spec { |
@@ -300,12 +363,16 @@ struct iio_info { | |||
300 | * @predisable: [DRIVER] function to run prior to marking buffer | 363 | * @predisable: [DRIVER] function to run prior to marking buffer |
301 | * disabled | 364 | * disabled |
302 | * @postdisable: [DRIVER] function to run after marking buffer disabled | 365 | * @postdisable: [DRIVER] function to run after marking buffer disabled |
366 | * @validate_scan_mask: [DRIVER] function callback to check whether a given | ||
367 | * scan mask is valid for the device. | ||
303 | */ | 368 | */ |
304 | struct iio_buffer_setup_ops { | 369 | struct iio_buffer_setup_ops { |
305 | int (*preenable)(struct iio_dev *); | 370 | int (*preenable)(struct iio_dev *); |
306 | int (*postenable)(struct iio_dev *); | 371 | int (*postenable)(struct iio_dev *); |
307 | int (*predisable)(struct iio_dev *); | 372 | int (*predisable)(struct iio_dev *); |
308 | int (*postdisable)(struct iio_dev *); | 373 | int (*postdisable)(struct iio_dev *); |
374 | bool (*validate_scan_mask)(struct iio_dev *indio_dev, | ||
375 | const unsigned long *scan_mask); | ||
309 | }; | 376 | }; |
310 | 377 | ||
311 | /** | 378 | /** |
@@ -329,7 +396,7 @@ struct iio_buffer_setup_ops { | |||
329 | * @trig: [INTERN] current device trigger (buffer modes) | 396 | * @trig: [INTERN] current device trigger (buffer modes) |
330 | * @pollfunc: [DRIVER] function run on trigger being received | 397 | * @pollfunc: [DRIVER] function run on trigger being received |
331 | * @channels: [DRIVER] channel specification structure table | 398 | * @channels: [DRIVER] channel specification structure table |
332 | * @num_channels: [DRIVER] number of chanels specified in @channels. | 399 | * @num_channels: [DRIVER] number of channels specified in @channels. |
333 | * @channel_attr_list: [INTERN] keep track of automatically created channel | 400 | * @channel_attr_list: [INTERN] keep track of automatically created channel |
334 | * attributes | 401 | * attributes |
335 | * @chan_attr_group: [INTERN] group for all attrs in base directory | 402 | * @chan_attr_group: [INTERN] group for all attrs in base directory |
@@ -419,7 +486,7 @@ extern struct bus_type iio_bus_type; | |||
419 | 486 | ||
420 | /** | 487 | /** |
421 | * iio_device_put() - reference counted deallocation of struct device | 488 | * iio_device_put() - reference counted deallocation of struct device |
422 | * @dev: the iio_device containing the device | 489 | * @indio_dev: IIO device structure containing the device |
423 | **/ | 490 | **/ |
424 | static inline void iio_device_put(struct iio_dev *indio_dev) | 491 | static inline void iio_device_put(struct iio_dev *indio_dev) |
425 | { | 492 | { |
@@ -429,7 +496,7 @@ static inline void iio_device_put(struct iio_dev *indio_dev) | |||
429 | 496 | ||
430 | /** | 497 | /** |
431 | * dev_to_iio_dev() - Get IIO device struct from a device struct | 498 | * dev_to_iio_dev() - Get IIO device struct from a device struct |
432 | * @dev: The device embedded in the IIO device | 499 | * @dev: The device embedded in the IIO device |
433 | * | 500 | * |
434 | * Note: The device must be a IIO device, otherwise the result is undefined. | 501 | * Note: The device must be a IIO device, otherwise the result is undefined. |
435 | */ | 502 | */ |
@@ -438,11 +505,22 @@ static inline struct iio_dev *dev_to_iio_dev(struct device *dev) | |||
438 | return container_of(dev, struct iio_dev, dev); | 505 | return container_of(dev, struct iio_dev, dev); |
439 | } | 506 | } |
440 | 507 | ||
508 | /** | ||
509 | * iio_device_get() - increment reference count for the device | ||
510 | * @indio_dev: IIO device structure | ||
511 | * | ||
512 | * Returns: The passed IIO device | ||
513 | **/ | ||
514 | static inline struct iio_dev *iio_device_get(struct iio_dev *indio_dev) | ||
515 | { | ||
516 | return indio_dev ? dev_to_iio_dev(get_device(&indio_dev->dev)) : NULL; | ||
517 | } | ||
518 | |||
441 | /* Can we make this smaller? */ | 519 | /* Can we make this smaller? */ |
442 | #define IIO_ALIGN L1_CACHE_BYTES | 520 | #define IIO_ALIGN L1_CACHE_BYTES |
443 | /** | 521 | /** |
444 | * iio_device_alloc() - allocate an iio_dev from a driver | 522 | * iio_device_alloc() - allocate an iio_dev from a driver |
445 | * @sizeof_priv: Space to allocate for private structure. | 523 | * @sizeof_priv: Space to allocate for private structure. |
446 | **/ | 524 | **/ |
447 | struct iio_dev *iio_device_alloc(int sizeof_priv); | 525 | struct iio_dev *iio_device_alloc(int sizeof_priv); |
448 | 526 | ||
@@ -459,13 +537,13 @@ static inline struct iio_dev *iio_priv_to_dev(void *priv) | |||
459 | 537 | ||
460 | /** | 538 | /** |
461 | * iio_device_free() - free an iio_dev from a driver | 539 | * iio_device_free() - free an iio_dev from a driver |
462 | * @dev: the iio_dev associated with the device | 540 | * @indio_dev: the iio_dev associated with the device |
463 | **/ | 541 | **/ |
464 | void iio_device_free(struct iio_dev *indio_dev); | 542 | void iio_device_free(struct iio_dev *indio_dev); |
465 | 543 | ||
466 | /** | 544 | /** |
467 | * iio_buffer_enabled() - helper function to test if the buffer is enabled | 545 | * iio_buffer_enabled() - helper function to test if the buffer is enabled |
468 | * @indio_dev: IIO device info structure for device | 546 | * @indio_dev: IIO device structure for device |
469 | **/ | 547 | **/ |
470 | static inline bool iio_buffer_enabled(struct iio_dev *indio_dev) | 548 | static inline bool iio_buffer_enabled(struct iio_dev *indio_dev) |
471 | { | 549 | { |
@@ -475,7 +553,7 @@ static inline bool iio_buffer_enabled(struct iio_dev *indio_dev) | |||
475 | 553 | ||
476 | /** | 554 | /** |
477 | * iio_get_debugfs_dentry() - helper function to get the debugfs_dentry | 555 | * iio_get_debugfs_dentry() - helper function to get the debugfs_dentry |
478 | * @indio_dev: IIO device info structure for device | 556 | * @indio_dev: IIO device structure for device |
479 | **/ | 557 | **/ |
480 | #if defined(CONFIG_DEBUG_FS) | 558 | #if defined(CONFIG_DEBUG_FS) |
481 | static inline struct dentry *iio_get_debugfs_dentry(struct iio_dev *indio_dev) | 559 | static inline struct dentry *iio_get_debugfs_dentry(struct iio_dev *indio_dev) |
diff --git a/include/linux/iio/machine.h b/include/linux/iio/machine.h index 0b1f19bfdc44..400a453ff67b 100644 --- a/include/linux/iio/machine.h +++ b/include/linux/iio/machine.h | |||
@@ -14,7 +14,7 @@ | |||
14 | * This is matched against the datasheet_name element | 14 | * This is matched against the datasheet_name element |
15 | * of struct iio_chan_spec. | 15 | * of struct iio_chan_spec. |
16 | * @consumer_dev_name: Name to uniquely identify the consumer device. | 16 | * @consumer_dev_name: Name to uniquely identify the consumer device. |
17 | * @consumer_channel: Unique name used to idenitify the channel on the | 17 | * @consumer_channel: Unique name used to identify the channel on the |
18 | * consumer side. | 18 | * consumer side. |
19 | */ | 19 | */ |
20 | struct iio_map { | 20 | struct iio_map { |
diff --git a/include/linux/iio/sysfs.h b/include/linux/iio/sysfs.h index bfedb73b850e..b7a934b9431b 100644 --- a/include/linux/iio/sysfs.h +++ b/include/linux/iio/sysfs.h | |||
@@ -97,7 +97,7 @@ struct iio_const_attr { | |||
97 | #define IIO_DEV_ATTR_SAMP_FREQ_AVAIL(_show) \ | 97 | #define IIO_DEV_ATTR_SAMP_FREQ_AVAIL(_show) \ |
98 | IIO_DEVICE_ATTR(sampling_frequency_available, S_IRUGO, _show, NULL, 0) | 98 | IIO_DEVICE_ATTR(sampling_frequency_available, S_IRUGO, _show, NULL, 0) |
99 | /** | 99 | /** |
100 | * IIO_CONST_ATTR_AVAIL_SAMP_FREQ - list available sampling frequencies | 100 | * IIO_CONST_ATTR_SAMP_FREQ_AVAIL - list available sampling frequencies |
101 | * @_string: frequency string for the attribute | 101 | * @_string: frequency string for the attribute |
102 | * | 102 | * |
103 | * Constant version | 103 | * Constant version |
diff --git a/include/linux/iio/triggered_buffer.h b/include/linux/iio/triggered_buffer.h new file mode 100644 index 000000000000..c378ebec605e --- /dev/null +++ b/include/linux/iio/triggered_buffer.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef _LINUX_IIO_TRIGGERED_BUFFER_H_ | ||
2 | #define _LINUX_IIO_TRIGGERED_BUFFER_H_ | ||
3 | |||
4 | #include <linux/interrupt.h> | ||
5 | |||
6 | struct iio_dev; | ||
7 | struct iio_buffer_setup_ops; | ||
8 | |||
9 | int iio_triggered_buffer_setup(struct iio_dev *indio_dev, | ||
10 | irqreturn_t (*pollfunc_bh)(int irq, void *p), | ||
11 | irqreturn_t (*pollfunc_th)(int irq, void *p), | ||
12 | const struct iio_buffer_setup_ops *setup_ops); | ||
13 | void iio_triggered_buffer_cleanup(struct iio_dev *indio_dev); | ||
14 | |||
15 | #endif | ||
diff --git a/include/linux/iio/types.h b/include/linux/iio/types.h index 1b073b1cc7c2..44e397705d7f 100644 --- a/include/linux/iio/types.h +++ b/include/linux/iio/types.h | |||
@@ -11,7 +11,6 @@ | |||
11 | #define _IIO_TYPES_H_ | 11 | #define _IIO_TYPES_H_ |
12 | 12 | ||
13 | enum iio_chan_type { | 13 | enum iio_chan_type { |
14 | /* real channel types */ | ||
15 | IIO_VOLTAGE, | 14 | IIO_VOLTAGE, |
16 | IIO_CURRENT, | 15 | IIO_CURRENT, |
17 | IIO_POWER, | 16 | IIO_POWER, |
@@ -28,6 +27,7 @@ enum iio_chan_type { | |||
28 | IIO_TIMESTAMP, | 27 | IIO_TIMESTAMP, |
29 | IIO_CAPACITANCE, | 28 | IIO_CAPACITANCE, |
30 | IIO_ALTVOLTAGE, | 29 | IIO_ALTVOLTAGE, |
30 | IIO_CCT, | ||
31 | }; | 31 | }; |
32 | 32 | ||
33 | enum iio_modifier { | 33 | enum iio_modifier { |
@@ -45,6 +45,12 @@ enum iio_modifier { | |||
45 | IIO_MOD_X_OR_Y_OR_Z, | 45 | IIO_MOD_X_OR_Y_OR_Z, |
46 | IIO_MOD_LIGHT_BOTH, | 46 | IIO_MOD_LIGHT_BOTH, |
47 | IIO_MOD_LIGHT_IR, | 47 | IIO_MOD_LIGHT_IR, |
48 | IIO_MOD_ROOT_SUM_SQUARED_X_Y, | ||
49 | IIO_MOD_SUM_SQUARED_X_Y_Z, | ||
50 | IIO_MOD_LIGHT_CLEAR, | ||
51 | IIO_MOD_LIGHT_RED, | ||
52 | IIO_MOD_LIGHT_GREEN, | ||
53 | IIO_MOD_LIGHT_BLUE, | ||
48 | }; | 54 | }; |
49 | 55 | ||
50 | #define IIO_VAL_INT 1 | 56 | #define IIO_VAL_INT 1 |
diff --git a/include/linux/inetdevice.h b/include/linux/inetdevice.h index 597f4a9f3240..67f9ddacb70c 100644 --- a/include/linux/inetdevice.h +++ b/include/linux/inetdevice.h | |||
@@ -38,6 +38,7 @@ enum | |||
38 | IPV4_DEVCONF_ACCEPT_LOCAL, | 38 | IPV4_DEVCONF_ACCEPT_LOCAL, |
39 | IPV4_DEVCONF_SRC_VMARK, | 39 | IPV4_DEVCONF_SRC_VMARK, |
40 | IPV4_DEVCONF_PROXY_ARP_PVLAN, | 40 | IPV4_DEVCONF_PROXY_ARP_PVLAN, |
41 | IPV4_DEVCONF_ROUTE_LOCALNET, | ||
41 | __IPV4_DEVCONF_MAX | 42 | __IPV4_DEVCONF_MAX |
42 | }; | 43 | }; |
43 | 44 | ||
@@ -131,6 +132,7 @@ static inline void ipv4_devconf_setall(struct in_device *in_dev) | |||
131 | #define IN_DEV_PROMOTE_SECONDARIES(in_dev) \ | 132 | #define IN_DEV_PROMOTE_SECONDARIES(in_dev) \ |
132 | IN_DEV_ORCONF((in_dev), \ | 133 | IN_DEV_ORCONF((in_dev), \ |
133 | PROMOTE_SECONDARIES) | 134 | PROMOTE_SECONDARIES) |
135 | #define IN_DEV_ROUTE_LOCALNET(in_dev) IN_DEV_ORCONF(in_dev, ROUTE_LOCALNET) | ||
134 | 136 | ||
135 | #define IN_DEV_RX_REDIRECTS(in_dev) \ | 137 | #define IN_DEV_RX_REDIRECTS(in_dev) \ |
136 | ((IN_DEV_FORWARD(in_dev) && \ | 138 | ((IN_DEV_FORWARD(in_dev) && \ |
diff --git a/include/linux/init.h b/include/linux/init.h index 6b951095a42f..5e664f671615 100644 --- a/include/linux/init.h +++ b/include/linux/init.h | |||
@@ -191,6 +191,7 @@ extern bool initcall_debug; | |||
191 | * initializes variables that couldn't be statically initialized. | 191 | * initializes variables that couldn't be statically initialized. |
192 | * | 192 | * |
193 | * This only exists for built-in code, not for modules. | 193 | * This only exists for built-in code, not for modules. |
194 | * Keep main.c:initcall_level_names[] in sync. | ||
194 | */ | 195 | */ |
195 | #define pure_initcall(fn) __define_initcall("0",fn,0) | 196 | #define pure_initcall(fn) __define_initcall("0",fn,0) |
196 | 197 | ||
@@ -280,7 +281,7 @@ void __init parse_early_options(char *cmdline); | |||
280 | 281 | ||
281 | #else /* MODULE */ | 282 | #else /* MODULE */ |
282 | 283 | ||
283 | /* Don't use these in modules, but some people do... */ | 284 | /* Don't use these in loadable modules, but some people do... */ |
284 | #define early_initcall(fn) module_init(fn) | 285 | #define early_initcall(fn) module_init(fn) |
285 | #define core_initcall(fn) module_init(fn) | 286 | #define core_initcall(fn) module_init(fn) |
286 | #define postcore_initcall(fn) module_init(fn) | 287 | #define postcore_initcall(fn) module_init(fn) |
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 9e65eff6af3b..89f1cb1056f0 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
@@ -123,8 +123,17 @@ extern struct group_info init_groups; | |||
123 | 123 | ||
124 | extern struct cred init_cred; | 124 | extern struct cred init_cred; |
125 | 125 | ||
126 | extern struct task_group root_task_group; | ||
127 | |||
128 | #ifdef CONFIG_CGROUP_SCHED | ||
129 | # define INIT_CGROUP_SCHED(tsk) \ | ||
130 | .sched_task_group = &root_task_group, | ||
131 | #else | ||
132 | # define INIT_CGROUP_SCHED(tsk) | ||
133 | #endif | ||
134 | |||
126 | #ifdef CONFIG_PERF_EVENTS | 135 | #ifdef CONFIG_PERF_EVENTS |
127 | # define INIT_PERF_EVENTS(tsk) \ | 136 | # define INIT_PERF_EVENTS(tsk) \ |
128 | .perf_event_mutex = \ | 137 | .perf_event_mutex = \ |
129 | __MUTEX_INITIALIZER(tsk.perf_event_mutex), \ | 138 | __MUTEX_INITIALIZER(tsk.perf_event_mutex), \ |
130 | .perf_event_list = LIST_HEAD_INIT(tsk.perf_event_list), | 139 | .perf_event_list = LIST_HEAD_INIT(tsk.perf_event_list), |
@@ -161,6 +170,7 @@ extern struct cred init_cred; | |||
161 | }, \ | 170 | }, \ |
162 | .tasks = LIST_HEAD_INIT(tsk.tasks), \ | 171 | .tasks = LIST_HEAD_INIT(tsk.tasks), \ |
163 | INIT_PUSHABLE_TASKS(tsk) \ | 172 | INIT_PUSHABLE_TASKS(tsk) \ |
173 | INIT_CGROUP_SCHED(tsk) \ | ||
164 | .ptraced = LIST_HEAD_INIT(tsk.ptraced), \ | 174 | .ptraced = LIST_HEAD_INIT(tsk.ptraced), \ |
165 | .ptrace_entry = LIST_HEAD_INIT(tsk.ptrace_entry), \ | 175 | .ptrace_entry = LIST_HEAD_INIT(tsk.ptrace_entry), \ |
166 | .real_parent = &tsk, \ | 176 | .real_parent = &tsk, \ |
@@ -168,8 +178,8 @@ extern struct cred init_cred; | |||
168 | .children = LIST_HEAD_INIT(tsk.children), \ | 178 | .children = LIST_HEAD_INIT(tsk.children), \ |
169 | .sibling = LIST_HEAD_INIT(tsk.sibling), \ | 179 | .sibling = LIST_HEAD_INIT(tsk.sibling), \ |
170 | .group_leader = &tsk, \ | 180 | .group_leader = &tsk, \ |
171 | RCU_INIT_POINTER(.real_cred, &init_cred), \ | 181 | RCU_POINTER_INITIALIZER(real_cred, &init_cred), \ |
172 | RCU_INIT_POINTER(.cred, &init_cred), \ | 182 | RCU_POINTER_INITIALIZER(cred, &init_cred), \ |
173 | .comm = INIT_TASK_COMM, \ | 183 | .comm = INIT_TASK_COMM, \ |
174 | .thread = INIT_THREAD, \ | 184 | .thread = INIT_THREAD, \ |
175 | .fs = &init_fs, \ | 185 | .fs = &init_fs, \ |
diff --git a/include/linux/input.h b/include/linux/input.h index a81671453575..725dcd0f63a4 100644 --- a/include/linux/input.h +++ b/include/linux/input.h | |||
@@ -116,6 +116,7 @@ struct input_keymap_entry { | |||
116 | 116 | ||
117 | /** | 117 | /** |
118 | * EVIOCGMTSLOTS(len) - get MT slot values | 118 | * EVIOCGMTSLOTS(len) - get MT slot values |
119 | * @len: size of the data buffer in bytes | ||
119 | * | 120 | * |
120 | * The ioctl buffer argument should be binary equivalent to | 121 | * The ioctl buffer argument should be binary equivalent to |
121 | * | 122 | * |
@@ -806,18 +807,20 @@ struct input_keymap_entry { | |||
806 | #define ABS_MT_WIDTH_MAJOR 0x32 /* Major axis of approaching ellipse */ | 807 | #define ABS_MT_WIDTH_MAJOR 0x32 /* Major axis of approaching ellipse */ |
807 | #define ABS_MT_WIDTH_MINOR 0x33 /* Minor axis (omit if circular) */ | 808 | #define ABS_MT_WIDTH_MINOR 0x33 /* Minor axis (omit if circular) */ |
808 | #define ABS_MT_ORIENTATION 0x34 /* Ellipse orientation */ | 809 | #define ABS_MT_ORIENTATION 0x34 /* Ellipse orientation */ |
809 | #define ABS_MT_POSITION_X 0x35 /* Center X ellipse position */ | 810 | #define ABS_MT_POSITION_X 0x35 /* Center X touch position */ |
810 | #define ABS_MT_POSITION_Y 0x36 /* Center Y ellipse position */ | 811 | #define ABS_MT_POSITION_Y 0x36 /* Center Y touch position */ |
811 | #define ABS_MT_TOOL_TYPE 0x37 /* Type of touching device */ | 812 | #define ABS_MT_TOOL_TYPE 0x37 /* Type of touching device */ |
812 | #define ABS_MT_BLOB_ID 0x38 /* Group a set of packets as a blob */ | 813 | #define ABS_MT_BLOB_ID 0x38 /* Group a set of packets as a blob */ |
813 | #define ABS_MT_TRACKING_ID 0x39 /* Unique ID of initiated contact */ | 814 | #define ABS_MT_TRACKING_ID 0x39 /* Unique ID of initiated contact */ |
814 | #define ABS_MT_PRESSURE 0x3a /* Pressure on contact area */ | 815 | #define ABS_MT_PRESSURE 0x3a /* Pressure on contact area */ |
815 | #define ABS_MT_DISTANCE 0x3b /* Contact hover distance */ | 816 | #define ABS_MT_DISTANCE 0x3b /* Contact hover distance */ |
817 | #define ABS_MT_TOOL_X 0x3c /* Center X tool position */ | ||
818 | #define ABS_MT_TOOL_Y 0x3d /* Center Y tool position */ | ||
816 | 819 | ||
817 | #ifdef __KERNEL__ | 820 | #ifdef __KERNEL__ |
818 | /* Implementation details, userspace should not care about these */ | 821 | /* Implementation details, userspace should not care about these */ |
819 | #define ABS_MT_FIRST ABS_MT_TOUCH_MAJOR | 822 | #define ABS_MT_FIRST ABS_MT_TOUCH_MAJOR |
820 | #define ABS_MT_LAST ABS_MT_DISTANCE | 823 | #define ABS_MT_LAST ABS_MT_TOOL_Y |
821 | #endif | 824 | #endif |
822 | 825 | ||
823 | #define ABS_MAX 0x3f | 826 | #define ABS_MAX 0x3f |
diff --git a/include/linux/input/edt-ft5x06.h b/include/linux/input/edt-ft5x06.h new file mode 100644 index 000000000000..8a1e0d1a0124 --- /dev/null +++ b/include/linux/input/edt-ft5x06.h | |||
@@ -0,0 +1,24 @@ | |||
1 | #ifndef _EDT_FT5X06_H | ||
2 | #define _EDT_FT5X06_H | ||
3 | |||
4 | /* | ||
5 | * Copyright (c) 2012 Simon Budig, <simon.budig@kernelconcepts.de> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License version 2 as published by | ||
9 | * the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | struct edt_ft5x06_platform_data { | ||
13 | int irq_pin; | ||
14 | int reset_pin; | ||
15 | |||
16 | /* startup defaults for operational parameters */ | ||
17 | bool use_parameters; | ||
18 | u8 gain; | ||
19 | u8 threshold; | ||
20 | u8 offset; | ||
21 | u8 report_rate; | ||
22 | }; | ||
23 | |||
24 | #endif /* _EDT_FT5X06_H */ | ||
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h index e6ca56de9936..78e2ada50cd5 100644 --- a/include/linux/intel-iommu.h +++ b/include/linux/intel-iommu.h | |||
@@ -308,6 +308,8 @@ enum { | |||
308 | 308 | ||
309 | struct intel_iommu { | 309 | struct intel_iommu { |
310 | void __iomem *reg; /* Pointer to hardware regs, virtual addr */ | 310 | void __iomem *reg; /* Pointer to hardware regs, virtual addr */ |
311 | u64 reg_phys; /* physical address of hw register set */ | ||
312 | u64 reg_size; /* size of hw register set */ | ||
311 | u64 cap; | 313 | u64 cap; |
312 | u64 ecap; | 314 | u64 ecap; |
313 | u32 gcmd; /* Holds TE, EAFL. Don't need SRTP, SFL, WBF */ | 315 | u32 gcmd; /* Holds TE, EAFL. Don't need SRTP, SFL, WBF */ |
diff --git a/include/linux/io.h b/include/linux/io.h index 7fd2d2138bf3..069e4075f872 100644 --- a/include/linux/io.h +++ b/include/linux/io.h | |||
@@ -67,4 +67,13 @@ int check_signature(const volatile void __iomem *io_addr, | |||
67 | const unsigned char *signature, int length); | 67 | const unsigned char *signature, int length); |
68 | void devm_ioremap_release(struct device *dev, void *res); | 68 | void devm_ioremap_release(struct device *dev, void *res); |
69 | 69 | ||
70 | /* | ||
71 | * Some systems do not have legacy ISA devices. | ||
72 | * /dev/port is not a valid interface on these systems. | ||
73 | * So for those archs, <asm/io.h> should define the following symbol. | ||
74 | */ | ||
75 | #ifndef arch_has_dev_port | ||
76 | #define arch_has_dev_port() (1) | ||
77 | #endif | ||
78 | |||
70 | #endif /* _LINUX_IO_H */ | 79 | #endif /* _LINUX_IO_H */ |
diff --git a/include/linux/iommu.h b/include/linux/iommu.h index 450293f6d68b..54d6d690073c 100644 --- a/include/linux/iommu.h +++ b/include/linux/iommu.h | |||
@@ -26,6 +26,7 @@ | |||
26 | #define IOMMU_CACHE (4) /* DMA cache coherency */ | 26 | #define IOMMU_CACHE (4) /* DMA cache coherency */ |
27 | 27 | ||
28 | struct iommu_ops; | 28 | struct iommu_ops; |
29 | struct iommu_group; | ||
29 | struct bus_type; | 30 | struct bus_type; |
30 | struct device; | 31 | struct device; |
31 | struct iommu_domain; | 32 | struct iommu_domain; |
@@ -37,16 +38,28 @@ struct iommu_domain; | |||
37 | typedef int (*iommu_fault_handler_t)(struct iommu_domain *, | 38 | typedef int (*iommu_fault_handler_t)(struct iommu_domain *, |
38 | struct device *, unsigned long, int, void *); | 39 | struct device *, unsigned long, int, void *); |
39 | 40 | ||
41 | struct iommu_domain_geometry { | ||
42 | dma_addr_t aperture_start; /* First address that can be mapped */ | ||
43 | dma_addr_t aperture_end; /* Last address that can be mapped */ | ||
44 | bool force_aperture; /* DMA only allowed in mappable range? */ | ||
45 | }; | ||
46 | |||
40 | struct iommu_domain { | 47 | struct iommu_domain { |
41 | struct iommu_ops *ops; | 48 | struct iommu_ops *ops; |
42 | void *priv; | 49 | void *priv; |
43 | iommu_fault_handler_t handler; | 50 | iommu_fault_handler_t handler; |
44 | void *handler_token; | 51 | void *handler_token; |
52 | struct iommu_domain_geometry geometry; | ||
45 | }; | 53 | }; |
46 | 54 | ||
47 | #define IOMMU_CAP_CACHE_COHERENCY 0x1 | 55 | #define IOMMU_CAP_CACHE_COHERENCY 0x1 |
48 | #define IOMMU_CAP_INTR_REMAP 0x2 /* isolates device intrs */ | 56 | #define IOMMU_CAP_INTR_REMAP 0x2 /* isolates device intrs */ |
49 | 57 | ||
58 | enum iommu_attr { | ||
59 | DOMAIN_ATTR_MAX, | ||
60 | DOMAIN_ATTR_GEOMETRY, | ||
61 | }; | ||
62 | |||
50 | #ifdef CONFIG_IOMMU_API | 63 | #ifdef CONFIG_IOMMU_API |
51 | 64 | ||
52 | /** | 65 | /** |
@@ -59,7 +72,10 @@ struct iommu_domain { | |||
59 | * @unmap: unmap a physically contiguous memory region from an iommu domain | 72 | * @unmap: unmap a physically contiguous memory region from an iommu domain |
60 | * @iova_to_phys: translate iova to physical address | 73 | * @iova_to_phys: translate iova to physical address |
61 | * @domain_has_cap: domain capabilities query | 74 | * @domain_has_cap: domain capabilities query |
62 | * @commit: commit iommu domain | 75 | * @add_device: add device to iommu grouping |
76 | * @remove_device: remove device from iommu grouping | ||
77 | * @domain_get_attr: Query domain attributes | ||
78 | * @domain_set_attr: Change domain attributes | ||
63 | * @pgsize_bitmap: bitmap of supported page sizes | 79 | * @pgsize_bitmap: bitmap of supported page sizes |
64 | */ | 80 | */ |
65 | struct iommu_ops { | 81 | struct iommu_ops { |
@@ -75,10 +91,23 @@ struct iommu_ops { | |||
75 | unsigned long iova); | 91 | unsigned long iova); |
76 | int (*domain_has_cap)(struct iommu_domain *domain, | 92 | int (*domain_has_cap)(struct iommu_domain *domain, |
77 | unsigned long cap); | 93 | unsigned long cap); |
94 | int (*add_device)(struct device *dev); | ||
95 | void (*remove_device)(struct device *dev); | ||
78 | int (*device_group)(struct device *dev, unsigned int *groupid); | 96 | int (*device_group)(struct device *dev, unsigned int *groupid); |
97 | int (*domain_get_attr)(struct iommu_domain *domain, | ||
98 | enum iommu_attr attr, void *data); | ||
99 | int (*domain_set_attr)(struct iommu_domain *domain, | ||
100 | enum iommu_attr attr, void *data); | ||
79 | unsigned long pgsize_bitmap; | 101 | unsigned long pgsize_bitmap; |
80 | }; | 102 | }; |
81 | 103 | ||
104 | #define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */ | ||
105 | #define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */ | ||
106 | #define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */ | ||
107 | #define IOMMU_GROUP_NOTIFY_BOUND_DRIVER 4 /* Post Driver bind */ | ||
108 | #define IOMMU_GROUP_NOTIFY_UNBIND_DRIVER 5 /* Pre Driver unbind */ | ||
109 | #define IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER 6 /* Post Driver unbind */ | ||
110 | |||
82 | extern int bus_set_iommu(struct bus_type *bus, struct iommu_ops *ops); | 111 | extern int bus_set_iommu(struct bus_type *bus, struct iommu_ops *ops); |
83 | extern bool iommu_present(struct bus_type *bus); | 112 | extern bool iommu_present(struct bus_type *bus); |
84 | extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus); | 113 | extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus); |
@@ -97,7 +126,34 @@ extern int iommu_domain_has_cap(struct iommu_domain *domain, | |||
97 | unsigned long cap); | 126 | unsigned long cap); |
98 | extern void iommu_set_fault_handler(struct iommu_domain *domain, | 127 | extern void iommu_set_fault_handler(struct iommu_domain *domain, |
99 | iommu_fault_handler_t handler, void *token); | 128 | iommu_fault_handler_t handler, void *token); |
100 | extern int iommu_device_group(struct device *dev, unsigned int *groupid); | 129 | |
130 | extern int iommu_attach_group(struct iommu_domain *domain, | ||
131 | struct iommu_group *group); | ||
132 | extern void iommu_detach_group(struct iommu_domain *domain, | ||
133 | struct iommu_group *group); | ||
134 | extern struct iommu_group *iommu_group_alloc(void); | ||
135 | extern void *iommu_group_get_iommudata(struct iommu_group *group); | ||
136 | extern void iommu_group_set_iommudata(struct iommu_group *group, | ||
137 | void *iommu_data, | ||
138 | void (*release)(void *iommu_data)); | ||
139 | extern int iommu_group_set_name(struct iommu_group *group, const char *name); | ||
140 | extern int iommu_group_add_device(struct iommu_group *group, | ||
141 | struct device *dev); | ||
142 | extern void iommu_group_remove_device(struct device *dev); | ||
143 | extern int iommu_group_for_each_dev(struct iommu_group *group, void *data, | ||
144 | int (*fn)(struct device *, void *)); | ||
145 | extern struct iommu_group *iommu_group_get(struct device *dev); | ||
146 | extern void iommu_group_put(struct iommu_group *group); | ||
147 | extern int iommu_group_register_notifier(struct iommu_group *group, | ||
148 | struct notifier_block *nb); | ||
149 | extern int iommu_group_unregister_notifier(struct iommu_group *group, | ||
150 | struct notifier_block *nb); | ||
151 | extern int iommu_group_id(struct iommu_group *group); | ||
152 | |||
153 | extern int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr, | ||
154 | void *data); | ||
155 | extern int iommu_domain_set_attr(struct iommu_domain *domain, enum iommu_attr, | ||
156 | void *data); | ||
101 | 157 | ||
102 | /** | 158 | /** |
103 | * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework | 159 | * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework |
@@ -142,6 +198,7 @@ static inline int report_iommu_fault(struct iommu_domain *domain, | |||
142 | #else /* CONFIG_IOMMU_API */ | 198 | #else /* CONFIG_IOMMU_API */ |
143 | 199 | ||
144 | struct iommu_ops {}; | 200 | struct iommu_ops {}; |
201 | struct iommu_group {}; | ||
145 | 202 | ||
146 | static inline bool iommu_present(struct bus_type *bus) | 203 | static inline bool iommu_present(struct bus_type *bus) |
147 | { | 204 | { |
@@ -197,11 +254,88 @@ static inline void iommu_set_fault_handler(struct iommu_domain *domain, | |||
197 | { | 254 | { |
198 | } | 255 | } |
199 | 256 | ||
200 | static inline int iommu_device_group(struct device *dev, unsigned int *groupid) | 257 | int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group) |
258 | { | ||
259 | return -ENODEV; | ||
260 | } | ||
261 | |||
262 | void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group) | ||
263 | { | ||
264 | } | ||
265 | |||
266 | struct iommu_group *iommu_group_alloc(void) | ||
267 | { | ||
268 | return ERR_PTR(-ENODEV); | ||
269 | } | ||
270 | |||
271 | void *iommu_group_get_iommudata(struct iommu_group *group) | ||
272 | { | ||
273 | return NULL; | ||
274 | } | ||
275 | |||
276 | void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data, | ||
277 | void (*release)(void *iommu_data)) | ||
278 | { | ||
279 | } | ||
280 | |||
281 | int iommu_group_set_name(struct iommu_group *group, const char *name) | ||
282 | { | ||
283 | return -ENODEV; | ||
284 | } | ||
285 | |||
286 | int iommu_group_add_device(struct iommu_group *group, struct device *dev) | ||
287 | { | ||
288 | return -ENODEV; | ||
289 | } | ||
290 | |||
291 | void iommu_group_remove_device(struct device *dev) | ||
292 | { | ||
293 | } | ||
294 | |||
295 | int iommu_group_for_each_dev(struct iommu_group *group, void *data, | ||
296 | int (*fn)(struct device *, void *)) | ||
297 | { | ||
298 | return -ENODEV; | ||
299 | } | ||
300 | |||
301 | struct iommu_group *iommu_group_get(struct device *dev) | ||
302 | { | ||
303 | return NULL; | ||
304 | } | ||
305 | |||
306 | void iommu_group_put(struct iommu_group *group) | ||
307 | { | ||
308 | } | ||
309 | |||
310 | int iommu_group_register_notifier(struct iommu_group *group, | ||
311 | struct notifier_block *nb) | ||
201 | { | 312 | { |
202 | return -ENODEV; | 313 | return -ENODEV; |
203 | } | 314 | } |
204 | 315 | ||
316 | int iommu_group_unregister_notifier(struct iommu_group *group, | ||
317 | struct notifier_block *nb) | ||
318 | { | ||
319 | return 0; | ||
320 | } | ||
321 | |||
322 | int iommu_group_id(struct iommu_group *group) | ||
323 | { | ||
324 | return -ENODEV; | ||
325 | } | ||
326 | |||
327 | static inline int iommu_domain_get_attr(struct iommu_domain *domain, | ||
328 | enum iommu_attr attr, void *data) | ||
329 | { | ||
330 | return -EINVAL; | ||
331 | } | ||
332 | |||
333 | static inline int iommu_domain_set_attr(struct iommu_domain *domain, | ||
334 | enum iommu_attr attr, void *data) | ||
335 | { | ||
336 | return -EINVAL; | ||
337 | } | ||
338 | |||
205 | #endif /* CONFIG_IOMMU_API */ | 339 | #endif /* CONFIG_IOMMU_API */ |
206 | 340 | ||
207 | #endif /* __LINUX_IOMMU_H */ | 341 | #endif /* __LINUX_IOMMU_H */ |
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index 8260ef779762..379e433e15e0 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h | |||
@@ -299,9 +299,9 @@ struct ipv6_pinfo { | |||
299 | struct in6_addr rcv_saddr; | 299 | struct in6_addr rcv_saddr; |
300 | struct in6_addr daddr; | 300 | struct in6_addr daddr; |
301 | struct in6_pktinfo sticky_pktinfo; | 301 | struct in6_pktinfo sticky_pktinfo; |
302 | struct in6_addr *daddr_cache; | 302 | const struct in6_addr *daddr_cache; |
303 | #ifdef CONFIG_IPV6_SUBTREES | 303 | #ifdef CONFIG_IPV6_SUBTREES |
304 | struct in6_addr *saddr_cache; | 304 | const struct in6_addr *saddr_cache; |
305 | #endif | 305 | #endif |
306 | 306 | ||
307 | __be32 flow_label; | 307 | __be32 flow_label; |
@@ -410,6 +410,22 @@ struct tcp6_sock { | |||
410 | 410 | ||
411 | extern int inet6_sk_rebuild_header(struct sock *sk); | 411 | extern int inet6_sk_rebuild_header(struct sock *sk); |
412 | 412 | ||
413 | struct inet6_timewait_sock { | ||
414 | struct in6_addr tw_v6_daddr; | ||
415 | struct in6_addr tw_v6_rcv_saddr; | ||
416 | }; | ||
417 | |||
418 | struct tcp6_timewait_sock { | ||
419 | struct tcp_timewait_sock tcp6tw_tcp; | ||
420 | struct inet6_timewait_sock tcp6tw_inet6; | ||
421 | }; | ||
422 | |||
423 | static inline struct inet6_timewait_sock *inet6_twsk(const struct sock *sk) | ||
424 | { | ||
425 | return (struct inet6_timewait_sock *)(((u8 *)sk) + | ||
426 | inet_twsk(sk)->tw_ipv6_offset); | ||
427 | } | ||
428 | |||
413 | #if IS_ENABLED(CONFIG_IPV6) | 429 | #if IS_ENABLED(CONFIG_IPV6) |
414 | static inline struct ipv6_pinfo * inet6_sk(const struct sock *__sk) | 430 | static inline struct ipv6_pinfo * inet6_sk(const struct sock *__sk) |
415 | { | 431 | { |
@@ -459,28 +475,12 @@ static inline void inet_sk_copy_descendant(struct sock *sk_to, | |||
459 | #define __ipv6_only_sock(sk) (inet6_sk(sk)->ipv6only) | 475 | #define __ipv6_only_sock(sk) (inet6_sk(sk)->ipv6only) |
460 | #define ipv6_only_sock(sk) ((sk)->sk_family == PF_INET6 && __ipv6_only_sock(sk)) | 476 | #define ipv6_only_sock(sk) ((sk)->sk_family == PF_INET6 && __ipv6_only_sock(sk)) |
461 | 477 | ||
462 | struct inet6_timewait_sock { | ||
463 | struct in6_addr tw_v6_daddr; | ||
464 | struct in6_addr tw_v6_rcv_saddr; | ||
465 | }; | ||
466 | |||
467 | struct tcp6_timewait_sock { | ||
468 | struct tcp_timewait_sock tcp6tw_tcp; | ||
469 | struct inet6_timewait_sock tcp6tw_inet6; | ||
470 | }; | ||
471 | |||
472 | static inline u16 inet6_tw_offset(const struct proto *prot) | 478 | static inline u16 inet6_tw_offset(const struct proto *prot) |
473 | { | 479 | { |
474 | return prot->twsk_prot->twsk_obj_size - | 480 | return prot->twsk_prot->twsk_obj_size - |
475 | sizeof(struct inet6_timewait_sock); | 481 | sizeof(struct inet6_timewait_sock); |
476 | } | 482 | } |
477 | 483 | ||
478 | static inline struct inet6_timewait_sock *inet6_twsk(const struct sock *sk) | ||
479 | { | ||
480 | return (struct inet6_timewait_sock *)(((u8 *)sk) + | ||
481 | inet_twsk(sk)->tw_ipv6_offset); | ||
482 | } | ||
483 | |||
484 | static inline struct in6_addr *__inet6_rcv_saddr(const struct sock *sk) | 484 | static inline struct in6_addr *__inet6_rcv_saddr(const struct sock *sk) |
485 | { | 485 | { |
486 | return likely(sk->sk_state != TCP_TIME_WAIT) ? | 486 | return likely(sk->sk_state != TCP_TIME_WAIT) ? |
diff --git a/include/linux/irq.h b/include/linux/irq.h index 61f5cec031e0..553fb66da130 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -150,9 +150,7 @@ struct irq_data { | |||
150 | void *handler_data; | 150 | void *handler_data; |
151 | void *chip_data; | 151 | void *chip_data; |
152 | struct msi_desc *msi_desc; | 152 | struct msi_desc *msi_desc; |
153 | #ifdef CONFIG_SMP | ||
154 | cpumask_var_t affinity; | 153 | cpumask_var_t affinity; |
155 | #endif | ||
156 | }; | 154 | }; |
157 | 155 | ||
158 | /* | 156 | /* |
@@ -301,8 +299,6 @@ static inline irq_hw_number_t irqd_to_hwirq(struct irq_data *d) | |||
301 | * @irq_pm_shutdown: function called from core code on shutdown once per chip | 299 | * @irq_pm_shutdown: function called from core code on shutdown once per chip |
302 | * @irq_print_chip: optional to print special chip info in show_interrupts | 300 | * @irq_print_chip: optional to print special chip info in show_interrupts |
303 | * @flags: chip specific flags | 301 | * @flags: chip specific flags |
304 | * | ||
305 | * @release: release function solely used by UML | ||
306 | */ | 302 | */ |
307 | struct irq_chip { | 303 | struct irq_chip { |
308 | const char *name; | 304 | const char *name; |
diff --git a/include/linux/jump_label.h b/include/linux/jump_label.h index c513a40510f5..0976fc46d1e0 100644 --- a/include/linux/jump_label.h +++ b/include/linux/jump_label.h | |||
@@ -42,8 +42,7 @@ | |||
42 | * allowed. | 42 | * allowed. |
43 | * | 43 | * |
44 | * Not initializing the key (static data is initialized to 0s anyway) is the | 44 | * Not initializing the key (static data is initialized to 0s anyway) is the |
45 | * same as using STATIC_KEY_INIT_FALSE and static_key_false() is | 45 | * same as using STATIC_KEY_INIT_FALSE. |
46 | * equivalent with static_branch(). | ||
47 | * | 46 | * |
48 | */ | 47 | */ |
49 | 48 | ||
@@ -107,12 +106,6 @@ static __always_inline bool static_key_true(struct static_key *key) | |||
107 | return !static_key_false(key); | 106 | return !static_key_false(key); |
108 | } | 107 | } |
109 | 108 | ||
110 | /* Deprecated. Please use 'static_key_false() instead. */ | ||
111 | static __always_inline bool static_branch(struct static_key *key) | ||
112 | { | ||
113 | return arch_static_branch(key); | ||
114 | } | ||
115 | |||
116 | extern struct jump_entry __start___jump_table[]; | 109 | extern struct jump_entry __start___jump_table[]; |
117 | extern struct jump_entry __stop___jump_table[]; | 110 | extern struct jump_entry __stop___jump_table[]; |
118 | 111 | ||
@@ -166,14 +159,6 @@ static __always_inline bool static_key_true(struct static_key *key) | |||
166 | return false; | 159 | return false; |
167 | } | 160 | } |
168 | 161 | ||
169 | /* Deprecated. Please use 'static_key_false() instead. */ | ||
170 | static __always_inline bool static_branch(struct static_key *key) | ||
171 | { | ||
172 | if (unlikely(atomic_read(&key->enabled)) > 0) | ||
173 | return true; | ||
174 | return false; | ||
175 | } | ||
176 | |||
177 | static inline void static_key_slow_inc(struct static_key *key) | 162 | static inline void static_key_slow_inc(struct static_key *key) |
178 | { | 163 | { |
179 | atomic_inc(&key->enabled); | 164 | atomic_inc(&key->enabled); |
diff --git a/include/linux/kern_levels.h b/include/linux/kern_levels.h new file mode 100644 index 000000000000..866caaa9e2bb --- /dev/null +++ b/include/linux/kern_levels.h | |||
@@ -0,0 +1,25 @@ | |||
1 | #ifndef __KERN_LEVELS_H__ | ||
2 | #define __KERN_LEVELS_H__ | ||
3 | |||
4 | #define KERN_SOH "\001" /* ASCII Start Of Header */ | ||
5 | #define KERN_SOH_ASCII '\001' | ||
6 | |||
7 | #define KERN_EMERG KERN_SOH "0" /* system is unusable */ | ||
8 | #define KERN_ALERT KERN_SOH "1" /* action must be taken immediately */ | ||
9 | #define KERN_CRIT KERN_SOH "2" /* critical conditions */ | ||
10 | #define KERN_ERR KERN_SOH "3" /* error conditions */ | ||
11 | #define KERN_WARNING KERN_SOH "4" /* warning conditions */ | ||
12 | #define KERN_NOTICE KERN_SOH "5" /* normal but significant condition */ | ||
13 | #define KERN_INFO KERN_SOH "6" /* informational */ | ||
14 | #define KERN_DEBUG KERN_SOH "7" /* debug-level messages */ | ||
15 | |||
16 | #define KERN_DEFAULT KERN_SOH "d" /* the default kernel loglevel */ | ||
17 | |||
18 | /* | ||
19 | * Annotation for a "continued" line of log printout (only done after a | ||
20 | * line that had no enclosing \n). Only to be used by core/arch code | ||
21 | * during early bootup (a continued line is not SMP-safe otherwise). | ||
22 | */ | ||
23 | #define KERN_CONT "" | ||
24 | |||
25 | #endif | ||
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index e07f5e0c5df4..604382143bcf 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -377,7 +377,6 @@ extern enum system_states { | |||
377 | SYSTEM_HALT, | 377 | SYSTEM_HALT, |
378 | SYSTEM_POWER_OFF, | 378 | SYSTEM_POWER_OFF, |
379 | SYSTEM_RESTART, | 379 | SYSTEM_RESTART, |
380 | SYSTEM_SUSPEND_DISK, | ||
381 | } system_state; | 380 | } system_state; |
382 | 381 | ||
383 | #define TAINT_PROPRIETARY_MODULE 0 | 382 | #define TAINT_PROPRIETARY_MODULE 0 |
diff --git a/include/linux/key-type.h b/include/linux/key-type.h index 39e3c082c49d..f0c651cda7b0 100644 --- a/include/linux/key-type.h +++ b/include/linux/key-type.h | |||
@@ -13,6 +13,7 @@ | |||
13 | #define _LINUX_KEY_TYPE_H | 13 | #define _LINUX_KEY_TYPE_H |
14 | 14 | ||
15 | #include <linux/key.h> | 15 | #include <linux/key.h> |
16 | #include <linux/errno.h> | ||
16 | 17 | ||
17 | #ifdef CONFIG_KEYS | 18 | #ifdef CONFIG_KEYS |
18 | 19 | ||
diff --git a/include/linux/key.h b/include/linux/key.h index 4cd22ed627ef..cef3b315ba7c 100644 --- a/include/linux/key.h +++ b/include/linux/key.h | |||
@@ -303,7 +303,9 @@ static inline bool key_is_instantiated(const struct key *key) | |||
303 | rwsem_is_locked(&((struct key *)(KEY))->sem))) | 303 | rwsem_is_locked(&((struct key *)(KEY))->sem))) |
304 | 304 | ||
305 | #define rcu_assign_keypointer(KEY, PAYLOAD) \ | 305 | #define rcu_assign_keypointer(KEY, PAYLOAD) \ |
306 | (rcu_assign_pointer((KEY)->payload.rcudata, PAYLOAD)) | 306 | do { \ |
307 | rcu_assign_pointer((KEY)->payload.rcudata, (PAYLOAD)); \ | ||
308 | } while (0) | ||
307 | 309 | ||
308 | #ifdef CONFIG_SYSCTL | 310 | #ifdef CONFIG_SYSCTL |
309 | extern ctl_table key_sysctls[]; | 311 | extern ctl_table key_sysctls[]; |
diff --git a/include/linux/kmsg_dump.h b/include/linux/kmsg_dump.h index 35f7237ec972..2e7a1e032c71 100644 --- a/include/linux/kmsg_dump.h +++ b/include/linux/kmsg_dump.h | |||
@@ -21,6 +21,7 @@ | |||
21 | * is passed to the kernel. | 21 | * is passed to the kernel. |
22 | */ | 22 | */ |
23 | enum kmsg_dump_reason { | 23 | enum kmsg_dump_reason { |
24 | KMSG_DUMP_UNDEF, | ||
24 | KMSG_DUMP_PANIC, | 25 | KMSG_DUMP_PANIC, |
25 | KMSG_DUMP_OOPS, | 26 | KMSG_DUMP_OOPS, |
26 | KMSG_DUMP_EMERG, | 27 | KMSG_DUMP_EMERG, |
@@ -31,23 +32,42 @@ enum kmsg_dump_reason { | |||
31 | 32 | ||
32 | /** | 33 | /** |
33 | * struct kmsg_dumper - kernel crash message dumper structure | 34 | * struct kmsg_dumper - kernel crash message dumper structure |
34 | * @dump: The callback which gets called on crashes. The buffer is passed | ||
35 | * as two sections, where s1 (length l1) contains the older | ||
36 | * messages and s2 (length l2) contains the newer. | ||
37 | * @list: Entry in the dumper list (private) | 35 | * @list: Entry in the dumper list (private) |
36 | * @dump: Call into dumping code which will retrieve the data with | ||
37 | * through the record iterator | ||
38 | * @max_reason: filter for highest reason number that should be dumped | ||
38 | * @registered: Flag that specifies if this is already registered | 39 | * @registered: Flag that specifies if this is already registered |
39 | */ | 40 | */ |
40 | struct kmsg_dumper { | 41 | struct kmsg_dumper { |
41 | void (*dump)(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason, | ||
42 | const char *s1, unsigned long l1, | ||
43 | const char *s2, unsigned long l2); | ||
44 | struct list_head list; | 42 | struct list_head list; |
45 | int registered; | 43 | void (*dump)(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason); |
44 | enum kmsg_dump_reason max_reason; | ||
45 | bool active; | ||
46 | bool registered; | ||
47 | |||
48 | /* private state of the kmsg iterator */ | ||
49 | u32 cur_idx; | ||
50 | u32 next_idx; | ||
51 | u64 cur_seq; | ||
52 | u64 next_seq; | ||
46 | }; | 53 | }; |
47 | 54 | ||
48 | #ifdef CONFIG_PRINTK | 55 | #ifdef CONFIG_PRINTK |
49 | void kmsg_dump(enum kmsg_dump_reason reason); | 56 | void kmsg_dump(enum kmsg_dump_reason reason); |
50 | 57 | ||
58 | bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog, | ||
59 | char *line, size_t size, size_t *len); | ||
60 | |||
61 | bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog, | ||
62 | char *line, size_t size, size_t *len); | ||
63 | |||
64 | bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog, | ||
65 | char *buf, size_t size, size_t *len); | ||
66 | |||
67 | void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper); | ||
68 | |||
69 | void kmsg_dump_rewind(struct kmsg_dumper *dumper); | ||
70 | |||
51 | int kmsg_dump_register(struct kmsg_dumper *dumper); | 71 | int kmsg_dump_register(struct kmsg_dumper *dumper); |
52 | 72 | ||
53 | int kmsg_dump_unregister(struct kmsg_dumper *dumper); | 73 | int kmsg_dump_unregister(struct kmsg_dumper *dumper); |
@@ -56,6 +76,33 @@ static inline void kmsg_dump(enum kmsg_dump_reason reason) | |||
56 | { | 76 | { |
57 | } | 77 | } |
58 | 78 | ||
79 | static inline bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, | ||
80 | bool syslog, const char *line, | ||
81 | size_t size, size_t *len) | ||
82 | { | ||
83 | return false; | ||
84 | } | ||
85 | |||
86 | static inline bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog, | ||
87 | const char *line, size_t size, size_t *len) | ||
88 | { | ||
89 | return false; | ||
90 | } | ||
91 | |||
92 | static inline bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog, | ||
93 | char *buf, size_t size, size_t *len) | ||
94 | { | ||
95 | return false; | ||
96 | } | ||
97 | |||
98 | static inline void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper) | ||
99 | { | ||
100 | } | ||
101 | |||
102 | static inline void kmsg_dump_rewind(struct kmsg_dumper *dumper) | ||
103 | { | ||
104 | } | ||
105 | |||
59 | static inline int kmsg_dump_register(struct kmsg_dumper *dumper) | 106 | static inline int kmsg_dump_register(struct kmsg_dumper *dumper) |
60 | { | 107 | { |
61 | return -EINVAL; | 108 | return -EINVAL; |
diff --git a/include/linux/ks8851_mll.h b/include/linux/ks8851_mll.h new file mode 100644 index 000000000000..e9ccfb59ed30 --- /dev/null +++ b/include/linux/ks8851_mll.h | |||
@@ -0,0 +1,33 @@ | |||
1 | /* | ||
2 | * ks8861_mll platform data struct definition | ||
3 | * Copyright (c) 2012 BTicino S.p.A. | ||
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 | * 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 | */ | ||
18 | |||
19 | #ifndef _LINUX_KS8851_MLL_H | ||
20 | #define _LINUX_KS8851_MLL_H | ||
21 | |||
22 | #include <linux/if_ether.h> | ||
23 | |||
24 | /** | ||
25 | * struct ks8851_mll_platform_data - Platform data of the KS8851_MLL network driver | ||
26 | * @macaddr: The MAC address of the device, set to all 0:s to use the on in | ||
27 | * the chip. | ||
28 | */ | ||
29 | struct ks8851_mll_platform_data { | ||
30 | u8 mac_addr[ETH_ALEN]; | ||
31 | }; | ||
32 | |||
33 | #endif | ||
diff --git a/include/linux/kthread.h b/include/linux/kthread.h index 0714b24c0e45..22ccf9dee177 100644 --- a/include/linux/kthread.h +++ b/include/linux/kthread.h | |||
@@ -49,8 +49,6 @@ extern int tsk_fork_get_node(struct task_struct *tsk); | |||
49 | * can be queued and flushed using queue/flush_kthread_work() | 49 | * can be queued and flushed using queue/flush_kthread_work() |
50 | * respectively. Queued kthread_works are processed by a kthread | 50 | * respectively. Queued kthread_works are processed by a kthread |
51 | * running kthread_worker_fn(). | 51 | * running kthread_worker_fn(). |
52 | * | ||
53 | * A kthread_work can't be freed while it is executing. | ||
54 | */ | 52 | */ |
55 | struct kthread_work; | 53 | struct kthread_work; |
56 | typedef void (*kthread_work_func_t)(struct kthread_work *work); | 54 | typedef void (*kthread_work_func_t)(struct kthread_work *work); |
@@ -59,15 +57,14 @@ struct kthread_worker { | |||
59 | spinlock_t lock; | 57 | spinlock_t lock; |
60 | struct list_head work_list; | 58 | struct list_head work_list; |
61 | struct task_struct *task; | 59 | struct task_struct *task; |
60 | struct kthread_work *current_work; | ||
62 | }; | 61 | }; |
63 | 62 | ||
64 | struct kthread_work { | 63 | struct kthread_work { |
65 | struct list_head node; | 64 | struct list_head node; |
66 | kthread_work_func_t func; | 65 | kthread_work_func_t func; |
67 | wait_queue_head_t done; | 66 | wait_queue_head_t done; |
68 | atomic_t flushing; | 67 | struct kthread_worker *worker; |
69 | int queue_seq; | ||
70 | int done_seq; | ||
71 | }; | 68 | }; |
72 | 69 | ||
73 | #define KTHREAD_WORKER_INIT(worker) { \ | 70 | #define KTHREAD_WORKER_INIT(worker) { \ |
@@ -79,7 +76,6 @@ struct kthread_work { | |||
79 | .node = LIST_HEAD_INIT((work).node), \ | 76 | .node = LIST_HEAD_INIT((work).node), \ |
80 | .func = (fn), \ | 77 | .func = (fn), \ |
81 | .done = __WAIT_QUEUE_HEAD_INITIALIZER((work).done), \ | 78 | .done = __WAIT_QUEUE_HEAD_INITIALIZER((work).done), \ |
82 | .flushing = ATOMIC_INIT(0), \ | ||
83 | } | 79 | } |
84 | 80 | ||
85 | #define DEFINE_KTHREAD_WORKER(worker) \ | 81 | #define DEFINE_KTHREAD_WORKER(worker) \ |
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index 09f2b3aa2da7..2ce09aa7d3b3 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h | |||
@@ -617,6 +617,7 @@ struct kvm_ppc_smmu_info { | |||
617 | #define KVM_CAP_SIGNAL_MSI 77 | 617 | #define KVM_CAP_SIGNAL_MSI 77 |
618 | #define KVM_CAP_PPC_GET_SMMU_INFO 78 | 618 | #define KVM_CAP_PPC_GET_SMMU_INFO 78 |
619 | #define KVM_CAP_S390_COW 79 | 619 | #define KVM_CAP_S390_COW 79 |
620 | #define KVM_CAP_PPC_ALLOC_HTAB 80 | ||
620 | 621 | ||
621 | #ifdef KVM_CAP_IRQ_ROUTING | 622 | #ifdef KVM_CAP_IRQ_ROUTING |
622 | 623 | ||
@@ -828,6 +829,8 @@ struct kvm_s390_ucas_mapping { | |||
828 | #define KVM_SIGNAL_MSI _IOW(KVMIO, 0xa5, struct kvm_msi) | 829 | #define KVM_SIGNAL_MSI _IOW(KVMIO, 0xa5, struct kvm_msi) |
829 | /* Available with KVM_CAP_PPC_GET_SMMU_INFO */ | 830 | /* Available with KVM_CAP_PPC_GET_SMMU_INFO */ |
830 | #define KVM_PPC_GET_SMMU_INFO _IOR(KVMIO, 0xa6, struct kvm_ppc_smmu_info) | 831 | #define KVM_PPC_GET_SMMU_INFO _IOR(KVMIO, 0xa6, struct kvm_ppc_smmu_info) |
832 | /* Available with KVM_CAP_PPC_ALLOC_HTAB */ | ||
833 | #define KVM_PPC_ALLOCATE_HTAB _IOWR(KVMIO, 0xa7, __u32) | ||
831 | 834 | ||
832 | /* | 835 | /* |
833 | * ioctls for vcpu fds | 836 | * ioctls for vcpu fds |
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index c4464356b35b..b70b48b01098 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h | |||
@@ -306,7 +306,7 @@ struct kvm { | |||
306 | struct hlist_head irq_ack_notifier_list; | 306 | struct hlist_head irq_ack_notifier_list; |
307 | #endif | 307 | #endif |
308 | 308 | ||
309 | #ifdef KVM_ARCH_WANT_MMU_NOTIFIER | 309 | #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER) |
310 | struct mmu_notifier mmu_notifier; | 310 | struct mmu_notifier mmu_notifier; |
311 | unsigned long mmu_notifier_seq; | 311 | unsigned long mmu_notifier_seq; |
312 | long mmu_notifier_count; | 312 | long mmu_notifier_count; |
@@ -314,13 +314,19 @@ struct kvm { | |||
314 | long tlbs_dirty; | 314 | long tlbs_dirty; |
315 | }; | 315 | }; |
316 | 316 | ||
317 | /* The guest did something we don't support. */ | 317 | #define kvm_err(fmt, ...) \ |
318 | #define pr_unimpl(vcpu, fmt, ...) \ | 318 | pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__) |
319 | pr_err_ratelimited("kvm: %i: cpu%i " fmt, \ | 319 | #define kvm_info(fmt, ...) \ |
320 | current->tgid, (vcpu)->vcpu_id , ## __VA_ARGS__) | 320 | pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__) |
321 | #define kvm_debug(fmt, ...) \ | ||
322 | pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__) | ||
323 | #define kvm_pr_unimpl(fmt, ...) \ | ||
324 | pr_err_ratelimited("kvm [%i]: " fmt, \ | ||
325 | task_tgid_nr(current), ## __VA_ARGS__) | ||
321 | 326 | ||
322 | #define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt) | 327 | /* The guest did something we don't support. */ |
323 | #define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt) | 328 | #define vcpu_unimpl(vcpu, fmt, ...) \ |
329 | kvm_pr_unimpl("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__) | ||
324 | 330 | ||
325 | static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i) | 331 | static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i) |
326 | { | 332 | { |
@@ -535,6 +541,9 @@ int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu); | |||
535 | 541 | ||
536 | void kvm_free_physmem(struct kvm *kvm); | 542 | void kvm_free_physmem(struct kvm *kvm); |
537 | 543 | ||
544 | void *kvm_kvzalloc(unsigned long size); | ||
545 | void kvm_kvfree(const void *addr); | ||
546 | |||
538 | #ifndef __KVM_HAVE_ARCH_VM_ALLOC | 547 | #ifndef __KVM_HAVE_ARCH_VM_ALLOC |
539 | static inline struct kvm *kvm_arch_alloc_vm(void) | 548 | static inline struct kvm *kvm_arch_alloc_vm(void) |
540 | { | 549 | { |
@@ -771,7 +780,7 @@ struct kvm_stats_debugfs_item { | |||
771 | extern struct kvm_stats_debugfs_item debugfs_entries[]; | 780 | extern struct kvm_stats_debugfs_item debugfs_entries[]; |
772 | extern struct dentry *kvm_debugfs_dir; | 781 | extern struct dentry *kvm_debugfs_dir; |
773 | 782 | ||
774 | #ifdef KVM_ARCH_WANT_MMU_NOTIFIER | 783 | #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER) |
775 | static inline int mmu_notifier_retry(struct kvm_vcpu *vcpu, unsigned long mmu_seq) | 784 | static inline int mmu_notifier_retry(struct kvm_vcpu *vcpu, unsigned long mmu_seq) |
776 | { | 785 | { |
777 | if (unlikely(vcpu->kvm->mmu_notifier_count)) | 786 | if (unlikely(vcpu->kvm->mmu_notifier_count)) |
@@ -793,7 +802,7 @@ static inline int mmu_notifier_retry(struct kvm_vcpu *vcpu, unsigned long mmu_se | |||
793 | } | 802 | } |
794 | #endif | 803 | #endif |
795 | 804 | ||
796 | #ifdef CONFIG_HAVE_KVM_IRQCHIP | 805 | #ifdef KVM_CAP_IRQ_ROUTING |
797 | 806 | ||
798 | #define KVM_MAX_IRQ_ROUTES 1024 | 807 | #define KVM_MAX_IRQ_ROUTES 1024 |
799 | 808 | ||
@@ -815,7 +824,7 @@ static inline void kvm_free_irq_routing(struct kvm *kvm) {} | |||
815 | #ifdef CONFIG_HAVE_KVM_EVENTFD | 824 | #ifdef CONFIG_HAVE_KVM_EVENTFD |
816 | 825 | ||
817 | void kvm_eventfd_init(struct kvm *kvm); | 826 | void kvm_eventfd_init(struct kvm *kvm); |
818 | int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags); | 827 | int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args); |
819 | void kvm_irqfd_release(struct kvm *kvm); | 828 | void kvm_irqfd_release(struct kvm *kvm); |
820 | void kvm_irq_routing_update(struct kvm *, struct kvm_irq_routing_table *); | 829 | void kvm_irq_routing_update(struct kvm *, struct kvm_irq_routing_table *); |
821 | int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args); | 830 | int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args); |
@@ -824,7 +833,7 @@ int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args); | |||
824 | 833 | ||
825 | static inline void kvm_eventfd_init(struct kvm *kvm) {} | 834 | static inline void kvm_eventfd_init(struct kvm *kvm) {} |
826 | 835 | ||
827 | static inline int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags) | 836 | static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args) |
828 | { | 837 | { |
829 | return -EINVAL; | 838 | return -EINVAL; |
830 | } | 839 | } |
diff --git a/include/linux/leds.h b/include/linux/leds.h index 39eee41d8c6f..3aade1d8f410 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h | |||
@@ -38,6 +38,9 @@ struct led_classdev { | |||
38 | #define LED_SUSPENDED (1 << 0) | 38 | #define LED_SUSPENDED (1 << 0) |
39 | /* Upper 16 bits reflect control information */ | 39 | /* Upper 16 bits reflect control information */ |
40 | #define LED_CORE_SUSPENDRESUME (1 << 16) | 40 | #define LED_CORE_SUSPENDRESUME (1 << 16) |
41 | #define LED_BLINK_ONESHOT (1 << 17) | ||
42 | #define LED_BLINK_ONESHOT_STOP (1 << 18) | ||
43 | #define LED_BLINK_INVERT (1 << 19) | ||
41 | 44 | ||
42 | /* Set LED brightness level */ | 45 | /* Set LED brightness level */ |
43 | /* Must not sleep, use a workqueue if needed */ | 46 | /* Must not sleep, use a workqueue if needed */ |
@@ -103,7 +106,25 @@ extern void led_blink_set(struct led_classdev *led_cdev, | |||
103 | unsigned long *delay_on, | 106 | unsigned long *delay_on, |
104 | unsigned long *delay_off); | 107 | unsigned long *delay_off); |
105 | /** | 108 | /** |
106 | * led_brightness_set - set LED brightness | 109 | * led_blink_set_oneshot - do a oneshot software blink |
110 | * @led_cdev: the LED to start blinking | ||
111 | * @delay_on: the time it should be on (in ms) | ||
112 | * @delay_off: the time it should ble off (in ms) | ||
113 | * @invert: blink off, then on, leaving the led on | ||
114 | * | ||
115 | * This function makes the LED blink one time for delay_on + | ||
116 | * delay_off time, ignoring the request if another one-shot | ||
117 | * blink is already in progress. | ||
118 | * | ||
119 | * If invert is set, led blinks for delay_off first, then for | ||
120 | * delay_on and leave the led on after the on-off cycle. | ||
121 | */ | ||
122 | extern void led_blink_set_oneshot(struct led_classdev *led_cdev, | ||
123 | unsigned long *delay_on, | ||
124 | unsigned long *delay_off, | ||
125 | int invert); | ||
126 | /** | ||
127 | * led_set_brightness - set LED brightness | ||
107 | * @led_cdev: the LED to set | 128 | * @led_cdev: the LED to set |
108 | * @brightness: the brightness to set it to | 129 | * @brightness: the brightness to set it to |
109 | * | 130 | * |
@@ -111,7 +132,7 @@ extern void led_blink_set(struct led_classdev *led_cdev, | |||
111 | * software blink timer that implements blinking when the | 132 | * software blink timer that implements blinking when the |
112 | * hardware doesn't. | 133 | * hardware doesn't. |
113 | */ | 134 | */ |
114 | extern void led_brightness_set(struct led_classdev *led_cdev, | 135 | extern void led_set_brightness(struct led_classdev *led_cdev, |
115 | enum led_brightness brightness); | 136 | enum led_brightness brightness); |
116 | 137 | ||
117 | /* | 138 | /* |
@@ -150,6 +171,10 @@ extern void led_trigger_event(struct led_trigger *trigger, | |||
150 | extern void led_trigger_blink(struct led_trigger *trigger, | 171 | extern void led_trigger_blink(struct led_trigger *trigger, |
151 | unsigned long *delay_on, | 172 | unsigned long *delay_on, |
152 | unsigned long *delay_off); | 173 | unsigned long *delay_off); |
174 | extern void led_trigger_blink_oneshot(struct led_trigger *trigger, | ||
175 | unsigned long *delay_on, | ||
176 | unsigned long *delay_off, | ||
177 | int invert); | ||
153 | 178 | ||
154 | #else | 179 | #else |
155 | 180 | ||
diff --git a/include/linux/libata.h b/include/linux/libata.h index 6e887c742a27..64f90e17e51d 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -161,6 +161,8 @@ enum { | |||
161 | ATA_DFLAG_DETACH = (1 << 24), | 161 | ATA_DFLAG_DETACH = (1 << 24), |
162 | ATA_DFLAG_DETACHED = (1 << 25), | 162 | ATA_DFLAG_DETACHED = (1 << 25), |
163 | 163 | ||
164 | ATA_DFLAG_DA = (1 << 26), /* device supports Device Attention */ | ||
165 | |||
164 | ATA_DEV_UNKNOWN = 0, /* unknown device */ | 166 | ATA_DEV_UNKNOWN = 0, /* unknown device */ |
165 | ATA_DEV_ATA = 1, /* ATA device */ | 167 | ATA_DEV_ATA = 1, /* ATA device */ |
166 | ATA_DEV_ATA_UNSUP = 2, /* ATA device (unsupported) */ | 168 | ATA_DEV_ATA_UNSUP = 2, /* ATA device (unsupported) */ |
@@ -545,9 +547,6 @@ struct ata_host { | |||
545 | struct mutex eh_mutex; | 547 | struct mutex eh_mutex; |
546 | struct task_struct *eh_owner; | 548 | struct task_struct *eh_owner; |
547 | 549 | ||
548 | #ifdef CONFIG_ATA_ACPI | ||
549 | acpi_handle acpi_handle; | ||
550 | #endif | ||
551 | struct ata_port *simplex_claimed; /* channel owning the DMA */ | 550 | struct ata_port *simplex_claimed; /* channel owning the DMA */ |
552 | struct ata_port *ports[0]; | 551 | struct ata_port *ports[0]; |
553 | }; | 552 | }; |
@@ -615,7 +614,6 @@ struct ata_device { | |||
615 | struct scsi_device *sdev; /* attached SCSI device */ | 614 | struct scsi_device *sdev; /* attached SCSI device */ |
616 | void *private_data; | 615 | void *private_data; |
617 | #ifdef CONFIG_ATA_ACPI | 616 | #ifdef CONFIG_ATA_ACPI |
618 | acpi_handle acpi_handle; | ||
619 | union acpi_object *gtf_cache; | 617 | union acpi_object *gtf_cache; |
620 | unsigned int gtf_filter; | 618 | unsigned int gtf_filter; |
621 | #endif | 619 | #endif |
@@ -797,7 +795,6 @@ struct ata_port { | |||
797 | void *private_data; | 795 | void *private_data; |
798 | 796 | ||
799 | #ifdef CONFIG_ATA_ACPI | 797 | #ifdef CONFIG_ATA_ACPI |
800 | acpi_handle acpi_handle; | ||
801 | struct ata_acpi_gtm __acpi_init_gtm; /* use ata_acpi_init_gtm() */ | 798 | struct ata_acpi_gtm __acpi_init_gtm; /* use ata_acpi_init_gtm() */ |
802 | #endif | 799 | #endif |
803 | /* owned by EH */ | 800 | /* owned by EH */ |
@@ -846,6 +843,8 @@ struct ata_port_operations { | |||
846 | void (*error_handler)(struct ata_port *ap); | 843 | void (*error_handler)(struct ata_port *ap); |
847 | void (*lost_interrupt)(struct ata_port *ap); | 844 | void (*lost_interrupt)(struct ata_port *ap); |
848 | void (*post_internal_cmd)(struct ata_queued_cmd *qc); | 845 | void (*post_internal_cmd)(struct ata_queued_cmd *qc); |
846 | void (*sched_eh)(struct ata_port *ap); | ||
847 | void (*end_eh)(struct ata_port *ap); | ||
849 | 848 | ||
850 | /* | 849 | /* |
851 | * Optional features | 850 | * Optional features |
@@ -1114,6 +1113,8 @@ int ata_acpi_stm(struct ata_port *ap, const struct ata_acpi_gtm *stm); | |||
1114 | int ata_acpi_gtm(struct ata_port *ap, struct ata_acpi_gtm *stm); | 1113 | int ata_acpi_gtm(struct ata_port *ap, struct ata_acpi_gtm *stm); |
1115 | unsigned long ata_acpi_gtm_xfermask(struct ata_device *dev, | 1114 | unsigned long ata_acpi_gtm_xfermask(struct ata_device *dev, |
1116 | const struct ata_acpi_gtm *gtm); | 1115 | const struct ata_acpi_gtm *gtm); |
1116 | acpi_handle ata_ap_acpi_handle(struct ata_port *ap); | ||
1117 | acpi_handle ata_dev_acpi_handle(struct ata_device *dev); | ||
1117 | int ata_acpi_cbl_80wire(struct ata_port *ap, const struct ata_acpi_gtm *gtm); | 1118 | int ata_acpi_cbl_80wire(struct ata_port *ap, const struct ata_acpi_gtm *gtm); |
1118 | #else | 1119 | #else |
1119 | static inline const struct ata_acpi_gtm *ata_acpi_init_gtm(struct ata_port *ap) | 1120 | static inline const struct ata_acpi_gtm *ata_acpi_init_gtm(struct ata_port *ap) |
@@ -1167,6 +1168,8 @@ extern void ata_do_eh(struct ata_port *ap, ata_prereset_fn_t prereset, | |||
1167 | ata_reset_fn_t softreset, ata_reset_fn_t hardreset, | 1168 | ata_reset_fn_t softreset, ata_reset_fn_t hardreset, |
1168 | ata_postreset_fn_t postreset); | 1169 | ata_postreset_fn_t postreset); |
1169 | extern void ata_std_error_handler(struct ata_port *ap); | 1170 | extern void ata_std_error_handler(struct ata_port *ap); |
1171 | extern void ata_std_sched_eh(struct ata_port *ap); | ||
1172 | extern void ata_std_end_eh(struct ata_port *ap); | ||
1170 | extern int ata_link_nr_enabled(struct ata_link *link); | 1173 | extern int ata_link_nr_enabled(struct ata_link *link); |
1171 | 1174 | ||
1172 | /* | 1175 | /* |
diff --git a/include/linux/libfdt.h b/include/linux/libfdt.h new file mode 100644 index 000000000000..4c0306c69b4e --- /dev/null +++ b/include/linux/libfdt.h | |||
@@ -0,0 +1,8 @@ | |||
1 | #ifndef _INCLUDE_LIBFDT_H_ | ||
2 | #define _INCLUDE_LIBFDT_H_ | ||
3 | |||
4 | #include <linux/libfdt_env.h> | ||
5 | #include "../../scripts/dtc/libfdt/fdt.h" | ||
6 | #include "../../scripts/dtc/libfdt/libfdt.h" | ||
7 | |||
8 | #endif /* _INCLUDE_LIBFDT_H_ */ | ||
diff --git a/include/linux/libfdt_env.h b/include/linux/libfdt_env.h new file mode 100644 index 000000000000..01508c7b8c81 --- /dev/null +++ b/include/linux/libfdt_env.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #ifndef _LIBFDT_ENV_H | ||
2 | #define _LIBFDT_ENV_H | ||
3 | |||
4 | #include <linux/string.h> | ||
5 | |||
6 | #include <asm/byteorder.h> | ||
7 | |||
8 | #define fdt32_to_cpu(x) be32_to_cpu(x) | ||
9 | #define cpu_to_fdt32(x) cpu_to_be32(x) | ||
10 | #define fdt64_to_cpu(x) be64_to_cpu(x) | ||
11 | #define cpu_to_fdt64(x) cpu_to_be64(x) | ||
12 | |||
13 | #endif /* _LIBFDT_ENV_H */ | ||
diff --git a/include/linux/mdio.h b/include/linux/mdio.h index dfb947959ec9..7cccafe50e7b 100644 --- a/include/linux/mdio.h +++ b/include/linux/mdio.h | |||
@@ -43,7 +43,11 @@ | |||
43 | #define MDIO_PKGID2 15 | 43 | #define MDIO_PKGID2 15 |
44 | #define MDIO_AN_ADVERTISE 16 /* AN advertising (base page) */ | 44 | #define MDIO_AN_ADVERTISE 16 /* AN advertising (base page) */ |
45 | #define MDIO_AN_LPA 19 /* AN LP abilities (base page) */ | 45 | #define MDIO_AN_LPA 19 /* AN LP abilities (base page) */ |
46 | #define MDIO_PCS_EEE_ABLE 20 /* EEE Capability register */ | ||
47 | #define MDIO_PCS_EEE_WK_ERR 22 /* EEE wake error counter */ | ||
46 | #define MDIO_PHYXS_LNSTAT 24 /* PHY XGXS lane state */ | 48 | #define MDIO_PHYXS_LNSTAT 24 /* PHY XGXS lane state */ |
49 | #define MDIO_AN_EEE_ADV 60 /* EEE advertisement */ | ||
50 | #define MDIO_AN_EEE_LPABLE 61 /* EEE link partner ability */ | ||
47 | 51 | ||
48 | /* Media-dependent registers. */ | 52 | /* Media-dependent registers. */ |
49 | #define MDIO_PMA_10GBT_SWAPPOL 130 /* 10GBASE-T pair swap & polarity */ | 53 | #define MDIO_PMA_10GBT_SWAPPOL 130 /* 10GBASE-T pair swap & polarity */ |
@@ -56,7 +60,6 @@ | |||
56 | #define MDIO_PCS_10GBRT_STAT2 33 /* 10GBASE-R/-T PCS status 2 */ | 60 | #define MDIO_PCS_10GBRT_STAT2 33 /* 10GBASE-R/-T PCS status 2 */ |
57 | #define MDIO_AN_10GBT_CTRL 32 /* 10GBASE-T auto-negotiation control */ | 61 | #define MDIO_AN_10GBT_CTRL 32 /* 10GBASE-T auto-negotiation control */ |
58 | #define MDIO_AN_10GBT_STAT 33 /* 10GBASE-T auto-negotiation status */ | 62 | #define MDIO_AN_10GBT_STAT 33 /* 10GBASE-T auto-negotiation status */ |
59 | #define MDIO_AN_EEE_ADV 60 /* EEE advertisement */ | ||
60 | 63 | ||
61 | /* LASI (Link Alarm Status Interrupt) registers, defined by XENPAK MSA. */ | 64 | /* LASI (Link Alarm Status Interrupt) registers, defined by XENPAK MSA. */ |
62 | #define MDIO_PMA_LASI_RXCTRL 0x9000 /* RX_ALARM control */ | 65 | #define MDIO_PMA_LASI_RXCTRL 0x9000 /* RX_ALARM control */ |
@@ -82,6 +85,7 @@ | |||
82 | #define MDIO_AN_CTRL1_RESTART BMCR_ANRESTART | 85 | #define MDIO_AN_CTRL1_RESTART BMCR_ANRESTART |
83 | #define MDIO_AN_CTRL1_ENABLE BMCR_ANENABLE | 86 | #define MDIO_AN_CTRL1_ENABLE BMCR_ANENABLE |
84 | #define MDIO_AN_CTRL1_XNP 0x2000 /* Enable extended next page */ | 87 | #define MDIO_AN_CTRL1_XNP 0x2000 /* Enable extended next page */ |
88 | #define MDIO_PCS_CTRL1_CLKSTOP_EN 0x400 /* Stop the clock during LPI */ | ||
85 | 89 | ||
86 | /* 10 Gb/s */ | 90 | /* 10 Gb/s */ |
87 | #define MDIO_CTRL1_SPEED10G (MDIO_CTRL1_SPEEDSELEXT | 0x00) | 91 | #define MDIO_CTRL1_SPEED10G (MDIO_CTRL1_SPEEDSELEXT | 0x00) |
@@ -237,9 +241,25 @@ | |||
237 | #define MDIO_AN_10GBT_STAT_MS 0x4000 /* Master/slave config */ | 241 | #define MDIO_AN_10GBT_STAT_MS 0x4000 /* Master/slave config */ |
238 | #define MDIO_AN_10GBT_STAT_MSFLT 0x8000 /* Master/slave config fault */ | 242 | #define MDIO_AN_10GBT_STAT_MSFLT 0x8000 /* Master/slave config fault */ |
239 | 243 | ||
240 | /* AN EEE Advertisement register. */ | 244 | /* EEE Supported/Advertisement/LP Advertisement registers. |
241 | #define MDIO_AN_EEE_ADV_100TX 0x0002 /* Advertise 100TX EEE cap */ | 245 | * |
242 | #define MDIO_AN_EEE_ADV_1000T 0x0004 /* Advertise 1000T EEE cap */ | 246 | * EEE capability Register (3.20), Advertisement (7.60) and |
247 | * Link partner ability (7.61) registers have and can use the same identical | ||
248 | * bit masks. | ||
249 | */ | ||
250 | #define MDIO_AN_EEE_ADV_100TX 0x0002 /* Advertise 100TX EEE cap */ | ||
251 | #define MDIO_AN_EEE_ADV_1000T 0x0004 /* Advertise 1000T EEE cap */ | ||
252 | /* Note: the two defines above can be potentially used by the user-land | ||
253 | * and cannot remove them now. | ||
254 | * So, we define the new generic MDIO_EEE_100TX and MDIO_EEE_1000T macros | ||
255 | * using the previous ones (that can be considered obsolete). | ||
256 | */ | ||
257 | #define MDIO_EEE_100TX MDIO_AN_EEE_ADV_100TX /* 100TX EEE cap */ | ||
258 | #define MDIO_EEE_1000T MDIO_AN_EEE_ADV_1000T /* 1000T EEE cap */ | ||
259 | #define MDIO_EEE_10GT 0x0008 /* 10GT EEE cap */ | ||
260 | #define MDIO_EEE_1000KX 0x0010 /* 1000KX EEE cap */ | ||
261 | #define MDIO_EEE_10GKX4 0x0020 /* 10G KX4 EEE cap */ | ||
262 | #define MDIO_EEE_10GKR 0x0040 /* 10G KR EEE cap */ | ||
243 | 263 | ||
244 | /* LASI RX_ALARM control/status registers. */ | 264 | /* LASI RX_ALARM control/status registers. */ |
245 | #define MDIO_PMA_LASI_RX_PHYXSLFLT 0x0001 /* PHY XS RX local fault */ | 265 | #define MDIO_PMA_LASI_RX_PHYXSLFLT 0x0001 /* PHY XS RX local fault */ |
diff --git a/include/linux/memblock.h b/include/linux/memblock.h index a6bb10235148..19dc455b4f3d 100644 --- a/include/linux/memblock.h +++ b/include/linux/memblock.h | |||
@@ -50,9 +50,7 @@ phys_addr_t memblock_find_in_range_node(phys_addr_t start, phys_addr_t end, | |||
50 | phys_addr_t size, phys_addr_t align, int nid); | 50 | phys_addr_t size, phys_addr_t align, int nid); |
51 | phys_addr_t memblock_find_in_range(phys_addr_t start, phys_addr_t end, | 51 | phys_addr_t memblock_find_in_range(phys_addr_t start, phys_addr_t end, |
52 | phys_addr_t size, phys_addr_t align); | 52 | phys_addr_t size, phys_addr_t align); |
53 | int memblock_free_reserved_regions(void); | 53 | phys_addr_t get_allocated_memblock_reserved_regions_info(phys_addr_t *addr); |
54 | int memblock_reserve_reserved_regions(void); | ||
55 | |||
56 | void memblock_allow_resize(void); | 54 | void memblock_allow_resize(void); |
57 | int memblock_add_node(phys_addr_t base, phys_addr_t size, int nid); | 55 | int memblock_add_node(phys_addr_t base, phys_addr_t size, int nid); |
58 | int memblock_add(phys_addr_t base, phys_addr_t size); | 56 | int memblock_add(phys_addr_t base, phys_addr_t size); |
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 4aa42732e47f..95b738c7abff 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h | |||
@@ -215,7 +215,7 @@ extern struct zonelist *huge_zonelist(struct vm_area_struct *vma, | |||
215 | extern bool init_nodemask_of_mempolicy(nodemask_t *mask); | 215 | extern bool init_nodemask_of_mempolicy(nodemask_t *mask); |
216 | extern bool mempolicy_nodemask_intersects(struct task_struct *tsk, | 216 | extern bool mempolicy_nodemask_intersects(struct task_struct *tsk, |
217 | const nodemask_t *mask); | 217 | const nodemask_t *mask); |
218 | extern unsigned slab_node(struct mempolicy *policy); | 218 | extern unsigned slab_node(void); |
219 | 219 | ||
220 | extern enum zone_type policy_zone; | 220 | extern enum zone_type policy_zone; |
221 | 221 | ||
diff --git a/include/linux/mfd/88pm80x.h b/include/linux/mfd/88pm80x.h new file mode 100644 index 000000000000..a0ca0dca1244 --- /dev/null +++ b/include/linux/mfd/88pm80x.h | |||
@@ -0,0 +1,369 @@ | |||
1 | /* | ||
2 | * Marvell 88PM80x Interface | ||
3 | * | ||
4 | * Copyright (C) 2012 Marvell International Ltd. | ||
5 | * Qiao Zhou <zhouqiao@marvell.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #ifndef __LINUX_MFD_88PM80X_H | ||
13 | #define __LINUX_MFD_88PM80X_H | ||
14 | |||
15 | #include <linux/platform_device.h> | ||
16 | #include <linux/interrupt.h> | ||
17 | #include <linux/regmap.h> | ||
18 | #include <linux/atomic.h> | ||
19 | |||
20 | #define PM80X_VERSION_MASK (0xFF) /* 80X chip ID mask */ | ||
21 | enum { | ||
22 | CHIP_INVALID = 0, | ||
23 | CHIP_PM800, | ||
24 | CHIP_PM805, | ||
25 | CHIP_MAX, | ||
26 | }; | ||
27 | |||
28 | enum { | ||
29 | PM800_ID_BUCK1 = 0, | ||
30 | PM800_ID_BUCK2, | ||
31 | PM800_ID_BUCK3, | ||
32 | PM800_ID_BUCK4, | ||
33 | PM800_ID_BUCK5, | ||
34 | |||
35 | PM800_ID_LDO1, | ||
36 | PM800_ID_LDO2, | ||
37 | PM800_ID_LDO3, | ||
38 | PM800_ID_LDO4, | ||
39 | PM800_ID_LDO5, | ||
40 | PM800_ID_LDO6, | ||
41 | PM800_ID_LDO7, | ||
42 | PM800_ID_LDO8, | ||
43 | PM800_ID_LDO9, | ||
44 | PM800_ID_LDO10, | ||
45 | PM800_ID_LDO11, | ||
46 | PM800_ID_LDO12, | ||
47 | PM800_ID_LDO13, | ||
48 | PM800_ID_LDO14, | ||
49 | PM800_ID_LDO15, | ||
50 | PM800_ID_LDO16, | ||
51 | PM800_ID_LDO17, | ||
52 | PM800_ID_LDO18, | ||
53 | PM800_ID_LDO19, | ||
54 | |||
55 | PM800_ID_RG_MAX, | ||
56 | }; | ||
57 | #define PM800_MAX_REGULATOR PM800_ID_RG_MAX /* 5 Bucks, 19 LDOs */ | ||
58 | #define PM800_NUM_BUCK (5) /*5 Bucks */ | ||
59 | #define PM800_NUM_LDO (19) /*19 Bucks */ | ||
60 | |||
61 | /* page 0 basic: slave adder 0x60 */ | ||
62 | |||
63 | #define PM800_STATUS_1 (0x01) | ||
64 | #define PM800_ONKEY_STS1 (1 << 0) | ||
65 | #define PM800_EXTON_STS1 (1 << 1) | ||
66 | #define PM800_CHG_STS1 (1 << 2) | ||
67 | #define PM800_BAT_STS1 (1 << 3) | ||
68 | #define PM800_VBUS_STS1 (1 << 4) | ||
69 | #define PM800_LDO_PGOOD_STS1 (1 << 5) | ||
70 | #define PM800_BUCK_PGOOD_STS1 (1 << 6) | ||
71 | |||
72 | #define PM800_STATUS_2 (0x02) | ||
73 | #define PM800_RTC_ALARM_STS2 (1 << 0) | ||
74 | |||
75 | /* Wakeup Registers */ | ||
76 | #define PM800_WAKEUP1 (0x0D) | ||
77 | |||
78 | #define PM800_WAKEUP2 (0x0E) | ||
79 | #define PM800_WAKEUP2_INV_INT (1 << 0) | ||
80 | #define PM800_WAKEUP2_INT_CLEAR (1 << 1) | ||
81 | #define PM800_WAKEUP2_INT_MASK (1 << 2) | ||
82 | |||
83 | #define PM800_POWER_UP_LOG (0x10) | ||
84 | |||
85 | /* Referance and low power registers */ | ||
86 | #define PM800_LOW_POWER1 (0x20) | ||
87 | #define PM800_LOW_POWER2 (0x21) | ||
88 | #define PM800_LOW_POWER_CONFIG3 (0x22) | ||
89 | #define PM800_LOW_POWER_CONFIG4 (0x23) | ||
90 | |||
91 | /* GPIO register */ | ||
92 | #define PM800_GPIO_0_1_CNTRL (0x30) | ||
93 | #define PM800_GPIO0_VAL (1 << 0) | ||
94 | #define PM800_GPIO0_GPIO_MODE(x) (x << 1) | ||
95 | #define PM800_GPIO1_VAL (1 << 4) | ||
96 | #define PM800_GPIO1_GPIO_MODE(x) (x << 5) | ||
97 | |||
98 | #define PM800_GPIO_2_3_CNTRL (0x31) | ||
99 | #define PM800_GPIO2_VAL (1 << 0) | ||
100 | #define PM800_GPIO2_GPIO_MODE(x) (x << 1) | ||
101 | #define PM800_GPIO3_VAL (1 << 4) | ||
102 | #define PM800_GPIO3_GPIO_MODE(x) (x << 5) | ||
103 | #define PM800_GPIO3_MODE_MASK 0x1F | ||
104 | #define PM800_GPIO3_HEADSET_MODE PM800_GPIO3_GPIO_MODE(6) | ||
105 | |||
106 | #define PM800_GPIO_4_CNTRL (0x32) | ||
107 | #define PM800_GPIO4_VAL (1 << 0) | ||
108 | #define PM800_GPIO4_GPIO_MODE(x) (x << 1) | ||
109 | |||
110 | #define PM800_HEADSET_CNTRL (0x38) | ||
111 | #define PM800_HEADSET_DET_EN (1 << 7) | ||
112 | #define PM800_HSDET_SLP (1 << 1) | ||
113 | /* PWM register */ | ||
114 | #define PM800_PWM1 (0x40) | ||
115 | #define PM800_PWM2 (0x41) | ||
116 | #define PM800_PWM3 (0x42) | ||
117 | #define PM800_PWM4 (0x43) | ||
118 | |||
119 | /* RTC Registers */ | ||
120 | #define PM800_RTC_CONTROL (0xD0) | ||
121 | #define PM800_RTC_MISC1 (0xE1) | ||
122 | #define PM800_RTC_MISC2 (0xE2) | ||
123 | #define PM800_RTC_MISC3 (0xE3) | ||
124 | #define PM800_RTC_MISC4 (0xE4) | ||
125 | #define PM800_RTC_MISC5 (0xE7) | ||
126 | /* bit definitions of RTC Register 1 (0xD0) */ | ||
127 | #define PM800_ALARM1_EN (1 << 0) | ||
128 | #define PM800_ALARM_WAKEUP (1 << 4) | ||
129 | #define PM800_ALARM (1 << 5) | ||
130 | #define PM800_RTC1_USE_XO (1 << 7) | ||
131 | |||
132 | /* Regulator Control Registers: BUCK1,BUCK5,LDO1 have DVC */ | ||
133 | |||
134 | /* buck registers */ | ||
135 | #define PM800_SLEEP_BUCK1 (0x30) | ||
136 | |||
137 | /* BUCK Sleep Mode Register 1: BUCK[1..4] */ | ||
138 | #define PM800_BUCK_SLP1 (0x5A) | ||
139 | #define PM800_BUCK1_SLP1_SHIFT 0 | ||
140 | #define PM800_BUCK1_SLP1_MASK (0x3 << PM800_BUCK1_SLP1_SHIFT) | ||
141 | |||
142 | /* page 2 GPADC: slave adder 0x02 */ | ||
143 | #define PM800_GPADC_MEAS_EN1 (0x01) | ||
144 | #define PM800_MEAS_EN1_VBAT (1 << 2) | ||
145 | #define PM800_GPADC_MEAS_EN2 (0x02) | ||
146 | #define PM800_MEAS_EN2_RFTMP (1 << 0) | ||
147 | #define PM800_MEAS_GP0_EN (1 << 2) | ||
148 | #define PM800_MEAS_GP1_EN (1 << 3) | ||
149 | #define PM800_MEAS_GP2_EN (1 << 4) | ||
150 | #define PM800_MEAS_GP3_EN (1 << 5) | ||
151 | #define PM800_MEAS_GP4_EN (1 << 6) | ||
152 | |||
153 | #define PM800_GPADC_MISC_CONFIG1 (0x05) | ||
154 | #define PM800_GPADC_MISC_CONFIG2 (0x06) | ||
155 | #define PM800_GPADC_MISC_GPFSM_EN (1 << 0) | ||
156 | #define PM800_GPADC_SLOW_MODE(x) (x << 3) | ||
157 | |||
158 | #define PM800_GPADC_MISC_CONFIG3 (0x09) | ||
159 | #define PM800_GPADC_MISC_CONFIG4 (0x0A) | ||
160 | |||
161 | #define PM800_GPADC_PREBIAS1 (0x0F) | ||
162 | #define PM800_GPADC0_GP_PREBIAS_TIME(x) (x << 0) | ||
163 | #define PM800_GPADC_PREBIAS2 (0x10) | ||
164 | |||
165 | #define PM800_GP_BIAS_ENA1 (0x14) | ||
166 | #define PM800_GPADC_GP_BIAS_EN0 (1 << 0) | ||
167 | #define PM800_GPADC_GP_BIAS_EN1 (1 << 1) | ||
168 | #define PM800_GPADC_GP_BIAS_EN2 (1 << 2) | ||
169 | #define PM800_GPADC_GP_BIAS_EN3 (1 << 3) | ||
170 | |||
171 | #define PM800_GP_BIAS_OUT1 (0x15) | ||
172 | #define PM800_BIAS_OUT_GP0 (1 << 0) | ||
173 | #define PM800_BIAS_OUT_GP1 (1 << 1) | ||
174 | #define PM800_BIAS_OUT_GP2 (1 << 2) | ||
175 | #define PM800_BIAS_OUT_GP3 (1 << 3) | ||
176 | |||
177 | #define PM800_GPADC0_LOW_TH 0x20 | ||
178 | #define PM800_GPADC1_LOW_TH 0x21 | ||
179 | #define PM800_GPADC2_LOW_TH 0x22 | ||
180 | #define PM800_GPADC3_LOW_TH 0x23 | ||
181 | #define PM800_GPADC4_LOW_TH 0x24 | ||
182 | |||
183 | #define PM800_GPADC0_UPP_TH 0x30 | ||
184 | #define PM800_GPADC1_UPP_TH 0x31 | ||
185 | #define PM800_GPADC2_UPP_TH 0x32 | ||
186 | #define PM800_GPADC3_UPP_TH 0x33 | ||
187 | #define PM800_GPADC4_UPP_TH 0x34 | ||
188 | |||
189 | #define PM800_VBBAT_MEAS1 0x40 | ||
190 | #define PM800_VBBAT_MEAS2 0x41 | ||
191 | #define PM800_VBAT_MEAS1 0x42 | ||
192 | #define PM800_VBAT_MEAS2 0x43 | ||
193 | #define PM800_VSYS_MEAS1 0x44 | ||
194 | #define PM800_VSYS_MEAS2 0x45 | ||
195 | #define PM800_VCHG_MEAS1 0x46 | ||
196 | #define PM800_VCHG_MEAS2 0x47 | ||
197 | #define PM800_TINT_MEAS1 0x50 | ||
198 | #define PM800_TINT_MEAS2 0x51 | ||
199 | #define PM800_PMOD_MEAS1 0x52 | ||
200 | #define PM800_PMOD_MEAS2 0x53 | ||
201 | |||
202 | #define PM800_GPADC0_MEAS1 0x54 | ||
203 | #define PM800_GPADC0_MEAS2 0x55 | ||
204 | #define PM800_GPADC1_MEAS1 0x56 | ||
205 | #define PM800_GPADC1_MEAS2 0x57 | ||
206 | #define PM800_GPADC2_MEAS1 0x58 | ||
207 | #define PM800_GPADC2_MEAS2 0x59 | ||
208 | #define PM800_GPADC3_MEAS1 0x5A | ||
209 | #define PM800_GPADC3_MEAS2 0x5B | ||
210 | #define PM800_GPADC4_MEAS1 0x5C | ||
211 | #define PM800_GPADC4_MEAS2 0x5D | ||
212 | |||
213 | #define PM800_GPADC4_AVG1 0xA8 | ||
214 | #define PM800_GPADC4_AVG2 0xA9 | ||
215 | |||
216 | /* 88PM805 Registers */ | ||
217 | #define PM805_MAIN_POWERUP (0x01) | ||
218 | #define PM805_INT_STATUS0 (0x02) /* for ena/dis all interrupts */ | ||
219 | |||
220 | #define PM805_STATUS0_INT_CLEAR (1 << 0) | ||
221 | #define PM805_STATUS0_INV_INT (1 << 1) | ||
222 | #define PM800_STATUS0_INT_MASK (1 << 2) | ||
223 | |||
224 | #define PM805_INT_STATUS1 (0x03) | ||
225 | |||
226 | #define PM805_INT1_HP1_SHRT (1 << 0) | ||
227 | #define PM805_INT1_HP2_SHRT (1 << 1) | ||
228 | #define PM805_INT1_MIC_CONFLICT (1 << 2) | ||
229 | #define PM805_INT1_CLIP_FAULT (1 << 3) | ||
230 | #define PM805_INT1_LDO_OFF (1 << 4) | ||
231 | #define PM805_INT1_SRC_DPLL_LOCK (1 << 5) | ||
232 | |||
233 | #define PM805_INT_STATUS2 (0x04) | ||
234 | |||
235 | #define PM805_INT2_MIC_DET (1 << 0) | ||
236 | #define PM805_INT2_SHRT_BTN_DET (1 << 1) | ||
237 | #define PM805_INT2_VOLM_BTN_DET (1 << 2) | ||
238 | #define PM805_INT2_VOLP_BTN_DET (1 << 3) | ||
239 | #define PM805_INT2_RAW_PLL_FAULT (1 << 4) | ||
240 | #define PM805_INT2_FINE_PLL_FAULT (1 << 5) | ||
241 | |||
242 | #define PM805_INT_MASK1 (0x05) | ||
243 | #define PM805_INT_MASK2 (0x06) | ||
244 | #define PM805_SHRT_BTN_DET (1 << 1) | ||
245 | |||
246 | /* number of status and int reg in a row */ | ||
247 | #define PM805_INT_REG_NUM (2) | ||
248 | |||
249 | #define PM805_MIC_DET1 (0x07) | ||
250 | #define PM805_MIC_DET_EN_MIC_DET (1 << 0) | ||
251 | #define PM805_MIC_DET2 (0x08) | ||
252 | #define PM805_MIC_DET_STATUS1 (0x09) | ||
253 | |||
254 | #define PM805_MIC_DET_STATUS3 (0x0A) | ||
255 | #define PM805_AUTO_SEQ_STATUS1 (0x0B) | ||
256 | #define PM805_AUTO_SEQ_STATUS2 (0x0C) | ||
257 | |||
258 | #define PM805_ADC_SETTING1 (0x10) | ||
259 | #define PM805_ADC_SETTING2 (0x11) | ||
260 | #define PM805_ADC_SETTING3 (0x11) | ||
261 | #define PM805_ADC_GAIN1 (0x12) | ||
262 | #define PM805_ADC_GAIN2 (0x13) | ||
263 | #define PM805_DMIC_SETTING (0x15) | ||
264 | #define PM805_DWS_SETTING (0x16) | ||
265 | #define PM805_MIC_CONFLICT_STS (0x17) | ||
266 | |||
267 | #define PM805_PDM_SETTING1 (0x20) | ||
268 | #define PM805_PDM_SETTING2 (0x21) | ||
269 | #define PM805_PDM_SETTING3 (0x22) | ||
270 | #define PM805_PDM_CONTROL1 (0x23) | ||
271 | #define PM805_PDM_CONTROL2 (0x24) | ||
272 | #define PM805_PDM_CONTROL3 (0x25) | ||
273 | |||
274 | #define PM805_HEADPHONE_SETTING (0x26) | ||
275 | #define PM805_HEADPHONE_GAIN_A2A (0x27) | ||
276 | #define PM805_HEADPHONE_SHORT_STATE (0x28) | ||
277 | #define PM805_EARPHONE_SETTING (0x29) | ||
278 | #define PM805_AUTO_SEQ_SETTING (0x2A) | ||
279 | |||
280 | struct pm80x_rtc_pdata { | ||
281 | int vrtc; | ||
282 | int rtc_wakeup; | ||
283 | }; | ||
284 | |||
285 | struct pm80x_subchip { | ||
286 | struct i2c_client *power_page; /* chip client for power page */ | ||
287 | struct i2c_client *gpadc_page; /* chip client for gpadc page */ | ||
288 | struct regmap *regmap_power; | ||
289 | struct regmap *regmap_gpadc; | ||
290 | unsigned short power_page_addr; /* power page I2C address */ | ||
291 | unsigned short gpadc_page_addr; /* gpadc page I2C address */ | ||
292 | }; | ||
293 | |||
294 | struct pm80x_chip { | ||
295 | struct pm80x_subchip *subchip; | ||
296 | struct device *dev; | ||
297 | struct i2c_client *client; | ||
298 | struct i2c_client *companion; | ||
299 | struct regmap *regmap; | ||
300 | struct regmap_irq_chip *regmap_irq_chip; | ||
301 | struct regmap_irq_chip_data *irq_data; | ||
302 | unsigned char version; | ||
303 | int id; | ||
304 | int irq; | ||
305 | int irq_mode; | ||
306 | unsigned long wu_flag; | ||
307 | spinlock_t lock; | ||
308 | }; | ||
309 | |||
310 | struct pm80x_platform_data { | ||
311 | struct pm80x_rtc_pdata *rtc; | ||
312 | unsigned short power_page_addr; /* power page I2C address */ | ||
313 | unsigned short gpadc_page_addr; /* gpadc page I2C address */ | ||
314 | int irq_mode; /* Clear interrupt by read/write(0/1) */ | ||
315 | int batt_det; /* enable/disable */ | ||
316 | int (*plat_config)(struct pm80x_chip *chip, | ||
317 | struct pm80x_platform_data *pdata); | ||
318 | }; | ||
319 | |||
320 | extern const struct dev_pm_ops pm80x_pm_ops; | ||
321 | extern const struct regmap_config pm80x_regmap_config; | ||
322 | |||
323 | static inline int pm80x_request_irq(struct pm80x_chip *pm80x, int irq, | ||
324 | irq_handler_t handler, unsigned long flags, | ||
325 | const char *name, void *data) | ||
326 | { | ||
327 | if (!pm80x->irq_data) | ||
328 | return -EINVAL; | ||
329 | return request_threaded_irq(regmap_irq_get_virq(pm80x->irq_data, irq), | ||
330 | NULL, handler, flags, name, data); | ||
331 | } | ||
332 | |||
333 | static inline void pm80x_free_irq(struct pm80x_chip *pm80x, int irq, void *data) | ||
334 | { | ||
335 | if (!pm80x->irq_data) | ||
336 | return; | ||
337 | free_irq(regmap_irq_get_virq(pm80x->irq_data, irq), data); | ||
338 | } | ||
339 | |||
340 | #ifdef CONFIG_PM | ||
341 | static inline int pm80x_dev_suspend(struct device *dev) | ||
342 | { | ||
343 | struct platform_device *pdev = to_platform_device(dev); | ||
344 | struct pm80x_chip *chip = dev_get_drvdata(pdev->dev.parent); | ||
345 | int irq = platform_get_irq(pdev, 0); | ||
346 | |||
347 | if (device_may_wakeup(dev)) | ||
348 | set_bit((1 << irq), &chip->wu_flag); | ||
349 | |||
350 | return 0; | ||
351 | } | ||
352 | |||
353 | static inline int pm80x_dev_resume(struct device *dev) | ||
354 | { | ||
355 | struct platform_device *pdev = to_platform_device(dev); | ||
356 | struct pm80x_chip *chip = dev_get_drvdata(pdev->dev.parent); | ||
357 | int irq = platform_get_irq(pdev, 0); | ||
358 | |||
359 | if (device_may_wakeup(dev)) | ||
360 | clear_bit((1 << irq), &chip->wu_flag); | ||
361 | |||
362 | return 0; | ||
363 | } | ||
364 | #endif | ||
365 | |||
366 | extern int pm80x_init(struct i2c_client *client, | ||
367 | const struct i2c_device_id *id) __devinit; | ||
368 | extern int pm80x_deinit(struct i2c_client *client); | ||
369 | #endif /* __LINUX_MFD_88PM80X_H */ | ||
diff --git a/include/linux/mfd/88pm860x.h b/include/linux/mfd/88pm860x.h index 84d071ade1d8..7b24943779fa 100644 --- a/include/linux/mfd/88pm860x.h +++ b/include/linux/mfd/88pm860x.h | |||
@@ -136,6 +136,7 @@ enum { | |||
136 | PM8607_ID_LDO13, | 136 | PM8607_ID_LDO13, |
137 | PM8607_ID_LDO14, | 137 | PM8607_ID_LDO14, |
138 | PM8607_ID_LDO15, | 138 | PM8607_ID_LDO15, |
139 | PM8606_ID_PREG, | ||
139 | 140 | ||
140 | PM8607_ID_RG_MAX, | 141 | PM8607_ID_RG_MAX, |
141 | }; | 142 | }; |
diff --git a/include/linux/mfd/abx500/ab8500-codec.h b/include/linux/mfd/abx500/ab8500-codec.h new file mode 100644 index 000000000000..dc6529202cdd --- /dev/null +++ b/include/linux/mfd/abx500/ab8500-codec.h | |||
@@ -0,0 +1,52 @@ | |||
1 | /* | ||
2 | * Copyright (C) ST-Ericsson SA 2012 | ||
3 | * | ||
4 | * Author: Ola Lilja <ola.o.lilja@stericsson.com> | ||
5 | * for ST-Ericsson. | ||
6 | * | ||
7 | * License terms: | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License version 2 as published | ||
11 | * by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #ifndef AB8500_CORE_CODEC_H | ||
15 | #define AB8500_CORE_CODEC_H | ||
16 | |||
17 | /* Mic-types */ | ||
18 | enum amic_type { | ||
19 | AMIC_TYPE_SINGLE_ENDED, | ||
20 | AMIC_TYPE_DIFFERENTIAL | ||
21 | }; | ||
22 | |||
23 | /* Mic-biases */ | ||
24 | enum amic_micbias { | ||
25 | AMIC_MICBIAS_VAMIC1, | ||
26 | AMIC_MICBIAS_VAMIC2 | ||
27 | }; | ||
28 | |||
29 | /* Bias-voltage */ | ||
30 | enum ear_cm_voltage { | ||
31 | EAR_CMV_0_95V, | ||
32 | EAR_CMV_1_10V, | ||
33 | EAR_CMV_1_27V, | ||
34 | EAR_CMV_1_58V | ||
35 | }; | ||
36 | |||
37 | /* Analog microphone settings */ | ||
38 | struct amic_settings { | ||
39 | enum amic_type mic1_type; | ||
40 | enum amic_type mic2_type; | ||
41 | enum amic_micbias mic1a_micbias; | ||
42 | enum amic_micbias mic1b_micbias; | ||
43 | enum amic_micbias mic2_micbias; | ||
44 | }; | ||
45 | |||
46 | /* Platform data structure for the audio-parts of the AB8500 */ | ||
47 | struct ab8500_codec_platform_data { | ||
48 | struct amic_settings amics; | ||
49 | enum ear_cm_voltage ear_cmv; | ||
50 | }; | ||
51 | |||
52 | #endif | ||
diff --git a/include/linux/mfd/abx500/ab8500.h b/include/linux/mfd/abx500/ab8500.h index 91dd3ef63e99..3764cb6759e3 100644 --- a/include/linux/mfd/abx500/ab8500.h +++ b/include/linux/mfd/abx500/ab8500.h | |||
@@ -9,6 +9,7 @@ | |||
9 | 9 | ||
10 | #include <linux/atomic.h> | 10 | #include <linux/atomic.h> |
11 | #include <linux/mutex.h> | 11 | #include <linux/mutex.h> |
12 | #include <linux/irqdomain.h> | ||
12 | 13 | ||
13 | struct device; | 14 | struct device; |
14 | 15 | ||
@@ -227,6 +228,7 @@ enum ab8500_version { | |||
227 | * @irq_lock: genirq bus lock | 228 | * @irq_lock: genirq bus lock |
228 | * @transfer_ongoing: 0 if no transfer ongoing | 229 | * @transfer_ongoing: 0 if no transfer ongoing |
229 | * @irq: irq line | 230 | * @irq: irq line |
231 | * @irq_domain: irq domain | ||
230 | * @version: chip version id (e.g. ab8500 or ab9540) | 232 | * @version: chip version id (e.g. ab8500 or ab9540) |
231 | * @chip_id: chip revision id | 233 | * @chip_id: chip revision id |
232 | * @write: register write | 234 | * @write: register write |
@@ -247,6 +249,7 @@ struct ab8500 { | |||
247 | atomic_t transfer_ongoing; | 249 | atomic_t transfer_ongoing; |
248 | int irq_base; | 250 | int irq_base; |
249 | int irq; | 251 | int irq; |
252 | struct irq_domain *domain; | ||
250 | enum ab8500_version version; | 253 | enum ab8500_version version; |
251 | u8 chip_id; | 254 | u8 chip_id; |
252 | 255 | ||
@@ -266,6 +269,7 @@ struct ab8500 { | |||
266 | struct regulator_reg_init; | 269 | struct regulator_reg_init; |
267 | struct regulator_init_data; | 270 | struct regulator_init_data; |
268 | struct ab8500_gpio_platform_data; | 271 | struct ab8500_gpio_platform_data; |
272 | struct ab8500_codec_platform_data; | ||
269 | 273 | ||
270 | /** | 274 | /** |
271 | * struct ab8500_platform_data - AB8500 platform data | 275 | * struct ab8500_platform_data - AB8500 platform data |
@@ -284,6 +288,7 @@ struct ab8500_platform_data { | |||
284 | int num_regulator; | 288 | int num_regulator; |
285 | struct regulator_init_data *regulator; | 289 | struct regulator_init_data *regulator; |
286 | struct ab8500_gpio_platform_data *gpio; | 290 | struct ab8500_gpio_platform_data *gpio; |
291 | struct ab8500_codec_platform_data *codec; | ||
287 | }; | 292 | }; |
288 | 293 | ||
289 | extern int __devinit ab8500_init(struct ab8500 *ab8500, | 294 | extern int __devinit ab8500_init(struct ab8500 *ab8500, |
@@ -336,4 +341,6 @@ static inline int is_ab8500_2p0(struct ab8500 *ab) | |||
336 | return (is_ab8500(ab) && (ab->chip_id == AB8500_CUT2P0)); | 341 | return (is_ab8500(ab) && (ab->chip_id == AB8500_CUT2P0)); |
337 | } | 342 | } |
338 | 343 | ||
344 | int ab8500_irq_get_virq(struct ab8500 *ab8500, int irq); | ||
345 | |||
339 | #endif /* MFD_AB8500_H */ | 346 | #endif /* MFD_AB8500_H */ |
diff --git a/include/linux/mfd/arizona/core.h b/include/linux/mfd/arizona/core.h new file mode 100644 index 000000000000..dd231ac0bb1f --- /dev/null +++ b/include/linux/mfd/arizona/core.h | |||
@@ -0,0 +1,114 @@ | |||
1 | /* | ||
2 | * Arizona MFD internals | ||
3 | * | ||
4 | * Copyright 2012 Wolfson Microelectronics plc | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.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 version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | ||
12 | |||
13 | #ifndef _WM_ARIZONA_CORE_H | ||
14 | #define _WM_ARIZONA_CORE_H | ||
15 | |||
16 | #include <linux/interrupt.h> | ||
17 | #include <linux/regmap.h> | ||
18 | #include <linux/regulator/consumer.h> | ||
19 | #include <linux/mfd/arizona/pdata.h> | ||
20 | |||
21 | #define ARIZONA_MAX_CORE_SUPPLIES 3 | ||
22 | |||
23 | enum arizona_type { | ||
24 | WM5102 = 1, | ||
25 | WM5110 = 2, | ||
26 | }; | ||
27 | |||
28 | #define ARIZONA_IRQ_GP1 0 | ||
29 | #define ARIZONA_IRQ_GP2 1 | ||
30 | #define ARIZONA_IRQ_GP3 2 | ||
31 | #define ARIZONA_IRQ_GP4 3 | ||
32 | #define ARIZONA_IRQ_GP5_FALL 4 | ||
33 | #define ARIZONA_IRQ_GP5_RISE 5 | ||
34 | #define ARIZONA_IRQ_JD_FALL 6 | ||
35 | #define ARIZONA_IRQ_JD_RISE 7 | ||
36 | #define ARIZONA_IRQ_DSP1_RAM_RDY 8 | ||
37 | #define ARIZONA_IRQ_DSP2_RAM_RDY 9 | ||
38 | #define ARIZONA_IRQ_DSP3_RAM_RDY 10 | ||
39 | #define ARIZONA_IRQ_DSP4_RAM_RDY 11 | ||
40 | #define ARIZONA_IRQ_DSP_IRQ1 12 | ||
41 | #define ARIZONA_IRQ_DSP_IRQ2 13 | ||
42 | #define ARIZONA_IRQ_DSP_IRQ3 14 | ||
43 | #define ARIZONA_IRQ_DSP_IRQ4 15 | ||
44 | #define ARIZONA_IRQ_DSP_IRQ5 16 | ||
45 | #define ARIZONA_IRQ_DSP_IRQ6 17 | ||
46 | #define ARIZONA_IRQ_DSP_IRQ7 18 | ||
47 | #define ARIZONA_IRQ_DSP_IRQ8 19 | ||
48 | #define ARIZONA_IRQ_SPK_SHUTDOWN_WARN 20 | ||
49 | #define ARIZONA_IRQ_SPK_SHUTDOWN 21 | ||
50 | #define ARIZONA_IRQ_MICDET 22 | ||
51 | #define ARIZONA_IRQ_HPDET 23 | ||
52 | #define ARIZONA_IRQ_WSEQ_DONE 24 | ||
53 | #define ARIZONA_IRQ_DRC2_SIG_DET 25 | ||
54 | #define ARIZONA_IRQ_DRC1_SIG_DET 26 | ||
55 | #define ARIZONA_IRQ_ASRC2_LOCK 27 | ||
56 | #define ARIZONA_IRQ_ASRC1_LOCK 28 | ||
57 | #define ARIZONA_IRQ_UNDERCLOCKED 29 | ||
58 | #define ARIZONA_IRQ_OVERCLOCKED 30 | ||
59 | #define ARIZONA_IRQ_FLL2_LOCK 31 | ||
60 | #define ARIZONA_IRQ_FLL1_LOCK 32 | ||
61 | #define ARIZONA_IRQ_CLKGEN_ERR 33 | ||
62 | #define ARIZONA_IRQ_CLKGEN_ERR_ASYNC 34 | ||
63 | #define ARIZONA_IRQ_ASRC_CFG_ERR 35 | ||
64 | #define ARIZONA_IRQ_AIF3_ERR 36 | ||
65 | #define ARIZONA_IRQ_AIF2_ERR 37 | ||
66 | #define ARIZONA_IRQ_AIF1_ERR 38 | ||
67 | #define ARIZONA_IRQ_CTRLIF_ERR 39 | ||
68 | #define ARIZONA_IRQ_MIXER_DROPPED_SAMPLES 40 | ||
69 | #define ARIZONA_IRQ_ASYNC_CLK_ENA_LOW 41 | ||
70 | #define ARIZONA_IRQ_SYSCLK_ENA_LOW 42 | ||
71 | #define ARIZONA_IRQ_ISRC1_CFG_ERR 43 | ||
72 | #define ARIZONA_IRQ_ISRC2_CFG_ERR 44 | ||
73 | #define ARIZONA_IRQ_BOOT_DONE 45 | ||
74 | #define ARIZONA_IRQ_DCS_DAC_DONE 46 | ||
75 | #define ARIZONA_IRQ_DCS_HP_DONE 47 | ||
76 | #define ARIZONA_IRQ_FLL2_CLOCK_OK 48 | ||
77 | #define ARIZONA_IRQ_FLL1_CLOCK_OK 49 | ||
78 | |||
79 | #define ARIZONA_NUM_IRQ 50 | ||
80 | |||
81 | struct arizona { | ||
82 | struct regmap *regmap; | ||
83 | struct device *dev; | ||
84 | |||
85 | enum arizona_type type; | ||
86 | unsigned int rev; | ||
87 | |||
88 | int num_core_supplies; | ||
89 | struct regulator_bulk_data core_supplies[ARIZONA_MAX_CORE_SUPPLIES]; | ||
90 | struct regulator *dcvdd; | ||
91 | |||
92 | struct arizona_pdata pdata; | ||
93 | |||
94 | int irq; | ||
95 | struct irq_domain *virq; | ||
96 | struct regmap_irq_chip_data *aod_irq_chip; | ||
97 | struct regmap_irq_chip_data *irq_chip; | ||
98 | |||
99 | struct mutex clk_lock; | ||
100 | int clk32k_ref; | ||
101 | }; | ||
102 | |||
103 | int arizona_clk32k_enable(struct arizona *arizona); | ||
104 | int arizona_clk32k_disable(struct arizona *arizona); | ||
105 | |||
106 | int arizona_request_irq(struct arizona *arizona, int irq, char *name, | ||
107 | irq_handler_t handler, void *data); | ||
108 | void arizona_free_irq(struct arizona *arizona, int irq, void *data); | ||
109 | int arizona_set_irq_wake(struct arizona *arizona, int irq, int on); | ||
110 | |||
111 | int wm5102_patch(struct arizona *arizona); | ||
112 | int wm5110_patch(struct arizona *arizona); | ||
113 | |||
114 | #endif | ||
diff --git a/include/linux/mfd/arizona/pdata.h b/include/linux/mfd/arizona/pdata.h new file mode 100644 index 000000000000..7ab442905a57 --- /dev/null +++ b/include/linux/mfd/arizona/pdata.h | |||
@@ -0,0 +1,119 @@ | |||
1 | /* | ||
2 | * Platform data for Arizona devices | ||
3 | * | ||
4 | * Copyright 2012 Wolfson Microelectronics. PLC. | ||
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 | |||
11 | #ifndef _ARIZONA_PDATA_H | ||
12 | #define _ARIZONA_PDATA_H | ||
13 | |||
14 | #define ARIZONA_GPN_DIR 0x8000 /* GPN_DIR */ | ||
15 | #define ARIZONA_GPN_DIR_MASK 0x8000 /* GPN_DIR */ | ||
16 | #define ARIZONA_GPN_DIR_SHIFT 15 /* GPN_DIR */ | ||
17 | #define ARIZONA_GPN_DIR_WIDTH 1 /* GPN_DIR */ | ||
18 | #define ARIZONA_GPN_PU 0x4000 /* GPN_PU */ | ||
19 | #define ARIZONA_GPN_PU_MASK 0x4000 /* GPN_PU */ | ||
20 | #define ARIZONA_GPN_PU_SHIFT 14 /* GPN_PU */ | ||
21 | #define ARIZONA_GPN_PU_WIDTH 1 /* GPN_PU */ | ||
22 | #define ARIZONA_GPN_PD 0x2000 /* GPN_PD */ | ||
23 | #define ARIZONA_GPN_PD_MASK 0x2000 /* GPN_PD */ | ||
24 | #define ARIZONA_GPN_PD_SHIFT 13 /* GPN_PD */ | ||
25 | #define ARIZONA_GPN_PD_WIDTH 1 /* GPN_PD */ | ||
26 | #define ARIZONA_GPN_LVL 0x0800 /* GPN_LVL */ | ||
27 | #define ARIZONA_GPN_LVL_MASK 0x0800 /* GPN_LVL */ | ||
28 | #define ARIZONA_GPN_LVL_SHIFT 11 /* GPN_LVL */ | ||
29 | #define ARIZONA_GPN_LVL_WIDTH 1 /* GPN_LVL */ | ||
30 | #define ARIZONA_GPN_POL 0x0400 /* GPN_POL */ | ||
31 | #define ARIZONA_GPN_POL_MASK 0x0400 /* GPN_POL */ | ||
32 | #define ARIZONA_GPN_POL_SHIFT 10 /* GPN_POL */ | ||
33 | #define ARIZONA_GPN_POL_WIDTH 1 /* GPN_POL */ | ||
34 | #define ARIZONA_GPN_OP_CFG 0x0200 /* GPN_OP_CFG */ | ||
35 | #define ARIZONA_GPN_OP_CFG_MASK 0x0200 /* GPN_OP_CFG */ | ||
36 | #define ARIZONA_GPN_OP_CFG_SHIFT 9 /* GPN_OP_CFG */ | ||
37 | #define ARIZONA_GPN_OP_CFG_WIDTH 1 /* GPN_OP_CFG */ | ||
38 | #define ARIZONA_GPN_DB 0x0100 /* GPN_DB */ | ||
39 | #define ARIZONA_GPN_DB_MASK 0x0100 /* GPN_DB */ | ||
40 | #define ARIZONA_GPN_DB_SHIFT 8 /* GPN_DB */ | ||
41 | #define ARIZONA_GPN_DB_WIDTH 1 /* GPN_DB */ | ||
42 | #define ARIZONA_GPN_FN_MASK 0x007F /* GPN_FN - [6:0] */ | ||
43 | #define ARIZONA_GPN_FN_SHIFT 0 /* GPN_FN - [6:0] */ | ||
44 | #define ARIZONA_GPN_FN_WIDTH 7 /* GPN_FN - [6:0] */ | ||
45 | |||
46 | #define ARIZONA_MAX_GPIO 5 | ||
47 | |||
48 | #define ARIZONA_32KZ_MCLK1 1 | ||
49 | #define ARIZONA_32KZ_MCLK2 2 | ||
50 | #define ARIZONA_32KZ_NONE 3 | ||
51 | |||
52 | #define ARIZONA_MAX_INPUT 4 | ||
53 | |||
54 | #define ARIZONA_DMIC_MICVDD 0 | ||
55 | #define ARIZONA_DMIC_MICBIAS1 1 | ||
56 | #define ARIZONA_DMIC_MICBIAS2 2 | ||
57 | #define ARIZONA_DMIC_MICBIAS3 3 | ||
58 | |||
59 | #define ARIZONA_INMODE_DIFF 0 | ||
60 | #define ARIZONA_INMODE_SE 1 | ||
61 | #define ARIZONA_INMODE_DMIC 2 | ||
62 | |||
63 | #define ARIZONA_MAX_OUTPUT 6 | ||
64 | |||
65 | #define ARIZONA_MAX_PDM_SPK 2 | ||
66 | |||
67 | struct regulator_init_data; | ||
68 | |||
69 | struct arizona_micd_config { | ||
70 | unsigned int src; | ||
71 | unsigned int bias; | ||
72 | bool gpio; | ||
73 | }; | ||
74 | |||
75 | struct arizona_pdata { | ||
76 | int reset; /** GPIO controlling /RESET, if any */ | ||
77 | int ldoena; /** GPIO controlling LODENA, if any */ | ||
78 | |||
79 | /** Regulator configuration for MICVDD */ | ||
80 | struct regulator_init_data *micvdd; | ||
81 | |||
82 | /** Regulator configuration for LDO1 */ | ||
83 | struct regulator_init_data *ldo1; | ||
84 | |||
85 | /** If a direct 32kHz clock is provided on an MCLK specify it here */ | ||
86 | int clk32k_src; | ||
87 | |||
88 | bool irq_active_high; /** IRQ polarity */ | ||
89 | |||
90 | /* Base GPIO */ | ||
91 | int gpio_base; | ||
92 | |||
93 | /** Pin state for GPIO pins */ | ||
94 | int gpio_defaults[ARIZONA_MAX_GPIO]; | ||
95 | |||
96 | /** GPIO for mic detection polarity */ | ||
97 | int micd_pol_gpio; | ||
98 | |||
99 | /** Headset polarity configurations */ | ||
100 | struct arizona_micd_config *micd_configs; | ||
101 | int num_micd_configs; | ||
102 | |||
103 | /** Reference voltage for DMIC inputs */ | ||
104 | int dmic_ref[ARIZONA_MAX_INPUT]; | ||
105 | |||
106 | /** Mode of input structures */ | ||
107 | int inmode[ARIZONA_MAX_INPUT]; | ||
108 | |||
109 | /** Mode for outputs */ | ||
110 | bool out_mono[ARIZONA_MAX_OUTPUT]; | ||
111 | |||
112 | /** PDM speaker mute setting */ | ||
113 | unsigned int spk_mute[ARIZONA_MAX_PDM_SPK]; | ||
114 | |||
115 | /** PDM speaker format */ | ||
116 | unsigned int spk_fmt[ARIZONA_MAX_PDM_SPK]; | ||
117 | }; | ||
118 | |||
119 | #endif | ||
diff --git a/include/linux/mfd/arizona/registers.h b/include/linux/mfd/arizona/registers.h new file mode 100644 index 000000000000..7671a287dfee --- /dev/null +++ b/include/linux/mfd/arizona/registers.h | |||
@@ -0,0 +1,6594 @@ | |||
1 | /* | ||
2 | * ARIZONA register definitions | ||
3 | * | ||
4 | * Copyright 2012 Wolfson Microelectronics plc | ||
5 | * | ||
6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.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 version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | ||
12 | |||
13 | #ifndef _ARIZONA_REGISTERS_H | ||
14 | #define _ARIZONA_REGISTERS_H | ||
15 | |||
16 | /* | ||
17 | * Register values. | ||
18 | */ | ||
19 | #define ARIZONA_SOFTWARE_RESET 0x00 | ||
20 | #define ARIZONA_DEVICE_REVISION 0x01 | ||
21 | #define ARIZONA_CTRL_IF_SPI_CFG_1 0x08 | ||
22 | #define ARIZONA_CTRL_IF_I2C1_CFG_1 0x09 | ||
23 | #define ARIZONA_CTRL_IF_I2C2_CFG_1 0x0A | ||
24 | #define ARIZONA_CTRL_IF_I2C1_CFG_2 0x0B | ||
25 | #define ARIZONA_CTRL_IF_I2C2_CFG_2 0x0C | ||
26 | #define ARIZONA_CTRL_IF_STATUS_1 0x0D | ||
27 | #define ARIZONA_WRITE_SEQUENCER_CTRL_0 0x16 | ||
28 | #define ARIZONA_WRITE_SEQUENCER_CTRL_1 0x17 | ||
29 | #define ARIZONA_WRITE_SEQUENCER_CTRL_2 0x18 | ||
30 | #define ARIZONA_WRITE_SEQUENCER_PROM 0x1A | ||
31 | #define ARIZONA_TONE_GENERATOR_1 0x20 | ||
32 | #define ARIZONA_TONE_GENERATOR_2 0x21 | ||
33 | #define ARIZONA_TONE_GENERATOR_3 0x22 | ||
34 | #define ARIZONA_TONE_GENERATOR_4 0x23 | ||
35 | #define ARIZONA_TONE_GENERATOR_5 0x24 | ||
36 | #define ARIZONA_PWM_DRIVE_1 0x30 | ||
37 | #define ARIZONA_PWM_DRIVE_2 0x31 | ||
38 | #define ARIZONA_PWM_DRIVE_3 0x32 | ||
39 | #define ARIZONA_WAKE_CONTROL 0x40 | ||
40 | #define ARIZONA_SEQUENCE_CONTROL 0x41 | ||
41 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_1 0x61 | ||
42 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_2 0x62 | ||
43 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_3 0x63 | ||
44 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_4 0x64 | ||
45 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_1 0x68 | ||
46 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_2 0x69 | ||
47 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_3 0x6A | ||
48 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_4 0x6B | ||
49 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_5 0x6C | ||
50 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_6 0x6D | ||
51 | #define ARIZONA_COMFORT_NOISE_GENERATOR 0x70 | ||
52 | #define ARIZONA_HAPTICS_CONTROL_1 0x90 | ||
53 | #define ARIZONA_HAPTICS_CONTROL_2 0x91 | ||
54 | #define ARIZONA_HAPTICS_PHASE_1_INTENSITY 0x92 | ||
55 | #define ARIZONA_HAPTICS_PHASE_1_DURATION 0x93 | ||
56 | #define ARIZONA_HAPTICS_PHASE_2_INTENSITY 0x94 | ||
57 | #define ARIZONA_HAPTICS_PHASE_2_DURATION 0x95 | ||
58 | #define ARIZONA_HAPTICS_PHASE_3_INTENSITY 0x96 | ||
59 | #define ARIZONA_HAPTICS_PHASE_3_DURATION 0x97 | ||
60 | #define ARIZONA_HAPTICS_STATUS 0x98 | ||
61 | #define ARIZONA_CLOCK_32K_1 0x100 | ||
62 | #define ARIZONA_SYSTEM_CLOCK_1 0x101 | ||
63 | #define ARIZONA_SAMPLE_RATE_1 0x102 | ||
64 | #define ARIZONA_SAMPLE_RATE_2 0x103 | ||
65 | #define ARIZONA_SAMPLE_RATE_3 0x104 | ||
66 | #define ARIZONA_SAMPLE_RATE_1_STATUS 0x10A | ||
67 | #define ARIZONA_SAMPLE_RATE_2_STATUS 0x10B | ||
68 | #define ARIZONA_SAMPLE_RATE_3_STATUS 0x10C | ||
69 | #define ARIZONA_ASYNC_CLOCK_1 0x112 | ||
70 | #define ARIZONA_ASYNC_SAMPLE_RATE_1 0x113 | ||
71 | #define ARIZONA_ASYNC_SAMPLE_RATE_1_STATUS 0x11B | ||
72 | #define ARIZONA_OUTPUT_SYSTEM_CLOCK 0x149 | ||
73 | #define ARIZONA_OUTPUT_ASYNC_CLOCK 0x14A | ||
74 | #define ARIZONA_RATE_ESTIMATOR_1 0x152 | ||
75 | #define ARIZONA_RATE_ESTIMATOR_2 0x153 | ||
76 | #define ARIZONA_RATE_ESTIMATOR_3 0x154 | ||
77 | #define ARIZONA_RATE_ESTIMATOR_4 0x155 | ||
78 | #define ARIZONA_RATE_ESTIMATOR_5 0x156 | ||
79 | #define ARIZONA_FLL1_CONTROL_1 0x171 | ||
80 | #define ARIZONA_FLL1_CONTROL_2 0x172 | ||
81 | #define ARIZONA_FLL1_CONTROL_3 0x173 | ||
82 | #define ARIZONA_FLL1_CONTROL_4 0x174 | ||
83 | #define ARIZONA_FLL1_CONTROL_5 0x175 | ||
84 | #define ARIZONA_FLL1_CONTROL_6 0x176 | ||
85 | #define ARIZONA_FLL1_LOOP_FILTER_TEST_1 0x177 | ||
86 | #define ARIZONA_FLL1_NCO_TEST_0 0x178 | ||
87 | #define ARIZONA_FLL1_SYNCHRONISER_1 0x181 | ||
88 | #define ARIZONA_FLL1_SYNCHRONISER_2 0x182 | ||
89 | #define ARIZONA_FLL1_SYNCHRONISER_3 0x183 | ||
90 | #define ARIZONA_FLL1_SYNCHRONISER_4 0x184 | ||
91 | #define ARIZONA_FLL1_SYNCHRONISER_5 0x185 | ||
92 | #define ARIZONA_FLL1_SYNCHRONISER_6 0x186 | ||
93 | #define ARIZONA_FLL1_SPREAD_SPECTRUM 0x189 | ||
94 | #define ARIZONA_FLL1_GPIO_CLOCK 0x18A | ||
95 | #define ARIZONA_FLL2_CONTROL_1 0x191 | ||
96 | #define ARIZONA_FLL2_CONTROL_2 0x192 | ||
97 | #define ARIZONA_FLL2_CONTROL_3 0x193 | ||
98 | #define ARIZONA_FLL2_CONTROL_4 0x194 | ||
99 | #define ARIZONA_FLL2_CONTROL_5 0x195 | ||
100 | #define ARIZONA_FLL2_CONTROL_6 0x196 | ||
101 | #define ARIZONA_FLL2_LOOP_FILTER_TEST_1 0x197 | ||
102 | #define ARIZONA_FLL2_NCO_TEST_0 0x198 | ||
103 | #define ARIZONA_FLL2_SYNCHRONISER_1 0x1A1 | ||
104 | #define ARIZONA_FLL2_SYNCHRONISER_2 0x1A2 | ||
105 | #define ARIZONA_FLL2_SYNCHRONISER_3 0x1A3 | ||
106 | #define ARIZONA_FLL2_SYNCHRONISER_4 0x1A4 | ||
107 | #define ARIZONA_FLL2_SYNCHRONISER_5 0x1A5 | ||
108 | #define ARIZONA_FLL2_SYNCHRONISER_6 0x1A6 | ||
109 | #define ARIZONA_FLL2_SPREAD_SPECTRUM 0x1A9 | ||
110 | #define ARIZONA_FLL2_GPIO_CLOCK 0x1AA | ||
111 | #define ARIZONA_MIC_CHARGE_PUMP_1 0x200 | ||
112 | #define ARIZONA_LDO1_CONTROL_1 0x210 | ||
113 | #define ARIZONA_LDO2_CONTROL_1 0x213 | ||
114 | #define ARIZONA_MIC_BIAS_CTRL_1 0x218 | ||
115 | #define ARIZONA_MIC_BIAS_CTRL_2 0x219 | ||
116 | #define ARIZONA_MIC_BIAS_CTRL_3 0x21A | ||
117 | #define ARIZONA_ACCESSORY_DETECT_MODE_1 0x293 | ||
118 | #define ARIZONA_HEADPHONE_DETECT_1 0x29B | ||
119 | #define ARIZONA_HEADPHONE_DETECT_2 0x29C | ||
120 | #define ARIZONA_MIC_DETECT_1 0x2A3 | ||
121 | #define ARIZONA_MIC_DETECT_2 0x2A4 | ||
122 | #define ARIZONA_MIC_DETECT_3 0x2A5 | ||
123 | #define ARIZONA_MIC_NOISE_MIX_CONTROL_1 0x2C3 | ||
124 | #define ARIZONA_ISOLATION_CONTROL 0x2CB | ||
125 | #define ARIZONA_JACK_DETECT_ANALOGUE 0x2D3 | ||
126 | #define ARIZONA_INPUT_ENABLES 0x300 | ||
127 | #define ARIZONA_INPUT_ENABLES_STATUS 0x301 | ||
128 | #define ARIZONA_INPUT_RATE 0x308 | ||
129 | #define ARIZONA_INPUT_VOLUME_RAMP 0x309 | ||
130 | #define ARIZONA_IN1L_CONTROL 0x310 | ||
131 | #define ARIZONA_ADC_DIGITAL_VOLUME_1L 0x311 | ||
132 | #define ARIZONA_DMIC1L_CONTROL 0x312 | ||
133 | #define ARIZONA_IN1R_CONTROL 0x314 | ||
134 | #define ARIZONA_ADC_DIGITAL_VOLUME_1R 0x315 | ||
135 | #define ARIZONA_DMIC1R_CONTROL 0x316 | ||
136 | #define ARIZONA_IN2L_CONTROL 0x318 | ||
137 | #define ARIZONA_ADC_DIGITAL_VOLUME_2L 0x319 | ||
138 | #define ARIZONA_DMIC2L_CONTROL 0x31A | ||
139 | #define ARIZONA_IN2R_CONTROL 0x31C | ||
140 | #define ARIZONA_ADC_DIGITAL_VOLUME_2R 0x31D | ||
141 | #define ARIZONA_DMIC2R_CONTROL 0x31E | ||
142 | #define ARIZONA_IN3L_CONTROL 0x320 | ||
143 | #define ARIZONA_ADC_DIGITAL_VOLUME_3L 0x321 | ||
144 | #define ARIZONA_DMIC3L_CONTROL 0x322 | ||
145 | #define ARIZONA_IN3R_CONTROL 0x324 | ||
146 | #define ARIZONA_ADC_DIGITAL_VOLUME_3R 0x325 | ||
147 | #define ARIZONA_DMIC3R_CONTROL 0x326 | ||
148 | #define ARIZONA_IN4L_CONTROL 0x328 | ||
149 | #define ARIZONA_ADC_DIGITAL_VOLUME_4L 0x329 | ||
150 | #define ARIZONA_DMIC4L_CONTROL 0x32A | ||
151 | #define ARIZONA_ADC_DIGITAL_VOLUME_4R 0x32D | ||
152 | #define ARIZONA_DMIC4R_CONTROL 0x32E | ||
153 | #define ARIZONA_OUTPUT_ENABLES_1 0x400 | ||
154 | #define ARIZONA_OUTPUT_STATUS_1 0x401 | ||
155 | #define ARIZONA_RAW_OUTPUT_STATUS_1 0x406 | ||
156 | #define ARIZONA_OUTPUT_RATE_1 0x408 | ||
157 | #define ARIZONA_OUTPUT_VOLUME_RAMP 0x409 | ||
158 | #define ARIZONA_OUTPUT_PATH_CONFIG_1L 0x410 | ||
159 | #define ARIZONA_DAC_DIGITAL_VOLUME_1L 0x411 | ||
160 | #define ARIZONA_DAC_VOLUME_LIMIT_1L 0x412 | ||
161 | #define ARIZONA_NOISE_GATE_SELECT_1L 0x413 | ||
162 | #define ARIZONA_OUTPUT_PATH_CONFIG_1R 0x414 | ||
163 | #define ARIZONA_DAC_DIGITAL_VOLUME_1R 0x415 | ||
164 | #define ARIZONA_DAC_VOLUME_LIMIT_1R 0x416 | ||
165 | #define ARIZONA_NOISE_GATE_SELECT_1R 0x417 | ||
166 | #define ARIZONA_OUTPUT_PATH_CONFIG_2L 0x418 | ||
167 | #define ARIZONA_DAC_DIGITAL_VOLUME_2L 0x419 | ||
168 | #define ARIZONA_DAC_VOLUME_LIMIT_2L 0x41A | ||
169 | #define ARIZONA_NOISE_GATE_SELECT_2L 0x41B | ||
170 | #define ARIZONA_OUTPUT_PATH_CONFIG_2R 0x41C | ||
171 | #define ARIZONA_DAC_DIGITAL_VOLUME_2R 0x41D | ||
172 | #define ARIZONA_DAC_VOLUME_LIMIT_2R 0x41E | ||
173 | #define ARIZONA_NOISE_GATE_SELECT_2R 0x41F | ||
174 | #define ARIZONA_OUTPUT_PATH_CONFIG_3L 0x420 | ||
175 | #define ARIZONA_DAC_DIGITAL_VOLUME_3L 0x421 | ||
176 | #define ARIZONA_DAC_VOLUME_LIMIT_3L 0x422 | ||
177 | #define ARIZONA_NOISE_GATE_SELECT_3L 0x423 | ||
178 | #define ARIZONA_OUTPUT_PATH_CONFIG_3R 0x424 | ||
179 | #define ARIZONA_DAC_DIGITAL_VOLUME_3R 0x425 | ||
180 | #define ARIZONA_DAC_VOLUME_LIMIT_3R 0x426 | ||
181 | #define ARIZONA_NOISE_GATE_SELECT_3R 0x427 | ||
182 | #define ARIZONA_OUTPUT_PATH_CONFIG_4L 0x428 | ||
183 | #define ARIZONA_DAC_DIGITAL_VOLUME_4L 0x429 | ||
184 | #define ARIZONA_OUT_VOLUME_4L 0x42A | ||
185 | #define ARIZONA_NOISE_GATE_SELECT_4L 0x42B | ||
186 | #define ARIZONA_OUTPUT_PATH_CONFIG_4R 0x42C | ||
187 | #define ARIZONA_DAC_DIGITAL_VOLUME_4R 0x42D | ||
188 | #define ARIZONA_OUT_VOLUME_4R 0x42E | ||
189 | #define ARIZONA_NOISE_GATE_SELECT_4R 0x42F | ||
190 | #define ARIZONA_OUTPUT_PATH_CONFIG_5L 0x430 | ||
191 | #define ARIZONA_DAC_DIGITAL_VOLUME_5L 0x431 | ||
192 | #define ARIZONA_DAC_VOLUME_LIMIT_5L 0x432 | ||
193 | #define ARIZONA_NOISE_GATE_SELECT_5L 0x433 | ||
194 | #define ARIZONA_OUTPUT_PATH_CONFIG_5R 0x434 | ||
195 | #define ARIZONA_DAC_DIGITAL_VOLUME_5R 0x435 | ||
196 | #define ARIZONA_DAC_VOLUME_LIMIT_5R 0x436 | ||
197 | #define ARIZONA_NOISE_GATE_SELECT_5R 0x437 | ||
198 | #define ARIZONA_OUTPUT_PATH_CONFIG_6L 0x438 | ||
199 | #define ARIZONA_DAC_DIGITAL_VOLUME_6L 0x439 | ||
200 | #define ARIZONA_DAC_VOLUME_LIMIT_6L 0x43A | ||
201 | #define ARIZONA_NOISE_GATE_SELECT_6L 0x43B | ||
202 | #define ARIZONA_OUTPUT_PATH_CONFIG_6R 0x43C | ||
203 | #define ARIZONA_DAC_DIGITAL_VOLUME_6R 0x43D | ||
204 | #define ARIZONA_DAC_VOLUME_LIMIT_6R 0x43E | ||
205 | #define ARIZONA_NOISE_GATE_SELECT_6R 0x43F | ||
206 | #define ARIZONA_DAC_AEC_CONTROL_1 0x450 | ||
207 | #define ARIZONA_NOISE_GATE_CONTROL 0x458 | ||
208 | #define ARIZONA_PDM_SPK1_CTRL_1 0x490 | ||
209 | #define ARIZONA_PDM_SPK1_CTRL_2 0x491 | ||
210 | #define ARIZONA_PDM_SPK2_CTRL_1 0x492 | ||
211 | #define ARIZONA_PDM_SPK2_CTRL_2 0x493 | ||
212 | #define ARIZONA_DAC_COMP_1 0x4DC | ||
213 | #define ARIZONA_DAC_COMP_2 0x4DD | ||
214 | #define ARIZONA_DAC_COMP_3 0x4DE | ||
215 | #define ARIZONA_DAC_COMP_4 0x4DF | ||
216 | #define ARIZONA_AIF1_BCLK_CTRL 0x500 | ||
217 | #define ARIZONA_AIF1_TX_PIN_CTRL 0x501 | ||
218 | #define ARIZONA_AIF1_RX_PIN_CTRL 0x502 | ||
219 | #define ARIZONA_AIF1_RATE_CTRL 0x503 | ||
220 | #define ARIZONA_AIF1_FORMAT 0x504 | ||
221 | #define ARIZONA_AIF1_TX_BCLK_RATE 0x505 | ||
222 | #define ARIZONA_AIF1_RX_BCLK_RATE 0x506 | ||
223 | #define ARIZONA_AIF1_FRAME_CTRL_1 0x507 | ||
224 | #define ARIZONA_AIF1_FRAME_CTRL_2 0x508 | ||
225 | #define ARIZONA_AIF1_FRAME_CTRL_3 0x509 | ||
226 | #define ARIZONA_AIF1_FRAME_CTRL_4 0x50A | ||
227 | #define ARIZONA_AIF1_FRAME_CTRL_5 0x50B | ||
228 | #define ARIZONA_AIF1_FRAME_CTRL_6 0x50C | ||
229 | #define ARIZONA_AIF1_FRAME_CTRL_7 0x50D | ||
230 | #define ARIZONA_AIF1_FRAME_CTRL_8 0x50E | ||
231 | #define ARIZONA_AIF1_FRAME_CTRL_9 0x50F | ||
232 | #define ARIZONA_AIF1_FRAME_CTRL_10 0x510 | ||
233 | #define ARIZONA_AIF1_FRAME_CTRL_11 0x511 | ||
234 | #define ARIZONA_AIF1_FRAME_CTRL_12 0x512 | ||
235 | #define ARIZONA_AIF1_FRAME_CTRL_13 0x513 | ||
236 | #define ARIZONA_AIF1_FRAME_CTRL_14 0x514 | ||
237 | #define ARIZONA_AIF1_FRAME_CTRL_15 0x515 | ||
238 | #define ARIZONA_AIF1_FRAME_CTRL_16 0x516 | ||
239 | #define ARIZONA_AIF1_FRAME_CTRL_17 0x517 | ||
240 | #define ARIZONA_AIF1_FRAME_CTRL_18 0x518 | ||
241 | #define ARIZONA_AIF1_TX_ENABLES 0x519 | ||
242 | #define ARIZONA_AIF1_RX_ENABLES 0x51A | ||
243 | #define ARIZONA_AIF1_FORCE_WRITE 0x51B | ||
244 | #define ARIZONA_AIF2_BCLK_CTRL 0x540 | ||
245 | #define ARIZONA_AIF2_TX_PIN_CTRL 0x541 | ||
246 | #define ARIZONA_AIF2_RX_PIN_CTRL 0x542 | ||
247 | #define ARIZONA_AIF2_RATE_CTRL 0x543 | ||
248 | #define ARIZONA_AIF2_FORMAT 0x544 | ||
249 | #define ARIZONA_AIF2_TX_BCLK_RATE 0x545 | ||
250 | #define ARIZONA_AIF2_RX_BCLK_RATE 0x546 | ||
251 | #define ARIZONA_AIF2_FRAME_CTRL_1 0x547 | ||
252 | #define ARIZONA_AIF2_FRAME_CTRL_2 0x548 | ||
253 | #define ARIZONA_AIF2_FRAME_CTRL_3 0x549 | ||
254 | #define ARIZONA_AIF2_FRAME_CTRL_4 0x54A | ||
255 | #define ARIZONA_AIF2_FRAME_CTRL_11 0x551 | ||
256 | #define ARIZONA_AIF2_FRAME_CTRL_12 0x552 | ||
257 | #define ARIZONA_AIF2_TX_ENABLES 0x559 | ||
258 | #define ARIZONA_AIF2_RX_ENABLES 0x55A | ||
259 | #define ARIZONA_AIF2_FORCE_WRITE 0x55B | ||
260 | #define ARIZONA_AIF3_BCLK_CTRL 0x580 | ||
261 | #define ARIZONA_AIF3_TX_PIN_CTRL 0x581 | ||
262 | #define ARIZONA_AIF3_RX_PIN_CTRL 0x582 | ||
263 | #define ARIZONA_AIF3_RATE_CTRL 0x583 | ||
264 | #define ARIZONA_AIF3_FORMAT 0x584 | ||
265 | #define ARIZONA_AIF3_TX_BCLK_RATE 0x585 | ||
266 | #define ARIZONA_AIF3_RX_BCLK_RATE 0x586 | ||
267 | #define ARIZONA_AIF3_FRAME_CTRL_1 0x587 | ||
268 | #define ARIZONA_AIF3_FRAME_CTRL_2 0x588 | ||
269 | #define ARIZONA_AIF3_FRAME_CTRL_3 0x589 | ||
270 | #define ARIZONA_AIF3_FRAME_CTRL_4 0x58A | ||
271 | #define ARIZONA_AIF3_FRAME_CTRL_11 0x591 | ||
272 | #define ARIZONA_AIF3_FRAME_CTRL_12 0x592 | ||
273 | #define ARIZONA_AIF3_TX_ENABLES 0x599 | ||
274 | #define ARIZONA_AIF3_RX_ENABLES 0x59A | ||
275 | #define ARIZONA_AIF3_FORCE_WRITE 0x59B | ||
276 | #define ARIZONA_SLIMBUS_FRAMER_REF_GEAR 0x5E3 | ||
277 | #define ARIZONA_SLIMBUS_RATES_1 0x5E5 | ||
278 | #define ARIZONA_SLIMBUS_RATES_2 0x5E6 | ||
279 | #define ARIZONA_SLIMBUS_RATES_3 0x5E7 | ||
280 | #define ARIZONA_SLIMBUS_RATES_4 0x5E8 | ||
281 | #define ARIZONA_SLIMBUS_RATES_5 0x5E9 | ||
282 | #define ARIZONA_SLIMBUS_RATES_6 0x5EA | ||
283 | #define ARIZONA_SLIMBUS_RATES_7 0x5EB | ||
284 | #define ARIZONA_SLIMBUS_RATES_8 0x5EC | ||
285 | #define ARIZONA_SLIMBUS_RX_CHANNEL_ENABLE 0x5F5 | ||
286 | #define ARIZONA_SLIMBUS_TX_CHANNEL_ENABLE 0x5F6 | ||
287 | #define ARIZONA_SLIMBUS_RX_PORT_STATUS 0x5F7 | ||
288 | #define ARIZONA_SLIMBUS_TX_PORT_STATUS 0x5F8 | ||
289 | #define ARIZONA_PWM1MIX_INPUT_1_SOURCE 0x640 | ||
290 | #define ARIZONA_PWM1MIX_INPUT_1_VOLUME 0x641 | ||
291 | #define ARIZONA_PWM1MIX_INPUT_2_SOURCE 0x642 | ||
292 | #define ARIZONA_PWM1MIX_INPUT_2_VOLUME 0x643 | ||
293 | #define ARIZONA_PWM1MIX_INPUT_3_SOURCE 0x644 | ||
294 | #define ARIZONA_PWM1MIX_INPUT_3_VOLUME 0x645 | ||
295 | #define ARIZONA_PWM1MIX_INPUT_4_SOURCE 0x646 | ||
296 | #define ARIZONA_PWM1MIX_INPUT_4_VOLUME 0x647 | ||
297 | #define ARIZONA_PWM2MIX_INPUT_1_SOURCE 0x648 | ||
298 | #define ARIZONA_PWM2MIX_INPUT_1_VOLUME 0x649 | ||
299 | #define ARIZONA_PWM2MIX_INPUT_2_SOURCE 0x64A | ||
300 | #define ARIZONA_PWM2MIX_INPUT_2_VOLUME 0x64B | ||
301 | #define ARIZONA_PWM2MIX_INPUT_3_SOURCE 0x64C | ||
302 | #define ARIZONA_PWM2MIX_INPUT_3_VOLUME 0x64D | ||
303 | #define ARIZONA_PWM2MIX_INPUT_4_SOURCE 0x64E | ||
304 | #define ARIZONA_PWM2MIX_INPUT_4_VOLUME 0x64F | ||
305 | #define ARIZONA_MICMIX_INPUT_1_SOURCE 0x660 | ||
306 | #define ARIZONA_MICMIX_INPUT_1_VOLUME 0x661 | ||
307 | #define ARIZONA_MICMIX_INPUT_2_SOURCE 0x662 | ||
308 | #define ARIZONA_MICMIX_INPUT_2_VOLUME 0x663 | ||
309 | #define ARIZONA_MICMIX_INPUT_3_SOURCE 0x664 | ||
310 | #define ARIZONA_MICMIX_INPUT_3_VOLUME 0x665 | ||
311 | #define ARIZONA_MICMIX_INPUT_4_SOURCE 0x666 | ||
312 | #define ARIZONA_MICMIX_INPUT_4_VOLUME 0x667 | ||
313 | #define ARIZONA_NOISEMIX_INPUT_1_SOURCE 0x668 | ||
314 | #define ARIZONA_NOISEMIX_INPUT_1_VOLUME 0x669 | ||
315 | #define ARIZONA_NOISEMIX_INPUT_2_SOURCE 0x66A | ||
316 | #define ARIZONA_NOISEMIX_INPUT_2_VOLUME 0x66B | ||
317 | #define ARIZONA_NOISEMIX_INPUT_3_SOURCE 0x66C | ||
318 | #define ARIZONA_NOISEMIX_INPUT_3_VOLUME 0x66D | ||
319 | #define ARIZONA_NOISEMIX_INPUT_4_SOURCE 0x66E | ||
320 | #define ARIZONA_NOISEMIX_INPUT_4_VOLUME 0x66F | ||
321 | #define ARIZONA_OUT1LMIX_INPUT_1_SOURCE 0x680 | ||
322 | #define ARIZONA_OUT1LMIX_INPUT_1_VOLUME 0x681 | ||
323 | #define ARIZONA_OUT1LMIX_INPUT_2_SOURCE 0x682 | ||
324 | #define ARIZONA_OUT1LMIX_INPUT_2_VOLUME 0x683 | ||
325 | #define ARIZONA_OUT1LMIX_INPUT_3_SOURCE 0x684 | ||
326 | #define ARIZONA_OUT1LMIX_INPUT_3_VOLUME 0x685 | ||
327 | #define ARIZONA_OUT1LMIX_INPUT_4_SOURCE 0x686 | ||
328 | #define ARIZONA_OUT1LMIX_INPUT_4_VOLUME 0x687 | ||
329 | #define ARIZONA_OUT1RMIX_INPUT_1_SOURCE 0x688 | ||
330 | #define ARIZONA_OUT1RMIX_INPUT_1_VOLUME 0x689 | ||
331 | #define ARIZONA_OUT1RMIX_INPUT_2_SOURCE 0x68A | ||
332 | #define ARIZONA_OUT1RMIX_INPUT_2_VOLUME 0x68B | ||
333 | #define ARIZONA_OUT1RMIX_INPUT_3_SOURCE 0x68C | ||
334 | #define ARIZONA_OUT1RMIX_INPUT_3_VOLUME 0x68D | ||
335 | #define ARIZONA_OUT1RMIX_INPUT_4_SOURCE 0x68E | ||
336 | #define ARIZONA_OUT1RMIX_INPUT_4_VOLUME 0x68F | ||
337 | #define ARIZONA_OUT2LMIX_INPUT_1_SOURCE 0x690 | ||
338 | #define ARIZONA_OUT2LMIX_INPUT_1_VOLUME 0x691 | ||
339 | #define ARIZONA_OUT2LMIX_INPUT_2_SOURCE 0x692 | ||
340 | #define ARIZONA_OUT2LMIX_INPUT_2_VOLUME 0x693 | ||
341 | #define ARIZONA_OUT2LMIX_INPUT_3_SOURCE 0x694 | ||
342 | #define ARIZONA_OUT2LMIX_INPUT_3_VOLUME 0x695 | ||
343 | #define ARIZONA_OUT2LMIX_INPUT_4_SOURCE 0x696 | ||
344 | #define ARIZONA_OUT2LMIX_INPUT_4_VOLUME 0x697 | ||
345 | #define ARIZONA_OUT2RMIX_INPUT_1_SOURCE 0x698 | ||
346 | #define ARIZONA_OUT2RMIX_INPUT_1_VOLUME 0x699 | ||
347 | #define ARIZONA_OUT2RMIX_INPUT_2_SOURCE 0x69A | ||
348 | #define ARIZONA_OUT2RMIX_INPUT_2_VOLUME 0x69B | ||
349 | #define ARIZONA_OUT2RMIX_INPUT_3_SOURCE 0x69C | ||
350 | #define ARIZONA_OUT2RMIX_INPUT_3_VOLUME 0x69D | ||
351 | #define ARIZONA_OUT2RMIX_INPUT_4_SOURCE 0x69E | ||
352 | #define ARIZONA_OUT2RMIX_INPUT_4_VOLUME 0x69F | ||
353 | #define ARIZONA_OUT3LMIX_INPUT_1_SOURCE 0x6A0 | ||
354 | #define ARIZONA_OUT3LMIX_INPUT_1_VOLUME 0x6A1 | ||
355 | #define ARIZONA_OUT3LMIX_INPUT_2_SOURCE 0x6A2 | ||
356 | #define ARIZONA_OUT3LMIX_INPUT_2_VOLUME 0x6A3 | ||
357 | #define ARIZONA_OUT3LMIX_INPUT_3_SOURCE 0x6A4 | ||
358 | #define ARIZONA_OUT3LMIX_INPUT_3_VOLUME 0x6A5 | ||
359 | #define ARIZONA_OUT3LMIX_INPUT_4_SOURCE 0x6A6 | ||
360 | #define ARIZONA_OUT3LMIX_INPUT_4_VOLUME 0x6A7 | ||
361 | #define ARIZONA_OUT3RMIX_INPUT_1_SOURCE 0x6A8 | ||
362 | #define ARIZONA_OUT3RMIX_INPUT_1_VOLUME 0x6A9 | ||
363 | #define ARIZONA_OUT3RMIX_INPUT_2_SOURCE 0x6AA | ||
364 | #define ARIZONA_OUT3RMIX_INPUT_2_VOLUME 0x6AB | ||
365 | #define ARIZONA_OUT3RMIX_INPUT_3_SOURCE 0x6AC | ||
366 | #define ARIZONA_OUT3RMIX_INPUT_3_VOLUME 0x6AD | ||
367 | #define ARIZONA_OUT3RMIX_INPUT_4_SOURCE 0x6AE | ||
368 | #define ARIZONA_OUT3RMIX_INPUT_4_VOLUME 0x6AF | ||
369 | #define ARIZONA_OUT4LMIX_INPUT_1_SOURCE 0x6B0 | ||
370 | #define ARIZONA_OUT4LMIX_INPUT_1_VOLUME 0x6B1 | ||
371 | #define ARIZONA_OUT4LMIX_INPUT_2_SOURCE 0x6B2 | ||
372 | #define ARIZONA_OUT4LMIX_INPUT_2_VOLUME 0x6B3 | ||
373 | #define ARIZONA_OUT4LMIX_INPUT_3_SOURCE 0x6B4 | ||
374 | #define ARIZONA_OUT4LMIX_INPUT_3_VOLUME 0x6B5 | ||
375 | #define ARIZONA_OUT4LMIX_INPUT_4_SOURCE 0x6B6 | ||
376 | #define ARIZONA_OUT4LMIX_INPUT_4_VOLUME 0x6B7 | ||
377 | #define ARIZONA_OUT4RMIX_INPUT_1_SOURCE 0x6B8 | ||
378 | #define ARIZONA_OUT4RMIX_INPUT_1_VOLUME 0x6B9 | ||
379 | #define ARIZONA_OUT4RMIX_INPUT_2_SOURCE 0x6BA | ||
380 | #define ARIZONA_OUT4RMIX_INPUT_2_VOLUME 0x6BB | ||
381 | #define ARIZONA_OUT4RMIX_INPUT_3_SOURCE 0x6BC | ||
382 | #define ARIZONA_OUT4RMIX_INPUT_3_VOLUME 0x6BD | ||
383 | #define ARIZONA_OUT4RMIX_INPUT_4_SOURCE 0x6BE | ||
384 | #define ARIZONA_OUT4RMIX_INPUT_4_VOLUME 0x6BF | ||
385 | #define ARIZONA_OUT5LMIX_INPUT_1_SOURCE 0x6C0 | ||
386 | #define ARIZONA_OUT5LMIX_INPUT_1_VOLUME 0x6C1 | ||
387 | #define ARIZONA_OUT5LMIX_INPUT_2_SOURCE 0x6C2 | ||
388 | #define ARIZONA_OUT5LMIX_INPUT_2_VOLUME 0x6C3 | ||
389 | #define ARIZONA_OUT5LMIX_INPUT_3_SOURCE 0x6C4 | ||
390 | #define ARIZONA_OUT5LMIX_INPUT_3_VOLUME 0x6C5 | ||
391 | #define ARIZONA_OUT5LMIX_INPUT_4_SOURCE 0x6C6 | ||
392 | #define ARIZONA_OUT5LMIX_INPUT_4_VOLUME 0x6C7 | ||
393 | #define ARIZONA_OUT5RMIX_INPUT_1_SOURCE 0x6C8 | ||
394 | #define ARIZONA_OUT5RMIX_INPUT_1_VOLUME 0x6C9 | ||
395 | #define ARIZONA_OUT5RMIX_INPUT_2_SOURCE 0x6CA | ||
396 | #define ARIZONA_OUT5RMIX_INPUT_2_VOLUME 0x6CB | ||
397 | #define ARIZONA_OUT5RMIX_INPUT_3_SOURCE 0x6CC | ||
398 | #define ARIZONA_OUT5RMIX_INPUT_3_VOLUME 0x6CD | ||
399 | #define ARIZONA_OUT5RMIX_INPUT_4_SOURCE 0x6CE | ||
400 | #define ARIZONA_OUT5RMIX_INPUT_4_VOLUME 0x6CF | ||
401 | #define ARIZONA_OUT6LMIX_INPUT_1_SOURCE 0x6D0 | ||
402 | #define ARIZONA_OUT6LMIX_INPUT_1_VOLUME 0x6D1 | ||
403 | #define ARIZONA_OUT6LMIX_INPUT_2_SOURCE 0x6D2 | ||
404 | #define ARIZONA_OUT6LMIX_INPUT_2_VOLUME 0x6D3 | ||
405 | #define ARIZONA_OUT6LMIX_INPUT_3_SOURCE 0x6D4 | ||
406 | #define ARIZONA_OUT6LMIX_INPUT_3_VOLUME 0x6D5 | ||
407 | #define ARIZONA_OUT6LMIX_INPUT_4_SOURCE 0x6D6 | ||
408 | #define ARIZONA_OUT6LMIX_INPUT_4_VOLUME 0x6D7 | ||
409 | #define ARIZONA_OUT6RMIX_INPUT_1_SOURCE 0x6D8 | ||
410 | #define ARIZONA_OUT6RMIX_INPUT_1_VOLUME 0x6D9 | ||
411 | #define ARIZONA_OUT6RMIX_INPUT_2_SOURCE 0x6DA | ||
412 | #define ARIZONA_OUT6RMIX_INPUT_2_VOLUME 0x6DB | ||
413 | #define ARIZONA_OUT6RMIX_INPUT_3_SOURCE 0x6DC | ||
414 | #define ARIZONA_OUT6RMIX_INPUT_3_VOLUME 0x6DD | ||
415 | #define ARIZONA_OUT6RMIX_INPUT_4_SOURCE 0x6DE | ||
416 | #define ARIZONA_OUT6RMIX_INPUT_4_VOLUME 0x6DF | ||
417 | #define ARIZONA_AIF1TX1MIX_INPUT_1_SOURCE 0x700 | ||
418 | #define ARIZONA_AIF1TX1MIX_INPUT_1_VOLUME 0x701 | ||
419 | #define ARIZONA_AIF1TX1MIX_INPUT_2_SOURCE 0x702 | ||
420 | #define ARIZONA_AIF1TX1MIX_INPUT_2_VOLUME 0x703 | ||
421 | #define ARIZONA_AIF1TX1MIX_INPUT_3_SOURCE 0x704 | ||
422 | #define ARIZONA_AIF1TX1MIX_INPUT_3_VOLUME 0x705 | ||
423 | #define ARIZONA_AIF1TX1MIX_INPUT_4_SOURCE 0x706 | ||
424 | #define ARIZONA_AIF1TX1MIX_INPUT_4_VOLUME 0x707 | ||
425 | #define ARIZONA_AIF1TX2MIX_INPUT_1_SOURCE 0x708 | ||
426 | #define ARIZONA_AIF1TX2MIX_INPUT_1_VOLUME 0x709 | ||
427 | #define ARIZONA_AIF1TX2MIX_INPUT_2_SOURCE 0x70A | ||
428 | #define ARIZONA_AIF1TX2MIX_INPUT_2_VOLUME 0x70B | ||
429 | #define ARIZONA_AIF1TX2MIX_INPUT_3_SOURCE 0x70C | ||
430 | #define ARIZONA_AIF1TX2MIX_INPUT_3_VOLUME 0x70D | ||
431 | #define ARIZONA_AIF1TX2MIX_INPUT_4_SOURCE 0x70E | ||
432 | #define ARIZONA_AIF1TX2MIX_INPUT_4_VOLUME 0x70F | ||
433 | #define ARIZONA_AIF1TX3MIX_INPUT_1_SOURCE 0x710 | ||
434 | #define ARIZONA_AIF1TX3MIX_INPUT_1_VOLUME 0x711 | ||
435 | #define ARIZONA_AIF1TX3MIX_INPUT_2_SOURCE 0x712 | ||
436 | #define ARIZONA_AIF1TX3MIX_INPUT_2_VOLUME 0x713 | ||
437 | #define ARIZONA_AIF1TX3MIX_INPUT_3_SOURCE 0x714 | ||
438 | #define ARIZONA_AIF1TX3MIX_INPUT_3_VOLUME 0x715 | ||
439 | #define ARIZONA_AIF1TX3MIX_INPUT_4_SOURCE 0x716 | ||
440 | #define ARIZONA_AIF1TX3MIX_INPUT_4_VOLUME 0x717 | ||
441 | #define ARIZONA_AIF1TX4MIX_INPUT_1_SOURCE 0x718 | ||
442 | #define ARIZONA_AIF1TX4MIX_INPUT_1_VOLUME 0x719 | ||
443 | #define ARIZONA_AIF1TX4MIX_INPUT_2_SOURCE 0x71A | ||
444 | #define ARIZONA_AIF1TX4MIX_INPUT_2_VOLUME 0x71B | ||
445 | #define ARIZONA_AIF1TX4MIX_INPUT_3_SOURCE 0x71C | ||
446 | #define ARIZONA_AIF1TX4MIX_INPUT_3_VOLUME 0x71D | ||
447 | #define ARIZONA_AIF1TX4MIX_INPUT_4_SOURCE 0x71E | ||
448 | #define ARIZONA_AIF1TX4MIX_INPUT_4_VOLUME 0x71F | ||
449 | #define ARIZONA_AIF1TX5MIX_INPUT_1_SOURCE 0x720 | ||
450 | #define ARIZONA_AIF1TX5MIX_INPUT_1_VOLUME 0x721 | ||
451 | #define ARIZONA_AIF1TX5MIX_INPUT_2_SOURCE 0x722 | ||
452 | #define ARIZONA_AIF1TX5MIX_INPUT_2_VOLUME 0x723 | ||
453 | #define ARIZONA_AIF1TX5MIX_INPUT_3_SOURCE 0x724 | ||
454 | #define ARIZONA_AIF1TX5MIX_INPUT_3_VOLUME 0x725 | ||
455 | #define ARIZONA_AIF1TX5MIX_INPUT_4_SOURCE 0x726 | ||
456 | #define ARIZONA_AIF1TX5MIX_INPUT_4_VOLUME 0x727 | ||
457 | #define ARIZONA_AIF1TX6MIX_INPUT_1_SOURCE 0x728 | ||
458 | #define ARIZONA_AIF1TX6MIX_INPUT_1_VOLUME 0x729 | ||
459 | #define ARIZONA_AIF1TX6MIX_INPUT_2_SOURCE 0x72A | ||
460 | #define ARIZONA_AIF1TX6MIX_INPUT_2_VOLUME 0x72B | ||
461 | #define ARIZONA_AIF1TX6MIX_INPUT_3_SOURCE 0x72C | ||
462 | #define ARIZONA_AIF1TX6MIX_INPUT_3_VOLUME 0x72D | ||
463 | #define ARIZONA_AIF1TX6MIX_INPUT_4_SOURCE 0x72E | ||
464 | #define ARIZONA_AIF1TX6MIX_INPUT_4_VOLUME 0x72F | ||
465 | #define ARIZONA_AIF1TX7MIX_INPUT_1_SOURCE 0x730 | ||
466 | #define ARIZONA_AIF1TX7MIX_INPUT_1_VOLUME 0x731 | ||
467 | #define ARIZONA_AIF1TX7MIX_INPUT_2_SOURCE 0x732 | ||
468 | #define ARIZONA_AIF1TX7MIX_INPUT_2_VOLUME 0x733 | ||
469 | #define ARIZONA_AIF1TX7MIX_INPUT_3_SOURCE 0x734 | ||
470 | #define ARIZONA_AIF1TX7MIX_INPUT_3_VOLUME 0x735 | ||
471 | #define ARIZONA_AIF1TX7MIX_INPUT_4_SOURCE 0x736 | ||
472 | #define ARIZONA_AIF1TX7MIX_INPUT_4_VOLUME 0x737 | ||
473 | #define ARIZONA_AIF1TX8MIX_INPUT_1_SOURCE 0x738 | ||
474 | #define ARIZONA_AIF1TX8MIX_INPUT_1_VOLUME 0x739 | ||
475 | #define ARIZONA_AIF1TX8MIX_INPUT_2_SOURCE 0x73A | ||
476 | #define ARIZONA_AIF1TX8MIX_INPUT_2_VOLUME 0x73B | ||
477 | #define ARIZONA_AIF1TX8MIX_INPUT_3_SOURCE 0x73C | ||
478 | #define ARIZONA_AIF1TX8MIX_INPUT_3_VOLUME 0x73D | ||
479 | #define ARIZONA_AIF1TX8MIX_INPUT_4_SOURCE 0x73E | ||
480 | #define ARIZONA_AIF1TX8MIX_INPUT_4_VOLUME 0x73F | ||
481 | #define ARIZONA_AIF2TX1MIX_INPUT_1_SOURCE 0x740 | ||
482 | #define ARIZONA_AIF2TX1MIX_INPUT_1_VOLUME 0x741 | ||
483 | #define ARIZONA_AIF2TX1MIX_INPUT_2_SOURCE 0x742 | ||
484 | #define ARIZONA_AIF2TX1MIX_INPUT_2_VOLUME 0x743 | ||
485 | #define ARIZONA_AIF2TX1MIX_INPUT_3_SOURCE 0x744 | ||
486 | #define ARIZONA_AIF2TX1MIX_INPUT_3_VOLUME 0x745 | ||
487 | #define ARIZONA_AIF2TX1MIX_INPUT_4_SOURCE 0x746 | ||
488 | #define ARIZONA_AIF2TX1MIX_INPUT_4_VOLUME 0x747 | ||
489 | #define ARIZONA_AIF2TX2MIX_INPUT_1_SOURCE 0x748 | ||
490 | #define ARIZONA_AIF2TX2MIX_INPUT_1_VOLUME 0x749 | ||
491 | #define ARIZONA_AIF2TX2MIX_INPUT_2_SOURCE 0x74A | ||
492 | #define ARIZONA_AIF2TX2MIX_INPUT_2_VOLUME 0x74B | ||
493 | #define ARIZONA_AIF2TX2MIX_INPUT_3_SOURCE 0x74C | ||
494 | #define ARIZONA_AIF2TX2MIX_INPUT_3_VOLUME 0x74D | ||
495 | #define ARIZONA_AIF2TX2MIX_INPUT_4_SOURCE 0x74E | ||
496 | #define ARIZONA_AIF2TX2MIX_INPUT_4_VOLUME 0x74F | ||
497 | #define ARIZONA_AIF3TX1MIX_INPUT_1_SOURCE 0x780 | ||
498 | #define ARIZONA_AIF3TX1MIX_INPUT_1_VOLUME 0x781 | ||
499 | #define ARIZONA_AIF3TX1MIX_INPUT_2_SOURCE 0x782 | ||
500 | #define ARIZONA_AIF3TX1MIX_INPUT_2_VOLUME 0x783 | ||
501 | #define ARIZONA_AIF3TX1MIX_INPUT_3_SOURCE 0x784 | ||
502 | #define ARIZONA_AIF3TX1MIX_INPUT_3_VOLUME 0x785 | ||
503 | #define ARIZONA_AIF3TX1MIX_INPUT_4_SOURCE 0x786 | ||
504 | #define ARIZONA_AIF3TX1MIX_INPUT_4_VOLUME 0x787 | ||
505 | #define ARIZONA_AIF3TX2MIX_INPUT_1_SOURCE 0x788 | ||
506 | #define ARIZONA_AIF3TX2MIX_INPUT_1_VOLUME 0x789 | ||
507 | #define ARIZONA_AIF3TX2MIX_INPUT_2_SOURCE 0x78A | ||
508 | #define ARIZONA_AIF3TX2MIX_INPUT_2_VOLUME 0x78B | ||
509 | #define ARIZONA_AIF3TX2MIX_INPUT_3_SOURCE 0x78C | ||
510 | #define ARIZONA_AIF3TX2MIX_INPUT_3_VOLUME 0x78D | ||
511 | #define ARIZONA_AIF3TX2MIX_INPUT_4_SOURCE 0x78E | ||
512 | #define ARIZONA_AIF3TX2MIX_INPUT_4_VOLUME 0x78F | ||
513 | #define ARIZONA_SLIMTX1MIX_INPUT_1_SOURCE 0x7C0 | ||
514 | #define ARIZONA_SLIMTX1MIX_INPUT_1_VOLUME 0x7C1 | ||
515 | #define ARIZONA_SLIMTX1MIX_INPUT_2_SOURCE 0x7C2 | ||
516 | #define ARIZONA_SLIMTX1MIX_INPUT_2_VOLUME 0x7C3 | ||
517 | #define ARIZONA_SLIMTX1MIX_INPUT_3_SOURCE 0x7C4 | ||
518 | #define ARIZONA_SLIMTX1MIX_INPUT_3_VOLUME 0x7C5 | ||
519 | #define ARIZONA_SLIMTX1MIX_INPUT_4_SOURCE 0x7C6 | ||
520 | #define ARIZONA_SLIMTX1MIX_INPUT_4_VOLUME 0x7C7 | ||
521 | #define ARIZONA_SLIMTX2MIX_INPUT_1_SOURCE 0x7C8 | ||
522 | #define ARIZONA_SLIMTX2MIX_INPUT_1_VOLUME 0x7C9 | ||
523 | #define ARIZONA_SLIMTX2MIX_INPUT_2_SOURCE 0x7CA | ||
524 | #define ARIZONA_SLIMTX2MIX_INPUT_2_VOLUME 0x7CB | ||
525 | #define ARIZONA_SLIMTX2MIX_INPUT_3_SOURCE 0x7CC | ||
526 | #define ARIZONA_SLIMTX2MIX_INPUT_3_VOLUME 0x7CD | ||
527 | #define ARIZONA_SLIMTX2MIX_INPUT_4_SOURCE 0x7CE | ||
528 | #define ARIZONA_SLIMTX2MIX_INPUT_4_VOLUME 0x7CF | ||
529 | #define ARIZONA_SLIMTX3MIX_INPUT_1_SOURCE 0x7D0 | ||
530 | #define ARIZONA_SLIMTX3MIX_INPUT_1_VOLUME 0x7D1 | ||
531 | #define ARIZONA_SLIMTX3MIX_INPUT_2_SOURCE 0x7D2 | ||
532 | #define ARIZONA_SLIMTX3MIX_INPUT_2_VOLUME 0x7D3 | ||
533 | #define ARIZONA_SLIMTX3MIX_INPUT_3_SOURCE 0x7D4 | ||
534 | #define ARIZONA_SLIMTX3MIX_INPUT_3_VOLUME 0x7D5 | ||
535 | #define ARIZONA_SLIMTX3MIX_INPUT_4_SOURCE 0x7D6 | ||
536 | #define ARIZONA_SLIMTX3MIX_INPUT_4_VOLUME 0x7D7 | ||
537 | #define ARIZONA_SLIMTX4MIX_INPUT_1_SOURCE 0x7D8 | ||
538 | #define ARIZONA_SLIMTX4MIX_INPUT_1_VOLUME 0x7D9 | ||
539 | #define ARIZONA_SLIMTX4MIX_INPUT_2_SOURCE 0x7DA | ||
540 | #define ARIZONA_SLIMTX4MIX_INPUT_2_VOLUME 0x7DB | ||
541 | #define ARIZONA_SLIMTX4MIX_INPUT_3_SOURCE 0x7DC | ||
542 | #define ARIZONA_SLIMTX4MIX_INPUT_3_VOLUME 0x7DD | ||
543 | #define ARIZONA_SLIMTX4MIX_INPUT_4_SOURCE 0x7DE | ||
544 | #define ARIZONA_SLIMTX4MIX_INPUT_4_VOLUME 0x7DF | ||
545 | #define ARIZONA_SLIMTX5MIX_INPUT_1_SOURCE 0x7E0 | ||
546 | #define ARIZONA_SLIMTX5MIX_INPUT_1_VOLUME 0x7E1 | ||
547 | #define ARIZONA_SLIMTX5MIX_INPUT_2_SOURCE 0x7E2 | ||
548 | #define ARIZONA_SLIMTX5MIX_INPUT_2_VOLUME 0x7E3 | ||
549 | #define ARIZONA_SLIMTX5MIX_INPUT_3_SOURCE 0x7E4 | ||
550 | #define ARIZONA_SLIMTX5MIX_INPUT_3_VOLUME 0x7E5 | ||
551 | #define ARIZONA_SLIMTX5MIX_INPUT_4_SOURCE 0x7E6 | ||
552 | #define ARIZONA_SLIMTX5MIX_INPUT_4_VOLUME 0x7E7 | ||
553 | #define ARIZONA_SLIMTX6MIX_INPUT_1_SOURCE 0x7E8 | ||
554 | #define ARIZONA_SLIMTX6MIX_INPUT_1_VOLUME 0x7E9 | ||
555 | #define ARIZONA_SLIMTX6MIX_INPUT_2_SOURCE 0x7EA | ||
556 | #define ARIZONA_SLIMTX6MIX_INPUT_2_VOLUME 0x7EB | ||
557 | #define ARIZONA_SLIMTX6MIX_INPUT_3_SOURCE 0x7EC | ||
558 | #define ARIZONA_SLIMTX6MIX_INPUT_3_VOLUME 0x7ED | ||
559 | #define ARIZONA_SLIMTX6MIX_INPUT_4_SOURCE 0x7EE | ||
560 | #define ARIZONA_SLIMTX6MIX_INPUT_4_VOLUME 0x7EF | ||
561 | #define ARIZONA_SLIMTX7MIX_INPUT_1_SOURCE 0x7F0 | ||
562 | #define ARIZONA_SLIMTX7MIX_INPUT_1_VOLUME 0x7F1 | ||
563 | #define ARIZONA_SLIMTX7MIX_INPUT_2_SOURCE 0x7F2 | ||
564 | #define ARIZONA_SLIMTX7MIX_INPUT_2_VOLUME 0x7F3 | ||
565 | #define ARIZONA_SLIMTX7MIX_INPUT_3_SOURCE 0x7F4 | ||
566 | #define ARIZONA_SLIMTX7MIX_INPUT_3_VOLUME 0x7F5 | ||
567 | #define ARIZONA_SLIMTX7MIX_INPUT_4_SOURCE 0x7F6 | ||
568 | #define ARIZONA_SLIMTX7MIX_INPUT_4_VOLUME 0x7F7 | ||
569 | #define ARIZONA_SLIMTX8MIX_INPUT_1_SOURCE 0x7F8 | ||
570 | #define ARIZONA_SLIMTX8MIX_INPUT_1_VOLUME 0x7F9 | ||
571 | #define ARIZONA_SLIMTX8MIX_INPUT_2_SOURCE 0x7FA | ||
572 | #define ARIZONA_SLIMTX8MIX_INPUT_2_VOLUME 0x7FB | ||
573 | #define ARIZONA_SLIMTX8MIX_INPUT_3_SOURCE 0x7FC | ||
574 | #define ARIZONA_SLIMTX8MIX_INPUT_3_VOLUME 0x7FD | ||
575 | #define ARIZONA_SLIMTX8MIX_INPUT_4_SOURCE 0x7FE | ||
576 | #define ARIZONA_SLIMTX8MIX_INPUT_4_VOLUME 0x7FF | ||
577 | #define ARIZONA_EQ1MIX_INPUT_1_SOURCE 0x880 | ||
578 | #define ARIZONA_EQ1MIX_INPUT_1_VOLUME 0x881 | ||
579 | #define ARIZONA_EQ1MIX_INPUT_2_SOURCE 0x882 | ||
580 | #define ARIZONA_EQ1MIX_INPUT_2_VOLUME 0x883 | ||
581 | #define ARIZONA_EQ1MIX_INPUT_3_SOURCE 0x884 | ||
582 | #define ARIZONA_EQ1MIX_INPUT_3_VOLUME 0x885 | ||
583 | #define ARIZONA_EQ1MIX_INPUT_4_SOURCE 0x886 | ||
584 | #define ARIZONA_EQ1MIX_INPUT_4_VOLUME 0x887 | ||
585 | #define ARIZONA_EQ2MIX_INPUT_1_SOURCE 0x888 | ||
586 | #define ARIZONA_EQ2MIX_INPUT_1_VOLUME 0x889 | ||
587 | #define ARIZONA_EQ2MIX_INPUT_2_SOURCE 0x88A | ||
588 | #define ARIZONA_EQ2MIX_INPUT_2_VOLUME 0x88B | ||
589 | #define ARIZONA_EQ2MIX_INPUT_3_SOURCE 0x88C | ||
590 | #define ARIZONA_EQ2MIX_INPUT_3_VOLUME 0x88D | ||
591 | #define ARIZONA_EQ2MIX_INPUT_4_SOURCE 0x88E | ||
592 | #define ARIZONA_EQ2MIX_INPUT_4_VOLUME 0x88F | ||
593 | #define ARIZONA_EQ3MIX_INPUT_1_SOURCE 0x890 | ||
594 | #define ARIZONA_EQ3MIX_INPUT_1_VOLUME 0x891 | ||
595 | #define ARIZONA_EQ3MIX_INPUT_2_SOURCE 0x892 | ||
596 | #define ARIZONA_EQ3MIX_INPUT_2_VOLUME 0x893 | ||
597 | #define ARIZONA_EQ3MIX_INPUT_3_SOURCE 0x894 | ||
598 | #define ARIZONA_EQ3MIX_INPUT_3_VOLUME 0x895 | ||
599 | #define ARIZONA_EQ3MIX_INPUT_4_SOURCE 0x896 | ||
600 | #define ARIZONA_EQ3MIX_INPUT_4_VOLUME 0x897 | ||
601 | #define ARIZONA_EQ4MIX_INPUT_1_SOURCE 0x898 | ||
602 | #define ARIZONA_EQ4MIX_INPUT_1_VOLUME 0x899 | ||
603 | #define ARIZONA_EQ4MIX_INPUT_2_SOURCE 0x89A | ||
604 | #define ARIZONA_EQ4MIX_INPUT_2_VOLUME 0x89B | ||
605 | #define ARIZONA_EQ4MIX_INPUT_3_SOURCE 0x89C | ||
606 | #define ARIZONA_EQ4MIX_INPUT_3_VOLUME 0x89D | ||
607 | #define ARIZONA_EQ4MIX_INPUT_4_SOURCE 0x89E | ||
608 | #define ARIZONA_EQ4MIX_INPUT_4_VOLUME 0x89F | ||
609 | #define ARIZONA_DRC1LMIX_INPUT_1_SOURCE 0x8C0 | ||
610 | #define ARIZONA_DRC1LMIX_INPUT_1_VOLUME 0x8C1 | ||
611 | #define ARIZONA_DRC1LMIX_INPUT_2_SOURCE 0x8C2 | ||
612 | #define ARIZONA_DRC1LMIX_INPUT_2_VOLUME 0x8C3 | ||
613 | #define ARIZONA_DRC1LMIX_INPUT_3_SOURCE 0x8C4 | ||
614 | #define ARIZONA_DRC1LMIX_INPUT_3_VOLUME 0x8C5 | ||
615 | #define ARIZONA_DRC1LMIX_INPUT_4_SOURCE 0x8C6 | ||
616 | #define ARIZONA_DRC1LMIX_INPUT_4_VOLUME 0x8C7 | ||
617 | #define ARIZONA_DRC1RMIX_INPUT_1_SOURCE 0x8C8 | ||
618 | #define ARIZONA_DRC1RMIX_INPUT_1_VOLUME 0x8C9 | ||
619 | #define ARIZONA_DRC1RMIX_INPUT_2_SOURCE 0x8CA | ||
620 | #define ARIZONA_DRC1RMIX_INPUT_2_VOLUME 0x8CB | ||
621 | #define ARIZONA_DRC1RMIX_INPUT_3_SOURCE 0x8CC | ||
622 | #define ARIZONA_DRC1RMIX_INPUT_3_VOLUME 0x8CD | ||
623 | #define ARIZONA_DRC1RMIX_INPUT_4_SOURCE 0x8CE | ||
624 | #define ARIZONA_DRC1RMIX_INPUT_4_VOLUME 0x8CF | ||
625 | #define ARIZONA_DRC2LMIX_INPUT_1_SOURCE 0x8D0 | ||
626 | #define ARIZONA_DRC2LMIX_INPUT_1_VOLUME 0x8D1 | ||
627 | #define ARIZONA_DRC2LMIX_INPUT_2_SOURCE 0x8D2 | ||
628 | #define ARIZONA_DRC2LMIX_INPUT_2_VOLUME 0x8D3 | ||
629 | #define ARIZONA_DRC2LMIX_INPUT_3_SOURCE 0x8D4 | ||
630 | #define ARIZONA_DRC2LMIX_INPUT_3_VOLUME 0x8D5 | ||
631 | #define ARIZONA_DRC2LMIX_INPUT_4_SOURCE 0x8D6 | ||
632 | #define ARIZONA_DRC2LMIX_INPUT_4_VOLUME 0x8D7 | ||
633 | #define ARIZONA_DRC2RMIX_INPUT_1_SOURCE 0x8D8 | ||
634 | #define ARIZONA_DRC2RMIX_INPUT_1_VOLUME 0x8D9 | ||
635 | #define ARIZONA_DRC2RMIX_INPUT_2_SOURCE 0x8DA | ||
636 | #define ARIZONA_DRC2RMIX_INPUT_2_VOLUME 0x8DB | ||
637 | #define ARIZONA_DRC2RMIX_INPUT_3_SOURCE 0x8DC | ||
638 | #define ARIZONA_DRC2RMIX_INPUT_3_VOLUME 0x8DD | ||
639 | #define ARIZONA_DRC2RMIX_INPUT_4_SOURCE 0x8DE | ||
640 | #define ARIZONA_DRC2RMIX_INPUT_4_VOLUME 0x8DF | ||
641 | #define ARIZONA_HPLP1MIX_INPUT_1_SOURCE 0x900 | ||
642 | #define ARIZONA_HPLP1MIX_INPUT_1_VOLUME 0x901 | ||
643 | #define ARIZONA_HPLP1MIX_INPUT_2_SOURCE 0x902 | ||
644 | #define ARIZONA_HPLP1MIX_INPUT_2_VOLUME 0x903 | ||
645 | #define ARIZONA_HPLP1MIX_INPUT_3_SOURCE 0x904 | ||
646 | #define ARIZONA_HPLP1MIX_INPUT_3_VOLUME 0x905 | ||
647 | #define ARIZONA_HPLP1MIX_INPUT_4_SOURCE 0x906 | ||
648 | #define ARIZONA_HPLP1MIX_INPUT_4_VOLUME 0x907 | ||
649 | #define ARIZONA_HPLP2MIX_INPUT_1_SOURCE 0x908 | ||
650 | #define ARIZONA_HPLP2MIX_INPUT_1_VOLUME 0x909 | ||
651 | #define ARIZONA_HPLP2MIX_INPUT_2_SOURCE 0x90A | ||
652 | #define ARIZONA_HPLP2MIX_INPUT_2_VOLUME 0x90B | ||
653 | #define ARIZONA_HPLP2MIX_INPUT_3_SOURCE 0x90C | ||
654 | #define ARIZONA_HPLP2MIX_INPUT_3_VOLUME 0x90D | ||
655 | #define ARIZONA_HPLP2MIX_INPUT_4_SOURCE 0x90E | ||
656 | #define ARIZONA_HPLP2MIX_INPUT_4_VOLUME 0x90F | ||
657 | #define ARIZONA_HPLP3MIX_INPUT_1_SOURCE 0x910 | ||
658 | #define ARIZONA_HPLP3MIX_INPUT_1_VOLUME 0x911 | ||
659 | #define ARIZONA_HPLP3MIX_INPUT_2_SOURCE 0x912 | ||
660 | #define ARIZONA_HPLP3MIX_INPUT_2_VOLUME 0x913 | ||
661 | #define ARIZONA_HPLP3MIX_INPUT_3_SOURCE 0x914 | ||
662 | #define ARIZONA_HPLP3MIX_INPUT_3_VOLUME 0x915 | ||
663 | #define ARIZONA_HPLP3MIX_INPUT_4_SOURCE 0x916 | ||
664 | #define ARIZONA_HPLP3MIX_INPUT_4_VOLUME 0x917 | ||
665 | #define ARIZONA_HPLP4MIX_INPUT_1_SOURCE 0x918 | ||
666 | #define ARIZONA_HPLP4MIX_INPUT_1_VOLUME 0x919 | ||
667 | #define ARIZONA_HPLP4MIX_INPUT_2_SOURCE 0x91A | ||
668 | #define ARIZONA_HPLP4MIX_INPUT_2_VOLUME 0x91B | ||
669 | #define ARIZONA_HPLP4MIX_INPUT_3_SOURCE 0x91C | ||
670 | #define ARIZONA_HPLP4MIX_INPUT_3_VOLUME 0x91D | ||
671 | #define ARIZONA_HPLP4MIX_INPUT_4_SOURCE 0x91E | ||
672 | #define ARIZONA_HPLP4MIX_INPUT_4_VOLUME 0x91F | ||
673 | #define ARIZONA_DSP1LMIX_INPUT_1_SOURCE 0x940 | ||
674 | #define ARIZONA_DSP1LMIX_INPUT_1_VOLUME 0x941 | ||
675 | #define ARIZONA_DSP1LMIX_INPUT_2_SOURCE 0x942 | ||
676 | #define ARIZONA_DSP1LMIX_INPUT_2_VOLUME 0x943 | ||
677 | #define ARIZONA_DSP1LMIX_INPUT_3_SOURCE 0x944 | ||
678 | #define ARIZONA_DSP1LMIX_INPUT_3_VOLUME 0x945 | ||
679 | #define ARIZONA_DSP1LMIX_INPUT_4_SOURCE 0x946 | ||
680 | #define ARIZONA_DSP1LMIX_INPUT_4_VOLUME 0x947 | ||
681 | #define ARIZONA_DSP1RMIX_INPUT_1_SOURCE 0x948 | ||
682 | #define ARIZONA_DSP1RMIX_INPUT_1_VOLUME 0x949 | ||
683 | #define ARIZONA_DSP1RMIX_INPUT_2_SOURCE 0x94A | ||
684 | #define ARIZONA_DSP1RMIX_INPUT_2_VOLUME 0x94B | ||
685 | #define ARIZONA_DSP1RMIX_INPUT_3_SOURCE 0x94C | ||
686 | #define ARIZONA_DSP1RMIX_INPUT_3_VOLUME 0x94D | ||
687 | #define ARIZONA_DSP1RMIX_INPUT_4_SOURCE 0x94E | ||
688 | #define ARIZONA_DSP1RMIX_INPUT_4_VOLUME 0x94F | ||
689 | #define ARIZONA_DSP1AUX1MIX_INPUT_1_SOURCE 0x950 | ||
690 | #define ARIZONA_DSP1AUX2MIX_INPUT_1_SOURCE 0x958 | ||
691 | #define ARIZONA_DSP1AUX3MIX_INPUT_1_SOURCE 0x960 | ||
692 | #define ARIZONA_DSP1AUX4MIX_INPUT_1_SOURCE 0x968 | ||
693 | #define ARIZONA_DSP1AUX5MIX_INPUT_1_SOURCE 0x970 | ||
694 | #define ARIZONA_DSP1AUX6MIX_INPUT_1_SOURCE 0x978 | ||
695 | #define ARIZONA_DSP2LMIX_INPUT_1_SOURCE 0x980 | ||
696 | #define ARIZONA_DSP2LMIX_INPUT_1_VOLUME 0x981 | ||
697 | #define ARIZONA_DSP2LMIX_INPUT_2_SOURCE 0x982 | ||
698 | #define ARIZONA_DSP2LMIX_INPUT_2_VOLUME 0x983 | ||
699 | #define ARIZONA_DSP2LMIX_INPUT_3_SOURCE 0x984 | ||
700 | #define ARIZONA_DSP2LMIX_INPUT_3_VOLUME 0x985 | ||
701 | #define ARIZONA_DSP2LMIX_INPUT_4_SOURCE 0x986 | ||
702 | #define ARIZONA_DSP2LMIX_INPUT_4_VOLUME 0x987 | ||
703 | #define ARIZONA_DSP2RMIX_INPUT_1_SOURCE 0x988 | ||
704 | #define ARIZONA_DSP2RMIX_INPUT_1_VOLUME 0x989 | ||
705 | #define ARIZONA_DSP2RMIX_INPUT_2_SOURCE 0x98A | ||
706 | #define ARIZONA_DSP2RMIX_INPUT_2_VOLUME 0x98B | ||
707 | #define ARIZONA_DSP2RMIX_INPUT_3_SOURCE 0x98C | ||
708 | #define ARIZONA_DSP2RMIX_INPUT_3_VOLUME 0x98D | ||
709 | #define ARIZONA_DSP2RMIX_INPUT_4_SOURCE 0x98E | ||
710 | #define ARIZONA_DSP2RMIX_INPUT_4_VOLUME 0x98F | ||
711 | #define ARIZONA_DSP2AUX1MIX_INPUT_1_SOURCE 0x990 | ||
712 | #define ARIZONA_DSP2AUX2MIX_INPUT_1_SOURCE 0x998 | ||
713 | #define ARIZONA_DSP2AUX3MIX_INPUT_1_SOURCE 0x9A0 | ||
714 | #define ARIZONA_DSP2AUX4MIX_INPUT_1_SOURCE 0x9A8 | ||
715 | #define ARIZONA_DSP2AUX5MIX_INPUT_1_SOURCE 0x9B0 | ||
716 | #define ARIZONA_DSP2AUX6MIX_INPUT_1_SOURCE 0x9B8 | ||
717 | #define ARIZONA_DSP3LMIX_INPUT_1_SOURCE 0x9C0 | ||
718 | #define ARIZONA_DSP3LMIX_INPUT_1_VOLUME 0x9C1 | ||
719 | #define ARIZONA_DSP3LMIX_INPUT_2_SOURCE 0x9C2 | ||
720 | #define ARIZONA_DSP3LMIX_INPUT_2_VOLUME 0x9C3 | ||
721 | #define ARIZONA_DSP3LMIX_INPUT_3_SOURCE 0x9C4 | ||
722 | #define ARIZONA_DSP3LMIX_INPUT_3_VOLUME 0x9C5 | ||
723 | #define ARIZONA_DSP3LMIX_INPUT_4_SOURCE 0x9C6 | ||
724 | #define ARIZONA_DSP3LMIX_INPUT_4_VOLUME 0x9C7 | ||
725 | #define ARIZONA_DSP3RMIX_INPUT_1_SOURCE 0x9C8 | ||
726 | #define ARIZONA_DSP3RMIX_INPUT_1_VOLUME 0x9C9 | ||
727 | #define ARIZONA_DSP3RMIX_INPUT_2_SOURCE 0x9CA | ||
728 | #define ARIZONA_DSP3RMIX_INPUT_2_VOLUME 0x9CB | ||
729 | #define ARIZONA_DSP3RMIX_INPUT_3_SOURCE 0x9CC | ||
730 | #define ARIZONA_DSP3RMIX_INPUT_3_VOLUME 0x9CD | ||
731 | #define ARIZONA_DSP3RMIX_INPUT_4_SOURCE 0x9CE | ||
732 | #define ARIZONA_DSP3RMIX_INPUT_4_VOLUME 0x9CF | ||
733 | #define ARIZONA_DSP3AUX1MIX_INPUT_1_SOURCE 0x9D0 | ||
734 | #define ARIZONA_DSP3AUX2MIX_INPUT_1_SOURCE 0x9D8 | ||
735 | #define ARIZONA_DSP3AUX3MIX_INPUT_1_SOURCE 0x9E0 | ||
736 | #define ARIZONA_DSP3AUX4MIX_INPUT_1_SOURCE 0x9E8 | ||
737 | #define ARIZONA_DSP3AUX5MIX_INPUT_1_SOURCE 0x9F0 | ||
738 | #define ARIZONA_DSP3AUX6MIX_INPUT_1_SOURCE 0x9F8 | ||
739 | #define ARIZONA_DSP4LMIX_INPUT_1_SOURCE 0xA00 | ||
740 | #define ARIZONA_DSP4LMIX_INPUT_1_VOLUME 0xA01 | ||
741 | #define ARIZONA_DSP4LMIX_INPUT_2_SOURCE 0xA02 | ||
742 | #define ARIZONA_DSP4LMIX_INPUT_2_VOLUME 0xA03 | ||
743 | #define ARIZONA_DSP4LMIX_INPUT_3_SOURCE 0xA04 | ||
744 | #define ARIZONA_DSP4LMIX_INPUT_3_VOLUME 0xA05 | ||
745 | #define ARIZONA_DSP4LMIX_INPUT_4_SOURCE 0xA06 | ||
746 | #define ARIZONA_DSP4LMIX_INPUT_4_VOLUME 0xA07 | ||
747 | #define ARIZONA_DSP4RMIX_INPUT_1_SOURCE 0xA08 | ||
748 | #define ARIZONA_DSP4RMIX_INPUT_1_VOLUME 0xA09 | ||
749 | #define ARIZONA_DSP4RMIX_INPUT_2_SOURCE 0xA0A | ||
750 | #define ARIZONA_DSP4RMIX_INPUT_2_VOLUME 0xA0B | ||
751 | #define ARIZONA_DSP4RMIX_INPUT_3_SOURCE 0xA0C | ||
752 | #define ARIZONA_DSP4RMIX_INPUT_3_VOLUME 0xA0D | ||
753 | #define ARIZONA_DSP4RMIX_INPUT_4_SOURCE 0xA0E | ||
754 | #define ARIZONA_DSP4RMIX_INPUT_4_VOLUME 0xA0F | ||
755 | #define ARIZONA_DSP4AUX1MIX_INPUT_1_SOURCE 0xA10 | ||
756 | #define ARIZONA_DSP4AUX2MIX_INPUT_1_SOURCE 0xA18 | ||
757 | #define ARIZONA_DSP4AUX3MIX_INPUT_1_SOURCE 0xA20 | ||
758 | #define ARIZONA_DSP4AUX4MIX_INPUT_1_SOURCE 0xA28 | ||
759 | #define ARIZONA_DSP4AUX5MIX_INPUT_1_SOURCE 0xA30 | ||
760 | #define ARIZONA_DSP4AUX6MIX_INPUT_1_SOURCE 0xA38 | ||
761 | #define ARIZONA_ASRC1LMIX_INPUT_1_SOURCE 0xA80 | ||
762 | #define ARIZONA_ASRC1RMIX_INPUT_1_SOURCE 0xA88 | ||
763 | #define ARIZONA_ASRC2LMIX_INPUT_1_SOURCE 0xA90 | ||
764 | #define ARIZONA_ASRC2RMIX_INPUT_1_SOURCE 0xA98 | ||
765 | #define ARIZONA_ISRC1DEC1MIX_INPUT_1_SOURCE 0xB00 | ||
766 | #define ARIZONA_ISRC1DEC2MIX_INPUT_1_SOURCE 0xB08 | ||
767 | #define ARIZONA_ISRC1DEC3MIX_INPUT_1_SOURCE 0xB10 | ||
768 | #define ARIZONA_ISRC1DEC4MIX_INPUT_1_SOURCE 0xB18 | ||
769 | #define ARIZONA_ISRC1INT1MIX_INPUT_1_SOURCE 0xB20 | ||
770 | #define ARIZONA_ISRC1INT2MIX_INPUT_1_SOURCE 0xB28 | ||
771 | #define ARIZONA_ISRC1INT3MIX_INPUT_1_SOURCE 0xB30 | ||
772 | #define ARIZONA_ISRC1INT4MIX_INPUT_1_SOURCE 0xB38 | ||
773 | #define ARIZONA_ISRC2DEC1MIX_INPUT_1_SOURCE 0xB40 | ||
774 | #define ARIZONA_ISRC2DEC2MIX_INPUT_1_SOURCE 0xB48 | ||
775 | #define ARIZONA_ISRC2INT1MIX_INPUT_1_SOURCE 0xB60 | ||
776 | #define ARIZONA_ISRC2INT2MIX_INPUT_1_SOURCE 0xB68 | ||
777 | #define ARIZONA_ISRC1INT3MIX_INPUT_1_SOURCE 0xB30 | ||
778 | #define ARIZONA_ISRC1INT4MIX_INPUT_1_SOURCE 0xB38 | ||
779 | #define ARIZONA_ISRC2DEC1MIX_INPUT_1_SOURCE 0xB40 | ||
780 | #define ARIZONA_ISRC2DEC2MIX_INPUT_1_SOURCE 0xB48 | ||
781 | #define ARIZONA_ISRC2DEC3MIX_INPUT_1_SOURCE 0xB50 | ||
782 | #define ARIZONA_ISRC2DEC4MIX_INPUT_1_SOURCE 0xB58 | ||
783 | #define ARIZONA_ISRC2INT1MIX_INPUT_1_SOURCE 0xB60 | ||
784 | #define ARIZONA_ISRC2INT2MIX_INPUT_1_SOURCE 0xB68 | ||
785 | #define ARIZONA_ISRC2INT3MIX_INPUT_1_SOURCE 0xB70 | ||
786 | #define ARIZONA_ISRC2INT4MIX_INPUT_1_SOURCE 0xB78 | ||
787 | #define ARIZONA_ISRC3DEC1MIX_INPUT_1_SOURCE 0xB80 | ||
788 | #define ARIZONA_ISRC3DEC2MIX_INPUT_1_SOURCE 0xB88 | ||
789 | #define ARIZONA_ISRC3DEC3MIX_INPUT_1_SOURCE 0xB90 | ||
790 | #define ARIZONA_ISRC3DEC4MIX_INPUT_1_SOURCE 0xB98 | ||
791 | #define ARIZONA_ISRC3INT1MIX_INPUT_1_SOURCE 0xBA0 | ||
792 | #define ARIZONA_ISRC3INT2MIX_INPUT_1_SOURCE 0xBA8 | ||
793 | #define ARIZONA_ISRC3INT3MIX_INPUT_1_SOURCE 0xBB0 | ||
794 | #define ARIZONA_ISRC3INT4MIX_INPUT_1_SOURCE 0xBB8 | ||
795 | #define ARIZONA_GPIO1_CTRL 0xC00 | ||
796 | #define ARIZONA_GPIO2_CTRL 0xC01 | ||
797 | #define ARIZONA_GPIO3_CTRL 0xC02 | ||
798 | #define ARIZONA_GPIO4_CTRL 0xC03 | ||
799 | #define ARIZONA_GPIO5_CTRL 0xC04 | ||
800 | #define ARIZONA_IRQ_CTRL_1 0xC0F | ||
801 | #define ARIZONA_GPIO_DEBOUNCE_CONFIG 0xC10 | ||
802 | #define ARIZONA_MISC_PAD_CTRL_1 0xC20 | ||
803 | #define ARIZONA_MISC_PAD_CTRL_2 0xC21 | ||
804 | #define ARIZONA_MISC_PAD_CTRL_3 0xC22 | ||
805 | #define ARIZONA_MISC_PAD_CTRL_4 0xC23 | ||
806 | #define ARIZONA_MISC_PAD_CTRL_5 0xC24 | ||
807 | #define ARIZONA_MISC_PAD_CTRL_6 0xC25 | ||
808 | #define ARIZONA_MISC_PAD_CTRL_7 0xC30 | ||
809 | #define ARIZONA_MISC_PAD_CTRL_8 0xC31 | ||
810 | #define ARIZONA_MISC_PAD_CTRL_9 0xC32 | ||
811 | #define ARIZONA_MISC_PAD_CTRL_10 0xC33 | ||
812 | #define ARIZONA_MISC_PAD_CTRL_11 0xC34 | ||
813 | #define ARIZONA_MISC_PAD_CTRL_12 0xC35 | ||
814 | #define ARIZONA_MISC_PAD_CTRL_13 0xC36 | ||
815 | #define ARIZONA_MISC_PAD_CTRL_14 0xC37 | ||
816 | #define ARIZONA_MISC_PAD_CTRL_15 0xC38 | ||
817 | #define ARIZONA_MISC_PAD_CTRL_16 0xC39 | ||
818 | #define ARIZONA_MISC_PAD_CTRL_17 0xC3A | ||
819 | #define ARIZONA_MISC_PAD_CTRL_18 0xC3B | ||
820 | #define ARIZONA_INTERRUPT_STATUS_1 0xD00 | ||
821 | #define ARIZONA_INTERRUPT_STATUS_2 0xD01 | ||
822 | #define ARIZONA_INTERRUPT_STATUS_3 0xD02 | ||
823 | #define ARIZONA_INTERRUPT_STATUS_4 0xD03 | ||
824 | #define ARIZONA_INTERRUPT_STATUS_5 0xD04 | ||
825 | #define ARIZONA_INTERRUPT_STATUS_1_MASK 0xD08 | ||
826 | #define ARIZONA_INTERRUPT_STATUS_2_MASK 0xD09 | ||
827 | #define ARIZONA_INTERRUPT_STATUS_3_MASK 0xD0A | ||
828 | #define ARIZONA_INTERRUPT_STATUS_4_MASK 0xD0B | ||
829 | #define ARIZONA_INTERRUPT_STATUS_5_MASK 0xD0C | ||
830 | #define ARIZONA_INTERRUPT_CONTROL 0xD0F | ||
831 | #define ARIZONA_IRQ2_STATUS_1 0xD10 | ||
832 | #define ARIZONA_IRQ2_STATUS_2 0xD11 | ||
833 | #define ARIZONA_IRQ2_STATUS_3 0xD12 | ||
834 | #define ARIZONA_IRQ2_STATUS_4 0xD13 | ||
835 | #define ARIZONA_IRQ2_STATUS_5 0xD14 | ||
836 | #define ARIZONA_IRQ2_STATUS_1_MASK 0xD18 | ||
837 | #define ARIZONA_IRQ2_STATUS_2_MASK 0xD19 | ||
838 | #define ARIZONA_IRQ2_STATUS_3_MASK 0xD1A | ||
839 | #define ARIZONA_IRQ2_STATUS_4_MASK 0xD1B | ||
840 | #define ARIZONA_IRQ2_STATUS_5_MASK 0xD1C | ||
841 | #define ARIZONA_IRQ2_CONTROL 0xD1F | ||
842 | #define ARIZONA_INTERRUPT_RAW_STATUS_2 0xD20 | ||
843 | #define ARIZONA_INTERRUPT_RAW_STATUS_3 0xD21 | ||
844 | #define ARIZONA_INTERRUPT_RAW_STATUS_4 0xD22 | ||
845 | #define ARIZONA_INTERRUPT_RAW_STATUS_5 0xD23 | ||
846 | #define ARIZONA_INTERRUPT_RAW_STATUS_6 0xD24 | ||
847 | #define ARIZONA_INTERRUPT_RAW_STATUS_7 0xD25 | ||
848 | #define ARIZONA_INTERRUPT_RAW_STATUS_8 0xD26 | ||
849 | #define ARIZONA_IRQ_PIN_STATUS 0xD40 | ||
850 | #define ARIZONA_ADSP2_IRQ0 0xD41 | ||
851 | #define ARIZONA_AOD_WKUP_AND_TRIG 0xD50 | ||
852 | #define ARIZONA_AOD_IRQ1 0xD51 | ||
853 | #define ARIZONA_AOD_IRQ2 0xD52 | ||
854 | #define ARIZONA_AOD_IRQ_MASK_IRQ1 0xD53 | ||
855 | #define ARIZONA_AOD_IRQ_MASK_IRQ2 0xD54 | ||
856 | #define ARIZONA_AOD_IRQ_RAW_STATUS 0xD55 | ||
857 | #define ARIZONA_JACK_DETECT_DEBOUNCE 0xD56 | ||
858 | #define ARIZONA_FX_CTRL1 0xE00 | ||
859 | #define ARIZONA_FX_CTRL2 0xE01 | ||
860 | #define ARIZONA_EQ1_1 0xE10 | ||
861 | #define ARIZONA_EQ1_2 0xE11 | ||
862 | #define ARIZONA_EQ1_3 0xE12 | ||
863 | #define ARIZONA_EQ1_4 0xE13 | ||
864 | #define ARIZONA_EQ1_5 0xE14 | ||
865 | #define ARIZONA_EQ1_6 0xE15 | ||
866 | #define ARIZONA_EQ1_7 0xE16 | ||
867 | #define ARIZONA_EQ1_8 0xE17 | ||
868 | #define ARIZONA_EQ1_9 0xE18 | ||
869 | #define ARIZONA_EQ1_10 0xE19 | ||
870 | #define ARIZONA_EQ1_11 0xE1A | ||
871 | #define ARIZONA_EQ1_12 0xE1B | ||
872 | #define ARIZONA_EQ1_13 0xE1C | ||
873 | #define ARIZONA_EQ1_14 0xE1D | ||
874 | #define ARIZONA_EQ1_15 0xE1E | ||
875 | #define ARIZONA_EQ1_16 0xE1F | ||
876 | #define ARIZONA_EQ1_17 0xE20 | ||
877 | #define ARIZONA_EQ1_18 0xE21 | ||
878 | #define ARIZONA_EQ1_19 0xE22 | ||
879 | #define ARIZONA_EQ1_20 0xE23 | ||
880 | #define ARIZONA_EQ1_21 0xE24 | ||
881 | #define ARIZONA_EQ2_1 0xE26 | ||
882 | #define ARIZONA_EQ2_2 0xE27 | ||
883 | #define ARIZONA_EQ2_3 0xE28 | ||
884 | #define ARIZONA_EQ2_4 0xE29 | ||
885 | #define ARIZONA_EQ2_5 0xE2A | ||
886 | #define ARIZONA_EQ2_6 0xE2B | ||
887 | #define ARIZONA_EQ2_7 0xE2C | ||
888 | #define ARIZONA_EQ2_8 0xE2D | ||
889 | #define ARIZONA_EQ2_9 0xE2E | ||
890 | #define ARIZONA_EQ2_10 0xE2F | ||
891 | #define ARIZONA_EQ2_11 0xE30 | ||
892 | #define ARIZONA_EQ2_12 0xE31 | ||
893 | #define ARIZONA_EQ2_13 0xE32 | ||
894 | #define ARIZONA_EQ2_14 0xE33 | ||
895 | #define ARIZONA_EQ2_15 0xE34 | ||
896 | #define ARIZONA_EQ2_16 0xE35 | ||
897 | #define ARIZONA_EQ2_17 0xE36 | ||
898 | #define ARIZONA_EQ2_18 0xE37 | ||
899 | #define ARIZONA_EQ2_19 0xE38 | ||
900 | #define ARIZONA_EQ2_20 0xE39 | ||
901 | #define ARIZONA_EQ2_21 0xE3A | ||
902 | #define ARIZONA_EQ3_1 0xE3C | ||
903 | #define ARIZONA_EQ3_2 0xE3D | ||
904 | #define ARIZONA_EQ3_3 0xE3E | ||
905 | #define ARIZONA_EQ3_4 0xE3F | ||
906 | #define ARIZONA_EQ3_5 0xE40 | ||
907 | #define ARIZONA_EQ3_6 0xE41 | ||
908 | #define ARIZONA_EQ3_7 0xE42 | ||
909 | #define ARIZONA_EQ3_8 0xE43 | ||
910 | #define ARIZONA_EQ3_9 0xE44 | ||
911 | #define ARIZONA_EQ3_10 0xE45 | ||
912 | #define ARIZONA_EQ3_11 0xE46 | ||
913 | #define ARIZONA_EQ3_12 0xE47 | ||
914 | #define ARIZONA_EQ3_13 0xE48 | ||
915 | #define ARIZONA_EQ3_14 0xE49 | ||
916 | #define ARIZONA_EQ3_15 0xE4A | ||
917 | #define ARIZONA_EQ3_16 0xE4B | ||
918 | #define ARIZONA_EQ3_17 0xE4C | ||
919 | #define ARIZONA_EQ3_18 0xE4D | ||
920 | #define ARIZONA_EQ3_19 0xE4E | ||
921 | #define ARIZONA_EQ3_20 0xE4F | ||
922 | #define ARIZONA_EQ3_21 0xE50 | ||
923 | #define ARIZONA_EQ4_1 0xE52 | ||
924 | #define ARIZONA_EQ4_2 0xE53 | ||
925 | #define ARIZONA_EQ4_3 0xE54 | ||
926 | #define ARIZONA_EQ4_4 0xE55 | ||
927 | #define ARIZONA_EQ4_5 0xE56 | ||
928 | #define ARIZONA_EQ4_6 0xE57 | ||
929 | #define ARIZONA_EQ4_7 0xE58 | ||
930 | #define ARIZONA_EQ4_8 0xE59 | ||
931 | #define ARIZONA_EQ4_9 0xE5A | ||
932 | #define ARIZONA_EQ4_10 0xE5B | ||
933 | #define ARIZONA_EQ4_11 0xE5C | ||
934 | #define ARIZONA_EQ4_12 0xE5D | ||
935 | #define ARIZONA_EQ4_13 0xE5E | ||
936 | #define ARIZONA_EQ4_14 0xE5F | ||
937 | #define ARIZONA_EQ4_15 0xE60 | ||
938 | #define ARIZONA_EQ4_16 0xE61 | ||
939 | #define ARIZONA_EQ4_17 0xE62 | ||
940 | #define ARIZONA_EQ4_18 0xE63 | ||
941 | #define ARIZONA_EQ4_19 0xE64 | ||
942 | #define ARIZONA_EQ4_20 0xE65 | ||
943 | #define ARIZONA_EQ4_21 0xE66 | ||
944 | #define ARIZONA_DRC1_CTRL1 0xE80 | ||
945 | #define ARIZONA_DRC1_CTRL2 0xE81 | ||
946 | #define ARIZONA_DRC1_CTRL3 0xE82 | ||
947 | #define ARIZONA_DRC1_CTRL4 0xE83 | ||
948 | #define ARIZONA_DRC1_CTRL5 0xE84 | ||
949 | #define ARIZONA_DRC2_CTRL1 0xE89 | ||
950 | #define ARIZONA_DRC2_CTRL2 0xE8A | ||
951 | #define ARIZONA_DRC2_CTRL3 0xE8B | ||
952 | #define ARIZONA_DRC2_CTRL4 0xE8C | ||
953 | #define ARIZONA_DRC2_CTRL5 0xE8D | ||
954 | #define ARIZONA_HPLPF1_1 0xEC0 | ||
955 | #define ARIZONA_HPLPF1_2 0xEC1 | ||
956 | #define ARIZONA_HPLPF2_1 0xEC4 | ||
957 | #define ARIZONA_HPLPF2_2 0xEC5 | ||
958 | #define ARIZONA_HPLPF3_1 0xEC8 | ||
959 | #define ARIZONA_HPLPF3_2 0xEC9 | ||
960 | #define ARIZONA_HPLPF4_1 0xECC | ||
961 | #define ARIZONA_HPLPF4_2 0xECD | ||
962 | #define ARIZONA_ASRC_ENABLE 0xEE0 | ||
963 | #define ARIZONA_ASRC_STATUS 0xEE1 | ||
964 | #define ARIZONA_ASRC_RATE1 0xEE2 | ||
965 | #define ARIZONA_ASRC_RATE2 0xEE3 | ||
966 | #define ARIZONA_ISRC_1_CTRL_1 0xEF0 | ||
967 | #define ARIZONA_ISRC_1_CTRL_2 0xEF1 | ||
968 | #define ARIZONA_ISRC_1_CTRL_3 0xEF2 | ||
969 | #define ARIZONA_ISRC_2_CTRL_1 0xEF3 | ||
970 | #define ARIZONA_ISRC_2_CTRL_2 0xEF4 | ||
971 | #define ARIZONA_ISRC_2_CTRL_3 0xEF5 | ||
972 | #define ARIZONA_ISRC_3_CTRL_1 0xEF6 | ||
973 | #define ARIZONA_ISRC_3_CTRL_2 0xEF7 | ||
974 | #define ARIZONA_ISRC_3_CTRL_3 0xEF8 | ||
975 | #define ARIZONA_CLOCK_CONTROL 0xF00 | ||
976 | #define ARIZONA_ANC_SRC 0xF01 | ||
977 | #define ARIZONA_DSP_STATUS 0xF02 | ||
978 | #define ARIZONA_DSP1_CONTROL_1 0x1100 | ||
979 | #define ARIZONA_DSP1_CLOCKING_1 0x1101 | ||
980 | #define ARIZONA_DSP1_STATUS_1 0x1104 | ||
981 | #define ARIZONA_DSP1_STATUS_2 0x1105 | ||
982 | #define ARIZONA_DSP2_CONTROL_1 0x1200 | ||
983 | #define ARIZONA_DSP2_CLOCKING_1 0x1201 | ||
984 | #define ARIZONA_DSP2_STATUS_1 0x1204 | ||
985 | #define ARIZONA_DSP2_STATUS_2 0x1205 | ||
986 | #define ARIZONA_DSP3_CONTROL_1 0x1300 | ||
987 | #define ARIZONA_DSP3_CLOCKING_1 0x1301 | ||
988 | #define ARIZONA_DSP3_STATUS_1 0x1304 | ||
989 | #define ARIZONA_DSP3_STATUS_2 0x1305 | ||
990 | #define ARIZONA_DSP4_CONTROL_1 0x1400 | ||
991 | #define ARIZONA_DSP4_CLOCKING_1 0x1401 | ||
992 | #define ARIZONA_DSP4_STATUS_1 0x1404 | ||
993 | #define ARIZONA_DSP4_STATUS_2 0x1405 | ||
994 | |||
995 | /* | ||
996 | * Field Definitions. | ||
997 | */ | ||
998 | |||
999 | /* | ||
1000 | * R0 (0x00) - software reset | ||
1001 | */ | ||
1002 | #define ARIZONA_SW_RST_DEV_ID1_MASK 0xFFFF /* SW_RST_DEV_ID1 - [15:0] */ | ||
1003 | #define ARIZONA_SW_RST_DEV_ID1_SHIFT 0 /* SW_RST_DEV_ID1 - [15:0] */ | ||
1004 | #define ARIZONA_SW_RST_DEV_ID1_WIDTH 16 /* SW_RST_DEV_ID1 - [15:0] */ | ||
1005 | |||
1006 | /* | ||
1007 | * R1 (0x01) - Device Revision | ||
1008 | */ | ||
1009 | #define ARIZONA_DEVICE_REVISION_MASK 0x00FF /* DEVICE_REVISION - [7:0] */ | ||
1010 | #define ARIZONA_DEVICE_REVISION_SHIFT 0 /* DEVICE_REVISION - [7:0] */ | ||
1011 | #define ARIZONA_DEVICE_REVISION_WIDTH 8 /* DEVICE_REVISION - [7:0] */ | ||
1012 | |||
1013 | /* | ||
1014 | * R8 (0x08) - Ctrl IF SPI CFG 1 | ||
1015 | */ | ||
1016 | #define ARIZONA_SPI_CFG 0x0010 /* SPI_CFG */ | ||
1017 | #define ARIZONA_SPI_CFG_MASK 0x0010 /* SPI_CFG */ | ||
1018 | #define ARIZONA_SPI_CFG_SHIFT 4 /* SPI_CFG */ | ||
1019 | #define ARIZONA_SPI_CFG_WIDTH 1 /* SPI_CFG */ | ||
1020 | #define ARIZONA_SPI_4WIRE 0x0008 /* SPI_4WIRE */ | ||
1021 | #define ARIZONA_SPI_4WIRE_MASK 0x0008 /* SPI_4WIRE */ | ||
1022 | #define ARIZONA_SPI_4WIRE_SHIFT 3 /* SPI_4WIRE */ | ||
1023 | #define ARIZONA_SPI_4WIRE_WIDTH 1 /* SPI_4WIRE */ | ||
1024 | #define ARIZONA_SPI_AUTO_INC_MASK 0x0003 /* SPI_AUTO_INC - [1:0] */ | ||
1025 | #define ARIZONA_SPI_AUTO_INC_SHIFT 0 /* SPI_AUTO_INC - [1:0] */ | ||
1026 | #define ARIZONA_SPI_AUTO_INC_WIDTH 2 /* SPI_AUTO_INC - [1:0] */ | ||
1027 | |||
1028 | /* | ||
1029 | * R9 (0x09) - Ctrl IF I2C1 CFG 1 | ||
1030 | */ | ||
1031 | #define ARIZONA_I2C1_AUTO_INC_MASK 0x0003 /* I2C1_AUTO_INC - [1:0] */ | ||
1032 | #define ARIZONA_I2C1_AUTO_INC_SHIFT 0 /* I2C1_AUTO_INC - [1:0] */ | ||
1033 | #define ARIZONA_I2C1_AUTO_INC_WIDTH 2 /* I2C1_AUTO_INC - [1:0] */ | ||
1034 | |||
1035 | /* | ||
1036 | * R13 (0x0D) - Ctrl IF Status 1 | ||
1037 | */ | ||
1038 | #define ARIZONA_I2C1_BUSY 0x0020 /* I2C1_BUSY */ | ||
1039 | #define ARIZONA_I2C1_BUSY_MASK 0x0020 /* I2C1_BUSY */ | ||
1040 | #define ARIZONA_I2C1_BUSY_SHIFT 5 /* I2C1_BUSY */ | ||
1041 | #define ARIZONA_I2C1_BUSY_WIDTH 1 /* I2C1_BUSY */ | ||
1042 | #define ARIZONA_SPI_BUSY 0x0010 /* SPI_BUSY */ | ||
1043 | #define ARIZONA_SPI_BUSY_MASK 0x0010 /* SPI_BUSY */ | ||
1044 | #define ARIZONA_SPI_BUSY_SHIFT 4 /* SPI_BUSY */ | ||
1045 | #define ARIZONA_SPI_BUSY_WIDTH 1 /* SPI_BUSY */ | ||
1046 | |||
1047 | /* | ||
1048 | * R22 (0x16) - Write Sequencer Ctrl 0 | ||
1049 | */ | ||
1050 | #define ARIZONA_WSEQ_ABORT 0x0800 /* WSEQ_ABORT */ | ||
1051 | #define ARIZONA_WSEQ_ABORT_MASK 0x0800 /* WSEQ_ABORT */ | ||
1052 | #define ARIZONA_WSEQ_ABORT_SHIFT 11 /* WSEQ_ABORT */ | ||
1053 | #define ARIZONA_WSEQ_ABORT_WIDTH 1 /* WSEQ_ABORT */ | ||
1054 | #define ARIZONA_WSEQ_START 0x0400 /* WSEQ_START */ | ||
1055 | #define ARIZONA_WSEQ_START_MASK 0x0400 /* WSEQ_START */ | ||
1056 | #define ARIZONA_WSEQ_START_SHIFT 10 /* WSEQ_START */ | ||
1057 | #define ARIZONA_WSEQ_START_WIDTH 1 /* WSEQ_START */ | ||
1058 | #define ARIZONA_WSEQ_ENA 0x0200 /* WSEQ_ENA */ | ||
1059 | #define ARIZONA_WSEQ_ENA_MASK 0x0200 /* WSEQ_ENA */ | ||
1060 | #define ARIZONA_WSEQ_ENA_SHIFT 9 /* WSEQ_ENA */ | ||
1061 | #define ARIZONA_WSEQ_ENA_WIDTH 1 /* WSEQ_ENA */ | ||
1062 | #define ARIZONA_WSEQ_START_INDEX_MASK 0x01FF /* WSEQ_START_INDEX - [8:0] */ | ||
1063 | #define ARIZONA_WSEQ_START_INDEX_SHIFT 0 /* WSEQ_START_INDEX - [8:0] */ | ||
1064 | #define ARIZONA_WSEQ_START_INDEX_WIDTH 9 /* WSEQ_START_INDEX - [8:0] */ | ||
1065 | |||
1066 | /* | ||
1067 | * R23 (0x17) - Write Sequencer Ctrl 1 | ||
1068 | */ | ||
1069 | #define ARIZONA_WSEQ_BUSY 0x0200 /* WSEQ_BUSY */ | ||
1070 | #define ARIZONA_WSEQ_BUSY_MASK 0x0200 /* WSEQ_BUSY */ | ||
1071 | #define ARIZONA_WSEQ_BUSY_SHIFT 9 /* WSEQ_BUSY */ | ||
1072 | #define ARIZONA_WSEQ_BUSY_WIDTH 1 /* WSEQ_BUSY */ | ||
1073 | #define ARIZONA_WSEQ_CURRENT_INDEX_MASK 0x01FF /* WSEQ_CURRENT_INDEX - [8:0] */ | ||
1074 | #define ARIZONA_WSEQ_CURRENT_INDEX_SHIFT 0 /* WSEQ_CURRENT_INDEX - [8:0] */ | ||
1075 | #define ARIZONA_WSEQ_CURRENT_INDEX_WIDTH 9 /* WSEQ_CURRENT_INDEX - [8:0] */ | ||
1076 | |||
1077 | /* | ||
1078 | * R24 (0x18) - Write Sequencer Ctrl 2 | ||
1079 | */ | ||
1080 | #define ARIZONA_LOAD_DEFAULTS 0x0002 /* LOAD_DEFAULTS */ | ||
1081 | #define ARIZONA_LOAD_DEFAULTS_MASK 0x0002 /* LOAD_DEFAULTS */ | ||
1082 | #define ARIZONA_LOAD_DEFAULTS_SHIFT 1 /* LOAD_DEFAULTS */ | ||
1083 | #define ARIZONA_LOAD_DEFAULTS_WIDTH 1 /* LOAD_DEFAULTS */ | ||
1084 | #define ARIZONA_WSEQ_LOAD_MEM 0x0001 /* WSEQ_LOAD_MEM */ | ||
1085 | #define ARIZONA_WSEQ_LOAD_MEM_MASK 0x0001 /* WSEQ_LOAD_MEM */ | ||
1086 | #define ARIZONA_WSEQ_LOAD_MEM_SHIFT 0 /* WSEQ_LOAD_MEM */ | ||
1087 | #define ARIZONA_WSEQ_LOAD_MEM_WIDTH 1 /* WSEQ_LOAD_MEM */ | ||
1088 | |||
1089 | /* | ||
1090 | * R26 (0x1A) - Write Sequencer PROM | ||
1091 | */ | ||
1092 | #define ARIZONA_WSEQ_OTP_WRITE 0x0001 /* WSEQ_OTP_WRITE */ | ||
1093 | #define ARIZONA_WSEQ_OTP_WRITE_MASK 0x0001 /* WSEQ_OTP_WRITE */ | ||
1094 | #define ARIZONA_WSEQ_OTP_WRITE_SHIFT 0 /* WSEQ_OTP_WRITE */ | ||
1095 | #define ARIZONA_WSEQ_OTP_WRITE_WIDTH 1 /* WSEQ_OTP_WRITE */ | ||
1096 | |||
1097 | /* | ||
1098 | * R32 (0x20) - Tone Generator 1 | ||
1099 | */ | ||
1100 | #define ARIZONA_TONE_RATE_MASK 0x7800 /* TONE_RATE - [14:11] */ | ||
1101 | #define ARIZONA_TONE_RATE_SHIFT 11 /* TONE_RATE - [14:11] */ | ||
1102 | #define ARIZONA_TONE_RATE_WIDTH 4 /* TONE_RATE - [14:11] */ | ||
1103 | #define ARIZONA_TONE_OFFSET_MASK 0x0300 /* TONE_OFFSET - [9:8] */ | ||
1104 | #define ARIZONA_TONE_OFFSET_SHIFT 8 /* TONE_OFFSET - [9:8] */ | ||
1105 | #define ARIZONA_TONE_OFFSET_WIDTH 2 /* TONE_OFFSET - [9:8] */ | ||
1106 | #define ARIZONA_TONE2_OVD 0x0020 /* TONE2_OVD */ | ||
1107 | #define ARIZONA_TONE2_OVD_MASK 0x0020 /* TONE2_OVD */ | ||
1108 | #define ARIZONA_TONE2_OVD_SHIFT 5 /* TONE2_OVD */ | ||
1109 | #define ARIZONA_TONE2_OVD_WIDTH 1 /* TONE2_OVD */ | ||
1110 | #define ARIZONA_TONE1_OVD 0x0010 /* TONE1_OVD */ | ||
1111 | #define ARIZONA_TONE1_OVD_MASK 0x0010 /* TONE1_OVD */ | ||
1112 | #define ARIZONA_TONE1_OVD_SHIFT 4 /* TONE1_OVD */ | ||
1113 | #define ARIZONA_TONE1_OVD_WIDTH 1 /* TONE1_OVD */ | ||
1114 | #define ARIZONA_TONE2_ENA 0x0002 /* TONE2_ENA */ | ||
1115 | #define ARIZONA_TONE2_ENA_MASK 0x0002 /* TONE2_ENA */ | ||
1116 | #define ARIZONA_TONE2_ENA_SHIFT 1 /* TONE2_ENA */ | ||
1117 | #define ARIZONA_TONE2_ENA_WIDTH 1 /* TONE2_ENA */ | ||
1118 | #define ARIZONA_TONE1_ENA 0x0001 /* TONE1_ENA */ | ||
1119 | #define ARIZONA_TONE1_ENA_MASK 0x0001 /* TONE1_ENA */ | ||
1120 | #define ARIZONA_TONE1_ENA_SHIFT 0 /* TONE1_ENA */ | ||
1121 | #define ARIZONA_TONE1_ENA_WIDTH 1 /* TONE1_ENA */ | ||
1122 | |||
1123 | /* | ||
1124 | * R33 (0x21) - Tone Generator 2 | ||
1125 | */ | ||
1126 | #define ARIZONA_TONE1_LVL_0_MASK 0xFFFF /* TONE1_LVL - [15:0] */ | ||
1127 | #define ARIZONA_TONE1_LVL_0_SHIFT 0 /* TONE1_LVL - [15:0] */ | ||
1128 | #define ARIZONA_TONE1_LVL_0_WIDTH 16 /* TONE1_LVL - [15:0] */ | ||
1129 | |||
1130 | /* | ||
1131 | * R34 (0x22) - Tone Generator 3 | ||
1132 | */ | ||
1133 | #define ARIZONA_TONE1_LVL_MASK 0x00FF /* TONE1_LVL - [7:0] */ | ||
1134 | #define ARIZONA_TONE1_LVL_SHIFT 0 /* TONE1_LVL - [7:0] */ | ||
1135 | #define ARIZONA_TONE1_LVL_WIDTH 8 /* TONE1_LVL - [7:0] */ | ||
1136 | |||
1137 | /* | ||
1138 | * R35 (0x23) - Tone Generator 4 | ||
1139 | */ | ||
1140 | #define ARIZONA_TONE2_LVL_0_MASK 0xFFFF /* TONE2_LVL - [15:0] */ | ||
1141 | #define ARIZONA_TONE2_LVL_0_SHIFT 0 /* TONE2_LVL - [15:0] */ | ||
1142 | #define ARIZONA_TONE2_LVL_0_WIDTH 16 /* TONE2_LVL - [15:0] */ | ||
1143 | |||
1144 | /* | ||
1145 | * R36 (0x24) - Tone Generator 5 | ||
1146 | */ | ||
1147 | #define ARIZONA_TONE2_LVL_MASK 0x00FF /* TONE2_LVL - [7:0] */ | ||
1148 | #define ARIZONA_TONE2_LVL_SHIFT 0 /* TONE2_LVL - [7:0] */ | ||
1149 | #define ARIZONA_TONE2_LVL_WIDTH 8 /* TONE2_LVL - [7:0] */ | ||
1150 | |||
1151 | /* | ||
1152 | * R48 (0x30) - PWM Drive 1 | ||
1153 | */ | ||
1154 | #define ARIZONA_PWM_RATE_MASK 0x7800 /* PWM_RATE - [14:11] */ | ||
1155 | #define ARIZONA_PWM_RATE_SHIFT 11 /* PWM_RATE - [14:11] */ | ||
1156 | #define ARIZONA_PWM_RATE_WIDTH 4 /* PWM_RATE - [14:11] */ | ||
1157 | #define ARIZONA_PWM_CLK_SEL_MASK 0x0700 /* PWM_CLK_SEL - [10:8] */ | ||
1158 | #define ARIZONA_PWM_CLK_SEL_SHIFT 8 /* PWM_CLK_SEL - [10:8] */ | ||
1159 | #define ARIZONA_PWM_CLK_SEL_WIDTH 3 /* PWM_CLK_SEL - [10:8] */ | ||
1160 | #define ARIZONA_PWM2_OVD 0x0020 /* PWM2_OVD */ | ||
1161 | #define ARIZONA_PWM2_OVD_MASK 0x0020 /* PWM2_OVD */ | ||
1162 | #define ARIZONA_PWM2_OVD_SHIFT 5 /* PWM2_OVD */ | ||
1163 | #define ARIZONA_PWM2_OVD_WIDTH 1 /* PWM2_OVD */ | ||
1164 | #define ARIZONA_PWM1_OVD 0x0010 /* PWM1_OVD */ | ||
1165 | #define ARIZONA_PWM1_OVD_MASK 0x0010 /* PWM1_OVD */ | ||
1166 | #define ARIZONA_PWM1_OVD_SHIFT 4 /* PWM1_OVD */ | ||
1167 | #define ARIZONA_PWM1_OVD_WIDTH 1 /* PWM1_OVD */ | ||
1168 | #define ARIZONA_PWM2_ENA 0x0002 /* PWM2_ENA */ | ||
1169 | #define ARIZONA_PWM2_ENA_MASK 0x0002 /* PWM2_ENA */ | ||
1170 | #define ARIZONA_PWM2_ENA_SHIFT 1 /* PWM2_ENA */ | ||
1171 | #define ARIZONA_PWM2_ENA_WIDTH 1 /* PWM2_ENA */ | ||
1172 | #define ARIZONA_PWM1_ENA 0x0001 /* PWM1_ENA */ | ||
1173 | #define ARIZONA_PWM1_ENA_MASK 0x0001 /* PWM1_ENA */ | ||
1174 | #define ARIZONA_PWM1_ENA_SHIFT 0 /* PWM1_ENA */ | ||
1175 | #define ARIZONA_PWM1_ENA_WIDTH 1 /* PWM1_ENA */ | ||
1176 | |||
1177 | /* | ||
1178 | * R49 (0x31) - PWM Drive 2 | ||
1179 | */ | ||
1180 | #define ARIZONA_PWM1_LVL_MASK 0x03FF /* PWM1_LVL - [9:0] */ | ||
1181 | #define ARIZONA_PWM1_LVL_SHIFT 0 /* PWM1_LVL - [9:0] */ | ||
1182 | #define ARIZONA_PWM1_LVL_WIDTH 10 /* PWM1_LVL - [9:0] */ | ||
1183 | |||
1184 | /* | ||
1185 | * R50 (0x32) - PWM Drive 3 | ||
1186 | */ | ||
1187 | #define ARIZONA_PWM2_LVL_MASK 0x03FF /* PWM2_LVL - [9:0] */ | ||
1188 | #define ARIZONA_PWM2_LVL_SHIFT 0 /* PWM2_LVL - [9:0] */ | ||
1189 | #define ARIZONA_PWM2_LVL_WIDTH 10 /* PWM2_LVL - [9:0] */ | ||
1190 | |||
1191 | /* | ||
1192 | * R64 (0x40) - Wake control | ||
1193 | */ | ||
1194 | #define ARIZONA_WKUP_GP5_FALL 0x0020 /* WKUP_GP5_FALL */ | ||
1195 | #define ARIZONA_WKUP_GP5_FALL_MASK 0x0020 /* WKUP_GP5_FALL */ | ||
1196 | #define ARIZONA_WKUP_GP5_FALL_SHIFT 5 /* WKUP_GP5_FALL */ | ||
1197 | #define ARIZONA_WKUP_GP5_FALL_WIDTH 1 /* WKUP_GP5_FALL */ | ||
1198 | #define ARIZONA_WKUP_GP5_RISE 0x0010 /* WKUP_GP5_RISE */ | ||
1199 | #define ARIZONA_WKUP_GP5_RISE_MASK 0x0010 /* WKUP_GP5_RISE */ | ||
1200 | #define ARIZONA_WKUP_GP5_RISE_SHIFT 4 /* WKUP_GP5_RISE */ | ||
1201 | #define ARIZONA_WKUP_GP5_RISE_WIDTH 1 /* WKUP_GP5_RISE */ | ||
1202 | #define ARIZONA_WKUP_JD1_FALL 0x0008 /* WKUP_JD1_FALL */ | ||
1203 | #define ARIZONA_WKUP_JD1_FALL_MASK 0x0008 /* WKUP_JD1_FALL */ | ||
1204 | #define ARIZONA_WKUP_JD1_FALL_SHIFT 3 /* WKUP_JD1_FALL */ | ||
1205 | #define ARIZONA_WKUP_JD1_FALL_WIDTH 1 /* WKUP_JD1_FALL */ | ||
1206 | #define ARIZONA_WKUP_JD1_RISE 0x0004 /* WKUP_JD1_RISE */ | ||
1207 | #define ARIZONA_WKUP_JD1_RISE_MASK 0x0004 /* WKUP_JD1_RISE */ | ||
1208 | #define ARIZONA_WKUP_JD1_RISE_SHIFT 2 /* WKUP_JD1_RISE */ | ||
1209 | #define ARIZONA_WKUP_JD1_RISE_WIDTH 1 /* WKUP_JD1_RISE */ | ||
1210 | #define ARIZONA_WKUP_JD2_FALL 0x0002 /* WKUP_JD2_FALL */ | ||
1211 | #define ARIZONA_WKUP_JD2_FALL_MASK 0x0002 /* WKUP_JD2_FALL */ | ||
1212 | #define ARIZONA_WKUP_JD2_FALL_SHIFT 1 /* WKUP_JD2_FALL */ | ||
1213 | #define ARIZONA_WKUP_JD2_FALL_WIDTH 1 /* WKUP_JD2_FALL */ | ||
1214 | #define ARIZONA_WKUP_JD2_RISE 0x0001 /* WKUP_JD2_RISE */ | ||
1215 | #define ARIZONA_WKUP_JD2_RISE_MASK 0x0001 /* WKUP_JD2_RISE */ | ||
1216 | #define ARIZONA_WKUP_JD2_RISE_SHIFT 0 /* WKUP_JD2_RISE */ | ||
1217 | #define ARIZONA_WKUP_JD2_RISE_WIDTH 1 /* WKUP_JD2_RISE */ | ||
1218 | |||
1219 | /* | ||
1220 | * R65 (0x41) - Sequence control | ||
1221 | */ | ||
1222 | #define ARIZONA_WSEQ_ENA_GP5_FALL 0x0020 /* WSEQ_ENA_GP5_FALL */ | ||
1223 | #define ARIZONA_WSEQ_ENA_GP5_FALL_MASK 0x0020 /* WSEQ_ENA_GP5_FALL */ | ||
1224 | #define ARIZONA_WSEQ_ENA_GP5_FALL_SHIFT 5 /* WSEQ_ENA_GP5_FALL */ | ||
1225 | #define ARIZONA_WSEQ_ENA_GP5_FALL_WIDTH 1 /* WSEQ_ENA_GP5_FALL */ | ||
1226 | #define ARIZONA_WSEQ_ENA_GP5_RISE 0x0010 /* WSEQ_ENA_GP5_RISE */ | ||
1227 | #define ARIZONA_WSEQ_ENA_GP5_RISE_MASK 0x0010 /* WSEQ_ENA_GP5_RISE */ | ||
1228 | #define ARIZONA_WSEQ_ENA_GP5_RISE_SHIFT 4 /* WSEQ_ENA_GP5_RISE */ | ||
1229 | #define ARIZONA_WSEQ_ENA_GP5_RISE_WIDTH 1 /* WSEQ_ENA_GP5_RISE */ | ||
1230 | #define ARIZONA_WSEQ_ENA_JD1_FALL 0x0008 /* WSEQ_ENA_JD1_FALL */ | ||
1231 | #define ARIZONA_WSEQ_ENA_JD1_FALL_MASK 0x0008 /* WSEQ_ENA_JD1_FALL */ | ||
1232 | #define ARIZONA_WSEQ_ENA_JD1_FALL_SHIFT 3 /* WSEQ_ENA_JD1_FALL */ | ||
1233 | #define ARIZONA_WSEQ_ENA_JD1_FALL_WIDTH 1 /* WSEQ_ENA_JD1_FALL */ | ||
1234 | #define ARIZONA_WSEQ_ENA_JD1_RISE 0x0004 /* WSEQ_ENA_JD1_RISE */ | ||
1235 | #define ARIZONA_WSEQ_ENA_JD1_RISE_MASK 0x0004 /* WSEQ_ENA_JD1_RISE */ | ||
1236 | #define ARIZONA_WSEQ_ENA_JD1_RISE_SHIFT 2 /* WSEQ_ENA_JD1_RISE */ | ||
1237 | #define ARIZONA_WSEQ_ENA_JD1_RISE_WIDTH 1 /* WSEQ_ENA_JD1_RISE */ | ||
1238 | #define ARIZONA_WSEQ_ENA_JD2_FALL 0x0002 /* WSEQ_ENA_JD2_FALL */ | ||
1239 | #define ARIZONA_WSEQ_ENA_JD2_FALL_MASK 0x0002 /* WSEQ_ENA_JD2_FALL */ | ||
1240 | #define ARIZONA_WSEQ_ENA_JD2_FALL_SHIFT 1 /* WSEQ_ENA_JD2_FALL */ | ||
1241 | #define ARIZONA_WSEQ_ENA_JD2_FALL_WIDTH 1 /* WSEQ_ENA_JD2_FALL */ | ||
1242 | #define ARIZONA_WSEQ_ENA_JD2_RISE 0x0001 /* WSEQ_ENA_JD2_RISE */ | ||
1243 | #define ARIZONA_WSEQ_ENA_JD2_RISE_MASK 0x0001 /* WSEQ_ENA_JD2_RISE */ | ||
1244 | #define ARIZONA_WSEQ_ENA_JD2_RISE_SHIFT 0 /* WSEQ_ENA_JD2_RISE */ | ||
1245 | #define ARIZONA_WSEQ_ENA_JD2_RISE_WIDTH 1 /* WSEQ_ENA_JD2_RISE */ | ||
1246 | |||
1247 | /* | ||
1248 | * R97 (0x61) - Sample Rate Sequence Select 1 | ||
1249 | */ | ||
1250 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_A_SEQ_ADDR_MASK 0x01FF /* WSEQ_SAMPLE_RATE_DETECT_A_SEQ_ADDR - [8:0] */ | ||
1251 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_A_SEQ_ADDR_SHIFT 0 /* WSEQ_SAMPLE_RATE_DETECT_A_SEQ_ADDR - [8:0] */ | ||
1252 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_A_SEQ_ADDR_WIDTH 9 /* WSEQ_SAMPLE_RATE_DETECT_A_SEQ_ADDR - [8:0] */ | ||
1253 | |||
1254 | /* | ||
1255 | * R98 (0x62) - Sample Rate Sequence Select 2 | ||
1256 | */ | ||
1257 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_B_SEQ_ADDR_MASK 0x01FF /* WSEQ_SAMPLE_RATE_DETECT_B_SEQ_ADDR - [8:0] */ | ||
1258 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_B_SEQ_ADDR_SHIFT 0 /* WSEQ_SAMPLE_RATE_DETECT_B_SEQ_ADDR - [8:0] */ | ||
1259 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_B_SEQ_ADDR_WIDTH 9 /* WSEQ_SAMPLE_RATE_DETECT_B_SEQ_ADDR - [8:0] */ | ||
1260 | |||
1261 | /* | ||
1262 | * R99 (0x63) - Sample Rate Sequence Select 3 | ||
1263 | */ | ||
1264 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_C_SEQ_ADDR_MASK 0x01FF /* WSEQ_SAMPLE_RATE_DETECT_C_SEQ_ADDR - [8:0] */ | ||
1265 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_C_SEQ_ADDR_SHIFT 0 /* WSEQ_SAMPLE_RATE_DETECT_C_SEQ_ADDR - [8:0] */ | ||
1266 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_C_SEQ_ADDR_WIDTH 9 /* WSEQ_SAMPLE_RATE_DETECT_C_SEQ_ADDR - [8:0] */ | ||
1267 | |||
1268 | /* | ||
1269 | * R100 (0x64) - Sample Rate Sequence Select 4 | ||
1270 | */ | ||
1271 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_D_SEQ_ADDR_MASK 0x01FF /* WSEQ_SAMPLE_RATE_DETECT_D_SEQ_ADDR - [8:0] */ | ||
1272 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_D_SEQ_ADDR_SHIFT 0 /* WSEQ_SAMPLE_RATE_DETECT_D_SEQ_ADDR - [8:0] */ | ||
1273 | #define ARIZONA_WSEQ_SAMPLE_RATE_DETECT_D_SEQ_ADDR_WIDTH 9 /* WSEQ_SAMPLE_RATE_DETECT_D_SEQ_ADDR - [8:0] */ | ||
1274 | |||
1275 | /* | ||
1276 | * R104 (0x68) - Always On Triggers Sequence Select 1 | ||
1277 | */ | ||
1278 | #define ARIZONA_WSEQ_GP5_RISE_SEQ_ADDR_MASK 0x01FF /* WSEQ_GP5_RISE_SEQ_ADDR - [8:0] */ | ||
1279 | #define ARIZONA_WSEQ_GP5_RISE_SEQ_ADDR_SHIFT 0 /* WSEQ_GP5_RISE_SEQ_ADDR - [8:0] */ | ||
1280 | #define ARIZONA_WSEQ_GP5_RISE_SEQ_ADDR_WIDTH 9 /* WSEQ_GP5_RISE_SEQ_ADDR - [8:0] */ | ||
1281 | |||
1282 | /* | ||
1283 | * R105 (0x69) - Always On Triggers Sequence Select 2 | ||
1284 | */ | ||
1285 | #define ARIZONA_WSEQ_GP5_FALL_SEQ_ADDR_MASK 0x01FF /* WSEQ_GP5_FALL_SEQ_ADDR - [8:0] */ | ||
1286 | #define ARIZONA_WSEQ_GP5_FALL_SEQ_ADDR_SHIFT 0 /* WSEQ_GP5_FALL_SEQ_ADDR - [8:0] */ | ||
1287 | #define ARIZONA_WSEQ_GP5_FALL_SEQ_ADDR_WIDTH 9 /* WSEQ_GP5_FALL_SEQ_ADDR - [8:0] */ | ||
1288 | |||
1289 | /* | ||
1290 | * R106 (0x6A) - Always On Triggers Sequence Select 3 | ||
1291 | */ | ||
1292 | #define ARIZONA_WSEQ_JD1_RISE_SEQ_ADDR_MASK 0x01FF /* WSEQ_JD1_RISE_SEQ_ADDR - [8:0] */ | ||
1293 | #define ARIZONA_WSEQ_JD1_RISE_SEQ_ADDR_SHIFT 0 /* WSEQ_JD1_RISE_SEQ_ADDR - [8:0] */ | ||
1294 | #define ARIZONA_WSEQ_JD1_RISE_SEQ_ADDR_WIDTH 9 /* WSEQ_JD1_RISE_SEQ_ADDR - [8:0] */ | ||
1295 | |||
1296 | /* | ||
1297 | * R107 (0x6B) - Always On Triggers Sequence Select 4 | ||
1298 | */ | ||
1299 | #define ARIZONA_WSEQ_JD1_FALL_SEQ_ADDR_MASK 0x01FF /* WSEQ_JD1_FALL_SEQ_ADDR - [8:0] */ | ||
1300 | #define ARIZONA_WSEQ_JD1_FALL_SEQ_ADDR_SHIFT 0 /* WSEQ_JD1_FALL_SEQ_ADDR - [8:0] */ | ||
1301 | #define ARIZONA_WSEQ_JD1_FALL_SEQ_ADDR_WIDTH 9 /* WSEQ_JD1_FALL_SEQ_ADDR - [8:0] */ | ||
1302 | |||
1303 | /* | ||
1304 | * R108 (0x6C) - Always On Triggers Sequence Select 5 | ||
1305 | */ | ||
1306 | #define ARIZONA_WSEQ_JD2_RISE_SEQ_ADDR_MASK 0x01FF /* WSEQ_JD2_RISE_SEQ_ADDR - [8:0] */ | ||
1307 | #define ARIZONA_WSEQ_JD2_RISE_SEQ_ADDR_SHIFT 0 /* WSEQ_JD2_RISE_SEQ_ADDR - [8:0] */ | ||
1308 | #define ARIZONA_WSEQ_JD2_RISE_SEQ_ADDR_WIDTH 9 /* WSEQ_JD2_RISE_SEQ_ADDR - [8:0] */ | ||
1309 | |||
1310 | /* | ||
1311 | * R109 (0x6D) - Always On Triggers Sequence Select 6 | ||
1312 | */ | ||
1313 | #define ARIZONA_WSEQ_JD2_FALL_SEQ_ADDR_MASK 0x01FF /* WSEQ_JD2_FALL_SEQ_ADDR - [8:0] */ | ||
1314 | #define ARIZONA_WSEQ_JD2_FALL_SEQ_ADDR_SHIFT 0 /* WSEQ_JD2_FALL_SEQ_ADDR - [8:0] */ | ||
1315 | #define ARIZONA_WSEQ_JD2_FALL_SEQ_ADDR_WIDTH 9 /* WSEQ_JD2_FALL_SEQ_ADDR - [8:0] */ | ||
1316 | |||
1317 | /* | ||
1318 | * R112 (0x70) - Comfort Noise Generator | ||
1319 | */ | ||
1320 | #define ARIZONA_NOISE_GEN_RATE_MASK 0x7800 /* NOISE_GEN_RATE - [14:11] */ | ||
1321 | #define ARIZONA_NOISE_GEN_RATE_SHIFT 11 /* NOISE_GEN_RATE - [14:11] */ | ||
1322 | #define ARIZONA_NOISE_GEN_RATE_WIDTH 4 /* NOISE_GEN_RATE - [14:11] */ | ||
1323 | #define ARIZONA_NOISE_GEN_ENA 0x0020 /* NOISE_GEN_ENA */ | ||
1324 | #define ARIZONA_NOISE_GEN_ENA_MASK 0x0020 /* NOISE_GEN_ENA */ | ||
1325 | #define ARIZONA_NOISE_GEN_ENA_SHIFT 5 /* NOISE_GEN_ENA */ | ||
1326 | #define ARIZONA_NOISE_GEN_ENA_WIDTH 1 /* NOISE_GEN_ENA */ | ||
1327 | #define ARIZONA_NOISE_GEN_GAIN_MASK 0x001F /* NOISE_GEN_GAIN - [4:0] */ | ||
1328 | #define ARIZONA_NOISE_GEN_GAIN_SHIFT 0 /* NOISE_GEN_GAIN - [4:0] */ | ||
1329 | #define ARIZONA_NOISE_GEN_GAIN_WIDTH 5 /* NOISE_GEN_GAIN - [4:0] */ | ||
1330 | |||
1331 | /* | ||
1332 | * R144 (0x90) - Haptics Control 1 | ||
1333 | */ | ||
1334 | #define ARIZONA_HAP_RATE_MASK 0x7800 /* HAP_RATE - [14:11] */ | ||
1335 | #define ARIZONA_HAP_RATE_SHIFT 11 /* HAP_RATE - [14:11] */ | ||
1336 | #define ARIZONA_HAP_RATE_WIDTH 4 /* HAP_RATE - [14:11] */ | ||
1337 | #define ARIZONA_ONESHOT_TRIG 0x0010 /* ONESHOT_TRIG */ | ||
1338 | #define ARIZONA_ONESHOT_TRIG_MASK 0x0010 /* ONESHOT_TRIG */ | ||
1339 | #define ARIZONA_ONESHOT_TRIG_SHIFT 4 /* ONESHOT_TRIG */ | ||
1340 | #define ARIZONA_ONESHOT_TRIG_WIDTH 1 /* ONESHOT_TRIG */ | ||
1341 | #define ARIZONA_HAP_CTRL_MASK 0x000C /* HAP_CTRL - [3:2] */ | ||
1342 | #define ARIZONA_HAP_CTRL_SHIFT 2 /* HAP_CTRL - [3:2] */ | ||
1343 | #define ARIZONA_HAP_CTRL_WIDTH 2 /* HAP_CTRL - [3:2] */ | ||
1344 | #define ARIZONA_HAP_ACT 0x0002 /* HAP_ACT */ | ||
1345 | #define ARIZONA_HAP_ACT_MASK 0x0002 /* HAP_ACT */ | ||
1346 | #define ARIZONA_HAP_ACT_SHIFT 1 /* HAP_ACT */ | ||
1347 | #define ARIZONA_HAP_ACT_WIDTH 1 /* HAP_ACT */ | ||
1348 | |||
1349 | /* | ||
1350 | * R145 (0x91) - Haptics Control 2 | ||
1351 | */ | ||
1352 | #define ARIZONA_LRA_FREQ_MASK 0x7FFF /* LRA_FREQ - [14:0] */ | ||
1353 | #define ARIZONA_LRA_FREQ_SHIFT 0 /* LRA_FREQ - [14:0] */ | ||
1354 | #define ARIZONA_LRA_FREQ_WIDTH 15 /* LRA_FREQ - [14:0] */ | ||
1355 | |||
1356 | /* | ||
1357 | * R146 (0x92) - Haptics phase 1 intensity | ||
1358 | */ | ||
1359 | #define ARIZONA_PHASE1_INTENSITY_MASK 0x00FF /* PHASE1_INTENSITY - [7:0] */ | ||
1360 | #define ARIZONA_PHASE1_INTENSITY_SHIFT 0 /* PHASE1_INTENSITY - [7:0] */ | ||
1361 | #define ARIZONA_PHASE1_INTENSITY_WIDTH 8 /* PHASE1_INTENSITY - [7:0] */ | ||
1362 | |||
1363 | /* | ||
1364 | * R147 (0x93) - Haptics phase 1 duration | ||
1365 | */ | ||
1366 | #define ARIZONA_PHASE1_DURATION_MASK 0x01FF /* PHASE1_DURATION - [8:0] */ | ||
1367 | #define ARIZONA_PHASE1_DURATION_SHIFT 0 /* PHASE1_DURATION - [8:0] */ | ||
1368 | #define ARIZONA_PHASE1_DURATION_WIDTH 9 /* PHASE1_DURATION - [8:0] */ | ||
1369 | |||
1370 | /* | ||
1371 | * R148 (0x94) - Haptics phase 2 intensity | ||
1372 | */ | ||
1373 | #define ARIZONA_PHASE2_INTENSITY_MASK 0x00FF /* PHASE2_INTENSITY - [7:0] */ | ||
1374 | #define ARIZONA_PHASE2_INTENSITY_SHIFT 0 /* PHASE2_INTENSITY - [7:0] */ | ||
1375 | #define ARIZONA_PHASE2_INTENSITY_WIDTH 8 /* PHASE2_INTENSITY - [7:0] */ | ||
1376 | |||
1377 | /* | ||
1378 | * R149 (0x95) - Haptics phase 2 duration | ||
1379 | */ | ||
1380 | #define ARIZONA_PHASE2_DURATION_MASK 0x07FF /* PHASE2_DURATION - [10:0] */ | ||
1381 | #define ARIZONA_PHASE2_DURATION_SHIFT 0 /* PHASE2_DURATION - [10:0] */ | ||
1382 | #define ARIZONA_PHASE2_DURATION_WIDTH 11 /* PHASE2_DURATION - [10:0] */ | ||
1383 | |||
1384 | /* | ||
1385 | * R150 (0x96) - Haptics phase 3 intensity | ||
1386 | */ | ||
1387 | #define ARIZONA_PHASE3_INTENSITY_MASK 0x00FF /* PHASE3_INTENSITY - [7:0] */ | ||
1388 | #define ARIZONA_PHASE3_INTENSITY_SHIFT 0 /* PHASE3_INTENSITY - [7:0] */ | ||
1389 | #define ARIZONA_PHASE3_INTENSITY_WIDTH 8 /* PHASE3_INTENSITY - [7:0] */ | ||
1390 | |||
1391 | /* | ||
1392 | * R151 (0x97) - Haptics phase 3 duration | ||
1393 | */ | ||
1394 | #define ARIZONA_PHASE3_DURATION_MASK 0x01FF /* PHASE3_DURATION - [8:0] */ | ||
1395 | #define ARIZONA_PHASE3_DURATION_SHIFT 0 /* PHASE3_DURATION - [8:0] */ | ||
1396 | #define ARIZONA_PHASE3_DURATION_WIDTH 9 /* PHASE3_DURATION - [8:0] */ | ||
1397 | |||
1398 | /* | ||
1399 | * R152 (0x98) - Haptics Status | ||
1400 | */ | ||
1401 | #define ARIZONA_ONESHOT_STS 0x0001 /* ONESHOT_STS */ | ||
1402 | #define ARIZONA_ONESHOT_STS_MASK 0x0001 /* ONESHOT_STS */ | ||
1403 | #define ARIZONA_ONESHOT_STS_SHIFT 0 /* ONESHOT_STS */ | ||
1404 | #define ARIZONA_ONESHOT_STS_WIDTH 1 /* ONESHOT_STS */ | ||
1405 | |||
1406 | /* | ||
1407 | * R256 (0x100) - Clock 32k 1 | ||
1408 | */ | ||
1409 | #define ARIZONA_CLK_32K_ENA 0x0040 /* CLK_32K_ENA */ | ||
1410 | #define ARIZONA_CLK_32K_ENA_MASK 0x0040 /* CLK_32K_ENA */ | ||
1411 | #define ARIZONA_CLK_32K_ENA_SHIFT 6 /* CLK_32K_ENA */ | ||
1412 | #define ARIZONA_CLK_32K_ENA_WIDTH 1 /* CLK_32K_ENA */ | ||
1413 | #define ARIZONA_CLK_32K_SRC_MASK 0x0003 /* CLK_32K_SRC - [1:0] */ | ||
1414 | #define ARIZONA_CLK_32K_SRC_SHIFT 0 /* CLK_32K_SRC - [1:0] */ | ||
1415 | #define ARIZONA_CLK_32K_SRC_WIDTH 2 /* CLK_32K_SRC - [1:0] */ | ||
1416 | |||
1417 | /* | ||
1418 | * R257 (0x101) - System Clock 1 | ||
1419 | */ | ||
1420 | #define ARIZONA_SYSCLK_FRAC 0x8000 /* SYSCLK_FRAC */ | ||
1421 | #define ARIZONA_SYSCLK_FRAC_MASK 0x8000 /* SYSCLK_FRAC */ | ||
1422 | #define ARIZONA_SYSCLK_FRAC_SHIFT 15 /* SYSCLK_FRAC */ | ||
1423 | #define ARIZONA_SYSCLK_FRAC_WIDTH 1 /* SYSCLK_FRAC */ | ||
1424 | #define ARIZONA_SYSCLK_FREQ_MASK 0x0700 /* SYSCLK_FREQ - [10:8] */ | ||
1425 | #define ARIZONA_SYSCLK_FREQ_SHIFT 8 /* SYSCLK_FREQ - [10:8] */ | ||
1426 | #define ARIZONA_SYSCLK_FREQ_WIDTH 3 /* SYSCLK_FREQ - [10:8] */ | ||
1427 | #define ARIZONA_SYSCLK_ENA 0x0040 /* SYSCLK_ENA */ | ||
1428 | #define ARIZONA_SYSCLK_ENA_MASK 0x0040 /* SYSCLK_ENA */ | ||
1429 | #define ARIZONA_SYSCLK_ENA_SHIFT 6 /* SYSCLK_ENA */ | ||
1430 | #define ARIZONA_SYSCLK_ENA_WIDTH 1 /* SYSCLK_ENA */ | ||
1431 | #define ARIZONA_SYSCLK_SRC_MASK 0x000F /* SYSCLK_SRC - [3:0] */ | ||
1432 | #define ARIZONA_SYSCLK_SRC_SHIFT 0 /* SYSCLK_SRC - [3:0] */ | ||
1433 | #define ARIZONA_SYSCLK_SRC_WIDTH 4 /* SYSCLK_SRC - [3:0] */ | ||
1434 | |||
1435 | /* | ||
1436 | * R258 (0x102) - Sample rate 1 | ||
1437 | */ | ||
1438 | #define ARIZONA_SAMPLE_RATE_1_MASK 0x001F /* SAMPLE_RATE_1 - [4:0] */ | ||
1439 | #define ARIZONA_SAMPLE_RATE_1_SHIFT 0 /* SAMPLE_RATE_1 - [4:0] */ | ||
1440 | #define ARIZONA_SAMPLE_RATE_1_WIDTH 5 /* SAMPLE_RATE_1 - [4:0] */ | ||
1441 | |||
1442 | /* | ||
1443 | * R259 (0x103) - Sample rate 2 | ||
1444 | */ | ||
1445 | #define ARIZONA_SAMPLE_RATE_2_MASK 0x001F /* SAMPLE_RATE_2 - [4:0] */ | ||
1446 | #define ARIZONA_SAMPLE_RATE_2_SHIFT 0 /* SAMPLE_RATE_2 - [4:0] */ | ||
1447 | #define ARIZONA_SAMPLE_RATE_2_WIDTH 5 /* SAMPLE_RATE_2 - [4:0] */ | ||
1448 | |||
1449 | /* | ||
1450 | * R260 (0x104) - Sample rate 3 | ||
1451 | */ | ||
1452 | #define ARIZONA_SAMPLE_RATE_3_MASK 0x001F /* SAMPLE_RATE_3 - [4:0] */ | ||
1453 | #define ARIZONA_SAMPLE_RATE_3_SHIFT 0 /* SAMPLE_RATE_3 - [4:0] */ | ||
1454 | #define ARIZONA_SAMPLE_RATE_3_WIDTH 5 /* SAMPLE_RATE_3 - [4:0] */ | ||
1455 | |||
1456 | /* | ||
1457 | * R266 (0x10A) - Sample rate 1 status | ||
1458 | */ | ||
1459 | #define ARIZONA_SAMPLE_RATE_1_STS_MASK 0x001F /* SAMPLE_RATE_1_STS - [4:0] */ | ||
1460 | #define ARIZONA_SAMPLE_RATE_1_STS_SHIFT 0 /* SAMPLE_RATE_1_STS - [4:0] */ | ||
1461 | #define ARIZONA_SAMPLE_RATE_1_STS_WIDTH 5 /* SAMPLE_RATE_1_STS - [4:0] */ | ||
1462 | |||
1463 | /* | ||
1464 | * R267 (0x10B) - Sample rate 2 status | ||
1465 | */ | ||
1466 | #define ARIZONA_SAMPLE_RATE_2_STS_MASK 0x001F /* SAMPLE_RATE_2_STS - [4:0] */ | ||
1467 | #define ARIZONA_SAMPLE_RATE_2_STS_SHIFT 0 /* SAMPLE_RATE_2_STS - [4:0] */ | ||
1468 | #define ARIZONA_SAMPLE_RATE_2_STS_WIDTH 5 /* SAMPLE_RATE_2_STS - [4:0] */ | ||
1469 | |||
1470 | /* | ||
1471 | * R268 (0x10C) - Sample rate 3 status | ||
1472 | */ | ||
1473 | #define ARIZONA_SAMPLE_RATE_3_STS_MASK 0x001F /* SAMPLE_RATE_3_STS - [4:0] */ | ||
1474 | #define ARIZONA_SAMPLE_RATE_3_STS_SHIFT 0 /* SAMPLE_RATE_3_STS - [4:0] */ | ||
1475 | #define ARIZONA_SAMPLE_RATE_3_STS_WIDTH 5 /* SAMPLE_RATE_3_STS - [4:0] */ | ||
1476 | |||
1477 | /* | ||
1478 | * R274 (0x112) - Async clock 1 | ||
1479 | */ | ||
1480 | #define ARIZONA_ASYNC_CLK_FREQ_MASK 0x0700 /* ASYNC_CLK_FREQ - [10:8] */ | ||
1481 | #define ARIZONA_ASYNC_CLK_FREQ_SHIFT 8 /* ASYNC_CLK_FREQ - [10:8] */ | ||
1482 | #define ARIZONA_ASYNC_CLK_FREQ_WIDTH 3 /* ASYNC_CLK_FREQ - [10:8] */ | ||
1483 | #define ARIZONA_ASYNC_CLK_ENA 0x0040 /* ASYNC_CLK_ENA */ | ||
1484 | #define ARIZONA_ASYNC_CLK_ENA_MASK 0x0040 /* ASYNC_CLK_ENA */ | ||
1485 | #define ARIZONA_ASYNC_CLK_ENA_SHIFT 6 /* ASYNC_CLK_ENA */ | ||
1486 | #define ARIZONA_ASYNC_CLK_ENA_WIDTH 1 /* ASYNC_CLK_ENA */ | ||
1487 | #define ARIZONA_ASYNC_CLK_SRC_MASK 0x000F /* ASYNC_CLK_SRC - [3:0] */ | ||
1488 | #define ARIZONA_ASYNC_CLK_SRC_SHIFT 0 /* ASYNC_CLK_SRC - [3:0] */ | ||
1489 | #define ARIZONA_ASYNC_CLK_SRC_WIDTH 4 /* ASYNC_CLK_SRC - [3:0] */ | ||
1490 | |||
1491 | /* | ||
1492 | * R275 (0x113) - Async sample rate 1 | ||
1493 | */ | ||
1494 | #define ARIZONA_ASYNC_SAMPLE_RATE_MASK 0x001F /* ASYNC_SAMPLE_RATE - [4:0] */ | ||
1495 | #define ARIZONA_ASYNC_SAMPLE_RATE_SHIFT 0 /* ASYNC_SAMPLE_RATE - [4:0] */ | ||
1496 | #define ARIZONA_ASYNC_SAMPLE_RATE_WIDTH 5 /* ASYNC_SAMPLE_RATE - [4:0] */ | ||
1497 | |||
1498 | /* | ||
1499 | * R283 (0x11B) - Async sample rate 1 status | ||
1500 | */ | ||
1501 | #define ARIZONA_ASYNC_SAMPLE_RATE_STS_MASK 0x001F /* ASYNC_SAMPLE_RATE_STS - [4:0] */ | ||
1502 | #define ARIZONA_ASYNC_SAMPLE_RATE_STS_SHIFT 0 /* ASYNC_SAMPLE_RATE_STS - [4:0] */ | ||
1503 | #define ARIZONA_ASYNC_SAMPLE_RATE_STS_WIDTH 5 /* ASYNC_SAMPLE_RATE_STS - [4:0] */ | ||
1504 | |||
1505 | /* | ||
1506 | * R329 (0x149) - Output system clock | ||
1507 | */ | ||
1508 | #define ARIZONA_OPCLK_ENA 0x8000 /* OPCLK_ENA */ | ||
1509 | #define ARIZONA_OPCLK_ENA_MASK 0x8000 /* OPCLK_ENA */ | ||
1510 | #define ARIZONA_OPCLK_ENA_SHIFT 15 /* OPCLK_ENA */ | ||
1511 | #define ARIZONA_OPCLK_ENA_WIDTH 1 /* OPCLK_ENA */ | ||
1512 | #define ARIZONA_OPCLK_DIV_MASK 0x00F8 /* OPCLK_DIV - [7:3] */ | ||
1513 | #define ARIZONA_OPCLK_DIV_SHIFT 3 /* OPCLK_DIV - [7:3] */ | ||
1514 | #define ARIZONA_OPCLK_DIV_WIDTH 5 /* OPCLK_DIV - [7:3] */ | ||
1515 | #define ARIZONA_OPCLK_SEL_MASK 0x0007 /* OPCLK_SEL - [2:0] */ | ||
1516 | #define ARIZONA_OPCLK_SEL_SHIFT 0 /* OPCLK_SEL - [2:0] */ | ||
1517 | #define ARIZONA_OPCLK_SEL_WIDTH 3 /* OPCLK_SEL - [2:0] */ | ||
1518 | |||
1519 | /* | ||
1520 | * R330 (0x14A) - Output async clock | ||
1521 | */ | ||
1522 | #define ARIZONA_OPCLK_ASYNC_ENA 0x8000 /* OPCLK_ASYNC_ENA */ | ||
1523 | #define ARIZONA_OPCLK_ASYNC_ENA_MASK 0x8000 /* OPCLK_ASYNC_ENA */ | ||
1524 | #define ARIZONA_OPCLK_ASYNC_ENA_SHIFT 15 /* OPCLK_ASYNC_ENA */ | ||
1525 | #define ARIZONA_OPCLK_ASYNC_ENA_WIDTH 1 /* OPCLK_ASYNC_ENA */ | ||
1526 | #define ARIZONA_OPCLK_ASYNC_DIV_MASK 0x00F8 /* OPCLK_ASYNC_DIV - [7:3] */ | ||
1527 | #define ARIZONA_OPCLK_ASYNC_DIV_SHIFT 3 /* OPCLK_ASYNC_DIV - [7:3] */ | ||
1528 | #define ARIZONA_OPCLK_ASYNC_DIV_WIDTH 5 /* OPCLK_ASYNC_DIV - [7:3] */ | ||
1529 | #define ARIZONA_OPCLK_ASYNC_SEL_MASK 0x0007 /* OPCLK_ASYNC_SEL - [2:0] */ | ||
1530 | #define ARIZONA_OPCLK_ASYNC_SEL_SHIFT 0 /* OPCLK_ASYNC_SEL - [2:0] */ | ||
1531 | #define ARIZONA_OPCLK_ASYNC_SEL_WIDTH 3 /* OPCLK_ASYNC_SEL - [2:0] */ | ||
1532 | |||
1533 | /* | ||
1534 | * R338 (0x152) - Rate Estimator 1 | ||
1535 | */ | ||
1536 | #define ARIZONA_TRIG_ON_STARTUP 0x0010 /* TRIG_ON_STARTUP */ | ||
1537 | #define ARIZONA_TRIG_ON_STARTUP_MASK 0x0010 /* TRIG_ON_STARTUP */ | ||
1538 | #define ARIZONA_TRIG_ON_STARTUP_SHIFT 4 /* TRIG_ON_STARTUP */ | ||
1539 | #define ARIZONA_TRIG_ON_STARTUP_WIDTH 1 /* TRIG_ON_STARTUP */ | ||
1540 | #define ARIZONA_LRCLK_SRC_MASK 0x000E /* LRCLK_SRC - [3:1] */ | ||
1541 | #define ARIZONA_LRCLK_SRC_SHIFT 1 /* LRCLK_SRC - [3:1] */ | ||
1542 | #define ARIZONA_LRCLK_SRC_WIDTH 3 /* LRCLK_SRC - [3:1] */ | ||
1543 | #define ARIZONA_RATE_EST_ENA 0x0001 /* RATE_EST_ENA */ | ||
1544 | #define ARIZONA_RATE_EST_ENA_MASK 0x0001 /* RATE_EST_ENA */ | ||
1545 | #define ARIZONA_RATE_EST_ENA_SHIFT 0 /* RATE_EST_ENA */ | ||
1546 | #define ARIZONA_RATE_EST_ENA_WIDTH 1 /* RATE_EST_ENA */ | ||
1547 | |||
1548 | /* | ||
1549 | * R339 (0x153) - Rate Estimator 2 | ||
1550 | */ | ||
1551 | #define ARIZONA_SAMPLE_RATE_DETECT_A_MASK 0x001F /* SAMPLE_RATE_DETECT_A - [4:0] */ | ||
1552 | #define ARIZONA_SAMPLE_RATE_DETECT_A_SHIFT 0 /* SAMPLE_RATE_DETECT_A - [4:0] */ | ||
1553 | #define ARIZONA_SAMPLE_RATE_DETECT_A_WIDTH 5 /* SAMPLE_RATE_DETECT_A - [4:0] */ | ||
1554 | |||
1555 | /* | ||
1556 | * R340 (0x154) - Rate Estimator 3 | ||
1557 | */ | ||
1558 | #define ARIZONA_SAMPLE_RATE_DETECT_B_MASK 0x001F /* SAMPLE_RATE_DETECT_B - [4:0] */ | ||
1559 | #define ARIZONA_SAMPLE_RATE_DETECT_B_SHIFT 0 /* SAMPLE_RATE_DETECT_B - [4:0] */ | ||
1560 | #define ARIZONA_SAMPLE_RATE_DETECT_B_WIDTH 5 /* SAMPLE_RATE_DETECT_B - [4:0] */ | ||
1561 | |||
1562 | /* | ||
1563 | * R341 (0x155) - Rate Estimator 4 | ||
1564 | */ | ||
1565 | #define ARIZONA_SAMPLE_RATE_DETECT_C_MASK 0x001F /* SAMPLE_RATE_DETECT_C - [4:0] */ | ||
1566 | #define ARIZONA_SAMPLE_RATE_DETECT_C_SHIFT 0 /* SAMPLE_RATE_DETECT_C - [4:0] */ | ||
1567 | #define ARIZONA_SAMPLE_RATE_DETECT_C_WIDTH 5 /* SAMPLE_RATE_DETECT_C - [4:0] */ | ||
1568 | |||
1569 | /* | ||
1570 | * R342 (0x156) - Rate Estimator 5 | ||
1571 | */ | ||
1572 | #define ARIZONA_SAMPLE_RATE_DETECT_D_MASK 0x001F /* SAMPLE_RATE_DETECT_D - [4:0] */ | ||
1573 | #define ARIZONA_SAMPLE_RATE_DETECT_D_SHIFT 0 /* SAMPLE_RATE_DETECT_D - [4:0] */ | ||
1574 | #define ARIZONA_SAMPLE_RATE_DETECT_D_WIDTH 5 /* SAMPLE_RATE_DETECT_D - [4:0] */ | ||
1575 | |||
1576 | /* | ||
1577 | * R369 (0x171) - FLL1 Control 1 | ||
1578 | */ | ||
1579 | #define ARIZONA_FLL1_FREERUN 0x0002 /* FLL1_FREERUN */ | ||
1580 | #define ARIZONA_FLL1_FREERUN_MASK 0x0002 /* FLL1_FREERUN */ | ||
1581 | #define ARIZONA_FLL1_FREERUN_SHIFT 1 /* FLL1_FREERUN */ | ||
1582 | #define ARIZONA_FLL1_FREERUN_WIDTH 1 /* FLL1_FREERUN */ | ||
1583 | #define ARIZONA_FLL1_ENA 0x0001 /* FLL1_ENA */ | ||
1584 | #define ARIZONA_FLL1_ENA_MASK 0x0001 /* FLL1_ENA */ | ||
1585 | #define ARIZONA_FLL1_ENA_SHIFT 0 /* FLL1_ENA */ | ||
1586 | #define ARIZONA_FLL1_ENA_WIDTH 1 /* FLL1_ENA */ | ||
1587 | |||
1588 | /* | ||
1589 | * R370 (0x172) - FLL1 Control 2 | ||
1590 | */ | ||
1591 | #define ARIZONA_FLL1_CTRL_UPD 0x8000 /* FLL1_CTRL_UPD */ | ||
1592 | #define ARIZONA_FLL1_CTRL_UPD_MASK 0x8000 /* FLL1_CTRL_UPD */ | ||
1593 | #define ARIZONA_FLL1_CTRL_UPD_SHIFT 15 /* FLL1_CTRL_UPD */ | ||
1594 | #define ARIZONA_FLL1_CTRL_UPD_WIDTH 1 /* FLL1_CTRL_UPD */ | ||
1595 | #define ARIZONA_FLL1_N_MASK 0x03FF /* FLL1_N - [9:0] */ | ||
1596 | #define ARIZONA_FLL1_N_SHIFT 0 /* FLL1_N - [9:0] */ | ||
1597 | #define ARIZONA_FLL1_N_WIDTH 10 /* FLL1_N - [9:0] */ | ||
1598 | |||
1599 | /* | ||
1600 | * R371 (0x173) - FLL1 Control 3 | ||
1601 | */ | ||
1602 | #define ARIZONA_FLL1_THETA_MASK 0xFFFF /* FLL1_THETA - [15:0] */ | ||
1603 | #define ARIZONA_FLL1_THETA_SHIFT 0 /* FLL1_THETA - [15:0] */ | ||
1604 | #define ARIZONA_FLL1_THETA_WIDTH 16 /* FLL1_THETA - [15:0] */ | ||
1605 | |||
1606 | /* | ||
1607 | * R372 (0x174) - FLL1 Control 4 | ||
1608 | */ | ||
1609 | #define ARIZONA_FLL1_LAMBDA_MASK 0xFFFF /* FLL1_LAMBDA - [15:0] */ | ||
1610 | #define ARIZONA_FLL1_LAMBDA_SHIFT 0 /* FLL1_LAMBDA - [15:0] */ | ||
1611 | #define ARIZONA_FLL1_LAMBDA_WIDTH 16 /* FLL1_LAMBDA - [15:0] */ | ||
1612 | |||
1613 | /* | ||
1614 | * R373 (0x175) - FLL1 Control 5 | ||
1615 | */ | ||
1616 | #define ARIZONA_FLL1_FRATIO_MASK 0x0700 /* FLL1_FRATIO - [10:8] */ | ||
1617 | #define ARIZONA_FLL1_FRATIO_SHIFT 8 /* FLL1_FRATIO - [10:8] */ | ||
1618 | #define ARIZONA_FLL1_FRATIO_WIDTH 3 /* FLL1_FRATIO - [10:8] */ | ||
1619 | #define ARIZONA_FLL1_OUTDIV_MASK 0x000E /* FLL1_OUTDIV - [3:1] */ | ||
1620 | #define ARIZONA_FLL1_OUTDIV_SHIFT 1 /* FLL1_OUTDIV - [3:1] */ | ||
1621 | #define ARIZONA_FLL1_OUTDIV_WIDTH 3 /* FLL1_OUTDIV - [3:1] */ | ||
1622 | |||
1623 | /* | ||
1624 | * R374 (0x176) - FLL1 Control 6 | ||
1625 | */ | ||
1626 | #define ARIZONA_FLL1_CLK_REF_DIV_MASK 0x00C0 /* FLL1_CLK_REF_DIV - [7:6] */ | ||
1627 | #define ARIZONA_FLL1_CLK_REF_DIV_SHIFT 6 /* FLL1_CLK_REF_DIV - [7:6] */ | ||
1628 | #define ARIZONA_FLL1_CLK_REF_DIV_WIDTH 2 /* FLL1_CLK_REF_DIV - [7:6] */ | ||
1629 | #define ARIZONA_FLL1_CLK_REF_SRC_MASK 0x000F /* FLL1_CLK_REF_SRC - [3:0] */ | ||
1630 | #define ARIZONA_FLL1_CLK_REF_SRC_SHIFT 0 /* FLL1_CLK_REF_SRC - [3:0] */ | ||
1631 | #define ARIZONA_FLL1_CLK_REF_SRC_WIDTH 4 /* FLL1_CLK_REF_SRC - [3:0] */ | ||
1632 | |||
1633 | /* | ||
1634 | * R375 (0x177) - FLL1 Loop Filter Test 1 | ||
1635 | */ | ||
1636 | #define ARIZONA_FLL1_FRC_INTEG_UPD 0x8000 /* FLL1_FRC_INTEG_UPD */ | ||
1637 | #define ARIZONA_FLL1_FRC_INTEG_UPD_MASK 0x8000 /* FLL1_FRC_INTEG_UPD */ | ||
1638 | #define ARIZONA_FLL1_FRC_INTEG_UPD_SHIFT 15 /* FLL1_FRC_INTEG_UPD */ | ||
1639 | #define ARIZONA_FLL1_FRC_INTEG_UPD_WIDTH 1 /* FLL1_FRC_INTEG_UPD */ | ||
1640 | #define ARIZONA_FLL1_FRC_INTEG_VAL_MASK 0x0FFF /* FLL1_FRC_INTEG_VAL - [11:0] */ | ||
1641 | #define ARIZONA_FLL1_FRC_INTEG_VAL_SHIFT 0 /* FLL1_FRC_INTEG_VAL - [11:0] */ | ||
1642 | #define ARIZONA_FLL1_FRC_INTEG_VAL_WIDTH 12 /* FLL1_FRC_INTEG_VAL - [11:0] */ | ||
1643 | |||
1644 | /* | ||
1645 | * R385 (0x181) - FLL1 Synchroniser 1 | ||
1646 | */ | ||
1647 | #define ARIZONA_FLL1_SYNC_ENA 0x0001 /* FLL1_SYNC_ENA */ | ||
1648 | #define ARIZONA_FLL1_SYNC_ENA_MASK 0x0001 /* FLL1_SYNC_ENA */ | ||
1649 | #define ARIZONA_FLL1_SYNC_ENA_SHIFT 0 /* FLL1_SYNC_ENA */ | ||
1650 | #define ARIZONA_FLL1_SYNC_ENA_WIDTH 1 /* FLL1_SYNC_ENA */ | ||
1651 | |||
1652 | /* | ||
1653 | * R386 (0x182) - FLL1 Synchroniser 2 | ||
1654 | */ | ||
1655 | #define ARIZONA_FLL1_SYNC_N_MASK 0x03FF /* FLL1_SYNC_N - [9:0] */ | ||
1656 | #define ARIZONA_FLL1_SYNC_N_SHIFT 0 /* FLL1_SYNC_N - [9:0] */ | ||
1657 | #define ARIZONA_FLL1_SYNC_N_WIDTH 10 /* FLL1_SYNC_N - [9:0] */ | ||
1658 | |||
1659 | /* | ||
1660 | * R387 (0x183) - FLL1 Synchroniser 3 | ||
1661 | */ | ||
1662 | #define ARIZONA_FLL1_SYNC_THETA_MASK 0xFFFF /* FLL1_SYNC_THETA - [15:0] */ | ||
1663 | #define ARIZONA_FLL1_SYNC_THETA_SHIFT 0 /* FLL1_SYNC_THETA - [15:0] */ | ||
1664 | #define ARIZONA_FLL1_SYNC_THETA_WIDTH 16 /* FLL1_SYNC_THETA - [15:0] */ | ||
1665 | |||
1666 | /* | ||
1667 | * R388 (0x184) - FLL1 Synchroniser 4 | ||
1668 | */ | ||
1669 | #define ARIZONA_FLL1_SYNC_LAMBDA_MASK 0xFFFF /* FLL1_SYNC_LAMBDA - [15:0] */ | ||
1670 | #define ARIZONA_FLL1_SYNC_LAMBDA_SHIFT 0 /* FLL1_SYNC_LAMBDA - [15:0] */ | ||
1671 | #define ARIZONA_FLL1_SYNC_LAMBDA_WIDTH 16 /* FLL1_SYNC_LAMBDA - [15:0] */ | ||
1672 | |||
1673 | /* | ||
1674 | * R389 (0x185) - FLL1 Synchroniser 5 | ||
1675 | */ | ||
1676 | #define ARIZONA_FLL1_SYNC_FRATIO_MASK 0x0700 /* FLL1_SYNC_FRATIO - [10:8] */ | ||
1677 | #define ARIZONA_FLL1_SYNC_FRATIO_SHIFT 8 /* FLL1_SYNC_FRATIO - [10:8] */ | ||
1678 | #define ARIZONA_FLL1_SYNC_FRATIO_WIDTH 3 /* FLL1_SYNC_FRATIO - [10:8] */ | ||
1679 | |||
1680 | /* | ||
1681 | * R390 (0x186) - FLL1 Synchroniser 6 | ||
1682 | */ | ||
1683 | #define ARIZONA_FLL1_CLK_SYNC_DIV_MASK 0x00C0 /* FLL1_CLK_SYNC_DIV - [7:6] */ | ||
1684 | #define ARIZONA_FLL1_CLK_SYNC_DIV_SHIFT 6 /* FLL1_CLK_SYNC_DIV - [7:6] */ | ||
1685 | #define ARIZONA_FLL1_CLK_SYNC_DIV_WIDTH 2 /* FLL1_CLK_SYNC_DIV - [7:6] */ | ||
1686 | #define ARIZONA_FLL1_CLK_SYNC_SRC_MASK 0x000F /* FLL1_CLK_SYNC_SRC - [3:0] */ | ||
1687 | #define ARIZONA_FLL1_CLK_SYNC_SRC_SHIFT 0 /* FLL1_CLK_SYNC_SRC - [3:0] */ | ||
1688 | #define ARIZONA_FLL1_CLK_SYNC_SRC_WIDTH 4 /* FLL1_CLK_SYNC_SRC - [3:0] */ | ||
1689 | |||
1690 | /* | ||
1691 | * R393 (0x189) - FLL1 Spread Spectrum | ||
1692 | */ | ||
1693 | #define ARIZONA_FLL1_SS_AMPL_MASK 0x0030 /* FLL1_SS_AMPL - [5:4] */ | ||
1694 | #define ARIZONA_FLL1_SS_AMPL_SHIFT 4 /* FLL1_SS_AMPL - [5:4] */ | ||
1695 | #define ARIZONA_FLL1_SS_AMPL_WIDTH 2 /* FLL1_SS_AMPL - [5:4] */ | ||
1696 | #define ARIZONA_FLL1_SS_FREQ_MASK 0x000C /* FLL1_SS_FREQ - [3:2] */ | ||
1697 | #define ARIZONA_FLL1_SS_FREQ_SHIFT 2 /* FLL1_SS_FREQ - [3:2] */ | ||
1698 | #define ARIZONA_FLL1_SS_FREQ_WIDTH 2 /* FLL1_SS_FREQ - [3:2] */ | ||
1699 | #define ARIZONA_FLL1_SS_SEL_MASK 0x0003 /* FLL1_SS_SEL - [1:0] */ | ||
1700 | #define ARIZONA_FLL1_SS_SEL_SHIFT 0 /* FLL1_SS_SEL - [1:0] */ | ||
1701 | #define ARIZONA_FLL1_SS_SEL_WIDTH 2 /* FLL1_SS_SEL - [1:0] */ | ||
1702 | |||
1703 | /* | ||
1704 | * R394 (0x18A) - FLL1 GPIO Clock | ||
1705 | */ | ||
1706 | #define ARIZONA_FLL1_GPDIV_MASK 0x00FE /* FLL1_GPDIV - [7:1] */ | ||
1707 | #define ARIZONA_FLL1_GPDIV_SHIFT 1 /* FLL1_GPDIV - [7:1] */ | ||
1708 | #define ARIZONA_FLL1_GPDIV_WIDTH 7 /* FLL1_GPDIV - [7:1] */ | ||
1709 | #define ARIZONA_FLL1_GPDIV_ENA 0x0001 /* FLL1_GPDIV_ENA */ | ||
1710 | #define ARIZONA_FLL1_GPDIV_ENA_MASK 0x0001 /* FLL1_GPDIV_ENA */ | ||
1711 | #define ARIZONA_FLL1_GPDIV_ENA_SHIFT 0 /* FLL1_GPDIV_ENA */ | ||
1712 | #define ARIZONA_FLL1_GPDIV_ENA_WIDTH 1 /* FLL1_GPDIV_ENA */ | ||
1713 | |||
1714 | /* | ||
1715 | * R401 (0x191) - FLL2 Control 1 | ||
1716 | */ | ||
1717 | #define ARIZONA_FLL2_FREERUN 0x0002 /* FLL2_FREERUN */ | ||
1718 | #define ARIZONA_FLL2_FREERUN_MASK 0x0002 /* FLL2_FREERUN */ | ||
1719 | #define ARIZONA_FLL2_FREERUN_SHIFT 1 /* FLL2_FREERUN */ | ||
1720 | #define ARIZONA_FLL2_FREERUN_WIDTH 1 /* FLL2_FREERUN */ | ||
1721 | #define ARIZONA_FLL2_ENA 0x0001 /* FLL2_ENA */ | ||
1722 | #define ARIZONA_FLL2_ENA_MASK 0x0001 /* FLL2_ENA */ | ||
1723 | #define ARIZONA_FLL2_ENA_SHIFT 0 /* FLL2_ENA */ | ||
1724 | #define ARIZONA_FLL2_ENA_WIDTH 1 /* FLL2_ENA */ | ||
1725 | |||
1726 | /* | ||
1727 | * R402 (0x192) - FLL2 Control 2 | ||
1728 | */ | ||
1729 | #define ARIZONA_FLL2_CTRL_UPD 0x8000 /* FLL2_CTRL_UPD */ | ||
1730 | #define ARIZONA_FLL2_CTRL_UPD_MASK 0x8000 /* FLL2_CTRL_UPD */ | ||
1731 | #define ARIZONA_FLL2_CTRL_UPD_SHIFT 15 /* FLL2_CTRL_UPD */ | ||
1732 | #define ARIZONA_FLL2_CTRL_UPD_WIDTH 1 /* FLL2_CTRL_UPD */ | ||
1733 | #define ARIZONA_FLL2_N_MASK 0x03FF /* FLL2_N - [9:0] */ | ||
1734 | #define ARIZONA_FLL2_N_SHIFT 0 /* FLL2_N - [9:0] */ | ||
1735 | #define ARIZONA_FLL2_N_WIDTH 10 /* FLL2_N - [9:0] */ | ||
1736 | |||
1737 | /* | ||
1738 | * R403 (0x193) - FLL2 Control 3 | ||
1739 | */ | ||
1740 | #define ARIZONA_FLL2_THETA_MASK 0xFFFF /* FLL2_THETA - [15:0] */ | ||
1741 | #define ARIZONA_FLL2_THETA_SHIFT 0 /* FLL2_THETA - [15:0] */ | ||
1742 | #define ARIZONA_FLL2_THETA_WIDTH 16 /* FLL2_THETA - [15:0] */ | ||
1743 | |||
1744 | /* | ||
1745 | * R404 (0x194) - FLL2 Control 4 | ||
1746 | */ | ||
1747 | #define ARIZONA_FLL2_LAMBDA_MASK 0xFFFF /* FLL2_LAMBDA - [15:0] */ | ||
1748 | #define ARIZONA_FLL2_LAMBDA_SHIFT 0 /* FLL2_LAMBDA - [15:0] */ | ||
1749 | #define ARIZONA_FLL2_LAMBDA_WIDTH 16 /* FLL2_LAMBDA - [15:0] */ | ||
1750 | |||
1751 | /* | ||
1752 | * R405 (0x195) - FLL2 Control 5 | ||
1753 | */ | ||
1754 | #define ARIZONA_FLL2_FRATIO_MASK 0x0700 /* FLL2_FRATIO - [10:8] */ | ||
1755 | #define ARIZONA_FLL2_FRATIO_SHIFT 8 /* FLL2_FRATIO - [10:8] */ | ||
1756 | #define ARIZONA_FLL2_FRATIO_WIDTH 3 /* FLL2_FRATIO - [10:8] */ | ||
1757 | #define ARIZONA_FLL2_OUTDIV_MASK 0x000E /* FLL2_OUTDIV - [3:1] */ | ||
1758 | #define ARIZONA_FLL2_OUTDIV_SHIFT 1 /* FLL2_OUTDIV - [3:1] */ | ||
1759 | #define ARIZONA_FLL2_OUTDIV_WIDTH 3 /* FLL2_OUTDIV - [3:1] */ | ||
1760 | |||
1761 | /* | ||
1762 | * R406 (0x196) - FLL2 Control 6 | ||
1763 | */ | ||
1764 | #define ARIZONA_FLL2_CLK_REF_DIV_MASK 0x00C0 /* FLL2_CLK_REF_DIV - [7:6] */ | ||
1765 | #define ARIZONA_FLL2_CLK_REF_DIV_SHIFT 6 /* FLL2_CLK_REF_DIV - [7:6] */ | ||
1766 | #define ARIZONA_FLL2_CLK_REF_DIV_WIDTH 2 /* FLL2_CLK_REF_DIV - [7:6] */ | ||
1767 | #define ARIZONA_FLL2_CLK_REF_SRC_MASK 0x000F /* FLL2_CLK_REF_SRC - [3:0] */ | ||
1768 | #define ARIZONA_FLL2_CLK_REF_SRC_SHIFT 0 /* FLL2_CLK_REF_SRC - [3:0] */ | ||
1769 | #define ARIZONA_FLL2_CLK_REF_SRC_WIDTH 4 /* FLL2_CLK_REF_SRC - [3:0] */ | ||
1770 | |||
1771 | /* | ||
1772 | * R407 (0x197) - FLL2 Loop Filter Test 1 | ||
1773 | */ | ||
1774 | #define ARIZONA_FLL2_FRC_INTEG_UPD 0x8000 /* FLL2_FRC_INTEG_UPD */ | ||
1775 | #define ARIZONA_FLL2_FRC_INTEG_UPD_MASK 0x8000 /* FLL2_FRC_INTEG_UPD */ | ||
1776 | #define ARIZONA_FLL2_FRC_INTEG_UPD_SHIFT 15 /* FLL2_FRC_INTEG_UPD */ | ||
1777 | #define ARIZONA_FLL2_FRC_INTEG_UPD_WIDTH 1 /* FLL2_FRC_INTEG_UPD */ | ||
1778 | #define ARIZONA_FLL2_FRC_INTEG_VAL_MASK 0x0FFF /* FLL2_FRC_INTEG_VAL - [11:0] */ | ||
1779 | #define ARIZONA_FLL2_FRC_INTEG_VAL_SHIFT 0 /* FLL2_FRC_INTEG_VAL - [11:0] */ | ||
1780 | #define ARIZONA_FLL2_FRC_INTEG_VAL_WIDTH 12 /* FLL2_FRC_INTEG_VAL - [11:0] */ | ||
1781 | |||
1782 | /* | ||
1783 | * R417 (0x1A1) - FLL2 Synchroniser 1 | ||
1784 | */ | ||
1785 | #define ARIZONA_FLL2_SYNC_ENA 0x0001 /* FLL2_SYNC_ENA */ | ||
1786 | #define ARIZONA_FLL2_SYNC_ENA_MASK 0x0001 /* FLL2_SYNC_ENA */ | ||
1787 | #define ARIZONA_FLL2_SYNC_ENA_SHIFT 0 /* FLL2_SYNC_ENA */ | ||
1788 | #define ARIZONA_FLL2_SYNC_ENA_WIDTH 1 /* FLL2_SYNC_ENA */ | ||
1789 | |||
1790 | /* | ||
1791 | * R418 (0x1A2) - FLL2 Synchroniser 2 | ||
1792 | */ | ||
1793 | #define ARIZONA_FLL2_SYNC_N_MASK 0x03FF /* FLL2_SYNC_N - [9:0] */ | ||
1794 | #define ARIZONA_FLL2_SYNC_N_SHIFT 0 /* FLL2_SYNC_N - [9:0] */ | ||
1795 | #define ARIZONA_FLL2_SYNC_N_WIDTH 10 /* FLL2_SYNC_N - [9:0] */ | ||
1796 | |||
1797 | /* | ||
1798 | * R419 (0x1A3) - FLL2 Synchroniser 3 | ||
1799 | */ | ||
1800 | #define ARIZONA_FLL2_SYNC_THETA_MASK 0xFFFF /* FLL2_SYNC_THETA - [15:0] */ | ||
1801 | #define ARIZONA_FLL2_SYNC_THETA_SHIFT 0 /* FLL2_SYNC_THETA - [15:0] */ | ||
1802 | #define ARIZONA_FLL2_SYNC_THETA_WIDTH 16 /* FLL2_SYNC_THETA - [15:0] */ | ||
1803 | |||
1804 | /* | ||
1805 | * R420 (0x1A4) - FLL2 Synchroniser 4 | ||
1806 | */ | ||
1807 | #define ARIZONA_FLL2_SYNC_LAMBDA_MASK 0xFFFF /* FLL2_SYNC_LAMBDA - [15:0] */ | ||
1808 | #define ARIZONA_FLL2_SYNC_LAMBDA_SHIFT 0 /* FLL2_SYNC_LAMBDA - [15:0] */ | ||
1809 | #define ARIZONA_FLL2_SYNC_LAMBDA_WIDTH 16 /* FLL2_SYNC_LAMBDA - [15:0] */ | ||
1810 | |||
1811 | /* | ||
1812 | * R421 (0x1A5) - FLL2 Synchroniser 5 | ||
1813 | */ | ||
1814 | #define ARIZONA_FLL2_SYNC_FRATIO_MASK 0x0700 /* FLL2_SYNC_FRATIO - [10:8] */ | ||
1815 | #define ARIZONA_FLL2_SYNC_FRATIO_SHIFT 8 /* FLL2_SYNC_FRATIO - [10:8] */ | ||
1816 | #define ARIZONA_FLL2_SYNC_FRATIO_WIDTH 3 /* FLL2_SYNC_FRATIO - [10:8] */ | ||
1817 | |||
1818 | /* | ||
1819 | * R422 (0x1A6) - FLL2 Synchroniser 6 | ||
1820 | */ | ||
1821 | #define ARIZONA_FLL2_CLK_SYNC_DIV_MASK 0x00C0 /* FLL2_CLK_SYNC_DIV - [7:6] */ | ||
1822 | #define ARIZONA_FLL2_CLK_SYNC_DIV_SHIFT 6 /* FLL2_CLK_SYNC_DIV - [7:6] */ | ||
1823 | #define ARIZONA_FLL2_CLK_SYNC_DIV_WIDTH 2 /* FLL2_CLK_SYNC_DIV - [7:6] */ | ||
1824 | #define ARIZONA_FLL2_CLK_SYNC_SRC_MASK 0x000F /* FLL2_CLK_SYNC_SRC - [3:0] */ | ||
1825 | #define ARIZONA_FLL2_CLK_SYNC_SRC_SHIFT 0 /* FLL2_CLK_SYNC_SRC - [3:0] */ | ||
1826 | #define ARIZONA_FLL2_CLK_SYNC_SRC_WIDTH 4 /* FLL2_CLK_SYNC_SRC - [3:0] */ | ||
1827 | |||
1828 | /* | ||
1829 | * R425 (0x1A9) - FLL2 Spread Spectrum | ||
1830 | */ | ||
1831 | #define ARIZONA_FLL2_SS_AMPL_MASK 0x0030 /* FLL2_SS_AMPL - [5:4] */ | ||
1832 | #define ARIZONA_FLL2_SS_AMPL_SHIFT 4 /* FLL2_SS_AMPL - [5:4] */ | ||
1833 | #define ARIZONA_FLL2_SS_AMPL_WIDTH 2 /* FLL2_SS_AMPL - [5:4] */ | ||
1834 | #define ARIZONA_FLL2_SS_FREQ_MASK 0x000C /* FLL2_SS_FREQ - [3:2] */ | ||
1835 | #define ARIZONA_FLL2_SS_FREQ_SHIFT 2 /* FLL2_SS_FREQ - [3:2] */ | ||
1836 | #define ARIZONA_FLL2_SS_FREQ_WIDTH 2 /* FLL2_SS_FREQ - [3:2] */ | ||
1837 | #define ARIZONA_FLL2_SS_SEL_MASK 0x0003 /* FLL2_SS_SEL - [1:0] */ | ||
1838 | #define ARIZONA_FLL2_SS_SEL_SHIFT 0 /* FLL2_SS_SEL - [1:0] */ | ||
1839 | #define ARIZONA_FLL2_SS_SEL_WIDTH 2 /* FLL2_SS_SEL - [1:0] */ | ||
1840 | |||
1841 | /* | ||
1842 | * R426 (0x1AA) - FLL2 GPIO Clock | ||
1843 | */ | ||
1844 | #define ARIZONA_FLL2_GPDIV_MASK 0x00FE /* FLL2_GPDIV - [7:1] */ | ||
1845 | #define ARIZONA_FLL2_GPDIV_SHIFT 1 /* FLL2_GPDIV - [7:1] */ | ||
1846 | #define ARIZONA_FLL2_GPDIV_WIDTH 7 /* FLL2_GPDIV - [7:1] */ | ||
1847 | #define ARIZONA_FLL2_GPDIV_ENA 0x0001 /* FLL2_GPDIV_ENA */ | ||
1848 | #define ARIZONA_FLL2_GPDIV_ENA_MASK 0x0001 /* FLL2_GPDIV_ENA */ | ||
1849 | #define ARIZONA_FLL2_GPDIV_ENA_SHIFT 0 /* FLL2_GPDIV_ENA */ | ||
1850 | #define ARIZONA_FLL2_GPDIV_ENA_WIDTH 1 /* FLL2_GPDIV_ENA */ | ||
1851 | |||
1852 | /* | ||
1853 | * R512 (0x200) - Mic Charge Pump 1 | ||
1854 | */ | ||
1855 | #define ARIZONA_CPMIC_DISCH 0x0004 /* CPMIC_DISCH */ | ||
1856 | #define ARIZONA_CPMIC_DISCH_MASK 0x0004 /* CPMIC_DISCH */ | ||
1857 | #define ARIZONA_CPMIC_DISCH_SHIFT 2 /* CPMIC_DISCH */ | ||
1858 | #define ARIZONA_CPMIC_DISCH_WIDTH 1 /* CPMIC_DISCH */ | ||
1859 | #define ARIZONA_CPMIC_BYPASS 0x0002 /* CPMIC_BYPASS */ | ||
1860 | #define ARIZONA_CPMIC_BYPASS_MASK 0x0002 /* CPMIC_BYPASS */ | ||
1861 | #define ARIZONA_CPMIC_BYPASS_SHIFT 1 /* CPMIC_BYPASS */ | ||
1862 | #define ARIZONA_CPMIC_BYPASS_WIDTH 1 /* CPMIC_BYPASS */ | ||
1863 | #define ARIZONA_CPMIC_ENA 0x0001 /* CPMIC_ENA */ | ||
1864 | #define ARIZONA_CPMIC_ENA_MASK 0x0001 /* CPMIC_ENA */ | ||
1865 | #define ARIZONA_CPMIC_ENA_SHIFT 0 /* CPMIC_ENA */ | ||
1866 | #define ARIZONA_CPMIC_ENA_WIDTH 1 /* CPMIC_ENA */ | ||
1867 | |||
1868 | /* | ||
1869 | * R528 (0x210) - LDO1 Control 1 | ||
1870 | */ | ||
1871 | #define ARIZONA_LDO1_VSEL_MASK 0x07E0 /* LDO1_VSEL - [10:5] */ | ||
1872 | #define ARIZONA_LDO1_VSEL_SHIFT 5 /* LDO1_VSEL - [10:5] */ | ||
1873 | #define ARIZONA_LDO1_VSEL_WIDTH 6 /* LDO1_VSEL - [10:5] */ | ||
1874 | #define ARIZONA_LDO1_FAST 0x0010 /* LDO1_FAST */ | ||
1875 | #define ARIZONA_LDO1_FAST_MASK 0x0010 /* LDO1_FAST */ | ||
1876 | #define ARIZONA_LDO1_FAST_SHIFT 4 /* LDO1_FAST */ | ||
1877 | #define ARIZONA_LDO1_FAST_WIDTH 1 /* LDO1_FAST */ | ||
1878 | #define ARIZONA_LDO1_DISCH 0x0004 /* LDO1_DISCH */ | ||
1879 | #define ARIZONA_LDO1_DISCH_MASK 0x0004 /* LDO1_DISCH */ | ||
1880 | #define ARIZONA_LDO1_DISCH_SHIFT 2 /* LDO1_DISCH */ | ||
1881 | #define ARIZONA_LDO1_DISCH_WIDTH 1 /* LDO1_DISCH */ | ||
1882 | #define ARIZONA_LDO1_BYPASS 0x0002 /* LDO1_BYPASS */ | ||
1883 | #define ARIZONA_LDO1_BYPASS_MASK 0x0002 /* LDO1_BYPASS */ | ||
1884 | #define ARIZONA_LDO1_BYPASS_SHIFT 1 /* LDO1_BYPASS */ | ||
1885 | #define ARIZONA_LDO1_BYPASS_WIDTH 1 /* LDO1_BYPASS */ | ||
1886 | #define ARIZONA_LDO1_ENA 0x0001 /* LDO1_ENA */ | ||
1887 | #define ARIZONA_LDO1_ENA_MASK 0x0001 /* LDO1_ENA */ | ||
1888 | #define ARIZONA_LDO1_ENA_SHIFT 0 /* LDO1_ENA */ | ||
1889 | #define ARIZONA_LDO1_ENA_WIDTH 1 /* LDO1_ENA */ | ||
1890 | |||
1891 | /* | ||
1892 | * R531 (0x213) - LDO2 Control 1 | ||
1893 | */ | ||
1894 | #define ARIZONA_LDO2_VSEL_MASK 0x07E0 /* LDO2_VSEL - [10:5] */ | ||
1895 | #define ARIZONA_LDO2_VSEL_SHIFT 5 /* LDO2_VSEL - [10:5] */ | ||
1896 | #define ARIZONA_LDO2_VSEL_WIDTH 6 /* LDO2_VSEL - [10:5] */ | ||
1897 | #define ARIZONA_LDO2_FAST 0x0010 /* LDO2_FAST */ | ||
1898 | #define ARIZONA_LDO2_FAST_MASK 0x0010 /* LDO2_FAST */ | ||
1899 | #define ARIZONA_LDO2_FAST_SHIFT 4 /* LDO2_FAST */ | ||
1900 | #define ARIZONA_LDO2_FAST_WIDTH 1 /* LDO2_FAST */ | ||
1901 | #define ARIZONA_LDO2_DISCH 0x0004 /* LDO2_DISCH */ | ||
1902 | #define ARIZONA_LDO2_DISCH_MASK 0x0004 /* LDO2_DISCH */ | ||
1903 | #define ARIZONA_LDO2_DISCH_SHIFT 2 /* LDO2_DISCH */ | ||
1904 | #define ARIZONA_LDO2_DISCH_WIDTH 1 /* LDO2_DISCH */ | ||
1905 | #define ARIZONA_LDO2_BYPASS 0x0002 /* LDO2_BYPASS */ | ||
1906 | #define ARIZONA_LDO2_BYPASS_MASK 0x0002 /* LDO2_BYPASS */ | ||
1907 | #define ARIZONA_LDO2_BYPASS_SHIFT 1 /* LDO2_BYPASS */ | ||
1908 | #define ARIZONA_LDO2_BYPASS_WIDTH 1 /* LDO2_BYPASS */ | ||
1909 | #define ARIZONA_LDO2_ENA 0x0001 /* LDO2_ENA */ | ||
1910 | #define ARIZONA_LDO2_ENA_MASK 0x0001 /* LDO2_ENA */ | ||
1911 | #define ARIZONA_LDO2_ENA_SHIFT 0 /* LDO2_ENA */ | ||
1912 | #define ARIZONA_LDO2_ENA_WIDTH 1 /* LDO2_ENA */ | ||
1913 | |||
1914 | /* | ||
1915 | * R536 (0x218) - Mic Bias Ctrl 1 | ||
1916 | */ | ||
1917 | #define ARIZONA_MICB1_EXT_CAP 0x8000 /* MICB1_EXT_CAP */ | ||
1918 | #define ARIZONA_MICB1_EXT_CAP_MASK 0x8000 /* MICB1_EXT_CAP */ | ||
1919 | #define ARIZONA_MICB1_EXT_CAP_SHIFT 15 /* MICB1_EXT_CAP */ | ||
1920 | #define ARIZONA_MICB1_EXT_CAP_WIDTH 1 /* MICB1_EXT_CAP */ | ||
1921 | #define ARIZONA_MICB1_LVL_MASK 0x01E0 /* MICB1_LVL - [8:5] */ | ||
1922 | #define ARIZONA_MICB1_LVL_SHIFT 5 /* MICB1_LVL - [8:5] */ | ||
1923 | #define ARIZONA_MICB1_LVL_WIDTH 4 /* MICB1_LVL - [8:5] */ | ||
1924 | #define ARIZONA_MICB1_FAST 0x0010 /* MICB1_FAST */ | ||
1925 | #define ARIZONA_MICB1_FAST_MASK 0x0010 /* MICB1_FAST */ | ||
1926 | #define ARIZONA_MICB1_FAST_SHIFT 4 /* MICB1_FAST */ | ||
1927 | #define ARIZONA_MICB1_FAST_WIDTH 1 /* MICB1_FAST */ | ||
1928 | #define ARIZONA_MICB1_RATE 0x0008 /* MICB1_RATE */ | ||
1929 | #define ARIZONA_MICB1_RATE_MASK 0x0008 /* MICB1_RATE */ | ||
1930 | #define ARIZONA_MICB1_RATE_SHIFT 3 /* MICB1_RATE */ | ||
1931 | #define ARIZONA_MICB1_RATE_WIDTH 1 /* MICB1_RATE */ | ||
1932 | #define ARIZONA_MICB1_DISCH 0x0004 /* MICB1_DISCH */ | ||
1933 | #define ARIZONA_MICB1_DISCH_MASK 0x0004 /* MICB1_DISCH */ | ||
1934 | #define ARIZONA_MICB1_DISCH_SHIFT 2 /* MICB1_DISCH */ | ||
1935 | #define ARIZONA_MICB1_DISCH_WIDTH 1 /* MICB1_DISCH */ | ||
1936 | #define ARIZONA_MICB1_BYPASS 0x0002 /* MICB1_BYPASS */ | ||
1937 | #define ARIZONA_MICB1_BYPASS_MASK 0x0002 /* MICB1_BYPASS */ | ||
1938 | #define ARIZONA_MICB1_BYPASS_SHIFT 1 /* MICB1_BYPASS */ | ||
1939 | #define ARIZONA_MICB1_BYPASS_WIDTH 1 /* MICB1_BYPASS */ | ||
1940 | #define ARIZONA_MICB1_ENA 0x0001 /* MICB1_ENA */ | ||
1941 | #define ARIZONA_MICB1_ENA_MASK 0x0001 /* MICB1_ENA */ | ||
1942 | #define ARIZONA_MICB1_ENA_SHIFT 0 /* MICB1_ENA */ | ||
1943 | #define ARIZONA_MICB1_ENA_WIDTH 1 /* MICB1_ENA */ | ||
1944 | |||
1945 | /* | ||
1946 | * R537 (0x219) - Mic Bias Ctrl 2 | ||
1947 | */ | ||
1948 | #define ARIZONA_MICB2_EXT_CAP 0x8000 /* MICB2_EXT_CAP */ | ||
1949 | #define ARIZONA_MICB2_EXT_CAP_MASK 0x8000 /* MICB2_EXT_CAP */ | ||
1950 | #define ARIZONA_MICB2_EXT_CAP_SHIFT 15 /* MICB2_EXT_CAP */ | ||
1951 | #define ARIZONA_MICB2_EXT_CAP_WIDTH 1 /* MICB2_EXT_CAP */ | ||
1952 | #define ARIZONA_MICB2_LVL_MASK 0x01E0 /* MICB2_LVL - [8:5] */ | ||
1953 | #define ARIZONA_MICB2_LVL_SHIFT 5 /* MICB2_LVL - [8:5] */ | ||
1954 | #define ARIZONA_MICB2_LVL_WIDTH 4 /* MICB2_LVL - [8:5] */ | ||
1955 | #define ARIZONA_MICB2_FAST 0x0010 /* MICB2_FAST */ | ||
1956 | #define ARIZONA_MICB2_FAST_MASK 0x0010 /* MICB2_FAST */ | ||
1957 | #define ARIZONA_MICB2_FAST_SHIFT 4 /* MICB2_FAST */ | ||
1958 | #define ARIZONA_MICB2_FAST_WIDTH 1 /* MICB2_FAST */ | ||
1959 | #define ARIZONA_MICB2_RATE 0x0008 /* MICB2_RATE */ | ||
1960 | #define ARIZONA_MICB2_RATE_MASK 0x0008 /* MICB2_RATE */ | ||
1961 | #define ARIZONA_MICB2_RATE_SHIFT 3 /* MICB2_RATE */ | ||
1962 | #define ARIZONA_MICB2_RATE_WIDTH 1 /* MICB2_RATE */ | ||
1963 | #define ARIZONA_MICB2_DISCH 0x0004 /* MICB2_DISCH */ | ||
1964 | #define ARIZONA_MICB2_DISCH_MASK 0x0004 /* MICB2_DISCH */ | ||
1965 | #define ARIZONA_MICB2_DISCH_SHIFT 2 /* MICB2_DISCH */ | ||
1966 | #define ARIZONA_MICB2_DISCH_WIDTH 1 /* MICB2_DISCH */ | ||
1967 | #define ARIZONA_MICB2_BYPASS 0x0002 /* MICB2_BYPASS */ | ||
1968 | #define ARIZONA_MICB2_BYPASS_MASK 0x0002 /* MICB2_BYPASS */ | ||
1969 | #define ARIZONA_MICB2_BYPASS_SHIFT 1 /* MICB2_BYPASS */ | ||
1970 | #define ARIZONA_MICB2_BYPASS_WIDTH 1 /* MICB2_BYPASS */ | ||
1971 | #define ARIZONA_MICB2_ENA 0x0001 /* MICB2_ENA */ | ||
1972 | #define ARIZONA_MICB2_ENA_MASK 0x0001 /* MICB2_ENA */ | ||
1973 | #define ARIZONA_MICB2_ENA_SHIFT 0 /* MICB2_ENA */ | ||
1974 | #define ARIZONA_MICB2_ENA_WIDTH 1 /* MICB2_ENA */ | ||
1975 | |||
1976 | /* | ||
1977 | * R538 (0x21A) - Mic Bias Ctrl 3 | ||
1978 | */ | ||
1979 | #define ARIZONA_MICB3_EXT_CAP 0x8000 /* MICB3_EXT_CAP */ | ||
1980 | #define ARIZONA_MICB3_EXT_CAP_MASK 0x8000 /* MICB3_EXT_CAP */ | ||
1981 | #define ARIZONA_MICB3_EXT_CAP_SHIFT 15 /* MICB3_EXT_CAP */ | ||
1982 | #define ARIZONA_MICB3_EXT_CAP_WIDTH 1 /* MICB3_EXT_CAP */ | ||
1983 | #define ARIZONA_MICB3_LVL_MASK 0x01E0 /* MICB3_LVL - [8:5] */ | ||
1984 | #define ARIZONA_MICB3_LVL_SHIFT 5 /* MICB3_LVL - [8:5] */ | ||
1985 | #define ARIZONA_MICB3_LVL_WIDTH 4 /* MICB3_LVL - [8:5] */ | ||
1986 | #define ARIZONA_MICB3_FAST 0x0010 /* MICB3_FAST */ | ||
1987 | #define ARIZONA_MICB3_FAST_MASK 0x0010 /* MICB3_FAST */ | ||
1988 | #define ARIZONA_MICB3_FAST_SHIFT 4 /* MICB3_FAST */ | ||
1989 | #define ARIZONA_MICB3_FAST_WIDTH 1 /* MICB3_FAST */ | ||
1990 | #define ARIZONA_MICB3_RATE 0x0008 /* MICB3_RATE */ | ||
1991 | #define ARIZONA_MICB3_RATE_MASK 0x0008 /* MICB3_RATE */ | ||
1992 | #define ARIZONA_MICB3_RATE_SHIFT 3 /* MICB3_RATE */ | ||
1993 | #define ARIZONA_MICB3_RATE_WIDTH 1 /* MICB3_RATE */ | ||
1994 | #define ARIZONA_MICB3_DISCH 0x0004 /* MICB3_DISCH */ | ||
1995 | #define ARIZONA_MICB3_DISCH_MASK 0x0004 /* MICB3_DISCH */ | ||
1996 | #define ARIZONA_MICB3_DISCH_SHIFT 2 /* MICB3_DISCH */ | ||
1997 | #define ARIZONA_MICB3_DISCH_WIDTH 1 /* MICB3_DISCH */ | ||
1998 | #define ARIZONA_MICB3_BYPASS 0x0002 /* MICB3_BYPASS */ | ||
1999 | #define ARIZONA_MICB3_BYPASS_MASK 0x0002 /* MICB3_BYPASS */ | ||
2000 | #define ARIZONA_MICB3_BYPASS_SHIFT 1 /* MICB3_BYPASS */ | ||
2001 | #define ARIZONA_MICB3_BYPASS_WIDTH 1 /* MICB3_BYPASS */ | ||
2002 | #define ARIZONA_MICB3_ENA 0x0001 /* MICB3_ENA */ | ||
2003 | #define ARIZONA_MICB3_ENA_MASK 0x0001 /* MICB3_ENA */ | ||
2004 | #define ARIZONA_MICB3_ENA_SHIFT 0 /* MICB3_ENA */ | ||
2005 | #define ARIZONA_MICB3_ENA_WIDTH 1 /* MICB3_ENA */ | ||
2006 | |||
2007 | /* | ||
2008 | * R659 (0x293) - Accessory Detect Mode 1 | ||
2009 | */ | ||
2010 | #define ARIZONA_ACCDET_SRC 0x2000 /* ACCDET_SRC */ | ||
2011 | #define ARIZONA_ACCDET_SRC_MASK 0x2000 /* ACCDET_SRC */ | ||
2012 | #define ARIZONA_ACCDET_SRC_SHIFT 13 /* ACCDET_SRC */ | ||
2013 | #define ARIZONA_ACCDET_SRC_WIDTH 1 /* ACCDET_SRC */ | ||
2014 | #define ARIZONA_ACCDET_MODE_MASK 0x0003 /* ACCDET_MODE - [1:0] */ | ||
2015 | #define ARIZONA_ACCDET_MODE_SHIFT 0 /* ACCDET_MODE - [1:0] */ | ||
2016 | #define ARIZONA_ACCDET_MODE_WIDTH 2 /* ACCDET_MODE - [1:0] */ | ||
2017 | |||
2018 | /* | ||
2019 | * R667 (0x29B) - Headphone Detect 1 | ||
2020 | */ | ||
2021 | #define ARIZONA_HP_STEP_SIZE 0x0100 /* HP_STEP_SIZE */ | ||
2022 | #define ARIZONA_HP_STEP_SIZE_MASK 0x0100 /* HP_STEP_SIZE */ | ||
2023 | #define ARIZONA_HP_STEP_SIZE_SHIFT 8 /* HP_STEP_SIZE */ | ||
2024 | #define ARIZONA_HP_STEP_SIZE_WIDTH 1 /* HP_STEP_SIZE */ | ||
2025 | #define ARIZONA_HP_HOLDTIME_MASK 0x00E0 /* HP_HOLDTIME - [7:5] */ | ||
2026 | #define ARIZONA_HP_HOLDTIME_SHIFT 5 /* HP_HOLDTIME - [7:5] */ | ||
2027 | #define ARIZONA_HP_HOLDTIME_WIDTH 3 /* HP_HOLDTIME - [7:5] */ | ||
2028 | #define ARIZONA_HP_CLK_DIV_MASK 0x0018 /* HP_CLK_DIV - [4:3] */ | ||
2029 | #define ARIZONA_HP_CLK_DIV_SHIFT 3 /* HP_CLK_DIV - [4:3] */ | ||
2030 | #define ARIZONA_HP_CLK_DIV_WIDTH 2 /* HP_CLK_DIV - [4:3] */ | ||
2031 | #define ARIZONA_HP_IDAC_STEER 0x0004 /* HP_IDAC_STEER */ | ||
2032 | #define ARIZONA_HP_IDAC_STEER_MASK 0x0004 /* HP_IDAC_STEER */ | ||
2033 | #define ARIZONA_HP_IDAC_STEER_SHIFT 2 /* HP_IDAC_STEER */ | ||
2034 | #define ARIZONA_HP_IDAC_STEER_WIDTH 1 /* HP_IDAC_STEER */ | ||
2035 | #define ARIZONA_HP_RATE 0x0002 /* HP_RATE */ | ||
2036 | #define ARIZONA_HP_RATE_MASK 0x0002 /* HP_RATE */ | ||
2037 | #define ARIZONA_HP_RATE_SHIFT 1 /* HP_RATE */ | ||
2038 | #define ARIZONA_HP_RATE_WIDTH 1 /* HP_RATE */ | ||
2039 | #define ARIZONA_HP_POLL 0x0001 /* HP_POLL */ | ||
2040 | #define ARIZONA_HP_POLL_MASK 0x0001 /* HP_POLL */ | ||
2041 | #define ARIZONA_HP_POLL_SHIFT 0 /* HP_POLL */ | ||
2042 | #define ARIZONA_HP_POLL_WIDTH 1 /* HP_POLL */ | ||
2043 | |||
2044 | /* | ||
2045 | * R668 (0x29C) - Headphone Detect 2 | ||
2046 | */ | ||
2047 | #define ARIZONA_HP_DONE 0x0080 /* HP_DONE */ | ||
2048 | #define ARIZONA_HP_DONE_MASK 0x0080 /* HP_DONE */ | ||
2049 | #define ARIZONA_HP_DONE_SHIFT 7 /* HP_DONE */ | ||
2050 | #define ARIZONA_HP_DONE_WIDTH 1 /* HP_DONE */ | ||
2051 | #define ARIZONA_HP_LVL_MASK 0x007F /* HP_LVL - [6:0] */ | ||
2052 | #define ARIZONA_HP_LVL_SHIFT 0 /* HP_LVL - [6:0] */ | ||
2053 | #define ARIZONA_HP_LVL_WIDTH 7 /* HP_LVL - [6:0] */ | ||
2054 | |||
2055 | /* | ||
2056 | * R675 (0x2A3) - Mic Detect 1 | ||
2057 | */ | ||
2058 | #define ARIZONA_MICD_BIAS_STARTTIME_MASK 0xF000 /* MICD_BIAS_STARTTIME - [15:12] */ | ||
2059 | #define ARIZONA_MICD_BIAS_STARTTIME_SHIFT 12 /* MICD_BIAS_STARTTIME - [15:12] */ | ||
2060 | #define ARIZONA_MICD_BIAS_STARTTIME_WIDTH 4 /* MICD_BIAS_STARTTIME - [15:12] */ | ||
2061 | #define ARIZONA_MICD_RATE_MASK 0x0F00 /* MICD_RATE - [11:8] */ | ||
2062 | #define ARIZONA_MICD_RATE_SHIFT 8 /* MICD_RATE - [11:8] */ | ||
2063 | #define ARIZONA_MICD_RATE_WIDTH 4 /* MICD_RATE - [11:8] */ | ||
2064 | #define ARIZONA_MICD_BIAS_SRC_MASK 0x0030 /* MICD_BIAS_SRC - [5:4] */ | ||
2065 | #define ARIZONA_MICD_BIAS_SRC_SHIFT 4 /* MICD_BIAS_SRC - [5:4] */ | ||
2066 | #define ARIZONA_MICD_BIAS_SRC_WIDTH 2 /* MICD_BIAS_SRC - [5:4] */ | ||
2067 | #define ARIZONA_MICD_DBTIME 0x0002 /* MICD_DBTIME */ | ||
2068 | #define ARIZONA_MICD_DBTIME_MASK 0x0002 /* MICD_DBTIME */ | ||
2069 | #define ARIZONA_MICD_DBTIME_SHIFT 1 /* MICD_DBTIME */ | ||
2070 | #define ARIZONA_MICD_DBTIME_WIDTH 1 /* MICD_DBTIME */ | ||
2071 | #define ARIZONA_MICD_ENA 0x0001 /* MICD_ENA */ | ||
2072 | #define ARIZONA_MICD_ENA_MASK 0x0001 /* MICD_ENA */ | ||
2073 | #define ARIZONA_MICD_ENA_SHIFT 0 /* MICD_ENA */ | ||
2074 | #define ARIZONA_MICD_ENA_WIDTH 1 /* MICD_ENA */ | ||
2075 | |||
2076 | /* | ||
2077 | * R676 (0x2A4) - Mic Detect 2 | ||
2078 | */ | ||
2079 | #define ARIZONA_MICD_LVL_SEL_MASK 0x00FF /* MICD_LVL_SEL - [7:0] */ | ||
2080 | #define ARIZONA_MICD_LVL_SEL_SHIFT 0 /* MICD_LVL_SEL - [7:0] */ | ||
2081 | #define ARIZONA_MICD_LVL_SEL_WIDTH 8 /* MICD_LVL_SEL - [7:0] */ | ||
2082 | |||
2083 | /* | ||
2084 | * R677 (0x2A5) - Mic Detect 3 | ||
2085 | */ | ||
2086 | #define ARIZONA_MICD_LVL_MASK 0x07FC /* MICD_LVL - [10:2] */ | ||
2087 | #define ARIZONA_MICD_LVL_SHIFT 2 /* MICD_LVL - [10:2] */ | ||
2088 | #define ARIZONA_MICD_LVL_WIDTH 9 /* MICD_LVL - [10:2] */ | ||
2089 | #define ARIZONA_MICD_VALID 0x0002 /* MICD_VALID */ | ||
2090 | #define ARIZONA_MICD_VALID_MASK 0x0002 /* MICD_VALID */ | ||
2091 | #define ARIZONA_MICD_VALID_SHIFT 1 /* MICD_VALID */ | ||
2092 | #define ARIZONA_MICD_VALID_WIDTH 1 /* MICD_VALID */ | ||
2093 | #define ARIZONA_MICD_STS 0x0001 /* MICD_STS */ | ||
2094 | #define ARIZONA_MICD_STS_MASK 0x0001 /* MICD_STS */ | ||
2095 | #define ARIZONA_MICD_STS_SHIFT 0 /* MICD_STS */ | ||
2096 | #define ARIZONA_MICD_STS_WIDTH 1 /* MICD_STS */ | ||
2097 | |||
2098 | /* | ||
2099 | * R707 (0x2C3) - Mic noise mix control 1 | ||
2100 | */ | ||
2101 | #define ARIZONA_MICMUTE_RATE_MASK 0x7800 /* MICMUTE_RATE - [14:11] */ | ||
2102 | #define ARIZONA_MICMUTE_RATE_SHIFT 11 /* MICMUTE_RATE - [14:11] */ | ||
2103 | #define ARIZONA_MICMUTE_RATE_WIDTH 4 /* MICMUTE_RATE - [14:11] */ | ||
2104 | #define ARIZONA_MICMUTE_MIX_ENA 0x0040 /* MICMUTE_MIX_ENA */ | ||
2105 | #define ARIZONA_MICMUTE_MIX_ENA_MASK 0x0040 /* MICMUTE_MIX_ENA */ | ||
2106 | #define ARIZONA_MICMUTE_MIX_ENA_SHIFT 6 /* MICMUTE_MIX_ENA */ | ||
2107 | #define ARIZONA_MICMUTE_MIX_ENA_WIDTH 1 /* MICMUTE_MIX_ENA */ | ||
2108 | |||
2109 | /* | ||
2110 | * R715 (0x2CB) - Isolation control | ||
2111 | */ | ||
2112 | #define ARIZONA_ISOLATE_DCVDD1 0x0001 /* ISOLATE_DCVDD1 */ | ||
2113 | #define ARIZONA_ISOLATE_DCVDD1_MASK 0x0001 /* ISOLATE_DCVDD1 */ | ||
2114 | #define ARIZONA_ISOLATE_DCVDD1_SHIFT 0 /* ISOLATE_DCVDD1 */ | ||
2115 | #define ARIZONA_ISOLATE_DCVDD1_WIDTH 1 /* ISOLATE_DCVDD1 */ | ||
2116 | |||
2117 | /* | ||
2118 | * R723 (0x2D3) - Jack detect analogue | ||
2119 | */ | ||
2120 | #define ARIZONA_JD2_ENA 0x0002 /* JD2_ENA */ | ||
2121 | #define ARIZONA_JD2_ENA_MASK 0x0002 /* JD2_ENA */ | ||
2122 | #define ARIZONA_JD2_ENA_SHIFT 1 /* JD2_ENA */ | ||
2123 | #define ARIZONA_JD2_ENA_WIDTH 1 /* JD2_ENA */ | ||
2124 | #define ARIZONA_JD1_ENA 0x0001 /* JD1_ENA */ | ||
2125 | #define ARIZONA_JD1_ENA_MASK 0x0001 /* JD1_ENA */ | ||
2126 | #define ARIZONA_JD1_ENA_SHIFT 0 /* JD1_ENA */ | ||
2127 | #define ARIZONA_JD1_ENA_WIDTH 1 /* JD1_ENA */ | ||
2128 | |||
2129 | /* | ||
2130 | * R768 (0x300) - Input Enables | ||
2131 | */ | ||
2132 | #define ARIZONA_IN4L_ENA 0x0080 /* IN4L_ENA */ | ||
2133 | #define ARIZONA_IN4L_ENA_MASK 0x0080 /* IN4L_ENA */ | ||
2134 | #define ARIZONA_IN4L_ENA_SHIFT 7 /* IN4L_ENA */ | ||
2135 | #define ARIZONA_IN4L_ENA_WIDTH 1 /* IN4L_ENA */ | ||
2136 | #define ARIZONA_IN4R_ENA 0x0040 /* IN4R_ENA */ | ||
2137 | #define ARIZONA_IN4R_ENA_MASK 0x0040 /* IN4R_ENA */ | ||
2138 | #define ARIZONA_IN4R_ENA_SHIFT 6 /* IN4R_ENA */ | ||
2139 | #define ARIZONA_IN4R_ENA_WIDTH 1 /* IN4R_ENA */ | ||
2140 | #define ARIZONA_IN3L_ENA 0x0020 /* IN3L_ENA */ | ||
2141 | #define ARIZONA_IN3L_ENA_MASK 0x0020 /* IN3L_ENA */ | ||
2142 | #define ARIZONA_IN3L_ENA_SHIFT 5 /* IN3L_ENA */ | ||
2143 | #define ARIZONA_IN3L_ENA_WIDTH 1 /* IN3L_ENA */ | ||
2144 | #define ARIZONA_IN3R_ENA 0x0010 /* IN3R_ENA */ | ||
2145 | #define ARIZONA_IN3R_ENA_MASK 0x0010 /* IN3R_ENA */ | ||
2146 | #define ARIZONA_IN3R_ENA_SHIFT 4 /* IN3R_ENA */ | ||
2147 | #define ARIZONA_IN3R_ENA_WIDTH 1 /* IN3R_ENA */ | ||
2148 | #define ARIZONA_IN2L_ENA 0x0008 /* IN2L_ENA */ | ||
2149 | #define ARIZONA_IN2L_ENA_MASK 0x0008 /* IN2L_ENA */ | ||
2150 | #define ARIZONA_IN2L_ENA_SHIFT 3 /* IN2L_ENA */ | ||
2151 | #define ARIZONA_IN2L_ENA_WIDTH 1 /* IN2L_ENA */ | ||
2152 | #define ARIZONA_IN2R_ENA 0x0004 /* IN2R_ENA */ | ||
2153 | #define ARIZONA_IN2R_ENA_MASK 0x0004 /* IN2R_ENA */ | ||
2154 | #define ARIZONA_IN2R_ENA_SHIFT 2 /* IN2R_ENA */ | ||
2155 | #define ARIZONA_IN2R_ENA_WIDTH 1 /* IN2R_ENA */ | ||
2156 | #define ARIZONA_IN1L_ENA 0x0002 /* IN1L_ENA */ | ||
2157 | #define ARIZONA_IN1L_ENA_MASK 0x0002 /* IN1L_ENA */ | ||
2158 | #define ARIZONA_IN1L_ENA_SHIFT 1 /* IN1L_ENA */ | ||
2159 | #define ARIZONA_IN1L_ENA_WIDTH 1 /* IN1L_ENA */ | ||
2160 | #define ARIZONA_IN1R_ENA 0x0001 /* IN1R_ENA */ | ||
2161 | #define ARIZONA_IN1R_ENA_MASK 0x0001 /* IN1R_ENA */ | ||
2162 | #define ARIZONA_IN1R_ENA_SHIFT 0 /* IN1R_ENA */ | ||
2163 | #define ARIZONA_IN1R_ENA_WIDTH 1 /* IN1R_ENA */ | ||
2164 | |||
2165 | /* | ||
2166 | * R776 (0x308) - Input Rate | ||
2167 | */ | ||
2168 | #define ARIZONA_IN_RATE_MASK 0x7800 /* IN_RATE - [14:11] */ | ||
2169 | #define ARIZONA_IN_RATE_SHIFT 11 /* IN_RATE - [14:11] */ | ||
2170 | #define ARIZONA_IN_RATE_WIDTH 4 /* IN_RATE - [14:11] */ | ||
2171 | |||
2172 | /* | ||
2173 | * R777 (0x309) - Input Volume Ramp | ||
2174 | */ | ||
2175 | #define ARIZONA_IN_VD_RAMP_MASK 0x0070 /* IN_VD_RAMP - [6:4] */ | ||
2176 | #define ARIZONA_IN_VD_RAMP_SHIFT 4 /* IN_VD_RAMP - [6:4] */ | ||
2177 | #define ARIZONA_IN_VD_RAMP_WIDTH 3 /* IN_VD_RAMP - [6:4] */ | ||
2178 | #define ARIZONA_IN_VI_RAMP_MASK 0x0007 /* IN_VI_RAMP - [2:0] */ | ||
2179 | #define ARIZONA_IN_VI_RAMP_SHIFT 0 /* IN_VI_RAMP - [2:0] */ | ||
2180 | #define ARIZONA_IN_VI_RAMP_WIDTH 3 /* IN_VI_RAMP - [2:0] */ | ||
2181 | |||
2182 | /* | ||
2183 | * R784 (0x310) - IN1L Control | ||
2184 | */ | ||
2185 | #define ARIZONA_IN1_OSR_MASK 0x6000 /* IN1_OSR - [14:13] */ | ||
2186 | #define ARIZONA_IN1_OSR_SHIFT 13 /* IN1_OSR - [14:13] */ | ||
2187 | #define ARIZONA_IN1_OSR_WIDTH 2 /* IN1_OSR - [14:13] */ | ||
2188 | #define ARIZONA_IN1_DMIC_SUP_MASK 0x1800 /* IN1_DMIC_SUP - [12:11] */ | ||
2189 | #define ARIZONA_IN1_DMIC_SUP_SHIFT 11 /* IN1_DMIC_SUP - [12:11] */ | ||
2190 | #define ARIZONA_IN1_DMIC_SUP_WIDTH 2 /* IN1_DMIC_SUP - [12:11] */ | ||
2191 | #define ARIZONA_IN1_MODE_MASK 0x0600 /* IN1_MODE - [10:9] */ | ||
2192 | #define ARIZONA_IN1_MODE_SHIFT 9 /* IN1_MODE - [10:9] */ | ||
2193 | #define ARIZONA_IN1_MODE_WIDTH 2 /* IN1_MODE - [10:9] */ | ||
2194 | #define ARIZONA_IN1L_PGA_VOL_MASK 0x00FE /* IN1L_PGA_VOL - [7:1] */ | ||
2195 | #define ARIZONA_IN1L_PGA_VOL_SHIFT 1 /* IN1L_PGA_VOL - [7:1] */ | ||
2196 | #define ARIZONA_IN1L_PGA_VOL_WIDTH 7 /* IN1L_PGA_VOL - [7:1] */ | ||
2197 | |||
2198 | /* | ||
2199 | * R785 (0x311) - ADC Digital Volume 1L | ||
2200 | */ | ||
2201 | #define ARIZONA_IN_VU 0x0200 /* IN_VU */ | ||
2202 | #define ARIZONA_IN_VU_MASK 0x0200 /* IN_VU */ | ||
2203 | #define ARIZONA_IN_VU_SHIFT 9 /* IN_VU */ | ||
2204 | #define ARIZONA_IN_VU_WIDTH 1 /* IN_VU */ | ||
2205 | #define ARIZONA_IN1L_MUTE 0x0100 /* IN1L_MUTE */ | ||
2206 | #define ARIZONA_IN1L_MUTE_MASK 0x0100 /* IN1L_MUTE */ | ||
2207 | #define ARIZONA_IN1L_MUTE_SHIFT 8 /* IN1L_MUTE */ | ||
2208 | #define ARIZONA_IN1L_MUTE_WIDTH 1 /* IN1L_MUTE */ | ||
2209 | #define ARIZONA_IN1L_DIG_VOL_MASK 0x00FF /* IN1L_DIG_VOL - [7:0] */ | ||
2210 | #define ARIZONA_IN1L_DIG_VOL_SHIFT 0 /* IN1L_DIG_VOL - [7:0] */ | ||
2211 | #define ARIZONA_IN1L_DIG_VOL_WIDTH 8 /* IN1L_DIG_VOL - [7:0] */ | ||
2212 | |||
2213 | /* | ||
2214 | * R786 (0x312) - DMIC1L Control | ||
2215 | */ | ||
2216 | #define ARIZONA_IN1_DMICL_DLY_MASK 0x003F /* IN1_DMICL_DLY - [5:0] */ | ||
2217 | #define ARIZONA_IN1_DMICL_DLY_SHIFT 0 /* IN1_DMICL_DLY - [5:0] */ | ||
2218 | #define ARIZONA_IN1_DMICL_DLY_WIDTH 6 /* IN1_DMICL_DLY - [5:0] */ | ||
2219 | |||
2220 | /* | ||
2221 | * R788 (0x314) - IN1R Control | ||
2222 | */ | ||
2223 | #define ARIZONA_IN1R_PGA_VOL_MASK 0x00FE /* IN1R_PGA_VOL - [7:1] */ | ||
2224 | #define ARIZONA_IN1R_PGA_VOL_SHIFT 1 /* IN1R_PGA_VOL - [7:1] */ | ||
2225 | #define ARIZONA_IN1R_PGA_VOL_WIDTH 7 /* IN1R_PGA_VOL - [7:1] */ | ||
2226 | |||
2227 | /* | ||
2228 | * R789 (0x315) - ADC Digital Volume 1R | ||
2229 | */ | ||
2230 | #define ARIZONA_IN_VU 0x0200 /* IN_VU */ | ||
2231 | #define ARIZONA_IN_VU_MASK 0x0200 /* IN_VU */ | ||
2232 | #define ARIZONA_IN_VU_SHIFT 9 /* IN_VU */ | ||
2233 | #define ARIZONA_IN_VU_WIDTH 1 /* IN_VU */ | ||
2234 | #define ARIZONA_IN1R_MUTE 0x0100 /* IN1R_MUTE */ | ||
2235 | #define ARIZONA_IN1R_MUTE_MASK 0x0100 /* IN1R_MUTE */ | ||
2236 | #define ARIZONA_IN1R_MUTE_SHIFT 8 /* IN1R_MUTE */ | ||
2237 | #define ARIZONA_IN1R_MUTE_WIDTH 1 /* IN1R_MUTE */ | ||
2238 | #define ARIZONA_IN1R_DIG_VOL_MASK 0x00FF /* IN1R_DIG_VOL - [7:0] */ | ||
2239 | #define ARIZONA_IN1R_DIG_VOL_SHIFT 0 /* IN1R_DIG_VOL - [7:0] */ | ||
2240 | #define ARIZONA_IN1R_DIG_VOL_WIDTH 8 /* IN1R_DIG_VOL - [7:0] */ | ||
2241 | |||
2242 | /* | ||
2243 | * R790 (0x316) - DMIC1R Control | ||
2244 | */ | ||
2245 | #define ARIZONA_IN1_DMICR_DLY_MASK 0x003F /* IN1_DMICR_DLY - [5:0] */ | ||
2246 | #define ARIZONA_IN1_DMICR_DLY_SHIFT 0 /* IN1_DMICR_DLY - [5:0] */ | ||
2247 | #define ARIZONA_IN1_DMICR_DLY_WIDTH 6 /* IN1_DMICR_DLY - [5:0] */ | ||
2248 | |||
2249 | /* | ||
2250 | * R792 (0x318) - IN2L Control | ||
2251 | */ | ||
2252 | #define ARIZONA_IN2_OSR_MASK 0x6000 /* IN2_OSR - [14:13] */ | ||
2253 | #define ARIZONA_IN2_OSR_SHIFT 13 /* IN2_OSR - [14:13] */ | ||
2254 | #define ARIZONA_IN2_OSR_WIDTH 2 /* IN2_OSR - [14:13] */ | ||
2255 | #define ARIZONA_IN2_DMIC_SUP_MASK 0x1800 /* IN2_DMIC_SUP - [12:11] */ | ||
2256 | #define ARIZONA_IN2_DMIC_SUP_SHIFT 11 /* IN2_DMIC_SUP - [12:11] */ | ||
2257 | #define ARIZONA_IN2_DMIC_SUP_WIDTH 2 /* IN2_DMIC_SUP - [12:11] */ | ||
2258 | #define ARIZONA_IN2_MODE_MASK 0x0600 /* IN2_MODE - [10:9] */ | ||
2259 | #define ARIZONA_IN2_MODE_SHIFT 9 /* IN2_MODE - [10:9] */ | ||
2260 | #define ARIZONA_IN2_MODE_WIDTH 2 /* IN2_MODE - [10:9] */ | ||
2261 | #define ARIZONA_IN2L_PGA_VOL_MASK 0x00FE /* IN2L_PGA_VOL - [7:1] */ | ||
2262 | #define ARIZONA_IN2L_PGA_VOL_SHIFT 1 /* IN2L_PGA_VOL - [7:1] */ | ||
2263 | #define ARIZONA_IN2L_PGA_VOL_WIDTH 7 /* IN2L_PGA_VOL - [7:1] */ | ||
2264 | |||
2265 | /* | ||
2266 | * R793 (0x319) - ADC Digital Volume 2L | ||
2267 | */ | ||
2268 | #define ARIZONA_IN_VU 0x0200 /* IN_VU */ | ||
2269 | #define ARIZONA_IN_VU_MASK 0x0200 /* IN_VU */ | ||
2270 | #define ARIZONA_IN_VU_SHIFT 9 /* IN_VU */ | ||
2271 | #define ARIZONA_IN_VU_WIDTH 1 /* IN_VU */ | ||
2272 | #define ARIZONA_IN2L_MUTE 0x0100 /* IN2L_MUTE */ | ||
2273 | #define ARIZONA_IN2L_MUTE_MASK 0x0100 /* IN2L_MUTE */ | ||
2274 | #define ARIZONA_IN2L_MUTE_SHIFT 8 /* IN2L_MUTE */ | ||
2275 | #define ARIZONA_IN2L_MUTE_WIDTH 1 /* IN2L_MUTE */ | ||
2276 | #define ARIZONA_IN2L_DIG_VOL_MASK 0x00FF /* IN2L_DIG_VOL - [7:0] */ | ||
2277 | #define ARIZONA_IN2L_DIG_VOL_SHIFT 0 /* IN2L_DIG_VOL - [7:0] */ | ||
2278 | #define ARIZONA_IN2L_DIG_VOL_WIDTH 8 /* IN2L_DIG_VOL - [7:0] */ | ||
2279 | |||
2280 | /* | ||
2281 | * R794 (0x31A) - DMIC2L Control | ||
2282 | */ | ||
2283 | #define ARIZONA_IN2_DMICL_DLY_MASK 0x003F /* IN2_DMICL_DLY - [5:0] */ | ||
2284 | #define ARIZONA_IN2_DMICL_DLY_SHIFT 0 /* IN2_DMICL_DLY - [5:0] */ | ||
2285 | #define ARIZONA_IN2_DMICL_DLY_WIDTH 6 /* IN2_DMICL_DLY - [5:0] */ | ||
2286 | |||
2287 | /* | ||
2288 | * R796 (0x31C) - IN2R Control | ||
2289 | */ | ||
2290 | #define ARIZONA_IN2R_PGA_VOL_MASK 0x00FE /* IN2R_PGA_VOL - [7:1] */ | ||
2291 | #define ARIZONA_IN2R_PGA_VOL_SHIFT 1 /* IN2R_PGA_VOL - [7:1] */ | ||
2292 | #define ARIZONA_IN2R_PGA_VOL_WIDTH 7 /* IN2R_PGA_VOL - [7:1] */ | ||
2293 | |||
2294 | /* | ||
2295 | * R797 (0x31D) - ADC Digital Volume 2R | ||
2296 | */ | ||
2297 | #define ARIZONA_IN_VU 0x0200 /* IN_VU */ | ||
2298 | #define ARIZONA_IN_VU_MASK 0x0200 /* IN_VU */ | ||
2299 | #define ARIZONA_IN_VU_SHIFT 9 /* IN_VU */ | ||
2300 | #define ARIZONA_IN_VU_WIDTH 1 /* IN_VU */ | ||
2301 | #define ARIZONA_IN2R_MUTE 0x0100 /* IN2R_MUTE */ | ||
2302 | #define ARIZONA_IN2R_MUTE_MASK 0x0100 /* IN2R_MUTE */ | ||
2303 | #define ARIZONA_IN2R_MUTE_SHIFT 8 /* IN2R_MUTE */ | ||
2304 | #define ARIZONA_IN2R_MUTE_WIDTH 1 /* IN2R_MUTE */ | ||
2305 | #define ARIZONA_IN2R_DIG_VOL_MASK 0x00FF /* IN2R_DIG_VOL - [7:0] */ | ||
2306 | #define ARIZONA_IN2R_DIG_VOL_SHIFT 0 /* IN2R_DIG_VOL - [7:0] */ | ||
2307 | #define ARIZONA_IN2R_DIG_VOL_WIDTH 8 /* IN2R_DIG_VOL - [7:0] */ | ||
2308 | |||
2309 | /* | ||
2310 | * R798 (0x31E) - DMIC2R Control | ||
2311 | */ | ||
2312 | #define ARIZONA_IN2_DMICR_DLY_MASK 0x003F /* IN2_DMICR_DLY - [5:0] */ | ||
2313 | #define ARIZONA_IN2_DMICR_DLY_SHIFT 0 /* IN2_DMICR_DLY - [5:0] */ | ||
2314 | #define ARIZONA_IN2_DMICR_DLY_WIDTH 6 /* IN2_DMICR_DLY - [5:0] */ | ||
2315 | |||
2316 | /* | ||
2317 | * R800 (0x320) - IN3L Control | ||
2318 | */ | ||
2319 | #define ARIZONA_IN3_OSR_MASK 0x6000 /* IN3_OSR - [14:13] */ | ||
2320 | #define ARIZONA_IN3_OSR_SHIFT 13 /* IN3_OSR - [14:13] */ | ||
2321 | #define ARIZONA_IN3_OSR_WIDTH 2 /* IN3_OSR - [14:13] */ | ||
2322 | #define ARIZONA_IN3_DMIC_SUP_MASK 0x1800 /* IN3_DMIC_SUP - [12:11] */ | ||
2323 | #define ARIZONA_IN3_DMIC_SUP_SHIFT 11 /* IN3_DMIC_SUP - [12:11] */ | ||
2324 | #define ARIZONA_IN3_DMIC_SUP_WIDTH 2 /* IN3_DMIC_SUP - [12:11] */ | ||
2325 | #define ARIZONA_IN3_MODE_MASK 0x0600 /* IN3_MODE - [10:9] */ | ||
2326 | #define ARIZONA_IN3_MODE_SHIFT 9 /* IN3_MODE - [10:9] */ | ||
2327 | #define ARIZONA_IN3_MODE_WIDTH 2 /* IN3_MODE - [10:9] */ | ||
2328 | #define ARIZONA_IN3L_PGA_VOL_MASK 0x00FE /* IN3L_PGA_VOL - [7:1] */ | ||
2329 | #define ARIZONA_IN3L_PGA_VOL_SHIFT 1 /* IN3L_PGA_VOL - [7:1] */ | ||
2330 | #define ARIZONA_IN3L_PGA_VOL_WIDTH 7 /* IN3L_PGA_VOL - [7:1] */ | ||
2331 | |||
2332 | /* | ||
2333 | * R801 (0x321) - ADC Digital Volume 3L | ||
2334 | */ | ||
2335 | #define ARIZONA_IN_VU 0x0200 /* IN_VU */ | ||
2336 | #define ARIZONA_IN_VU_MASK 0x0200 /* IN_VU */ | ||
2337 | #define ARIZONA_IN_VU_SHIFT 9 /* IN_VU */ | ||
2338 | #define ARIZONA_IN_VU_WIDTH 1 /* IN_VU */ | ||
2339 | #define ARIZONA_IN3L_MUTE 0x0100 /* IN3L_MUTE */ | ||
2340 | #define ARIZONA_IN3L_MUTE_MASK 0x0100 /* IN3L_MUTE */ | ||
2341 | #define ARIZONA_IN3L_MUTE_SHIFT 8 /* IN3L_MUTE */ | ||
2342 | #define ARIZONA_IN3L_MUTE_WIDTH 1 /* IN3L_MUTE */ | ||
2343 | #define ARIZONA_IN3L_DIG_VOL_MASK 0x00FF /* IN3L_DIG_VOL - [7:0] */ | ||
2344 | #define ARIZONA_IN3L_DIG_VOL_SHIFT 0 /* IN3L_DIG_VOL - [7:0] */ | ||
2345 | #define ARIZONA_IN3L_DIG_VOL_WIDTH 8 /* IN3L_DIG_VOL - [7:0] */ | ||
2346 | |||
2347 | /* | ||
2348 | * R802 (0x322) - DMIC3L Control | ||
2349 | */ | ||
2350 | #define ARIZONA_IN3_DMICL_DLY_MASK 0x003F /* IN3_DMICL_DLY - [5:0] */ | ||
2351 | #define ARIZONA_IN3_DMICL_DLY_SHIFT 0 /* IN3_DMICL_DLY - [5:0] */ | ||
2352 | #define ARIZONA_IN3_DMICL_DLY_WIDTH 6 /* IN3_DMICL_DLY - [5:0] */ | ||
2353 | |||
2354 | /* | ||
2355 | * R804 (0x324) - IN3R Control | ||
2356 | */ | ||
2357 | #define ARIZONA_IN3R_PGA_VOL_MASK 0x00FE /* IN3R_PGA_VOL - [7:1] */ | ||
2358 | #define ARIZONA_IN3R_PGA_VOL_SHIFT 1 /* IN3R_PGA_VOL - [7:1] */ | ||
2359 | #define ARIZONA_IN3R_PGA_VOL_WIDTH 7 /* IN3R_PGA_VOL - [7:1] */ | ||
2360 | |||
2361 | /* | ||
2362 | * R805 (0x325) - ADC Digital Volume 3R | ||
2363 | */ | ||
2364 | #define ARIZONA_IN_VU 0x0200 /* IN_VU */ | ||
2365 | #define ARIZONA_IN_VU_MASK 0x0200 /* IN_VU */ | ||
2366 | #define ARIZONA_IN_VU_SHIFT 9 /* IN_VU */ | ||
2367 | #define ARIZONA_IN_VU_WIDTH 1 /* IN_VU */ | ||
2368 | #define ARIZONA_IN3R_MUTE 0x0100 /* IN3R_MUTE */ | ||
2369 | #define ARIZONA_IN3R_MUTE_MASK 0x0100 /* IN3R_MUTE */ | ||
2370 | #define ARIZONA_IN3R_MUTE_SHIFT 8 /* IN3R_MUTE */ | ||
2371 | #define ARIZONA_IN3R_MUTE_WIDTH 1 /* IN3R_MUTE */ | ||
2372 | #define ARIZONA_IN3R_DIG_VOL_MASK 0x00FF /* IN3R_DIG_VOL - [7:0] */ | ||
2373 | #define ARIZONA_IN3R_DIG_VOL_SHIFT 0 /* IN3R_DIG_VOL - [7:0] */ | ||
2374 | #define ARIZONA_IN3R_DIG_VOL_WIDTH 8 /* IN3R_DIG_VOL - [7:0] */ | ||
2375 | |||
2376 | /* | ||
2377 | * R806 (0x326) - DMIC3R Control | ||
2378 | */ | ||
2379 | #define ARIZONA_IN3_DMICR_DLY_MASK 0x003F /* IN3_DMICR_DLY - [5:0] */ | ||
2380 | #define ARIZONA_IN3_DMICR_DLY_SHIFT 0 /* IN3_DMICR_DLY - [5:0] */ | ||
2381 | #define ARIZONA_IN3_DMICR_DLY_WIDTH 6 /* IN3_DMICR_DLY - [5:0] */ | ||
2382 | |||
2383 | /* | ||
2384 | * R808 (0x328) - IN4 Control | ||
2385 | */ | ||
2386 | #define ARIZONA_IN4_OSR_MASK 0x6000 /* IN4_OSR - [14:13] */ | ||
2387 | #define ARIZONA_IN4_OSR_SHIFT 13 /* IN4_OSR - [14:13] */ | ||
2388 | #define ARIZONA_IN4_OSR_WIDTH 2 /* IN4_OSR - [14:13] */ | ||
2389 | #define ARIZONA_IN4_DMIC_SUP_MASK 0x1800 /* IN4_DMIC_SUP - [12:11] */ | ||
2390 | #define ARIZONA_IN4_DMIC_SUP_SHIFT 11 /* IN4_DMIC_SUP - [12:11] */ | ||
2391 | #define ARIZONA_IN4_DMIC_SUP_WIDTH 2 /* IN4_DMIC_SUP - [12:11] */ | ||
2392 | |||
2393 | /* | ||
2394 | * R809 (0x329) - ADC Digital Volume 4L | ||
2395 | */ | ||
2396 | #define ARIZONA_IN_VU 0x0200 /* IN_VU */ | ||
2397 | #define ARIZONA_IN_VU_MASK 0x0200 /* IN_VU */ | ||
2398 | #define ARIZONA_IN_VU_SHIFT 9 /* IN_VU */ | ||
2399 | #define ARIZONA_IN_VU_WIDTH 1 /* IN_VU */ | ||
2400 | #define ARIZONA_IN4L_MUTE 0x0100 /* IN4L_MUTE */ | ||
2401 | #define ARIZONA_IN4L_MUTE_MASK 0x0100 /* IN4L_MUTE */ | ||
2402 | #define ARIZONA_IN4L_MUTE_SHIFT 8 /* IN4L_MUTE */ | ||
2403 | #define ARIZONA_IN4L_MUTE_WIDTH 1 /* IN4L_MUTE */ | ||
2404 | #define ARIZONA_IN4L_DIG_VOL_MASK 0x00FF /* IN4L_DIG_VOL - [7:0] */ | ||
2405 | #define ARIZONA_IN4L_DIG_VOL_SHIFT 0 /* IN4L_DIG_VOL - [7:0] */ | ||
2406 | #define ARIZONA_IN4L_DIG_VOL_WIDTH 8 /* IN4L_DIG_VOL - [7:0] */ | ||
2407 | |||
2408 | /* | ||
2409 | * R810 (0x32A) - DMIC4L Control | ||
2410 | */ | ||
2411 | #define ARIZONA_IN4L_DMIC_DLY_MASK 0x003F /* IN4L_DMIC_DLY - [5:0] */ | ||
2412 | #define ARIZONA_IN4L_DMIC_DLY_SHIFT 0 /* IN4L_DMIC_DLY - [5:0] */ | ||
2413 | #define ARIZONA_IN4L_DMIC_DLY_WIDTH 6 /* IN4L_DMIC_DLY - [5:0] */ | ||
2414 | |||
2415 | /* | ||
2416 | * R813 (0x32D) - ADC Digital Volume 4R | ||
2417 | */ | ||
2418 | #define ARIZONA_IN_VU 0x0200 /* IN_VU */ | ||
2419 | #define ARIZONA_IN_VU_MASK 0x0200 /* IN_VU */ | ||
2420 | #define ARIZONA_IN_VU_SHIFT 9 /* IN_VU */ | ||
2421 | #define ARIZONA_IN_VU_WIDTH 1 /* IN_VU */ | ||
2422 | #define ARIZONA_IN4R_MUTE 0x0100 /* IN4R_MUTE */ | ||
2423 | #define ARIZONA_IN4R_MUTE_MASK 0x0100 /* IN4R_MUTE */ | ||
2424 | #define ARIZONA_IN4R_MUTE_SHIFT 8 /* IN4R_MUTE */ | ||
2425 | #define ARIZONA_IN4R_MUTE_WIDTH 1 /* IN4R_MUTE */ | ||
2426 | #define ARIZONA_IN4R_DIG_VOL_MASK 0x00FF /* IN4R_DIG_VOL - [7:0] */ | ||
2427 | #define ARIZONA_IN4R_DIG_VOL_SHIFT 0 /* IN4R_DIG_VOL - [7:0] */ | ||
2428 | #define ARIZONA_IN4R_DIG_VOL_WIDTH 8 /* IN4R_DIG_VOL - [7:0] */ | ||
2429 | |||
2430 | /* | ||
2431 | * R814 (0x32E) - DMIC4R Control | ||
2432 | */ | ||
2433 | #define ARIZONA_IN4R_DMIC_DLY_MASK 0x003F /* IN4R_DMIC_DLY - [5:0] */ | ||
2434 | #define ARIZONA_IN4R_DMIC_DLY_SHIFT 0 /* IN4R_DMIC_DLY - [5:0] */ | ||
2435 | #define ARIZONA_IN4R_DMIC_DLY_WIDTH 6 /* IN4R_DMIC_DLY - [5:0] */ | ||
2436 | |||
2437 | /* | ||
2438 | * R1024 (0x400) - Output Enables 1 | ||
2439 | */ | ||
2440 | #define ARIZONA_OUT6L_ENA 0x0800 /* OUT6L_ENA */ | ||
2441 | #define ARIZONA_OUT6L_ENA_MASK 0x0800 /* OUT6L_ENA */ | ||
2442 | #define ARIZONA_OUT6L_ENA_SHIFT 11 /* OUT6L_ENA */ | ||
2443 | #define ARIZONA_OUT6L_ENA_WIDTH 1 /* OUT6L_ENA */ | ||
2444 | #define ARIZONA_OUT6R_ENA 0x0400 /* OUT6R_ENA */ | ||
2445 | #define ARIZONA_OUT6R_ENA_MASK 0x0400 /* OUT6R_ENA */ | ||
2446 | #define ARIZONA_OUT6R_ENA_SHIFT 10 /* OUT6R_ENA */ | ||
2447 | #define ARIZONA_OUT6R_ENA_WIDTH 1 /* OUT6R_ENA */ | ||
2448 | #define ARIZONA_OUT5L_ENA 0x0200 /* OUT5L_ENA */ | ||
2449 | #define ARIZONA_OUT5L_ENA_MASK 0x0200 /* OUT5L_ENA */ | ||
2450 | #define ARIZONA_OUT5L_ENA_SHIFT 9 /* OUT5L_ENA */ | ||
2451 | #define ARIZONA_OUT5L_ENA_WIDTH 1 /* OUT5L_ENA */ | ||
2452 | #define ARIZONA_OUT5R_ENA 0x0100 /* OUT5R_ENA */ | ||
2453 | #define ARIZONA_OUT5R_ENA_MASK 0x0100 /* OUT5R_ENA */ | ||
2454 | #define ARIZONA_OUT5R_ENA_SHIFT 8 /* OUT5R_ENA */ | ||
2455 | #define ARIZONA_OUT5R_ENA_WIDTH 1 /* OUT5R_ENA */ | ||
2456 | #define ARIZONA_OUT4L_ENA 0x0080 /* OUT4L_ENA */ | ||
2457 | #define ARIZONA_OUT4L_ENA_MASK 0x0080 /* OUT4L_ENA */ | ||
2458 | #define ARIZONA_OUT4L_ENA_SHIFT 7 /* OUT4L_ENA */ | ||
2459 | #define ARIZONA_OUT4L_ENA_WIDTH 1 /* OUT4L_ENA */ | ||
2460 | #define ARIZONA_OUT4R_ENA 0x0040 /* OUT4R_ENA */ | ||
2461 | #define ARIZONA_OUT4R_ENA_MASK 0x0040 /* OUT4R_ENA */ | ||
2462 | #define ARIZONA_OUT4R_ENA_SHIFT 6 /* OUT4R_ENA */ | ||
2463 | #define ARIZONA_OUT4R_ENA_WIDTH 1 /* OUT4R_ENA */ | ||
2464 | #define ARIZONA_OUT3L_ENA 0x0020 /* OUT3L_ENA */ | ||
2465 | #define ARIZONA_OUT3L_ENA_MASK 0x0020 /* OUT3L_ENA */ | ||
2466 | #define ARIZONA_OUT3L_ENA_SHIFT 5 /* OUT3L_ENA */ | ||
2467 | #define ARIZONA_OUT3L_ENA_WIDTH 1 /* OUT3L_ENA */ | ||
2468 | #define ARIZONA_OUT3R_ENA 0x0010 /* OUT3R_ENA */ | ||
2469 | #define ARIZONA_OUT3R_ENA_MASK 0x0010 /* OUT3R_ENA */ | ||
2470 | #define ARIZONA_OUT3R_ENA_SHIFT 4 /* OUT3R_ENA */ | ||
2471 | #define ARIZONA_OUT3R_ENA_WIDTH 1 /* OUT3R_ENA */ | ||
2472 | #define ARIZONA_OUT2L_ENA 0x0008 /* OUT2L_ENA */ | ||
2473 | #define ARIZONA_OUT2L_ENA_MASK 0x0008 /* OUT2L_ENA */ | ||
2474 | #define ARIZONA_OUT2L_ENA_SHIFT 3 /* OUT2L_ENA */ | ||
2475 | #define ARIZONA_OUT2L_ENA_WIDTH 1 /* OUT2L_ENA */ | ||
2476 | #define ARIZONA_OUT2R_ENA 0x0004 /* OUT2R_ENA */ | ||
2477 | #define ARIZONA_OUT2R_ENA_MASK 0x0004 /* OUT2R_ENA */ | ||
2478 | #define ARIZONA_OUT2R_ENA_SHIFT 2 /* OUT2R_ENA */ | ||
2479 | #define ARIZONA_OUT2R_ENA_WIDTH 1 /* OUT2R_ENA */ | ||
2480 | #define ARIZONA_OUT1L_ENA 0x0002 /* OUT1L_ENA */ | ||
2481 | #define ARIZONA_OUT1L_ENA_MASK 0x0002 /* OUT1L_ENA */ | ||
2482 | #define ARIZONA_OUT1L_ENA_SHIFT 1 /* OUT1L_ENA */ | ||
2483 | #define ARIZONA_OUT1L_ENA_WIDTH 1 /* OUT1L_ENA */ | ||
2484 | #define ARIZONA_OUT1R_ENA 0x0001 /* OUT1R_ENA */ | ||
2485 | #define ARIZONA_OUT1R_ENA_MASK 0x0001 /* OUT1R_ENA */ | ||
2486 | #define ARIZONA_OUT1R_ENA_SHIFT 0 /* OUT1R_ENA */ | ||
2487 | #define ARIZONA_OUT1R_ENA_WIDTH 1 /* OUT1R_ENA */ | ||
2488 | |||
2489 | /* | ||
2490 | * R1025 (0x401) - Output Status 1 | ||
2491 | */ | ||
2492 | #define ARIZONA_OUT6L_ENA_STS 0x0800 /* OUT6L_ENA_STS */ | ||
2493 | #define ARIZONA_OUT6L_ENA_STS_MASK 0x0800 /* OUT6L_ENA_STS */ | ||
2494 | #define ARIZONA_OUT6L_ENA_STS_SHIFT 11 /* OUT6L_ENA_STS */ | ||
2495 | #define ARIZONA_OUT6L_ENA_STS_WIDTH 1 /* OUT6L_ENA_STS */ | ||
2496 | #define ARIZONA_OUT6R_ENA_STS 0x0400 /* OUT6R_ENA_STS */ | ||
2497 | #define ARIZONA_OUT6R_ENA_STS_MASK 0x0400 /* OUT6R_ENA_STS */ | ||
2498 | #define ARIZONA_OUT6R_ENA_STS_SHIFT 10 /* OUT6R_ENA_STS */ | ||
2499 | #define ARIZONA_OUT6R_ENA_STS_WIDTH 1 /* OUT6R_ENA_STS */ | ||
2500 | #define ARIZONA_OUT5L_ENA_STS 0x0200 /* OUT5L_ENA_STS */ | ||
2501 | #define ARIZONA_OUT5L_ENA_STS_MASK 0x0200 /* OUT5L_ENA_STS */ | ||
2502 | #define ARIZONA_OUT5L_ENA_STS_SHIFT 9 /* OUT5L_ENA_STS */ | ||
2503 | #define ARIZONA_OUT5L_ENA_STS_WIDTH 1 /* OUT5L_ENA_STS */ | ||
2504 | #define ARIZONA_OUT5R_ENA_STS 0x0100 /* OUT5R_ENA_STS */ | ||
2505 | #define ARIZONA_OUT5R_ENA_STS_MASK 0x0100 /* OUT5R_ENA_STS */ | ||
2506 | #define ARIZONA_OUT5R_ENA_STS_SHIFT 8 /* OUT5R_ENA_STS */ | ||
2507 | #define ARIZONA_OUT5R_ENA_STS_WIDTH 1 /* OUT5R_ENA_STS */ | ||
2508 | #define ARIZONA_OUT4L_ENA_STS 0x0080 /* OUT4L_ENA_STS */ | ||
2509 | #define ARIZONA_OUT4L_ENA_STS_MASK 0x0080 /* OUT4L_ENA_STS */ | ||
2510 | #define ARIZONA_OUT4L_ENA_STS_SHIFT 7 /* OUT4L_ENA_STS */ | ||
2511 | #define ARIZONA_OUT4L_ENA_STS_WIDTH 1 /* OUT4L_ENA_STS */ | ||
2512 | #define ARIZONA_OUT4R_ENA_STS 0x0040 /* OUT4R_ENA_STS */ | ||
2513 | #define ARIZONA_OUT4R_ENA_STS_MASK 0x0040 /* OUT4R_ENA_STS */ | ||
2514 | #define ARIZONA_OUT4R_ENA_STS_SHIFT 6 /* OUT4R_ENA_STS */ | ||
2515 | #define ARIZONA_OUT4R_ENA_STS_WIDTH 1 /* OUT4R_ENA_STS */ | ||
2516 | |||
2517 | /* | ||
2518 | * R1032 (0x408) - Output Rate 1 | ||
2519 | */ | ||
2520 | #define ARIZONA_OUT_RATE_MASK 0x7800 /* OUT_RATE - [14:11] */ | ||
2521 | #define ARIZONA_OUT_RATE_SHIFT 11 /* OUT_RATE - [14:11] */ | ||
2522 | #define ARIZONA_OUT_RATE_WIDTH 4 /* OUT_RATE - [14:11] */ | ||
2523 | |||
2524 | /* | ||
2525 | * R1033 (0x409) - Output Volume Ramp | ||
2526 | */ | ||
2527 | #define ARIZONA_OUT_VD_RAMP_MASK 0x0070 /* OUT_VD_RAMP - [6:4] */ | ||
2528 | #define ARIZONA_OUT_VD_RAMP_SHIFT 4 /* OUT_VD_RAMP - [6:4] */ | ||
2529 | #define ARIZONA_OUT_VD_RAMP_WIDTH 3 /* OUT_VD_RAMP - [6:4] */ | ||
2530 | #define ARIZONA_OUT_VI_RAMP_MASK 0x0007 /* OUT_VI_RAMP - [2:0] */ | ||
2531 | #define ARIZONA_OUT_VI_RAMP_SHIFT 0 /* OUT_VI_RAMP - [2:0] */ | ||
2532 | #define ARIZONA_OUT_VI_RAMP_WIDTH 3 /* OUT_VI_RAMP - [2:0] */ | ||
2533 | |||
2534 | /* | ||
2535 | * R1040 (0x410) - Output Path Config 1L | ||
2536 | */ | ||
2537 | #define ARIZONA_OUT1_LP_MODE 0x8000 /* OUT1_LP_MODE */ | ||
2538 | #define ARIZONA_OUT1_LP_MODE_MASK 0x8000 /* OUT1_LP_MODE */ | ||
2539 | #define ARIZONA_OUT1_LP_MODE_SHIFT 15 /* OUT1_LP_MODE */ | ||
2540 | #define ARIZONA_OUT1_LP_MODE_WIDTH 1 /* OUT1_LP_MODE */ | ||
2541 | #define ARIZONA_OUT1_OSR 0x2000 /* OUT1_OSR */ | ||
2542 | #define ARIZONA_OUT1_OSR_MASK 0x2000 /* OUT1_OSR */ | ||
2543 | #define ARIZONA_OUT1_OSR_SHIFT 13 /* OUT1_OSR */ | ||
2544 | #define ARIZONA_OUT1_OSR_WIDTH 1 /* OUT1_OSR */ | ||
2545 | #define ARIZONA_OUT1_MONO 0x1000 /* OUT1_MONO */ | ||
2546 | #define ARIZONA_OUT1_MONO_MASK 0x1000 /* OUT1_MONO */ | ||
2547 | #define ARIZONA_OUT1_MONO_SHIFT 12 /* OUT1_MONO */ | ||
2548 | #define ARIZONA_OUT1_MONO_WIDTH 1 /* OUT1_MONO */ | ||
2549 | #define ARIZONA_OUT1L_ANC_SRC_MASK 0x0C00 /* OUT1L_ANC_SRC - [11:10] */ | ||
2550 | #define ARIZONA_OUT1L_ANC_SRC_SHIFT 10 /* OUT1L_ANC_SRC - [11:10] */ | ||
2551 | #define ARIZONA_OUT1L_ANC_SRC_WIDTH 2 /* OUT1L_ANC_SRC - [11:10] */ | ||
2552 | #define ARIZONA_OUT1L_PGA_VOL_MASK 0x00FE /* OUT1L_PGA_VOL - [7:1] */ | ||
2553 | #define ARIZONA_OUT1L_PGA_VOL_SHIFT 1 /* OUT1L_PGA_VOL - [7:1] */ | ||
2554 | #define ARIZONA_OUT1L_PGA_VOL_WIDTH 7 /* OUT1L_PGA_VOL - [7:1] */ | ||
2555 | |||
2556 | /* | ||
2557 | * R1041 (0x411) - DAC Digital Volume 1L | ||
2558 | */ | ||
2559 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2560 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2561 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2562 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2563 | #define ARIZONA_OUT1L_MUTE 0x0100 /* OUT1L_MUTE */ | ||
2564 | #define ARIZONA_OUT1L_MUTE_MASK 0x0100 /* OUT1L_MUTE */ | ||
2565 | #define ARIZONA_OUT1L_MUTE_SHIFT 8 /* OUT1L_MUTE */ | ||
2566 | #define ARIZONA_OUT1L_MUTE_WIDTH 1 /* OUT1L_MUTE */ | ||
2567 | #define ARIZONA_OUT1L_VOL_MASK 0x00FF /* OUT1L_VOL - [7:0] */ | ||
2568 | #define ARIZONA_OUT1L_VOL_SHIFT 0 /* OUT1L_VOL - [7:0] */ | ||
2569 | #define ARIZONA_OUT1L_VOL_WIDTH 8 /* OUT1L_VOL - [7:0] */ | ||
2570 | |||
2571 | /* | ||
2572 | * R1042 (0x412) - DAC Volume Limit 1L | ||
2573 | */ | ||
2574 | #define ARIZONA_OUT1L_VOL_LIM_MASK 0x00FF /* OUT1L_VOL_LIM - [7:0] */ | ||
2575 | #define ARIZONA_OUT1L_VOL_LIM_SHIFT 0 /* OUT1L_VOL_LIM - [7:0] */ | ||
2576 | #define ARIZONA_OUT1L_VOL_LIM_WIDTH 8 /* OUT1L_VOL_LIM - [7:0] */ | ||
2577 | |||
2578 | /* | ||
2579 | * R1043 (0x413) - Noise Gate Select 1L | ||
2580 | */ | ||
2581 | #define ARIZONA_OUT1L_NGATE_SRC_MASK 0x0FFF /* OUT1L_NGATE_SRC - [11:0] */ | ||
2582 | #define ARIZONA_OUT1L_NGATE_SRC_SHIFT 0 /* OUT1L_NGATE_SRC - [11:0] */ | ||
2583 | #define ARIZONA_OUT1L_NGATE_SRC_WIDTH 12 /* OUT1L_NGATE_SRC - [11:0] */ | ||
2584 | |||
2585 | /* | ||
2586 | * R1044 (0x414) - Output Path Config 1R | ||
2587 | */ | ||
2588 | #define ARIZONA_OUT1R_ANC_SRC_MASK 0x0C00 /* OUT1R_ANC_SRC - [11:10] */ | ||
2589 | #define ARIZONA_OUT1R_ANC_SRC_SHIFT 10 /* OUT1R_ANC_SRC - [11:10] */ | ||
2590 | #define ARIZONA_OUT1R_ANC_SRC_WIDTH 2 /* OUT1R_ANC_SRC - [11:10] */ | ||
2591 | #define ARIZONA_OUT1R_PGA_VOL_MASK 0x00FE /* OUT1R_PGA_VOL - [7:1] */ | ||
2592 | #define ARIZONA_OUT1R_PGA_VOL_SHIFT 1 /* OUT1R_PGA_VOL - [7:1] */ | ||
2593 | #define ARIZONA_OUT1R_PGA_VOL_WIDTH 7 /* OUT1R_PGA_VOL - [7:1] */ | ||
2594 | |||
2595 | /* | ||
2596 | * R1045 (0x415) - DAC Digital Volume 1R | ||
2597 | */ | ||
2598 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2599 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2600 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2601 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2602 | #define ARIZONA_OUT1R_MUTE 0x0100 /* OUT1R_MUTE */ | ||
2603 | #define ARIZONA_OUT1R_MUTE_MASK 0x0100 /* OUT1R_MUTE */ | ||
2604 | #define ARIZONA_OUT1R_MUTE_SHIFT 8 /* OUT1R_MUTE */ | ||
2605 | #define ARIZONA_OUT1R_MUTE_WIDTH 1 /* OUT1R_MUTE */ | ||
2606 | #define ARIZONA_OUT1R_VOL_MASK 0x00FF /* OUT1R_VOL - [7:0] */ | ||
2607 | #define ARIZONA_OUT1R_VOL_SHIFT 0 /* OUT1R_VOL - [7:0] */ | ||
2608 | #define ARIZONA_OUT1R_VOL_WIDTH 8 /* OUT1R_VOL - [7:0] */ | ||
2609 | |||
2610 | /* | ||
2611 | * R1046 (0x416) - DAC Volume Limit 1R | ||
2612 | */ | ||
2613 | #define ARIZONA_OUT1R_VOL_LIM_MASK 0x00FF /* OUT1R_VOL_LIM - [7:0] */ | ||
2614 | #define ARIZONA_OUT1R_VOL_LIM_SHIFT 0 /* OUT1R_VOL_LIM - [7:0] */ | ||
2615 | #define ARIZONA_OUT1R_VOL_LIM_WIDTH 8 /* OUT1R_VOL_LIM - [7:0] */ | ||
2616 | |||
2617 | /* | ||
2618 | * R1047 (0x417) - Noise Gate Select 1R | ||
2619 | */ | ||
2620 | #define ARIZONA_OUT1R_NGATE_SRC_MASK 0x0FFF /* OUT1R_NGATE_SRC - [11:0] */ | ||
2621 | #define ARIZONA_OUT1R_NGATE_SRC_SHIFT 0 /* OUT1R_NGATE_SRC - [11:0] */ | ||
2622 | #define ARIZONA_OUT1R_NGATE_SRC_WIDTH 12 /* OUT1R_NGATE_SRC - [11:0] */ | ||
2623 | |||
2624 | /* | ||
2625 | * R1048 (0x418) - Output Path Config 2L | ||
2626 | */ | ||
2627 | #define ARIZONA_OUT2_LP_MODE 0x8000 /* OUT2_LP_MODE */ | ||
2628 | #define ARIZONA_OUT2_LP_MODE_MASK 0x8000 /* OUT2_LP_MODE */ | ||
2629 | #define ARIZONA_OUT2_LP_MODE_SHIFT 15 /* OUT2_LP_MODE */ | ||
2630 | #define ARIZONA_OUT2_LP_MODE_WIDTH 1 /* OUT2_LP_MODE */ | ||
2631 | #define ARIZONA_OUT2_OSR 0x2000 /* OUT2_OSR */ | ||
2632 | #define ARIZONA_OUT2_OSR_MASK 0x2000 /* OUT2_OSR */ | ||
2633 | #define ARIZONA_OUT2_OSR_SHIFT 13 /* OUT2_OSR */ | ||
2634 | #define ARIZONA_OUT2_OSR_WIDTH 1 /* OUT2_OSR */ | ||
2635 | #define ARIZONA_OUT2_MONO 0x1000 /* OUT2_MONO */ | ||
2636 | #define ARIZONA_OUT2_MONO_MASK 0x1000 /* OUT2_MONO */ | ||
2637 | #define ARIZONA_OUT2_MONO_SHIFT 12 /* OUT2_MONO */ | ||
2638 | #define ARIZONA_OUT2_MONO_WIDTH 1 /* OUT2_MONO */ | ||
2639 | #define ARIZONA_OUT2L_ANC_SRC_MASK 0x0C00 /* OUT2L_ANC_SRC - [11:10] */ | ||
2640 | #define ARIZONA_OUT2L_ANC_SRC_SHIFT 10 /* OUT2L_ANC_SRC - [11:10] */ | ||
2641 | #define ARIZONA_OUT2L_ANC_SRC_WIDTH 2 /* OUT2L_ANC_SRC - [11:10] */ | ||
2642 | #define ARIZONA_OUT2L_PGA_VOL_MASK 0x00FE /* OUT2L_PGA_VOL - [7:1] */ | ||
2643 | #define ARIZONA_OUT2L_PGA_VOL_SHIFT 1 /* OUT2L_PGA_VOL - [7:1] */ | ||
2644 | #define ARIZONA_OUT2L_PGA_VOL_WIDTH 7 /* OUT2L_PGA_VOL - [7:1] */ | ||
2645 | |||
2646 | /* | ||
2647 | * R1049 (0x419) - DAC Digital Volume 2L | ||
2648 | */ | ||
2649 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2650 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2651 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2652 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2653 | #define ARIZONA_OUT2L_MUTE 0x0100 /* OUT2L_MUTE */ | ||
2654 | #define ARIZONA_OUT2L_MUTE_MASK 0x0100 /* OUT2L_MUTE */ | ||
2655 | #define ARIZONA_OUT2L_MUTE_SHIFT 8 /* OUT2L_MUTE */ | ||
2656 | #define ARIZONA_OUT2L_MUTE_WIDTH 1 /* OUT2L_MUTE */ | ||
2657 | #define ARIZONA_OUT2L_VOL_MASK 0x00FF /* OUT2L_VOL - [7:0] */ | ||
2658 | #define ARIZONA_OUT2L_VOL_SHIFT 0 /* OUT2L_VOL - [7:0] */ | ||
2659 | #define ARIZONA_OUT2L_VOL_WIDTH 8 /* OUT2L_VOL - [7:0] */ | ||
2660 | |||
2661 | /* | ||
2662 | * R1050 (0x41A) - DAC Volume Limit 2L | ||
2663 | */ | ||
2664 | #define ARIZONA_OUT2L_VOL_LIM_MASK 0x00FF /* OUT2L_VOL_LIM - [7:0] */ | ||
2665 | #define ARIZONA_OUT2L_VOL_LIM_SHIFT 0 /* OUT2L_VOL_LIM - [7:0] */ | ||
2666 | #define ARIZONA_OUT2L_VOL_LIM_WIDTH 8 /* OUT2L_VOL_LIM - [7:0] */ | ||
2667 | |||
2668 | /* | ||
2669 | * R1051 (0x41B) - Noise Gate Select 2L | ||
2670 | */ | ||
2671 | #define ARIZONA_OUT2L_NGATE_SRC_MASK 0x0FFF /* OUT2L_NGATE_SRC - [11:0] */ | ||
2672 | #define ARIZONA_OUT2L_NGATE_SRC_SHIFT 0 /* OUT2L_NGATE_SRC - [11:0] */ | ||
2673 | #define ARIZONA_OUT2L_NGATE_SRC_WIDTH 12 /* OUT2L_NGATE_SRC - [11:0] */ | ||
2674 | |||
2675 | /* | ||
2676 | * R1052 (0x41C) - Output Path Config 2R | ||
2677 | */ | ||
2678 | #define ARIZONA_OUT2R_ANC_SRC_MASK 0x0C00 /* OUT2R_ANC_SRC - [11:10] */ | ||
2679 | #define ARIZONA_OUT2R_ANC_SRC_SHIFT 10 /* OUT2R_ANC_SRC - [11:10] */ | ||
2680 | #define ARIZONA_OUT2R_ANC_SRC_WIDTH 2 /* OUT2R_ANC_SRC - [11:10] */ | ||
2681 | #define ARIZONA_OUT2R_PGA_VOL_MASK 0x00FE /* OUT2R_PGA_VOL - [7:1] */ | ||
2682 | #define ARIZONA_OUT2R_PGA_VOL_SHIFT 1 /* OUT2R_PGA_VOL - [7:1] */ | ||
2683 | #define ARIZONA_OUT2R_PGA_VOL_WIDTH 7 /* OUT2R_PGA_VOL - [7:1] */ | ||
2684 | |||
2685 | /* | ||
2686 | * R1053 (0x41D) - DAC Digital Volume 2R | ||
2687 | */ | ||
2688 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2689 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2690 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2691 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2692 | #define ARIZONA_OUT2R_MUTE 0x0100 /* OUT2R_MUTE */ | ||
2693 | #define ARIZONA_OUT2R_MUTE_MASK 0x0100 /* OUT2R_MUTE */ | ||
2694 | #define ARIZONA_OUT2R_MUTE_SHIFT 8 /* OUT2R_MUTE */ | ||
2695 | #define ARIZONA_OUT2R_MUTE_WIDTH 1 /* OUT2R_MUTE */ | ||
2696 | #define ARIZONA_OUT2R_VOL_MASK 0x00FF /* OUT2R_VOL - [7:0] */ | ||
2697 | #define ARIZONA_OUT2R_VOL_SHIFT 0 /* OUT2R_VOL - [7:0] */ | ||
2698 | #define ARIZONA_OUT2R_VOL_WIDTH 8 /* OUT2R_VOL - [7:0] */ | ||
2699 | |||
2700 | /* | ||
2701 | * R1054 (0x41E) - DAC Volume Limit 2R | ||
2702 | */ | ||
2703 | #define ARIZONA_OUT2R_VOL_LIM_MASK 0x00FF /* OUT2R_VOL_LIM - [7:0] */ | ||
2704 | #define ARIZONA_OUT2R_VOL_LIM_SHIFT 0 /* OUT2R_VOL_LIM - [7:0] */ | ||
2705 | #define ARIZONA_OUT2R_VOL_LIM_WIDTH 8 /* OUT2R_VOL_LIM - [7:0] */ | ||
2706 | |||
2707 | /* | ||
2708 | * R1055 (0x41F) - Noise Gate Select 2R | ||
2709 | */ | ||
2710 | #define ARIZONA_OUT2R_NGATE_SRC_MASK 0x0FFF /* OUT2R_NGATE_SRC - [11:0] */ | ||
2711 | #define ARIZONA_OUT2R_NGATE_SRC_SHIFT 0 /* OUT2R_NGATE_SRC - [11:0] */ | ||
2712 | #define ARIZONA_OUT2R_NGATE_SRC_WIDTH 12 /* OUT2R_NGATE_SRC - [11:0] */ | ||
2713 | |||
2714 | /* | ||
2715 | * R1056 (0x420) - Output Path Config 3L | ||
2716 | */ | ||
2717 | #define ARIZONA_OUT3_LP_MODE 0x8000 /* OUT3_LP_MODE */ | ||
2718 | #define ARIZONA_OUT3_LP_MODE_MASK 0x8000 /* OUT3_LP_MODE */ | ||
2719 | #define ARIZONA_OUT3_LP_MODE_SHIFT 15 /* OUT3_LP_MODE */ | ||
2720 | #define ARIZONA_OUT3_LP_MODE_WIDTH 1 /* OUT3_LP_MODE */ | ||
2721 | #define ARIZONA_OUT3_OSR 0x2000 /* OUT3_OSR */ | ||
2722 | #define ARIZONA_OUT3_OSR_MASK 0x2000 /* OUT3_OSR */ | ||
2723 | #define ARIZONA_OUT3_OSR_SHIFT 13 /* OUT3_OSR */ | ||
2724 | #define ARIZONA_OUT3_OSR_WIDTH 1 /* OUT3_OSR */ | ||
2725 | #define ARIZONA_OUT3_MONO 0x1000 /* OUT3_MONO */ | ||
2726 | #define ARIZONA_OUT3_MONO_MASK 0x1000 /* OUT3_MONO */ | ||
2727 | #define ARIZONA_OUT3_MONO_SHIFT 12 /* OUT3_MONO */ | ||
2728 | #define ARIZONA_OUT3_MONO_WIDTH 1 /* OUT3_MONO */ | ||
2729 | #define ARIZONA_OUT3L_ANC_SRC_MASK 0x0C00 /* OUT3L_ANC_SRC - [11:10] */ | ||
2730 | #define ARIZONA_OUT3L_ANC_SRC_SHIFT 10 /* OUT3L_ANC_SRC - [11:10] */ | ||
2731 | #define ARIZONA_OUT3L_ANC_SRC_WIDTH 2 /* OUT3L_ANC_SRC - [11:10] */ | ||
2732 | #define ARIZONA_OUT3L_PGA_VOL_MASK 0x00FE /* OUT3L_PGA_VOL - [7:1] */ | ||
2733 | #define ARIZONA_OUT3L_PGA_VOL_SHIFT 1 /* OUT3L_PGA_VOL - [7:1] */ | ||
2734 | #define ARIZONA_OUT3L_PGA_VOL_WIDTH 7 /* OUT3L_PGA_VOL - [7:1] */ | ||
2735 | |||
2736 | /* | ||
2737 | * R1057 (0x421) - DAC Digital Volume 3L | ||
2738 | */ | ||
2739 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2740 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2741 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2742 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2743 | #define ARIZONA_OUT3L_MUTE 0x0100 /* OUT3L_MUTE */ | ||
2744 | #define ARIZONA_OUT3L_MUTE_MASK 0x0100 /* OUT3L_MUTE */ | ||
2745 | #define ARIZONA_OUT3L_MUTE_SHIFT 8 /* OUT3L_MUTE */ | ||
2746 | #define ARIZONA_OUT3L_MUTE_WIDTH 1 /* OUT3L_MUTE */ | ||
2747 | #define ARIZONA_OUT3L_VOL_MASK 0x00FF /* OUT3L_VOL - [7:0] */ | ||
2748 | #define ARIZONA_OUT3L_VOL_SHIFT 0 /* OUT3L_VOL - [7:0] */ | ||
2749 | #define ARIZONA_OUT3L_VOL_WIDTH 8 /* OUT3L_VOL - [7:0] */ | ||
2750 | |||
2751 | /* | ||
2752 | * R1058 (0x422) - DAC Volume Limit 3L | ||
2753 | */ | ||
2754 | #define ARIZONA_OUT3L_VOL_LIM_MASK 0x00FF /* OUT3L_VOL_LIM - [7:0] */ | ||
2755 | #define ARIZONA_OUT3L_VOL_LIM_SHIFT 0 /* OUT3L_VOL_LIM - [7:0] */ | ||
2756 | #define ARIZONA_OUT3L_VOL_LIM_WIDTH 8 /* OUT3L_VOL_LIM - [7:0] */ | ||
2757 | |||
2758 | /* | ||
2759 | * R1059 (0x423) - Noise Gate Select 3L | ||
2760 | */ | ||
2761 | #define ARIZONA_OUT3_NGATE_SRC_MASK 0x0FFF /* OUT3_NGATE_SRC - [11:0] */ | ||
2762 | #define ARIZONA_OUT3_NGATE_SRC_SHIFT 0 /* OUT3_NGATE_SRC - [11:0] */ | ||
2763 | #define ARIZONA_OUT3_NGATE_SRC_WIDTH 12 /* OUT3_NGATE_SRC - [11:0] */ | ||
2764 | |||
2765 | /* | ||
2766 | * R1060 (0x424) - Output Path Config 3R | ||
2767 | */ | ||
2768 | #define ARIZONA_OUT3R_PGA_VOL_MASK 0x00FE /* OUT3R_PGA_VOL - [7:1] */ | ||
2769 | #define ARIZONA_OUT3R_PGA_VOL_SHIFT 1 /* OUT3R_PGA_VOL - [7:1] */ | ||
2770 | #define ARIZONA_OUT3R_PGA_VOL_WIDTH 7 /* OUT3R_PGA_VOL - [7:1] */ | ||
2771 | |||
2772 | /* | ||
2773 | * R1061 (0x425) - DAC Digital Volume 3R | ||
2774 | */ | ||
2775 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2776 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2777 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2778 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2779 | #define ARIZONA_OUT3R_MUTE 0x0100 /* OUT3R_MUTE */ | ||
2780 | #define ARIZONA_OUT3R_MUTE_MASK 0x0100 /* OUT3R_MUTE */ | ||
2781 | #define ARIZONA_OUT3R_MUTE_SHIFT 8 /* OUT3R_MUTE */ | ||
2782 | #define ARIZONA_OUT3R_MUTE_WIDTH 1 /* OUT3R_MUTE */ | ||
2783 | #define ARIZONA_OUT3R_VOL_MASK 0x00FF /* OUT3R_VOL - [7:0] */ | ||
2784 | #define ARIZONA_OUT3R_VOL_SHIFT 0 /* OUT3R_VOL - [7:0] */ | ||
2785 | #define ARIZONA_OUT3R_VOL_WIDTH 8 /* OUT3R_VOL - [7:0] */ | ||
2786 | |||
2787 | /* | ||
2788 | * R1062 (0x426) - DAC Volume Limit 3R | ||
2789 | */ | ||
2790 | #define ARIZONA_OUT3R_ANC_SRC_MASK 0x0C00 /* OUT3R_ANC_SRC - [11:10] */ | ||
2791 | #define ARIZONA_OUT3R_ANC_SRC_SHIFT 10 /* OUT3R_ANC_SRC - [11:10] */ | ||
2792 | #define ARIZONA_OUT3R_ANC_SRC_WIDTH 2 /* OUT3R_ANC_SRC - [11:10] */ | ||
2793 | #define ARIZONA_OUT3R_VOL_LIM_MASK 0x00FF /* OUT3R_VOL_LIM - [7:0] */ | ||
2794 | #define ARIZONA_OUT3R_VOL_LIM_SHIFT 0 /* OUT3R_VOL_LIM - [7:0] */ | ||
2795 | #define ARIZONA_OUT3R_VOL_LIM_WIDTH 8 /* OUT3R_VOL_LIM - [7:0] */ | ||
2796 | |||
2797 | /* | ||
2798 | * R1064 (0x428) - Output Path Config 4L | ||
2799 | */ | ||
2800 | #define ARIZONA_OUT4_OSR 0x2000 /* OUT4_OSR */ | ||
2801 | #define ARIZONA_OUT4_OSR_MASK 0x2000 /* OUT4_OSR */ | ||
2802 | #define ARIZONA_OUT4_OSR_SHIFT 13 /* OUT4_OSR */ | ||
2803 | #define ARIZONA_OUT4_OSR_WIDTH 1 /* OUT4_OSR */ | ||
2804 | #define ARIZONA_OUT4L_ANC_SRC_MASK 0x0C00 /* OUT4L_ANC_SRC - [11:10] */ | ||
2805 | #define ARIZONA_OUT4L_ANC_SRC_SHIFT 10 /* OUT4L_ANC_SRC - [11:10] */ | ||
2806 | #define ARIZONA_OUT4L_ANC_SRC_WIDTH 2 /* OUT4L_ANC_SRC - [11:10] */ | ||
2807 | |||
2808 | /* | ||
2809 | * R1065 (0x429) - DAC Digital Volume 4L | ||
2810 | */ | ||
2811 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2812 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2813 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2814 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2815 | #define ARIZONA_OUT4L_MUTE 0x0100 /* OUT4L_MUTE */ | ||
2816 | #define ARIZONA_OUT4L_MUTE_MASK 0x0100 /* OUT4L_MUTE */ | ||
2817 | #define ARIZONA_OUT4L_MUTE_SHIFT 8 /* OUT4L_MUTE */ | ||
2818 | #define ARIZONA_OUT4L_MUTE_WIDTH 1 /* OUT4L_MUTE */ | ||
2819 | #define ARIZONA_OUT4L_VOL_MASK 0x00FF /* OUT4L_VOL - [7:0] */ | ||
2820 | #define ARIZONA_OUT4L_VOL_SHIFT 0 /* OUT4L_VOL - [7:0] */ | ||
2821 | #define ARIZONA_OUT4L_VOL_WIDTH 8 /* OUT4L_VOL - [7:0] */ | ||
2822 | |||
2823 | /* | ||
2824 | * R1066 (0x42A) - Out Volume 4L | ||
2825 | */ | ||
2826 | #define ARIZONA_OUT4L_VOL_LIM_MASK 0x00FF /* OUT4L_VOL_LIM - [7:0] */ | ||
2827 | #define ARIZONA_OUT4L_VOL_LIM_SHIFT 0 /* OUT4L_VOL_LIM - [7:0] */ | ||
2828 | #define ARIZONA_OUT4L_VOL_LIM_WIDTH 8 /* OUT4L_VOL_LIM - [7:0] */ | ||
2829 | |||
2830 | /* | ||
2831 | * R1067 (0x42B) - Noise Gate Select 4L | ||
2832 | */ | ||
2833 | #define ARIZONA_OUT4L_NGATE_SRC_MASK 0x0FFF /* OUT4L_NGATE_SRC - [11:0] */ | ||
2834 | #define ARIZONA_OUT4L_NGATE_SRC_SHIFT 0 /* OUT4L_NGATE_SRC - [11:0] */ | ||
2835 | #define ARIZONA_OUT4L_NGATE_SRC_WIDTH 12 /* OUT4L_NGATE_SRC - [11:0] */ | ||
2836 | |||
2837 | /* | ||
2838 | * R1068 (0x42C) - Output Path Config 4R | ||
2839 | */ | ||
2840 | #define ARIZONA_OUT4R_ANC_SRC_MASK 0x0C00 /* OUT4R_ANC_SRC - [11:10] */ | ||
2841 | #define ARIZONA_OUT4R_ANC_SRC_SHIFT 10 /* OUT4R_ANC_SRC - [11:10] */ | ||
2842 | #define ARIZONA_OUT4R_ANC_SRC_WIDTH 2 /* OUT4R_ANC_SRC - [11:10] */ | ||
2843 | |||
2844 | /* | ||
2845 | * R1069 (0x42D) - DAC Digital Volume 4R | ||
2846 | */ | ||
2847 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2848 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2849 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2850 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2851 | #define ARIZONA_OUT4R_MUTE 0x0100 /* OUT4R_MUTE */ | ||
2852 | #define ARIZONA_OUT4R_MUTE_MASK 0x0100 /* OUT4R_MUTE */ | ||
2853 | #define ARIZONA_OUT4R_MUTE_SHIFT 8 /* OUT4R_MUTE */ | ||
2854 | #define ARIZONA_OUT4R_MUTE_WIDTH 1 /* OUT4R_MUTE */ | ||
2855 | #define ARIZONA_OUT4R_VOL_MASK 0x00FF /* OUT4R_VOL - [7:0] */ | ||
2856 | #define ARIZONA_OUT4R_VOL_SHIFT 0 /* OUT4R_VOL - [7:0] */ | ||
2857 | #define ARIZONA_OUT4R_VOL_WIDTH 8 /* OUT4R_VOL - [7:0] */ | ||
2858 | |||
2859 | /* | ||
2860 | * R1070 (0x42E) - Out Volume 4R | ||
2861 | */ | ||
2862 | #define ARIZONA_OUT4R_VOL_LIM_MASK 0x00FF /* OUT4R_VOL_LIM - [7:0] */ | ||
2863 | #define ARIZONA_OUT4R_VOL_LIM_SHIFT 0 /* OUT4R_VOL_LIM - [7:0] */ | ||
2864 | #define ARIZONA_OUT4R_VOL_LIM_WIDTH 8 /* OUT4R_VOL_LIM - [7:0] */ | ||
2865 | |||
2866 | /* | ||
2867 | * R1071 (0x42F) - Noise Gate Select 4R | ||
2868 | */ | ||
2869 | #define ARIZONA_OUT4R_NGATE_SRC_MASK 0x0FFF /* OUT4R_NGATE_SRC - [11:0] */ | ||
2870 | #define ARIZONA_OUT4R_NGATE_SRC_SHIFT 0 /* OUT4R_NGATE_SRC - [11:0] */ | ||
2871 | #define ARIZONA_OUT4R_NGATE_SRC_WIDTH 12 /* OUT4R_NGATE_SRC - [11:0] */ | ||
2872 | |||
2873 | /* | ||
2874 | * R1072 (0x430) - Output Path Config 5L | ||
2875 | */ | ||
2876 | #define ARIZONA_OUT5_OSR 0x2000 /* OUT5_OSR */ | ||
2877 | #define ARIZONA_OUT5_OSR_MASK 0x2000 /* OUT5_OSR */ | ||
2878 | #define ARIZONA_OUT5_OSR_SHIFT 13 /* OUT5_OSR */ | ||
2879 | #define ARIZONA_OUT5_OSR_WIDTH 1 /* OUT5_OSR */ | ||
2880 | #define ARIZONA_OUT5L_ANC_SRC_MASK 0x0C00 /* OUT5L_ANC_SRC - [11:10] */ | ||
2881 | #define ARIZONA_OUT5L_ANC_SRC_SHIFT 10 /* OUT5L_ANC_SRC - [11:10] */ | ||
2882 | #define ARIZONA_OUT5L_ANC_SRC_WIDTH 2 /* OUT5L_ANC_SRC - [11:10] */ | ||
2883 | |||
2884 | /* | ||
2885 | * R1073 (0x431) - DAC Digital Volume 5L | ||
2886 | */ | ||
2887 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2888 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2889 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2890 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2891 | #define ARIZONA_OUT5L_MUTE 0x0100 /* OUT5L_MUTE */ | ||
2892 | #define ARIZONA_OUT5L_MUTE_MASK 0x0100 /* OUT5L_MUTE */ | ||
2893 | #define ARIZONA_OUT5L_MUTE_SHIFT 8 /* OUT5L_MUTE */ | ||
2894 | #define ARIZONA_OUT5L_MUTE_WIDTH 1 /* OUT5L_MUTE */ | ||
2895 | #define ARIZONA_OUT5L_VOL_MASK 0x00FF /* OUT5L_VOL - [7:0] */ | ||
2896 | #define ARIZONA_OUT5L_VOL_SHIFT 0 /* OUT5L_VOL - [7:0] */ | ||
2897 | #define ARIZONA_OUT5L_VOL_WIDTH 8 /* OUT5L_VOL - [7:0] */ | ||
2898 | |||
2899 | /* | ||
2900 | * R1074 (0x432) - DAC Volume Limit 5L | ||
2901 | */ | ||
2902 | #define ARIZONA_OUT5L_VOL_LIM_MASK 0x00FF /* OUT5L_VOL_LIM - [7:0] */ | ||
2903 | #define ARIZONA_OUT5L_VOL_LIM_SHIFT 0 /* OUT5L_VOL_LIM - [7:0] */ | ||
2904 | #define ARIZONA_OUT5L_VOL_LIM_WIDTH 8 /* OUT5L_VOL_LIM - [7:0] */ | ||
2905 | |||
2906 | /* | ||
2907 | * R1075 (0x433) - Noise Gate Select 5L | ||
2908 | */ | ||
2909 | #define ARIZONA_OUT5L_NGATE_SRC_MASK 0x0FFF /* OUT5L_NGATE_SRC - [11:0] */ | ||
2910 | #define ARIZONA_OUT5L_NGATE_SRC_SHIFT 0 /* OUT5L_NGATE_SRC - [11:0] */ | ||
2911 | #define ARIZONA_OUT5L_NGATE_SRC_WIDTH 12 /* OUT5L_NGATE_SRC - [11:0] */ | ||
2912 | |||
2913 | /* | ||
2914 | * R1076 (0x434) - Output Path Config 5R | ||
2915 | */ | ||
2916 | #define ARIZONA_OUT5R_ANC_SRC_MASK 0x0C00 /* OUT5R_ANC_SRC - [11:10] */ | ||
2917 | #define ARIZONA_OUT5R_ANC_SRC_SHIFT 10 /* OUT5R_ANC_SRC - [11:10] */ | ||
2918 | #define ARIZONA_OUT5R_ANC_SRC_WIDTH 2 /* OUT5R_ANC_SRC - [11:10] */ | ||
2919 | |||
2920 | /* | ||
2921 | * R1077 (0x435) - DAC Digital Volume 5R | ||
2922 | */ | ||
2923 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2924 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2925 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2926 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2927 | #define ARIZONA_OUT5R_MUTE 0x0100 /* OUT5R_MUTE */ | ||
2928 | #define ARIZONA_OUT5R_MUTE_MASK 0x0100 /* OUT5R_MUTE */ | ||
2929 | #define ARIZONA_OUT5R_MUTE_SHIFT 8 /* OUT5R_MUTE */ | ||
2930 | #define ARIZONA_OUT5R_MUTE_WIDTH 1 /* OUT5R_MUTE */ | ||
2931 | #define ARIZONA_OUT5R_VOL_MASK 0x00FF /* OUT5R_VOL - [7:0] */ | ||
2932 | #define ARIZONA_OUT5R_VOL_SHIFT 0 /* OUT5R_VOL - [7:0] */ | ||
2933 | #define ARIZONA_OUT5R_VOL_WIDTH 8 /* OUT5R_VOL - [7:0] */ | ||
2934 | |||
2935 | /* | ||
2936 | * R1078 (0x436) - DAC Volume Limit 5R | ||
2937 | */ | ||
2938 | #define ARIZONA_OUT5R_VOL_LIM_MASK 0x00FF /* OUT5R_VOL_LIM - [7:0] */ | ||
2939 | #define ARIZONA_OUT5R_VOL_LIM_SHIFT 0 /* OUT5R_VOL_LIM - [7:0] */ | ||
2940 | #define ARIZONA_OUT5R_VOL_LIM_WIDTH 8 /* OUT5R_VOL_LIM - [7:0] */ | ||
2941 | |||
2942 | /* | ||
2943 | * R1079 (0x437) - Noise Gate Select 5R | ||
2944 | */ | ||
2945 | #define ARIZONA_OUT5R_NGATE_SRC_MASK 0x0FFF /* OUT5R_NGATE_SRC - [11:0] */ | ||
2946 | #define ARIZONA_OUT5R_NGATE_SRC_SHIFT 0 /* OUT5R_NGATE_SRC - [11:0] */ | ||
2947 | #define ARIZONA_OUT5R_NGATE_SRC_WIDTH 12 /* OUT5R_NGATE_SRC - [11:0] */ | ||
2948 | |||
2949 | /* | ||
2950 | * R1080 (0x438) - Output Path Config 6L | ||
2951 | */ | ||
2952 | #define ARIZONA_OUT6_OSR 0x2000 /* OUT6_OSR */ | ||
2953 | #define ARIZONA_OUT6_OSR_MASK 0x2000 /* OUT6_OSR */ | ||
2954 | #define ARIZONA_OUT6_OSR_SHIFT 13 /* OUT6_OSR */ | ||
2955 | #define ARIZONA_OUT6_OSR_WIDTH 1 /* OUT6_OSR */ | ||
2956 | #define ARIZONA_OUT6L_ANC_SRC_MASK 0x0C00 /* OUT6L_ANC_SRC - [11:10] */ | ||
2957 | #define ARIZONA_OUT6L_ANC_SRC_SHIFT 10 /* OUT6L_ANC_SRC - [11:10] */ | ||
2958 | #define ARIZONA_OUT6L_ANC_SRC_WIDTH 2 /* OUT6L_ANC_SRC - [11:10] */ | ||
2959 | |||
2960 | /* | ||
2961 | * R1081 (0x439) - DAC Digital Volume 6L | ||
2962 | */ | ||
2963 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
2964 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
2965 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
2966 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
2967 | #define ARIZONA_OUT6L_MUTE 0x0100 /* OUT6L_MUTE */ | ||
2968 | #define ARIZONA_OUT6L_MUTE_MASK 0x0100 /* OUT6L_MUTE */ | ||
2969 | #define ARIZONA_OUT6L_MUTE_SHIFT 8 /* OUT6L_MUTE */ | ||
2970 | #define ARIZONA_OUT6L_MUTE_WIDTH 1 /* OUT6L_MUTE */ | ||
2971 | #define ARIZONA_OUT6L_VOL_MASK 0x00FF /* OUT6L_VOL - [7:0] */ | ||
2972 | #define ARIZONA_OUT6L_VOL_SHIFT 0 /* OUT6L_VOL - [7:0] */ | ||
2973 | #define ARIZONA_OUT6L_VOL_WIDTH 8 /* OUT6L_VOL - [7:0] */ | ||
2974 | |||
2975 | /* | ||
2976 | * R1082 (0x43A) - DAC Volume Limit 6L | ||
2977 | */ | ||
2978 | #define ARIZONA_OUT6L_VOL_LIM_MASK 0x00FF /* OUT6L_VOL_LIM - [7:0] */ | ||
2979 | #define ARIZONA_OUT6L_VOL_LIM_SHIFT 0 /* OUT6L_VOL_LIM - [7:0] */ | ||
2980 | #define ARIZONA_OUT6L_VOL_LIM_WIDTH 8 /* OUT6L_VOL_LIM - [7:0] */ | ||
2981 | |||
2982 | /* | ||
2983 | * R1083 (0x43B) - Noise Gate Select 6L | ||
2984 | */ | ||
2985 | #define ARIZONA_OUT6L_NGATE_SRC_MASK 0x0FFF /* OUT6L_NGATE_SRC - [11:0] */ | ||
2986 | #define ARIZONA_OUT6L_NGATE_SRC_SHIFT 0 /* OUT6L_NGATE_SRC - [11:0] */ | ||
2987 | #define ARIZONA_OUT6L_NGATE_SRC_WIDTH 12 /* OUT6L_NGATE_SRC - [11:0] */ | ||
2988 | |||
2989 | /* | ||
2990 | * R1084 (0x43C) - Output Path Config 6R | ||
2991 | */ | ||
2992 | #define ARIZONA_OUT6R_ANC_SRC_MASK 0x0C00 /* OUT6R_ANC_SRC - [11:10] */ | ||
2993 | #define ARIZONA_OUT6R_ANC_SRC_SHIFT 10 /* OUT6R_ANC_SRC - [11:10] */ | ||
2994 | #define ARIZONA_OUT6R_ANC_SRC_WIDTH 2 /* OUT6R_ANC_SRC - [11:10] */ | ||
2995 | |||
2996 | /* | ||
2997 | * R1085 (0x43D) - DAC Digital Volume 6R | ||
2998 | */ | ||
2999 | #define ARIZONA_OUT_VU 0x0200 /* OUT_VU */ | ||
3000 | #define ARIZONA_OUT_VU_MASK 0x0200 /* OUT_VU */ | ||
3001 | #define ARIZONA_OUT_VU_SHIFT 9 /* OUT_VU */ | ||
3002 | #define ARIZONA_OUT_VU_WIDTH 1 /* OUT_VU */ | ||
3003 | #define ARIZONA_OUT6R_MUTE 0x0100 /* OUT6R_MUTE */ | ||
3004 | #define ARIZONA_OUT6R_MUTE_MASK 0x0100 /* OUT6R_MUTE */ | ||
3005 | #define ARIZONA_OUT6R_MUTE_SHIFT 8 /* OUT6R_MUTE */ | ||
3006 | #define ARIZONA_OUT6R_MUTE_WIDTH 1 /* OUT6R_MUTE */ | ||
3007 | #define ARIZONA_OUT6R_VOL_MASK 0x00FF /* OUT6R_VOL - [7:0] */ | ||
3008 | #define ARIZONA_OUT6R_VOL_SHIFT 0 /* OUT6R_VOL - [7:0] */ | ||
3009 | #define ARIZONA_OUT6R_VOL_WIDTH 8 /* OUT6R_VOL - [7:0] */ | ||
3010 | |||
3011 | /* | ||
3012 | * R1086 (0x43E) - DAC Volume Limit 6R | ||
3013 | */ | ||
3014 | #define ARIZONA_OUT6R_VOL_LIM_MASK 0x00FF /* OUT6R_VOL_LIM - [7:0] */ | ||
3015 | #define ARIZONA_OUT6R_VOL_LIM_SHIFT 0 /* OUT6R_VOL_LIM - [7:0] */ | ||
3016 | #define ARIZONA_OUT6R_VOL_LIM_WIDTH 8 /* OUT6R_VOL_LIM - [7:0] */ | ||
3017 | |||
3018 | /* | ||
3019 | * R1087 (0x43F) - Noise Gate Select 6R | ||
3020 | */ | ||
3021 | #define ARIZONA_OUT6R_NGATE_SRC_MASK 0x0FFF /* OUT6R_NGATE_SRC - [11:0] */ | ||
3022 | #define ARIZONA_OUT6R_NGATE_SRC_SHIFT 0 /* OUT6R_NGATE_SRC - [11:0] */ | ||
3023 | #define ARIZONA_OUT6R_NGATE_SRC_WIDTH 12 /* OUT6R_NGATE_SRC - [11:0] */ | ||
3024 | |||
3025 | /* | ||
3026 | * R1104 (0x450) - DAC AEC Control 1 | ||
3027 | */ | ||
3028 | #define ARIZONA_AEC_LOOPBACK_SRC_MASK 0x003C /* AEC_LOOPBACK_SRC - [5:2] */ | ||
3029 | #define ARIZONA_AEC_LOOPBACK_SRC_SHIFT 2 /* AEC_LOOPBACK_SRC - [5:2] */ | ||
3030 | #define ARIZONA_AEC_LOOPBACK_SRC_WIDTH 4 /* AEC_LOOPBACK_SRC - [5:2] */ | ||
3031 | #define ARIZONA_AEC_ENA_STS 0x0002 /* AEC_ENA_STS */ | ||
3032 | #define ARIZONA_AEC_ENA_STS_MASK 0x0002 /* AEC_ENA_STS */ | ||
3033 | #define ARIZONA_AEC_ENA_STS_SHIFT 1 /* AEC_ENA_STS */ | ||
3034 | #define ARIZONA_AEC_ENA_STS_WIDTH 1 /* AEC_ENA_STS */ | ||
3035 | #define ARIZONA_AEC_LOOPBACK_ENA 0x0001 /* AEC_LOOPBACK_ENA */ | ||
3036 | #define ARIZONA_AEC_LOOPBACK_ENA_MASK 0x0001 /* AEC_LOOPBACK_ENA */ | ||
3037 | #define ARIZONA_AEC_LOOPBACK_ENA_SHIFT 0 /* AEC_LOOPBACK_ENA */ | ||
3038 | #define ARIZONA_AEC_LOOPBACK_ENA_WIDTH 1 /* AEC_LOOPBACK_ENA */ | ||
3039 | |||
3040 | /* | ||
3041 | * R1112 (0x458) - Noise Gate Control | ||
3042 | */ | ||
3043 | #define ARIZONA_NGATE_HOLD_MASK 0x0030 /* NGATE_HOLD - [5:4] */ | ||
3044 | #define ARIZONA_NGATE_HOLD_SHIFT 4 /* NGATE_HOLD - [5:4] */ | ||
3045 | #define ARIZONA_NGATE_HOLD_WIDTH 2 /* NGATE_HOLD - [5:4] */ | ||
3046 | #define ARIZONA_NGATE_THR_MASK 0x000E /* NGATE_THR - [3:1] */ | ||
3047 | #define ARIZONA_NGATE_THR_SHIFT 1 /* NGATE_THR - [3:1] */ | ||
3048 | #define ARIZONA_NGATE_THR_WIDTH 3 /* NGATE_THR - [3:1] */ | ||
3049 | #define ARIZONA_NGATE_ENA 0x0001 /* NGATE_ENA */ | ||
3050 | #define ARIZONA_NGATE_ENA_MASK 0x0001 /* NGATE_ENA */ | ||
3051 | #define ARIZONA_NGATE_ENA_SHIFT 0 /* NGATE_ENA */ | ||
3052 | #define ARIZONA_NGATE_ENA_WIDTH 1 /* NGATE_ENA */ | ||
3053 | |||
3054 | /* | ||
3055 | * R1168 (0x490) - PDM SPK1 CTRL 1 | ||
3056 | */ | ||
3057 | #define ARIZONA_SPK1R_MUTE 0x2000 /* SPK1R_MUTE */ | ||
3058 | #define ARIZONA_SPK1R_MUTE_MASK 0x2000 /* SPK1R_MUTE */ | ||
3059 | #define ARIZONA_SPK1R_MUTE_SHIFT 13 /* SPK1R_MUTE */ | ||
3060 | #define ARIZONA_SPK1R_MUTE_WIDTH 1 /* SPK1R_MUTE */ | ||
3061 | #define ARIZONA_SPK1L_MUTE 0x1000 /* SPK1L_MUTE */ | ||
3062 | #define ARIZONA_SPK1L_MUTE_MASK 0x1000 /* SPK1L_MUTE */ | ||
3063 | #define ARIZONA_SPK1L_MUTE_SHIFT 12 /* SPK1L_MUTE */ | ||
3064 | #define ARIZONA_SPK1L_MUTE_WIDTH 1 /* SPK1L_MUTE */ | ||
3065 | #define ARIZONA_SPK1_MUTE_ENDIAN 0x0100 /* SPK1_MUTE_ENDIAN */ | ||
3066 | #define ARIZONA_SPK1_MUTE_ENDIAN_MASK 0x0100 /* SPK1_MUTE_ENDIAN */ | ||
3067 | #define ARIZONA_SPK1_MUTE_ENDIAN_SHIFT 8 /* SPK1_MUTE_ENDIAN */ | ||
3068 | #define ARIZONA_SPK1_MUTE_ENDIAN_WIDTH 1 /* SPK1_MUTE_ENDIAN */ | ||
3069 | #define ARIZONA_SPK1_MUTE_SEQ1_MASK 0x00FF /* SPK1_MUTE_SEQ1 - [7:0] */ | ||
3070 | #define ARIZONA_SPK1_MUTE_SEQ1_SHIFT 0 /* SPK1_MUTE_SEQ1 - [7:0] */ | ||
3071 | #define ARIZONA_SPK1_MUTE_SEQ1_WIDTH 8 /* SPK1_MUTE_SEQ1 - [7:0] */ | ||
3072 | |||
3073 | /* | ||
3074 | * R1169 (0x491) - PDM SPK1 CTRL 2 | ||
3075 | */ | ||
3076 | #define ARIZONA_SPK1_FMT 0x0001 /* SPK1_FMT */ | ||
3077 | #define ARIZONA_SPK1_FMT_MASK 0x0001 /* SPK1_FMT */ | ||
3078 | #define ARIZONA_SPK1_FMT_SHIFT 0 /* SPK1_FMT */ | ||
3079 | #define ARIZONA_SPK1_FMT_WIDTH 1 /* SPK1_FMT */ | ||
3080 | |||
3081 | /* | ||
3082 | * R1170 (0x492) - PDM SPK2 CTRL 1 | ||
3083 | */ | ||
3084 | #define ARIZONA_SPK2R_MUTE 0x2000 /* SPK2R_MUTE */ | ||
3085 | #define ARIZONA_SPK2R_MUTE_MASK 0x2000 /* SPK2R_MUTE */ | ||
3086 | #define ARIZONA_SPK2R_MUTE_SHIFT 13 /* SPK2R_MUTE */ | ||
3087 | #define ARIZONA_SPK2R_MUTE_WIDTH 1 /* SPK2R_MUTE */ | ||
3088 | #define ARIZONA_SPK2L_MUTE 0x1000 /* SPK2L_MUTE */ | ||
3089 | #define ARIZONA_SPK2L_MUTE_MASK 0x1000 /* SPK2L_MUTE */ | ||
3090 | #define ARIZONA_SPK2L_MUTE_SHIFT 12 /* SPK2L_MUTE */ | ||
3091 | #define ARIZONA_SPK2L_MUTE_WIDTH 1 /* SPK2L_MUTE */ | ||
3092 | #define ARIZONA_SPK2_MUTE_ENDIAN 0x0100 /* SPK2_MUTE_ENDIAN */ | ||
3093 | #define ARIZONA_SPK2_MUTE_ENDIAN_MASK 0x0100 /* SPK2_MUTE_ENDIAN */ | ||
3094 | #define ARIZONA_SPK2_MUTE_ENDIAN_SHIFT 8 /* SPK2_MUTE_ENDIAN */ | ||
3095 | #define ARIZONA_SPK2_MUTE_ENDIAN_WIDTH 1 /* SPK2_MUTE_ENDIAN */ | ||
3096 | #define ARIZONA_SPK2_MUTE_SEQ_MASK 0x00FF /* SPK2_MUTE_SEQ - [7:0] */ | ||
3097 | #define ARIZONA_SPK2_MUTE_SEQ_SHIFT 0 /* SPK2_MUTE_SEQ - [7:0] */ | ||
3098 | #define ARIZONA_SPK2_MUTE_SEQ_WIDTH 8 /* SPK2_MUTE_SEQ - [7:0] */ | ||
3099 | |||
3100 | /* | ||
3101 | * R1171 (0x493) - PDM SPK2 CTRL 2 | ||
3102 | */ | ||
3103 | #define ARIZONA_SPK2_FMT 0x0001 /* SPK2_FMT */ | ||
3104 | #define ARIZONA_SPK2_FMT_MASK 0x0001 /* SPK2_FMT */ | ||
3105 | #define ARIZONA_SPK2_FMT_SHIFT 0 /* SPK2_FMT */ | ||
3106 | #define ARIZONA_SPK2_FMT_WIDTH 1 /* SPK2_FMT */ | ||
3107 | |||
3108 | /* | ||
3109 | * R1244 (0x4DC) - DAC comp 1 | ||
3110 | */ | ||
3111 | #define ARIZONA_OUT_COMP_COEFF_MASK 0xFFFF /* OUT_COMP_COEFF - [15:0] */ | ||
3112 | #define ARIZONA_OUT_COMP_COEFF_SHIFT 0 /* OUT_COMP_COEFF - [15:0] */ | ||
3113 | #define ARIZONA_OUT_COMP_COEFF_WIDTH 16 /* OUT_COMP_COEFF - [15:0] */ | ||
3114 | |||
3115 | /* | ||
3116 | * R1245 (0x4DD) - DAC comp 2 | ||
3117 | */ | ||
3118 | #define ARIZONA_OUT_COMP_COEFF_1 0x0002 /* OUT_COMP_COEFF */ | ||
3119 | #define ARIZONA_OUT_COMP_COEFF_1_MASK 0x0002 /* OUT_COMP_COEFF */ | ||
3120 | #define ARIZONA_OUT_COMP_COEFF_1_SHIFT 1 /* OUT_COMP_COEFF */ | ||
3121 | #define ARIZONA_OUT_COMP_COEFF_1_WIDTH 1 /* OUT_COMP_COEFF */ | ||
3122 | #define ARIZONA_OUT_COMP_COEFF_SEL 0x0001 /* OUT_COMP_COEFF_SEL */ | ||
3123 | #define ARIZONA_OUT_COMP_COEFF_SEL_MASK 0x0001 /* OUT_COMP_COEFF_SEL */ | ||
3124 | #define ARIZONA_OUT_COMP_COEFF_SEL_SHIFT 0 /* OUT_COMP_COEFF_SEL */ | ||
3125 | #define ARIZONA_OUT_COMP_COEFF_SEL_WIDTH 1 /* OUT_COMP_COEFF_SEL */ | ||
3126 | |||
3127 | /* | ||
3128 | * R1246 (0x4DE) - DAC comp 3 | ||
3129 | */ | ||
3130 | #define ARIZONA_AEC_COMP_COEFF_MASK 0xFFFF /* AEC_COMP_COEFF - [15:0] */ | ||
3131 | #define ARIZONA_AEC_COMP_COEFF_SHIFT 0 /* AEC_COMP_COEFF - [15:0] */ | ||
3132 | #define ARIZONA_AEC_COMP_COEFF_WIDTH 16 /* AEC_COMP_COEFF - [15:0] */ | ||
3133 | |||
3134 | /* | ||
3135 | * R1247 (0x4DF) - DAC comp 4 | ||
3136 | */ | ||
3137 | #define ARIZONA_AEC_COMP_COEFF_1 0x0002 /* AEC_COMP_COEFF */ | ||
3138 | #define ARIZONA_AEC_COMP_COEFF_1_MASK 0x0002 /* AEC_COMP_COEFF */ | ||
3139 | #define ARIZONA_AEC_COMP_COEFF_1_SHIFT 1 /* AEC_COMP_COEFF */ | ||
3140 | #define ARIZONA_AEC_COMP_COEFF_1_WIDTH 1 /* AEC_COMP_COEFF */ | ||
3141 | #define ARIZONA_AEC_COMP_COEFF_SEL 0x0001 /* AEC_COMP_COEFF_SEL */ | ||
3142 | #define ARIZONA_AEC_COMP_COEFF_SEL_MASK 0x0001 /* AEC_COMP_COEFF_SEL */ | ||
3143 | #define ARIZONA_AEC_COMP_COEFF_SEL_SHIFT 0 /* AEC_COMP_COEFF_SEL */ | ||
3144 | #define ARIZONA_AEC_COMP_COEFF_SEL_WIDTH 1 /* AEC_COMP_COEFF_SEL */ | ||
3145 | |||
3146 | /* | ||
3147 | * R1280 (0x500) - AIF1 BCLK Ctrl | ||
3148 | */ | ||
3149 | #define ARIZONA_AIF1_BCLK_INV 0x0080 /* AIF1_BCLK_INV */ | ||
3150 | #define ARIZONA_AIF1_BCLK_INV_MASK 0x0080 /* AIF1_BCLK_INV */ | ||
3151 | #define ARIZONA_AIF1_BCLK_INV_SHIFT 7 /* AIF1_BCLK_INV */ | ||
3152 | #define ARIZONA_AIF1_BCLK_INV_WIDTH 1 /* AIF1_BCLK_INV */ | ||
3153 | #define ARIZONA_AIF1_BCLK_FRC 0x0040 /* AIF1_BCLK_FRC */ | ||
3154 | #define ARIZONA_AIF1_BCLK_FRC_MASK 0x0040 /* AIF1_BCLK_FRC */ | ||
3155 | #define ARIZONA_AIF1_BCLK_FRC_SHIFT 6 /* AIF1_BCLK_FRC */ | ||
3156 | #define ARIZONA_AIF1_BCLK_FRC_WIDTH 1 /* AIF1_BCLK_FRC */ | ||
3157 | #define ARIZONA_AIF1_BCLK_MSTR 0x0020 /* AIF1_BCLK_MSTR */ | ||
3158 | #define ARIZONA_AIF1_BCLK_MSTR_MASK 0x0020 /* AIF1_BCLK_MSTR */ | ||
3159 | #define ARIZONA_AIF1_BCLK_MSTR_SHIFT 5 /* AIF1_BCLK_MSTR */ | ||
3160 | #define ARIZONA_AIF1_BCLK_MSTR_WIDTH 1 /* AIF1_BCLK_MSTR */ | ||
3161 | #define ARIZONA_AIF1_BCLK_FREQ_MASK 0x001F /* AIF1_BCLK_FREQ - [4:0] */ | ||
3162 | #define ARIZONA_AIF1_BCLK_FREQ_SHIFT 0 /* AIF1_BCLK_FREQ - [4:0] */ | ||
3163 | #define ARIZONA_AIF1_BCLK_FREQ_WIDTH 5 /* AIF1_BCLK_FREQ - [4:0] */ | ||
3164 | |||
3165 | /* | ||
3166 | * R1281 (0x501) - AIF1 Tx Pin Ctrl | ||
3167 | */ | ||
3168 | #define ARIZONA_AIF1TX_DAT_TRI 0x0020 /* AIF1TX_DAT_TRI */ | ||
3169 | #define ARIZONA_AIF1TX_DAT_TRI_MASK 0x0020 /* AIF1TX_DAT_TRI */ | ||
3170 | #define ARIZONA_AIF1TX_DAT_TRI_SHIFT 5 /* AIF1TX_DAT_TRI */ | ||
3171 | #define ARIZONA_AIF1TX_DAT_TRI_WIDTH 1 /* AIF1TX_DAT_TRI */ | ||
3172 | #define ARIZONA_AIF1TX_LRCLK_SRC 0x0008 /* AIF1TX_LRCLK_SRC */ | ||
3173 | #define ARIZONA_AIF1TX_LRCLK_SRC_MASK 0x0008 /* AIF1TX_LRCLK_SRC */ | ||
3174 | #define ARIZONA_AIF1TX_LRCLK_SRC_SHIFT 3 /* AIF1TX_LRCLK_SRC */ | ||
3175 | #define ARIZONA_AIF1TX_LRCLK_SRC_WIDTH 1 /* AIF1TX_LRCLK_SRC */ | ||
3176 | #define ARIZONA_AIF1TX_LRCLK_INV 0x0004 /* AIF1TX_LRCLK_INV */ | ||
3177 | #define ARIZONA_AIF1TX_LRCLK_INV_MASK 0x0004 /* AIF1TX_LRCLK_INV */ | ||
3178 | #define ARIZONA_AIF1TX_LRCLK_INV_SHIFT 2 /* AIF1TX_LRCLK_INV */ | ||
3179 | #define ARIZONA_AIF1TX_LRCLK_INV_WIDTH 1 /* AIF1TX_LRCLK_INV */ | ||
3180 | #define ARIZONA_AIF1TX_LRCLK_FRC 0x0002 /* AIF1TX_LRCLK_FRC */ | ||
3181 | #define ARIZONA_AIF1TX_LRCLK_FRC_MASK 0x0002 /* AIF1TX_LRCLK_FRC */ | ||
3182 | #define ARIZONA_AIF1TX_LRCLK_FRC_SHIFT 1 /* AIF1TX_LRCLK_FRC */ | ||
3183 | #define ARIZONA_AIF1TX_LRCLK_FRC_WIDTH 1 /* AIF1TX_LRCLK_FRC */ | ||
3184 | #define ARIZONA_AIF1TX_LRCLK_MSTR 0x0001 /* AIF1TX_LRCLK_MSTR */ | ||
3185 | #define ARIZONA_AIF1TX_LRCLK_MSTR_MASK 0x0001 /* AIF1TX_LRCLK_MSTR */ | ||
3186 | #define ARIZONA_AIF1TX_LRCLK_MSTR_SHIFT 0 /* AIF1TX_LRCLK_MSTR */ | ||
3187 | #define ARIZONA_AIF1TX_LRCLK_MSTR_WIDTH 1 /* AIF1TX_LRCLK_MSTR */ | ||
3188 | |||
3189 | /* | ||
3190 | * R1282 (0x502) - AIF1 Rx Pin Ctrl | ||
3191 | */ | ||
3192 | #define ARIZONA_AIF1RX_LRCLK_INV 0x0004 /* AIF1RX_LRCLK_INV */ | ||
3193 | #define ARIZONA_AIF1RX_LRCLK_INV_MASK 0x0004 /* AIF1RX_LRCLK_INV */ | ||
3194 | #define ARIZONA_AIF1RX_LRCLK_INV_SHIFT 2 /* AIF1RX_LRCLK_INV */ | ||
3195 | #define ARIZONA_AIF1RX_LRCLK_INV_WIDTH 1 /* AIF1RX_LRCLK_INV */ | ||
3196 | #define ARIZONA_AIF1RX_LRCLK_FRC 0x0002 /* AIF1RX_LRCLK_FRC */ | ||
3197 | #define ARIZONA_AIF1RX_LRCLK_FRC_MASK 0x0002 /* AIF1RX_LRCLK_FRC */ | ||
3198 | #define ARIZONA_AIF1RX_LRCLK_FRC_SHIFT 1 /* AIF1RX_LRCLK_FRC */ | ||
3199 | #define ARIZONA_AIF1RX_LRCLK_FRC_WIDTH 1 /* AIF1RX_LRCLK_FRC */ | ||
3200 | #define ARIZONA_AIF1RX_LRCLK_MSTR 0x0001 /* AIF1RX_LRCLK_MSTR */ | ||
3201 | #define ARIZONA_AIF1RX_LRCLK_MSTR_MASK 0x0001 /* AIF1RX_LRCLK_MSTR */ | ||
3202 | #define ARIZONA_AIF1RX_LRCLK_MSTR_SHIFT 0 /* AIF1RX_LRCLK_MSTR */ | ||
3203 | #define ARIZONA_AIF1RX_LRCLK_MSTR_WIDTH 1 /* AIF1RX_LRCLK_MSTR */ | ||
3204 | |||
3205 | /* | ||
3206 | * R1283 (0x503) - AIF1 Rate Ctrl | ||
3207 | */ | ||
3208 | #define ARIZONA_AIF1_RATE_MASK 0x7800 /* AIF1_RATE - [14:11] */ | ||
3209 | #define ARIZONA_AIF1_RATE_SHIFT 11 /* AIF1_RATE - [14:11] */ | ||
3210 | #define ARIZONA_AIF1_RATE_WIDTH 4 /* AIF1_RATE - [14:11] */ | ||
3211 | #define ARIZONA_AIF1_TRI 0x0040 /* AIF1_TRI */ | ||
3212 | #define ARIZONA_AIF1_TRI_MASK 0x0040 /* AIF1_TRI */ | ||
3213 | #define ARIZONA_AIF1_TRI_SHIFT 6 /* AIF1_TRI */ | ||
3214 | #define ARIZONA_AIF1_TRI_WIDTH 1 /* AIF1_TRI */ | ||
3215 | |||
3216 | /* | ||
3217 | * R1284 (0x504) - AIF1 Format | ||
3218 | */ | ||
3219 | #define ARIZONA_AIF1_FMT_MASK 0x0007 /* AIF1_FMT - [2:0] */ | ||
3220 | #define ARIZONA_AIF1_FMT_SHIFT 0 /* AIF1_FMT - [2:0] */ | ||
3221 | #define ARIZONA_AIF1_FMT_WIDTH 3 /* AIF1_FMT - [2:0] */ | ||
3222 | |||
3223 | /* | ||
3224 | * R1285 (0x505) - AIF1 Tx BCLK Rate | ||
3225 | */ | ||
3226 | #define ARIZONA_AIF1TX_BCPF_MASK 0x1FFF /* AIF1TX_BCPF - [12:0] */ | ||
3227 | #define ARIZONA_AIF1TX_BCPF_SHIFT 0 /* AIF1TX_BCPF - [12:0] */ | ||
3228 | #define ARIZONA_AIF1TX_BCPF_WIDTH 13 /* AIF1TX_BCPF - [12:0] */ | ||
3229 | |||
3230 | /* | ||
3231 | * R1286 (0x506) - AIF1 Rx BCLK Rate | ||
3232 | */ | ||
3233 | #define ARIZONA_AIF1RX_BCPF_MASK 0x1FFF /* AIF1RX_BCPF - [12:0] */ | ||
3234 | #define ARIZONA_AIF1RX_BCPF_SHIFT 0 /* AIF1RX_BCPF - [12:0] */ | ||
3235 | #define ARIZONA_AIF1RX_BCPF_WIDTH 13 /* AIF1RX_BCPF - [12:0] */ | ||
3236 | |||
3237 | /* | ||
3238 | * R1287 (0x507) - AIF1 Frame Ctrl 1 | ||
3239 | */ | ||
3240 | #define ARIZONA_AIF1TX_WL_MASK 0x3F00 /* AIF1TX_WL - [13:8] */ | ||
3241 | #define ARIZONA_AIF1TX_WL_SHIFT 8 /* AIF1TX_WL - [13:8] */ | ||
3242 | #define ARIZONA_AIF1TX_WL_WIDTH 6 /* AIF1TX_WL - [13:8] */ | ||
3243 | #define ARIZONA_AIF1TX_SLOT_LEN_MASK 0x00FF /* AIF1TX_SLOT_LEN - [7:0] */ | ||
3244 | #define ARIZONA_AIF1TX_SLOT_LEN_SHIFT 0 /* AIF1TX_SLOT_LEN - [7:0] */ | ||
3245 | #define ARIZONA_AIF1TX_SLOT_LEN_WIDTH 8 /* AIF1TX_SLOT_LEN - [7:0] */ | ||
3246 | |||
3247 | /* | ||
3248 | * R1288 (0x508) - AIF1 Frame Ctrl 2 | ||
3249 | */ | ||
3250 | #define ARIZONA_AIF1RX_WL_MASK 0x3F00 /* AIF1RX_WL - [13:8] */ | ||
3251 | #define ARIZONA_AIF1RX_WL_SHIFT 8 /* AIF1RX_WL - [13:8] */ | ||
3252 | #define ARIZONA_AIF1RX_WL_WIDTH 6 /* AIF1RX_WL - [13:8] */ | ||
3253 | #define ARIZONA_AIF1RX_SLOT_LEN_MASK 0x00FF /* AIF1RX_SLOT_LEN - [7:0] */ | ||
3254 | #define ARIZONA_AIF1RX_SLOT_LEN_SHIFT 0 /* AIF1RX_SLOT_LEN - [7:0] */ | ||
3255 | #define ARIZONA_AIF1RX_SLOT_LEN_WIDTH 8 /* AIF1RX_SLOT_LEN - [7:0] */ | ||
3256 | |||
3257 | /* | ||
3258 | * R1289 (0x509) - AIF1 Frame Ctrl 3 | ||
3259 | */ | ||
3260 | #define ARIZONA_AIF1TX1_SLOT_MASK 0x003F /* AIF1TX1_SLOT - [5:0] */ | ||
3261 | #define ARIZONA_AIF1TX1_SLOT_SHIFT 0 /* AIF1TX1_SLOT - [5:0] */ | ||
3262 | #define ARIZONA_AIF1TX1_SLOT_WIDTH 6 /* AIF1TX1_SLOT - [5:0] */ | ||
3263 | |||
3264 | /* | ||
3265 | * R1290 (0x50A) - AIF1 Frame Ctrl 4 | ||
3266 | */ | ||
3267 | #define ARIZONA_AIF1TX2_SLOT_MASK 0x003F /* AIF1TX2_SLOT - [5:0] */ | ||
3268 | #define ARIZONA_AIF1TX2_SLOT_SHIFT 0 /* AIF1TX2_SLOT - [5:0] */ | ||
3269 | #define ARIZONA_AIF1TX2_SLOT_WIDTH 6 /* AIF1TX2_SLOT - [5:0] */ | ||
3270 | |||
3271 | /* | ||
3272 | * R1291 (0x50B) - AIF1 Frame Ctrl 5 | ||
3273 | */ | ||
3274 | #define ARIZONA_AIF1TX3_SLOT_MASK 0x003F /* AIF1TX3_SLOT - [5:0] */ | ||
3275 | #define ARIZONA_AIF1TX3_SLOT_SHIFT 0 /* AIF1TX3_SLOT - [5:0] */ | ||
3276 | #define ARIZONA_AIF1TX3_SLOT_WIDTH 6 /* AIF1TX3_SLOT - [5:0] */ | ||
3277 | |||
3278 | /* | ||
3279 | * R1292 (0x50C) - AIF1 Frame Ctrl 6 | ||
3280 | */ | ||
3281 | #define ARIZONA_AIF1TX4_SLOT_MASK 0x003F /* AIF1TX4_SLOT - [5:0] */ | ||
3282 | #define ARIZONA_AIF1TX4_SLOT_SHIFT 0 /* AIF1TX4_SLOT - [5:0] */ | ||
3283 | #define ARIZONA_AIF1TX4_SLOT_WIDTH 6 /* AIF1TX4_SLOT - [5:0] */ | ||
3284 | |||
3285 | /* | ||
3286 | * R1293 (0x50D) - AIF1 Frame Ctrl 7 | ||
3287 | */ | ||
3288 | #define ARIZONA_AIF1TX5_SLOT_MASK 0x003F /* AIF1TX5_SLOT - [5:0] */ | ||
3289 | #define ARIZONA_AIF1TX5_SLOT_SHIFT 0 /* AIF1TX5_SLOT - [5:0] */ | ||
3290 | #define ARIZONA_AIF1TX5_SLOT_WIDTH 6 /* AIF1TX5_SLOT - [5:0] */ | ||
3291 | |||
3292 | /* | ||
3293 | * R1294 (0x50E) - AIF1 Frame Ctrl 8 | ||
3294 | */ | ||
3295 | #define ARIZONA_AIF1TX6_SLOT_MASK 0x003F /* AIF1TX6_SLOT - [5:0] */ | ||
3296 | #define ARIZONA_AIF1TX6_SLOT_SHIFT 0 /* AIF1TX6_SLOT - [5:0] */ | ||
3297 | #define ARIZONA_AIF1TX6_SLOT_WIDTH 6 /* AIF1TX6_SLOT - [5:0] */ | ||
3298 | |||
3299 | /* | ||
3300 | * R1295 (0x50F) - AIF1 Frame Ctrl 9 | ||
3301 | */ | ||
3302 | #define ARIZONA_AIF1TX7_SLOT_MASK 0x003F /* AIF1TX7_SLOT - [5:0] */ | ||
3303 | #define ARIZONA_AIF1TX7_SLOT_SHIFT 0 /* AIF1TX7_SLOT - [5:0] */ | ||
3304 | #define ARIZONA_AIF1TX7_SLOT_WIDTH 6 /* AIF1TX7_SLOT - [5:0] */ | ||
3305 | |||
3306 | /* | ||
3307 | * R1296 (0x510) - AIF1 Frame Ctrl 10 | ||
3308 | */ | ||
3309 | #define ARIZONA_AIF1TX8_SLOT_MASK 0x003F /* AIF1TX8_SLOT - [5:0] */ | ||
3310 | #define ARIZONA_AIF1TX8_SLOT_SHIFT 0 /* AIF1TX8_SLOT - [5:0] */ | ||
3311 | #define ARIZONA_AIF1TX8_SLOT_WIDTH 6 /* AIF1TX8_SLOT - [5:0] */ | ||
3312 | |||
3313 | /* | ||
3314 | * R1297 (0x511) - AIF1 Frame Ctrl 11 | ||
3315 | */ | ||
3316 | #define ARIZONA_AIF1RX1_SLOT_MASK 0x003F /* AIF1RX1_SLOT - [5:0] */ | ||
3317 | #define ARIZONA_AIF1RX1_SLOT_SHIFT 0 /* AIF1RX1_SLOT - [5:0] */ | ||
3318 | #define ARIZONA_AIF1RX1_SLOT_WIDTH 6 /* AIF1RX1_SLOT - [5:0] */ | ||
3319 | |||
3320 | /* | ||
3321 | * R1298 (0x512) - AIF1 Frame Ctrl 12 | ||
3322 | */ | ||
3323 | #define ARIZONA_AIF1RX2_SLOT_MASK 0x003F /* AIF1RX2_SLOT - [5:0] */ | ||
3324 | #define ARIZONA_AIF1RX2_SLOT_SHIFT 0 /* AIF1RX2_SLOT - [5:0] */ | ||
3325 | #define ARIZONA_AIF1RX2_SLOT_WIDTH 6 /* AIF1RX2_SLOT - [5:0] */ | ||
3326 | |||
3327 | /* | ||
3328 | * R1299 (0x513) - AIF1 Frame Ctrl 13 | ||
3329 | */ | ||
3330 | #define ARIZONA_AIF1RX3_SLOT_MASK 0x003F /* AIF1RX3_SLOT - [5:0] */ | ||
3331 | #define ARIZONA_AIF1RX3_SLOT_SHIFT 0 /* AIF1RX3_SLOT - [5:0] */ | ||
3332 | #define ARIZONA_AIF1RX3_SLOT_WIDTH 6 /* AIF1RX3_SLOT - [5:0] */ | ||
3333 | |||
3334 | /* | ||
3335 | * R1300 (0x514) - AIF1 Frame Ctrl 14 | ||
3336 | */ | ||
3337 | #define ARIZONA_AIF1RX4_SLOT_MASK 0x003F /* AIF1RX4_SLOT - [5:0] */ | ||
3338 | #define ARIZONA_AIF1RX4_SLOT_SHIFT 0 /* AIF1RX4_SLOT - [5:0] */ | ||
3339 | #define ARIZONA_AIF1RX4_SLOT_WIDTH 6 /* AIF1RX4_SLOT - [5:0] */ | ||
3340 | |||
3341 | /* | ||
3342 | * R1301 (0x515) - AIF1 Frame Ctrl 15 | ||
3343 | */ | ||
3344 | #define ARIZONA_AIF1RX5_SLOT_MASK 0x003F /* AIF1RX5_SLOT - [5:0] */ | ||
3345 | #define ARIZONA_AIF1RX5_SLOT_SHIFT 0 /* AIF1RX5_SLOT - [5:0] */ | ||
3346 | #define ARIZONA_AIF1RX5_SLOT_WIDTH 6 /* AIF1RX5_SLOT - [5:0] */ | ||
3347 | |||
3348 | /* | ||
3349 | * R1302 (0x516) - AIF1 Frame Ctrl 16 | ||
3350 | */ | ||
3351 | #define ARIZONA_AIF1RX6_SLOT_MASK 0x003F /* AIF1RX6_SLOT - [5:0] */ | ||
3352 | #define ARIZONA_AIF1RX6_SLOT_SHIFT 0 /* AIF1RX6_SLOT - [5:0] */ | ||
3353 | #define ARIZONA_AIF1RX6_SLOT_WIDTH 6 /* AIF1RX6_SLOT - [5:0] */ | ||
3354 | |||
3355 | /* | ||
3356 | * R1303 (0x517) - AIF1 Frame Ctrl 17 | ||
3357 | */ | ||
3358 | #define ARIZONA_AIF1RX7_SLOT_MASK 0x003F /* AIF1RX7_SLOT - [5:0] */ | ||
3359 | #define ARIZONA_AIF1RX7_SLOT_SHIFT 0 /* AIF1RX7_SLOT - [5:0] */ | ||
3360 | #define ARIZONA_AIF1RX7_SLOT_WIDTH 6 /* AIF1RX7_SLOT - [5:0] */ | ||
3361 | |||
3362 | /* | ||
3363 | * R1304 (0x518) - AIF1 Frame Ctrl 18 | ||
3364 | */ | ||
3365 | #define ARIZONA_AIF1RX8_SLOT_MASK 0x003F /* AIF1RX8_SLOT - [5:0] */ | ||
3366 | #define ARIZONA_AIF1RX8_SLOT_SHIFT 0 /* AIF1RX8_SLOT - [5:0] */ | ||
3367 | #define ARIZONA_AIF1RX8_SLOT_WIDTH 6 /* AIF1RX8_SLOT - [5:0] */ | ||
3368 | |||
3369 | /* | ||
3370 | * R1305 (0x519) - AIF1 Tx Enables | ||
3371 | */ | ||
3372 | #define ARIZONA_AIF1TX8_ENA 0x0080 /* AIF1TX8_ENA */ | ||
3373 | #define ARIZONA_AIF1TX8_ENA_MASK 0x0080 /* AIF1TX8_ENA */ | ||
3374 | #define ARIZONA_AIF1TX8_ENA_SHIFT 7 /* AIF1TX8_ENA */ | ||
3375 | #define ARIZONA_AIF1TX8_ENA_WIDTH 1 /* AIF1TX8_ENA */ | ||
3376 | #define ARIZONA_AIF1TX7_ENA 0x0040 /* AIF1TX7_ENA */ | ||
3377 | #define ARIZONA_AIF1TX7_ENA_MASK 0x0040 /* AIF1TX7_ENA */ | ||
3378 | #define ARIZONA_AIF1TX7_ENA_SHIFT 6 /* AIF1TX7_ENA */ | ||
3379 | #define ARIZONA_AIF1TX7_ENA_WIDTH 1 /* AIF1TX7_ENA */ | ||
3380 | #define ARIZONA_AIF1TX6_ENA 0x0020 /* AIF1TX6_ENA */ | ||
3381 | #define ARIZONA_AIF1TX6_ENA_MASK 0x0020 /* AIF1TX6_ENA */ | ||
3382 | #define ARIZONA_AIF1TX6_ENA_SHIFT 5 /* AIF1TX6_ENA */ | ||
3383 | #define ARIZONA_AIF1TX6_ENA_WIDTH 1 /* AIF1TX6_ENA */ | ||
3384 | #define ARIZONA_AIF1TX5_ENA 0x0010 /* AIF1TX5_ENA */ | ||
3385 | #define ARIZONA_AIF1TX5_ENA_MASK 0x0010 /* AIF1TX5_ENA */ | ||
3386 | #define ARIZONA_AIF1TX5_ENA_SHIFT 4 /* AIF1TX5_ENA */ | ||
3387 | #define ARIZONA_AIF1TX5_ENA_WIDTH 1 /* AIF1TX5_ENA */ | ||
3388 | #define ARIZONA_AIF1TX4_ENA 0x0008 /* AIF1TX4_ENA */ | ||
3389 | #define ARIZONA_AIF1TX4_ENA_MASK 0x0008 /* AIF1TX4_ENA */ | ||
3390 | #define ARIZONA_AIF1TX4_ENA_SHIFT 3 /* AIF1TX4_ENA */ | ||
3391 | #define ARIZONA_AIF1TX4_ENA_WIDTH 1 /* AIF1TX4_ENA */ | ||
3392 | #define ARIZONA_AIF1TX3_ENA 0x0004 /* AIF1TX3_ENA */ | ||
3393 | #define ARIZONA_AIF1TX3_ENA_MASK 0x0004 /* AIF1TX3_ENA */ | ||
3394 | #define ARIZONA_AIF1TX3_ENA_SHIFT 2 /* AIF1TX3_ENA */ | ||
3395 | #define ARIZONA_AIF1TX3_ENA_WIDTH 1 /* AIF1TX3_ENA */ | ||
3396 | #define ARIZONA_AIF1TX2_ENA 0x0002 /* AIF1TX2_ENA */ | ||
3397 | #define ARIZONA_AIF1TX2_ENA_MASK 0x0002 /* AIF1TX2_ENA */ | ||
3398 | #define ARIZONA_AIF1TX2_ENA_SHIFT 1 /* AIF1TX2_ENA */ | ||
3399 | #define ARIZONA_AIF1TX2_ENA_WIDTH 1 /* AIF1TX2_ENA */ | ||
3400 | #define ARIZONA_AIF1TX1_ENA 0x0001 /* AIF1TX1_ENA */ | ||
3401 | #define ARIZONA_AIF1TX1_ENA_MASK 0x0001 /* AIF1TX1_ENA */ | ||
3402 | #define ARIZONA_AIF1TX1_ENA_SHIFT 0 /* AIF1TX1_ENA */ | ||
3403 | #define ARIZONA_AIF1TX1_ENA_WIDTH 1 /* AIF1TX1_ENA */ | ||
3404 | |||
3405 | /* | ||
3406 | * R1306 (0x51A) - AIF1 Rx Enables | ||
3407 | */ | ||
3408 | #define ARIZONA_AIF1RX8_ENA 0x0080 /* AIF1RX8_ENA */ | ||
3409 | #define ARIZONA_AIF1RX8_ENA_MASK 0x0080 /* AIF1RX8_ENA */ | ||
3410 | #define ARIZONA_AIF1RX8_ENA_SHIFT 7 /* AIF1RX8_ENA */ | ||
3411 | #define ARIZONA_AIF1RX8_ENA_WIDTH 1 /* AIF1RX8_ENA */ | ||
3412 | #define ARIZONA_AIF1RX7_ENA 0x0040 /* AIF1RX7_ENA */ | ||
3413 | #define ARIZONA_AIF1RX7_ENA_MASK 0x0040 /* AIF1RX7_ENA */ | ||
3414 | #define ARIZONA_AIF1RX7_ENA_SHIFT 6 /* AIF1RX7_ENA */ | ||
3415 | #define ARIZONA_AIF1RX7_ENA_WIDTH 1 /* AIF1RX7_ENA */ | ||
3416 | #define ARIZONA_AIF1RX6_ENA 0x0020 /* AIF1RX6_ENA */ | ||
3417 | #define ARIZONA_AIF1RX6_ENA_MASK 0x0020 /* AIF1RX6_ENA */ | ||
3418 | #define ARIZONA_AIF1RX6_ENA_SHIFT 5 /* AIF1RX6_ENA */ | ||
3419 | #define ARIZONA_AIF1RX6_ENA_WIDTH 1 /* AIF1RX6_ENA */ | ||
3420 | #define ARIZONA_AIF1RX5_ENA 0x0010 /* AIF1RX5_ENA */ | ||
3421 | #define ARIZONA_AIF1RX5_ENA_MASK 0x0010 /* AIF1RX5_ENA */ | ||
3422 | #define ARIZONA_AIF1RX5_ENA_SHIFT 4 /* AIF1RX5_ENA */ | ||
3423 | #define ARIZONA_AIF1RX5_ENA_WIDTH 1 /* AIF1RX5_ENA */ | ||
3424 | #define ARIZONA_AIF1RX4_ENA 0x0008 /* AIF1RX4_ENA */ | ||
3425 | #define ARIZONA_AIF1RX4_ENA_MASK 0x0008 /* AIF1RX4_ENA */ | ||
3426 | #define ARIZONA_AIF1RX4_ENA_SHIFT 3 /* AIF1RX4_ENA */ | ||
3427 | #define ARIZONA_AIF1RX4_ENA_WIDTH 1 /* AIF1RX4_ENA */ | ||
3428 | #define ARIZONA_AIF1RX3_ENA 0x0004 /* AIF1RX3_ENA */ | ||
3429 | #define ARIZONA_AIF1RX3_ENA_MASK 0x0004 /* AIF1RX3_ENA */ | ||
3430 | #define ARIZONA_AIF1RX3_ENA_SHIFT 2 /* AIF1RX3_ENA */ | ||
3431 | #define ARIZONA_AIF1RX3_ENA_WIDTH 1 /* AIF1RX3_ENA */ | ||
3432 | #define ARIZONA_AIF1RX2_ENA 0x0002 /* AIF1RX2_ENA */ | ||
3433 | #define ARIZONA_AIF1RX2_ENA_MASK 0x0002 /* AIF1RX2_ENA */ | ||
3434 | #define ARIZONA_AIF1RX2_ENA_SHIFT 1 /* AIF1RX2_ENA */ | ||
3435 | #define ARIZONA_AIF1RX2_ENA_WIDTH 1 /* AIF1RX2_ENA */ | ||
3436 | #define ARIZONA_AIF1RX1_ENA 0x0001 /* AIF1RX1_ENA */ | ||
3437 | #define ARIZONA_AIF1RX1_ENA_MASK 0x0001 /* AIF1RX1_ENA */ | ||
3438 | #define ARIZONA_AIF1RX1_ENA_SHIFT 0 /* AIF1RX1_ENA */ | ||
3439 | #define ARIZONA_AIF1RX1_ENA_WIDTH 1 /* AIF1RX1_ENA */ | ||
3440 | |||
3441 | /* | ||
3442 | * R1307 (0x51B) - AIF1 Force Write | ||
3443 | */ | ||
3444 | #define ARIZONA_AIF1_FRC_WR 0x0001 /* AIF1_FRC_WR */ | ||
3445 | #define ARIZONA_AIF1_FRC_WR_MASK 0x0001 /* AIF1_FRC_WR */ | ||
3446 | #define ARIZONA_AIF1_FRC_WR_SHIFT 0 /* AIF1_FRC_WR */ | ||
3447 | #define ARIZONA_AIF1_FRC_WR_WIDTH 1 /* AIF1_FRC_WR */ | ||
3448 | |||
3449 | /* | ||
3450 | * R1344 (0x540) - AIF2 BCLK Ctrl | ||
3451 | */ | ||
3452 | #define ARIZONA_AIF2_BCLK_INV 0x0080 /* AIF2_BCLK_INV */ | ||
3453 | #define ARIZONA_AIF2_BCLK_INV_MASK 0x0080 /* AIF2_BCLK_INV */ | ||
3454 | #define ARIZONA_AIF2_BCLK_INV_SHIFT 7 /* AIF2_BCLK_INV */ | ||
3455 | #define ARIZONA_AIF2_BCLK_INV_WIDTH 1 /* AIF2_BCLK_INV */ | ||
3456 | #define ARIZONA_AIF2_BCLK_FRC 0x0040 /* AIF2_BCLK_FRC */ | ||
3457 | #define ARIZONA_AIF2_BCLK_FRC_MASK 0x0040 /* AIF2_BCLK_FRC */ | ||
3458 | #define ARIZONA_AIF2_BCLK_FRC_SHIFT 6 /* AIF2_BCLK_FRC */ | ||
3459 | #define ARIZONA_AIF2_BCLK_FRC_WIDTH 1 /* AIF2_BCLK_FRC */ | ||
3460 | #define ARIZONA_AIF2_BCLK_MSTR 0x0020 /* AIF2_BCLK_MSTR */ | ||
3461 | #define ARIZONA_AIF2_BCLK_MSTR_MASK 0x0020 /* AIF2_BCLK_MSTR */ | ||
3462 | #define ARIZONA_AIF2_BCLK_MSTR_SHIFT 5 /* AIF2_BCLK_MSTR */ | ||
3463 | #define ARIZONA_AIF2_BCLK_MSTR_WIDTH 1 /* AIF2_BCLK_MSTR */ | ||
3464 | #define ARIZONA_AIF2_BCLK_FREQ_MASK 0x001F /* AIF2_BCLK_FREQ - [4:0] */ | ||
3465 | #define ARIZONA_AIF2_BCLK_FREQ_SHIFT 0 /* AIF2_BCLK_FREQ - [4:0] */ | ||
3466 | #define ARIZONA_AIF2_BCLK_FREQ_WIDTH 5 /* AIF2_BCLK_FREQ - [4:0] */ | ||
3467 | |||
3468 | /* | ||
3469 | * R1345 (0x541) - AIF2 Tx Pin Ctrl | ||
3470 | */ | ||
3471 | #define ARIZONA_AIF2TX_DAT_TRI 0x0020 /* AIF2TX_DAT_TRI */ | ||
3472 | #define ARIZONA_AIF2TX_DAT_TRI_MASK 0x0020 /* AIF2TX_DAT_TRI */ | ||
3473 | #define ARIZONA_AIF2TX_DAT_TRI_SHIFT 5 /* AIF2TX_DAT_TRI */ | ||
3474 | #define ARIZONA_AIF2TX_DAT_TRI_WIDTH 1 /* AIF2TX_DAT_TRI */ | ||
3475 | #define ARIZONA_AIF2TX_LRCLK_SRC 0x0008 /* AIF2TX_LRCLK_SRC */ | ||
3476 | #define ARIZONA_AIF2TX_LRCLK_SRC_MASK 0x0008 /* AIF2TX_LRCLK_SRC */ | ||
3477 | #define ARIZONA_AIF2TX_LRCLK_SRC_SHIFT 3 /* AIF2TX_LRCLK_SRC */ | ||
3478 | #define ARIZONA_AIF2TX_LRCLK_SRC_WIDTH 1 /* AIF2TX_LRCLK_SRC */ | ||
3479 | #define ARIZONA_AIF2TX_LRCLK_INV 0x0004 /* AIF2TX_LRCLK_INV */ | ||
3480 | #define ARIZONA_AIF2TX_LRCLK_INV_MASK 0x0004 /* AIF2TX_LRCLK_INV */ | ||
3481 | #define ARIZONA_AIF2TX_LRCLK_INV_SHIFT 2 /* AIF2TX_LRCLK_INV */ | ||
3482 | #define ARIZONA_AIF2TX_LRCLK_INV_WIDTH 1 /* AIF2TX_LRCLK_INV */ | ||
3483 | #define ARIZONA_AIF2TX_LRCLK_FRC 0x0002 /* AIF2TX_LRCLK_FRC */ | ||
3484 | #define ARIZONA_AIF2TX_LRCLK_FRC_MASK 0x0002 /* AIF2TX_LRCLK_FRC */ | ||
3485 | #define ARIZONA_AIF2TX_LRCLK_FRC_SHIFT 1 /* AIF2TX_LRCLK_FRC */ | ||
3486 | #define ARIZONA_AIF2TX_LRCLK_FRC_WIDTH 1 /* AIF2TX_LRCLK_FRC */ | ||
3487 | #define ARIZONA_AIF2TX_LRCLK_MSTR 0x0001 /* AIF2TX_LRCLK_MSTR */ | ||
3488 | #define ARIZONA_AIF2TX_LRCLK_MSTR_MASK 0x0001 /* AIF2TX_LRCLK_MSTR */ | ||
3489 | #define ARIZONA_AIF2TX_LRCLK_MSTR_SHIFT 0 /* AIF2TX_LRCLK_MSTR */ | ||
3490 | #define ARIZONA_AIF2TX_LRCLK_MSTR_WIDTH 1 /* AIF2TX_LRCLK_MSTR */ | ||
3491 | |||
3492 | /* | ||
3493 | * R1346 (0x542) - AIF2 Rx Pin Ctrl | ||
3494 | */ | ||
3495 | #define ARIZONA_AIF2RX_LRCLK_INV 0x0004 /* AIF2RX_LRCLK_INV */ | ||
3496 | #define ARIZONA_AIF2RX_LRCLK_INV_MASK 0x0004 /* AIF2RX_LRCLK_INV */ | ||
3497 | #define ARIZONA_AIF2RX_LRCLK_INV_SHIFT 2 /* AIF2RX_LRCLK_INV */ | ||
3498 | #define ARIZONA_AIF2RX_LRCLK_INV_WIDTH 1 /* AIF2RX_LRCLK_INV */ | ||
3499 | #define ARIZONA_AIF2RX_LRCLK_FRC 0x0002 /* AIF2RX_LRCLK_FRC */ | ||
3500 | #define ARIZONA_AIF2RX_LRCLK_FRC_MASK 0x0002 /* AIF2RX_LRCLK_FRC */ | ||
3501 | #define ARIZONA_AIF2RX_LRCLK_FRC_SHIFT 1 /* AIF2RX_LRCLK_FRC */ | ||
3502 | #define ARIZONA_AIF2RX_LRCLK_FRC_WIDTH 1 /* AIF2RX_LRCLK_FRC */ | ||
3503 | #define ARIZONA_AIF2RX_LRCLK_MSTR 0x0001 /* AIF2RX_LRCLK_MSTR */ | ||
3504 | #define ARIZONA_AIF2RX_LRCLK_MSTR_MASK 0x0001 /* AIF2RX_LRCLK_MSTR */ | ||
3505 | #define ARIZONA_AIF2RX_LRCLK_MSTR_SHIFT 0 /* AIF2RX_LRCLK_MSTR */ | ||
3506 | #define ARIZONA_AIF2RX_LRCLK_MSTR_WIDTH 1 /* AIF2RX_LRCLK_MSTR */ | ||
3507 | |||
3508 | /* | ||
3509 | * R1347 (0x543) - AIF2 Rate Ctrl | ||
3510 | */ | ||
3511 | #define ARIZONA_AIF2_RATE_MASK 0x7800 /* AIF2_RATE - [14:11] */ | ||
3512 | #define ARIZONA_AIF2_RATE_SHIFT 11 /* AIF2_RATE - [14:11] */ | ||
3513 | #define ARIZONA_AIF2_RATE_WIDTH 4 /* AIF2_RATE - [14:11] */ | ||
3514 | #define ARIZONA_AIF2_TRI 0x0040 /* AIF2_TRI */ | ||
3515 | #define ARIZONA_AIF2_TRI_MASK 0x0040 /* AIF2_TRI */ | ||
3516 | #define ARIZONA_AIF2_TRI_SHIFT 6 /* AIF2_TRI */ | ||
3517 | #define ARIZONA_AIF2_TRI_WIDTH 1 /* AIF2_TRI */ | ||
3518 | |||
3519 | /* | ||
3520 | * R1348 (0x544) - AIF2 Format | ||
3521 | */ | ||
3522 | #define ARIZONA_AIF2_FMT_MASK 0x0007 /* AIF2_FMT - [2:0] */ | ||
3523 | #define ARIZONA_AIF2_FMT_SHIFT 0 /* AIF2_FMT - [2:0] */ | ||
3524 | #define ARIZONA_AIF2_FMT_WIDTH 3 /* AIF2_FMT - [2:0] */ | ||
3525 | |||
3526 | /* | ||
3527 | * R1349 (0x545) - AIF2 Tx BCLK Rate | ||
3528 | */ | ||
3529 | #define ARIZONA_AIF2TX_BCPF_MASK 0x1FFF /* AIF2TX_BCPF - [12:0] */ | ||
3530 | #define ARIZONA_AIF2TX_BCPF_SHIFT 0 /* AIF2TX_BCPF - [12:0] */ | ||
3531 | #define ARIZONA_AIF2TX_BCPF_WIDTH 13 /* AIF2TX_BCPF - [12:0] */ | ||
3532 | |||
3533 | /* | ||
3534 | * R1350 (0x546) - AIF2 Rx BCLK Rate | ||
3535 | */ | ||
3536 | #define ARIZONA_AIF2RX_BCPF_MASK 0x1FFF /* AIF2RX_BCPF - [12:0] */ | ||
3537 | #define ARIZONA_AIF2RX_BCPF_SHIFT 0 /* AIF2RX_BCPF - [12:0] */ | ||
3538 | #define ARIZONA_AIF2RX_BCPF_WIDTH 13 /* AIF2RX_BCPF - [12:0] */ | ||
3539 | |||
3540 | /* | ||
3541 | * R1351 (0x547) - AIF2 Frame Ctrl 1 | ||
3542 | */ | ||
3543 | #define ARIZONA_AIF2TX_WL_MASK 0x3F00 /* AIF2TX_WL - [13:8] */ | ||
3544 | #define ARIZONA_AIF2TX_WL_SHIFT 8 /* AIF2TX_WL - [13:8] */ | ||
3545 | #define ARIZONA_AIF2TX_WL_WIDTH 6 /* AIF2TX_WL - [13:8] */ | ||
3546 | #define ARIZONA_AIF2TX_SLOT_LEN_MASK 0x00FF /* AIF2TX_SLOT_LEN - [7:0] */ | ||
3547 | #define ARIZONA_AIF2TX_SLOT_LEN_SHIFT 0 /* AIF2TX_SLOT_LEN - [7:0] */ | ||
3548 | #define ARIZONA_AIF2TX_SLOT_LEN_WIDTH 8 /* AIF2TX_SLOT_LEN - [7:0] */ | ||
3549 | |||
3550 | /* | ||
3551 | * R1352 (0x548) - AIF2 Frame Ctrl 2 | ||
3552 | */ | ||
3553 | #define ARIZONA_AIF2RX_WL_MASK 0x3F00 /* AIF2RX_WL - [13:8] */ | ||
3554 | #define ARIZONA_AIF2RX_WL_SHIFT 8 /* AIF2RX_WL - [13:8] */ | ||
3555 | #define ARIZONA_AIF2RX_WL_WIDTH 6 /* AIF2RX_WL - [13:8] */ | ||
3556 | #define ARIZONA_AIF2RX_SLOT_LEN_MASK 0x00FF /* AIF2RX_SLOT_LEN - [7:0] */ | ||
3557 | #define ARIZONA_AIF2RX_SLOT_LEN_SHIFT 0 /* AIF2RX_SLOT_LEN - [7:0] */ | ||
3558 | #define ARIZONA_AIF2RX_SLOT_LEN_WIDTH 8 /* AIF2RX_SLOT_LEN - [7:0] */ | ||
3559 | |||
3560 | /* | ||
3561 | * R1353 (0x549) - AIF2 Frame Ctrl 3 | ||
3562 | */ | ||
3563 | #define ARIZONA_AIF2TX1_SLOT_MASK 0x003F /* AIF2TX1_SLOT - [5:0] */ | ||
3564 | #define ARIZONA_AIF2TX1_SLOT_SHIFT 0 /* AIF2TX1_SLOT - [5:0] */ | ||
3565 | #define ARIZONA_AIF2TX1_SLOT_WIDTH 6 /* AIF2TX1_SLOT - [5:0] */ | ||
3566 | |||
3567 | /* | ||
3568 | * R1354 (0x54A) - AIF2 Frame Ctrl 4 | ||
3569 | */ | ||
3570 | #define ARIZONA_AIF2TX2_SLOT_MASK 0x003F /* AIF2TX2_SLOT - [5:0] */ | ||
3571 | #define ARIZONA_AIF2TX2_SLOT_SHIFT 0 /* AIF2TX2_SLOT - [5:0] */ | ||
3572 | #define ARIZONA_AIF2TX2_SLOT_WIDTH 6 /* AIF2TX2_SLOT - [5:0] */ | ||
3573 | |||
3574 | /* | ||
3575 | * R1361 (0x551) - AIF2 Frame Ctrl 11 | ||
3576 | */ | ||
3577 | #define ARIZONA_AIF2RX1_SLOT_MASK 0x003F /* AIF2RX1_SLOT - [5:0] */ | ||
3578 | #define ARIZONA_AIF2RX1_SLOT_SHIFT 0 /* AIF2RX1_SLOT - [5:0] */ | ||
3579 | #define ARIZONA_AIF2RX1_SLOT_WIDTH 6 /* AIF2RX1_SLOT - [5:0] */ | ||
3580 | |||
3581 | /* | ||
3582 | * R1362 (0x552) - AIF2 Frame Ctrl 12 | ||
3583 | */ | ||
3584 | #define ARIZONA_AIF2RX2_SLOT_MASK 0x003F /* AIF2RX2_SLOT - [5:0] */ | ||
3585 | #define ARIZONA_AIF2RX2_SLOT_SHIFT 0 /* AIF2RX2_SLOT - [5:0] */ | ||
3586 | #define ARIZONA_AIF2RX2_SLOT_WIDTH 6 /* AIF2RX2_SLOT - [5:0] */ | ||
3587 | |||
3588 | /* | ||
3589 | * R1369 (0x559) - AIF2 Tx Enables | ||
3590 | */ | ||
3591 | #define ARIZONA_AIF2TX2_ENA 0x0002 /* AIF2TX2_ENA */ | ||
3592 | #define ARIZONA_AIF2TX2_ENA_MASK 0x0002 /* AIF2TX2_ENA */ | ||
3593 | #define ARIZONA_AIF2TX2_ENA_SHIFT 1 /* AIF2TX2_ENA */ | ||
3594 | #define ARIZONA_AIF2TX2_ENA_WIDTH 1 /* AIF2TX2_ENA */ | ||
3595 | #define ARIZONA_AIF2TX1_ENA 0x0001 /* AIF2TX1_ENA */ | ||
3596 | #define ARIZONA_AIF2TX1_ENA_MASK 0x0001 /* AIF2TX1_ENA */ | ||
3597 | #define ARIZONA_AIF2TX1_ENA_SHIFT 0 /* AIF2TX1_ENA */ | ||
3598 | #define ARIZONA_AIF2TX1_ENA_WIDTH 1 /* AIF2TX1_ENA */ | ||
3599 | |||
3600 | /* | ||
3601 | * R1370 (0x55A) - AIF2 Rx Enables | ||
3602 | */ | ||
3603 | #define ARIZONA_AIF2RX2_ENA 0x0002 /* AIF2RX2_ENA */ | ||
3604 | #define ARIZONA_AIF2RX2_ENA_MASK 0x0002 /* AIF2RX2_ENA */ | ||
3605 | #define ARIZONA_AIF2RX2_ENA_SHIFT 1 /* AIF2RX2_ENA */ | ||
3606 | #define ARIZONA_AIF2RX2_ENA_WIDTH 1 /* AIF2RX2_ENA */ | ||
3607 | #define ARIZONA_AIF2RX1_ENA 0x0001 /* AIF2RX1_ENA */ | ||
3608 | #define ARIZONA_AIF2RX1_ENA_MASK 0x0001 /* AIF2RX1_ENA */ | ||
3609 | #define ARIZONA_AIF2RX1_ENA_SHIFT 0 /* AIF2RX1_ENA */ | ||
3610 | #define ARIZONA_AIF2RX1_ENA_WIDTH 1 /* AIF2RX1_ENA */ | ||
3611 | |||
3612 | /* | ||
3613 | * R1371 (0x55B) - AIF2 Force Write | ||
3614 | */ | ||
3615 | #define ARIZONA_AIF2_FRC_WR 0x0001 /* AIF2_FRC_WR */ | ||
3616 | #define ARIZONA_AIF2_FRC_WR_MASK 0x0001 /* AIF2_FRC_WR */ | ||
3617 | #define ARIZONA_AIF2_FRC_WR_SHIFT 0 /* AIF2_FRC_WR */ | ||
3618 | #define ARIZONA_AIF2_FRC_WR_WIDTH 1 /* AIF2_FRC_WR */ | ||
3619 | |||
3620 | /* | ||
3621 | * R1408 (0x580) - AIF3 BCLK Ctrl | ||
3622 | */ | ||
3623 | #define ARIZONA_AIF3_BCLK_INV 0x0080 /* AIF3_BCLK_INV */ | ||
3624 | #define ARIZONA_AIF3_BCLK_INV_MASK 0x0080 /* AIF3_BCLK_INV */ | ||
3625 | #define ARIZONA_AIF3_BCLK_INV_SHIFT 7 /* AIF3_BCLK_INV */ | ||
3626 | #define ARIZONA_AIF3_BCLK_INV_WIDTH 1 /* AIF3_BCLK_INV */ | ||
3627 | #define ARIZONA_AIF3_BCLK_FRC 0x0040 /* AIF3_BCLK_FRC */ | ||
3628 | #define ARIZONA_AIF3_BCLK_FRC_MASK 0x0040 /* AIF3_BCLK_FRC */ | ||
3629 | #define ARIZONA_AIF3_BCLK_FRC_SHIFT 6 /* AIF3_BCLK_FRC */ | ||
3630 | #define ARIZONA_AIF3_BCLK_FRC_WIDTH 1 /* AIF3_BCLK_FRC */ | ||
3631 | #define ARIZONA_AIF3_BCLK_MSTR 0x0020 /* AIF3_BCLK_MSTR */ | ||
3632 | #define ARIZONA_AIF3_BCLK_MSTR_MASK 0x0020 /* AIF3_BCLK_MSTR */ | ||
3633 | #define ARIZONA_AIF3_BCLK_MSTR_SHIFT 5 /* AIF3_BCLK_MSTR */ | ||
3634 | #define ARIZONA_AIF3_BCLK_MSTR_WIDTH 1 /* AIF3_BCLK_MSTR */ | ||
3635 | #define ARIZONA_AIF3_BCLK_FREQ_MASK 0x001F /* AIF3_BCLK_FREQ - [4:0] */ | ||
3636 | #define ARIZONA_AIF3_BCLK_FREQ_SHIFT 0 /* AIF3_BCLK_FREQ - [4:0] */ | ||
3637 | #define ARIZONA_AIF3_BCLK_FREQ_WIDTH 5 /* AIF3_BCLK_FREQ - [4:0] */ | ||
3638 | |||
3639 | /* | ||
3640 | * R1409 (0x581) - AIF3 Tx Pin Ctrl | ||
3641 | */ | ||
3642 | #define ARIZONA_AIF3TX_DAT_TRI 0x0020 /* AIF3TX_DAT_TRI */ | ||
3643 | #define ARIZONA_AIF3TX_DAT_TRI_MASK 0x0020 /* AIF3TX_DAT_TRI */ | ||
3644 | #define ARIZONA_AIF3TX_DAT_TRI_SHIFT 5 /* AIF3TX_DAT_TRI */ | ||
3645 | #define ARIZONA_AIF3TX_DAT_TRI_WIDTH 1 /* AIF3TX_DAT_TRI */ | ||
3646 | #define ARIZONA_AIF3TX_LRCLK_SRC 0x0008 /* AIF3TX_LRCLK_SRC */ | ||
3647 | #define ARIZONA_AIF3TX_LRCLK_SRC_MASK 0x0008 /* AIF3TX_LRCLK_SRC */ | ||
3648 | #define ARIZONA_AIF3TX_LRCLK_SRC_SHIFT 3 /* AIF3TX_LRCLK_SRC */ | ||
3649 | #define ARIZONA_AIF3TX_LRCLK_SRC_WIDTH 1 /* AIF3TX_LRCLK_SRC */ | ||
3650 | #define ARIZONA_AIF3TX_LRCLK_INV 0x0004 /* AIF3TX_LRCLK_INV */ | ||
3651 | #define ARIZONA_AIF3TX_LRCLK_INV_MASK 0x0004 /* AIF3TX_LRCLK_INV */ | ||
3652 | #define ARIZONA_AIF3TX_LRCLK_INV_SHIFT 2 /* AIF3TX_LRCLK_INV */ | ||
3653 | #define ARIZONA_AIF3TX_LRCLK_INV_WIDTH 1 /* AIF3TX_LRCLK_INV */ | ||
3654 | #define ARIZONA_AIF3TX_LRCLK_FRC 0x0002 /* AIF3TX_LRCLK_FRC */ | ||
3655 | #define ARIZONA_AIF3TX_LRCLK_FRC_MASK 0x0002 /* AIF3TX_LRCLK_FRC */ | ||
3656 | #define ARIZONA_AIF3TX_LRCLK_FRC_SHIFT 1 /* AIF3TX_LRCLK_FRC */ | ||
3657 | #define ARIZONA_AIF3TX_LRCLK_FRC_WIDTH 1 /* AIF3TX_LRCLK_FRC */ | ||
3658 | #define ARIZONA_AIF3TX_LRCLK_MSTR 0x0001 /* AIF3TX_LRCLK_MSTR */ | ||
3659 | #define ARIZONA_AIF3TX_LRCLK_MSTR_MASK 0x0001 /* AIF3TX_LRCLK_MSTR */ | ||
3660 | #define ARIZONA_AIF3TX_LRCLK_MSTR_SHIFT 0 /* AIF3TX_LRCLK_MSTR */ | ||
3661 | #define ARIZONA_AIF3TX_LRCLK_MSTR_WIDTH 1 /* AIF3TX_LRCLK_MSTR */ | ||
3662 | |||
3663 | /* | ||
3664 | * R1410 (0x582) - AIF3 Rx Pin Ctrl | ||
3665 | */ | ||
3666 | #define ARIZONA_AIF3RX_LRCLK_INV 0x0004 /* AIF3RX_LRCLK_INV */ | ||
3667 | #define ARIZONA_AIF3RX_LRCLK_INV_MASK 0x0004 /* AIF3RX_LRCLK_INV */ | ||
3668 | #define ARIZONA_AIF3RX_LRCLK_INV_SHIFT 2 /* AIF3RX_LRCLK_INV */ | ||
3669 | #define ARIZONA_AIF3RX_LRCLK_INV_WIDTH 1 /* AIF3RX_LRCLK_INV */ | ||
3670 | #define ARIZONA_AIF3RX_LRCLK_FRC 0x0002 /* AIF3RX_LRCLK_FRC */ | ||
3671 | #define ARIZONA_AIF3RX_LRCLK_FRC_MASK 0x0002 /* AIF3RX_LRCLK_FRC */ | ||
3672 | #define ARIZONA_AIF3RX_LRCLK_FRC_SHIFT 1 /* AIF3RX_LRCLK_FRC */ | ||
3673 | #define ARIZONA_AIF3RX_LRCLK_FRC_WIDTH 1 /* AIF3RX_LRCLK_FRC */ | ||
3674 | #define ARIZONA_AIF3RX_LRCLK_MSTR 0x0001 /* AIF3RX_LRCLK_MSTR */ | ||
3675 | #define ARIZONA_AIF3RX_LRCLK_MSTR_MASK 0x0001 /* AIF3RX_LRCLK_MSTR */ | ||
3676 | #define ARIZONA_AIF3RX_LRCLK_MSTR_SHIFT 0 /* AIF3RX_LRCLK_MSTR */ | ||
3677 | #define ARIZONA_AIF3RX_LRCLK_MSTR_WIDTH 1 /* AIF3RX_LRCLK_MSTR */ | ||
3678 | |||
3679 | /* | ||
3680 | * R1411 (0x583) - AIF3 Rate Ctrl | ||
3681 | */ | ||
3682 | #define ARIZONA_AIF3_RATE_MASK 0x7800 /* AIF3_RATE - [14:11] */ | ||
3683 | #define ARIZONA_AIF3_RATE_SHIFT 11 /* AIF3_RATE - [14:11] */ | ||
3684 | #define ARIZONA_AIF3_RATE_WIDTH 4 /* AIF3_RATE - [14:11] */ | ||
3685 | #define ARIZONA_AIF3_TRI 0x0040 /* AIF3_TRI */ | ||
3686 | #define ARIZONA_AIF3_TRI_MASK 0x0040 /* AIF3_TRI */ | ||
3687 | #define ARIZONA_AIF3_TRI_SHIFT 6 /* AIF3_TRI */ | ||
3688 | #define ARIZONA_AIF3_TRI_WIDTH 1 /* AIF3_TRI */ | ||
3689 | |||
3690 | /* | ||
3691 | * R1412 (0x584) - AIF3 Format | ||
3692 | */ | ||
3693 | #define ARIZONA_AIF3_FMT_MASK 0x0007 /* AIF3_FMT - [2:0] */ | ||
3694 | #define ARIZONA_AIF3_FMT_SHIFT 0 /* AIF3_FMT - [2:0] */ | ||
3695 | #define ARIZONA_AIF3_FMT_WIDTH 3 /* AIF3_FMT - [2:0] */ | ||
3696 | |||
3697 | /* | ||
3698 | * R1413 (0x585) - AIF3 Tx BCLK Rate | ||
3699 | */ | ||
3700 | #define ARIZONA_AIF3TX_BCPF_MASK 0x1FFF /* AIF3TX_BCPF - [12:0] */ | ||
3701 | #define ARIZONA_AIF3TX_BCPF_SHIFT 0 /* AIF3TX_BCPF - [12:0] */ | ||
3702 | #define ARIZONA_AIF3TX_BCPF_WIDTH 13 /* AIF3TX_BCPF - [12:0] */ | ||
3703 | |||
3704 | /* | ||
3705 | * R1414 (0x586) - AIF3 Rx BCLK Rate | ||
3706 | */ | ||
3707 | #define ARIZONA_AIF3RX_BCPF_MASK 0x1FFF /* AIF3RX_BCPF - [12:0] */ | ||
3708 | #define ARIZONA_AIF3RX_BCPF_SHIFT 0 /* AIF3RX_BCPF - [12:0] */ | ||
3709 | #define ARIZONA_AIF3RX_BCPF_WIDTH 13 /* AIF3RX_BCPF - [12:0] */ | ||
3710 | |||
3711 | /* | ||
3712 | * R1415 (0x587) - AIF3 Frame Ctrl 1 | ||
3713 | */ | ||
3714 | #define ARIZONA_AIF3TX_WL_MASK 0x3F00 /* AIF3TX_WL - [13:8] */ | ||
3715 | #define ARIZONA_AIF3TX_WL_SHIFT 8 /* AIF3TX_WL - [13:8] */ | ||
3716 | #define ARIZONA_AIF3TX_WL_WIDTH 6 /* AIF3TX_WL - [13:8] */ | ||
3717 | #define ARIZONA_AIF3TX_SLOT_LEN_MASK 0x00FF /* AIF3TX_SLOT_LEN - [7:0] */ | ||
3718 | #define ARIZONA_AIF3TX_SLOT_LEN_SHIFT 0 /* AIF3TX_SLOT_LEN - [7:0] */ | ||
3719 | #define ARIZONA_AIF3TX_SLOT_LEN_WIDTH 8 /* AIF3TX_SLOT_LEN - [7:0] */ | ||
3720 | |||
3721 | /* | ||
3722 | * R1416 (0x588) - AIF3 Frame Ctrl 2 | ||
3723 | */ | ||
3724 | #define ARIZONA_AIF3RX_WL_MASK 0x3F00 /* AIF3RX_WL - [13:8] */ | ||
3725 | #define ARIZONA_AIF3RX_WL_SHIFT 8 /* AIF3RX_WL - [13:8] */ | ||
3726 | #define ARIZONA_AIF3RX_WL_WIDTH 6 /* AIF3RX_WL - [13:8] */ | ||
3727 | #define ARIZONA_AIF3RX_SLOT_LEN_MASK 0x00FF /* AIF3RX_SLOT_LEN - [7:0] */ | ||
3728 | #define ARIZONA_AIF3RX_SLOT_LEN_SHIFT 0 /* AIF3RX_SLOT_LEN - [7:0] */ | ||
3729 | #define ARIZONA_AIF3RX_SLOT_LEN_WIDTH 8 /* AIF3RX_SLOT_LEN - [7:0] */ | ||
3730 | |||
3731 | /* | ||
3732 | * R1417 (0x589) - AIF3 Frame Ctrl 3 | ||
3733 | */ | ||
3734 | #define ARIZONA_AIF3TX1_SLOT_MASK 0x003F /* AIF3TX1_SLOT - [5:0] */ | ||
3735 | #define ARIZONA_AIF3TX1_SLOT_SHIFT 0 /* AIF3TX1_SLOT - [5:0] */ | ||
3736 | #define ARIZONA_AIF3TX1_SLOT_WIDTH 6 /* AIF3TX1_SLOT - [5:0] */ | ||
3737 | |||
3738 | /* | ||
3739 | * R1418 (0x58A) - AIF3 Frame Ctrl 4 | ||
3740 | */ | ||
3741 | #define ARIZONA_AIF3TX2_SLOT_MASK 0x003F /* AIF3TX2_SLOT - [5:0] */ | ||
3742 | #define ARIZONA_AIF3TX2_SLOT_SHIFT 0 /* AIF3TX2_SLOT - [5:0] */ | ||
3743 | #define ARIZONA_AIF3TX2_SLOT_WIDTH 6 /* AIF3TX2_SLOT - [5:0] */ | ||
3744 | |||
3745 | /* | ||
3746 | * R1425 (0x591) - AIF3 Frame Ctrl 11 | ||
3747 | */ | ||
3748 | #define ARIZONA_AIF3RX1_SLOT_MASK 0x003F /* AIF3RX1_SLOT - [5:0] */ | ||
3749 | #define ARIZONA_AIF3RX1_SLOT_SHIFT 0 /* AIF3RX1_SLOT - [5:0] */ | ||
3750 | #define ARIZONA_AIF3RX1_SLOT_WIDTH 6 /* AIF3RX1_SLOT - [5:0] */ | ||
3751 | |||
3752 | /* | ||
3753 | * R1426 (0x592) - AIF3 Frame Ctrl 12 | ||
3754 | */ | ||
3755 | #define ARIZONA_AIF3RX2_SLOT_MASK 0x003F /* AIF3RX2_SLOT - [5:0] */ | ||
3756 | #define ARIZONA_AIF3RX2_SLOT_SHIFT 0 /* AIF3RX2_SLOT - [5:0] */ | ||
3757 | #define ARIZONA_AIF3RX2_SLOT_WIDTH 6 /* AIF3RX2_SLOT - [5:0] */ | ||
3758 | |||
3759 | /* | ||
3760 | * R1433 (0x599) - AIF3 Tx Enables | ||
3761 | */ | ||
3762 | #define ARIZONA_AIF3TX2_ENA 0x0002 /* AIF3TX2_ENA */ | ||
3763 | #define ARIZONA_AIF3TX2_ENA_MASK 0x0002 /* AIF3TX2_ENA */ | ||
3764 | #define ARIZONA_AIF3TX2_ENA_SHIFT 1 /* AIF3TX2_ENA */ | ||
3765 | #define ARIZONA_AIF3TX2_ENA_WIDTH 1 /* AIF3TX2_ENA */ | ||
3766 | #define ARIZONA_AIF3TX1_ENA 0x0001 /* AIF3TX1_ENA */ | ||
3767 | #define ARIZONA_AIF3TX1_ENA_MASK 0x0001 /* AIF3TX1_ENA */ | ||
3768 | #define ARIZONA_AIF3TX1_ENA_SHIFT 0 /* AIF3TX1_ENA */ | ||
3769 | #define ARIZONA_AIF3TX1_ENA_WIDTH 1 /* AIF3TX1_ENA */ | ||
3770 | |||
3771 | /* | ||
3772 | * R1434 (0x59A) - AIF3 Rx Enables | ||
3773 | */ | ||
3774 | #define ARIZONA_AIF3RX2_ENA 0x0002 /* AIF3RX2_ENA */ | ||
3775 | #define ARIZONA_AIF3RX2_ENA_MASK 0x0002 /* AIF3RX2_ENA */ | ||
3776 | #define ARIZONA_AIF3RX2_ENA_SHIFT 1 /* AIF3RX2_ENA */ | ||
3777 | #define ARIZONA_AIF3RX2_ENA_WIDTH 1 /* AIF3RX2_ENA */ | ||
3778 | #define ARIZONA_AIF3RX1_ENA 0x0001 /* AIF3RX1_ENA */ | ||
3779 | #define ARIZONA_AIF3RX1_ENA_MASK 0x0001 /* AIF3RX1_ENA */ | ||
3780 | #define ARIZONA_AIF3RX1_ENA_SHIFT 0 /* AIF3RX1_ENA */ | ||
3781 | #define ARIZONA_AIF3RX1_ENA_WIDTH 1 /* AIF3RX1_ENA */ | ||
3782 | |||
3783 | /* | ||
3784 | * R1435 (0x59B) - AIF3 Force Write | ||
3785 | */ | ||
3786 | #define ARIZONA_AIF3_FRC_WR 0x0001 /* AIF3_FRC_WR */ | ||
3787 | #define ARIZONA_AIF3_FRC_WR_MASK 0x0001 /* AIF3_FRC_WR */ | ||
3788 | #define ARIZONA_AIF3_FRC_WR_SHIFT 0 /* AIF3_FRC_WR */ | ||
3789 | #define ARIZONA_AIF3_FRC_WR_WIDTH 1 /* AIF3_FRC_WR */ | ||
3790 | |||
3791 | /* | ||
3792 | * R1507 (0x5E3) - SLIMbus Framer Ref Gear | ||
3793 | */ | ||
3794 | #define ARIZONA_SLIMCLK_SRC 0x0010 /* SLIMCLK_SRC */ | ||
3795 | #define ARIZONA_SLIMCLK_SRC_MASK 0x0010 /* SLIMCLK_SRC */ | ||
3796 | #define ARIZONA_SLIMCLK_SRC_SHIFT 4 /* SLIMCLK_SRC */ | ||
3797 | #define ARIZONA_SLIMCLK_SRC_WIDTH 1 /* SLIMCLK_SRC */ | ||
3798 | #define ARIZONA_FRAMER_REF_GEAR_MASK 0x000F /* FRAMER_REF_GEAR - [3:0] */ | ||
3799 | #define ARIZONA_FRAMER_REF_GEAR_SHIFT 0 /* FRAMER_REF_GEAR - [3:0] */ | ||
3800 | #define ARIZONA_FRAMER_REF_GEAR_WIDTH 4 /* FRAMER_REF_GEAR - [3:0] */ | ||
3801 | |||
3802 | /* | ||
3803 | * R1509 (0x5E5) - SLIMbus Rates 1 | ||
3804 | */ | ||
3805 | #define ARIZONA_SLIMRX2_RATE_MASK 0x7800 /* SLIMRX2_RATE - [14:11] */ | ||
3806 | #define ARIZONA_SLIMRX2_RATE_SHIFT 11 /* SLIMRX2_RATE - [14:11] */ | ||
3807 | #define ARIZONA_SLIMRX2_RATE_WIDTH 4 /* SLIMRX2_RATE - [14:11] */ | ||
3808 | #define ARIZONA_SLIMRX1_RATE_MASK 0x0078 /* SLIMRX1_RATE - [6:3] */ | ||
3809 | #define ARIZONA_SLIMRX1_RATE_SHIFT 3 /* SLIMRX1_RATE - [6:3] */ | ||
3810 | #define ARIZONA_SLIMRX1_RATE_WIDTH 4 /* SLIMRX1_RATE - [6:3] */ | ||
3811 | |||
3812 | /* | ||
3813 | * R1510 (0x5E6) - SLIMbus Rates 2 | ||
3814 | */ | ||
3815 | #define ARIZONA_SLIMRX4_RATE_MASK 0x7800 /* SLIMRX4_RATE - [14:11] */ | ||
3816 | #define ARIZONA_SLIMRX4_RATE_SHIFT 11 /* SLIMRX4_RATE - [14:11] */ | ||
3817 | #define ARIZONA_SLIMRX4_RATE_WIDTH 4 /* SLIMRX4_RATE - [14:11] */ | ||
3818 | #define ARIZONA_SLIMRX3_RATE_MASK 0x0078 /* SLIMRX3_RATE - [6:3] */ | ||
3819 | #define ARIZONA_SLIMRX3_RATE_SHIFT 3 /* SLIMRX3_RATE - [6:3] */ | ||
3820 | #define ARIZONA_SLIMRX3_RATE_WIDTH 4 /* SLIMRX3_RATE - [6:3] */ | ||
3821 | |||
3822 | /* | ||
3823 | * R1511 (0x5E7) - SLIMbus Rates 3 | ||
3824 | */ | ||
3825 | #define ARIZONA_SLIMRX6_RATE_MASK 0x7800 /* SLIMRX6_RATE - [14:11] */ | ||
3826 | #define ARIZONA_SLIMRX6_RATE_SHIFT 11 /* SLIMRX6_RATE - [14:11] */ | ||
3827 | #define ARIZONA_SLIMRX6_RATE_WIDTH 4 /* SLIMRX6_RATE - [14:11] */ | ||
3828 | #define ARIZONA_SLIMRX5_RATE_MASK 0x0078 /* SLIMRX5_RATE - [6:3] */ | ||
3829 | #define ARIZONA_SLIMRX5_RATE_SHIFT 3 /* SLIMRX5_RATE - [6:3] */ | ||
3830 | #define ARIZONA_SLIMRX5_RATE_WIDTH 4 /* SLIMRX5_RATE - [6:3] */ | ||
3831 | |||
3832 | /* | ||
3833 | * R1512 (0x5E8) - SLIMbus Rates 4 | ||
3834 | */ | ||
3835 | #define ARIZONA_SLIMRX8_RATE_MASK 0x7800 /* SLIMRX8_RATE - [14:11] */ | ||
3836 | #define ARIZONA_SLIMRX8_RATE_SHIFT 11 /* SLIMRX8_RATE - [14:11] */ | ||
3837 | #define ARIZONA_SLIMRX8_RATE_WIDTH 4 /* SLIMRX8_RATE - [14:11] */ | ||
3838 | #define ARIZONA_SLIMRX7_RATE_MASK 0x0078 /* SLIMRX7_RATE - [6:3] */ | ||
3839 | #define ARIZONA_SLIMRX7_RATE_SHIFT 3 /* SLIMRX7_RATE - [6:3] */ | ||
3840 | #define ARIZONA_SLIMRX7_RATE_WIDTH 4 /* SLIMRX7_RATE - [6:3] */ | ||
3841 | |||
3842 | /* | ||
3843 | * R1513 (0x5E9) - SLIMbus Rates 5 | ||
3844 | */ | ||
3845 | #define ARIZONA_SLIMTX2_RATE_MASK 0x7800 /* SLIMTX2_RATE - [14:11] */ | ||
3846 | #define ARIZONA_SLIMTX2_RATE_SHIFT 11 /* SLIMTX2_RATE - [14:11] */ | ||
3847 | #define ARIZONA_SLIMTX2_RATE_WIDTH 4 /* SLIMTX2_RATE - [14:11] */ | ||
3848 | #define ARIZONA_SLIMTX1_RATE_MASK 0x0078 /* SLIMTX1_RATE - [6:3] */ | ||
3849 | #define ARIZONA_SLIMTX1_RATE_SHIFT 3 /* SLIMTX1_RATE - [6:3] */ | ||
3850 | #define ARIZONA_SLIMTX1_RATE_WIDTH 4 /* SLIMTX1_RATE - [6:3] */ | ||
3851 | |||
3852 | /* | ||
3853 | * R1514 (0x5EA) - SLIMbus Rates 6 | ||
3854 | */ | ||
3855 | #define ARIZONA_SLIMTX4_RATE_MASK 0x7800 /* SLIMTX4_RATE - [14:11] */ | ||
3856 | #define ARIZONA_SLIMTX4_RATE_SHIFT 11 /* SLIMTX4_RATE - [14:11] */ | ||
3857 | #define ARIZONA_SLIMTX4_RATE_WIDTH 4 /* SLIMTX4_RATE - [14:11] */ | ||
3858 | #define ARIZONA_SLIMTX3_RATE_MASK 0x0078 /* SLIMTX3_RATE - [6:3] */ | ||
3859 | #define ARIZONA_SLIMTX3_RATE_SHIFT 3 /* SLIMTX3_RATE - [6:3] */ | ||
3860 | #define ARIZONA_SLIMTX3_RATE_WIDTH 4 /* SLIMTX3_RATE - [6:3] */ | ||
3861 | |||
3862 | /* | ||
3863 | * R1515 (0x5EB) - SLIMbus Rates 7 | ||
3864 | */ | ||
3865 | #define ARIZONA_SLIMTX6_RATE_MASK 0x7800 /* SLIMTX6_RATE - [14:11] */ | ||
3866 | #define ARIZONA_SLIMTX6_RATE_SHIFT 11 /* SLIMTX6_RATE - [14:11] */ | ||
3867 | #define ARIZONA_SLIMTX6_RATE_WIDTH 4 /* SLIMTX6_RATE - [14:11] */ | ||
3868 | #define ARIZONA_SLIMTX5_RATE_MASK 0x0078 /* SLIMTX5_RATE - [6:3] */ | ||
3869 | #define ARIZONA_SLIMTX5_RATE_SHIFT 3 /* SLIMTX5_RATE - [6:3] */ | ||
3870 | #define ARIZONA_SLIMTX5_RATE_WIDTH 4 /* SLIMTX5_RATE - [6:3] */ | ||
3871 | |||
3872 | /* | ||
3873 | * R1516 (0x5EC) - SLIMbus Rates 8 | ||
3874 | */ | ||
3875 | #define ARIZONA_SLIMTX8_RATE_MASK 0x7800 /* SLIMTX8_RATE - [14:11] */ | ||
3876 | #define ARIZONA_SLIMTX8_RATE_SHIFT 11 /* SLIMTX8_RATE - [14:11] */ | ||
3877 | #define ARIZONA_SLIMTX8_RATE_WIDTH 4 /* SLIMTX8_RATE - [14:11] */ | ||
3878 | #define ARIZONA_SLIMTX7_RATE_MASK 0x0078 /* SLIMTX7_RATE - [6:3] */ | ||
3879 | #define ARIZONA_SLIMTX7_RATE_SHIFT 3 /* SLIMTX7_RATE - [6:3] */ | ||
3880 | #define ARIZONA_SLIMTX7_RATE_WIDTH 4 /* SLIMTX7_RATE - [6:3] */ | ||
3881 | |||
3882 | /* | ||
3883 | * R1525 (0x5F5) - SLIMbus RX Channel Enable | ||
3884 | */ | ||
3885 | #define ARIZONA_SLIMRX8_ENA 0x0080 /* SLIMRX8_ENA */ | ||
3886 | #define ARIZONA_SLIMRX8_ENA_MASK 0x0080 /* SLIMRX8_ENA */ | ||
3887 | #define ARIZONA_SLIMRX8_ENA_SHIFT 7 /* SLIMRX8_ENA */ | ||
3888 | #define ARIZONA_SLIMRX8_ENA_WIDTH 1 /* SLIMRX8_ENA */ | ||
3889 | #define ARIZONA_SLIMRX7_ENA 0x0040 /* SLIMRX7_ENA */ | ||
3890 | #define ARIZONA_SLIMRX7_ENA_MASK 0x0040 /* SLIMRX7_ENA */ | ||
3891 | #define ARIZONA_SLIMRX7_ENA_SHIFT 6 /* SLIMRX7_ENA */ | ||
3892 | #define ARIZONA_SLIMRX7_ENA_WIDTH 1 /* SLIMRX7_ENA */ | ||
3893 | #define ARIZONA_SLIMRX6_ENA 0x0020 /* SLIMRX6_ENA */ | ||
3894 | #define ARIZONA_SLIMRX6_ENA_MASK 0x0020 /* SLIMRX6_ENA */ | ||
3895 | #define ARIZONA_SLIMRX6_ENA_SHIFT 5 /* SLIMRX6_ENA */ | ||
3896 | #define ARIZONA_SLIMRX6_ENA_WIDTH 1 /* SLIMRX6_ENA */ | ||
3897 | #define ARIZONA_SLIMRX5_ENA 0x0010 /* SLIMRX5_ENA */ | ||
3898 | #define ARIZONA_SLIMRX5_ENA_MASK 0x0010 /* SLIMRX5_ENA */ | ||
3899 | #define ARIZONA_SLIMRX5_ENA_SHIFT 4 /* SLIMRX5_ENA */ | ||
3900 | #define ARIZONA_SLIMRX5_ENA_WIDTH 1 /* SLIMRX5_ENA */ | ||
3901 | #define ARIZONA_SLIMRX4_ENA 0x0008 /* SLIMRX4_ENA */ | ||
3902 | #define ARIZONA_SLIMRX4_ENA_MASK 0x0008 /* SLIMRX4_ENA */ | ||
3903 | #define ARIZONA_SLIMRX4_ENA_SHIFT 3 /* SLIMRX4_ENA */ | ||
3904 | #define ARIZONA_SLIMRX4_ENA_WIDTH 1 /* SLIMRX4_ENA */ | ||
3905 | #define ARIZONA_SLIMRX3_ENA 0x0004 /* SLIMRX3_ENA */ | ||
3906 | #define ARIZONA_SLIMRX3_ENA_MASK 0x0004 /* SLIMRX3_ENA */ | ||
3907 | #define ARIZONA_SLIMRX3_ENA_SHIFT 2 /* SLIMRX3_ENA */ | ||
3908 | #define ARIZONA_SLIMRX3_ENA_WIDTH 1 /* SLIMRX3_ENA */ | ||
3909 | #define ARIZONA_SLIMRX2_ENA 0x0002 /* SLIMRX2_ENA */ | ||
3910 | #define ARIZONA_SLIMRX2_ENA_MASK 0x0002 /* SLIMRX2_ENA */ | ||
3911 | #define ARIZONA_SLIMRX2_ENA_SHIFT 1 /* SLIMRX2_ENA */ | ||
3912 | #define ARIZONA_SLIMRX2_ENA_WIDTH 1 /* SLIMRX2_ENA */ | ||
3913 | #define ARIZONA_SLIMRX1_ENA 0x0001 /* SLIMRX1_ENA */ | ||
3914 | #define ARIZONA_SLIMRX1_ENA_MASK 0x0001 /* SLIMRX1_ENA */ | ||
3915 | #define ARIZONA_SLIMRX1_ENA_SHIFT 0 /* SLIMRX1_ENA */ | ||
3916 | #define ARIZONA_SLIMRX1_ENA_WIDTH 1 /* SLIMRX1_ENA */ | ||
3917 | |||
3918 | /* | ||
3919 | * R1526 (0x5F6) - SLIMbus TX Channel Enable | ||
3920 | */ | ||
3921 | #define ARIZONA_SLIMTX8_ENA 0x0080 /* SLIMTX8_ENA */ | ||
3922 | #define ARIZONA_SLIMTX8_ENA_MASK 0x0080 /* SLIMTX8_ENA */ | ||
3923 | #define ARIZONA_SLIMTX8_ENA_SHIFT 7 /* SLIMTX8_ENA */ | ||
3924 | #define ARIZONA_SLIMTX8_ENA_WIDTH 1 /* SLIMTX8_ENA */ | ||
3925 | #define ARIZONA_SLIMTX7_ENA 0x0040 /* SLIMTX7_ENA */ | ||
3926 | #define ARIZONA_SLIMTX7_ENA_MASK 0x0040 /* SLIMTX7_ENA */ | ||
3927 | #define ARIZONA_SLIMTX7_ENA_SHIFT 6 /* SLIMTX7_ENA */ | ||
3928 | #define ARIZONA_SLIMTX7_ENA_WIDTH 1 /* SLIMTX7_ENA */ | ||
3929 | #define ARIZONA_SLIMTX6_ENA 0x0020 /* SLIMTX6_ENA */ | ||
3930 | #define ARIZONA_SLIMTX6_ENA_MASK 0x0020 /* SLIMTX6_ENA */ | ||
3931 | #define ARIZONA_SLIMTX6_ENA_SHIFT 5 /* SLIMTX6_ENA */ | ||
3932 | #define ARIZONA_SLIMTX6_ENA_WIDTH 1 /* SLIMTX6_ENA */ | ||
3933 | #define ARIZONA_SLIMTX5_ENA 0x0010 /* SLIMTX5_ENA */ | ||
3934 | #define ARIZONA_SLIMTX5_ENA_MASK 0x0010 /* SLIMTX5_ENA */ | ||
3935 | #define ARIZONA_SLIMTX5_ENA_SHIFT 4 /* SLIMTX5_ENA */ | ||
3936 | #define ARIZONA_SLIMTX5_ENA_WIDTH 1 /* SLIMTX5_ENA */ | ||
3937 | #define ARIZONA_SLIMTX4_ENA 0x0008 /* SLIMTX4_ENA */ | ||
3938 | #define ARIZONA_SLIMTX4_ENA_MASK 0x0008 /* SLIMTX4_ENA */ | ||
3939 | #define ARIZONA_SLIMTX4_ENA_SHIFT 3 /* SLIMTX4_ENA */ | ||
3940 | #define ARIZONA_SLIMTX4_ENA_WIDTH 1 /* SLIMTX4_ENA */ | ||
3941 | #define ARIZONA_SLIMTX3_ENA 0x0004 /* SLIMTX3_ENA */ | ||
3942 | #define ARIZONA_SLIMTX3_ENA_MASK 0x0004 /* SLIMTX3_ENA */ | ||
3943 | #define ARIZONA_SLIMTX3_ENA_SHIFT 2 /* SLIMTX3_ENA */ | ||
3944 | #define ARIZONA_SLIMTX3_ENA_WIDTH 1 /* SLIMTX3_ENA */ | ||
3945 | #define ARIZONA_SLIMTX2_ENA 0x0002 /* SLIMTX2_ENA */ | ||
3946 | #define ARIZONA_SLIMTX2_ENA_MASK 0x0002 /* SLIMTX2_ENA */ | ||
3947 | #define ARIZONA_SLIMTX2_ENA_SHIFT 1 /* SLIMTX2_ENA */ | ||
3948 | #define ARIZONA_SLIMTX2_ENA_WIDTH 1 /* SLIMTX2_ENA */ | ||
3949 | #define ARIZONA_SLIMTX1_ENA 0x0001 /* SLIMTX1_ENA */ | ||
3950 | #define ARIZONA_SLIMTX1_ENA_MASK 0x0001 /* SLIMTX1_ENA */ | ||
3951 | #define ARIZONA_SLIMTX1_ENA_SHIFT 0 /* SLIMTX1_ENA */ | ||
3952 | #define ARIZONA_SLIMTX1_ENA_WIDTH 1 /* SLIMTX1_ENA */ | ||
3953 | |||
3954 | /* | ||
3955 | * R1527 (0x5F7) - SLIMbus RX Port Status | ||
3956 | */ | ||
3957 | #define ARIZONA_SLIMRX8_PORT_STS 0x0080 /* SLIMRX8_PORT_STS */ | ||
3958 | #define ARIZONA_SLIMRX8_PORT_STS_MASK 0x0080 /* SLIMRX8_PORT_STS */ | ||
3959 | #define ARIZONA_SLIMRX8_PORT_STS_SHIFT 7 /* SLIMRX8_PORT_STS */ | ||
3960 | #define ARIZONA_SLIMRX8_PORT_STS_WIDTH 1 /* SLIMRX8_PORT_STS */ | ||
3961 | #define ARIZONA_SLIMRX7_PORT_STS 0x0040 /* SLIMRX7_PORT_STS */ | ||
3962 | #define ARIZONA_SLIMRX7_PORT_STS_MASK 0x0040 /* SLIMRX7_PORT_STS */ | ||
3963 | #define ARIZONA_SLIMRX7_PORT_STS_SHIFT 6 /* SLIMRX7_PORT_STS */ | ||
3964 | #define ARIZONA_SLIMRX7_PORT_STS_WIDTH 1 /* SLIMRX7_PORT_STS */ | ||
3965 | #define ARIZONA_SLIMRX6_PORT_STS 0x0020 /* SLIMRX6_PORT_STS */ | ||
3966 | #define ARIZONA_SLIMRX6_PORT_STS_MASK 0x0020 /* SLIMRX6_PORT_STS */ | ||
3967 | #define ARIZONA_SLIMRX6_PORT_STS_SHIFT 5 /* SLIMRX6_PORT_STS */ | ||
3968 | #define ARIZONA_SLIMRX6_PORT_STS_WIDTH 1 /* SLIMRX6_PORT_STS */ | ||
3969 | #define ARIZONA_SLIMRX5_PORT_STS 0x0010 /* SLIMRX5_PORT_STS */ | ||
3970 | #define ARIZONA_SLIMRX5_PORT_STS_MASK 0x0010 /* SLIMRX5_PORT_STS */ | ||
3971 | #define ARIZONA_SLIMRX5_PORT_STS_SHIFT 4 /* SLIMRX5_PORT_STS */ | ||
3972 | #define ARIZONA_SLIMRX5_PORT_STS_WIDTH 1 /* SLIMRX5_PORT_STS */ | ||
3973 | #define ARIZONA_SLIMRX4_PORT_STS 0x0008 /* SLIMRX4_PORT_STS */ | ||
3974 | #define ARIZONA_SLIMRX4_PORT_STS_MASK 0x0008 /* SLIMRX4_PORT_STS */ | ||
3975 | #define ARIZONA_SLIMRX4_PORT_STS_SHIFT 3 /* SLIMRX4_PORT_STS */ | ||
3976 | #define ARIZONA_SLIMRX4_PORT_STS_WIDTH 1 /* SLIMRX4_PORT_STS */ | ||
3977 | #define ARIZONA_SLIMRX3_PORT_STS 0x0004 /* SLIMRX3_PORT_STS */ | ||
3978 | #define ARIZONA_SLIMRX3_PORT_STS_MASK 0x0004 /* SLIMRX3_PORT_STS */ | ||
3979 | #define ARIZONA_SLIMRX3_PORT_STS_SHIFT 2 /* SLIMRX3_PORT_STS */ | ||
3980 | #define ARIZONA_SLIMRX3_PORT_STS_WIDTH 1 /* SLIMRX3_PORT_STS */ | ||
3981 | #define ARIZONA_SLIMRX2_PORT_STS 0x0002 /* SLIMRX2_PORT_STS */ | ||
3982 | #define ARIZONA_SLIMRX2_PORT_STS_MASK 0x0002 /* SLIMRX2_PORT_STS */ | ||
3983 | #define ARIZONA_SLIMRX2_PORT_STS_SHIFT 1 /* SLIMRX2_PORT_STS */ | ||
3984 | #define ARIZONA_SLIMRX2_PORT_STS_WIDTH 1 /* SLIMRX2_PORT_STS */ | ||
3985 | #define ARIZONA_SLIMRX1_PORT_STS 0x0001 /* SLIMRX1_PORT_STS */ | ||
3986 | #define ARIZONA_SLIMRX1_PORT_STS_MASK 0x0001 /* SLIMRX1_PORT_STS */ | ||
3987 | #define ARIZONA_SLIMRX1_PORT_STS_SHIFT 0 /* SLIMRX1_PORT_STS */ | ||
3988 | #define ARIZONA_SLIMRX1_PORT_STS_WIDTH 1 /* SLIMRX1_PORT_STS */ | ||
3989 | |||
3990 | /* | ||
3991 | * R1528 (0x5F8) - SLIMbus TX Port Status | ||
3992 | */ | ||
3993 | #define ARIZONA_SLIMTX8_PORT_STS 0x0080 /* SLIMTX8_PORT_STS */ | ||
3994 | #define ARIZONA_SLIMTX8_PORT_STS_MASK 0x0080 /* SLIMTX8_PORT_STS */ | ||
3995 | #define ARIZONA_SLIMTX8_PORT_STS_SHIFT 7 /* SLIMTX8_PORT_STS */ | ||
3996 | #define ARIZONA_SLIMTX8_PORT_STS_WIDTH 1 /* SLIMTX8_PORT_STS */ | ||
3997 | #define ARIZONA_SLIMTX7_PORT_STS 0x0040 /* SLIMTX7_PORT_STS */ | ||
3998 | #define ARIZONA_SLIMTX7_PORT_STS_MASK 0x0040 /* SLIMTX7_PORT_STS */ | ||
3999 | #define ARIZONA_SLIMTX7_PORT_STS_SHIFT 6 /* SLIMTX7_PORT_STS */ | ||
4000 | #define ARIZONA_SLIMTX7_PORT_STS_WIDTH 1 /* SLIMTX7_PORT_STS */ | ||
4001 | #define ARIZONA_SLIMTX6_PORT_STS 0x0020 /* SLIMTX6_PORT_STS */ | ||
4002 | #define ARIZONA_SLIMTX6_PORT_STS_MASK 0x0020 /* SLIMTX6_PORT_STS */ | ||
4003 | #define ARIZONA_SLIMTX6_PORT_STS_SHIFT 5 /* SLIMTX6_PORT_STS */ | ||
4004 | #define ARIZONA_SLIMTX6_PORT_STS_WIDTH 1 /* SLIMTX6_PORT_STS */ | ||
4005 | #define ARIZONA_SLIMTX5_PORT_STS 0x0010 /* SLIMTX5_PORT_STS */ | ||
4006 | #define ARIZONA_SLIMTX5_PORT_STS_MASK 0x0010 /* SLIMTX5_PORT_STS */ | ||
4007 | #define ARIZONA_SLIMTX5_PORT_STS_SHIFT 4 /* SLIMTX5_PORT_STS */ | ||
4008 | #define ARIZONA_SLIMTX5_PORT_STS_WIDTH 1 /* SLIMTX5_PORT_STS */ | ||
4009 | #define ARIZONA_SLIMTX4_PORT_STS 0x0008 /* SLIMTX4_PORT_STS */ | ||
4010 | #define ARIZONA_SLIMTX4_PORT_STS_MASK 0x0008 /* SLIMTX4_PORT_STS */ | ||
4011 | #define ARIZONA_SLIMTX4_PORT_STS_SHIFT 3 /* SLIMTX4_PORT_STS */ | ||
4012 | #define ARIZONA_SLIMTX4_PORT_STS_WIDTH 1 /* SLIMTX4_PORT_STS */ | ||
4013 | #define ARIZONA_SLIMTX3_PORT_STS 0x0004 /* SLIMTX3_PORT_STS */ | ||
4014 | #define ARIZONA_SLIMTX3_PORT_STS_MASK 0x0004 /* SLIMTX3_PORT_STS */ | ||
4015 | #define ARIZONA_SLIMTX3_PORT_STS_SHIFT 2 /* SLIMTX3_PORT_STS */ | ||
4016 | #define ARIZONA_SLIMTX3_PORT_STS_WIDTH 1 /* SLIMTX3_PORT_STS */ | ||
4017 | #define ARIZONA_SLIMTX2_PORT_STS 0x0002 /* SLIMTX2_PORT_STS */ | ||
4018 | #define ARIZONA_SLIMTX2_PORT_STS_MASK 0x0002 /* SLIMTX2_PORT_STS */ | ||
4019 | #define ARIZONA_SLIMTX2_PORT_STS_SHIFT 1 /* SLIMTX2_PORT_STS */ | ||
4020 | #define ARIZONA_SLIMTX2_PORT_STS_WIDTH 1 /* SLIMTX2_PORT_STS */ | ||
4021 | #define ARIZONA_SLIMTX1_PORT_STS 0x0001 /* SLIMTX1_PORT_STS */ | ||
4022 | #define ARIZONA_SLIMTX1_PORT_STS_MASK 0x0001 /* SLIMTX1_PORT_STS */ | ||
4023 | #define ARIZONA_SLIMTX1_PORT_STS_SHIFT 0 /* SLIMTX1_PORT_STS */ | ||
4024 | #define ARIZONA_SLIMTX1_PORT_STS_WIDTH 1 /* SLIMTX1_PORT_STS */ | ||
4025 | |||
4026 | /* | ||
4027 | * R3087 (0xC0F) - IRQ CTRL 1 | ||
4028 | */ | ||
4029 | #define ARIZONA_IRQ_POL 0x0400 /* IRQ_POL */ | ||
4030 | #define ARIZONA_IRQ_POL_MASK 0x0400 /* IRQ_POL */ | ||
4031 | #define ARIZONA_IRQ_POL_SHIFT 10 /* IRQ_POL */ | ||
4032 | #define ARIZONA_IRQ_POL_WIDTH 1 /* IRQ_POL */ | ||
4033 | #define ARIZONA_IRQ_OP_CFG 0x0200 /* IRQ_OP_CFG */ | ||
4034 | #define ARIZONA_IRQ_OP_CFG_MASK 0x0200 /* IRQ_OP_CFG */ | ||
4035 | #define ARIZONA_IRQ_OP_CFG_SHIFT 9 /* IRQ_OP_CFG */ | ||
4036 | #define ARIZONA_IRQ_OP_CFG_WIDTH 1 /* IRQ_OP_CFG */ | ||
4037 | |||
4038 | /* | ||
4039 | * R3088 (0xC10) - GPIO Debounce Config | ||
4040 | */ | ||
4041 | #define ARIZONA_GP_DBTIME_MASK 0xF000 /* GP_DBTIME - [15:12] */ | ||
4042 | #define ARIZONA_GP_DBTIME_SHIFT 12 /* GP_DBTIME - [15:12] */ | ||
4043 | #define ARIZONA_GP_DBTIME_WIDTH 4 /* GP_DBTIME - [15:12] */ | ||
4044 | |||
4045 | /* | ||
4046 | * R3104 (0xC20) - Misc Pad Ctrl 1 | ||
4047 | */ | ||
4048 | #define ARIZONA_LDO1ENA_PD 0x8000 /* LDO1ENA_PD */ | ||
4049 | #define ARIZONA_LDO1ENA_PD_MASK 0x8000 /* LDO1ENA_PD */ | ||
4050 | #define ARIZONA_LDO1ENA_PD_SHIFT 15 /* LDO1ENA_PD */ | ||
4051 | #define ARIZONA_LDO1ENA_PD_WIDTH 1 /* LDO1ENA_PD */ | ||
4052 | #define ARIZONA_MCLK2_PD 0x2000 /* MCLK2_PD */ | ||
4053 | #define ARIZONA_MCLK2_PD_MASK 0x2000 /* MCLK2_PD */ | ||
4054 | #define ARIZONA_MCLK2_PD_SHIFT 13 /* MCLK2_PD */ | ||
4055 | #define ARIZONA_MCLK2_PD_WIDTH 1 /* MCLK2_PD */ | ||
4056 | #define ARIZONA_RSTB_PU 0x0002 /* RSTB_PU */ | ||
4057 | #define ARIZONA_RSTB_PU_MASK 0x0002 /* RSTB_PU */ | ||
4058 | #define ARIZONA_RSTB_PU_SHIFT 1 /* RSTB_PU */ | ||
4059 | #define ARIZONA_RSTB_PU_WIDTH 1 /* RSTB_PU */ | ||
4060 | |||
4061 | /* | ||
4062 | * R3105 (0xC21) - Misc Pad Ctrl 2 | ||
4063 | */ | ||
4064 | #define ARIZONA_MCLK1_PD 0x1000 /* MCLK1_PD */ | ||
4065 | #define ARIZONA_MCLK1_PD_MASK 0x1000 /* MCLK1_PD */ | ||
4066 | #define ARIZONA_MCLK1_PD_SHIFT 12 /* MCLK1_PD */ | ||
4067 | #define ARIZONA_MCLK1_PD_WIDTH 1 /* MCLK1_PD */ | ||
4068 | #define ARIZONA_MICD_PD 0x0100 /* MICD_PD */ | ||
4069 | #define ARIZONA_MICD_PD_MASK 0x0100 /* MICD_PD */ | ||
4070 | #define ARIZONA_MICD_PD_SHIFT 8 /* MICD_PD */ | ||
4071 | #define ARIZONA_MICD_PD_WIDTH 1 /* MICD_PD */ | ||
4072 | #define ARIZONA_ADDR_PD 0x0001 /* ADDR_PD */ | ||
4073 | #define ARIZONA_ADDR_PD_MASK 0x0001 /* ADDR_PD */ | ||
4074 | #define ARIZONA_ADDR_PD_SHIFT 0 /* ADDR_PD */ | ||
4075 | #define ARIZONA_ADDR_PD_WIDTH 1 /* ADDR_PD */ | ||
4076 | |||
4077 | /* | ||
4078 | * R3106 (0xC22) - Misc Pad Ctrl 3 | ||
4079 | */ | ||
4080 | #define ARIZONA_DMICDAT4_PD 0x0008 /* DMICDAT4_PD */ | ||
4081 | #define ARIZONA_DMICDAT4_PD_MASK 0x0008 /* DMICDAT4_PD */ | ||
4082 | #define ARIZONA_DMICDAT4_PD_SHIFT 3 /* DMICDAT4_PD */ | ||
4083 | #define ARIZONA_DMICDAT4_PD_WIDTH 1 /* DMICDAT4_PD */ | ||
4084 | #define ARIZONA_DMICDAT3_PD 0x0004 /* DMICDAT3_PD */ | ||
4085 | #define ARIZONA_DMICDAT3_PD_MASK 0x0004 /* DMICDAT3_PD */ | ||
4086 | #define ARIZONA_DMICDAT3_PD_SHIFT 2 /* DMICDAT3_PD */ | ||
4087 | #define ARIZONA_DMICDAT3_PD_WIDTH 1 /* DMICDAT3_PD */ | ||
4088 | #define ARIZONA_DMICDAT2_PD 0x0002 /* DMICDAT2_PD */ | ||
4089 | #define ARIZONA_DMICDAT2_PD_MASK 0x0002 /* DMICDAT2_PD */ | ||
4090 | #define ARIZONA_DMICDAT2_PD_SHIFT 1 /* DMICDAT2_PD */ | ||
4091 | #define ARIZONA_DMICDAT2_PD_WIDTH 1 /* DMICDAT2_PD */ | ||
4092 | #define ARIZONA_DMICDAT1_PD 0x0001 /* DMICDAT1_PD */ | ||
4093 | #define ARIZONA_DMICDAT1_PD_MASK 0x0001 /* DMICDAT1_PD */ | ||
4094 | #define ARIZONA_DMICDAT1_PD_SHIFT 0 /* DMICDAT1_PD */ | ||
4095 | #define ARIZONA_DMICDAT1_PD_WIDTH 1 /* DMICDAT1_PD */ | ||
4096 | |||
4097 | /* | ||
4098 | * R3107 (0xC23) - Misc Pad Ctrl 4 | ||
4099 | */ | ||
4100 | #define ARIZONA_AIF1RXLRCLK_PU 0x0020 /* AIF1RXLRCLK_PU */ | ||
4101 | #define ARIZONA_AIF1RXLRCLK_PU_MASK 0x0020 /* AIF1RXLRCLK_PU */ | ||
4102 | #define ARIZONA_AIF1RXLRCLK_PU_SHIFT 5 /* AIF1RXLRCLK_PU */ | ||
4103 | #define ARIZONA_AIF1RXLRCLK_PU_WIDTH 1 /* AIF1RXLRCLK_PU */ | ||
4104 | #define ARIZONA_AIF1RXLRCLK_PD 0x0010 /* AIF1RXLRCLK_PD */ | ||
4105 | #define ARIZONA_AIF1RXLRCLK_PD_MASK 0x0010 /* AIF1RXLRCLK_PD */ | ||
4106 | #define ARIZONA_AIF1RXLRCLK_PD_SHIFT 4 /* AIF1RXLRCLK_PD */ | ||
4107 | #define ARIZONA_AIF1RXLRCLK_PD_WIDTH 1 /* AIF1RXLRCLK_PD */ | ||
4108 | #define ARIZONA_AIF1BCLK_PU 0x0008 /* AIF1BCLK_PU */ | ||
4109 | #define ARIZONA_AIF1BCLK_PU_MASK 0x0008 /* AIF1BCLK_PU */ | ||
4110 | #define ARIZONA_AIF1BCLK_PU_SHIFT 3 /* AIF1BCLK_PU */ | ||
4111 | #define ARIZONA_AIF1BCLK_PU_WIDTH 1 /* AIF1BCLK_PU */ | ||
4112 | #define ARIZONA_AIF1BCLK_PD 0x0004 /* AIF1BCLK_PD */ | ||
4113 | #define ARIZONA_AIF1BCLK_PD_MASK 0x0004 /* AIF1BCLK_PD */ | ||
4114 | #define ARIZONA_AIF1BCLK_PD_SHIFT 2 /* AIF1BCLK_PD */ | ||
4115 | #define ARIZONA_AIF1BCLK_PD_WIDTH 1 /* AIF1BCLK_PD */ | ||
4116 | #define ARIZONA_AIF1RXDAT_PU 0x0002 /* AIF1RXDAT_PU */ | ||
4117 | #define ARIZONA_AIF1RXDAT_PU_MASK 0x0002 /* AIF1RXDAT_PU */ | ||
4118 | #define ARIZONA_AIF1RXDAT_PU_SHIFT 1 /* AIF1RXDAT_PU */ | ||
4119 | #define ARIZONA_AIF1RXDAT_PU_WIDTH 1 /* AIF1RXDAT_PU */ | ||
4120 | #define ARIZONA_AIF1RXDAT_PD 0x0001 /* AIF1RXDAT_PD */ | ||
4121 | #define ARIZONA_AIF1RXDAT_PD_MASK 0x0001 /* AIF1RXDAT_PD */ | ||
4122 | #define ARIZONA_AIF1RXDAT_PD_SHIFT 0 /* AIF1RXDAT_PD */ | ||
4123 | #define ARIZONA_AIF1RXDAT_PD_WIDTH 1 /* AIF1RXDAT_PD */ | ||
4124 | |||
4125 | /* | ||
4126 | * R3108 (0xC24) - Misc Pad Ctrl 5 | ||
4127 | */ | ||
4128 | #define ARIZONA_AIF2RXLRCLK_PU 0x0020 /* AIF2RXLRCLK_PU */ | ||
4129 | #define ARIZONA_AIF2RXLRCLK_PU_MASK 0x0020 /* AIF2RXLRCLK_PU */ | ||
4130 | #define ARIZONA_AIF2RXLRCLK_PU_SHIFT 5 /* AIF2RXLRCLK_PU */ | ||
4131 | #define ARIZONA_AIF2RXLRCLK_PU_WIDTH 1 /* AIF2RXLRCLK_PU */ | ||
4132 | #define ARIZONA_AIF2RXLRCLK_PD 0x0010 /* AIF2RXLRCLK_PD */ | ||
4133 | #define ARIZONA_AIF2RXLRCLK_PD_MASK 0x0010 /* AIF2RXLRCLK_PD */ | ||
4134 | #define ARIZONA_AIF2RXLRCLK_PD_SHIFT 4 /* AIF2RXLRCLK_PD */ | ||
4135 | #define ARIZONA_AIF2RXLRCLK_PD_WIDTH 1 /* AIF2RXLRCLK_PD */ | ||
4136 | #define ARIZONA_AIF2BCLK_PU 0x0008 /* AIF2BCLK_PU */ | ||
4137 | #define ARIZONA_AIF2BCLK_PU_MASK 0x0008 /* AIF2BCLK_PU */ | ||
4138 | #define ARIZONA_AIF2BCLK_PU_SHIFT 3 /* AIF2BCLK_PU */ | ||
4139 | #define ARIZONA_AIF2BCLK_PU_WIDTH 1 /* AIF2BCLK_PU */ | ||
4140 | #define ARIZONA_AIF2BCLK_PD 0x0004 /* AIF2BCLK_PD */ | ||
4141 | #define ARIZONA_AIF2BCLK_PD_MASK 0x0004 /* AIF2BCLK_PD */ | ||
4142 | #define ARIZONA_AIF2BCLK_PD_SHIFT 2 /* AIF2BCLK_PD */ | ||
4143 | #define ARIZONA_AIF2BCLK_PD_WIDTH 1 /* AIF2BCLK_PD */ | ||
4144 | #define ARIZONA_AIF2RXDAT_PU 0x0002 /* AIF2RXDAT_PU */ | ||
4145 | #define ARIZONA_AIF2RXDAT_PU_MASK 0x0002 /* AIF2RXDAT_PU */ | ||
4146 | #define ARIZONA_AIF2RXDAT_PU_SHIFT 1 /* AIF2RXDAT_PU */ | ||
4147 | #define ARIZONA_AIF2RXDAT_PU_WIDTH 1 /* AIF2RXDAT_PU */ | ||
4148 | #define ARIZONA_AIF2RXDAT_PD 0x0001 /* AIF2RXDAT_PD */ | ||
4149 | #define ARIZONA_AIF2RXDAT_PD_MASK 0x0001 /* AIF2RXDAT_PD */ | ||
4150 | #define ARIZONA_AIF2RXDAT_PD_SHIFT 0 /* AIF2RXDAT_PD */ | ||
4151 | #define ARIZONA_AIF2RXDAT_PD_WIDTH 1 /* AIF2RXDAT_PD */ | ||
4152 | |||
4153 | /* | ||
4154 | * R3109 (0xC25) - Misc Pad Ctrl 6 | ||
4155 | */ | ||
4156 | #define ARIZONA_AIF3RXLRCLK_PU 0x0020 /* AIF3RXLRCLK_PU */ | ||
4157 | #define ARIZONA_AIF3RXLRCLK_PU_MASK 0x0020 /* AIF3RXLRCLK_PU */ | ||
4158 | #define ARIZONA_AIF3RXLRCLK_PU_SHIFT 5 /* AIF3RXLRCLK_PU */ | ||
4159 | #define ARIZONA_AIF3RXLRCLK_PU_WIDTH 1 /* AIF3RXLRCLK_PU */ | ||
4160 | #define ARIZONA_AIF3RXLRCLK_PD 0x0010 /* AIF3RXLRCLK_PD */ | ||
4161 | #define ARIZONA_AIF3RXLRCLK_PD_MASK 0x0010 /* AIF3RXLRCLK_PD */ | ||
4162 | #define ARIZONA_AIF3RXLRCLK_PD_SHIFT 4 /* AIF3RXLRCLK_PD */ | ||
4163 | #define ARIZONA_AIF3RXLRCLK_PD_WIDTH 1 /* AIF3RXLRCLK_PD */ | ||
4164 | #define ARIZONA_AIF3BCLK_PU 0x0008 /* AIF3BCLK_PU */ | ||
4165 | #define ARIZONA_AIF3BCLK_PU_MASK 0x0008 /* AIF3BCLK_PU */ | ||
4166 | #define ARIZONA_AIF3BCLK_PU_SHIFT 3 /* AIF3BCLK_PU */ | ||
4167 | #define ARIZONA_AIF3BCLK_PU_WIDTH 1 /* AIF3BCLK_PU */ | ||
4168 | #define ARIZONA_AIF3BCLK_PD 0x0004 /* AIF3BCLK_PD */ | ||
4169 | #define ARIZONA_AIF3BCLK_PD_MASK 0x0004 /* AIF3BCLK_PD */ | ||
4170 | #define ARIZONA_AIF3BCLK_PD_SHIFT 2 /* AIF3BCLK_PD */ | ||
4171 | #define ARIZONA_AIF3BCLK_PD_WIDTH 1 /* AIF3BCLK_PD */ | ||
4172 | #define ARIZONA_AIF3RXDAT_PU 0x0002 /* AIF3RXDAT_PU */ | ||
4173 | #define ARIZONA_AIF3RXDAT_PU_MASK 0x0002 /* AIF3RXDAT_PU */ | ||
4174 | #define ARIZONA_AIF3RXDAT_PU_SHIFT 1 /* AIF3RXDAT_PU */ | ||
4175 | #define ARIZONA_AIF3RXDAT_PU_WIDTH 1 /* AIF3RXDAT_PU */ | ||
4176 | #define ARIZONA_AIF3RXDAT_PD 0x0001 /* AIF3RXDAT_PD */ | ||
4177 | #define ARIZONA_AIF3RXDAT_PD_MASK 0x0001 /* AIF3RXDAT_PD */ | ||
4178 | #define ARIZONA_AIF3RXDAT_PD_SHIFT 0 /* AIF3RXDAT_PD */ | ||
4179 | #define ARIZONA_AIF3RXDAT_PD_WIDTH 1 /* AIF3RXDAT_PD */ | ||
4180 | |||
4181 | /* | ||
4182 | * R3328 (0xD00) - Interrupt Status 1 | ||
4183 | */ | ||
4184 | #define ARIZONA_GP4_EINT1 0x0008 /* GP4_EINT1 */ | ||
4185 | #define ARIZONA_GP4_EINT1_MASK 0x0008 /* GP4_EINT1 */ | ||
4186 | #define ARIZONA_GP4_EINT1_SHIFT 3 /* GP4_EINT1 */ | ||
4187 | #define ARIZONA_GP4_EINT1_WIDTH 1 /* GP4_EINT1 */ | ||
4188 | #define ARIZONA_GP3_EINT1 0x0004 /* GP3_EINT1 */ | ||
4189 | #define ARIZONA_GP3_EINT1_MASK 0x0004 /* GP3_EINT1 */ | ||
4190 | #define ARIZONA_GP3_EINT1_SHIFT 2 /* GP3_EINT1 */ | ||
4191 | #define ARIZONA_GP3_EINT1_WIDTH 1 /* GP3_EINT1 */ | ||
4192 | #define ARIZONA_GP2_EINT1 0x0002 /* GP2_EINT1 */ | ||
4193 | #define ARIZONA_GP2_EINT1_MASK 0x0002 /* GP2_EINT1 */ | ||
4194 | #define ARIZONA_GP2_EINT1_SHIFT 1 /* GP2_EINT1 */ | ||
4195 | #define ARIZONA_GP2_EINT1_WIDTH 1 /* GP2_EINT1 */ | ||
4196 | #define ARIZONA_GP1_EINT1 0x0001 /* GP1_EINT1 */ | ||
4197 | #define ARIZONA_GP1_EINT1_MASK 0x0001 /* GP1_EINT1 */ | ||
4198 | #define ARIZONA_GP1_EINT1_SHIFT 0 /* GP1_EINT1 */ | ||
4199 | #define ARIZONA_GP1_EINT1_WIDTH 1 /* GP1_EINT1 */ | ||
4200 | |||
4201 | /* | ||
4202 | * R3329 (0xD01) - Interrupt Status 2 | ||
4203 | */ | ||
4204 | #define ARIZONA_DSP4_RAM_RDY_EINT1 0x0800 /* DSP4_RAM_RDY_EINT1 */ | ||
4205 | #define ARIZONA_DSP4_RAM_RDY_EINT1_MASK 0x0800 /* DSP4_RAM_RDY_EINT1 */ | ||
4206 | #define ARIZONA_DSP4_RAM_RDY_EINT1_SHIFT 11 /* DSP4_RAM_RDY_EINT1 */ | ||
4207 | #define ARIZONA_DSP4_RAM_RDY_EINT1_WIDTH 1 /* DSP4_RAM_RDY_EINT1 */ | ||
4208 | #define ARIZONA_DSP3_RAM_RDY_EINT1 0x0400 /* DSP3_RAM_RDY_EINT1 */ | ||
4209 | #define ARIZONA_DSP3_RAM_RDY_EINT1_MASK 0x0400 /* DSP3_RAM_RDY_EINT1 */ | ||
4210 | #define ARIZONA_DSP3_RAM_RDY_EINT1_SHIFT 10 /* DSP3_RAM_RDY_EINT1 */ | ||
4211 | #define ARIZONA_DSP3_RAM_RDY_EINT1_WIDTH 1 /* DSP3_RAM_RDY_EINT1 */ | ||
4212 | #define ARIZONA_DSP2_RAM_RDY_EINT1 0x0200 /* DSP2_RAM_RDY_EINT1 */ | ||
4213 | #define ARIZONA_DSP2_RAM_RDY_EINT1_MASK 0x0200 /* DSP2_RAM_RDY_EINT1 */ | ||
4214 | #define ARIZONA_DSP2_RAM_RDY_EINT1_SHIFT 9 /* DSP2_RAM_RDY_EINT1 */ | ||
4215 | #define ARIZONA_DSP2_RAM_RDY_EINT1_WIDTH 1 /* DSP2_RAM_RDY_EINT1 */ | ||
4216 | #define ARIZONA_DSP1_RAM_RDY_EINT1 0x0100 /* DSP1_RAM_RDY_EINT1 */ | ||
4217 | #define ARIZONA_DSP1_RAM_RDY_EINT1_MASK 0x0100 /* DSP1_RAM_RDY_EINT1 */ | ||
4218 | #define ARIZONA_DSP1_RAM_RDY_EINT1_SHIFT 8 /* DSP1_RAM_RDY_EINT1 */ | ||
4219 | #define ARIZONA_DSP1_RAM_RDY_EINT1_WIDTH 1 /* DSP1_RAM_RDY_EINT1 */ | ||
4220 | #define ARIZONA_DSP_IRQ8_EINT1 0x0080 /* DSP_IRQ8_EINT1 */ | ||
4221 | #define ARIZONA_DSP_IRQ8_EINT1_MASK 0x0080 /* DSP_IRQ8_EINT1 */ | ||
4222 | #define ARIZONA_DSP_IRQ8_EINT1_SHIFT 7 /* DSP_IRQ8_EINT1 */ | ||
4223 | #define ARIZONA_DSP_IRQ8_EINT1_WIDTH 1 /* DSP_IRQ8_EINT1 */ | ||
4224 | #define ARIZONA_DSP_IRQ7_EINT1 0x0040 /* DSP_IRQ7_EINT1 */ | ||
4225 | #define ARIZONA_DSP_IRQ7_EINT1_MASK 0x0040 /* DSP_IRQ7_EINT1 */ | ||
4226 | #define ARIZONA_DSP_IRQ7_EINT1_SHIFT 6 /* DSP_IRQ7_EINT1 */ | ||
4227 | #define ARIZONA_DSP_IRQ7_EINT1_WIDTH 1 /* DSP_IRQ7_EINT1 */ | ||
4228 | #define ARIZONA_DSP_IRQ6_EINT1 0x0020 /* DSP_IRQ6_EINT1 */ | ||
4229 | #define ARIZONA_DSP_IRQ6_EINT1_MASK 0x0020 /* DSP_IRQ6_EINT1 */ | ||
4230 | #define ARIZONA_DSP_IRQ6_EINT1_SHIFT 5 /* DSP_IRQ6_EINT1 */ | ||
4231 | #define ARIZONA_DSP_IRQ6_EINT1_WIDTH 1 /* DSP_IRQ6_EINT1 */ | ||
4232 | #define ARIZONA_DSP_IRQ5_EINT1 0x0010 /* DSP_IRQ5_EINT1 */ | ||
4233 | #define ARIZONA_DSP_IRQ5_EINT1_MASK 0x0010 /* DSP_IRQ5_EINT1 */ | ||
4234 | #define ARIZONA_DSP_IRQ5_EINT1_SHIFT 4 /* DSP_IRQ5_EINT1 */ | ||
4235 | #define ARIZONA_DSP_IRQ5_EINT1_WIDTH 1 /* DSP_IRQ5_EINT1 */ | ||
4236 | #define ARIZONA_DSP_IRQ4_EINT1 0x0008 /* DSP_IRQ4_EINT1 */ | ||
4237 | #define ARIZONA_DSP_IRQ4_EINT1_MASK 0x0008 /* DSP_IRQ4_EINT1 */ | ||
4238 | #define ARIZONA_DSP_IRQ4_EINT1_SHIFT 3 /* DSP_IRQ4_EINT1 */ | ||
4239 | #define ARIZONA_DSP_IRQ4_EINT1_WIDTH 1 /* DSP_IRQ4_EINT1 */ | ||
4240 | #define ARIZONA_DSP_IRQ3_EINT1 0x0004 /* DSP_IRQ3_EINT1 */ | ||
4241 | #define ARIZONA_DSP_IRQ3_EINT1_MASK 0x0004 /* DSP_IRQ3_EINT1 */ | ||
4242 | #define ARIZONA_DSP_IRQ3_EINT1_SHIFT 2 /* DSP_IRQ3_EINT1 */ | ||
4243 | #define ARIZONA_DSP_IRQ3_EINT1_WIDTH 1 /* DSP_IRQ3_EINT1 */ | ||
4244 | #define ARIZONA_DSP_IRQ2_EINT1 0x0002 /* DSP_IRQ2_EINT1 */ | ||
4245 | #define ARIZONA_DSP_IRQ2_EINT1_MASK 0x0002 /* DSP_IRQ2_EINT1 */ | ||
4246 | #define ARIZONA_DSP_IRQ2_EINT1_SHIFT 1 /* DSP_IRQ2_EINT1 */ | ||
4247 | #define ARIZONA_DSP_IRQ2_EINT1_WIDTH 1 /* DSP_IRQ2_EINT1 */ | ||
4248 | #define ARIZONA_DSP_IRQ1_EINT1 0x0001 /* DSP_IRQ1_EINT1 */ | ||
4249 | #define ARIZONA_DSP_IRQ1_EINT1_MASK 0x0001 /* DSP_IRQ1_EINT1 */ | ||
4250 | #define ARIZONA_DSP_IRQ1_EINT1_SHIFT 0 /* DSP_IRQ1_EINT1 */ | ||
4251 | #define ARIZONA_DSP_IRQ1_EINT1_WIDTH 1 /* DSP_IRQ1_EINT1 */ | ||
4252 | |||
4253 | /* | ||
4254 | * R3330 (0xD02) - Interrupt Status 3 | ||
4255 | */ | ||
4256 | #define ARIZONA_SPK_SHUTDOWN_WARN_EINT1 0x8000 /* SPK_SHUTDOWN_WARN_EINT1 */ | ||
4257 | #define ARIZONA_SPK_SHUTDOWN_WARN_EINT1_MASK 0x8000 /* SPK_SHUTDOWN_WARN_EINT1 */ | ||
4258 | #define ARIZONA_SPK_SHUTDOWN_WARN_EINT1_SHIFT 15 /* SPK_SHUTDOWN_WARN_EINT1 */ | ||
4259 | #define ARIZONA_SPK_SHUTDOWN_WARN_EINT1_WIDTH 1 /* SPK_SHUTDOWN_WARN_EINT1 */ | ||
4260 | #define ARIZONA_SPK_SHUTDOWN_EINT1 0x4000 /* SPK_SHUTDOWN_EINT1 */ | ||
4261 | #define ARIZONA_SPK_SHUTDOWN_EINT1_MASK 0x4000 /* SPK_SHUTDOWN_EINT1 */ | ||
4262 | #define ARIZONA_SPK_SHUTDOWN_EINT1_SHIFT 14 /* SPK_SHUTDOWN_EINT1 */ | ||
4263 | #define ARIZONA_SPK_SHUTDOWN_EINT1_WIDTH 1 /* SPK_SHUTDOWN_EINT1 */ | ||
4264 | #define ARIZONA_HPDET_EINT1 0x2000 /* HPDET_EINT1 */ | ||
4265 | #define ARIZONA_HPDET_EINT1_MASK 0x2000 /* HPDET_EINT1 */ | ||
4266 | #define ARIZONA_HPDET_EINT1_SHIFT 13 /* HPDET_EINT1 */ | ||
4267 | #define ARIZONA_HPDET_EINT1_WIDTH 1 /* HPDET_EINT1 */ | ||
4268 | #define ARIZONA_MICDET_EINT1 0x1000 /* MICDET_EINT1 */ | ||
4269 | #define ARIZONA_MICDET_EINT1_MASK 0x1000 /* MICDET_EINT1 */ | ||
4270 | #define ARIZONA_MICDET_EINT1_SHIFT 12 /* MICDET_EINT1 */ | ||
4271 | #define ARIZONA_MICDET_EINT1_WIDTH 1 /* MICDET_EINT1 */ | ||
4272 | #define ARIZONA_WSEQ_DONE_EINT1 0x0800 /* WSEQ_DONE_EINT1 */ | ||
4273 | #define ARIZONA_WSEQ_DONE_EINT1_MASK 0x0800 /* WSEQ_DONE_EINT1 */ | ||
4274 | #define ARIZONA_WSEQ_DONE_EINT1_SHIFT 11 /* WSEQ_DONE_EINT1 */ | ||
4275 | #define ARIZONA_WSEQ_DONE_EINT1_WIDTH 1 /* WSEQ_DONE_EINT1 */ | ||
4276 | #define ARIZONA_DRC2_SIG_DET_EINT1 0x0400 /* DRC2_SIG_DET_EINT1 */ | ||
4277 | #define ARIZONA_DRC2_SIG_DET_EINT1_MASK 0x0400 /* DRC2_SIG_DET_EINT1 */ | ||
4278 | #define ARIZONA_DRC2_SIG_DET_EINT1_SHIFT 10 /* DRC2_SIG_DET_EINT1 */ | ||
4279 | #define ARIZONA_DRC2_SIG_DET_EINT1_WIDTH 1 /* DRC2_SIG_DET_EINT1 */ | ||
4280 | #define ARIZONA_DRC1_SIG_DET_EINT1 0x0200 /* DRC1_SIG_DET_EINT1 */ | ||
4281 | #define ARIZONA_DRC1_SIG_DET_EINT1_MASK 0x0200 /* DRC1_SIG_DET_EINT1 */ | ||
4282 | #define ARIZONA_DRC1_SIG_DET_EINT1_SHIFT 9 /* DRC1_SIG_DET_EINT1 */ | ||
4283 | #define ARIZONA_DRC1_SIG_DET_EINT1_WIDTH 1 /* DRC1_SIG_DET_EINT1 */ | ||
4284 | #define ARIZONA_ASRC2_LOCK_EINT1 0x0100 /* ASRC2_LOCK_EINT1 */ | ||
4285 | #define ARIZONA_ASRC2_LOCK_EINT1_MASK 0x0100 /* ASRC2_LOCK_EINT1 */ | ||
4286 | #define ARIZONA_ASRC2_LOCK_EINT1_SHIFT 8 /* ASRC2_LOCK_EINT1 */ | ||
4287 | #define ARIZONA_ASRC2_LOCK_EINT1_WIDTH 1 /* ASRC2_LOCK_EINT1 */ | ||
4288 | #define ARIZONA_ASRC1_LOCK_EINT1 0x0080 /* ASRC1_LOCK_EINT1 */ | ||
4289 | #define ARIZONA_ASRC1_LOCK_EINT1_MASK 0x0080 /* ASRC1_LOCK_EINT1 */ | ||
4290 | #define ARIZONA_ASRC1_LOCK_EINT1_SHIFT 7 /* ASRC1_LOCK_EINT1 */ | ||
4291 | #define ARIZONA_ASRC1_LOCK_EINT1_WIDTH 1 /* ASRC1_LOCK_EINT1 */ | ||
4292 | #define ARIZONA_UNDERCLOCKED_EINT1 0x0040 /* UNDERCLOCKED_EINT1 */ | ||
4293 | #define ARIZONA_UNDERCLOCKED_EINT1_MASK 0x0040 /* UNDERCLOCKED_EINT1 */ | ||
4294 | #define ARIZONA_UNDERCLOCKED_EINT1_SHIFT 6 /* UNDERCLOCKED_EINT1 */ | ||
4295 | #define ARIZONA_UNDERCLOCKED_EINT1_WIDTH 1 /* UNDERCLOCKED_EINT1 */ | ||
4296 | #define ARIZONA_OVERCLOCKED_EINT1 0x0020 /* OVERCLOCKED_EINT1 */ | ||
4297 | #define ARIZONA_OVERCLOCKED_EINT1_MASK 0x0020 /* OVERCLOCKED_EINT1 */ | ||
4298 | #define ARIZONA_OVERCLOCKED_EINT1_SHIFT 5 /* OVERCLOCKED_EINT1 */ | ||
4299 | #define ARIZONA_OVERCLOCKED_EINT1_WIDTH 1 /* OVERCLOCKED_EINT1 */ | ||
4300 | #define ARIZONA_FLL2_LOCK_EINT1 0x0008 /* FLL2_LOCK_EINT1 */ | ||
4301 | #define ARIZONA_FLL2_LOCK_EINT1_MASK 0x0008 /* FLL2_LOCK_EINT1 */ | ||
4302 | #define ARIZONA_FLL2_LOCK_EINT1_SHIFT 3 /* FLL2_LOCK_EINT1 */ | ||
4303 | #define ARIZONA_FLL2_LOCK_EINT1_WIDTH 1 /* FLL2_LOCK_EINT1 */ | ||
4304 | #define ARIZONA_FLL1_LOCK_EINT1 0x0004 /* FLL1_LOCK_EINT1 */ | ||
4305 | #define ARIZONA_FLL1_LOCK_EINT1_MASK 0x0004 /* FLL1_LOCK_EINT1 */ | ||
4306 | #define ARIZONA_FLL1_LOCK_EINT1_SHIFT 2 /* FLL1_LOCK_EINT1 */ | ||
4307 | #define ARIZONA_FLL1_LOCK_EINT1_WIDTH 1 /* FLL1_LOCK_EINT1 */ | ||
4308 | #define ARIZONA_CLKGEN_ERR_EINT1 0x0002 /* CLKGEN_ERR_EINT1 */ | ||
4309 | #define ARIZONA_CLKGEN_ERR_EINT1_MASK 0x0002 /* CLKGEN_ERR_EINT1 */ | ||
4310 | #define ARIZONA_CLKGEN_ERR_EINT1_SHIFT 1 /* CLKGEN_ERR_EINT1 */ | ||
4311 | #define ARIZONA_CLKGEN_ERR_EINT1_WIDTH 1 /* CLKGEN_ERR_EINT1 */ | ||
4312 | #define ARIZONA_CLKGEN_ERR_ASYNC_EINT1 0x0001 /* CLKGEN_ERR_ASYNC_EINT1 */ | ||
4313 | #define ARIZONA_CLKGEN_ERR_ASYNC_EINT1_MASK 0x0001 /* CLKGEN_ERR_ASYNC_EINT1 */ | ||
4314 | #define ARIZONA_CLKGEN_ERR_ASYNC_EINT1_SHIFT 0 /* CLKGEN_ERR_ASYNC_EINT1 */ | ||
4315 | #define ARIZONA_CLKGEN_ERR_ASYNC_EINT1_WIDTH 1 /* CLKGEN_ERR_ASYNC_EINT1 */ | ||
4316 | |||
4317 | /* | ||
4318 | * R3331 (0xD03) - Interrupt Status 4 | ||
4319 | */ | ||
4320 | #define ARIZONA_ASRC_CFG_ERR_EINT1 0x8000 /* ASRC_CFG_ERR_EINT1 */ | ||
4321 | #define ARIZONA_ASRC_CFG_ERR_EINT1_MASK 0x8000 /* ASRC_CFG_ERR_EINT1 */ | ||
4322 | #define ARIZONA_ASRC_CFG_ERR_EINT1_SHIFT 15 /* ASRC_CFG_ERR_EINT1 */ | ||
4323 | #define ARIZONA_ASRC_CFG_ERR_EINT1_WIDTH 1 /* ASRC_CFG_ERR_EINT1 */ | ||
4324 | #define ARIZONA_AIF3_ERR_EINT1 0x4000 /* AIF3_ERR_EINT1 */ | ||
4325 | #define ARIZONA_AIF3_ERR_EINT1_MASK 0x4000 /* AIF3_ERR_EINT1 */ | ||
4326 | #define ARIZONA_AIF3_ERR_EINT1_SHIFT 14 /* AIF3_ERR_EINT1 */ | ||
4327 | #define ARIZONA_AIF3_ERR_EINT1_WIDTH 1 /* AIF3_ERR_EINT1 */ | ||
4328 | #define ARIZONA_AIF2_ERR_EINT1 0x2000 /* AIF2_ERR_EINT1 */ | ||
4329 | #define ARIZONA_AIF2_ERR_EINT1_MASK 0x2000 /* AIF2_ERR_EINT1 */ | ||
4330 | #define ARIZONA_AIF2_ERR_EINT1_SHIFT 13 /* AIF2_ERR_EINT1 */ | ||
4331 | #define ARIZONA_AIF2_ERR_EINT1_WIDTH 1 /* AIF2_ERR_EINT1 */ | ||
4332 | #define ARIZONA_AIF1_ERR_EINT1 0x1000 /* AIF1_ERR_EINT1 */ | ||
4333 | #define ARIZONA_AIF1_ERR_EINT1_MASK 0x1000 /* AIF1_ERR_EINT1 */ | ||
4334 | #define ARIZONA_AIF1_ERR_EINT1_SHIFT 12 /* AIF1_ERR_EINT1 */ | ||
4335 | #define ARIZONA_AIF1_ERR_EINT1_WIDTH 1 /* AIF1_ERR_EINT1 */ | ||
4336 | #define ARIZONA_CTRLIF_ERR_EINT1 0x0800 /* CTRLIF_ERR_EINT1 */ | ||
4337 | #define ARIZONA_CTRLIF_ERR_EINT1_MASK 0x0800 /* CTRLIF_ERR_EINT1 */ | ||
4338 | #define ARIZONA_CTRLIF_ERR_EINT1_SHIFT 11 /* CTRLIF_ERR_EINT1 */ | ||
4339 | #define ARIZONA_CTRLIF_ERR_EINT1_WIDTH 1 /* CTRLIF_ERR_EINT1 */ | ||
4340 | #define ARIZONA_MIXER_DROPPED_SAMPLE_EINT1 0x0400 /* MIXER_DROPPED_SAMPLE_EINT1 */ | ||
4341 | #define ARIZONA_MIXER_DROPPED_SAMPLE_EINT1_MASK 0x0400 /* MIXER_DROPPED_SAMPLE_EINT1 */ | ||
4342 | #define ARIZONA_MIXER_DROPPED_SAMPLE_EINT1_SHIFT 10 /* MIXER_DROPPED_SAMPLE_EINT1 */ | ||
4343 | #define ARIZONA_MIXER_DROPPED_SAMPLE_EINT1_WIDTH 1 /* MIXER_DROPPED_SAMPLE_EINT1 */ | ||
4344 | #define ARIZONA_ASYNC_CLK_ENA_LOW_EINT1 0x0200 /* ASYNC_CLK_ENA_LOW_EINT1 */ | ||
4345 | #define ARIZONA_ASYNC_CLK_ENA_LOW_EINT1_MASK 0x0200 /* ASYNC_CLK_ENA_LOW_EINT1 */ | ||
4346 | #define ARIZONA_ASYNC_CLK_ENA_LOW_EINT1_SHIFT 9 /* ASYNC_CLK_ENA_LOW_EINT1 */ | ||
4347 | #define ARIZONA_ASYNC_CLK_ENA_LOW_EINT1_WIDTH 1 /* ASYNC_CLK_ENA_LOW_EINT1 */ | ||
4348 | #define ARIZONA_SYSCLK_ENA_LOW_EINT1 0x0100 /* SYSCLK_ENA_LOW_EINT1 */ | ||
4349 | #define ARIZONA_SYSCLK_ENA_LOW_EINT1_MASK 0x0100 /* SYSCLK_ENA_LOW_EINT1 */ | ||
4350 | #define ARIZONA_SYSCLK_ENA_LOW_EINT1_SHIFT 8 /* SYSCLK_ENA_LOW_EINT1 */ | ||
4351 | #define ARIZONA_SYSCLK_ENA_LOW_EINT1_WIDTH 1 /* SYSCLK_ENA_LOW_EINT1 */ | ||
4352 | #define ARIZONA_ISRC1_CFG_ERR_EINT1 0x0080 /* ISRC1_CFG_ERR_EINT1 */ | ||
4353 | #define ARIZONA_ISRC1_CFG_ERR_EINT1_MASK 0x0080 /* ISRC1_CFG_ERR_EINT1 */ | ||
4354 | #define ARIZONA_ISRC1_CFG_ERR_EINT1_SHIFT 7 /* ISRC1_CFG_ERR_EINT1 */ | ||
4355 | #define ARIZONA_ISRC1_CFG_ERR_EINT1_WIDTH 1 /* ISRC1_CFG_ERR_EINT1 */ | ||
4356 | #define ARIZONA_ISRC2_CFG_ERR_EINT1 0x0040 /* ISRC2_CFG_ERR_EINT1 */ | ||
4357 | #define ARIZONA_ISRC2_CFG_ERR_EINT1_MASK 0x0040 /* ISRC2_CFG_ERR_EINT1 */ | ||
4358 | #define ARIZONA_ISRC2_CFG_ERR_EINT1_SHIFT 6 /* ISRC2_CFG_ERR_EINT1 */ | ||
4359 | #define ARIZONA_ISRC2_CFG_ERR_EINT1_WIDTH 1 /* ISRC2_CFG_ERR_EINT1 */ | ||
4360 | |||
4361 | /* | ||
4362 | * R3332 (0xD04) - Interrupt Status 5 | ||
4363 | */ | ||
4364 | #define ARIZONA_BOOT_DONE_EINT1 0x0100 /* BOOT_DONE_EINT1 */ | ||
4365 | #define ARIZONA_BOOT_DONE_EINT1_MASK 0x0100 /* BOOT_DONE_EINT1 */ | ||
4366 | #define ARIZONA_BOOT_DONE_EINT1_SHIFT 8 /* BOOT_DONE_EINT1 */ | ||
4367 | #define ARIZONA_BOOT_DONE_EINT1_WIDTH 1 /* BOOT_DONE_EINT1 */ | ||
4368 | #define ARIZONA_DCS_DAC_DONE_EINT1 0x0080 /* DCS_DAC_DONE_EINT1 */ | ||
4369 | #define ARIZONA_DCS_DAC_DONE_EINT1_MASK 0x0080 /* DCS_DAC_DONE_EINT1 */ | ||
4370 | #define ARIZONA_DCS_DAC_DONE_EINT1_SHIFT 7 /* DCS_DAC_DONE_EINT1 */ | ||
4371 | #define ARIZONA_DCS_DAC_DONE_EINT1_WIDTH 1 /* DCS_DAC_DONE_EINT1 */ | ||
4372 | #define ARIZONA_DCS_HP_DONE_EINT1 0x0040 /* DCS_HP_DONE_EINT1 */ | ||
4373 | #define ARIZONA_DCS_HP_DONE_EINT1_MASK 0x0040 /* DCS_HP_DONE_EINT1 */ | ||
4374 | #define ARIZONA_DCS_HP_DONE_EINT1_SHIFT 6 /* DCS_HP_DONE_EINT1 */ | ||
4375 | #define ARIZONA_DCS_HP_DONE_EINT1_WIDTH 1 /* DCS_HP_DONE_EINT1 */ | ||
4376 | #define ARIZONA_FLL2_CLOCK_OK_EINT1 0x0002 /* FLL2_CLOCK_OK_EINT1 */ | ||
4377 | #define ARIZONA_FLL2_CLOCK_OK_EINT1_MASK 0x0002 /* FLL2_CLOCK_OK_EINT1 */ | ||
4378 | #define ARIZONA_FLL2_CLOCK_OK_EINT1_SHIFT 1 /* FLL2_CLOCK_OK_EINT1 */ | ||
4379 | #define ARIZONA_FLL2_CLOCK_OK_EINT1_WIDTH 1 /* FLL2_CLOCK_OK_EINT1 */ | ||
4380 | #define ARIZONA_FLL1_CLOCK_OK_EINT1 0x0001 /* FLL1_CLOCK_OK_EINT1 */ | ||
4381 | #define ARIZONA_FLL1_CLOCK_OK_EINT1_MASK 0x0001 /* FLL1_CLOCK_OK_EINT1 */ | ||
4382 | #define ARIZONA_FLL1_CLOCK_OK_EINT1_SHIFT 0 /* FLL1_CLOCK_OK_EINT1 */ | ||
4383 | #define ARIZONA_FLL1_CLOCK_OK_EINT1_WIDTH 1 /* FLL1_CLOCK_OK_EINT1 */ | ||
4384 | |||
4385 | /* | ||
4386 | * R3336 (0xD08) - Interrupt Status 1 Mask | ||
4387 | */ | ||
4388 | #define ARIZONA_IM_GP4_EINT1 0x0008 /* IM_GP4_EINT1 */ | ||
4389 | #define ARIZONA_IM_GP4_EINT1_MASK 0x0008 /* IM_GP4_EINT1 */ | ||
4390 | #define ARIZONA_IM_GP4_EINT1_SHIFT 3 /* IM_GP4_EINT1 */ | ||
4391 | #define ARIZONA_IM_GP4_EINT1_WIDTH 1 /* IM_GP4_EINT1 */ | ||
4392 | #define ARIZONA_IM_GP3_EINT1 0x0004 /* IM_GP3_EINT1 */ | ||
4393 | #define ARIZONA_IM_GP3_EINT1_MASK 0x0004 /* IM_GP3_EINT1 */ | ||
4394 | #define ARIZONA_IM_GP3_EINT1_SHIFT 2 /* IM_GP3_EINT1 */ | ||
4395 | #define ARIZONA_IM_GP3_EINT1_WIDTH 1 /* IM_GP3_EINT1 */ | ||
4396 | #define ARIZONA_IM_GP2_EINT1 0x0002 /* IM_GP2_EINT1 */ | ||
4397 | #define ARIZONA_IM_GP2_EINT1_MASK 0x0002 /* IM_GP2_EINT1 */ | ||
4398 | #define ARIZONA_IM_GP2_EINT1_SHIFT 1 /* IM_GP2_EINT1 */ | ||
4399 | #define ARIZONA_IM_GP2_EINT1_WIDTH 1 /* IM_GP2_EINT1 */ | ||
4400 | #define ARIZONA_IM_GP1_EINT1 0x0001 /* IM_GP1_EINT1 */ | ||
4401 | #define ARIZONA_IM_GP1_EINT1_MASK 0x0001 /* IM_GP1_EINT1 */ | ||
4402 | #define ARIZONA_IM_GP1_EINT1_SHIFT 0 /* IM_GP1_EINT1 */ | ||
4403 | #define ARIZONA_IM_GP1_EINT1_WIDTH 1 /* IM_GP1_EINT1 */ | ||
4404 | |||
4405 | /* | ||
4406 | * R3337 (0xD09) - Interrupt Status 2 Mask | ||
4407 | */ | ||
4408 | #define ARIZONA_IM_DSP1_RAM_RDY_EINT1 0x0100 /* IM_DSP1_RAM_RDY_EINT1 */ | ||
4409 | #define ARIZONA_IM_DSP1_RAM_RDY_EINT1_MASK 0x0100 /* IM_DSP1_RAM_RDY_EINT1 */ | ||
4410 | #define ARIZONA_IM_DSP1_RAM_RDY_EINT1_SHIFT 8 /* IM_DSP1_RAM_RDY_EINT1 */ | ||
4411 | #define ARIZONA_IM_DSP1_RAM_RDY_EINT1_WIDTH 1 /* IM_DSP1_RAM_RDY_EINT1 */ | ||
4412 | #define ARIZONA_IM_DSP_IRQ2_EINT1 0x0002 /* IM_DSP_IRQ2_EINT1 */ | ||
4413 | #define ARIZONA_IM_DSP_IRQ2_EINT1_MASK 0x0002 /* IM_DSP_IRQ2_EINT1 */ | ||
4414 | #define ARIZONA_IM_DSP_IRQ2_EINT1_SHIFT 1 /* IM_DSP_IRQ2_EINT1 */ | ||
4415 | #define ARIZONA_IM_DSP_IRQ2_EINT1_WIDTH 1 /* IM_DSP_IRQ2_EINT1 */ | ||
4416 | #define ARIZONA_IM_DSP_IRQ1_EINT1 0x0001 /* IM_DSP_IRQ1_EINT1 */ | ||
4417 | #define ARIZONA_IM_DSP_IRQ1_EINT1_MASK 0x0001 /* IM_DSP_IRQ1_EINT1 */ | ||
4418 | #define ARIZONA_IM_DSP_IRQ1_EINT1_SHIFT 0 /* IM_DSP_IRQ1_EINT1 */ | ||
4419 | #define ARIZONA_IM_DSP_IRQ1_EINT1_WIDTH 1 /* IM_DSP_IRQ1_EINT1 */ | ||
4420 | |||
4421 | /* | ||
4422 | * R3338 (0xD0A) - Interrupt Status 3 Mask | ||
4423 | */ | ||
4424 | #define ARIZONA_IM_SPK_SHUTDOWN_WARN_EINT1 0x8000 /* IM_SPK_SHUTDOWN_WARN_EINT1 */ | ||
4425 | #define ARIZONA_IM_SPK_SHUTDOWN_WARN_EINT1_MASK 0x8000 /* IM_SPK_SHUTDOWN_WARN_EINT1 */ | ||
4426 | #define ARIZONA_IM_SPK_SHUTDOWN_WARN_EINT1_SHIFT 15 /* IM_SPK_SHUTDOWN_WARN_EINT1 */ | ||
4427 | #define ARIZONA_IM_SPK_SHUTDOWN_WARN_EINT1_WIDTH 1 /* IM_SPK_SHUTDOWN_WARN_EINT1 */ | ||
4428 | #define ARIZONA_IM_SPK_SHUTDOWN_EINT1 0x4000 /* IM_SPK_SHUTDOWN_EINT1 */ | ||
4429 | #define ARIZONA_IM_SPK_SHUTDOWN_EINT1_MASK 0x4000 /* IM_SPK_SHUTDOWN_EINT1 */ | ||
4430 | #define ARIZONA_IM_SPK_SHUTDOWN_EINT1_SHIFT 14 /* IM_SPK_SHUTDOWN_EINT1 */ | ||
4431 | #define ARIZONA_IM_SPK_SHUTDOWN_EINT1_WIDTH 1 /* IM_SPK_SHUTDOWN_EINT1 */ | ||
4432 | #define ARIZONA_IM_HPDET_EINT1 0x2000 /* IM_HPDET_EINT1 */ | ||
4433 | #define ARIZONA_IM_HPDET_EINT1_MASK 0x2000 /* IM_HPDET_EINT1 */ | ||
4434 | #define ARIZONA_IM_HPDET_EINT1_SHIFT 13 /* IM_HPDET_EINT1 */ | ||
4435 | #define ARIZONA_IM_HPDET_EINT1_WIDTH 1 /* IM_HPDET_EINT1 */ | ||
4436 | #define ARIZONA_IM_MICDET_EINT1 0x1000 /* IM_MICDET_EINT1 */ | ||
4437 | #define ARIZONA_IM_MICDET_EINT1_MASK 0x1000 /* IM_MICDET_EINT1 */ | ||
4438 | #define ARIZONA_IM_MICDET_EINT1_SHIFT 12 /* IM_MICDET_EINT1 */ | ||
4439 | #define ARIZONA_IM_MICDET_EINT1_WIDTH 1 /* IM_MICDET_EINT1 */ | ||
4440 | #define ARIZONA_IM_WSEQ_DONE_EINT1 0x0800 /* IM_WSEQ_DONE_EINT1 */ | ||
4441 | #define ARIZONA_IM_WSEQ_DONE_EINT1_MASK 0x0800 /* IM_WSEQ_DONE_EINT1 */ | ||
4442 | #define ARIZONA_IM_WSEQ_DONE_EINT1_SHIFT 11 /* IM_WSEQ_DONE_EINT1 */ | ||
4443 | #define ARIZONA_IM_WSEQ_DONE_EINT1_WIDTH 1 /* IM_WSEQ_DONE_EINT1 */ | ||
4444 | #define ARIZONA_IM_DRC2_SIG_DET_EINT1 0x0400 /* IM_DRC2_SIG_DET_EINT1 */ | ||
4445 | #define ARIZONA_IM_DRC2_SIG_DET_EINT1_MASK 0x0400 /* IM_DRC2_SIG_DET_EINT1 */ | ||
4446 | #define ARIZONA_IM_DRC2_SIG_DET_EINT1_SHIFT 10 /* IM_DRC2_SIG_DET_EINT1 */ | ||
4447 | #define ARIZONA_IM_DRC2_SIG_DET_EINT1_WIDTH 1 /* IM_DRC2_SIG_DET_EINT1 */ | ||
4448 | #define ARIZONA_IM_DRC1_SIG_DET_EINT1 0x0200 /* IM_DRC1_SIG_DET_EINT1 */ | ||
4449 | #define ARIZONA_IM_DRC1_SIG_DET_EINT1_MASK 0x0200 /* IM_DRC1_SIG_DET_EINT1 */ | ||
4450 | #define ARIZONA_IM_DRC1_SIG_DET_EINT1_SHIFT 9 /* IM_DRC1_SIG_DET_EINT1 */ | ||
4451 | #define ARIZONA_IM_DRC1_SIG_DET_EINT1_WIDTH 1 /* IM_DRC1_SIG_DET_EINT1 */ | ||
4452 | #define ARIZONA_IM_ASRC2_LOCK_EINT1 0x0100 /* IM_ASRC2_LOCK_EINT1 */ | ||
4453 | #define ARIZONA_IM_ASRC2_LOCK_EINT1_MASK 0x0100 /* IM_ASRC2_LOCK_EINT1 */ | ||
4454 | #define ARIZONA_IM_ASRC2_LOCK_EINT1_SHIFT 8 /* IM_ASRC2_LOCK_EINT1 */ | ||
4455 | #define ARIZONA_IM_ASRC2_LOCK_EINT1_WIDTH 1 /* IM_ASRC2_LOCK_EINT1 */ | ||
4456 | #define ARIZONA_IM_ASRC1_LOCK_EINT1 0x0080 /* IM_ASRC1_LOCK_EINT1 */ | ||
4457 | #define ARIZONA_IM_ASRC1_LOCK_EINT1_MASK 0x0080 /* IM_ASRC1_LOCK_EINT1 */ | ||
4458 | #define ARIZONA_IM_ASRC1_LOCK_EINT1_SHIFT 7 /* IM_ASRC1_LOCK_EINT1 */ | ||
4459 | #define ARIZONA_IM_ASRC1_LOCK_EINT1_WIDTH 1 /* IM_ASRC1_LOCK_EINT1 */ | ||
4460 | #define ARIZONA_IM_UNDERCLOCKED_EINT1 0x0040 /* IM_UNDERCLOCKED_EINT1 */ | ||
4461 | #define ARIZONA_IM_UNDERCLOCKED_EINT1_MASK 0x0040 /* IM_UNDERCLOCKED_EINT1 */ | ||
4462 | #define ARIZONA_IM_UNDERCLOCKED_EINT1_SHIFT 6 /* IM_UNDERCLOCKED_EINT1 */ | ||
4463 | #define ARIZONA_IM_UNDERCLOCKED_EINT1_WIDTH 1 /* IM_UNDERCLOCKED_EINT1 */ | ||
4464 | #define ARIZONA_IM_OVERCLOCKED_EINT1 0x0020 /* IM_OVERCLOCKED_EINT1 */ | ||
4465 | #define ARIZONA_IM_OVERCLOCKED_EINT1_MASK 0x0020 /* IM_OVERCLOCKED_EINT1 */ | ||
4466 | #define ARIZONA_IM_OVERCLOCKED_EINT1_SHIFT 5 /* IM_OVERCLOCKED_EINT1 */ | ||
4467 | #define ARIZONA_IM_OVERCLOCKED_EINT1_WIDTH 1 /* IM_OVERCLOCKED_EINT1 */ | ||
4468 | #define ARIZONA_IM_FLL2_LOCK_EINT1 0x0008 /* IM_FLL2_LOCK_EINT1 */ | ||
4469 | #define ARIZONA_IM_FLL2_LOCK_EINT1_MASK 0x0008 /* IM_FLL2_LOCK_EINT1 */ | ||
4470 | #define ARIZONA_IM_FLL2_LOCK_EINT1_SHIFT 3 /* IM_FLL2_LOCK_EINT1 */ | ||
4471 | #define ARIZONA_IM_FLL2_LOCK_EINT1_WIDTH 1 /* IM_FLL2_LOCK_EINT1 */ | ||
4472 | #define ARIZONA_IM_FLL1_LOCK_EINT1 0x0004 /* IM_FLL1_LOCK_EINT1 */ | ||
4473 | #define ARIZONA_IM_FLL1_LOCK_EINT1_MASK 0x0004 /* IM_FLL1_LOCK_EINT1 */ | ||
4474 | #define ARIZONA_IM_FLL1_LOCK_EINT1_SHIFT 2 /* IM_FLL1_LOCK_EINT1 */ | ||
4475 | #define ARIZONA_IM_FLL1_LOCK_EINT1_WIDTH 1 /* IM_FLL1_LOCK_EINT1 */ | ||
4476 | #define ARIZONA_IM_CLKGEN_ERR_EINT1 0x0002 /* IM_CLKGEN_ERR_EINT1 */ | ||
4477 | #define ARIZONA_IM_CLKGEN_ERR_EINT1_MASK 0x0002 /* IM_CLKGEN_ERR_EINT1 */ | ||
4478 | #define ARIZONA_IM_CLKGEN_ERR_EINT1_SHIFT 1 /* IM_CLKGEN_ERR_EINT1 */ | ||
4479 | #define ARIZONA_IM_CLKGEN_ERR_EINT1_WIDTH 1 /* IM_CLKGEN_ERR_EINT1 */ | ||
4480 | #define ARIZONA_IM_CLKGEN_ERR_ASYNC_EINT1 0x0001 /* IM_CLKGEN_ERR_ASYNC_EINT1 */ | ||
4481 | #define ARIZONA_IM_CLKGEN_ERR_ASYNC_EINT1_MASK 0x0001 /* IM_CLKGEN_ERR_ASYNC_EINT1 */ | ||
4482 | #define ARIZONA_IM_CLKGEN_ERR_ASYNC_EINT1_SHIFT 0 /* IM_CLKGEN_ERR_ASYNC_EINT1 */ | ||
4483 | #define ARIZONA_IM_CLKGEN_ERR_ASYNC_EINT1_WIDTH 1 /* IM_CLKGEN_ERR_ASYNC_EINT1 */ | ||
4484 | |||
4485 | /* | ||
4486 | * R3339 (0xD0B) - Interrupt Status 4 Mask | ||
4487 | */ | ||
4488 | #define ARIZONA_IM_ASRC_CFG_ERR_EINT1 0x8000 /* IM_ASRC_CFG_ERR_EINT1 */ | ||
4489 | #define ARIZONA_IM_ASRC_CFG_ERR_EINT1_MASK 0x8000 /* IM_ASRC_CFG_ERR_EINT1 */ | ||
4490 | #define ARIZONA_IM_ASRC_CFG_ERR_EINT1_SHIFT 15 /* IM_ASRC_CFG_ERR_EINT1 */ | ||
4491 | #define ARIZONA_IM_ASRC_CFG_ERR_EINT1_WIDTH 1 /* IM_ASRC_CFG_ERR_EINT1 */ | ||
4492 | #define ARIZONA_IM_AIF3_ERR_EINT1 0x4000 /* IM_AIF3_ERR_EINT1 */ | ||
4493 | #define ARIZONA_IM_AIF3_ERR_EINT1_MASK 0x4000 /* IM_AIF3_ERR_EINT1 */ | ||
4494 | #define ARIZONA_IM_AIF3_ERR_EINT1_SHIFT 14 /* IM_AIF3_ERR_EINT1 */ | ||
4495 | #define ARIZONA_IM_AIF3_ERR_EINT1_WIDTH 1 /* IM_AIF3_ERR_EINT1 */ | ||
4496 | #define ARIZONA_IM_AIF2_ERR_EINT1 0x2000 /* IM_AIF2_ERR_EINT1 */ | ||
4497 | #define ARIZONA_IM_AIF2_ERR_EINT1_MASK 0x2000 /* IM_AIF2_ERR_EINT1 */ | ||
4498 | #define ARIZONA_IM_AIF2_ERR_EINT1_SHIFT 13 /* IM_AIF2_ERR_EINT1 */ | ||
4499 | #define ARIZONA_IM_AIF2_ERR_EINT1_WIDTH 1 /* IM_AIF2_ERR_EINT1 */ | ||
4500 | #define ARIZONA_IM_AIF1_ERR_EINT1 0x1000 /* IM_AIF1_ERR_EINT1 */ | ||
4501 | #define ARIZONA_IM_AIF1_ERR_EINT1_MASK 0x1000 /* IM_AIF1_ERR_EINT1 */ | ||
4502 | #define ARIZONA_IM_AIF1_ERR_EINT1_SHIFT 12 /* IM_AIF1_ERR_EINT1 */ | ||
4503 | #define ARIZONA_IM_AIF1_ERR_EINT1_WIDTH 1 /* IM_AIF1_ERR_EINT1 */ | ||
4504 | #define ARIZONA_IM_CTRLIF_ERR_EINT1 0x0800 /* IM_CTRLIF_ERR_EINT1 */ | ||
4505 | #define ARIZONA_IM_CTRLIF_ERR_EINT1_MASK 0x0800 /* IM_CTRLIF_ERR_EINT1 */ | ||
4506 | #define ARIZONA_IM_CTRLIF_ERR_EINT1_SHIFT 11 /* IM_CTRLIF_ERR_EINT1 */ | ||
4507 | #define ARIZONA_IM_CTRLIF_ERR_EINT1_WIDTH 1 /* IM_CTRLIF_ERR_EINT1 */ | ||
4508 | #define ARIZONA_IM_MIXER_DROPPED_SAMPLE_EINT1 0x0400 /* IM_MIXER_DROPPED_SAMPLE_EINT1 */ | ||
4509 | #define ARIZONA_IM_MIXER_DROPPED_SAMPLE_EINT1_MASK 0x0400 /* IM_MIXER_DROPPED_SAMPLE_EINT1 */ | ||
4510 | #define ARIZONA_IM_MIXER_DROPPED_SAMPLE_EINT1_SHIFT 10 /* IM_MIXER_DROPPED_SAMPLE_EINT1 */ | ||
4511 | #define ARIZONA_IM_MIXER_DROPPED_SAMPLE_EINT1_WIDTH 1 /* IM_MIXER_DROPPED_SAMPLE_EINT1 */ | ||
4512 | #define ARIZONA_IM_ASYNC_CLK_ENA_LOW_EINT1 0x0200 /* IM_ASYNC_CLK_ENA_LOW_EINT1 */ | ||
4513 | #define ARIZONA_IM_ASYNC_CLK_ENA_LOW_EINT1_MASK 0x0200 /* IM_ASYNC_CLK_ENA_LOW_EINT1 */ | ||
4514 | #define ARIZONA_IM_ASYNC_CLK_ENA_LOW_EINT1_SHIFT 9 /* IM_ASYNC_CLK_ENA_LOW_EINT1 */ | ||
4515 | #define ARIZONA_IM_ASYNC_CLK_ENA_LOW_EINT1_WIDTH 1 /* IM_ASYNC_CLK_ENA_LOW_EINT1 */ | ||
4516 | #define ARIZONA_IM_SYSCLK_ENA_LOW_EINT1 0x0100 /* IM_SYSCLK_ENA_LOW_EINT1 */ | ||
4517 | #define ARIZONA_IM_SYSCLK_ENA_LOW_EINT1_MASK 0x0100 /* IM_SYSCLK_ENA_LOW_EINT1 */ | ||
4518 | #define ARIZONA_IM_SYSCLK_ENA_LOW_EINT1_SHIFT 8 /* IM_SYSCLK_ENA_LOW_EINT1 */ | ||
4519 | #define ARIZONA_IM_SYSCLK_ENA_LOW_EINT1_WIDTH 1 /* IM_SYSCLK_ENA_LOW_EINT1 */ | ||
4520 | #define ARIZONA_IM_ISRC1_CFG_ERR_EINT1 0x0080 /* IM_ISRC1_CFG_ERR_EINT1 */ | ||
4521 | #define ARIZONA_IM_ISRC1_CFG_ERR_EINT1_MASK 0x0080 /* IM_ISRC1_CFG_ERR_EINT1 */ | ||
4522 | #define ARIZONA_IM_ISRC1_CFG_ERR_EINT1_SHIFT 7 /* IM_ISRC1_CFG_ERR_EINT1 */ | ||
4523 | #define ARIZONA_IM_ISRC1_CFG_ERR_EINT1_WIDTH 1 /* IM_ISRC1_CFG_ERR_EINT1 */ | ||
4524 | #define ARIZONA_IM_ISRC2_CFG_ERR_EINT1 0x0040 /* IM_ISRC2_CFG_ERR_EINT1 */ | ||
4525 | #define ARIZONA_IM_ISRC2_CFG_ERR_EINT1_MASK 0x0040 /* IM_ISRC2_CFG_ERR_EINT1 */ | ||
4526 | #define ARIZONA_IM_ISRC2_CFG_ERR_EINT1_SHIFT 6 /* IM_ISRC2_CFG_ERR_EINT1 */ | ||
4527 | #define ARIZONA_IM_ISRC2_CFG_ERR_EINT1_WIDTH 1 /* IM_ISRC2_CFG_ERR_EINT1 */ | ||
4528 | |||
4529 | /* | ||
4530 | * R3340 (0xD0C) - Interrupt Status 5 Mask | ||
4531 | */ | ||
4532 | #define ARIZONA_IM_BOOT_DONE_EINT1 0x0100 /* IM_BOOT_DONE_EINT1 */ | ||
4533 | #define ARIZONA_IM_BOOT_DONE_EINT1_MASK 0x0100 /* IM_BOOT_DONE_EINT1 */ | ||
4534 | #define ARIZONA_IM_BOOT_DONE_EINT1_SHIFT 8 /* IM_BOOT_DONE_EINT1 */ | ||
4535 | #define ARIZONA_IM_BOOT_DONE_EINT1_WIDTH 1 /* IM_BOOT_DONE_EINT1 */ | ||
4536 | #define ARIZONA_IM_DCS_DAC_DONE_EINT1 0x0080 /* IM_DCS_DAC_DONE_EINT1 */ | ||
4537 | #define ARIZONA_IM_DCS_DAC_DONE_EINT1_MASK 0x0080 /* IM_DCS_DAC_DONE_EINT1 */ | ||
4538 | #define ARIZONA_IM_DCS_DAC_DONE_EINT1_SHIFT 7 /* IM_DCS_DAC_DONE_EINT1 */ | ||
4539 | #define ARIZONA_IM_DCS_DAC_DONE_EINT1_WIDTH 1 /* IM_DCS_DAC_DONE_EINT1 */ | ||
4540 | #define ARIZONA_IM_DCS_HP_DONE_EINT1 0x0040 /* IM_DCS_HP_DONE_EINT1 */ | ||
4541 | #define ARIZONA_IM_DCS_HP_DONE_EINT1_MASK 0x0040 /* IM_DCS_HP_DONE_EINT1 */ | ||
4542 | #define ARIZONA_IM_DCS_HP_DONE_EINT1_SHIFT 6 /* IM_DCS_HP_DONE_EINT1 */ | ||
4543 | #define ARIZONA_IM_DCS_HP_DONE_EINT1_WIDTH 1 /* IM_DCS_HP_DONE_EINT1 */ | ||
4544 | #define ARIZONA_IM_FLL2_CLOCK_OK_EINT1 0x0002 /* IM_FLL2_CLOCK_OK_EINT1 */ | ||
4545 | #define ARIZONA_IM_FLL2_CLOCK_OK_EINT1_MASK 0x0002 /* IM_FLL2_CLOCK_OK_EINT1 */ | ||
4546 | #define ARIZONA_IM_FLL2_CLOCK_OK_EINT1_SHIFT 1 /* IM_FLL2_CLOCK_OK_EINT1 */ | ||
4547 | #define ARIZONA_IM_FLL2_CLOCK_OK_EINT1_WIDTH 1 /* IM_FLL2_CLOCK_OK_EINT1 */ | ||
4548 | #define ARIZONA_IM_FLL1_CLOCK_OK_EINT1 0x0001 /* IM_FLL1_CLOCK_OK_EINT1 */ | ||
4549 | #define ARIZONA_IM_FLL1_CLOCK_OK_EINT1_MASK 0x0001 /* IM_FLL1_CLOCK_OK_EINT1 */ | ||
4550 | #define ARIZONA_IM_FLL1_CLOCK_OK_EINT1_SHIFT 0 /* IM_FLL1_CLOCK_OK_EINT1 */ | ||
4551 | #define ARIZONA_IM_FLL1_CLOCK_OK_EINT1_WIDTH 1 /* IM_FLL1_CLOCK_OK_EINT1 */ | ||
4552 | |||
4553 | /* | ||
4554 | * R3343 (0xD0F) - Interrupt Control | ||
4555 | */ | ||
4556 | #define ARIZONA_IM_IRQ1 0x0001 /* IM_IRQ1 */ | ||
4557 | #define ARIZONA_IM_IRQ1_MASK 0x0001 /* IM_IRQ1 */ | ||
4558 | #define ARIZONA_IM_IRQ1_SHIFT 0 /* IM_IRQ1 */ | ||
4559 | #define ARIZONA_IM_IRQ1_WIDTH 1 /* IM_IRQ1 */ | ||
4560 | |||
4561 | /* | ||
4562 | * R3344 (0xD10) - IRQ2 Status 1 | ||
4563 | */ | ||
4564 | #define ARIZONA_GP4_EINT2 0x0008 /* GP4_EINT2 */ | ||
4565 | #define ARIZONA_GP4_EINT2_MASK 0x0008 /* GP4_EINT2 */ | ||
4566 | #define ARIZONA_GP4_EINT2_SHIFT 3 /* GP4_EINT2 */ | ||
4567 | #define ARIZONA_GP4_EINT2_WIDTH 1 /* GP4_EINT2 */ | ||
4568 | #define ARIZONA_GP3_EINT2 0x0004 /* GP3_EINT2 */ | ||
4569 | #define ARIZONA_GP3_EINT2_MASK 0x0004 /* GP3_EINT2 */ | ||
4570 | #define ARIZONA_GP3_EINT2_SHIFT 2 /* GP3_EINT2 */ | ||
4571 | #define ARIZONA_GP3_EINT2_WIDTH 1 /* GP3_EINT2 */ | ||
4572 | #define ARIZONA_GP2_EINT2 0x0002 /* GP2_EINT2 */ | ||
4573 | #define ARIZONA_GP2_EINT2_MASK 0x0002 /* GP2_EINT2 */ | ||
4574 | #define ARIZONA_GP2_EINT2_SHIFT 1 /* GP2_EINT2 */ | ||
4575 | #define ARIZONA_GP2_EINT2_WIDTH 1 /* GP2_EINT2 */ | ||
4576 | #define ARIZONA_GP1_EINT2 0x0001 /* GP1_EINT2 */ | ||
4577 | #define ARIZONA_GP1_EINT2_MASK 0x0001 /* GP1_EINT2 */ | ||
4578 | #define ARIZONA_GP1_EINT2_SHIFT 0 /* GP1_EINT2 */ | ||
4579 | #define ARIZONA_GP1_EINT2_WIDTH 1 /* GP1_EINT2 */ | ||
4580 | |||
4581 | /* | ||
4582 | * R3345 (0xD11) - IRQ2 Status 2 | ||
4583 | */ | ||
4584 | #define ARIZONA_DSP1_RAM_RDY_EINT2 0x0100 /* DSP1_RAM_RDY_EINT2 */ | ||
4585 | #define ARIZONA_DSP1_RAM_RDY_EINT2_MASK 0x0100 /* DSP1_RAM_RDY_EINT2 */ | ||
4586 | #define ARIZONA_DSP1_RAM_RDY_EINT2_SHIFT 8 /* DSP1_RAM_RDY_EINT2 */ | ||
4587 | #define ARIZONA_DSP1_RAM_RDY_EINT2_WIDTH 1 /* DSP1_RAM_RDY_EINT2 */ | ||
4588 | #define ARIZONA_DSP_IRQ2_EINT2 0x0002 /* DSP_IRQ2_EINT2 */ | ||
4589 | #define ARIZONA_DSP_IRQ2_EINT2_MASK 0x0002 /* DSP_IRQ2_EINT2 */ | ||
4590 | #define ARIZONA_DSP_IRQ2_EINT2_SHIFT 1 /* DSP_IRQ2_EINT2 */ | ||
4591 | #define ARIZONA_DSP_IRQ2_EINT2_WIDTH 1 /* DSP_IRQ2_EINT2 */ | ||
4592 | #define ARIZONA_DSP_IRQ1_EINT2 0x0001 /* DSP_IRQ1_EINT2 */ | ||
4593 | #define ARIZONA_DSP_IRQ1_EINT2_MASK 0x0001 /* DSP_IRQ1_EINT2 */ | ||
4594 | #define ARIZONA_DSP_IRQ1_EINT2_SHIFT 0 /* DSP_IRQ1_EINT2 */ | ||
4595 | #define ARIZONA_DSP_IRQ1_EINT2_WIDTH 1 /* DSP_IRQ1_EINT2 */ | ||
4596 | |||
4597 | /* | ||
4598 | * R3346 (0xD12) - IRQ2 Status 3 | ||
4599 | */ | ||
4600 | #define ARIZONA_SPK_SHUTDOWN_WARN_EINT2 0x8000 /* SPK_SHUTDOWN_WARN_EINT2 */ | ||
4601 | #define ARIZONA_SPK_SHUTDOWN_WARN_EINT2_MASK 0x8000 /* SPK_SHUTDOWN_WARN_EINT2 */ | ||
4602 | #define ARIZONA_SPK_SHUTDOWN_WARN_EINT2_SHIFT 15 /* SPK_SHUTDOWN_WARN_EINT2 */ | ||
4603 | #define ARIZONA_SPK_SHUTDOWN_WARN_EINT2_WIDTH 1 /* SPK_SHUTDOWN_WARN_EINT2 */ | ||
4604 | #define ARIZONA_SPK_SHUTDOWN_EINT2 0x4000 /* SPK_SHUTDOWN_EINT2 */ | ||
4605 | #define ARIZONA_SPK_SHUTDOWN_EINT2_MASK 0x4000 /* SPK_SHUTDOWN_EINT2 */ | ||
4606 | #define ARIZONA_SPK_SHUTDOWN_EINT2_SHIFT 14 /* SPK_SHUTDOWN_EINT2 */ | ||
4607 | #define ARIZONA_SPK_SHUTDOWN_EINT2_WIDTH 1 /* SPK_SHUTDOWN_EINT2 */ | ||
4608 | #define ARIZONA_HPDET_EINT2 0x2000 /* HPDET_EINT2 */ | ||
4609 | #define ARIZONA_HPDET_EINT2_MASK 0x2000 /* HPDET_EINT2 */ | ||
4610 | #define ARIZONA_HPDET_EINT2_SHIFT 13 /* HPDET_EINT2 */ | ||
4611 | #define ARIZONA_HPDET_EINT2_WIDTH 1 /* HPDET_EINT2 */ | ||
4612 | #define ARIZONA_MICDET_EINT2 0x1000 /* MICDET_EINT2 */ | ||
4613 | #define ARIZONA_MICDET_EINT2_MASK 0x1000 /* MICDET_EINT2 */ | ||
4614 | #define ARIZONA_MICDET_EINT2_SHIFT 12 /* MICDET_EINT2 */ | ||
4615 | #define ARIZONA_MICDET_EINT2_WIDTH 1 /* MICDET_EINT2 */ | ||
4616 | #define ARIZONA_WSEQ_DONE_EINT2 0x0800 /* WSEQ_DONE_EINT2 */ | ||
4617 | #define ARIZONA_WSEQ_DONE_EINT2_MASK 0x0800 /* WSEQ_DONE_EINT2 */ | ||
4618 | #define ARIZONA_WSEQ_DONE_EINT2_SHIFT 11 /* WSEQ_DONE_EINT2 */ | ||
4619 | #define ARIZONA_WSEQ_DONE_EINT2_WIDTH 1 /* WSEQ_DONE_EINT2 */ | ||
4620 | #define ARIZONA_DRC2_SIG_DET_EINT2 0x0400 /* DRC2_SIG_DET_EINT2 */ | ||
4621 | #define ARIZONA_DRC2_SIG_DET_EINT2_MASK 0x0400 /* DRC2_SIG_DET_EINT2 */ | ||
4622 | #define ARIZONA_DRC2_SIG_DET_EINT2_SHIFT 10 /* DRC2_SIG_DET_EINT2 */ | ||
4623 | #define ARIZONA_DRC2_SIG_DET_EINT2_WIDTH 1 /* DRC2_SIG_DET_EINT2 */ | ||
4624 | #define ARIZONA_DRC1_SIG_DET_EINT2 0x0200 /* DRC1_SIG_DET_EINT2 */ | ||
4625 | #define ARIZONA_DRC1_SIG_DET_EINT2_MASK 0x0200 /* DRC1_SIG_DET_EINT2 */ | ||
4626 | #define ARIZONA_DRC1_SIG_DET_EINT2_SHIFT 9 /* DRC1_SIG_DET_EINT2 */ | ||
4627 | #define ARIZONA_DRC1_SIG_DET_EINT2_WIDTH 1 /* DRC1_SIG_DET_EINT2 */ | ||
4628 | #define ARIZONA_ASRC2_LOCK_EINT2 0x0100 /* ASRC2_LOCK_EINT2 */ | ||
4629 | #define ARIZONA_ASRC2_LOCK_EINT2_MASK 0x0100 /* ASRC2_LOCK_EINT2 */ | ||
4630 | #define ARIZONA_ASRC2_LOCK_EINT2_SHIFT 8 /* ASRC2_LOCK_EINT2 */ | ||
4631 | #define ARIZONA_ASRC2_LOCK_EINT2_WIDTH 1 /* ASRC2_LOCK_EINT2 */ | ||
4632 | #define ARIZONA_ASRC1_LOCK_EINT2 0x0080 /* ASRC1_LOCK_EINT2 */ | ||
4633 | #define ARIZONA_ASRC1_LOCK_EINT2_MASK 0x0080 /* ASRC1_LOCK_EINT2 */ | ||
4634 | #define ARIZONA_ASRC1_LOCK_EINT2_SHIFT 7 /* ASRC1_LOCK_EINT2 */ | ||
4635 | #define ARIZONA_ASRC1_LOCK_EINT2_WIDTH 1 /* ASRC1_LOCK_EINT2 */ | ||
4636 | #define ARIZONA_UNDERCLOCKED_EINT2 0x0040 /* UNDERCLOCKED_EINT2 */ | ||
4637 | #define ARIZONA_UNDERCLOCKED_EINT2_MASK 0x0040 /* UNDERCLOCKED_EINT2 */ | ||
4638 | #define ARIZONA_UNDERCLOCKED_EINT2_SHIFT 6 /* UNDERCLOCKED_EINT2 */ | ||
4639 | #define ARIZONA_UNDERCLOCKED_EINT2_WIDTH 1 /* UNDERCLOCKED_EINT2 */ | ||
4640 | #define ARIZONA_OVERCLOCKED_EINT2 0x0020 /* OVERCLOCKED_EINT2 */ | ||
4641 | #define ARIZONA_OVERCLOCKED_EINT2_MASK 0x0020 /* OVERCLOCKED_EINT2 */ | ||
4642 | #define ARIZONA_OVERCLOCKED_EINT2_SHIFT 5 /* OVERCLOCKED_EINT2 */ | ||
4643 | #define ARIZONA_OVERCLOCKED_EINT2_WIDTH 1 /* OVERCLOCKED_EINT2 */ | ||
4644 | #define ARIZONA_FLL2_LOCK_EINT2 0x0008 /* FLL2_LOCK_EINT2 */ | ||
4645 | #define ARIZONA_FLL2_LOCK_EINT2_MASK 0x0008 /* FLL2_LOCK_EINT2 */ | ||
4646 | #define ARIZONA_FLL2_LOCK_EINT2_SHIFT 3 /* FLL2_LOCK_EINT2 */ | ||
4647 | #define ARIZONA_FLL2_LOCK_EINT2_WIDTH 1 /* FLL2_LOCK_EINT2 */ | ||
4648 | #define ARIZONA_FLL1_LOCK_EINT2 0x0004 /* FLL1_LOCK_EINT2 */ | ||
4649 | #define ARIZONA_FLL1_LOCK_EINT2_MASK 0x0004 /* FLL1_LOCK_EINT2 */ | ||
4650 | #define ARIZONA_FLL1_LOCK_EINT2_SHIFT 2 /* FLL1_LOCK_EINT2 */ | ||
4651 | #define ARIZONA_FLL1_LOCK_EINT2_WIDTH 1 /* FLL1_LOCK_EINT2 */ | ||
4652 | #define ARIZONA_CLKGEN_ERR_EINT2 0x0002 /* CLKGEN_ERR_EINT2 */ | ||
4653 | #define ARIZONA_CLKGEN_ERR_EINT2_MASK 0x0002 /* CLKGEN_ERR_EINT2 */ | ||
4654 | #define ARIZONA_CLKGEN_ERR_EINT2_SHIFT 1 /* CLKGEN_ERR_EINT2 */ | ||
4655 | #define ARIZONA_CLKGEN_ERR_EINT2_WIDTH 1 /* CLKGEN_ERR_EINT2 */ | ||
4656 | #define ARIZONA_CLKGEN_ERR_ASYNC_EINT2 0x0001 /* CLKGEN_ERR_ASYNC_EINT2 */ | ||
4657 | #define ARIZONA_CLKGEN_ERR_ASYNC_EINT2_MASK 0x0001 /* CLKGEN_ERR_ASYNC_EINT2 */ | ||
4658 | #define ARIZONA_CLKGEN_ERR_ASYNC_EINT2_SHIFT 0 /* CLKGEN_ERR_ASYNC_EINT2 */ | ||
4659 | #define ARIZONA_CLKGEN_ERR_ASYNC_EINT2_WIDTH 1 /* CLKGEN_ERR_ASYNC_EINT2 */ | ||
4660 | |||
4661 | /* | ||
4662 | * R3347 (0xD13) - IRQ2 Status 4 | ||
4663 | */ | ||
4664 | #define ARIZONA_ASRC_CFG_ERR_EINT2 0x8000 /* ASRC_CFG_ERR_EINT2 */ | ||
4665 | #define ARIZONA_ASRC_CFG_ERR_EINT2_MASK 0x8000 /* ASRC_CFG_ERR_EINT2 */ | ||
4666 | #define ARIZONA_ASRC_CFG_ERR_EINT2_SHIFT 15 /* ASRC_CFG_ERR_EINT2 */ | ||
4667 | #define ARIZONA_ASRC_CFG_ERR_EINT2_WIDTH 1 /* ASRC_CFG_ERR_EINT2 */ | ||
4668 | #define ARIZONA_AIF3_ERR_EINT2 0x4000 /* AIF3_ERR_EINT2 */ | ||
4669 | #define ARIZONA_AIF3_ERR_EINT2_MASK 0x4000 /* AIF3_ERR_EINT2 */ | ||
4670 | #define ARIZONA_AIF3_ERR_EINT2_SHIFT 14 /* AIF3_ERR_EINT2 */ | ||
4671 | #define ARIZONA_AIF3_ERR_EINT2_WIDTH 1 /* AIF3_ERR_EINT2 */ | ||
4672 | #define ARIZONA_AIF2_ERR_EINT2 0x2000 /* AIF2_ERR_EINT2 */ | ||
4673 | #define ARIZONA_AIF2_ERR_EINT2_MASK 0x2000 /* AIF2_ERR_EINT2 */ | ||
4674 | #define ARIZONA_AIF2_ERR_EINT2_SHIFT 13 /* AIF2_ERR_EINT2 */ | ||
4675 | #define ARIZONA_AIF2_ERR_EINT2_WIDTH 1 /* AIF2_ERR_EINT2 */ | ||
4676 | #define ARIZONA_AIF1_ERR_EINT2 0x1000 /* AIF1_ERR_EINT2 */ | ||
4677 | #define ARIZONA_AIF1_ERR_EINT2_MASK 0x1000 /* AIF1_ERR_EINT2 */ | ||
4678 | #define ARIZONA_AIF1_ERR_EINT2_SHIFT 12 /* AIF1_ERR_EINT2 */ | ||
4679 | #define ARIZONA_AIF1_ERR_EINT2_WIDTH 1 /* AIF1_ERR_EINT2 */ | ||
4680 | #define ARIZONA_CTRLIF_ERR_EINT2 0x0800 /* CTRLIF_ERR_EINT2 */ | ||
4681 | #define ARIZONA_CTRLIF_ERR_EINT2_MASK 0x0800 /* CTRLIF_ERR_EINT2 */ | ||
4682 | #define ARIZONA_CTRLIF_ERR_EINT2_SHIFT 11 /* CTRLIF_ERR_EINT2 */ | ||
4683 | #define ARIZONA_CTRLIF_ERR_EINT2_WIDTH 1 /* CTRLIF_ERR_EINT2 */ | ||
4684 | #define ARIZONA_MIXER_DROPPED_SAMPLE_EINT2 0x0400 /* MIXER_DROPPED_SAMPLE_EINT2 */ | ||
4685 | #define ARIZONA_MIXER_DROPPED_SAMPLE_EINT2_MASK 0x0400 /* MIXER_DROPPED_SAMPLE_EINT2 */ | ||
4686 | #define ARIZONA_MIXER_DROPPED_SAMPLE_EINT2_SHIFT 10 /* MIXER_DROPPED_SAMPLE_EINT2 */ | ||
4687 | #define ARIZONA_MIXER_DROPPED_SAMPLE_EINT2_WIDTH 1 /* MIXER_DROPPED_SAMPLE_EINT2 */ | ||
4688 | #define ARIZONA_ASYNC_CLK_ENA_LOW_EINT2 0x0200 /* ASYNC_CLK_ENA_LOW_EINT2 */ | ||
4689 | #define ARIZONA_ASYNC_CLK_ENA_LOW_EINT2_MASK 0x0200 /* ASYNC_CLK_ENA_LOW_EINT2 */ | ||
4690 | #define ARIZONA_ASYNC_CLK_ENA_LOW_EINT2_SHIFT 9 /* ASYNC_CLK_ENA_LOW_EINT2 */ | ||
4691 | #define ARIZONA_ASYNC_CLK_ENA_LOW_EINT2_WIDTH 1 /* ASYNC_CLK_ENA_LOW_EINT2 */ | ||
4692 | #define ARIZONA_SYSCLK_ENA_LOW_EINT2 0x0100 /* SYSCLK_ENA_LOW_EINT2 */ | ||
4693 | #define ARIZONA_SYSCLK_ENA_LOW_EINT2_MASK 0x0100 /* SYSCLK_ENA_LOW_EINT2 */ | ||
4694 | #define ARIZONA_SYSCLK_ENA_LOW_EINT2_SHIFT 8 /* SYSCLK_ENA_LOW_EINT2 */ | ||
4695 | #define ARIZONA_SYSCLK_ENA_LOW_EINT2_WIDTH 1 /* SYSCLK_ENA_LOW_EINT2 */ | ||
4696 | #define ARIZONA_ISRC1_CFG_ERR_EINT2 0x0080 /* ISRC1_CFG_ERR_EINT2 */ | ||
4697 | #define ARIZONA_ISRC1_CFG_ERR_EINT2_MASK 0x0080 /* ISRC1_CFG_ERR_EINT2 */ | ||
4698 | #define ARIZONA_ISRC1_CFG_ERR_EINT2_SHIFT 7 /* ISRC1_CFG_ERR_EINT2 */ | ||
4699 | #define ARIZONA_ISRC1_CFG_ERR_EINT2_WIDTH 1 /* ISRC1_CFG_ERR_EINT2 */ | ||
4700 | #define ARIZONA_ISRC2_CFG_ERR_EINT2 0x0040 /* ISRC2_CFG_ERR_EINT2 */ | ||
4701 | #define ARIZONA_ISRC2_CFG_ERR_EINT2_MASK 0x0040 /* ISRC2_CFG_ERR_EINT2 */ | ||
4702 | #define ARIZONA_ISRC2_CFG_ERR_EINT2_SHIFT 6 /* ISRC2_CFG_ERR_EINT2 */ | ||
4703 | #define ARIZONA_ISRC2_CFG_ERR_EINT2_WIDTH 1 /* ISRC2_CFG_ERR_EINT2 */ | ||
4704 | |||
4705 | /* | ||
4706 | * R3348 (0xD14) - IRQ2 Status 5 | ||
4707 | */ | ||
4708 | #define ARIZONA_BOOT_DONE_EINT2 0x0100 /* BOOT_DONE_EINT2 */ | ||
4709 | #define ARIZONA_BOOT_DONE_EINT2_MASK 0x0100 /* BOOT_DONE_EINT2 */ | ||
4710 | #define ARIZONA_BOOT_DONE_EINT2_SHIFT 8 /* BOOT_DONE_EINT2 */ | ||
4711 | #define ARIZONA_BOOT_DONE_EINT2_WIDTH 1 /* BOOT_DONE_EINT2 */ | ||
4712 | #define ARIZONA_DCS_DAC_DONE_EINT2 0x0080 /* DCS_DAC_DONE_EINT2 */ | ||
4713 | #define ARIZONA_DCS_DAC_DONE_EINT2_MASK 0x0080 /* DCS_DAC_DONE_EINT2 */ | ||
4714 | #define ARIZONA_DCS_DAC_DONE_EINT2_SHIFT 7 /* DCS_DAC_DONE_EINT2 */ | ||
4715 | #define ARIZONA_DCS_DAC_DONE_EINT2_WIDTH 1 /* DCS_DAC_DONE_EINT2 */ | ||
4716 | #define ARIZONA_DCS_HP_DONE_EINT2 0x0040 /* DCS_HP_DONE_EINT2 */ | ||
4717 | #define ARIZONA_DCS_HP_DONE_EINT2_MASK 0x0040 /* DCS_HP_DONE_EINT2 */ | ||
4718 | #define ARIZONA_DCS_HP_DONE_EINT2_SHIFT 6 /* DCS_HP_DONE_EINT2 */ | ||
4719 | #define ARIZONA_DCS_HP_DONE_EINT2_WIDTH 1 /* DCS_HP_DONE_EINT2 */ | ||
4720 | #define ARIZONA_FLL2_CLOCK_OK_EINT2 0x0002 /* FLL2_CLOCK_OK_EINT2 */ | ||
4721 | #define ARIZONA_FLL2_CLOCK_OK_EINT2_MASK 0x0002 /* FLL2_CLOCK_OK_EINT2 */ | ||
4722 | #define ARIZONA_FLL2_CLOCK_OK_EINT2_SHIFT 1 /* FLL2_CLOCK_OK_EINT2 */ | ||
4723 | #define ARIZONA_FLL2_CLOCK_OK_EINT2_WIDTH 1 /* FLL2_CLOCK_OK_EINT2 */ | ||
4724 | #define ARIZONA_FLL1_CLOCK_OK_EINT2 0x0001 /* FLL1_CLOCK_OK_EINT2 */ | ||
4725 | #define ARIZONA_FLL1_CLOCK_OK_EINT2_MASK 0x0001 /* FLL1_CLOCK_OK_EINT2 */ | ||
4726 | #define ARIZONA_FLL1_CLOCK_OK_EINT2_SHIFT 0 /* FLL1_CLOCK_OK_EINT2 */ | ||
4727 | #define ARIZONA_FLL1_CLOCK_OK_EINT2_WIDTH 1 /* FLL1_CLOCK_OK_EINT2 */ | ||
4728 | |||
4729 | /* | ||
4730 | * R3352 (0xD18) - IRQ2 Status 1 Mask | ||
4731 | */ | ||
4732 | #define ARIZONA_IM_GP4_EINT2 0x0008 /* IM_GP4_EINT2 */ | ||
4733 | #define ARIZONA_IM_GP4_EINT2_MASK 0x0008 /* IM_GP4_EINT2 */ | ||
4734 | #define ARIZONA_IM_GP4_EINT2_SHIFT 3 /* IM_GP4_EINT2 */ | ||
4735 | #define ARIZONA_IM_GP4_EINT2_WIDTH 1 /* IM_GP4_EINT2 */ | ||
4736 | #define ARIZONA_IM_GP3_EINT2 0x0004 /* IM_GP3_EINT2 */ | ||
4737 | #define ARIZONA_IM_GP3_EINT2_MASK 0x0004 /* IM_GP3_EINT2 */ | ||
4738 | #define ARIZONA_IM_GP3_EINT2_SHIFT 2 /* IM_GP3_EINT2 */ | ||
4739 | #define ARIZONA_IM_GP3_EINT2_WIDTH 1 /* IM_GP3_EINT2 */ | ||
4740 | #define ARIZONA_IM_GP2_EINT2 0x0002 /* IM_GP2_EINT2 */ | ||
4741 | #define ARIZONA_IM_GP2_EINT2_MASK 0x0002 /* IM_GP2_EINT2 */ | ||
4742 | #define ARIZONA_IM_GP2_EINT2_SHIFT 1 /* IM_GP2_EINT2 */ | ||
4743 | #define ARIZONA_IM_GP2_EINT2_WIDTH 1 /* IM_GP2_EINT2 */ | ||
4744 | #define ARIZONA_IM_GP1_EINT2 0x0001 /* IM_GP1_EINT2 */ | ||
4745 | #define ARIZONA_IM_GP1_EINT2_MASK 0x0001 /* IM_GP1_EINT2 */ | ||
4746 | #define ARIZONA_IM_GP1_EINT2_SHIFT 0 /* IM_GP1_EINT2 */ | ||
4747 | #define ARIZONA_IM_GP1_EINT2_WIDTH 1 /* IM_GP1_EINT2 */ | ||
4748 | |||
4749 | /* | ||
4750 | * R3353 (0xD19) - IRQ2 Status 2 Mask | ||
4751 | */ | ||
4752 | #define ARIZONA_IM_DSP1_RAM_RDY_EINT2 0x0100 /* IM_DSP1_RAM_RDY_EINT2 */ | ||
4753 | #define ARIZONA_IM_DSP1_RAM_RDY_EINT2_MASK 0x0100 /* IM_DSP1_RAM_RDY_EINT2 */ | ||
4754 | #define ARIZONA_IM_DSP1_RAM_RDY_EINT2_SHIFT 8 /* IM_DSP1_RAM_RDY_EINT2 */ | ||
4755 | #define ARIZONA_IM_DSP1_RAM_RDY_EINT2_WIDTH 1 /* IM_DSP1_RAM_RDY_EINT2 */ | ||
4756 | #define ARIZONA_IM_DSP_IRQ2_EINT2 0x0002 /* IM_DSP_IRQ2_EINT2 */ | ||
4757 | #define ARIZONA_IM_DSP_IRQ2_EINT2_MASK 0x0002 /* IM_DSP_IRQ2_EINT2 */ | ||
4758 | #define ARIZONA_IM_DSP_IRQ2_EINT2_SHIFT 1 /* IM_DSP_IRQ2_EINT2 */ | ||
4759 | #define ARIZONA_IM_DSP_IRQ2_EINT2_WIDTH 1 /* IM_DSP_IRQ2_EINT2 */ | ||
4760 | #define ARIZONA_IM_DSP_IRQ1_EINT2 0x0001 /* IM_DSP_IRQ1_EINT2 */ | ||
4761 | #define ARIZONA_IM_DSP_IRQ1_EINT2_MASK 0x0001 /* IM_DSP_IRQ1_EINT2 */ | ||
4762 | #define ARIZONA_IM_DSP_IRQ1_EINT2_SHIFT 0 /* IM_DSP_IRQ1_EINT2 */ | ||
4763 | #define ARIZONA_IM_DSP_IRQ1_EINT2_WIDTH 1 /* IM_DSP_IRQ1_EINT2 */ | ||
4764 | |||
4765 | /* | ||
4766 | * R3354 (0xD1A) - IRQ2 Status 3 Mask | ||
4767 | */ | ||
4768 | #define ARIZONA_IM_SPK_SHUTDOWN_WARN_EINT2 0x8000 /* IM_SPK_SHUTDOWN_WARN_EINT2 */ | ||
4769 | #define ARIZONA_IM_SPK_SHUTDOWN_WARN_EINT2_MASK 0x8000 /* IM_SPK_SHUTDOWN_WARN_EINT2 */ | ||
4770 | #define ARIZONA_IM_SPK_SHUTDOWN_WARN_EINT2_SHIFT 15 /* IM_SPK_SHUTDOWN_WARN_EINT2 */ | ||
4771 | #define ARIZONA_IM_SPK_SHUTDOWN_WARN_EINT2_WIDTH 1 /* IM_SPK_SHUTDOWN_WARN_EINT2 */ | ||
4772 | #define ARIZONA_IM_SPK_SHUTDOWN_EINT2 0x4000 /* IM_SPK_SHUTDOWN_EINT2 */ | ||
4773 | #define ARIZONA_IM_SPK_SHUTDOWN_EINT2_MASK 0x4000 /* IM_SPK_SHUTDOWN_EINT2 */ | ||
4774 | #define ARIZONA_IM_SPK_SHUTDOWN_EINT2_SHIFT 14 /* IM_SPK_SHUTDOWN_EINT2 */ | ||
4775 | #define ARIZONA_IM_SPK_SHUTDOWN_EINT2_WIDTH 1 /* IM_SPK_SHUTDOWN_EINT2 */ | ||
4776 | #define ARIZONA_IM_HPDET_EINT2 0x2000 /* IM_HPDET_EINT2 */ | ||
4777 | #define ARIZONA_IM_HPDET_EINT2_MASK 0x2000 /* IM_HPDET_EINT2 */ | ||
4778 | #define ARIZONA_IM_HPDET_EINT2_SHIFT 13 /* IM_HPDET_EINT2 */ | ||
4779 | #define ARIZONA_IM_HPDET_EINT2_WIDTH 1 /* IM_HPDET_EINT2 */ | ||
4780 | #define ARIZONA_IM_MICDET_EINT2 0x1000 /* IM_MICDET_EINT2 */ | ||
4781 | #define ARIZONA_IM_MICDET_EINT2_MASK 0x1000 /* IM_MICDET_EINT2 */ | ||
4782 | #define ARIZONA_IM_MICDET_EINT2_SHIFT 12 /* IM_MICDET_EINT2 */ | ||
4783 | #define ARIZONA_IM_MICDET_EINT2_WIDTH 1 /* IM_MICDET_EINT2 */ | ||
4784 | #define ARIZONA_IM_WSEQ_DONE_EINT2 0x0800 /* IM_WSEQ_DONE_EINT2 */ | ||
4785 | #define ARIZONA_IM_WSEQ_DONE_EINT2_MASK 0x0800 /* IM_WSEQ_DONE_EINT2 */ | ||
4786 | #define ARIZONA_IM_WSEQ_DONE_EINT2_SHIFT 11 /* IM_WSEQ_DONE_EINT2 */ | ||
4787 | #define ARIZONA_IM_WSEQ_DONE_EINT2_WIDTH 1 /* IM_WSEQ_DONE_EINT2 */ | ||
4788 | #define ARIZONA_IM_DRC2_SIG_DET_EINT2 0x0400 /* IM_DRC2_SIG_DET_EINT2 */ | ||
4789 | #define ARIZONA_IM_DRC2_SIG_DET_EINT2_MASK 0x0400 /* IM_DRC2_SIG_DET_EINT2 */ | ||
4790 | #define ARIZONA_IM_DRC2_SIG_DET_EINT2_SHIFT 10 /* IM_DRC2_SIG_DET_EINT2 */ | ||
4791 | #define ARIZONA_IM_DRC2_SIG_DET_EINT2_WIDTH 1 /* IM_DRC2_SIG_DET_EINT2 */ | ||
4792 | #define ARIZONA_IM_DRC1_SIG_DET_EINT2 0x0200 /* IM_DRC1_SIG_DET_EINT2 */ | ||
4793 | #define ARIZONA_IM_DRC1_SIG_DET_EINT2_MASK 0x0200 /* IM_DRC1_SIG_DET_EINT2 */ | ||
4794 | #define ARIZONA_IM_DRC1_SIG_DET_EINT2_SHIFT 9 /* IM_DRC1_SIG_DET_EINT2 */ | ||
4795 | #define ARIZONA_IM_DRC1_SIG_DET_EINT2_WIDTH 1 /* IM_DRC1_SIG_DET_EINT2 */ | ||
4796 | #define ARIZONA_IM_ASRC2_LOCK_EINT2 0x0100 /* IM_ASRC2_LOCK_EINT2 */ | ||
4797 | #define ARIZONA_IM_ASRC2_LOCK_EINT2_MASK 0x0100 /* IM_ASRC2_LOCK_EINT2 */ | ||
4798 | #define ARIZONA_IM_ASRC2_LOCK_EINT2_SHIFT 8 /* IM_ASRC2_LOCK_EINT2 */ | ||
4799 | #define ARIZONA_IM_ASRC2_LOCK_EINT2_WIDTH 1 /* IM_ASRC2_LOCK_EINT2 */ | ||
4800 | #define ARIZONA_IM_ASRC1_LOCK_EINT2 0x0080 /* IM_ASRC1_LOCK_EINT2 */ | ||
4801 | #define ARIZONA_IM_ASRC1_LOCK_EINT2_MASK 0x0080 /* IM_ASRC1_LOCK_EINT2 */ | ||
4802 | #define ARIZONA_IM_ASRC1_LOCK_EINT2_SHIFT 7 /* IM_ASRC1_LOCK_EINT2 */ | ||
4803 | #define ARIZONA_IM_ASRC1_LOCK_EINT2_WIDTH 1 /* IM_ASRC1_LOCK_EINT2 */ | ||
4804 | #define ARIZONA_IM_UNDERCLOCKED_EINT2 0x0040 /* IM_UNDERCLOCKED_EINT2 */ | ||
4805 | #define ARIZONA_IM_UNDERCLOCKED_EINT2_MASK 0x0040 /* IM_UNDERCLOCKED_EINT2 */ | ||
4806 | #define ARIZONA_IM_UNDERCLOCKED_EINT2_SHIFT 6 /* IM_UNDERCLOCKED_EINT2 */ | ||
4807 | #define ARIZONA_IM_UNDERCLOCKED_EINT2_WIDTH 1 /* IM_UNDERCLOCKED_EINT2 */ | ||
4808 | #define ARIZONA_IM_OVERCLOCKED_EINT2 0x0020 /* IM_OVERCLOCKED_EINT2 */ | ||
4809 | #define ARIZONA_IM_OVERCLOCKED_EINT2_MASK 0x0020 /* IM_OVERCLOCKED_EINT2 */ | ||
4810 | #define ARIZONA_IM_OVERCLOCKED_EINT2_SHIFT 5 /* IM_OVERCLOCKED_EINT2 */ | ||
4811 | #define ARIZONA_IM_OVERCLOCKED_EINT2_WIDTH 1 /* IM_OVERCLOCKED_EINT2 */ | ||
4812 | #define ARIZONA_IM_FLL2_LOCK_EINT2 0x0008 /* IM_FLL2_LOCK_EINT2 */ | ||
4813 | #define ARIZONA_IM_FLL2_LOCK_EINT2_MASK 0x0008 /* IM_FLL2_LOCK_EINT2 */ | ||
4814 | #define ARIZONA_IM_FLL2_LOCK_EINT2_SHIFT 3 /* IM_FLL2_LOCK_EINT2 */ | ||
4815 | #define ARIZONA_IM_FLL2_LOCK_EINT2_WIDTH 1 /* IM_FLL2_LOCK_EINT2 */ | ||
4816 | #define ARIZONA_IM_FLL1_LOCK_EINT2 0x0004 /* IM_FLL1_LOCK_EINT2 */ | ||
4817 | #define ARIZONA_IM_FLL1_LOCK_EINT2_MASK 0x0004 /* IM_FLL1_LOCK_EINT2 */ | ||
4818 | #define ARIZONA_IM_FLL1_LOCK_EINT2_SHIFT 2 /* IM_FLL1_LOCK_EINT2 */ | ||
4819 | #define ARIZONA_IM_FLL1_LOCK_EINT2_WIDTH 1 /* IM_FLL1_LOCK_EINT2 */ | ||
4820 | #define ARIZONA_IM_CLKGEN_ERR_EINT2 0x0002 /* IM_CLKGEN_ERR_EINT2 */ | ||
4821 | #define ARIZONA_IM_CLKGEN_ERR_EINT2_MASK 0x0002 /* IM_CLKGEN_ERR_EINT2 */ | ||
4822 | #define ARIZONA_IM_CLKGEN_ERR_EINT2_SHIFT 1 /* IM_CLKGEN_ERR_EINT2 */ | ||
4823 | #define ARIZONA_IM_CLKGEN_ERR_EINT2_WIDTH 1 /* IM_CLKGEN_ERR_EINT2 */ | ||
4824 | #define ARIZONA_IM_CLKGEN_ERR_ASYNC_EINT2 0x0001 /* IM_CLKGEN_ERR_ASYNC_EINT2 */ | ||
4825 | #define ARIZONA_IM_CLKGEN_ERR_ASYNC_EINT2_MASK 0x0001 /* IM_CLKGEN_ERR_ASYNC_EINT2 */ | ||
4826 | #define ARIZONA_IM_CLKGEN_ERR_ASYNC_EINT2_SHIFT 0 /* IM_CLKGEN_ERR_ASYNC_EINT2 */ | ||
4827 | #define ARIZONA_IM_CLKGEN_ERR_ASYNC_EINT2_WIDTH 1 /* IM_CLKGEN_ERR_ASYNC_EINT2 */ | ||
4828 | |||
4829 | /* | ||
4830 | * R3355 (0xD1B) - IRQ2 Status 4 Mask | ||
4831 | */ | ||
4832 | #define ARIZONA_IM_ASRC_CFG_ERR_EINT2 0x8000 /* IM_ASRC_CFG_ERR_EINT2 */ | ||
4833 | #define ARIZONA_IM_ASRC_CFG_ERR_EINT2_MASK 0x8000 /* IM_ASRC_CFG_ERR_EINT2 */ | ||
4834 | #define ARIZONA_IM_ASRC_CFG_ERR_EINT2_SHIFT 15 /* IM_ASRC_CFG_ERR_EINT2 */ | ||
4835 | #define ARIZONA_IM_ASRC_CFG_ERR_EINT2_WIDTH 1 /* IM_ASRC_CFG_ERR_EINT2 */ | ||
4836 | #define ARIZONA_IM_AIF3_ERR_EINT2 0x4000 /* IM_AIF3_ERR_EINT2 */ | ||
4837 | #define ARIZONA_IM_AIF3_ERR_EINT2_MASK 0x4000 /* IM_AIF3_ERR_EINT2 */ | ||
4838 | #define ARIZONA_IM_AIF3_ERR_EINT2_SHIFT 14 /* IM_AIF3_ERR_EINT2 */ | ||
4839 | #define ARIZONA_IM_AIF3_ERR_EINT2_WIDTH 1 /* IM_AIF3_ERR_EINT2 */ | ||
4840 | #define ARIZONA_IM_AIF2_ERR_EINT2 0x2000 /* IM_AIF2_ERR_EINT2 */ | ||
4841 | #define ARIZONA_IM_AIF2_ERR_EINT2_MASK 0x2000 /* IM_AIF2_ERR_EINT2 */ | ||
4842 | #define ARIZONA_IM_AIF2_ERR_EINT2_SHIFT 13 /* IM_AIF2_ERR_EINT2 */ | ||
4843 | #define ARIZONA_IM_AIF2_ERR_EINT2_WIDTH 1 /* IM_AIF2_ERR_EINT2 */ | ||
4844 | #define ARIZONA_IM_AIF1_ERR_EINT2 0x1000 /* IM_AIF1_ERR_EINT2 */ | ||
4845 | #define ARIZONA_IM_AIF1_ERR_EINT2_MASK 0x1000 /* IM_AIF1_ERR_EINT2 */ | ||
4846 | #define ARIZONA_IM_AIF1_ERR_EINT2_SHIFT 12 /* IM_AIF1_ERR_EINT2 */ | ||
4847 | #define ARIZONA_IM_AIF1_ERR_EINT2_WIDTH 1 /* IM_AIF1_ERR_EINT2 */ | ||
4848 | #define ARIZONA_IM_CTRLIF_ERR_EINT2 0x0800 /* IM_CTRLIF_ERR_EINT2 */ | ||
4849 | #define ARIZONA_IM_CTRLIF_ERR_EINT2_MASK 0x0800 /* IM_CTRLIF_ERR_EINT2 */ | ||
4850 | #define ARIZONA_IM_CTRLIF_ERR_EINT2_SHIFT 11 /* IM_CTRLIF_ERR_EINT2 */ | ||
4851 | #define ARIZONA_IM_CTRLIF_ERR_EINT2_WIDTH 1 /* IM_CTRLIF_ERR_EINT2 */ | ||
4852 | #define ARIZONA_IM_MIXER_DROPPED_SAMPLE_EINT2 0x0400 /* IM_MIXER_DROPPED_SAMPLE_EINT2 */ | ||
4853 | #define ARIZONA_IM_MIXER_DROPPED_SAMPLE_EINT2_MASK 0x0400 /* IM_MIXER_DROPPED_SAMPLE_EINT2 */ | ||
4854 | #define ARIZONA_IM_MIXER_DROPPED_SAMPLE_EINT2_SHIFT 10 /* IM_MIXER_DROPPED_SAMPLE_EINT2 */ | ||
4855 | #define ARIZONA_IM_MIXER_DROPPED_SAMPLE_EINT2_WIDTH 1 /* IM_MIXER_DROPPED_SAMPLE_EINT2 */ | ||
4856 | #define ARIZONA_IM_ASYNC_CLK_ENA_LOW_EINT2 0x0200 /* IM_ASYNC_CLK_ENA_LOW_EINT2 */ | ||
4857 | #define ARIZONA_IM_ASYNC_CLK_ENA_LOW_EINT2_MASK 0x0200 /* IM_ASYNC_CLK_ENA_LOW_EINT2 */ | ||
4858 | #define ARIZONA_IM_ASYNC_CLK_ENA_LOW_EINT2_SHIFT 9 /* IM_ASYNC_CLK_ENA_LOW_EINT2 */ | ||
4859 | #define ARIZONA_IM_ASYNC_CLK_ENA_LOW_EINT2_WIDTH 1 /* IM_ASYNC_CLK_ENA_LOW_EINT2 */ | ||
4860 | #define ARIZONA_IM_SYSCLK_ENA_LOW_EINT2 0x0100 /* IM_SYSCLK_ENA_LOW_EINT2 */ | ||
4861 | #define ARIZONA_IM_SYSCLK_ENA_LOW_EINT2_MASK 0x0100 /* IM_SYSCLK_ENA_LOW_EINT2 */ | ||
4862 | #define ARIZONA_IM_SYSCLK_ENA_LOW_EINT2_SHIFT 8 /* IM_SYSCLK_ENA_LOW_EINT2 */ | ||
4863 | #define ARIZONA_IM_SYSCLK_ENA_LOW_EINT2_WIDTH 1 /* IM_SYSCLK_ENA_LOW_EINT2 */ | ||
4864 | #define ARIZONA_IM_ISRC1_CFG_ERR_EINT2 0x0080 /* IM_ISRC1_CFG_ERR_EINT2 */ | ||
4865 | #define ARIZONA_IM_ISRC1_CFG_ERR_EINT2_MASK 0x0080 /* IM_ISRC1_CFG_ERR_EINT2 */ | ||
4866 | #define ARIZONA_IM_ISRC1_CFG_ERR_EINT2_SHIFT 7 /* IM_ISRC1_CFG_ERR_EINT2 */ | ||
4867 | #define ARIZONA_IM_ISRC1_CFG_ERR_EINT2_WIDTH 1 /* IM_ISRC1_CFG_ERR_EINT2 */ | ||
4868 | #define ARIZONA_IM_ISRC2_CFG_ERR_EINT2 0x0040 /* IM_ISRC2_CFG_ERR_EINT2 */ | ||
4869 | #define ARIZONA_IM_ISRC2_CFG_ERR_EINT2_MASK 0x0040 /* IM_ISRC2_CFG_ERR_EINT2 */ | ||
4870 | #define ARIZONA_IM_ISRC2_CFG_ERR_EINT2_SHIFT 6 /* IM_ISRC2_CFG_ERR_EINT2 */ | ||
4871 | #define ARIZONA_IM_ISRC2_CFG_ERR_EINT2_WIDTH 1 /* IM_ISRC2_CFG_ERR_EINT2 */ | ||
4872 | |||
4873 | /* | ||
4874 | * R3356 (0xD1C) - IRQ2 Status 5 Mask | ||
4875 | */ | ||
4876 | |||
4877 | #define ARIZONA_IM_BOOT_DONE_EINT2 0x0100 /* IM_BOOT_DONE_EINT2 */ | ||
4878 | #define ARIZONA_IM_BOOT_DONE_EINT2_MASK 0x0100 /* IM_BOOT_DONE_EINT2 */ | ||
4879 | #define ARIZONA_IM_BOOT_DONE_EINT2_SHIFT 8 /* IM_BOOT_DONE_EINT2 */ | ||
4880 | #define ARIZONA_IM_BOOT_DONE_EINT2_WIDTH 1 /* IM_BOOT_DONE_EINT2 */ | ||
4881 | #define ARIZONA_IM_DCS_DAC_DONE_EINT2 0x0080 /* IM_DCS_DAC_DONE_EINT2 */ | ||
4882 | #define ARIZONA_IM_DCS_DAC_DONE_EINT2_MASK 0x0080 /* IM_DCS_DAC_DONE_EINT2 */ | ||
4883 | #define ARIZONA_IM_DCS_DAC_DONE_EINT2_SHIFT 7 /* IM_DCS_DAC_DONE_EINT2 */ | ||
4884 | #define ARIZONA_IM_DCS_DAC_DONE_EINT2_WIDTH 1 /* IM_DCS_DAC_DONE_EINT2 */ | ||
4885 | #define ARIZONA_IM_DCS_HP_DONE_EINT2 0x0040 /* IM_DCS_HP_DONE_EINT2 */ | ||
4886 | #define ARIZONA_IM_DCS_HP_DONE_EINT2_MASK 0x0040 /* IM_DCS_HP_DONE_EINT2 */ | ||
4887 | #define ARIZONA_IM_DCS_HP_DONE_EINT2_SHIFT 6 /* IM_DCS_HP_DONE_EINT2 */ | ||
4888 | #define ARIZONA_IM_DCS_HP_DONE_EINT2_WIDTH 1 /* IM_DCS_HP_DONE_EINT2 */ | ||
4889 | #define ARIZONA_IM_FLL2_CLOCK_OK_EINT2 0x0002 /* IM_FLL2_CLOCK_OK_EINT2 */ | ||
4890 | #define ARIZONA_IM_FLL2_CLOCK_OK_EINT2_MASK 0x0002 /* IM_FLL2_CLOCK_OK_EINT2 */ | ||
4891 | #define ARIZONA_IM_FLL2_CLOCK_OK_EINT2_SHIFT 1 /* IM_FLL2_CLOCK_OK_EINT2 */ | ||
4892 | #define ARIZONA_IM_FLL2_CLOCK_OK_EINT2_WIDTH 1 /* IM_FLL2_CLOCK_OK_EINT2 */ | ||
4893 | #define ARIZONA_IM_FLL1_CLOCK_OK_EINT2 0x0001 /* IM_FLL1_CLOCK_OK_EINT2 */ | ||
4894 | #define ARIZONA_IM_FLL1_CLOCK_OK_EINT2_MASK 0x0001 /* IM_FLL1_CLOCK_OK_EINT2 */ | ||
4895 | #define ARIZONA_IM_FLL1_CLOCK_OK_EINT2_SHIFT 0 /* IM_FLL1_CLOCK_OK_EINT2 */ | ||
4896 | #define ARIZONA_IM_FLL1_CLOCK_OK_EINT2_WIDTH 1 /* IM_FLL1_CLOCK_OK_EINT2 */ | ||
4897 | |||
4898 | /* | ||
4899 | * R3359 (0xD1F) - IRQ2 Control | ||
4900 | */ | ||
4901 | #define ARIZONA_IM_IRQ2 0x0001 /* IM_IRQ2 */ | ||
4902 | #define ARIZONA_IM_IRQ2_MASK 0x0001 /* IM_IRQ2 */ | ||
4903 | #define ARIZONA_IM_IRQ2_SHIFT 0 /* IM_IRQ2 */ | ||
4904 | #define ARIZONA_IM_IRQ2_WIDTH 1 /* IM_IRQ2 */ | ||
4905 | |||
4906 | /* | ||
4907 | * R3360 (0xD20) - Interrupt Raw Status 2 | ||
4908 | */ | ||
4909 | #define ARIZONA_DSP1_RAM_RDY_STS 0x0100 /* DSP1_RAM_RDY_STS */ | ||
4910 | #define ARIZONA_DSP1_RAM_RDY_STS_MASK 0x0100 /* DSP1_RAM_RDY_STS */ | ||
4911 | #define ARIZONA_DSP1_RAM_RDY_STS_SHIFT 8 /* DSP1_RAM_RDY_STS */ | ||
4912 | #define ARIZONA_DSP1_RAM_RDY_STS_WIDTH 1 /* DSP1_RAM_RDY_STS */ | ||
4913 | #define ARIZONA_DSP_IRQ2_STS 0x0002 /* DSP_IRQ2_STS */ | ||
4914 | #define ARIZONA_DSP_IRQ2_STS_MASK 0x0002 /* DSP_IRQ2_STS */ | ||
4915 | #define ARIZONA_DSP_IRQ2_STS_SHIFT 1 /* DSP_IRQ2_STS */ | ||
4916 | #define ARIZONA_DSP_IRQ2_STS_WIDTH 1 /* DSP_IRQ2_STS */ | ||
4917 | #define ARIZONA_DSP_IRQ1_STS 0x0001 /* DSP_IRQ1_STS */ | ||
4918 | #define ARIZONA_DSP_IRQ1_STS_MASK 0x0001 /* DSP_IRQ1_STS */ | ||
4919 | #define ARIZONA_DSP_IRQ1_STS_SHIFT 0 /* DSP_IRQ1_STS */ | ||
4920 | #define ARIZONA_DSP_IRQ1_STS_WIDTH 1 /* DSP_IRQ1_STS */ | ||
4921 | |||
4922 | /* | ||
4923 | * R3361 (0xD21) - Interrupt Raw Status 3 | ||
4924 | */ | ||
4925 | #define ARIZONA_SPK_SHUTDOWN_WARN_STS 0x8000 /* SPK_SHUTDOWN_WARN_STS */ | ||
4926 | #define ARIZONA_SPK_SHUTDOWN_WARN_STS_MASK 0x8000 /* SPK_SHUTDOWN_WARN_STS */ | ||
4927 | #define ARIZONA_SPK_SHUTDOWN_WARN_STS_SHIFT 15 /* SPK_SHUTDOWN_WARN_STS */ | ||
4928 | #define ARIZONA_SPK_SHUTDOWN_WARN_STS_WIDTH 1 /* SPK_SHUTDOWN_WARN_STS */ | ||
4929 | #define ARIZONA_SPK_SHUTDOWN_STS 0x4000 /* SPK_SHUTDOWN_STS */ | ||
4930 | #define ARIZONA_SPK_SHUTDOWN_STS_MASK 0x4000 /* SPK_SHUTDOWN_STS */ | ||
4931 | #define ARIZONA_SPK_SHUTDOWN_STS_SHIFT 14 /* SPK_SHUTDOWN_STS */ | ||
4932 | #define ARIZONA_SPK_SHUTDOWN_STS_WIDTH 1 /* SPK_SHUTDOWN_STS */ | ||
4933 | #define ARIZONA_HPDET_STS 0x2000 /* HPDET_STS */ | ||
4934 | #define ARIZONA_HPDET_STS_MASK 0x2000 /* HPDET_STS */ | ||
4935 | #define ARIZONA_HPDET_STS_SHIFT 13 /* HPDET_STS */ | ||
4936 | #define ARIZONA_HPDET_STS_WIDTH 1 /* HPDET_STS */ | ||
4937 | #define ARIZONA_MICDET_STS 0x1000 /* MICDET_STS */ | ||
4938 | #define ARIZONA_MICDET_STS_MASK 0x1000 /* MICDET_STS */ | ||
4939 | #define ARIZONA_MICDET_STS_SHIFT 12 /* MICDET_STS */ | ||
4940 | #define ARIZONA_MICDET_STS_WIDTH 1 /* MICDET_STS */ | ||
4941 | #define ARIZONA_WSEQ_DONE_STS 0x0800 /* WSEQ_DONE_STS */ | ||
4942 | #define ARIZONA_WSEQ_DONE_STS_MASK 0x0800 /* WSEQ_DONE_STS */ | ||
4943 | #define ARIZONA_WSEQ_DONE_STS_SHIFT 11 /* WSEQ_DONE_STS */ | ||
4944 | #define ARIZONA_WSEQ_DONE_STS_WIDTH 1 /* WSEQ_DONE_STS */ | ||
4945 | #define ARIZONA_DRC2_SIG_DET_STS 0x0400 /* DRC2_SIG_DET_STS */ | ||
4946 | #define ARIZONA_DRC2_SIG_DET_STS_MASK 0x0400 /* DRC2_SIG_DET_STS */ | ||
4947 | #define ARIZONA_DRC2_SIG_DET_STS_SHIFT 10 /* DRC2_SIG_DET_STS */ | ||
4948 | #define ARIZONA_DRC2_SIG_DET_STS_WIDTH 1 /* DRC2_SIG_DET_STS */ | ||
4949 | #define ARIZONA_DRC1_SIG_DET_STS 0x0200 /* DRC1_SIG_DET_STS */ | ||
4950 | #define ARIZONA_DRC1_SIG_DET_STS_MASK 0x0200 /* DRC1_SIG_DET_STS */ | ||
4951 | #define ARIZONA_DRC1_SIG_DET_STS_SHIFT 9 /* DRC1_SIG_DET_STS */ | ||
4952 | #define ARIZONA_DRC1_SIG_DET_STS_WIDTH 1 /* DRC1_SIG_DET_STS */ | ||
4953 | #define ARIZONA_ASRC2_LOCK_STS 0x0100 /* ASRC2_LOCK_STS */ | ||
4954 | #define ARIZONA_ASRC2_LOCK_STS_MASK 0x0100 /* ASRC2_LOCK_STS */ | ||
4955 | #define ARIZONA_ASRC2_LOCK_STS_SHIFT 8 /* ASRC2_LOCK_STS */ | ||
4956 | #define ARIZONA_ASRC2_LOCK_STS_WIDTH 1 /* ASRC2_LOCK_STS */ | ||
4957 | #define ARIZONA_ASRC1_LOCK_STS 0x0080 /* ASRC1_LOCK_STS */ | ||
4958 | #define ARIZONA_ASRC1_LOCK_STS_MASK 0x0080 /* ASRC1_LOCK_STS */ | ||
4959 | #define ARIZONA_ASRC1_LOCK_STS_SHIFT 7 /* ASRC1_LOCK_STS */ | ||
4960 | #define ARIZONA_ASRC1_LOCK_STS_WIDTH 1 /* ASRC1_LOCK_STS */ | ||
4961 | #define ARIZONA_UNDERCLOCKED_STS 0x0040 /* UNDERCLOCKED_STS */ | ||
4962 | #define ARIZONA_UNDERCLOCKED_STS_MASK 0x0040 /* UNDERCLOCKED_STS */ | ||
4963 | #define ARIZONA_UNDERCLOCKED_STS_SHIFT 6 /* UNDERCLOCKED_STS */ | ||
4964 | #define ARIZONA_UNDERCLOCKED_STS_WIDTH 1 /* UNDERCLOCKED_STS */ | ||
4965 | #define ARIZONA_OVERCLOCKED_STS 0x0020 /* OVERCLOCKED_STS */ | ||
4966 | #define ARIZONA_OVERCLOCKED_STS_MASK 0x0020 /* OVERCLOCKED_STS */ | ||
4967 | #define ARIZONA_OVERCLOCKED_STS_SHIFT 5 /* OVERCLOCKED_STS */ | ||
4968 | #define ARIZONA_OVERCLOCKED_STS_WIDTH 1 /* OVERCLOCKED_STS */ | ||
4969 | #define ARIZONA_FLL2_LOCK_STS 0x0008 /* FLL2_LOCK_STS */ | ||
4970 | #define ARIZONA_FLL2_LOCK_STS_MASK 0x0008 /* FLL2_LOCK_STS */ | ||
4971 | #define ARIZONA_FLL2_LOCK_STS_SHIFT 3 /* FLL2_LOCK_STS */ | ||
4972 | #define ARIZONA_FLL2_LOCK_STS_WIDTH 1 /* FLL2_LOCK_STS */ | ||
4973 | #define ARIZONA_FLL1_LOCK_STS 0x0004 /* FLL1_LOCK_STS */ | ||
4974 | #define ARIZONA_FLL1_LOCK_STS_MASK 0x0004 /* FLL1_LOCK_STS */ | ||
4975 | #define ARIZONA_FLL1_LOCK_STS_SHIFT 2 /* FLL1_LOCK_STS */ | ||
4976 | #define ARIZONA_FLL1_LOCK_STS_WIDTH 1 /* FLL1_LOCK_STS */ | ||
4977 | #define ARIZONA_CLKGEN_ERR_STS 0x0002 /* CLKGEN_ERR_STS */ | ||
4978 | #define ARIZONA_CLKGEN_ERR_STS_MASK 0x0002 /* CLKGEN_ERR_STS */ | ||
4979 | #define ARIZONA_CLKGEN_ERR_STS_SHIFT 1 /* CLKGEN_ERR_STS */ | ||
4980 | #define ARIZONA_CLKGEN_ERR_STS_WIDTH 1 /* CLKGEN_ERR_STS */ | ||
4981 | #define ARIZONA_CLKGEN_ERR_ASYNC_STS 0x0001 /* CLKGEN_ERR_ASYNC_STS */ | ||
4982 | #define ARIZONA_CLKGEN_ERR_ASYNC_STS_MASK 0x0001 /* CLKGEN_ERR_ASYNC_STS */ | ||
4983 | #define ARIZONA_CLKGEN_ERR_ASYNC_STS_SHIFT 0 /* CLKGEN_ERR_ASYNC_STS */ | ||
4984 | #define ARIZONA_CLKGEN_ERR_ASYNC_STS_WIDTH 1 /* CLKGEN_ERR_ASYNC_STS */ | ||
4985 | |||
4986 | /* | ||
4987 | * R3362 (0xD22) - Interrupt Raw Status 4 | ||
4988 | */ | ||
4989 | #define ARIZONA_ASRC_CFG_ERR_STS 0x8000 /* ASRC_CFG_ERR_STS */ | ||
4990 | #define ARIZONA_ASRC_CFG_ERR_STS_MASK 0x8000 /* ASRC_CFG_ERR_STS */ | ||
4991 | #define ARIZONA_ASRC_CFG_ERR_STS_SHIFT 15 /* ASRC_CFG_ERR_STS */ | ||
4992 | #define ARIZONA_ASRC_CFG_ERR_STS_WIDTH 1 /* ASRC_CFG_ERR_STS */ | ||
4993 | #define ARIZONA_AIF3_ERR_STS 0x4000 /* AIF3_ERR_STS */ | ||
4994 | #define ARIZONA_AIF3_ERR_STS_MASK 0x4000 /* AIF3_ERR_STS */ | ||
4995 | #define ARIZONA_AIF3_ERR_STS_SHIFT 14 /* AIF3_ERR_STS */ | ||
4996 | #define ARIZONA_AIF3_ERR_STS_WIDTH 1 /* AIF3_ERR_STS */ | ||
4997 | #define ARIZONA_AIF2_ERR_STS 0x2000 /* AIF2_ERR_STS */ | ||
4998 | #define ARIZONA_AIF2_ERR_STS_MASK 0x2000 /* AIF2_ERR_STS */ | ||
4999 | #define ARIZONA_AIF2_ERR_STS_SHIFT 13 /* AIF2_ERR_STS */ | ||
5000 | #define ARIZONA_AIF2_ERR_STS_WIDTH 1 /* AIF2_ERR_STS */ | ||
5001 | #define ARIZONA_AIF1_ERR_STS 0x1000 /* AIF1_ERR_STS */ | ||
5002 | #define ARIZONA_AIF1_ERR_STS_MASK 0x1000 /* AIF1_ERR_STS */ | ||
5003 | #define ARIZONA_AIF1_ERR_STS_SHIFT 12 /* AIF1_ERR_STS */ | ||
5004 | #define ARIZONA_AIF1_ERR_STS_WIDTH 1 /* AIF1_ERR_STS */ | ||
5005 | #define ARIZONA_CTRLIF_ERR_STS 0x0800 /* CTRLIF_ERR_STS */ | ||
5006 | #define ARIZONA_CTRLIF_ERR_STS_MASK 0x0800 /* CTRLIF_ERR_STS */ | ||
5007 | #define ARIZONA_CTRLIF_ERR_STS_SHIFT 11 /* CTRLIF_ERR_STS */ | ||
5008 | #define ARIZONA_CTRLIF_ERR_STS_WIDTH 1 /* CTRLIF_ERR_STS */ | ||
5009 | #define ARIZONA_MIXER_DROPPED_SAMPLE_STS 0x0400 /* MIXER_DROPPED_SAMPLE_STS */ | ||
5010 | #define ARIZONA_MIXER_DROPPED_SAMPLE_STS_MASK 0x0400 /* MIXER_DROPPED_SAMPLE_STS */ | ||
5011 | #define ARIZONA_MIXER_DROPPED_SAMPLE_STS_SHIFT 10 /* MIXER_DROPPED_SAMPLE_STS */ | ||
5012 | #define ARIZONA_MIXER_DROPPED_SAMPLE_STS_WIDTH 1 /* MIXER_DROPPED_SAMPLE_STS */ | ||
5013 | #define ARIZONA_ASYNC_CLK_ENA_LOW_STS 0x0200 /* ASYNC_CLK_ENA_LOW_STS */ | ||
5014 | #define ARIZONA_ASYNC_CLK_ENA_LOW_STS_MASK 0x0200 /* ASYNC_CLK_ENA_LOW_STS */ | ||
5015 | #define ARIZONA_ASYNC_CLK_ENA_LOW_STS_SHIFT 9 /* ASYNC_CLK_ENA_LOW_STS */ | ||
5016 | #define ARIZONA_ASYNC_CLK_ENA_LOW_STS_WIDTH 1 /* ASYNC_CLK_ENA_LOW_STS */ | ||
5017 | #define ARIZONA_SYSCLK_ENA_LOW_STS 0x0100 /* SYSCLK_ENA_LOW_STS */ | ||
5018 | #define ARIZONA_SYSCLK_ENA_LOW_STS_MASK 0x0100 /* SYSCLK_ENA_LOW_STS */ | ||
5019 | #define ARIZONA_SYSCLK_ENA_LOW_STS_SHIFT 8 /* SYSCLK_ENA_LOW_STS */ | ||
5020 | #define ARIZONA_SYSCLK_ENA_LOW_STS_WIDTH 1 /* SYSCLK_ENA_LOW_STS */ | ||
5021 | #define ARIZONA_ISRC1_CFG_ERR_STS 0x0080 /* ISRC1_CFG_ERR_STS */ | ||
5022 | #define ARIZONA_ISRC1_CFG_ERR_STS_MASK 0x0080 /* ISRC1_CFG_ERR_STS */ | ||
5023 | #define ARIZONA_ISRC1_CFG_ERR_STS_SHIFT 7 /* ISRC1_CFG_ERR_STS */ | ||
5024 | #define ARIZONA_ISRC1_CFG_ERR_STS_WIDTH 1 /* ISRC1_CFG_ERR_STS */ | ||
5025 | #define ARIZONA_ISRC2_CFG_ERR_STS 0x0040 /* ISRC2_CFG_ERR_STS */ | ||
5026 | #define ARIZONA_ISRC2_CFG_ERR_STS_MASK 0x0040 /* ISRC2_CFG_ERR_STS */ | ||
5027 | #define ARIZONA_ISRC2_CFG_ERR_STS_SHIFT 6 /* ISRC2_CFG_ERR_STS */ | ||
5028 | #define ARIZONA_ISRC2_CFG_ERR_STS_WIDTH 1 /* ISRC2_CFG_ERR_STS */ | ||
5029 | |||
5030 | /* | ||
5031 | * R3363 (0xD23) - Interrupt Raw Status 5 | ||
5032 | */ | ||
5033 | #define ARIZONA_BOOT_DONE_STS 0x0100 /* BOOT_DONE_STS */ | ||
5034 | #define ARIZONA_BOOT_DONE_STS_MASK 0x0100 /* BOOT_DONE_STS */ | ||
5035 | #define ARIZONA_BOOT_DONE_STS_SHIFT 8 /* BOOT_DONE_STS */ | ||
5036 | #define ARIZONA_BOOT_DONE_STS_WIDTH 1 /* BOOT_DONE_STS */ | ||
5037 | #define ARIZONA_DCS_DAC_DONE_STS 0x0080 /* DCS_DAC_DONE_STS */ | ||
5038 | #define ARIZONA_DCS_DAC_DONE_STS_MASK 0x0080 /* DCS_DAC_DONE_STS */ | ||
5039 | #define ARIZONA_DCS_DAC_DONE_STS_SHIFT 7 /* DCS_DAC_DONE_STS */ | ||
5040 | #define ARIZONA_DCS_DAC_DONE_STS_WIDTH 1 /* DCS_DAC_DONE_STS */ | ||
5041 | #define ARIZONA_DCS_HP_DONE_STS 0x0040 /* DCS_HP_DONE_STS */ | ||
5042 | #define ARIZONA_DCS_HP_DONE_STS_MASK 0x0040 /* DCS_HP_DONE_STS */ | ||
5043 | #define ARIZONA_DCS_HP_DONE_STS_SHIFT 6 /* DCS_HP_DONE_STS */ | ||
5044 | #define ARIZONA_DCS_HP_DONE_STS_WIDTH 1 /* DCS_HP_DONE_STS */ | ||
5045 | #define ARIZONA_FLL2_CLOCK_OK_STS 0x0002 /* FLL2_CLOCK_OK_STS */ | ||
5046 | #define ARIZONA_FLL2_CLOCK_OK_STS_MASK 0x0002 /* FLL2_CLOCK_OK_STS */ | ||
5047 | #define ARIZONA_FLL2_CLOCK_OK_STS_SHIFT 1 /* FLL2_CLOCK_OK_STS */ | ||
5048 | #define ARIZONA_FLL2_CLOCK_OK_STS_WIDTH 1 /* FLL2_CLOCK_OK_STS */ | ||
5049 | #define ARIZONA_FLL1_CLOCK_OK_STS 0x0001 /* FLL1_CLOCK_OK_STS */ | ||
5050 | #define ARIZONA_FLL1_CLOCK_OK_STS_MASK 0x0001 /* FLL1_CLOCK_OK_STS */ | ||
5051 | #define ARIZONA_FLL1_CLOCK_OK_STS_SHIFT 0 /* FLL1_CLOCK_OK_STS */ | ||
5052 | #define ARIZONA_FLL1_CLOCK_OK_STS_WIDTH 1 /* FLL1_CLOCK_OK_STS */ | ||
5053 | |||
5054 | /* | ||
5055 | * R3364 (0xD24) - Interrupt Raw Status 6 | ||
5056 | */ | ||
5057 | #define ARIZONA_PWM_OVERCLOCKED_STS 0x2000 /* PWM_OVERCLOCKED_STS */ | ||
5058 | #define ARIZONA_PWM_OVERCLOCKED_STS_MASK 0x2000 /* PWM_OVERCLOCKED_STS */ | ||
5059 | #define ARIZONA_PWM_OVERCLOCKED_STS_SHIFT 13 /* PWM_OVERCLOCKED_STS */ | ||
5060 | #define ARIZONA_PWM_OVERCLOCKED_STS_WIDTH 1 /* PWM_OVERCLOCKED_STS */ | ||
5061 | #define ARIZONA_FX_CORE_OVERCLOCKED_STS 0x1000 /* FX_CORE_OVERCLOCKED_STS */ | ||
5062 | #define ARIZONA_FX_CORE_OVERCLOCKED_STS_MASK 0x1000 /* FX_CORE_OVERCLOCKED_STS */ | ||
5063 | #define ARIZONA_FX_CORE_OVERCLOCKED_STS_SHIFT 12 /* FX_CORE_OVERCLOCKED_STS */ | ||
5064 | #define ARIZONA_FX_CORE_OVERCLOCKED_STS_WIDTH 1 /* FX_CORE_OVERCLOCKED_STS */ | ||
5065 | #define ARIZONA_DAC_SYS_OVERCLOCKED_STS 0x0400 /* DAC_SYS_OVERCLOCKED_STS */ | ||
5066 | #define ARIZONA_DAC_SYS_OVERCLOCKED_STS_MASK 0x0400 /* DAC_SYS_OVERCLOCKED_STS */ | ||
5067 | #define ARIZONA_DAC_SYS_OVERCLOCKED_STS_SHIFT 10 /* DAC_SYS_OVERCLOCKED_STS */ | ||
5068 | #define ARIZONA_DAC_SYS_OVERCLOCKED_STS_WIDTH 1 /* DAC_SYS_OVERCLOCKED_STS */ | ||
5069 | #define ARIZONA_DAC_WARP_OVERCLOCKED_STS 0x0200 /* DAC_WARP_OVERCLOCKED_STS */ | ||
5070 | #define ARIZONA_DAC_WARP_OVERCLOCKED_STS_MASK 0x0200 /* DAC_WARP_OVERCLOCKED_STS */ | ||
5071 | #define ARIZONA_DAC_WARP_OVERCLOCKED_STS_SHIFT 9 /* DAC_WARP_OVERCLOCKED_STS */ | ||
5072 | #define ARIZONA_DAC_WARP_OVERCLOCKED_STS_WIDTH 1 /* DAC_WARP_OVERCLOCKED_STS */ | ||
5073 | #define ARIZONA_ADC_OVERCLOCKED_STS 0x0100 /* ADC_OVERCLOCKED_STS */ | ||
5074 | #define ARIZONA_ADC_OVERCLOCKED_STS_MASK 0x0100 /* ADC_OVERCLOCKED_STS */ | ||
5075 | #define ARIZONA_ADC_OVERCLOCKED_STS_SHIFT 8 /* ADC_OVERCLOCKED_STS */ | ||
5076 | #define ARIZONA_ADC_OVERCLOCKED_STS_WIDTH 1 /* ADC_OVERCLOCKED_STS */ | ||
5077 | #define ARIZONA_MIXER_OVERCLOCKED_STS 0x0080 /* MIXER_OVERCLOCKED_STS */ | ||
5078 | #define ARIZONA_MIXER_OVERCLOCKED_STS_MASK 0x0080 /* MIXER_OVERCLOCKED_STS */ | ||
5079 | #define ARIZONA_MIXER_OVERCLOCKED_STS_SHIFT 7 /* MIXER_OVERCLOCKED_STS */ | ||
5080 | #define ARIZONA_MIXER_OVERCLOCKED_STS_WIDTH 1 /* MIXER_OVERCLOCKED_STS */ | ||
5081 | #define ARIZONA_AIF3_ASYNC_OVERCLOCKED_STS 0x0040 /* AIF3_ASYNC_OVERCLOCKED_STS */ | ||
5082 | #define ARIZONA_AIF3_ASYNC_OVERCLOCKED_STS_MASK 0x0040 /* AIF3_ASYNC_OVERCLOCKED_STS */ | ||
5083 | #define ARIZONA_AIF3_ASYNC_OVERCLOCKED_STS_SHIFT 6 /* AIF3_ASYNC_OVERCLOCKED_STS */ | ||
5084 | #define ARIZONA_AIF3_ASYNC_OVERCLOCKED_STS_WIDTH 1 /* AIF3_ASYNC_OVERCLOCKED_STS */ | ||
5085 | #define ARIZONA_AIF2_ASYNC_OVERCLOCKED_STS 0x0020 /* AIF2_ASYNC_OVERCLOCKED_STS */ | ||
5086 | #define ARIZONA_AIF2_ASYNC_OVERCLOCKED_STS_MASK 0x0020 /* AIF2_ASYNC_OVERCLOCKED_STS */ | ||
5087 | #define ARIZONA_AIF2_ASYNC_OVERCLOCKED_STS_SHIFT 5 /* AIF2_ASYNC_OVERCLOCKED_STS */ | ||
5088 | #define ARIZONA_AIF2_ASYNC_OVERCLOCKED_STS_WIDTH 1 /* AIF2_ASYNC_OVERCLOCKED_STS */ | ||
5089 | #define ARIZONA_AIF1_ASYNC_OVERCLOCKED_STS 0x0010 /* AIF1_ASYNC_OVERCLOCKED_STS */ | ||
5090 | #define ARIZONA_AIF1_ASYNC_OVERCLOCKED_STS_MASK 0x0010 /* AIF1_ASYNC_OVERCLOCKED_STS */ | ||
5091 | #define ARIZONA_AIF1_ASYNC_OVERCLOCKED_STS_SHIFT 4 /* AIF1_ASYNC_OVERCLOCKED_STS */ | ||
5092 | #define ARIZONA_AIF1_ASYNC_OVERCLOCKED_STS_WIDTH 1 /* AIF1_ASYNC_OVERCLOCKED_STS */ | ||
5093 | #define ARIZONA_AIF3_SYNC_OVERCLOCKED_STS 0x0008 /* AIF3_SYNC_OVERCLOCKED_STS */ | ||
5094 | #define ARIZONA_AIF3_SYNC_OVERCLOCKED_STS_MASK 0x0008 /* AIF3_SYNC_OVERCLOCKED_STS */ | ||
5095 | #define ARIZONA_AIF3_SYNC_OVERCLOCKED_STS_SHIFT 3 /* AIF3_SYNC_OVERCLOCKED_STS */ | ||
5096 | #define ARIZONA_AIF3_SYNC_OVERCLOCKED_STS_WIDTH 1 /* AIF3_SYNC_OVERCLOCKED_STS */ | ||
5097 | #define ARIZONA_AIF2_SYNC_OVERCLOCKED_STS 0x0004 /* AIF2_SYNC_OVERCLOCKED_STS */ | ||
5098 | #define ARIZONA_AIF2_SYNC_OVERCLOCKED_STS_MASK 0x0004 /* AIF2_SYNC_OVERCLOCKED_STS */ | ||
5099 | #define ARIZONA_AIF2_SYNC_OVERCLOCKED_STS_SHIFT 2 /* AIF2_SYNC_OVERCLOCKED_STS */ | ||
5100 | #define ARIZONA_AIF2_SYNC_OVERCLOCKED_STS_WIDTH 1 /* AIF2_SYNC_OVERCLOCKED_STS */ | ||
5101 | #define ARIZONA_AIF1_SYNC_OVERCLOCKED_STS 0x0002 /* AIF1_SYNC_OVERCLOCKED_STS */ | ||
5102 | #define ARIZONA_AIF1_SYNC_OVERCLOCKED_STS_MASK 0x0002 /* AIF1_SYNC_OVERCLOCKED_STS */ | ||
5103 | #define ARIZONA_AIF1_SYNC_OVERCLOCKED_STS_SHIFT 1 /* AIF1_SYNC_OVERCLOCKED_STS */ | ||
5104 | #define ARIZONA_AIF1_SYNC_OVERCLOCKED_STS_WIDTH 1 /* AIF1_SYNC_OVERCLOCKED_STS */ | ||
5105 | #define ARIZONA_PAD_CTRL_OVERCLOCKED_STS 0x0001 /* PAD_CTRL_OVERCLOCKED_STS */ | ||
5106 | #define ARIZONA_PAD_CTRL_OVERCLOCKED_STS_MASK 0x0001 /* PAD_CTRL_OVERCLOCKED_STS */ | ||
5107 | #define ARIZONA_PAD_CTRL_OVERCLOCKED_STS_SHIFT 0 /* PAD_CTRL_OVERCLOCKED_STS */ | ||
5108 | #define ARIZONA_PAD_CTRL_OVERCLOCKED_STS_WIDTH 1 /* PAD_CTRL_OVERCLOCKED_STS */ | ||
5109 | |||
5110 | /* | ||
5111 | * R3365 (0xD25) - Interrupt Raw Status 7 | ||
5112 | */ | ||
5113 | #define ARIZONA_SLIMBUS_SUBSYS_OVERCLOCKED_STS 0x8000 /* SLIMBUS_SUBSYS_OVERCLOCKED_STS */ | ||
5114 | #define ARIZONA_SLIMBUS_SUBSYS_OVERCLOCKED_STS_MASK 0x8000 /* SLIMBUS_SUBSYS_OVERCLOCKED_STS */ | ||
5115 | #define ARIZONA_SLIMBUS_SUBSYS_OVERCLOCKED_STS_SHIFT 15 /* SLIMBUS_SUBSYS_OVERCLOCKED_STS */ | ||
5116 | #define ARIZONA_SLIMBUS_SUBSYS_OVERCLOCKED_STS_WIDTH 1 /* SLIMBUS_SUBSYS_OVERCLOCKED_STS */ | ||
5117 | #define ARIZONA_SLIMBUS_ASYNC_OVERCLOCKED_STS 0x4000 /* SLIMBUS_ASYNC_OVERCLOCKED_STS */ | ||
5118 | #define ARIZONA_SLIMBUS_ASYNC_OVERCLOCKED_STS_MASK 0x4000 /* SLIMBUS_ASYNC_OVERCLOCKED_STS */ | ||
5119 | #define ARIZONA_SLIMBUS_ASYNC_OVERCLOCKED_STS_SHIFT 14 /* SLIMBUS_ASYNC_OVERCLOCKED_STS */ | ||
5120 | #define ARIZONA_SLIMBUS_ASYNC_OVERCLOCKED_STS_WIDTH 1 /* SLIMBUS_ASYNC_OVERCLOCKED_STS */ | ||
5121 | #define ARIZONA_SLIMBUS_SYNC_OVERCLOCKED_STS 0x2000 /* SLIMBUS_SYNC_OVERCLOCKED_STS */ | ||
5122 | #define ARIZONA_SLIMBUS_SYNC_OVERCLOCKED_STS_MASK 0x2000 /* SLIMBUS_SYNC_OVERCLOCKED_STS */ | ||
5123 | #define ARIZONA_SLIMBUS_SYNC_OVERCLOCKED_STS_SHIFT 13 /* SLIMBUS_SYNC_OVERCLOCKED_STS */ | ||
5124 | #define ARIZONA_SLIMBUS_SYNC_OVERCLOCKED_STS_WIDTH 1 /* SLIMBUS_SYNC_OVERCLOCKED_STS */ | ||
5125 | #define ARIZONA_ASRC_ASYNC_SYS_OVERCLOCKED_STS 0x1000 /* ASRC_ASYNC_SYS_OVERCLOCKED_STS */ | ||
5126 | #define ARIZONA_ASRC_ASYNC_SYS_OVERCLOCKED_STS_MASK 0x1000 /* ASRC_ASYNC_SYS_OVERCLOCKED_STS */ | ||
5127 | #define ARIZONA_ASRC_ASYNC_SYS_OVERCLOCKED_STS_SHIFT 12 /* ASRC_ASYNC_SYS_OVERCLOCKED_STS */ | ||
5128 | #define ARIZONA_ASRC_ASYNC_SYS_OVERCLOCKED_STS_WIDTH 1 /* ASRC_ASYNC_SYS_OVERCLOCKED_STS */ | ||
5129 | #define ARIZONA_ASRC_ASYNC_WARP_OVERCLOCKED_STS 0x0800 /* ASRC_ASYNC_WARP_OVERCLOCKED_STS */ | ||
5130 | #define ARIZONA_ASRC_ASYNC_WARP_OVERCLOCKED_STS_MASK 0x0800 /* ASRC_ASYNC_WARP_OVERCLOCKED_STS */ | ||
5131 | #define ARIZONA_ASRC_ASYNC_WARP_OVERCLOCKED_STS_SHIFT 11 /* ASRC_ASYNC_WARP_OVERCLOCKED_STS */ | ||
5132 | #define ARIZONA_ASRC_ASYNC_WARP_OVERCLOCKED_STS_WIDTH 1 /* ASRC_ASYNC_WARP_OVERCLOCKED_STS */ | ||
5133 | #define ARIZONA_ASRC_SYNC_SYS_OVERCLOCKED_STS 0x0400 /* ASRC_SYNC_SYS_OVERCLOCKED_STS */ | ||
5134 | #define ARIZONA_ASRC_SYNC_SYS_OVERCLOCKED_STS_MASK 0x0400 /* ASRC_SYNC_SYS_OVERCLOCKED_STS */ | ||
5135 | #define ARIZONA_ASRC_SYNC_SYS_OVERCLOCKED_STS_SHIFT 10 /* ASRC_SYNC_SYS_OVERCLOCKED_STS */ | ||
5136 | #define ARIZONA_ASRC_SYNC_SYS_OVERCLOCKED_STS_WIDTH 1 /* ASRC_SYNC_SYS_OVERCLOCKED_STS */ | ||
5137 | #define ARIZONA_ASRC_SYNC_WARP_OVERCLOCKED_STS 0x0200 /* ASRC_SYNC_WARP_OVERCLOCKED_STS */ | ||
5138 | #define ARIZONA_ASRC_SYNC_WARP_OVERCLOCKED_STS_MASK 0x0200 /* ASRC_SYNC_WARP_OVERCLOCKED_STS */ | ||
5139 | #define ARIZONA_ASRC_SYNC_WARP_OVERCLOCKED_STS_SHIFT 9 /* ASRC_SYNC_WARP_OVERCLOCKED_STS */ | ||
5140 | #define ARIZONA_ASRC_SYNC_WARP_OVERCLOCKED_STS_WIDTH 1 /* ASRC_SYNC_WARP_OVERCLOCKED_STS */ | ||
5141 | #define ARIZONA_ADSP2_1_OVERCLOCKED_STS 0x0008 /* ADSP2_1_OVERCLOCKED_STS */ | ||
5142 | #define ARIZONA_ADSP2_1_OVERCLOCKED_STS_MASK 0x0008 /* ADSP2_1_OVERCLOCKED_STS */ | ||
5143 | #define ARIZONA_ADSP2_1_OVERCLOCKED_STS_SHIFT 3 /* ADSP2_1_OVERCLOCKED_STS */ | ||
5144 | #define ARIZONA_ADSP2_1_OVERCLOCKED_STS_WIDTH 1 /* ADSP2_1_OVERCLOCKED_STS */ | ||
5145 | #define ARIZONA_ISRC2_OVERCLOCKED_STS 0x0002 /* ISRC2_OVERCLOCKED_STS */ | ||
5146 | #define ARIZONA_ISRC2_OVERCLOCKED_STS_MASK 0x0002 /* ISRC2_OVERCLOCKED_STS */ | ||
5147 | #define ARIZONA_ISRC2_OVERCLOCKED_STS_SHIFT 1 /* ISRC2_OVERCLOCKED_STS */ | ||
5148 | #define ARIZONA_ISRC2_OVERCLOCKED_STS_WIDTH 1 /* ISRC2_OVERCLOCKED_STS */ | ||
5149 | #define ARIZONA_ISRC1_OVERCLOCKED_STS 0x0001 /* ISRC1_OVERCLOCKED_STS */ | ||
5150 | #define ARIZONA_ISRC1_OVERCLOCKED_STS_MASK 0x0001 /* ISRC1_OVERCLOCKED_STS */ | ||
5151 | #define ARIZONA_ISRC1_OVERCLOCKED_STS_SHIFT 0 /* ISRC1_OVERCLOCKED_STS */ | ||
5152 | #define ARIZONA_ISRC1_OVERCLOCKED_STS_WIDTH 1 /* ISRC1_OVERCLOCKED_STS */ | ||
5153 | |||
5154 | /* | ||
5155 | * R3366 (0xD26) - Interrupt Raw Status 8 | ||
5156 | */ | ||
5157 | #define ARIZONA_AIF3_UNDERCLOCKED_STS 0x0400 /* AIF3_UNDERCLOCKED_STS */ | ||
5158 | #define ARIZONA_AIF3_UNDERCLOCKED_STS_MASK 0x0400 /* AIF3_UNDERCLOCKED_STS */ | ||
5159 | #define ARIZONA_AIF3_UNDERCLOCKED_STS_SHIFT 10 /* AIF3_UNDERCLOCKED_STS */ | ||
5160 | #define ARIZONA_AIF3_UNDERCLOCKED_STS_WIDTH 1 /* AIF3_UNDERCLOCKED_STS */ | ||
5161 | #define ARIZONA_AIF2_UNDERCLOCKED_STS 0x0200 /* AIF2_UNDERCLOCKED_STS */ | ||
5162 | #define ARIZONA_AIF2_UNDERCLOCKED_STS_MASK 0x0200 /* AIF2_UNDERCLOCKED_STS */ | ||
5163 | #define ARIZONA_AIF2_UNDERCLOCKED_STS_SHIFT 9 /* AIF2_UNDERCLOCKED_STS */ | ||
5164 | #define ARIZONA_AIF2_UNDERCLOCKED_STS_WIDTH 1 /* AIF2_UNDERCLOCKED_STS */ | ||
5165 | #define ARIZONA_AIF1_UNDERCLOCKED_STS 0x0100 /* AIF1_UNDERCLOCKED_STS */ | ||
5166 | #define ARIZONA_AIF1_UNDERCLOCKED_STS_MASK 0x0100 /* AIF1_UNDERCLOCKED_STS */ | ||
5167 | #define ARIZONA_AIF1_UNDERCLOCKED_STS_SHIFT 8 /* AIF1_UNDERCLOCKED_STS */ | ||
5168 | #define ARIZONA_AIF1_UNDERCLOCKED_STS_WIDTH 1 /* AIF1_UNDERCLOCKED_STS */ | ||
5169 | #define ARIZONA_ISRC2_UNDERCLOCKED_STS 0x0040 /* ISRC2_UNDERCLOCKED_STS */ | ||
5170 | #define ARIZONA_ISRC2_UNDERCLOCKED_STS_MASK 0x0040 /* ISRC2_UNDERCLOCKED_STS */ | ||
5171 | #define ARIZONA_ISRC2_UNDERCLOCKED_STS_SHIFT 6 /* ISRC2_UNDERCLOCKED_STS */ | ||
5172 | #define ARIZONA_ISRC2_UNDERCLOCKED_STS_WIDTH 1 /* ISRC2_UNDERCLOCKED_STS */ | ||
5173 | #define ARIZONA_ISRC1_UNDERCLOCKED_STS 0x0020 /* ISRC1_UNDERCLOCKED_STS */ | ||
5174 | #define ARIZONA_ISRC1_UNDERCLOCKED_STS_MASK 0x0020 /* ISRC1_UNDERCLOCKED_STS */ | ||
5175 | #define ARIZONA_ISRC1_UNDERCLOCKED_STS_SHIFT 5 /* ISRC1_UNDERCLOCKED_STS */ | ||
5176 | #define ARIZONA_ISRC1_UNDERCLOCKED_STS_WIDTH 1 /* ISRC1_UNDERCLOCKED_STS */ | ||
5177 | #define ARIZONA_FX_UNDERCLOCKED_STS 0x0010 /* FX_UNDERCLOCKED_STS */ | ||
5178 | #define ARIZONA_FX_UNDERCLOCKED_STS_MASK 0x0010 /* FX_UNDERCLOCKED_STS */ | ||
5179 | #define ARIZONA_FX_UNDERCLOCKED_STS_SHIFT 4 /* FX_UNDERCLOCKED_STS */ | ||
5180 | #define ARIZONA_FX_UNDERCLOCKED_STS_WIDTH 1 /* FX_UNDERCLOCKED_STS */ | ||
5181 | #define ARIZONA_ASRC_UNDERCLOCKED_STS 0x0008 /* ASRC_UNDERCLOCKED_STS */ | ||
5182 | #define ARIZONA_ASRC_UNDERCLOCKED_STS_MASK 0x0008 /* ASRC_UNDERCLOCKED_STS */ | ||
5183 | #define ARIZONA_ASRC_UNDERCLOCKED_STS_SHIFT 3 /* ASRC_UNDERCLOCKED_STS */ | ||
5184 | #define ARIZONA_ASRC_UNDERCLOCKED_STS_WIDTH 1 /* ASRC_UNDERCLOCKED_STS */ | ||
5185 | #define ARIZONA_DAC_UNDERCLOCKED_STS 0x0004 /* DAC_UNDERCLOCKED_STS */ | ||
5186 | #define ARIZONA_DAC_UNDERCLOCKED_STS_MASK 0x0004 /* DAC_UNDERCLOCKED_STS */ | ||
5187 | #define ARIZONA_DAC_UNDERCLOCKED_STS_SHIFT 2 /* DAC_UNDERCLOCKED_STS */ | ||
5188 | #define ARIZONA_DAC_UNDERCLOCKED_STS_WIDTH 1 /* DAC_UNDERCLOCKED_STS */ | ||
5189 | #define ARIZONA_ADC_UNDERCLOCKED_STS 0x0002 /* ADC_UNDERCLOCKED_STS */ | ||
5190 | #define ARIZONA_ADC_UNDERCLOCKED_STS_MASK 0x0002 /* ADC_UNDERCLOCKED_STS */ | ||
5191 | #define ARIZONA_ADC_UNDERCLOCKED_STS_SHIFT 1 /* ADC_UNDERCLOCKED_STS */ | ||
5192 | #define ARIZONA_ADC_UNDERCLOCKED_STS_WIDTH 1 /* ADC_UNDERCLOCKED_STS */ | ||
5193 | #define ARIZONA_MIXER_UNDERCLOCKED_STS 0x0001 /* MIXER_UNDERCLOCKED_STS */ | ||
5194 | #define ARIZONA_MIXER_UNDERCLOCKED_STS_MASK 0x0001 /* MIXER_UNDERCLOCKED_STS */ | ||
5195 | #define ARIZONA_MIXER_UNDERCLOCKED_STS_SHIFT 0 /* MIXER_UNDERCLOCKED_STS */ | ||
5196 | #define ARIZONA_MIXER_UNDERCLOCKED_STS_WIDTH 1 /* MIXER_UNDERCLOCKED_STS */ | ||
5197 | |||
5198 | /* | ||
5199 | * R3392 (0xD40) - IRQ Pin Status | ||
5200 | */ | ||
5201 | #define ARIZONA_IRQ2_STS 0x0002 /* IRQ2_STS */ | ||
5202 | #define ARIZONA_IRQ2_STS_MASK 0x0002 /* IRQ2_STS */ | ||
5203 | #define ARIZONA_IRQ2_STS_SHIFT 1 /* IRQ2_STS */ | ||
5204 | #define ARIZONA_IRQ2_STS_WIDTH 1 /* IRQ2_STS */ | ||
5205 | #define ARIZONA_IRQ1_STS 0x0001 /* IRQ1_STS */ | ||
5206 | #define ARIZONA_IRQ1_STS_MASK 0x0001 /* IRQ1_STS */ | ||
5207 | #define ARIZONA_IRQ1_STS_SHIFT 0 /* IRQ1_STS */ | ||
5208 | #define ARIZONA_IRQ1_STS_WIDTH 1 /* IRQ1_STS */ | ||
5209 | |||
5210 | /* | ||
5211 | * R3393 (0xD41) - ADSP2 IRQ0 | ||
5212 | */ | ||
5213 | #define ARIZONA_DSP_IRQ2 0x0002 /* DSP_IRQ2 */ | ||
5214 | #define ARIZONA_DSP_IRQ2_MASK 0x0002 /* DSP_IRQ2 */ | ||
5215 | #define ARIZONA_DSP_IRQ2_SHIFT 1 /* DSP_IRQ2 */ | ||
5216 | #define ARIZONA_DSP_IRQ2_WIDTH 1 /* DSP_IRQ2 */ | ||
5217 | #define ARIZONA_DSP_IRQ1 0x0001 /* DSP_IRQ1 */ | ||
5218 | #define ARIZONA_DSP_IRQ1_MASK 0x0001 /* DSP_IRQ1 */ | ||
5219 | #define ARIZONA_DSP_IRQ1_SHIFT 0 /* DSP_IRQ1 */ | ||
5220 | #define ARIZONA_DSP_IRQ1_WIDTH 1 /* DSP_IRQ1 */ | ||
5221 | |||
5222 | /* | ||
5223 | * R3408 (0xD50) - AOD wkup and trig | ||
5224 | */ | ||
5225 | #define ARIZONA_GP5_FALL_TRIG_STS 0x0020 /* GP5_FALL_TRIG_STS */ | ||
5226 | #define ARIZONA_GP5_FALL_TRIG_STS_MASK 0x0020 /* GP5_FALL_TRIG_STS */ | ||
5227 | #define ARIZONA_GP5_FALL_TRIG_STS_SHIFT 5 /* GP5_FALL_TRIG_STS */ | ||
5228 | #define ARIZONA_GP5_FALL_TRIG_STS_WIDTH 1 /* GP5_FALL_TRIG_STS */ | ||
5229 | #define ARIZONA_GP5_RISE_TRIG_STS 0x0010 /* GP5_RISE_TRIG_STS */ | ||
5230 | #define ARIZONA_GP5_RISE_TRIG_STS_MASK 0x0010 /* GP5_RISE_TRIG_STS */ | ||
5231 | #define ARIZONA_GP5_RISE_TRIG_STS_SHIFT 4 /* GP5_RISE_TRIG_STS */ | ||
5232 | #define ARIZONA_GP5_RISE_TRIG_STS_WIDTH 1 /* GP5_RISE_TRIG_STS */ | ||
5233 | #define ARIZONA_JD1_FALL_TRIG_STS 0x0008 /* JD1_FALL_TRIG_STS */ | ||
5234 | #define ARIZONA_JD1_FALL_TRIG_STS_MASK 0x0008 /* JD1_FALL_TRIG_STS */ | ||
5235 | #define ARIZONA_JD1_FALL_TRIG_STS_SHIFT 3 /* JD1_FALL_TRIG_STS */ | ||
5236 | #define ARIZONA_JD1_FALL_TRIG_STS_WIDTH 1 /* JD1_FALL_TRIG_STS */ | ||
5237 | #define ARIZONA_JD1_RISE_TRIG_STS 0x0004 /* JD1_RISE_TRIG_STS */ | ||
5238 | #define ARIZONA_JD1_RISE_TRIG_STS_MASK 0x0004 /* JD1_RISE_TRIG_STS */ | ||
5239 | #define ARIZONA_JD1_RISE_TRIG_STS_SHIFT 2 /* JD1_RISE_TRIG_STS */ | ||
5240 | #define ARIZONA_JD1_RISE_TRIG_STS_WIDTH 1 /* JD1_RISE_TRIG_STS */ | ||
5241 | #define ARIZONA_JD2_FALL_TRIG_STS 0x0002 /* JD2_FALL_TRIG_STS */ | ||
5242 | #define ARIZONA_JD2_FALL_TRIG_STS_MASK 0x0002 /* JD2_FALL_TRIG_STS */ | ||
5243 | #define ARIZONA_JD2_FALL_TRIG_STS_SHIFT 1 /* JD2_FALL_TRIG_STS */ | ||
5244 | #define ARIZONA_JD2_FALL_TRIG_STS_WIDTH 1 /* JD2_FALL_TRIG_STS */ | ||
5245 | #define ARIZONA_JD2_RISE_TRIG_STS 0x0001 /* JD2_RISE_TRIG_STS */ | ||
5246 | #define ARIZONA_JD2_RISE_TRIG_STS_MASK 0x0001 /* JD2_RISE_TRIG_STS */ | ||
5247 | #define ARIZONA_JD2_RISE_TRIG_STS_SHIFT 0 /* JD2_RISE_TRIG_STS */ | ||
5248 | #define ARIZONA_JD2_RISE_TRIG_STS_WIDTH 1 /* JD2_RISE_TRIG_STS */ | ||
5249 | |||
5250 | /* | ||
5251 | * R3409 (0xD51) - AOD IRQ1 | ||
5252 | */ | ||
5253 | #define ARIZONA_GP5_FALL_EINT1 0x0020 /* GP5_FALL_EINT1 */ | ||
5254 | #define ARIZONA_GP5_FALL_EINT1_MASK 0x0020 /* GP5_FALL_EINT1 */ | ||
5255 | #define ARIZONA_GP5_FALL_EINT1_SHIFT 5 /* GP5_FALL_EINT1 */ | ||
5256 | #define ARIZONA_GP5_FALL_EINT1_WIDTH 1 /* GP5_FALL_EINT1 */ | ||
5257 | #define ARIZONA_GP5_RISE_EINT1 0x0010 /* GP5_RISE_EINT1 */ | ||
5258 | #define ARIZONA_GP5_RISE_EINT1_MASK 0x0010 /* GP5_RISE_EINT1 */ | ||
5259 | #define ARIZONA_GP5_RISE_EINT1_SHIFT 4 /* GP5_RISE_EINT1 */ | ||
5260 | #define ARIZONA_GP5_RISE_EINT1_WIDTH 1 /* GP5_RISE_EINT1 */ | ||
5261 | #define ARIZONA_JD1_FALL_EINT1 0x0008 /* JD1_FALL_EINT1 */ | ||
5262 | #define ARIZONA_JD1_FALL_EINT1_MASK 0x0008 /* JD1_FALL_EINT1 */ | ||
5263 | #define ARIZONA_JD1_FALL_EINT1_SHIFT 3 /* JD1_FALL_EINT1 */ | ||
5264 | #define ARIZONA_JD1_FALL_EINT1_WIDTH 1 /* JD1_FALL_EINT1 */ | ||
5265 | #define ARIZONA_JD1_RISE_EINT1 0x0004 /* JD1_RISE_EINT1 */ | ||
5266 | #define ARIZONA_JD1_RISE_EINT1_MASK 0x0004 /* JD1_RISE_EINT1 */ | ||
5267 | #define ARIZONA_JD1_RISE_EINT1_SHIFT 2 /* JD1_RISE_EINT1 */ | ||
5268 | #define ARIZONA_JD1_RISE_EINT1_WIDTH 1 /* JD1_RISE_EINT1 */ | ||
5269 | #define ARIZONA_JD2_FALL_EINT1 0x0002 /* JD2_FALL_EINT1 */ | ||
5270 | #define ARIZONA_JD2_FALL_EINT1_MASK 0x0002 /* JD2_FALL_EINT1 */ | ||
5271 | #define ARIZONA_JD2_FALL_EINT1_SHIFT 1 /* JD2_FALL_EINT1 */ | ||
5272 | #define ARIZONA_JD2_FALL_EINT1_WIDTH 1 /* JD2_FALL_EINT1 */ | ||
5273 | #define ARIZONA_JD2_RISE_EINT1 0x0001 /* JD2_RISE_EINT1 */ | ||
5274 | #define ARIZONA_JD2_RISE_EINT1_MASK 0x0001 /* JD2_RISE_EINT1 */ | ||
5275 | #define ARIZONA_JD2_RISE_EINT1_SHIFT 0 /* JD2_RISE_EINT1 */ | ||
5276 | #define ARIZONA_JD2_RISE_EINT1_WIDTH 1 /* JD2_RISE_EINT1 */ | ||
5277 | |||
5278 | /* | ||
5279 | * R3410 (0xD52) - AOD IRQ2 | ||
5280 | */ | ||
5281 | #define ARIZONA_GP5_FALL_EINT2 0x0020 /* GP5_FALL_EINT2 */ | ||
5282 | #define ARIZONA_GP5_FALL_EINT2_MASK 0x0020 /* GP5_FALL_EINT2 */ | ||
5283 | #define ARIZONA_GP5_FALL_EINT2_SHIFT 5 /* GP5_FALL_EINT2 */ | ||
5284 | #define ARIZONA_GP5_FALL_EINT2_WIDTH 1 /* GP5_FALL_EINT2 */ | ||
5285 | #define ARIZONA_GP5_RISE_EINT2 0x0010 /* GP5_RISE_EINT2 */ | ||
5286 | #define ARIZONA_GP5_RISE_EINT2_MASK 0x0010 /* GP5_RISE_EINT2 */ | ||
5287 | #define ARIZONA_GP5_RISE_EINT2_SHIFT 4 /* GP5_RISE_EINT2 */ | ||
5288 | #define ARIZONA_GP5_RISE_EINT2_WIDTH 1 /* GP5_RISE_EINT2 */ | ||
5289 | #define ARIZONA_JD1_FALL_EINT2 0x0008 /* JD1_FALL_EINT2 */ | ||
5290 | #define ARIZONA_JD1_FALL_EINT2_MASK 0x0008 /* JD1_FALL_EINT2 */ | ||
5291 | #define ARIZONA_JD1_FALL_EINT2_SHIFT 3 /* JD1_FALL_EINT2 */ | ||
5292 | #define ARIZONA_JD1_FALL_EINT2_WIDTH 1 /* JD1_FALL_EINT2 */ | ||
5293 | #define ARIZONA_JD1_RISE_EINT2 0x0004 /* JD1_RISE_EINT2 */ | ||
5294 | #define ARIZONA_JD1_RISE_EINT2_MASK 0x0004 /* JD1_RISE_EINT2 */ | ||
5295 | #define ARIZONA_JD1_RISE_EINT2_SHIFT 2 /* JD1_RISE_EINT2 */ | ||
5296 | #define ARIZONA_JD1_RISE_EINT2_WIDTH 1 /* JD1_RISE_EINT2 */ | ||
5297 | #define ARIZONA_JD2_FALL_EINT2 0x0002 /* JD2_FALL_EINT2 */ | ||
5298 | #define ARIZONA_JD2_FALL_EINT2_MASK 0x0002 /* JD2_FALL_EINT2 */ | ||
5299 | #define ARIZONA_JD2_FALL_EINT2_SHIFT 1 /* JD2_FALL_EINT2 */ | ||
5300 | #define ARIZONA_JD2_FALL_EINT2_WIDTH 1 /* JD2_FALL_EINT2 */ | ||
5301 | #define ARIZONA_JD2_RISE_EINT2 0x0001 /* JD2_RISE_EINT2 */ | ||
5302 | #define ARIZONA_JD2_RISE_EINT2_MASK 0x0001 /* JD2_RISE_EINT2 */ | ||
5303 | #define ARIZONA_JD2_RISE_EINT2_SHIFT 0 /* JD2_RISE_EINT2 */ | ||
5304 | #define ARIZONA_JD2_RISE_EINT2_WIDTH 1 /* JD2_RISE_EINT2 */ | ||
5305 | |||
5306 | /* | ||
5307 | * R3411 (0xD53) - AOD IRQ Mask IRQ1 | ||
5308 | */ | ||
5309 | #define ARIZONA_IM_GP5_FALL_EINT1 0x0020 /* IM_GP5_FALL_EINT1 */ | ||
5310 | #define ARIZONA_IM_GP5_FALL_EINT1_MASK 0x0020 /* IM_GP5_FALL_EINT1 */ | ||
5311 | #define ARIZONA_IM_GP5_FALL_EINT1_SHIFT 5 /* IM_GP5_FALL_EINT1 */ | ||
5312 | #define ARIZONA_IM_GP5_FALL_EINT1_WIDTH 1 /* IM_GP5_FALL_EINT1 */ | ||
5313 | #define ARIZONA_IM_GP5_RISE_EINT1 0x0010 /* IM_GP5_RISE_EINT1 */ | ||
5314 | #define ARIZONA_IM_GP5_RISE_EINT1_MASK 0x0010 /* IM_GP5_RISE_EINT1 */ | ||
5315 | #define ARIZONA_IM_GP5_RISE_EINT1_SHIFT 4 /* IM_GP5_RISE_EINT1 */ | ||
5316 | #define ARIZONA_IM_GP5_RISE_EINT1_WIDTH 1 /* IM_GP5_RISE_EINT1 */ | ||
5317 | #define ARIZONA_IM_JD1_FALL_EINT1 0x0008 /* IM_JD1_FALL_EINT1 */ | ||
5318 | #define ARIZONA_IM_JD1_FALL_EINT1_MASK 0x0008 /* IM_JD1_FALL_EINT1 */ | ||
5319 | #define ARIZONA_IM_JD1_FALL_EINT1_SHIFT 3 /* IM_JD1_FALL_EINT1 */ | ||
5320 | #define ARIZONA_IM_JD1_FALL_EINT1_WIDTH 1 /* IM_JD1_FALL_EINT1 */ | ||
5321 | #define ARIZONA_IM_JD1_RISE_EINT1 0x0004 /* IM_JD1_RISE_EINT1 */ | ||
5322 | #define ARIZONA_IM_JD1_RISE_EINT1_MASK 0x0004 /* IM_JD1_RISE_EINT1 */ | ||
5323 | #define ARIZONA_IM_JD1_RISE_EINT1_SHIFT 2 /* IM_JD1_RISE_EINT1 */ | ||
5324 | #define ARIZONA_IM_JD1_RISE_EINT1_WIDTH 1 /* IM_JD1_RISE_EINT1 */ | ||
5325 | #define ARIZONA_IM_JD2_FALL_EINT1 0x0002 /* IM_JD2_FALL_EINT1 */ | ||
5326 | #define ARIZONA_IM_JD2_FALL_EINT1_MASK 0x0002 /* IM_JD2_FALL_EINT1 */ | ||
5327 | #define ARIZONA_IM_JD2_FALL_EINT1_SHIFT 1 /* IM_JD2_FALL_EINT1 */ | ||
5328 | #define ARIZONA_IM_JD2_FALL_EINT1_WIDTH 1 /* IM_JD2_FALL_EINT1 */ | ||
5329 | #define ARIZONA_IM_JD2_RISE_EINT1 0x0001 /* IM_JD2_RISE_EINT1 */ | ||
5330 | #define ARIZONA_IM_JD2_RISE_EINT1_MASK 0x0001 /* IM_JD2_RISE_EINT1 */ | ||
5331 | #define ARIZONA_IM_JD2_RISE_EINT1_SHIFT 0 /* IM_JD2_RISE_EINT1 */ | ||
5332 | #define ARIZONA_IM_JD2_RISE_EINT1_WIDTH 1 /* IM_JD2_RISE_EINT1 */ | ||
5333 | |||
5334 | /* | ||
5335 | * R3412 (0xD54) - AOD IRQ Mask IRQ2 | ||
5336 | */ | ||
5337 | #define ARIZONA_IM_GP5_FALL_EINT2 0x0020 /* IM_GP5_FALL_EINT2 */ | ||
5338 | #define ARIZONA_IM_GP5_FALL_EINT2_MASK 0x0020 /* IM_GP5_FALL_EINT2 */ | ||
5339 | #define ARIZONA_IM_GP5_FALL_EINT2_SHIFT 5 /* IM_GP5_FALL_EINT2 */ | ||
5340 | #define ARIZONA_IM_GP5_FALL_EINT2_WIDTH 1 /* IM_GP5_FALL_EINT2 */ | ||
5341 | #define ARIZONA_IM_GP5_RISE_EINT2 0x0010 /* IM_GP5_RISE_EINT2 */ | ||
5342 | #define ARIZONA_IM_GP5_RISE_EINT2_MASK 0x0010 /* IM_GP5_RISE_EINT2 */ | ||
5343 | #define ARIZONA_IM_GP5_RISE_EINT2_SHIFT 4 /* IM_GP5_RISE_EINT2 */ | ||
5344 | #define ARIZONA_IM_GP5_RISE_EINT2_WIDTH 1 /* IM_GP5_RISE_EINT2 */ | ||
5345 | #define ARIZONA_IM_JD1_FALL_EINT2 0x0008 /* IM_JD1_FALL_EINT2 */ | ||
5346 | #define ARIZONA_IM_JD1_FALL_EINT2_MASK 0x0008 /* IM_JD1_FALL_EINT2 */ | ||
5347 | #define ARIZONA_IM_JD1_FALL_EINT2_SHIFT 3 /* IM_JD1_FALL_EINT2 */ | ||
5348 | #define ARIZONA_IM_JD1_FALL_EINT2_WIDTH 1 /* IM_JD1_FALL_EINT2 */ | ||
5349 | #define ARIZONA_IM_JD1_RISE_EINT2 0x0004 /* IM_JD1_RISE_EINT2 */ | ||
5350 | #define ARIZONA_IM_JD1_RISE_EINT2_MASK 0x0004 /* IM_JD1_RISE_EINT2 */ | ||
5351 | #define ARIZONA_IM_JD1_RISE_EINT2_SHIFT 2 /* IM_JD1_RISE_EINT2 */ | ||
5352 | #define ARIZONA_IM_JD1_RISE_EINT2_WIDTH 1 /* IM_JD1_RISE_EINT2 */ | ||
5353 | #define ARIZONA_IM_JD2_FALL_EINT2 0x0002 /* IM_JD2_FALL_EINT2 */ | ||
5354 | #define ARIZONA_IM_JD2_FALL_EINT2_MASK 0x0002 /* IM_JD2_FALL_EINT2 */ | ||
5355 | #define ARIZONA_IM_JD2_FALL_EINT2_SHIFT 1 /* IM_JD2_FALL_EINT2 */ | ||
5356 | #define ARIZONA_IM_JD2_FALL_EINT2_WIDTH 1 /* IM_JD2_FALL_EINT2 */ | ||
5357 | #define ARIZONA_IM_JD2_RISE_EINT2 0x0001 /* IM_JD2_RISE_EINT2 */ | ||
5358 | #define ARIZONA_IM_JD2_RISE_EINT2_MASK 0x0001 /* IM_JD2_RISE_EINT2 */ | ||
5359 | #define ARIZONA_IM_JD2_RISE_EINT2_SHIFT 0 /* IM_JD2_RISE_EINT2 */ | ||
5360 | #define ARIZONA_IM_JD2_RISE_EINT2_WIDTH 1 /* IM_JD2_RISE_EINT2 */ | ||
5361 | |||
5362 | /* | ||
5363 | * R3413 (0xD55) - AOD IRQ Raw Status | ||
5364 | */ | ||
5365 | #define ARIZONA_GP5_STS 0x0004 /* GP5_STS */ | ||
5366 | #define ARIZONA_GP5_STS_MASK 0x0004 /* GP5_STS */ | ||
5367 | #define ARIZONA_GP5_STS_SHIFT 2 /* GP5_STS */ | ||
5368 | #define ARIZONA_GP5_STS_WIDTH 1 /* GP5_STS */ | ||
5369 | #define ARIZONA_JD2_STS 0x0002 /* JD2_STS */ | ||
5370 | #define ARIZONA_JD2_STS_MASK 0x0002 /* JD2_STS */ | ||
5371 | #define ARIZONA_JD2_STS_SHIFT 1 /* JD2_STS */ | ||
5372 | #define ARIZONA_JD2_STS_WIDTH 1 /* JD2_STS */ | ||
5373 | #define ARIZONA_JD1_STS 0x0001 /* JD1_STS */ | ||
5374 | #define ARIZONA_JD1_STS_MASK 0x0001 /* JD1_STS */ | ||
5375 | #define ARIZONA_JD1_STS_SHIFT 0 /* JD1_STS */ | ||
5376 | #define ARIZONA_JD1_STS_WIDTH 1 /* JD1_STS */ | ||
5377 | |||
5378 | /* | ||
5379 | * R3414 (0xD56) - Jack detect debounce | ||
5380 | */ | ||
5381 | #define ARIZONA_JD2_DB 0x0002 /* JD2_DB */ | ||
5382 | #define ARIZONA_JD2_DB_MASK 0x0002 /* JD2_DB */ | ||
5383 | #define ARIZONA_JD2_DB_SHIFT 1 /* JD2_DB */ | ||
5384 | #define ARIZONA_JD2_DB_WIDTH 1 /* JD2_DB */ | ||
5385 | #define ARIZONA_JD1_DB 0x0001 /* JD1_DB */ | ||
5386 | #define ARIZONA_JD1_DB_MASK 0x0001 /* JD1_DB */ | ||
5387 | #define ARIZONA_JD1_DB_SHIFT 0 /* JD1_DB */ | ||
5388 | #define ARIZONA_JD1_DB_WIDTH 1 /* JD1_DB */ | ||
5389 | |||
5390 | /* | ||
5391 | * R3584 (0xE00) - FX_Ctrl1 | ||
5392 | */ | ||
5393 | #define ARIZONA_FX_RATE_MASK 0x7800 /* FX_RATE - [14:11] */ | ||
5394 | #define ARIZONA_FX_RATE_SHIFT 11 /* FX_RATE - [14:11] */ | ||
5395 | #define ARIZONA_FX_RATE_WIDTH 4 /* FX_RATE - [14:11] */ | ||
5396 | |||
5397 | /* | ||
5398 | * R3585 (0xE01) - FX_Ctrl2 | ||
5399 | */ | ||
5400 | #define ARIZONA_FX_STS_MASK 0xFFF0 /* FX_STS - [15:4] */ | ||
5401 | #define ARIZONA_FX_STS_SHIFT 4 /* FX_STS - [15:4] */ | ||
5402 | #define ARIZONA_FX_STS_WIDTH 12 /* FX_STS - [15:4] */ | ||
5403 | |||
5404 | /* | ||
5405 | * R3600 (0xE10) - EQ1_1 | ||
5406 | */ | ||
5407 | #define ARIZONA_EQ1_B1_GAIN_MASK 0xF800 /* EQ1_B1_GAIN - [15:11] */ | ||
5408 | #define ARIZONA_EQ1_B1_GAIN_SHIFT 11 /* EQ1_B1_GAIN - [15:11] */ | ||
5409 | #define ARIZONA_EQ1_B1_GAIN_WIDTH 5 /* EQ1_B1_GAIN - [15:11] */ | ||
5410 | #define ARIZONA_EQ1_B2_GAIN_MASK 0x07C0 /* EQ1_B2_GAIN - [10:6] */ | ||
5411 | #define ARIZONA_EQ1_B2_GAIN_SHIFT 6 /* EQ1_B2_GAIN - [10:6] */ | ||
5412 | #define ARIZONA_EQ1_B2_GAIN_WIDTH 5 /* EQ1_B2_GAIN - [10:6] */ | ||
5413 | #define ARIZONA_EQ1_B3_GAIN_MASK 0x003E /* EQ1_B3_GAIN - [5:1] */ | ||
5414 | #define ARIZONA_EQ1_B3_GAIN_SHIFT 1 /* EQ1_B3_GAIN - [5:1] */ | ||
5415 | #define ARIZONA_EQ1_B3_GAIN_WIDTH 5 /* EQ1_B3_GAIN - [5:1] */ | ||
5416 | #define ARIZONA_EQ1_ENA 0x0001 /* EQ1_ENA */ | ||
5417 | #define ARIZONA_EQ1_ENA_MASK 0x0001 /* EQ1_ENA */ | ||
5418 | #define ARIZONA_EQ1_ENA_SHIFT 0 /* EQ1_ENA */ | ||
5419 | #define ARIZONA_EQ1_ENA_WIDTH 1 /* EQ1_ENA */ | ||
5420 | |||
5421 | /* | ||
5422 | * R3601 (0xE11) - EQ1_2 | ||
5423 | */ | ||
5424 | #define ARIZONA_EQ1_B4_GAIN_MASK 0xF800 /* EQ1_B4_GAIN - [15:11] */ | ||
5425 | #define ARIZONA_EQ1_B4_GAIN_SHIFT 11 /* EQ1_B4_GAIN - [15:11] */ | ||
5426 | #define ARIZONA_EQ1_B4_GAIN_WIDTH 5 /* EQ1_B4_GAIN - [15:11] */ | ||
5427 | #define ARIZONA_EQ1_B5_GAIN_MASK 0x07C0 /* EQ1_B5_GAIN - [10:6] */ | ||
5428 | #define ARIZONA_EQ1_B5_GAIN_SHIFT 6 /* EQ1_B5_GAIN - [10:6] */ | ||
5429 | #define ARIZONA_EQ1_B5_GAIN_WIDTH 5 /* EQ1_B5_GAIN - [10:6] */ | ||
5430 | #define ARIZONA_EQ1_B1_MODE 0x0001 /* EQ1_B1_MODE */ | ||
5431 | #define ARIZONA_EQ1_B1_MODE_MASK 0x0001 /* EQ1_B1_MODE */ | ||
5432 | #define ARIZONA_EQ1_B1_MODE_SHIFT 0 /* EQ1_B1_MODE */ | ||
5433 | #define ARIZONA_EQ1_B1_MODE_WIDTH 1 /* EQ1_B1_MODE */ | ||
5434 | |||
5435 | /* | ||
5436 | * R3602 (0xE12) - EQ1_3 | ||
5437 | */ | ||
5438 | #define ARIZONA_EQ1_B1_A_MASK 0xFFFF /* EQ1_B1_A - [15:0] */ | ||
5439 | #define ARIZONA_EQ1_B1_A_SHIFT 0 /* EQ1_B1_A - [15:0] */ | ||
5440 | #define ARIZONA_EQ1_B1_A_WIDTH 16 /* EQ1_B1_A - [15:0] */ | ||
5441 | |||
5442 | /* | ||
5443 | * R3603 (0xE13) - EQ1_4 | ||
5444 | */ | ||
5445 | #define ARIZONA_EQ1_B1_B_MASK 0xFFFF /* EQ1_B1_B - [15:0] */ | ||
5446 | #define ARIZONA_EQ1_B1_B_SHIFT 0 /* EQ1_B1_B - [15:0] */ | ||
5447 | #define ARIZONA_EQ1_B1_B_WIDTH 16 /* EQ1_B1_B - [15:0] */ | ||
5448 | |||
5449 | /* | ||
5450 | * R3604 (0xE14) - EQ1_5 | ||
5451 | */ | ||
5452 | #define ARIZONA_EQ1_B1_PG_MASK 0xFFFF /* EQ1_B1_PG - [15:0] */ | ||
5453 | #define ARIZONA_EQ1_B1_PG_SHIFT 0 /* EQ1_B1_PG - [15:0] */ | ||
5454 | #define ARIZONA_EQ1_B1_PG_WIDTH 16 /* EQ1_B1_PG - [15:0] */ | ||
5455 | |||
5456 | /* | ||
5457 | * R3605 (0xE15) - EQ1_6 | ||
5458 | */ | ||
5459 | #define ARIZONA_EQ1_B2_A_MASK 0xFFFF /* EQ1_B2_A - [15:0] */ | ||
5460 | #define ARIZONA_EQ1_B2_A_SHIFT 0 /* EQ1_B2_A - [15:0] */ | ||
5461 | #define ARIZONA_EQ1_B2_A_WIDTH 16 /* EQ1_B2_A - [15:0] */ | ||
5462 | |||
5463 | /* | ||
5464 | * R3606 (0xE16) - EQ1_7 | ||
5465 | */ | ||
5466 | #define ARIZONA_EQ1_B2_B_MASK 0xFFFF /* EQ1_B2_B - [15:0] */ | ||
5467 | #define ARIZONA_EQ1_B2_B_SHIFT 0 /* EQ1_B2_B - [15:0] */ | ||
5468 | #define ARIZONA_EQ1_B2_B_WIDTH 16 /* EQ1_B2_B - [15:0] */ | ||
5469 | |||
5470 | /* | ||
5471 | * R3607 (0xE17) - EQ1_8 | ||
5472 | */ | ||
5473 | #define ARIZONA_EQ1_B2_C_MASK 0xFFFF /* EQ1_B2_C - [15:0] */ | ||
5474 | #define ARIZONA_EQ1_B2_C_SHIFT 0 /* EQ1_B2_C - [15:0] */ | ||
5475 | #define ARIZONA_EQ1_B2_C_WIDTH 16 /* EQ1_B2_C - [15:0] */ | ||
5476 | |||
5477 | /* | ||
5478 | * R3608 (0xE18) - EQ1_9 | ||
5479 | */ | ||
5480 | #define ARIZONA_EQ1_B2_PG_MASK 0xFFFF /* EQ1_B2_PG - [15:0] */ | ||
5481 | #define ARIZONA_EQ1_B2_PG_SHIFT 0 /* EQ1_B2_PG - [15:0] */ | ||
5482 | #define ARIZONA_EQ1_B2_PG_WIDTH 16 /* EQ1_B2_PG - [15:0] */ | ||
5483 | |||
5484 | /* | ||
5485 | * R3609 (0xE19) - EQ1_10 | ||
5486 | */ | ||
5487 | #define ARIZONA_EQ1_B3_A_MASK 0xFFFF /* EQ1_B3_A - [15:0] */ | ||
5488 | #define ARIZONA_EQ1_B3_A_SHIFT 0 /* EQ1_B3_A - [15:0] */ | ||
5489 | #define ARIZONA_EQ1_B3_A_WIDTH 16 /* EQ1_B3_A - [15:0] */ | ||
5490 | |||
5491 | /* | ||
5492 | * R3610 (0xE1A) - EQ1_11 | ||
5493 | */ | ||
5494 | #define ARIZONA_EQ1_B3_B_MASK 0xFFFF /* EQ1_B3_B - [15:0] */ | ||
5495 | #define ARIZONA_EQ1_B3_B_SHIFT 0 /* EQ1_B3_B - [15:0] */ | ||
5496 | #define ARIZONA_EQ1_B3_B_WIDTH 16 /* EQ1_B3_B - [15:0] */ | ||
5497 | |||
5498 | /* | ||
5499 | * R3611 (0xE1B) - EQ1_12 | ||
5500 | */ | ||
5501 | #define ARIZONA_EQ1_B3_C_MASK 0xFFFF /* EQ1_B3_C - [15:0] */ | ||
5502 | #define ARIZONA_EQ1_B3_C_SHIFT 0 /* EQ1_B3_C - [15:0] */ | ||
5503 | #define ARIZONA_EQ1_B3_C_WIDTH 16 /* EQ1_B3_C - [15:0] */ | ||
5504 | |||
5505 | /* | ||
5506 | * R3612 (0xE1C) - EQ1_13 | ||
5507 | */ | ||
5508 | #define ARIZONA_EQ1_B3_PG_MASK 0xFFFF /* EQ1_B3_PG - [15:0] */ | ||
5509 | #define ARIZONA_EQ1_B3_PG_SHIFT 0 /* EQ1_B3_PG - [15:0] */ | ||
5510 | #define ARIZONA_EQ1_B3_PG_WIDTH 16 /* EQ1_B3_PG - [15:0] */ | ||
5511 | |||
5512 | /* | ||
5513 | * R3613 (0xE1D) - EQ1_14 | ||
5514 | */ | ||
5515 | #define ARIZONA_EQ1_B4_A_MASK 0xFFFF /* EQ1_B4_A - [15:0] */ | ||
5516 | #define ARIZONA_EQ1_B4_A_SHIFT 0 /* EQ1_B4_A - [15:0] */ | ||
5517 | #define ARIZONA_EQ1_B4_A_WIDTH 16 /* EQ1_B4_A - [15:0] */ | ||
5518 | |||
5519 | /* | ||
5520 | * R3614 (0xE1E) - EQ1_15 | ||
5521 | */ | ||
5522 | #define ARIZONA_EQ1_B4_B_MASK 0xFFFF /* EQ1_B4_B - [15:0] */ | ||
5523 | #define ARIZONA_EQ1_B4_B_SHIFT 0 /* EQ1_B4_B - [15:0] */ | ||
5524 | #define ARIZONA_EQ1_B4_B_WIDTH 16 /* EQ1_B4_B - [15:0] */ | ||
5525 | |||
5526 | /* | ||
5527 | * R3615 (0xE1F) - EQ1_16 | ||
5528 | */ | ||
5529 | #define ARIZONA_EQ1_B4_C_MASK 0xFFFF /* EQ1_B4_C - [15:0] */ | ||
5530 | #define ARIZONA_EQ1_B4_C_SHIFT 0 /* EQ1_B4_C - [15:0] */ | ||
5531 | #define ARIZONA_EQ1_B4_C_WIDTH 16 /* EQ1_B4_C - [15:0] */ | ||
5532 | |||
5533 | /* | ||
5534 | * R3616 (0xE20) - EQ1_17 | ||
5535 | */ | ||
5536 | #define ARIZONA_EQ1_B4_PG_MASK 0xFFFF /* EQ1_B4_PG - [15:0] */ | ||
5537 | #define ARIZONA_EQ1_B4_PG_SHIFT 0 /* EQ1_B4_PG - [15:0] */ | ||
5538 | #define ARIZONA_EQ1_B4_PG_WIDTH 16 /* EQ1_B4_PG - [15:0] */ | ||
5539 | |||
5540 | /* | ||
5541 | * R3617 (0xE21) - EQ1_18 | ||
5542 | */ | ||
5543 | #define ARIZONA_EQ1_B5_A_MASK 0xFFFF /* EQ1_B5_A - [15:0] */ | ||
5544 | #define ARIZONA_EQ1_B5_A_SHIFT 0 /* EQ1_B5_A - [15:0] */ | ||
5545 | #define ARIZONA_EQ1_B5_A_WIDTH 16 /* EQ1_B5_A - [15:0] */ | ||
5546 | |||
5547 | /* | ||
5548 | * R3618 (0xE22) - EQ1_19 | ||
5549 | */ | ||
5550 | #define ARIZONA_EQ1_B5_B_MASK 0xFFFF /* EQ1_B5_B - [15:0] */ | ||
5551 | #define ARIZONA_EQ1_B5_B_SHIFT 0 /* EQ1_B5_B - [15:0] */ | ||
5552 | #define ARIZONA_EQ1_B5_B_WIDTH 16 /* EQ1_B5_B - [15:0] */ | ||
5553 | |||
5554 | /* | ||
5555 | * R3619 (0xE23) - EQ1_20 | ||
5556 | */ | ||
5557 | #define ARIZONA_EQ1_B5_PG_MASK 0xFFFF /* EQ1_B5_PG - [15:0] */ | ||
5558 | #define ARIZONA_EQ1_B5_PG_SHIFT 0 /* EQ1_B5_PG - [15:0] */ | ||
5559 | #define ARIZONA_EQ1_B5_PG_WIDTH 16 /* EQ1_B5_PG - [15:0] */ | ||
5560 | |||
5561 | /* | ||
5562 | * R3620 (0xE24) - EQ1_21 | ||
5563 | */ | ||
5564 | #define ARIZONA_EQ1_B1_C_MASK 0xFFFF /* EQ1_B1_C - [15:0] */ | ||
5565 | #define ARIZONA_EQ1_B1_C_SHIFT 0 /* EQ1_B1_C - [15:0] */ | ||
5566 | #define ARIZONA_EQ1_B1_C_WIDTH 16 /* EQ1_B1_C - [15:0] */ | ||
5567 | |||
5568 | /* | ||
5569 | * R3622 (0xE26) - EQ2_1 | ||
5570 | */ | ||
5571 | #define ARIZONA_EQ2_B1_GAIN_MASK 0xF800 /* EQ2_B1_GAIN - [15:11] */ | ||
5572 | #define ARIZONA_EQ2_B1_GAIN_SHIFT 11 /* EQ2_B1_GAIN - [15:11] */ | ||
5573 | #define ARIZONA_EQ2_B1_GAIN_WIDTH 5 /* EQ2_B1_GAIN - [15:11] */ | ||
5574 | #define ARIZONA_EQ2_B2_GAIN_MASK 0x07C0 /* EQ2_B2_GAIN - [10:6] */ | ||
5575 | #define ARIZONA_EQ2_B2_GAIN_SHIFT 6 /* EQ2_B2_GAIN - [10:6] */ | ||
5576 | #define ARIZONA_EQ2_B2_GAIN_WIDTH 5 /* EQ2_B2_GAIN - [10:6] */ | ||
5577 | #define ARIZONA_EQ2_B3_GAIN_MASK 0x003E /* EQ2_B3_GAIN - [5:1] */ | ||
5578 | #define ARIZONA_EQ2_B3_GAIN_SHIFT 1 /* EQ2_B3_GAIN - [5:1] */ | ||
5579 | #define ARIZONA_EQ2_B3_GAIN_WIDTH 5 /* EQ2_B3_GAIN - [5:1] */ | ||
5580 | #define ARIZONA_EQ2_ENA 0x0001 /* EQ2_ENA */ | ||
5581 | #define ARIZONA_EQ2_ENA_MASK 0x0001 /* EQ2_ENA */ | ||
5582 | #define ARIZONA_EQ2_ENA_SHIFT 0 /* EQ2_ENA */ | ||
5583 | #define ARIZONA_EQ2_ENA_WIDTH 1 /* EQ2_ENA */ | ||
5584 | |||
5585 | /* | ||
5586 | * R3623 (0xE27) - EQ2_2 | ||
5587 | */ | ||
5588 | #define ARIZONA_EQ2_B4_GAIN_MASK 0xF800 /* EQ2_B4_GAIN - [15:11] */ | ||
5589 | #define ARIZONA_EQ2_B4_GAIN_SHIFT 11 /* EQ2_B4_GAIN - [15:11] */ | ||
5590 | #define ARIZONA_EQ2_B4_GAIN_WIDTH 5 /* EQ2_B4_GAIN - [15:11] */ | ||
5591 | #define ARIZONA_EQ2_B5_GAIN_MASK 0x07C0 /* EQ2_B5_GAIN - [10:6] */ | ||
5592 | #define ARIZONA_EQ2_B5_GAIN_SHIFT 6 /* EQ2_B5_GAIN - [10:6] */ | ||
5593 | #define ARIZONA_EQ2_B5_GAIN_WIDTH 5 /* EQ2_B5_GAIN - [10:6] */ | ||
5594 | #define ARIZONA_EQ2_B1_MODE 0x0001 /* EQ2_B1_MODE */ | ||
5595 | #define ARIZONA_EQ2_B1_MODE_MASK 0x0001 /* EQ2_B1_MODE */ | ||
5596 | #define ARIZONA_EQ2_B1_MODE_SHIFT 0 /* EQ2_B1_MODE */ | ||
5597 | #define ARIZONA_EQ2_B1_MODE_WIDTH 1 /* EQ2_B1_MODE */ | ||
5598 | |||
5599 | /* | ||
5600 | * R3624 (0xE28) - EQ2_3 | ||
5601 | */ | ||
5602 | #define ARIZONA_EQ2_B1_A_MASK 0xFFFF /* EQ2_B1_A - [15:0] */ | ||
5603 | #define ARIZONA_EQ2_B1_A_SHIFT 0 /* EQ2_B1_A - [15:0] */ | ||
5604 | #define ARIZONA_EQ2_B1_A_WIDTH 16 /* EQ2_B1_A - [15:0] */ | ||
5605 | |||
5606 | /* | ||
5607 | * R3625 (0xE29) - EQ2_4 | ||
5608 | */ | ||
5609 | #define ARIZONA_EQ2_B1_B_MASK 0xFFFF /* EQ2_B1_B - [15:0] */ | ||
5610 | #define ARIZONA_EQ2_B1_B_SHIFT 0 /* EQ2_B1_B - [15:0] */ | ||
5611 | #define ARIZONA_EQ2_B1_B_WIDTH 16 /* EQ2_B1_B - [15:0] */ | ||
5612 | |||
5613 | /* | ||
5614 | * R3626 (0xE2A) - EQ2_5 | ||
5615 | */ | ||
5616 | #define ARIZONA_EQ2_B1_PG_MASK 0xFFFF /* EQ2_B1_PG - [15:0] */ | ||
5617 | #define ARIZONA_EQ2_B1_PG_SHIFT 0 /* EQ2_B1_PG - [15:0] */ | ||
5618 | #define ARIZONA_EQ2_B1_PG_WIDTH 16 /* EQ2_B1_PG - [15:0] */ | ||
5619 | |||
5620 | /* | ||
5621 | * R3627 (0xE2B) - EQ2_6 | ||
5622 | */ | ||
5623 | #define ARIZONA_EQ2_B2_A_MASK 0xFFFF /* EQ2_B2_A - [15:0] */ | ||
5624 | #define ARIZONA_EQ2_B2_A_SHIFT 0 /* EQ2_B2_A - [15:0] */ | ||
5625 | #define ARIZONA_EQ2_B2_A_WIDTH 16 /* EQ2_B2_A - [15:0] */ | ||
5626 | |||
5627 | /* | ||
5628 | * R3628 (0xE2C) - EQ2_7 | ||
5629 | */ | ||
5630 | #define ARIZONA_EQ2_B2_B_MASK 0xFFFF /* EQ2_B2_B - [15:0] */ | ||
5631 | #define ARIZONA_EQ2_B2_B_SHIFT 0 /* EQ2_B2_B - [15:0] */ | ||
5632 | #define ARIZONA_EQ2_B2_B_WIDTH 16 /* EQ2_B2_B - [15:0] */ | ||
5633 | |||
5634 | /* | ||
5635 | * R3629 (0xE2D) - EQ2_8 | ||
5636 | */ | ||
5637 | #define ARIZONA_EQ2_B2_C_MASK 0xFFFF /* EQ2_B2_C - [15:0] */ | ||
5638 | #define ARIZONA_EQ2_B2_C_SHIFT 0 /* EQ2_B2_C - [15:0] */ | ||
5639 | #define ARIZONA_EQ2_B2_C_WIDTH 16 /* EQ2_B2_C - [15:0] */ | ||
5640 | |||
5641 | /* | ||
5642 | * R3630 (0xE2E) - EQ2_9 | ||
5643 | */ | ||
5644 | #define ARIZONA_EQ2_B2_PG_MASK 0xFFFF /* EQ2_B2_PG - [15:0] */ | ||
5645 | #define ARIZONA_EQ2_B2_PG_SHIFT 0 /* EQ2_B2_PG - [15:0] */ | ||
5646 | #define ARIZONA_EQ2_B2_PG_WIDTH 16 /* EQ2_B2_PG - [15:0] */ | ||
5647 | |||
5648 | /* | ||
5649 | * R3631 (0xE2F) - EQ2_10 | ||
5650 | */ | ||
5651 | #define ARIZONA_EQ2_B3_A_MASK 0xFFFF /* EQ2_B3_A - [15:0] */ | ||
5652 | #define ARIZONA_EQ2_B3_A_SHIFT 0 /* EQ2_B3_A - [15:0] */ | ||
5653 | #define ARIZONA_EQ2_B3_A_WIDTH 16 /* EQ2_B3_A - [15:0] */ | ||
5654 | |||
5655 | /* | ||
5656 | * R3632 (0xE30) - EQ2_11 | ||
5657 | */ | ||
5658 | #define ARIZONA_EQ2_B3_B_MASK 0xFFFF /* EQ2_B3_B - [15:0] */ | ||
5659 | #define ARIZONA_EQ2_B3_B_SHIFT 0 /* EQ2_B3_B - [15:0] */ | ||
5660 | #define ARIZONA_EQ2_B3_B_WIDTH 16 /* EQ2_B3_B - [15:0] */ | ||
5661 | |||
5662 | /* | ||
5663 | * R3633 (0xE31) - EQ2_12 | ||
5664 | */ | ||
5665 | #define ARIZONA_EQ2_B3_C_MASK 0xFFFF /* EQ2_B3_C - [15:0] */ | ||
5666 | #define ARIZONA_EQ2_B3_C_SHIFT 0 /* EQ2_B3_C - [15:0] */ | ||
5667 | #define ARIZONA_EQ2_B3_C_WIDTH 16 /* EQ2_B3_C - [15:0] */ | ||
5668 | |||
5669 | /* | ||
5670 | * R3634 (0xE32) - EQ2_13 | ||
5671 | */ | ||
5672 | #define ARIZONA_EQ2_B3_PG_MASK 0xFFFF /* EQ2_B3_PG - [15:0] */ | ||
5673 | #define ARIZONA_EQ2_B3_PG_SHIFT 0 /* EQ2_B3_PG - [15:0] */ | ||
5674 | #define ARIZONA_EQ2_B3_PG_WIDTH 16 /* EQ2_B3_PG - [15:0] */ | ||
5675 | |||
5676 | /* | ||
5677 | * R3635 (0xE33) - EQ2_14 | ||
5678 | */ | ||
5679 | #define ARIZONA_EQ2_B4_A_MASK 0xFFFF /* EQ2_B4_A - [15:0] */ | ||
5680 | #define ARIZONA_EQ2_B4_A_SHIFT 0 /* EQ2_B4_A - [15:0] */ | ||
5681 | #define ARIZONA_EQ2_B4_A_WIDTH 16 /* EQ2_B4_A - [15:0] */ | ||
5682 | |||
5683 | /* | ||
5684 | * R3636 (0xE34) - EQ2_15 | ||
5685 | */ | ||
5686 | #define ARIZONA_EQ2_B4_B_MASK 0xFFFF /* EQ2_B4_B - [15:0] */ | ||
5687 | #define ARIZONA_EQ2_B4_B_SHIFT 0 /* EQ2_B4_B - [15:0] */ | ||
5688 | #define ARIZONA_EQ2_B4_B_WIDTH 16 /* EQ2_B4_B - [15:0] */ | ||
5689 | |||
5690 | /* | ||
5691 | * R3637 (0xE35) - EQ2_16 | ||
5692 | */ | ||
5693 | #define ARIZONA_EQ2_B4_C_MASK 0xFFFF /* EQ2_B4_C - [15:0] */ | ||
5694 | #define ARIZONA_EQ2_B4_C_SHIFT 0 /* EQ2_B4_C - [15:0] */ | ||
5695 | #define ARIZONA_EQ2_B4_C_WIDTH 16 /* EQ2_B4_C - [15:0] */ | ||
5696 | |||
5697 | /* | ||
5698 | * R3638 (0xE36) - EQ2_17 | ||
5699 | */ | ||
5700 | #define ARIZONA_EQ2_B4_PG_MASK 0xFFFF /* EQ2_B4_PG - [15:0] */ | ||
5701 | #define ARIZONA_EQ2_B4_PG_SHIFT 0 /* EQ2_B4_PG - [15:0] */ | ||
5702 | #define ARIZONA_EQ2_B4_PG_WIDTH 16 /* EQ2_B4_PG - [15:0] */ | ||
5703 | |||
5704 | /* | ||
5705 | * R3639 (0xE37) - EQ2_18 | ||
5706 | */ | ||
5707 | #define ARIZONA_EQ2_B5_A_MASK 0xFFFF /* EQ2_B5_A - [15:0] */ | ||
5708 | #define ARIZONA_EQ2_B5_A_SHIFT 0 /* EQ2_B5_A - [15:0] */ | ||
5709 | #define ARIZONA_EQ2_B5_A_WIDTH 16 /* EQ2_B5_A - [15:0] */ | ||
5710 | |||
5711 | /* | ||
5712 | * R3640 (0xE38) - EQ2_19 | ||
5713 | */ | ||
5714 | #define ARIZONA_EQ2_B5_B_MASK 0xFFFF /* EQ2_B5_B - [15:0] */ | ||
5715 | #define ARIZONA_EQ2_B5_B_SHIFT 0 /* EQ2_B5_B - [15:0] */ | ||
5716 | #define ARIZONA_EQ2_B5_B_WIDTH 16 /* EQ2_B5_B - [15:0] */ | ||
5717 | |||
5718 | /* | ||
5719 | * R3641 (0xE39) - EQ2_20 | ||
5720 | */ | ||
5721 | #define ARIZONA_EQ2_B5_PG_MASK 0xFFFF /* EQ2_B5_PG - [15:0] */ | ||
5722 | #define ARIZONA_EQ2_B5_PG_SHIFT 0 /* EQ2_B5_PG - [15:0] */ | ||
5723 | #define ARIZONA_EQ2_B5_PG_WIDTH 16 /* EQ2_B5_PG - [15:0] */ | ||
5724 | |||
5725 | /* | ||
5726 | * R3642 (0xE3A) - EQ2_21 | ||
5727 | */ | ||
5728 | #define ARIZONA_EQ2_B1_C_MASK 0xFFFF /* EQ2_B1_C - [15:0] */ | ||
5729 | #define ARIZONA_EQ2_B1_C_SHIFT 0 /* EQ2_B1_C - [15:0] */ | ||
5730 | #define ARIZONA_EQ2_B1_C_WIDTH 16 /* EQ2_B1_C - [15:0] */ | ||
5731 | |||
5732 | /* | ||
5733 | * R3644 (0xE3C) - EQ3_1 | ||
5734 | */ | ||
5735 | #define ARIZONA_EQ3_B1_GAIN_MASK 0xF800 /* EQ3_B1_GAIN - [15:11] */ | ||
5736 | #define ARIZONA_EQ3_B1_GAIN_SHIFT 11 /* EQ3_B1_GAIN - [15:11] */ | ||
5737 | #define ARIZONA_EQ3_B1_GAIN_WIDTH 5 /* EQ3_B1_GAIN - [15:11] */ | ||
5738 | #define ARIZONA_EQ3_B2_GAIN_MASK 0x07C0 /* EQ3_B2_GAIN - [10:6] */ | ||
5739 | #define ARIZONA_EQ3_B2_GAIN_SHIFT 6 /* EQ3_B2_GAIN - [10:6] */ | ||
5740 | #define ARIZONA_EQ3_B2_GAIN_WIDTH 5 /* EQ3_B2_GAIN - [10:6] */ | ||
5741 | #define ARIZONA_EQ3_B3_GAIN_MASK 0x003E /* EQ3_B3_GAIN - [5:1] */ | ||
5742 | #define ARIZONA_EQ3_B3_GAIN_SHIFT 1 /* EQ3_B3_GAIN - [5:1] */ | ||
5743 | #define ARIZONA_EQ3_B3_GAIN_WIDTH 5 /* EQ3_B3_GAIN - [5:1] */ | ||
5744 | #define ARIZONA_EQ3_ENA 0x0001 /* EQ3_ENA */ | ||
5745 | #define ARIZONA_EQ3_ENA_MASK 0x0001 /* EQ3_ENA */ | ||
5746 | #define ARIZONA_EQ3_ENA_SHIFT 0 /* EQ3_ENA */ | ||
5747 | #define ARIZONA_EQ3_ENA_WIDTH 1 /* EQ3_ENA */ | ||
5748 | |||
5749 | /* | ||
5750 | * R3645 (0xE3D) - EQ3_2 | ||
5751 | */ | ||
5752 | #define ARIZONA_EQ3_B4_GAIN_MASK 0xF800 /* EQ3_B4_GAIN - [15:11] */ | ||
5753 | #define ARIZONA_EQ3_B4_GAIN_SHIFT 11 /* EQ3_B4_GAIN - [15:11] */ | ||
5754 | #define ARIZONA_EQ3_B4_GAIN_WIDTH 5 /* EQ3_B4_GAIN - [15:11] */ | ||
5755 | #define ARIZONA_EQ3_B5_GAIN_MASK 0x07C0 /* EQ3_B5_GAIN - [10:6] */ | ||
5756 | #define ARIZONA_EQ3_B5_GAIN_SHIFT 6 /* EQ3_B5_GAIN - [10:6] */ | ||
5757 | #define ARIZONA_EQ3_B5_GAIN_WIDTH 5 /* EQ3_B5_GAIN - [10:6] */ | ||
5758 | #define ARIZONA_EQ3_B1_MODE 0x0001 /* EQ3_B1_MODE */ | ||
5759 | #define ARIZONA_EQ3_B1_MODE_MASK 0x0001 /* EQ3_B1_MODE */ | ||
5760 | #define ARIZONA_EQ3_B1_MODE_SHIFT 0 /* EQ3_B1_MODE */ | ||
5761 | #define ARIZONA_EQ3_B1_MODE_WIDTH 1 /* EQ3_B1_MODE */ | ||
5762 | |||
5763 | /* | ||
5764 | * R3646 (0xE3E) - EQ3_3 | ||
5765 | */ | ||
5766 | #define ARIZONA_EQ3_B1_A_MASK 0xFFFF /* EQ3_B1_A - [15:0] */ | ||
5767 | #define ARIZONA_EQ3_B1_A_SHIFT 0 /* EQ3_B1_A - [15:0] */ | ||
5768 | #define ARIZONA_EQ3_B1_A_WIDTH 16 /* EQ3_B1_A - [15:0] */ | ||
5769 | |||
5770 | /* | ||
5771 | * R3647 (0xE3F) - EQ3_4 | ||
5772 | */ | ||
5773 | #define ARIZONA_EQ3_B1_B_MASK 0xFFFF /* EQ3_B1_B - [15:0] */ | ||
5774 | #define ARIZONA_EQ3_B1_B_SHIFT 0 /* EQ3_B1_B - [15:0] */ | ||
5775 | #define ARIZONA_EQ3_B1_B_WIDTH 16 /* EQ3_B1_B - [15:0] */ | ||
5776 | |||
5777 | /* | ||
5778 | * R3648 (0xE40) - EQ3_5 | ||
5779 | */ | ||
5780 | #define ARIZONA_EQ3_B1_PG_MASK 0xFFFF /* EQ3_B1_PG - [15:0] */ | ||
5781 | #define ARIZONA_EQ3_B1_PG_SHIFT 0 /* EQ3_B1_PG - [15:0] */ | ||
5782 | #define ARIZONA_EQ3_B1_PG_WIDTH 16 /* EQ3_B1_PG - [15:0] */ | ||
5783 | |||
5784 | /* | ||
5785 | * R3649 (0xE41) - EQ3_6 | ||
5786 | */ | ||
5787 | #define ARIZONA_EQ3_B2_A_MASK 0xFFFF /* EQ3_B2_A - [15:0] */ | ||
5788 | #define ARIZONA_EQ3_B2_A_SHIFT 0 /* EQ3_B2_A - [15:0] */ | ||
5789 | #define ARIZONA_EQ3_B2_A_WIDTH 16 /* EQ3_B2_A - [15:0] */ | ||
5790 | |||
5791 | /* | ||
5792 | * R3650 (0xE42) - EQ3_7 | ||
5793 | */ | ||
5794 | #define ARIZONA_EQ3_B2_B_MASK 0xFFFF /* EQ3_B2_B - [15:0] */ | ||
5795 | #define ARIZONA_EQ3_B2_B_SHIFT 0 /* EQ3_B2_B - [15:0] */ | ||
5796 | #define ARIZONA_EQ3_B2_B_WIDTH 16 /* EQ3_B2_B - [15:0] */ | ||
5797 | |||
5798 | /* | ||
5799 | * R3651 (0xE43) - EQ3_8 | ||
5800 | */ | ||
5801 | #define ARIZONA_EQ3_B2_C_MASK 0xFFFF /* EQ3_B2_C - [15:0] */ | ||
5802 | #define ARIZONA_EQ3_B2_C_SHIFT 0 /* EQ3_B2_C - [15:0] */ | ||
5803 | #define ARIZONA_EQ3_B2_C_WIDTH 16 /* EQ3_B2_C - [15:0] */ | ||
5804 | |||
5805 | /* | ||
5806 | * R3652 (0xE44) - EQ3_9 | ||
5807 | */ | ||
5808 | #define ARIZONA_EQ3_B2_PG_MASK 0xFFFF /* EQ3_B2_PG - [15:0] */ | ||
5809 | #define ARIZONA_EQ3_B2_PG_SHIFT 0 /* EQ3_B2_PG - [15:0] */ | ||
5810 | #define ARIZONA_EQ3_B2_PG_WIDTH 16 /* EQ3_B2_PG - [15:0] */ | ||
5811 | |||
5812 | /* | ||
5813 | * R3653 (0xE45) - EQ3_10 | ||
5814 | */ | ||
5815 | #define ARIZONA_EQ3_B3_A_MASK 0xFFFF /* EQ3_B3_A - [15:0] */ | ||
5816 | #define ARIZONA_EQ3_B3_A_SHIFT 0 /* EQ3_B3_A - [15:0] */ | ||
5817 | #define ARIZONA_EQ3_B3_A_WIDTH 16 /* EQ3_B3_A - [15:0] */ | ||
5818 | |||
5819 | /* | ||
5820 | * R3654 (0xE46) - EQ3_11 | ||
5821 | */ | ||
5822 | #define ARIZONA_EQ3_B3_B_MASK 0xFFFF /* EQ3_B3_B - [15:0] */ | ||
5823 | #define ARIZONA_EQ3_B3_B_SHIFT 0 /* EQ3_B3_B - [15:0] */ | ||
5824 | #define ARIZONA_EQ3_B3_B_WIDTH 16 /* EQ3_B3_B - [15:0] */ | ||
5825 | |||
5826 | /* | ||
5827 | * R3655 (0xE47) - EQ3_12 | ||
5828 | */ | ||
5829 | #define ARIZONA_EQ3_B3_C_MASK 0xFFFF /* EQ3_B3_C - [15:0] */ | ||
5830 | #define ARIZONA_EQ3_B3_C_SHIFT 0 /* EQ3_B3_C - [15:0] */ | ||
5831 | #define ARIZONA_EQ3_B3_C_WIDTH 16 /* EQ3_B3_C - [15:0] */ | ||
5832 | |||
5833 | /* | ||
5834 | * R3656 (0xE48) - EQ3_13 | ||
5835 | */ | ||
5836 | #define ARIZONA_EQ3_B3_PG_MASK 0xFFFF /* EQ3_B3_PG - [15:0] */ | ||
5837 | #define ARIZONA_EQ3_B3_PG_SHIFT 0 /* EQ3_B3_PG - [15:0] */ | ||
5838 | #define ARIZONA_EQ3_B3_PG_WIDTH 16 /* EQ3_B3_PG - [15:0] */ | ||
5839 | |||
5840 | /* | ||
5841 | * R3657 (0xE49) - EQ3_14 | ||
5842 | */ | ||
5843 | #define ARIZONA_EQ3_B4_A_MASK 0xFFFF /* EQ3_B4_A - [15:0] */ | ||
5844 | #define ARIZONA_EQ3_B4_A_SHIFT 0 /* EQ3_B4_A - [15:0] */ | ||
5845 | #define ARIZONA_EQ3_B4_A_WIDTH 16 /* EQ3_B4_A - [15:0] */ | ||
5846 | |||
5847 | /* | ||
5848 | * R3658 (0xE4A) - EQ3_15 | ||
5849 | */ | ||
5850 | #define ARIZONA_EQ3_B4_B_MASK 0xFFFF /* EQ3_B4_B - [15:0] */ | ||
5851 | #define ARIZONA_EQ3_B4_B_SHIFT 0 /* EQ3_B4_B - [15:0] */ | ||
5852 | #define ARIZONA_EQ3_B4_B_WIDTH 16 /* EQ3_B4_B - [15:0] */ | ||
5853 | |||
5854 | /* | ||
5855 | * R3659 (0xE4B) - EQ3_16 | ||
5856 | */ | ||
5857 | #define ARIZONA_EQ3_B4_C_MASK 0xFFFF /* EQ3_B4_C - [15:0] */ | ||
5858 | #define ARIZONA_EQ3_B4_C_SHIFT 0 /* EQ3_B4_C - [15:0] */ | ||
5859 | #define ARIZONA_EQ3_B4_C_WIDTH 16 /* EQ3_B4_C - [15:0] */ | ||
5860 | |||
5861 | /* | ||
5862 | * R3660 (0xE4C) - EQ3_17 | ||
5863 | */ | ||
5864 | #define ARIZONA_EQ3_B4_PG_MASK 0xFFFF /* EQ3_B4_PG - [15:0] */ | ||
5865 | #define ARIZONA_EQ3_B4_PG_SHIFT 0 /* EQ3_B4_PG - [15:0] */ | ||
5866 | #define ARIZONA_EQ3_B4_PG_WIDTH 16 /* EQ3_B4_PG - [15:0] */ | ||
5867 | |||
5868 | /* | ||
5869 | * R3661 (0xE4D) - EQ3_18 | ||
5870 | */ | ||
5871 | #define ARIZONA_EQ3_B5_A_MASK 0xFFFF /* EQ3_B5_A - [15:0] */ | ||
5872 | #define ARIZONA_EQ3_B5_A_SHIFT 0 /* EQ3_B5_A - [15:0] */ | ||
5873 | #define ARIZONA_EQ3_B5_A_WIDTH 16 /* EQ3_B5_A - [15:0] */ | ||
5874 | |||
5875 | /* | ||
5876 | * R3662 (0xE4E) - EQ3_19 | ||
5877 | */ | ||
5878 | #define ARIZONA_EQ3_B5_B_MASK 0xFFFF /* EQ3_B5_B - [15:0] */ | ||
5879 | #define ARIZONA_EQ3_B5_B_SHIFT 0 /* EQ3_B5_B - [15:0] */ | ||
5880 | #define ARIZONA_EQ3_B5_B_WIDTH 16 /* EQ3_B5_B - [15:0] */ | ||
5881 | |||
5882 | /* | ||
5883 | * R3663 (0xE4F) - EQ3_20 | ||
5884 | */ | ||
5885 | #define ARIZONA_EQ3_B5_PG_MASK 0xFFFF /* EQ3_B5_PG - [15:0] */ | ||
5886 | #define ARIZONA_EQ3_B5_PG_SHIFT 0 /* EQ3_B5_PG - [15:0] */ | ||
5887 | #define ARIZONA_EQ3_B5_PG_WIDTH 16 /* EQ3_B5_PG - [15:0] */ | ||
5888 | |||
5889 | /* | ||
5890 | * R3664 (0xE50) - EQ3_21 | ||
5891 | */ | ||
5892 | #define ARIZONA_EQ3_B1_C_MASK 0xFFFF /* EQ3_B1_C - [15:0] */ | ||
5893 | #define ARIZONA_EQ3_B1_C_SHIFT 0 /* EQ3_B1_C - [15:0] */ | ||
5894 | #define ARIZONA_EQ3_B1_C_WIDTH 16 /* EQ3_B1_C - [15:0] */ | ||
5895 | |||
5896 | /* | ||
5897 | * R3666 (0xE52) - EQ4_1 | ||
5898 | */ | ||
5899 | #define ARIZONA_EQ4_B1_GAIN_MASK 0xF800 /* EQ4_B1_GAIN - [15:11] */ | ||
5900 | #define ARIZONA_EQ4_B1_GAIN_SHIFT 11 /* EQ4_B1_GAIN - [15:11] */ | ||
5901 | #define ARIZONA_EQ4_B1_GAIN_WIDTH 5 /* EQ4_B1_GAIN - [15:11] */ | ||
5902 | #define ARIZONA_EQ4_B2_GAIN_MASK 0x07C0 /* EQ4_B2_GAIN - [10:6] */ | ||
5903 | #define ARIZONA_EQ4_B2_GAIN_SHIFT 6 /* EQ4_B2_GAIN - [10:6] */ | ||
5904 | #define ARIZONA_EQ4_B2_GAIN_WIDTH 5 /* EQ4_B2_GAIN - [10:6] */ | ||
5905 | #define ARIZONA_EQ4_B3_GAIN_MASK 0x003E /* EQ4_B3_GAIN - [5:1] */ | ||
5906 | #define ARIZONA_EQ4_B3_GAIN_SHIFT 1 /* EQ4_B3_GAIN - [5:1] */ | ||
5907 | #define ARIZONA_EQ4_B3_GAIN_WIDTH 5 /* EQ4_B3_GAIN - [5:1] */ | ||
5908 | #define ARIZONA_EQ4_ENA 0x0001 /* EQ4_ENA */ | ||
5909 | #define ARIZONA_EQ4_ENA_MASK 0x0001 /* EQ4_ENA */ | ||
5910 | #define ARIZONA_EQ4_ENA_SHIFT 0 /* EQ4_ENA */ | ||
5911 | #define ARIZONA_EQ4_ENA_WIDTH 1 /* EQ4_ENA */ | ||
5912 | |||
5913 | /* | ||
5914 | * R3667 (0xE53) - EQ4_2 | ||
5915 | */ | ||
5916 | #define ARIZONA_EQ4_B4_GAIN_MASK 0xF800 /* EQ4_B4_GAIN - [15:11] */ | ||
5917 | #define ARIZONA_EQ4_B4_GAIN_SHIFT 11 /* EQ4_B4_GAIN - [15:11] */ | ||
5918 | #define ARIZONA_EQ4_B4_GAIN_WIDTH 5 /* EQ4_B4_GAIN - [15:11] */ | ||
5919 | #define ARIZONA_EQ4_B5_GAIN_MASK 0x07C0 /* EQ4_B5_GAIN - [10:6] */ | ||
5920 | #define ARIZONA_EQ4_B5_GAIN_SHIFT 6 /* EQ4_B5_GAIN - [10:6] */ | ||
5921 | #define ARIZONA_EQ4_B5_GAIN_WIDTH 5 /* EQ4_B5_GAIN - [10:6] */ | ||
5922 | #define ARIZONA_EQ4_B1_MODE 0x0001 /* EQ4_B1_MODE */ | ||
5923 | #define ARIZONA_EQ4_B1_MODE_MASK 0x0001 /* EQ4_B1_MODE */ | ||
5924 | #define ARIZONA_EQ4_B1_MODE_SHIFT 0 /* EQ4_B1_MODE */ | ||
5925 | #define ARIZONA_EQ4_B1_MODE_WIDTH 1 /* EQ4_B1_MODE */ | ||
5926 | |||
5927 | /* | ||
5928 | * R3668 (0xE54) - EQ4_3 | ||
5929 | */ | ||
5930 | #define ARIZONA_EQ4_B1_A_MASK 0xFFFF /* EQ4_B1_A - [15:0] */ | ||
5931 | #define ARIZONA_EQ4_B1_A_SHIFT 0 /* EQ4_B1_A - [15:0] */ | ||
5932 | #define ARIZONA_EQ4_B1_A_WIDTH 16 /* EQ4_B1_A - [15:0] */ | ||
5933 | |||
5934 | /* | ||
5935 | * R3669 (0xE55) - EQ4_4 | ||
5936 | */ | ||
5937 | #define ARIZONA_EQ4_B1_B_MASK 0xFFFF /* EQ4_B1_B - [15:0] */ | ||
5938 | #define ARIZONA_EQ4_B1_B_SHIFT 0 /* EQ4_B1_B - [15:0] */ | ||
5939 | #define ARIZONA_EQ4_B1_B_WIDTH 16 /* EQ4_B1_B - [15:0] */ | ||
5940 | |||
5941 | /* | ||
5942 | * R3670 (0xE56) - EQ4_5 | ||
5943 | */ | ||
5944 | #define ARIZONA_EQ4_B1_PG_MASK 0xFFFF /* EQ4_B1_PG - [15:0] */ | ||
5945 | #define ARIZONA_EQ4_B1_PG_SHIFT 0 /* EQ4_B1_PG - [15:0] */ | ||
5946 | #define ARIZONA_EQ4_B1_PG_WIDTH 16 /* EQ4_B1_PG - [15:0] */ | ||
5947 | |||
5948 | /* | ||
5949 | * R3671 (0xE57) - EQ4_6 | ||
5950 | */ | ||
5951 | #define ARIZONA_EQ4_B2_A_MASK 0xFFFF /* EQ4_B2_A - [15:0] */ | ||
5952 | #define ARIZONA_EQ4_B2_A_SHIFT 0 /* EQ4_B2_A - [15:0] */ | ||
5953 | #define ARIZONA_EQ4_B2_A_WIDTH 16 /* EQ4_B2_A - [15:0] */ | ||
5954 | |||
5955 | /* | ||
5956 | * R3672 (0xE58) - EQ4_7 | ||
5957 | */ | ||
5958 | #define ARIZONA_EQ4_B2_B_MASK 0xFFFF /* EQ4_B2_B - [15:0] */ | ||
5959 | #define ARIZONA_EQ4_B2_B_SHIFT 0 /* EQ4_B2_B - [15:0] */ | ||
5960 | #define ARIZONA_EQ4_B2_B_WIDTH 16 /* EQ4_B2_B - [15:0] */ | ||
5961 | |||
5962 | /* | ||
5963 | * R3673 (0xE59) - EQ4_8 | ||
5964 | */ | ||
5965 | #define ARIZONA_EQ4_B2_C_MASK 0xFFFF /* EQ4_B2_C - [15:0] */ | ||
5966 | #define ARIZONA_EQ4_B2_C_SHIFT 0 /* EQ4_B2_C - [15:0] */ | ||
5967 | #define ARIZONA_EQ4_B2_C_WIDTH 16 /* EQ4_B2_C - [15:0] */ | ||
5968 | |||
5969 | /* | ||
5970 | * R3674 (0xE5A) - EQ4_9 | ||
5971 | */ | ||
5972 | #define ARIZONA_EQ4_B2_PG_MASK 0xFFFF /* EQ4_B2_PG - [15:0] */ | ||
5973 | #define ARIZONA_EQ4_B2_PG_SHIFT 0 /* EQ4_B2_PG - [15:0] */ | ||
5974 | #define ARIZONA_EQ4_B2_PG_WIDTH 16 /* EQ4_B2_PG - [15:0] */ | ||
5975 | |||
5976 | /* | ||
5977 | * R3675 (0xE5B) - EQ4_10 | ||
5978 | */ | ||
5979 | #define ARIZONA_EQ4_B3_A_MASK 0xFFFF /* EQ4_B3_A - [15:0] */ | ||
5980 | #define ARIZONA_EQ4_B3_A_SHIFT 0 /* EQ4_B3_A - [15:0] */ | ||
5981 | #define ARIZONA_EQ4_B3_A_WIDTH 16 /* EQ4_B3_A - [15:0] */ | ||
5982 | |||
5983 | /* | ||
5984 | * R3676 (0xE5C) - EQ4_11 | ||
5985 | */ | ||
5986 | #define ARIZONA_EQ4_B3_B_MASK 0xFFFF /* EQ4_B3_B - [15:0] */ | ||
5987 | #define ARIZONA_EQ4_B3_B_SHIFT 0 /* EQ4_B3_B - [15:0] */ | ||
5988 | #define ARIZONA_EQ4_B3_B_WIDTH 16 /* EQ4_B3_B - [15:0] */ | ||
5989 | |||
5990 | /* | ||
5991 | * R3677 (0xE5D) - EQ4_12 | ||
5992 | */ | ||
5993 | #define ARIZONA_EQ4_B3_C_MASK 0xFFFF /* EQ4_B3_C - [15:0] */ | ||
5994 | #define ARIZONA_EQ4_B3_C_SHIFT 0 /* EQ4_B3_C - [15:0] */ | ||
5995 | #define ARIZONA_EQ4_B3_C_WIDTH 16 /* EQ4_B3_C - [15:0] */ | ||
5996 | |||
5997 | /* | ||
5998 | * R3678 (0xE5E) - EQ4_13 | ||
5999 | */ | ||
6000 | #define ARIZONA_EQ4_B3_PG_MASK 0xFFFF /* EQ4_B3_PG - [15:0] */ | ||
6001 | #define ARIZONA_EQ4_B3_PG_SHIFT 0 /* EQ4_B3_PG - [15:0] */ | ||
6002 | #define ARIZONA_EQ4_B3_PG_WIDTH 16 /* EQ4_B3_PG - [15:0] */ | ||
6003 | |||
6004 | /* | ||
6005 | * R3679 (0xE5F) - EQ4_14 | ||
6006 | */ | ||
6007 | #define ARIZONA_EQ4_B4_A_MASK 0xFFFF /* EQ4_B4_A - [15:0] */ | ||
6008 | #define ARIZONA_EQ4_B4_A_SHIFT 0 /* EQ4_B4_A - [15:0] */ | ||
6009 | #define ARIZONA_EQ4_B4_A_WIDTH 16 /* EQ4_B4_A - [15:0] */ | ||
6010 | |||
6011 | /* | ||
6012 | * R3680 (0xE60) - EQ4_15 | ||
6013 | */ | ||
6014 | #define ARIZONA_EQ4_B4_B_MASK 0xFFFF /* EQ4_B4_B - [15:0] */ | ||
6015 | #define ARIZONA_EQ4_B4_B_SHIFT 0 /* EQ4_B4_B - [15:0] */ | ||
6016 | #define ARIZONA_EQ4_B4_B_WIDTH 16 /* EQ4_B4_B - [15:0] */ | ||
6017 | |||
6018 | /* | ||
6019 | * R3681 (0xE61) - EQ4_16 | ||
6020 | */ | ||
6021 | #define ARIZONA_EQ4_B4_C_MASK 0xFFFF /* EQ4_B4_C - [15:0] */ | ||
6022 | #define ARIZONA_EQ4_B4_C_SHIFT 0 /* EQ4_B4_C - [15:0] */ | ||
6023 | #define ARIZONA_EQ4_B4_C_WIDTH 16 /* EQ4_B4_C - [15:0] */ | ||
6024 | |||
6025 | /* | ||
6026 | * R3682 (0xE62) - EQ4_17 | ||
6027 | */ | ||
6028 | #define ARIZONA_EQ4_B4_PG_MASK 0xFFFF /* EQ4_B4_PG - [15:0] */ | ||
6029 | #define ARIZONA_EQ4_B4_PG_SHIFT 0 /* EQ4_B4_PG - [15:0] */ | ||
6030 | #define ARIZONA_EQ4_B4_PG_WIDTH 16 /* EQ4_B4_PG - [15:0] */ | ||
6031 | |||
6032 | /* | ||
6033 | * R3683 (0xE63) - EQ4_18 | ||
6034 | */ | ||
6035 | #define ARIZONA_EQ4_B5_A_MASK 0xFFFF /* EQ4_B5_A - [15:0] */ | ||
6036 | #define ARIZONA_EQ4_B5_A_SHIFT 0 /* EQ4_B5_A - [15:0] */ | ||
6037 | #define ARIZONA_EQ4_B5_A_WIDTH 16 /* EQ4_B5_A - [15:0] */ | ||
6038 | |||
6039 | /* | ||
6040 | * R3684 (0xE64) - EQ4_19 | ||
6041 | */ | ||
6042 | #define ARIZONA_EQ4_B5_B_MASK 0xFFFF /* EQ4_B5_B - [15:0] */ | ||
6043 | #define ARIZONA_EQ4_B5_B_SHIFT 0 /* EQ4_B5_B - [15:0] */ | ||
6044 | #define ARIZONA_EQ4_B5_B_WIDTH 16 /* EQ4_B5_B - [15:0] */ | ||
6045 | |||
6046 | /* | ||
6047 | * R3685 (0xE65) - EQ4_20 | ||
6048 | */ | ||
6049 | #define ARIZONA_EQ4_B5_PG_MASK 0xFFFF /* EQ4_B5_PG - [15:0] */ | ||
6050 | #define ARIZONA_EQ4_B5_PG_SHIFT 0 /* EQ4_B5_PG - [15:0] */ | ||
6051 | #define ARIZONA_EQ4_B5_PG_WIDTH 16 /* EQ4_B5_PG - [15:0] */ | ||
6052 | |||
6053 | /* | ||
6054 | * R3686 (0xE66) - EQ4_21 | ||
6055 | */ | ||
6056 | #define ARIZONA_EQ4_B1_C_MASK 0xFFFF /* EQ4_B1_C - [15:0] */ | ||
6057 | #define ARIZONA_EQ4_B1_C_SHIFT 0 /* EQ4_B1_C - [15:0] */ | ||
6058 | #define ARIZONA_EQ4_B1_C_WIDTH 16 /* EQ4_B1_C - [15:0] */ | ||
6059 | |||
6060 | /* | ||
6061 | * R3712 (0xE80) - DRC1 ctrl1 | ||
6062 | */ | ||
6063 | #define ARIZONA_DRC1_SIG_DET_RMS_MASK 0xF800 /* DRC1_SIG_DET_RMS - [15:11] */ | ||
6064 | #define ARIZONA_DRC1_SIG_DET_RMS_SHIFT 11 /* DRC1_SIG_DET_RMS - [15:11] */ | ||
6065 | #define ARIZONA_DRC1_SIG_DET_RMS_WIDTH 5 /* DRC1_SIG_DET_RMS - [15:11] */ | ||
6066 | #define ARIZONA_DRC1_SIG_DET_PK_MASK 0x0600 /* DRC1_SIG_DET_PK - [10:9] */ | ||
6067 | #define ARIZONA_DRC1_SIG_DET_PK_SHIFT 9 /* DRC1_SIG_DET_PK - [10:9] */ | ||
6068 | #define ARIZONA_DRC1_SIG_DET_PK_WIDTH 2 /* DRC1_SIG_DET_PK - [10:9] */ | ||
6069 | #define ARIZONA_DRC1_NG_ENA 0x0100 /* DRC1_NG_ENA */ | ||
6070 | #define ARIZONA_DRC1_NG_ENA_MASK 0x0100 /* DRC1_NG_ENA */ | ||
6071 | #define ARIZONA_DRC1_NG_ENA_SHIFT 8 /* DRC1_NG_ENA */ | ||
6072 | #define ARIZONA_DRC1_NG_ENA_WIDTH 1 /* DRC1_NG_ENA */ | ||
6073 | #define ARIZONA_DRC1_SIG_DET_MODE 0x0080 /* DRC1_SIG_DET_MODE */ | ||
6074 | #define ARIZONA_DRC1_SIG_DET_MODE_MASK 0x0080 /* DRC1_SIG_DET_MODE */ | ||
6075 | #define ARIZONA_DRC1_SIG_DET_MODE_SHIFT 7 /* DRC1_SIG_DET_MODE */ | ||
6076 | #define ARIZONA_DRC1_SIG_DET_MODE_WIDTH 1 /* DRC1_SIG_DET_MODE */ | ||
6077 | #define ARIZONA_DRC1_SIG_DET 0x0040 /* DRC1_SIG_DET */ | ||
6078 | #define ARIZONA_DRC1_SIG_DET_MASK 0x0040 /* DRC1_SIG_DET */ | ||
6079 | #define ARIZONA_DRC1_SIG_DET_SHIFT 6 /* DRC1_SIG_DET */ | ||
6080 | #define ARIZONA_DRC1_SIG_DET_WIDTH 1 /* DRC1_SIG_DET */ | ||
6081 | #define ARIZONA_DRC1_KNEE2_OP_ENA 0x0020 /* DRC1_KNEE2_OP_ENA */ | ||
6082 | #define ARIZONA_DRC1_KNEE2_OP_ENA_MASK 0x0020 /* DRC1_KNEE2_OP_ENA */ | ||
6083 | #define ARIZONA_DRC1_KNEE2_OP_ENA_SHIFT 5 /* DRC1_KNEE2_OP_ENA */ | ||
6084 | #define ARIZONA_DRC1_KNEE2_OP_ENA_WIDTH 1 /* DRC1_KNEE2_OP_ENA */ | ||
6085 | #define ARIZONA_DRC1_QR 0x0010 /* DRC1_QR */ | ||
6086 | #define ARIZONA_DRC1_QR_MASK 0x0010 /* DRC1_QR */ | ||
6087 | #define ARIZONA_DRC1_QR_SHIFT 4 /* DRC1_QR */ | ||
6088 | #define ARIZONA_DRC1_QR_WIDTH 1 /* DRC1_QR */ | ||
6089 | #define ARIZONA_DRC1_ANTICLIP 0x0008 /* DRC1_ANTICLIP */ | ||
6090 | #define ARIZONA_DRC1_ANTICLIP_MASK 0x0008 /* DRC1_ANTICLIP */ | ||
6091 | #define ARIZONA_DRC1_ANTICLIP_SHIFT 3 /* DRC1_ANTICLIP */ | ||
6092 | #define ARIZONA_DRC1_ANTICLIP_WIDTH 1 /* DRC1_ANTICLIP */ | ||
6093 | #define ARIZONA_DRC1L_ENA 0x0002 /* DRC1L_ENA */ | ||
6094 | #define ARIZONA_DRC1L_ENA_MASK 0x0002 /* DRC1L_ENA */ | ||
6095 | #define ARIZONA_DRC1L_ENA_SHIFT 1 /* DRC1L_ENA */ | ||
6096 | #define ARIZONA_DRC1L_ENA_WIDTH 1 /* DRC1L_ENA */ | ||
6097 | #define ARIZONA_DRC1R_ENA 0x0001 /* DRC1R_ENA */ | ||
6098 | #define ARIZONA_DRC1R_ENA_MASK 0x0001 /* DRC1R_ENA */ | ||
6099 | #define ARIZONA_DRC1R_ENA_SHIFT 0 /* DRC1R_ENA */ | ||
6100 | #define ARIZONA_DRC1R_ENA_WIDTH 1 /* DRC1R_ENA */ | ||
6101 | |||
6102 | /* | ||
6103 | * R3713 (0xE81) - DRC1 ctrl2 | ||
6104 | */ | ||
6105 | #define ARIZONA_DRC1_ATK_MASK 0x1E00 /* DRC1_ATK - [12:9] */ | ||
6106 | #define ARIZONA_DRC1_ATK_SHIFT 9 /* DRC1_ATK - [12:9] */ | ||
6107 | #define ARIZONA_DRC1_ATK_WIDTH 4 /* DRC1_ATK - [12:9] */ | ||
6108 | #define ARIZONA_DRC1_DCY_MASK 0x01E0 /* DRC1_DCY - [8:5] */ | ||
6109 | #define ARIZONA_DRC1_DCY_SHIFT 5 /* DRC1_DCY - [8:5] */ | ||
6110 | #define ARIZONA_DRC1_DCY_WIDTH 4 /* DRC1_DCY - [8:5] */ | ||
6111 | #define ARIZONA_DRC1_MINGAIN_MASK 0x001C /* DRC1_MINGAIN - [4:2] */ | ||
6112 | #define ARIZONA_DRC1_MINGAIN_SHIFT 2 /* DRC1_MINGAIN - [4:2] */ | ||
6113 | #define ARIZONA_DRC1_MINGAIN_WIDTH 3 /* DRC1_MINGAIN - [4:2] */ | ||
6114 | #define ARIZONA_DRC1_MAXGAIN_MASK 0x0003 /* DRC1_MAXGAIN - [1:0] */ | ||
6115 | #define ARIZONA_DRC1_MAXGAIN_SHIFT 0 /* DRC1_MAXGAIN - [1:0] */ | ||
6116 | #define ARIZONA_DRC1_MAXGAIN_WIDTH 2 /* DRC1_MAXGAIN - [1:0] */ | ||
6117 | |||
6118 | /* | ||
6119 | * R3714 (0xE82) - DRC1 ctrl3 | ||
6120 | */ | ||
6121 | #define ARIZONA_DRC1_NG_MINGAIN_MASK 0xF000 /* DRC1_NG_MINGAIN - [15:12] */ | ||
6122 | #define ARIZONA_DRC1_NG_MINGAIN_SHIFT 12 /* DRC1_NG_MINGAIN - [15:12] */ | ||
6123 | #define ARIZONA_DRC1_NG_MINGAIN_WIDTH 4 /* DRC1_NG_MINGAIN - [15:12] */ | ||
6124 | #define ARIZONA_DRC1_NG_EXP_MASK 0x0C00 /* DRC1_NG_EXP - [11:10] */ | ||
6125 | #define ARIZONA_DRC1_NG_EXP_SHIFT 10 /* DRC1_NG_EXP - [11:10] */ | ||
6126 | #define ARIZONA_DRC1_NG_EXP_WIDTH 2 /* DRC1_NG_EXP - [11:10] */ | ||
6127 | #define ARIZONA_DRC1_QR_THR_MASK 0x0300 /* DRC1_QR_THR - [9:8] */ | ||
6128 | #define ARIZONA_DRC1_QR_THR_SHIFT 8 /* DRC1_QR_THR - [9:8] */ | ||
6129 | #define ARIZONA_DRC1_QR_THR_WIDTH 2 /* DRC1_QR_THR - [9:8] */ | ||
6130 | #define ARIZONA_DRC1_QR_DCY_MASK 0x00C0 /* DRC1_QR_DCY - [7:6] */ | ||
6131 | #define ARIZONA_DRC1_QR_DCY_SHIFT 6 /* DRC1_QR_DCY - [7:6] */ | ||
6132 | #define ARIZONA_DRC1_QR_DCY_WIDTH 2 /* DRC1_QR_DCY - [7:6] */ | ||
6133 | #define ARIZONA_DRC1_HI_COMP_MASK 0x0038 /* DRC1_HI_COMP - [5:3] */ | ||
6134 | #define ARIZONA_DRC1_HI_COMP_SHIFT 3 /* DRC1_HI_COMP - [5:3] */ | ||
6135 | #define ARIZONA_DRC1_HI_COMP_WIDTH 3 /* DRC1_HI_COMP - [5:3] */ | ||
6136 | #define ARIZONA_DRC1_LO_COMP_MASK 0x0007 /* DRC1_LO_COMP - [2:0] */ | ||
6137 | #define ARIZONA_DRC1_LO_COMP_SHIFT 0 /* DRC1_LO_COMP - [2:0] */ | ||
6138 | #define ARIZONA_DRC1_LO_COMP_WIDTH 3 /* DRC1_LO_COMP - [2:0] */ | ||
6139 | |||
6140 | /* | ||
6141 | * R3715 (0xE83) - DRC1 ctrl4 | ||
6142 | */ | ||
6143 | #define ARIZONA_DRC1_KNEE_IP_MASK 0x07E0 /* DRC1_KNEE_IP - [10:5] */ | ||
6144 | #define ARIZONA_DRC1_KNEE_IP_SHIFT 5 /* DRC1_KNEE_IP - [10:5] */ | ||
6145 | #define ARIZONA_DRC1_KNEE_IP_WIDTH 6 /* DRC1_KNEE_IP - [10:5] */ | ||
6146 | #define ARIZONA_DRC1_KNEE_OP_MASK 0x001F /* DRC1_KNEE_OP - [4:0] */ | ||
6147 | #define ARIZONA_DRC1_KNEE_OP_SHIFT 0 /* DRC1_KNEE_OP - [4:0] */ | ||
6148 | #define ARIZONA_DRC1_KNEE_OP_WIDTH 5 /* DRC1_KNEE_OP - [4:0] */ | ||
6149 | |||
6150 | /* | ||
6151 | * R3716 (0xE84) - DRC1 ctrl5 | ||
6152 | */ | ||
6153 | #define ARIZONA_DRC1_KNEE2_IP_MASK 0x03E0 /* DRC1_KNEE2_IP - [9:5] */ | ||
6154 | #define ARIZONA_DRC1_KNEE2_IP_SHIFT 5 /* DRC1_KNEE2_IP - [9:5] */ | ||
6155 | #define ARIZONA_DRC1_KNEE2_IP_WIDTH 5 /* DRC1_KNEE2_IP - [9:5] */ | ||
6156 | #define ARIZONA_DRC1_KNEE2_OP_MASK 0x001F /* DRC1_KNEE2_OP - [4:0] */ | ||
6157 | #define ARIZONA_DRC1_KNEE2_OP_SHIFT 0 /* DRC1_KNEE2_OP - [4:0] */ | ||
6158 | #define ARIZONA_DRC1_KNEE2_OP_WIDTH 5 /* DRC1_KNEE2_OP - [4:0] */ | ||
6159 | |||
6160 | /* | ||
6161 | * R3721 (0xE89) - DRC2 ctrl1 | ||
6162 | */ | ||
6163 | #define ARIZONA_DRC2_SIG_DET_RMS_MASK 0xF800 /* DRC2_SIG_DET_RMS - [15:11] */ | ||
6164 | #define ARIZONA_DRC2_SIG_DET_RMS_SHIFT 11 /* DRC2_SIG_DET_RMS - [15:11] */ | ||
6165 | #define ARIZONA_DRC2_SIG_DET_RMS_WIDTH 5 /* DRC2_SIG_DET_RMS - [15:11] */ | ||
6166 | #define ARIZONA_DRC2_SIG_DET_PK_MASK 0x0600 /* DRC2_SIG_DET_PK - [10:9] */ | ||
6167 | #define ARIZONA_DRC2_SIG_DET_PK_SHIFT 9 /* DRC2_SIG_DET_PK - [10:9] */ | ||
6168 | #define ARIZONA_DRC2_SIG_DET_PK_WIDTH 2 /* DRC2_SIG_DET_PK - [10:9] */ | ||
6169 | #define ARIZONA_DRC2_NG_ENA 0x0100 /* DRC2_NG_ENA */ | ||
6170 | #define ARIZONA_DRC2_NG_ENA_MASK 0x0100 /* DRC2_NG_ENA */ | ||
6171 | #define ARIZONA_DRC2_NG_ENA_SHIFT 8 /* DRC2_NG_ENA */ | ||
6172 | #define ARIZONA_DRC2_NG_ENA_WIDTH 1 /* DRC2_NG_ENA */ | ||
6173 | #define ARIZONA_DRC2_SIG_DET_MODE 0x0080 /* DRC2_SIG_DET_MODE */ | ||
6174 | #define ARIZONA_DRC2_SIG_DET_MODE_MASK 0x0080 /* DRC2_SIG_DET_MODE */ | ||
6175 | #define ARIZONA_DRC2_SIG_DET_MODE_SHIFT 7 /* DRC2_SIG_DET_MODE */ | ||
6176 | #define ARIZONA_DRC2_SIG_DET_MODE_WIDTH 1 /* DRC2_SIG_DET_MODE */ | ||
6177 | #define ARIZONA_DRC2_SIG_DET 0x0040 /* DRC2_SIG_DET */ | ||
6178 | #define ARIZONA_DRC2_SIG_DET_MASK 0x0040 /* DRC2_SIG_DET */ | ||
6179 | #define ARIZONA_DRC2_SIG_DET_SHIFT 6 /* DRC2_SIG_DET */ | ||
6180 | #define ARIZONA_DRC2_SIG_DET_WIDTH 1 /* DRC2_SIG_DET */ | ||
6181 | #define ARIZONA_DRC2_KNEE2_OP_ENA 0x0020 /* DRC2_KNEE2_OP_ENA */ | ||
6182 | #define ARIZONA_DRC2_KNEE2_OP_ENA_MASK 0x0020 /* DRC2_KNEE2_OP_ENA */ | ||
6183 | #define ARIZONA_DRC2_KNEE2_OP_ENA_SHIFT 5 /* DRC2_KNEE2_OP_ENA */ | ||
6184 | #define ARIZONA_DRC2_KNEE2_OP_ENA_WIDTH 1 /* DRC2_KNEE2_OP_ENA */ | ||
6185 | #define ARIZONA_DRC2_QR 0x0010 /* DRC2_QR */ | ||
6186 | #define ARIZONA_DRC2_QR_MASK 0x0010 /* DRC2_QR */ | ||
6187 | #define ARIZONA_DRC2_QR_SHIFT 4 /* DRC2_QR */ | ||
6188 | #define ARIZONA_DRC2_QR_WIDTH 1 /* DRC2_QR */ | ||
6189 | #define ARIZONA_DRC2_ANTICLIP 0x0008 /* DRC2_ANTICLIP */ | ||
6190 | #define ARIZONA_DRC2_ANTICLIP_MASK 0x0008 /* DRC2_ANTICLIP */ | ||
6191 | #define ARIZONA_DRC2_ANTICLIP_SHIFT 3 /* DRC2_ANTICLIP */ | ||
6192 | #define ARIZONA_DRC2_ANTICLIP_WIDTH 1 /* DRC2_ANTICLIP */ | ||
6193 | #define ARIZONA_DRC2L_ENA 0x0002 /* DRC2L_ENA */ | ||
6194 | #define ARIZONA_DRC2L_ENA_MASK 0x0002 /* DRC2L_ENA */ | ||
6195 | #define ARIZONA_DRC2L_ENA_SHIFT 1 /* DRC2L_ENA */ | ||
6196 | #define ARIZONA_DRC2L_ENA_WIDTH 1 /* DRC2L_ENA */ | ||
6197 | #define ARIZONA_DRC2R_ENA 0x0001 /* DRC2R_ENA */ | ||
6198 | #define ARIZONA_DRC2R_ENA_MASK 0x0001 /* DRC2R_ENA */ | ||
6199 | #define ARIZONA_DRC2R_ENA_SHIFT 0 /* DRC2R_ENA */ | ||
6200 | #define ARIZONA_DRC2R_ENA_WIDTH 1 /* DRC2R_ENA */ | ||
6201 | |||
6202 | /* | ||
6203 | * R3722 (0xE8A) - DRC2 ctrl2 | ||
6204 | */ | ||
6205 | #define ARIZONA_DRC2_ATK_MASK 0x1E00 /* DRC2_ATK - [12:9] */ | ||
6206 | #define ARIZONA_DRC2_ATK_SHIFT 9 /* DRC2_ATK - [12:9] */ | ||
6207 | #define ARIZONA_DRC2_ATK_WIDTH 4 /* DRC2_ATK - [12:9] */ | ||
6208 | #define ARIZONA_DRC2_DCY_MASK 0x01E0 /* DRC2_DCY - [8:5] */ | ||
6209 | #define ARIZONA_DRC2_DCY_SHIFT 5 /* DRC2_DCY - [8:5] */ | ||
6210 | #define ARIZONA_DRC2_DCY_WIDTH 4 /* DRC2_DCY - [8:5] */ | ||
6211 | #define ARIZONA_DRC2_MINGAIN_MASK 0x001C /* DRC2_MINGAIN - [4:2] */ | ||
6212 | #define ARIZONA_DRC2_MINGAIN_SHIFT 2 /* DRC2_MINGAIN - [4:2] */ | ||
6213 | #define ARIZONA_DRC2_MINGAIN_WIDTH 3 /* DRC2_MINGAIN - [4:2] */ | ||
6214 | #define ARIZONA_DRC2_MAXGAIN_MASK 0x0003 /* DRC2_MAXGAIN - [1:0] */ | ||
6215 | #define ARIZONA_DRC2_MAXGAIN_SHIFT 0 /* DRC2_MAXGAIN - [1:0] */ | ||
6216 | #define ARIZONA_DRC2_MAXGAIN_WIDTH 2 /* DRC2_MAXGAIN - [1:0] */ | ||
6217 | |||
6218 | /* | ||
6219 | * R3723 (0xE8B) - DRC2 ctrl3 | ||
6220 | */ | ||
6221 | #define ARIZONA_DRC2_NG_MINGAIN_MASK 0xF000 /* DRC2_NG_MINGAIN - [15:12] */ | ||
6222 | #define ARIZONA_DRC2_NG_MINGAIN_SHIFT 12 /* DRC2_NG_MINGAIN - [15:12] */ | ||
6223 | #define ARIZONA_DRC2_NG_MINGAIN_WIDTH 4 /* DRC2_NG_MINGAIN - [15:12] */ | ||
6224 | #define ARIZONA_DRC2_NG_EXP_MASK 0x0C00 /* DRC2_NG_EXP - [11:10] */ | ||
6225 | #define ARIZONA_DRC2_NG_EXP_SHIFT 10 /* DRC2_NG_EXP - [11:10] */ | ||
6226 | #define ARIZONA_DRC2_NG_EXP_WIDTH 2 /* DRC2_NG_EXP - [11:10] */ | ||
6227 | #define ARIZONA_DRC2_QR_THR_MASK 0x0300 /* DRC2_QR_THR - [9:8] */ | ||
6228 | #define ARIZONA_DRC2_QR_THR_SHIFT 8 /* DRC2_QR_THR - [9:8] */ | ||
6229 | #define ARIZONA_DRC2_QR_THR_WIDTH 2 /* DRC2_QR_THR - [9:8] */ | ||
6230 | #define ARIZONA_DRC2_QR_DCY_MASK 0x00C0 /* DRC2_QR_DCY - [7:6] */ | ||
6231 | #define ARIZONA_DRC2_QR_DCY_SHIFT 6 /* DRC2_QR_DCY - [7:6] */ | ||
6232 | #define ARIZONA_DRC2_QR_DCY_WIDTH 2 /* DRC2_QR_DCY - [7:6] */ | ||
6233 | #define ARIZONA_DRC2_HI_COMP_MASK 0x0038 /* DRC2_HI_COMP - [5:3] */ | ||
6234 | #define ARIZONA_DRC2_HI_COMP_SHIFT 3 /* DRC2_HI_COMP - [5:3] */ | ||
6235 | #define ARIZONA_DRC2_HI_COMP_WIDTH 3 /* DRC2_HI_COMP - [5:3] */ | ||
6236 | #define ARIZONA_DRC2_LO_COMP_MASK 0x0007 /* DRC2_LO_COMP - [2:0] */ | ||
6237 | #define ARIZONA_DRC2_LO_COMP_SHIFT 0 /* DRC2_LO_COMP - [2:0] */ | ||
6238 | #define ARIZONA_DRC2_LO_COMP_WIDTH 3 /* DRC2_LO_COMP - [2:0] */ | ||
6239 | |||
6240 | /* | ||
6241 | * R3724 (0xE8C) - DRC2 ctrl4 | ||
6242 | */ | ||
6243 | #define ARIZONA_DRC2_KNEE_IP_MASK 0x07E0 /* DRC2_KNEE_IP - [10:5] */ | ||
6244 | #define ARIZONA_DRC2_KNEE_IP_SHIFT 5 /* DRC2_KNEE_IP - [10:5] */ | ||
6245 | #define ARIZONA_DRC2_KNEE_IP_WIDTH 6 /* DRC2_KNEE_IP - [10:5] */ | ||
6246 | #define ARIZONA_DRC2_KNEE_OP_MASK 0x001F /* DRC2_KNEE_OP - [4:0] */ | ||
6247 | #define ARIZONA_DRC2_KNEE_OP_SHIFT 0 /* DRC2_KNEE_OP - [4:0] */ | ||
6248 | #define ARIZONA_DRC2_KNEE_OP_WIDTH 5 /* DRC2_KNEE_OP - [4:0] */ | ||
6249 | |||
6250 | /* | ||
6251 | * R3725 (0xE8D) - DRC2 ctrl5 | ||
6252 | */ | ||
6253 | #define ARIZONA_DRC2_KNEE2_IP_MASK 0x03E0 /* DRC2_KNEE2_IP - [9:5] */ | ||
6254 | #define ARIZONA_DRC2_KNEE2_IP_SHIFT 5 /* DRC2_KNEE2_IP - [9:5] */ | ||
6255 | #define ARIZONA_DRC2_KNEE2_IP_WIDTH 5 /* DRC2_KNEE2_IP - [9:5] */ | ||
6256 | #define ARIZONA_DRC2_KNEE2_OP_MASK 0x001F /* DRC2_KNEE2_OP - [4:0] */ | ||
6257 | #define ARIZONA_DRC2_KNEE2_OP_SHIFT 0 /* DRC2_KNEE2_OP - [4:0] */ | ||
6258 | #define ARIZONA_DRC2_KNEE2_OP_WIDTH 5 /* DRC2_KNEE2_OP - [4:0] */ | ||
6259 | |||
6260 | /* | ||
6261 | * R3776 (0xEC0) - HPLPF1_1 | ||
6262 | */ | ||
6263 | #define ARIZONA_LHPF1_MODE 0x0002 /* LHPF1_MODE */ | ||
6264 | #define ARIZONA_LHPF1_MODE_MASK 0x0002 /* LHPF1_MODE */ | ||
6265 | #define ARIZONA_LHPF1_MODE_SHIFT 1 /* LHPF1_MODE */ | ||
6266 | #define ARIZONA_LHPF1_MODE_WIDTH 1 /* LHPF1_MODE */ | ||
6267 | #define ARIZONA_LHPF1_ENA 0x0001 /* LHPF1_ENA */ | ||
6268 | #define ARIZONA_LHPF1_ENA_MASK 0x0001 /* LHPF1_ENA */ | ||
6269 | #define ARIZONA_LHPF1_ENA_SHIFT 0 /* LHPF1_ENA */ | ||
6270 | #define ARIZONA_LHPF1_ENA_WIDTH 1 /* LHPF1_ENA */ | ||
6271 | |||
6272 | /* | ||
6273 | * R3777 (0xEC1) - HPLPF1_2 | ||
6274 | */ | ||
6275 | #define ARIZONA_LHPF1_COEFF_MASK 0xFFFF /* LHPF1_COEFF - [15:0] */ | ||
6276 | #define ARIZONA_LHPF1_COEFF_SHIFT 0 /* LHPF1_COEFF - [15:0] */ | ||
6277 | #define ARIZONA_LHPF1_COEFF_WIDTH 16 /* LHPF1_COEFF - [15:0] */ | ||
6278 | |||
6279 | /* | ||
6280 | * R3780 (0xEC4) - HPLPF2_1 | ||
6281 | */ | ||
6282 | #define ARIZONA_LHPF2_MODE 0x0002 /* LHPF2_MODE */ | ||
6283 | #define ARIZONA_LHPF2_MODE_MASK 0x0002 /* LHPF2_MODE */ | ||
6284 | #define ARIZONA_LHPF2_MODE_SHIFT 1 /* LHPF2_MODE */ | ||
6285 | #define ARIZONA_LHPF2_MODE_WIDTH 1 /* LHPF2_MODE */ | ||
6286 | #define ARIZONA_LHPF2_ENA 0x0001 /* LHPF2_ENA */ | ||
6287 | #define ARIZONA_LHPF2_ENA_MASK 0x0001 /* LHPF2_ENA */ | ||
6288 | #define ARIZONA_LHPF2_ENA_SHIFT 0 /* LHPF2_ENA */ | ||
6289 | #define ARIZONA_LHPF2_ENA_WIDTH 1 /* LHPF2_ENA */ | ||
6290 | |||
6291 | /* | ||
6292 | * R3781 (0xEC5) - HPLPF2_2 | ||
6293 | */ | ||
6294 | #define ARIZONA_LHPF2_COEFF_MASK 0xFFFF /* LHPF2_COEFF - [15:0] */ | ||
6295 | #define ARIZONA_LHPF2_COEFF_SHIFT 0 /* LHPF2_COEFF - [15:0] */ | ||
6296 | #define ARIZONA_LHPF2_COEFF_WIDTH 16 /* LHPF2_COEFF - [15:0] */ | ||
6297 | |||
6298 | /* | ||
6299 | * R3784 (0xEC8) - HPLPF3_1 | ||
6300 | */ | ||
6301 | #define ARIZONA_LHPF3_MODE 0x0002 /* LHPF3_MODE */ | ||
6302 | #define ARIZONA_LHPF3_MODE_MASK 0x0002 /* LHPF3_MODE */ | ||
6303 | #define ARIZONA_LHPF3_MODE_SHIFT 1 /* LHPF3_MODE */ | ||
6304 | #define ARIZONA_LHPF3_MODE_WIDTH 1 /* LHPF3_MODE */ | ||
6305 | #define ARIZONA_LHPF3_ENA 0x0001 /* LHPF3_ENA */ | ||
6306 | #define ARIZONA_LHPF3_ENA_MASK 0x0001 /* LHPF3_ENA */ | ||
6307 | #define ARIZONA_LHPF3_ENA_SHIFT 0 /* LHPF3_ENA */ | ||
6308 | #define ARIZONA_LHPF3_ENA_WIDTH 1 /* LHPF3_ENA */ | ||
6309 | |||
6310 | /* | ||
6311 | * R3785 (0xEC9) - HPLPF3_2 | ||
6312 | */ | ||
6313 | #define ARIZONA_LHPF3_COEFF_MASK 0xFFFF /* LHPF3_COEFF - [15:0] */ | ||
6314 | #define ARIZONA_LHPF3_COEFF_SHIFT 0 /* LHPF3_COEFF - [15:0] */ | ||
6315 | #define ARIZONA_LHPF3_COEFF_WIDTH 16 /* LHPF3_COEFF - [15:0] */ | ||
6316 | |||
6317 | /* | ||
6318 | * R3788 (0xECC) - HPLPF4_1 | ||
6319 | */ | ||
6320 | #define ARIZONA_LHPF4_MODE 0x0002 /* LHPF4_MODE */ | ||
6321 | #define ARIZONA_LHPF4_MODE_MASK 0x0002 /* LHPF4_MODE */ | ||
6322 | #define ARIZONA_LHPF4_MODE_SHIFT 1 /* LHPF4_MODE */ | ||
6323 | #define ARIZONA_LHPF4_MODE_WIDTH 1 /* LHPF4_MODE */ | ||
6324 | #define ARIZONA_LHPF4_ENA 0x0001 /* LHPF4_ENA */ | ||
6325 | #define ARIZONA_LHPF4_ENA_MASK 0x0001 /* LHPF4_ENA */ | ||
6326 | #define ARIZONA_LHPF4_ENA_SHIFT 0 /* LHPF4_ENA */ | ||
6327 | #define ARIZONA_LHPF4_ENA_WIDTH 1 /* LHPF4_ENA */ | ||
6328 | |||
6329 | /* | ||
6330 | * R3789 (0xECD) - HPLPF4_2 | ||
6331 | */ | ||
6332 | #define ARIZONA_LHPF4_COEFF_MASK 0xFFFF /* LHPF4_COEFF - [15:0] */ | ||
6333 | #define ARIZONA_LHPF4_COEFF_SHIFT 0 /* LHPF4_COEFF - [15:0] */ | ||
6334 | #define ARIZONA_LHPF4_COEFF_WIDTH 16 /* LHPF4_COEFF - [15:0] */ | ||
6335 | |||
6336 | /* | ||
6337 | * R3808 (0xEE0) - ASRC_ENABLE | ||
6338 | */ | ||
6339 | #define ARIZONA_ASRC2L_ENA 0x0008 /* ASRC2L_ENA */ | ||
6340 | #define ARIZONA_ASRC2L_ENA_MASK 0x0008 /* ASRC2L_ENA */ | ||
6341 | #define ARIZONA_ASRC2L_ENA_SHIFT 3 /* ASRC2L_ENA */ | ||
6342 | #define ARIZONA_ASRC2L_ENA_WIDTH 1 /* ASRC2L_ENA */ | ||
6343 | #define ARIZONA_ASRC2R_ENA 0x0004 /* ASRC2R_ENA */ | ||
6344 | #define ARIZONA_ASRC2R_ENA_MASK 0x0004 /* ASRC2R_ENA */ | ||
6345 | #define ARIZONA_ASRC2R_ENA_SHIFT 2 /* ASRC2R_ENA */ | ||
6346 | #define ARIZONA_ASRC2R_ENA_WIDTH 1 /* ASRC2R_ENA */ | ||
6347 | #define ARIZONA_ASRC1L_ENA 0x0002 /* ASRC1L_ENA */ | ||
6348 | #define ARIZONA_ASRC1L_ENA_MASK 0x0002 /* ASRC1L_ENA */ | ||
6349 | #define ARIZONA_ASRC1L_ENA_SHIFT 1 /* ASRC1L_ENA */ | ||
6350 | #define ARIZONA_ASRC1L_ENA_WIDTH 1 /* ASRC1L_ENA */ | ||
6351 | #define ARIZONA_ASRC1R_ENA 0x0001 /* ASRC1R_ENA */ | ||
6352 | #define ARIZONA_ASRC1R_ENA_MASK 0x0001 /* ASRC1R_ENA */ | ||
6353 | #define ARIZONA_ASRC1R_ENA_SHIFT 0 /* ASRC1R_ENA */ | ||
6354 | #define ARIZONA_ASRC1R_ENA_WIDTH 1 /* ASRC1R_ENA */ | ||
6355 | |||
6356 | /* | ||
6357 | * R3810 (0xEE2) - ASRC_RATE1 | ||
6358 | */ | ||
6359 | #define ARIZONA_ASRC_RATE1_MASK 0x7800 /* ASRC_RATE1 - [14:11] */ | ||
6360 | #define ARIZONA_ASRC_RATE1_SHIFT 11 /* ASRC_RATE1 - [14:11] */ | ||
6361 | #define ARIZONA_ASRC_RATE1_WIDTH 4 /* ASRC_RATE1 - [14:11] */ | ||
6362 | |||
6363 | /* | ||
6364 | * R3811 (0xEE3) - ASRC_RATE2 | ||
6365 | */ | ||
6366 | #define ARIZONA_ASRC_RATE2_MASK 0x7800 /* ASRC_RATE2 - [14:11] */ | ||
6367 | #define ARIZONA_ASRC_RATE2_SHIFT 11 /* ASRC_RATE2 - [14:11] */ | ||
6368 | #define ARIZONA_ASRC_RATE2_WIDTH 4 /* ASRC_RATE2 - [14:11] */ | ||
6369 | |||
6370 | /* | ||
6371 | * R3824 (0xEF0) - ISRC 1 CTRL 1 | ||
6372 | */ | ||
6373 | #define ARIZONA_ISRC1_FSH_MASK 0x7800 /* ISRC1_FSH - [14:11] */ | ||
6374 | #define ARIZONA_ISRC1_FSH_SHIFT 11 /* ISRC1_FSH - [14:11] */ | ||
6375 | #define ARIZONA_ISRC1_FSH_WIDTH 4 /* ISRC1_FSH - [14:11] */ | ||
6376 | #define ARIZONA_ISRC1_CLK_SEL_MASK 0x0700 /* ISRC1_CLK_SEL - [10:8] */ | ||
6377 | #define ARIZONA_ISRC1_CLK_SEL_SHIFT 8 /* ISRC1_CLK_SEL - [10:8] */ | ||
6378 | #define ARIZONA_ISRC1_CLK_SEL_WIDTH 3 /* ISRC1_CLK_SEL - [10:8] */ | ||
6379 | |||
6380 | /* | ||
6381 | * R3825 (0xEF1) - ISRC 1 CTRL 2 | ||
6382 | */ | ||
6383 | #define ARIZONA_ISRC1_FSL_MASK 0x7800 /* ISRC1_FSL - [14:11] */ | ||
6384 | #define ARIZONA_ISRC1_FSL_SHIFT 11 /* ISRC1_FSL - [14:11] */ | ||
6385 | #define ARIZONA_ISRC1_FSL_WIDTH 4 /* ISRC1_FSL - [14:11] */ | ||
6386 | |||
6387 | /* | ||
6388 | * R3826 (0xEF2) - ISRC 1 CTRL 3 | ||
6389 | */ | ||
6390 | #define ARIZONA_ISRC1_INT0_ENA 0x8000 /* ISRC1_INT0_ENA */ | ||
6391 | #define ARIZONA_ISRC1_INT0_ENA_MASK 0x8000 /* ISRC1_INT0_ENA */ | ||
6392 | #define ARIZONA_ISRC1_INT0_ENA_SHIFT 15 /* ISRC1_INT0_ENA */ | ||
6393 | #define ARIZONA_ISRC1_INT0_ENA_WIDTH 1 /* ISRC1_INT0_ENA */ | ||
6394 | #define ARIZONA_ISRC1_INT1_ENA 0x4000 /* ISRC1_INT1_ENA */ | ||
6395 | #define ARIZONA_ISRC1_INT1_ENA_MASK 0x4000 /* ISRC1_INT1_ENA */ | ||
6396 | #define ARIZONA_ISRC1_INT1_ENA_SHIFT 14 /* ISRC1_INT1_ENA */ | ||
6397 | #define ARIZONA_ISRC1_INT1_ENA_WIDTH 1 /* ISRC1_INT1_ENA */ | ||
6398 | #define ARIZONA_ISRC1_INT2_ENA 0x2000 /* ISRC1_INT2_ENA */ | ||
6399 | #define ARIZONA_ISRC1_INT2_ENA_MASK 0x2000 /* ISRC1_INT2_ENA */ | ||
6400 | #define ARIZONA_ISRC1_INT2_ENA_SHIFT 13 /* ISRC1_INT2_ENA */ | ||
6401 | #define ARIZONA_ISRC1_INT2_ENA_WIDTH 1 /* ISRC1_INT2_ENA */ | ||
6402 | #define ARIZONA_ISRC1_INT3_ENA 0x1000 /* ISRC1_INT3_ENA */ | ||
6403 | #define ARIZONA_ISRC1_INT3_ENA_MASK 0x1000 /* ISRC1_INT3_ENA */ | ||
6404 | #define ARIZONA_ISRC1_INT3_ENA_SHIFT 12 /* ISRC1_INT3_ENA */ | ||
6405 | #define ARIZONA_ISRC1_INT3_ENA_WIDTH 1 /* ISRC1_INT3_ENA */ | ||
6406 | #define ARIZONA_ISRC1_DEC0_ENA 0x0200 /* ISRC1_DEC0_ENA */ | ||
6407 | #define ARIZONA_ISRC1_DEC0_ENA_MASK 0x0200 /* ISRC1_DEC0_ENA */ | ||
6408 | #define ARIZONA_ISRC1_DEC0_ENA_SHIFT 9 /* ISRC1_DEC0_ENA */ | ||
6409 | #define ARIZONA_ISRC1_DEC0_ENA_WIDTH 1 /* ISRC1_DEC0_ENA */ | ||
6410 | #define ARIZONA_ISRC1_DEC1_ENA 0x0100 /* ISRC1_DEC1_ENA */ | ||
6411 | #define ARIZONA_ISRC1_DEC1_ENA_MASK 0x0100 /* ISRC1_DEC1_ENA */ | ||
6412 | #define ARIZONA_ISRC1_DEC1_ENA_SHIFT 8 /* ISRC1_DEC1_ENA */ | ||
6413 | #define ARIZONA_ISRC1_DEC1_ENA_WIDTH 1 /* ISRC1_DEC1_ENA */ | ||
6414 | #define ARIZONA_ISRC1_DEC2_ENA 0x0080 /* ISRC1_DEC2_ENA */ | ||
6415 | #define ARIZONA_ISRC1_DEC2_ENA_MASK 0x0080 /* ISRC1_DEC2_ENA */ | ||
6416 | #define ARIZONA_ISRC1_DEC2_ENA_SHIFT 7 /* ISRC1_DEC2_ENA */ | ||
6417 | #define ARIZONA_ISRC1_DEC2_ENA_WIDTH 1 /* ISRC1_DEC2_ENA */ | ||
6418 | #define ARIZONA_ISRC1_DEC3_ENA 0x0040 /* ISRC1_DEC3_ENA */ | ||
6419 | #define ARIZONA_ISRC1_DEC3_ENA_MASK 0x0040 /* ISRC1_DEC3_ENA */ | ||
6420 | #define ARIZONA_ISRC1_DEC3_ENA_SHIFT 6 /* ISRC1_DEC3_ENA */ | ||
6421 | #define ARIZONA_ISRC1_DEC3_ENA_WIDTH 1 /* ISRC1_DEC3_ENA */ | ||
6422 | #define ARIZONA_ISRC1_NOTCH_ENA 0x0001 /* ISRC1_NOTCH_ENA */ | ||
6423 | #define ARIZONA_ISRC1_NOTCH_ENA_MASK 0x0001 /* ISRC1_NOTCH_ENA */ | ||
6424 | #define ARIZONA_ISRC1_NOTCH_ENA_SHIFT 0 /* ISRC1_NOTCH_ENA */ | ||
6425 | #define ARIZONA_ISRC1_NOTCH_ENA_WIDTH 1 /* ISRC1_NOTCH_ENA */ | ||
6426 | |||
6427 | /* | ||
6428 | * R3827 (0xEF3) - ISRC 2 CTRL 1 | ||
6429 | */ | ||
6430 | #define ARIZONA_ISRC2_FSH_MASK 0x7800 /* ISRC2_FSH - [14:11] */ | ||
6431 | #define ARIZONA_ISRC2_FSH_SHIFT 11 /* ISRC2_FSH - [14:11] */ | ||
6432 | #define ARIZONA_ISRC2_FSH_WIDTH 4 /* ISRC2_FSH - [14:11] */ | ||
6433 | #define ARIZONA_ISRC2_CLK_SEL_MASK 0x0700 /* ISRC2_CLK_SEL - [10:8] */ | ||
6434 | #define ARIZONA_ISRC2_CLK_SEL_SHIFT 8 /* ISRC2_CLK_SEL - [10:8] */ | ||
6435 | #define ARIZONA_ISRC2_CLK_SEL_WIDTH 3 /* ISRC2_CLK_SEL - [10:8] */ | ||
6436 | |||
6437 | /* | ||
6438 | * R3828 (0xEF4) - ISRC 2 CTRL 2 | ||
6439 | */ | ||
6440 | #define ARIZONA_ISRC2_FSL_MASK 0x7800 /* ISRC2_FSL - [14:11] */ | ||
6441 | #define ARIZONA_ISRC2_FSL_SHIFT 11 /* ISRC2_FSL - [14:11] */ | ||
6442 | #define ARIZONA_ISRC2_FSL_WIDTH 4 /* ISRC2_FSL - [14:11] */ | ||
6443 | |||
6444 | /* | ||
6445 | * R3829 (0xEF5) - ISRC 2 CTRL 3 | ||
6446 | */ | ||
6447 | #define ARIZONA_ISRC2_INT0_ENA 0x8000 /* ISRC2_INT0_ENA */ | ||
6448 | #define ARIZONA_ISRC2_INT0_ENA_MASK 0x8000 /* ISRC2_INT0_ENA */ | ||
6449 | #define ARIZONA_ISRC2_INT0_ENA_SHIFT 15 /* ISRC2_INT0_ENA */ | ||
6450 | #define ARIZONA_ISRC2_INT0_ENA_WIDTH 1 /* ISRC2_INT0_ENA */ | ||
6451 | #define ARIZONA_ISRC2_INT1_ENA 0x4000 /* ISRC2_INT1_ENA */ | ||
6452 | #define ARIZONA_ISRC2_INT1_ENA_MASK 0x4000 /* ISRC2_INT1_ENA */ | ||
6453 | #define ARIZONA_ISRC2_INT1_ENA_SHIFT 14 /* ISRC2_INT1_ENA */ | ||
6454 | #define ARIZONA_ISRC2_INT1_ENA_WIDTH 1 /* ISRC2_INT1_ENA */ | ||
6455 | #define ARIZONA_ISRC2_INT2_ENA 0x2000 /* ISRC2_INT2_ENA */ | ||
6456 | #define ARIZONA_ISRC2_INT2_ENA_MASK 0x2000 /* ISRC2_INT2_ENA */ | ||
6457 | #define ARIZONA_ISRC2_INT2_ENA_SHIFT 13 /* ISRC2_INT2_ENA */ | ||
6458 | #define ARIZONA_ISRC2_INT2_ENA_WIDTH 1 /* ISRC2_INT2_ENA */ | ||
6459 | #define ARIZONA_ISRC2_INT3_ENA 0x1000 /* ISRC2_INT3_ENA */ | ||
6460 | #define ARIZONA_ISRC2_INT3_ENA_MASK 0x1000 /* ISRC2_INT3_ENA */ | ||
6461 | #define ARIZONA_ISRC2_INT3_ENA_SHIFT 12 /* ISRC2_INT3_ENA */ | ||
6462 | #define ARIZONA_ISRC2_INT3_ENA_WIDTH 1 /* ISRC2_INT3_ENA */ | ||
6463 | #define ARIZONA_ISRC2_DEC0_ENA 0x0200 /* ISRC2_DEC0_ENA */ | ||
6464 | #define ARIZONA_ISRC2_DEC0_ENA_MASK 0x0200 /* ISRC2_DEC0_ENA */ | ||
6465 | #define ARIZONA_ISRC2_DEC0_ENA_SHIFT 9 /* ISRC2_DEC0_ENA */ | ||
6466 | #define ARIZONA_ISRC2_DEC0_ENA_WIDTH 1 /* ISRC2_DEC0_ENA */ | ||
6467 | #define ARIZONA_ISRC2_DEC1_ENA 0x0100 /* ISRC2_DEC1_ENA */ | ||
6468 | #define ARIZONA_ISRC2_DEC1_ENA_MASK 0x0100 /* ISRC2_DEC1_ENA */ | ||
6469 | #define ARIZONA_ISRC2_DEC1_ENA_SHIFT 8 /* ISRC2_DEC1_ENA */ | ||
6470 | #define ARIZONA_ISRC2_DEC1_ENA_WIDTH 1 /* ISRC2_DEC1_ENA */ | ||
6471 | #define ARIZONA_ISRC2_DEC2_ENA 0x0080 /* ISRC2_DEC2_ENA */ | ||
6472 | #define ARIZONA_ISRC2_DEC2_ENA_MASK 0x0080 /* ISRC2_DEC2_ENA */ | ||
6473 | #define ARIZONA_ISRC2_DEC2_ENA_SHIFT 7 /* ISRC2_DEC2_ENA */ | ||
6474 | #define ARIZONA_ISRC2_DEC2_ENA_WIDTH 1 /* ISRC2_DEC2_ENA */ | ||
6475 | #define ARIZONA_ISRC2_DEC3_ENA 0x0040 /* ISRC2_DEC3_ENA */ | ||
6476 | #define ARIZONA_ISRC2_DEC3_ENA_MASK 0x0040 /* ISRC2_DEC3_ENA */ | ||
6477 | #define ARIZONA_ISRC2_DEC3_ENA_SHIFT 6 /* ISRC2_DEC3_ENA */ | ||
6478 | #define ARIZONA_ISRC2_DEC3_ENA_WIDTH 1 /* ISRC2_DEC3_ENA */ | ||
6479 | #define ARIZONA_ISRC2_NOTCH_ENA 0x0001 /* ISRC2_NOTCH_ENA */ | ||
6480 | #define ARIZONA_ISRC2_NOTCH_ENA_MASK 0x0001 /* ISRC2_NOTCH_ENA */ | ||
6481 | #define ARIZONA_ISRC2_NOTCH_ENA_SHIFT 0 /* ISRC2_NOTCH_ENA */ | ||
6482 | #define ARIZONA_ISRC2_NOTCH_ENA_WIDTH 1 /* ISRC2_NOTCH_ENA */ | ||
6483 | |||
6484 | /* | ||
6485 | * R3830 (0xEF6) - ISRC 3 CTRL 1 | ||
6486 | */ | ||
6487 | #define ARIZONA_ISRC3_FSH_MASK 0x7800 /* ISRC3_FSH - [14:11] */ | ||
6488 | #define ARIZONA_ISRC3_FSH_SHIFT 11 /* ISRC3_FSH - [14:11] */ | ||
6489 | #define ARIZONA_ISRC3_FSH_WIDTH 4 /* ISRC3_FSH - [14:11] */ | ||
6490 | #define ARIZONA_ISRC3_CLK_SEL_MASK 0x0700 /* ISRC3_CLK_SEL - [10:8] */ | ||
6491 | #define ARIZONA_ISRC3_CLK_SEL_SHIFT 8 /* ISRC3_CLK_SEL - [10:8] */ | ||
6492 | #define ARIZONA_ISRC3_CLK_SEL_WIDTH 3 /* ISRC3_CLK_SEL - [10:8] */ | ||
6493 | |||
6494 | /* | ||
6495 | * R3831 (0xEF7) - ISRC 3 CTRL 2 | ||
6496 | */ | ||
6497 | #define ARIZONA_ISRC3_FSL_MASK 0x7800 /* ISRC3_FSL - [14:11] */ | ||
6498 | #define ARIZONA_ISRC3_FSL_SHIFT 11 /* ISRC3_FSL - [14:11] */ | ||
6499 | #define ARIZONA_ISRC3_FSL_WIDTH 4 /* ISRC3_FSL - [14:11] */ | ||
6500 | |||
6501 | /* | ||
6502 | * R3832 (0xEF8) - ISRC 3 CTRL 3 | ||
6503 | */ | ||
6504 | #define ARIZONA_ISRC3_INT0_ENA 0x8000 /* ISRC3_INT0_ENA */ | ||
6505 | #define ARIZONA_ISRC3_INT0_ENA_MASK 0x8000 /* ISRC3_INT0_ENA */ | ||
6506 | #define ARIZONA_ISRC3_INT0_ENA_SHIFT 15 /* ISRC3_INT0_ENA */ | ||
6507 | #define ARIZONA_ISRC3_INT0_ENA_WIDTH 1 /* ISRC3_INT0_ENA */ | ||
6508 | #define ARIZONA_ISRC3_INT1_ENA 0x4000 /* ISRC3_INT1_ENA */ | ||
6509 | #define ARIZONA_ISRC3_INT1_ENA_MASK 0x4000 /* ISRC3_INT1_ENA */ | ||
6510 | #define ARIZONA_ISRC3_INT1_ENA_SHIFT 14 /* ISRC3_INT1_ENA */ | ||
6511 | #define ARIZONA_ISRC3_INT1_ENA_WIDTH 1 /* ISRC3_INT1_ENA */ | ||
6512 | #define ARIZONA_ISRC3_INT2_ENA 0x2000 /* ISRC3_INT2_ENA */ | ||
6513 | #define ARIZONA_ISRC3_INT2_ENA_MASK 0x2000 /* ISRC3_INT2_ENA */ | ||
6514 | #define ARIZONA_ISRC3_INT2_ENA_SHIFT 13 /* ISRC3_INT2_ENA */ | ||
6515 | #define ARIZONA_ISRC3_INT2_ENA_WIDTH 1 /* ISRC3_INT2_ENA */ | ||
6516 | #define ARIZONA_ISRC3_INT3_ENA 0x1000 /* ISRC3_INT3_ENA */ | ||
6517 | #define ARIZONA_ISRC3_INT3_ENA_MASK 0x1000 /* ISRC3_INT3_ENA */ | ||
6518 | #define ARIZONA_ISRC3_INT3_ENA_SHIFT 12 /* ISRC3_INT3_ENA */ | ||
6519 | #define ARIZONA_ISRC3_INT3_ENA_WIDTH 1 /* ISRC3_INT3_ENA */ | ||
6520 | #define ARIZONA_ISRC3_DEC0_ENA 0x0200 /* ISRC3_DEC0_ENA */ | ||
6521 | #define ARIZONA_ISRC3_DEC0_ENA_MASK 0x0200 /* ISRC3_DEC0_ENA */ | ||
6522 | #define ARIZONA_ISRC3_DEC0_ENA_SHIFT 9 /* ISRC3_DEC0_ENA */ | ||
6523 | #define ARIZONA_ISRC3_DEC0_ENA_WIDTH 1 /* ISRC3_DEC0_ENA */ | ||
6524 | #define ARIZONA_ISRC3_DEC1_ENA 0x0100 /* ISRC3_DEC1_ENA */ | ||
6525 | #define ARIZONA_ISRC3_DEC1_ENA_MASK 0x0100 /* ISRC3_DEC1_ENA */ | ||
6526 | #define ARIZONA_ISRC3_DEC1_ENA_SHIFT 8 /* ISRC3_DEC1_ENA */ | ||
6527 | #define ARIZONA_ISRC3_DEC1_ENA_WIDTH 1 /* ISRC3_DEC1_ENA */ | ||
6528 | #define ARIZONA_ISRC3_DEC2_ENA 0x0080 /* ISRC3_DEC2_ENA */ | ||
6529 | #define ARIZONA_ISRC3_DEC2_ENA_MASK 0x0080 /* ISRC3_DEC2_ENA */ | ||
6530 | #define ARIZONA_ISRC3_DEC2_ENA_SHIFT 7 /* ISRC3_DEC2_ENA */ | ||
6531 | #define ARIZONA_ISRC3_DEC2_ENA_WIDTH 1 /* ISRC3_DEC2_ENA */ | ||
6532 | #define ARIZONA_ISRC3_DEC3_ENA 0x0040 /* ISRC3_DEC3_ENA */ | ||
6533 | #define ARIZONA_ISRC3_DEC3_ENA_MASK 0x0040 /* ISRC3_DEC3_ENA */ | ||
6534 | #define ARIZONA_ISRC3_DEC3_ENA_SHIFT 6 /* ISRC3_DEC3_ENA */ | ||
6535 | #define ARIZONA_ISRC3_DEC3_ENA_WIDTH 1 /* ISRC3_DEC3_ENA */ | ||
6536 | #define ARIZONA_ISRC3_NOTCH_ENA 0x0001 /* ISRC3_NOTCH_ENA */ | ||
6537 | #define ARIZONA_ISRC3_NOTCH_ENA_MASK 0x0001 /* ISRC3_NOTCH_ENA */ | ||
6538 | #define ARIZONA_ISRC3_NOTCH_ENA_SHIFT 0 /* ISRC3_NOTCH_ENA */ | ||
6539 | #define ARIZONA_ISRC3_NOTCH_ENA_WIDTH 1 /* ISRC3_NOTCH_ENA */ | ||
6540 | |||
6541 | /* | ||
6542 | * R4352 (0x1100) - DSP1 Control 1 | ||
6543 | */ | ||
6544 | #define ARIZONA_DSP1_RATE_MASK 0x7800 /* DSP1_RATE - [14:11] */ | ||
6545 | #define ARIZONA_DSP1_RATE_SHIFT 11 /* DSP1_RATE - [14:11] */ | ||
6546 | #define ARIZONA_DSP1_RATE_WIDTH 4 /* DSP1_RATE - [14:11] */ | ||
6547 | #define ARIZONA_DSP1_MEM_ENA 0x0010 /* DSP1_MEM_ENA */ | ||
6548 | #define ARIZONA_DSP1_MEM_ENA_MASK 0x0010 /* DSP1_MEM_ENA */ | ||
6549 | #define ARIZONA_DSP1_MEM_ENA_SHIFT 4 /* DSP1_MEM_ENA */ | ||
6550 | #define ARIZONA_DSP1_MEM_ENA_WIDTH 1 /* DSP1_MEM_ENA */ | ||
6551 | #define ARIZONA_DSP1_SYS_ENA 0x0004 /* DSP1_SYS_ENA */ | ||
6552 | #define ARIZONA_DSP1_SYS_ENA_MASK 0x0004 /* DSP1_SYS_ENA */ | ||
6553 | #define ARIZONA_DSP1_SYS_ENA_SHIFT 2 /* DSP1_SYS_ENA */ | ||
6554 | #define ARIZONA_DSP1_SYS_ENA_WIDTH 1 /* DSP1_SYS_ENA */ | ||
6555 | #define ARIZONA_DSP1_CORE_ENA 0x0002 /* DSP1_CORE_ENA */ | ||
6556 | #define ARIZONA_DSP1_CORE_ENA_MASK 0x0002 /* DSP1_CORE_ENA */ | ||
6557 | #define ARIZONA_DSP1_CORE_ENA_SHIFT 1 /* DSP1_CORE_ENA */ | ||
6558 | #define ARIZONA_DSP1_CORE_ENA_WIDTH 1 /* DSP1_CORE_ENA */ | ||
6559 | #define ARIZONA_DSP1_START 0x0001 /* DSP1_START */ | ||
6560 | #define ARIZONA_DSP1_START_MASK 0x0001 /* DSP1_START */ | ||
6561 | #define ARIZONA_DSP1_START_SHIFT 0 /* DSP1_START */ | ||
6562 | #define ARIZONA_DSP1_START_WIDTH 1 /* DSP1_START */ | ||
6563 | |||
6564 | /* | ||
6565 | * R4353 (0x1101) - DSP1 Clocking 1 | ||
6566 | */ | ||
6567 | #define ARIZONA_DSP1_CLK_SEL_MASK 0x0007 /* DSP1_CLK_SEL - [2:0] */ | ||
6568 | #define ARIZONA_DSP1_CLK_SEL_SHIFT 0 /* DSP1_CLK_SEL - [2:0] */ | ||
6569 | #define ARIZONA_DSP1_CLK_SEL_WIDTH 3 /* DSP1_CLK_SEL - [2:0] */ | ||
6570 | |||
6571 | /* | ||
6572 | * R4356 (0x1104) - DSP1 Status 1 | ||
6573 | */ | ||
6574 | #define ARIZONA_DSP1_RAM_RDY 0x0001 /* DSP1_RAM_RDY */ | ||
6575 | #define ARIZONA_DSP1_RAM_RDY_MASK 0x0001 /* DSP1_RAM_RDY */ | ||
6576 | #define ARIZONA_DSP1_RAM_RDY_SHIFT 0 /* DSP1_RAM_RDY */ | ||
6577 | #define ARIZONA_DSP1_RAM_RDY_WIDTH 1 /* DSP1_RAM_RDY */ | ||
6578 | |||
6579 | /* | ||
6580 | * R4357 (0x1105) - DSP1 Status 2 | ||
6581 | */ | ||
6582 | #define ARIZONA_DSP1_PING_FULL 0x8000 /* DSP1_PING_FULL */ | ||
6583 | #define ARIZONA_DSP1_PING_FULL_MASK 0x8000 /* DSP1_PING_FULL */ | ||
6584 | #define ARIZONA_DSP1_PING_FULL_SHIFT 15 /* DSP1_PING_FULL */ | ||
6585 | #define ARIZONA_DSP1_PING_FULL_WIDTH 1 /* DSP1_PING_FULL */ | ||
6586 | #define ARIZONA_DSP1_PONG_FULL 0x4000 /* DSP1_PONG_FULL */ | ||
6587 | #define ARIZONA_DSP1_PONG_FULL_MASK 0x4000 /* DSP1_PONG_FULL */ | ||
6588 | #define ARIZONA_DSP1_PONG_FULL_SHIFT 14 /* DSP1_PONG_FULL */ | ||
6589 | #define ARIZONA_DSP1_PONG_FULL_WIDTH 1 /* DSP1_PONG_FULL */ | ||
6590 | #define ARIZONA_DSP1_WDMA_ACTIVE_CHANNELS_MASK 0x00FF /* DSP1_WDMA_ACTIVE_CHANNELS - [7:0] */ | ||
6591 | #define ARIZONA_DSP1_WDMA_ACTIVE_CHANNELS_SHIFT 0 /* DSP1_WDMA_ACTIVE_CHANNELS - [7:0] */ | ||
6592 | #define ARIZONA_DSP1_WDMA_ACTIVE_CHANNELS_WIDTH 8 /* DSP1_WDMA_ACTIVE_CHANNELS - [7:0] */ | ||
6593 | |||
6594 | #endif | ||
diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h index 4e76163dd862..3a8435a8058f 100644 --- a/include/linux/mfd/core.h +++ b/include/linux/mfd/core.h | |||
@@ -36,6 +36,11 @@ struct mfd_cell { | |||
36 | /* platform data passed to the sub devices drivers */ | 36 | /* platform data passed to the sub devices drivers */ |
37 | void *platform_data; | 37 | void *platform_data; |
38 | size_t pdata_size; | 38 | size_t pdata_size; |
39 | /* | ||
40 | * Device Tree compatible string | ||
41 | * See: Documentation/devicetree/usage-model.txt Chapter 2.2 for details | ||
42 | */ | ||
43 | const char *of_compatible; | ||
39 | 44 | ||
40 | /* | 45 | /* |
41 | * These resources can be specified relative to the parent device. | 46 | * These resources can be specified relative to the parent device. |
diff --git a/include/linux/mfd/db8500-prcmu.h b/include/linux/mfd/db8500-prcmu.h index b3a43b1263fe..b82f6ee66a0b 100644 --- a/include/linux/mfd/db8500-prcmu.h +++ b/include/linux/mfd/db8500-prcmu.h | |||
@@ -530,7 +530,7 @@ int db8500_prcmu_stop_temp_sense(void); | |||
530 | int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size); | 530 | int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size); |
531 | int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size); | 531 | int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size); |
532 | 532 | ||
533 | void prcmu_ac_wake_req(void); | 533 | int prcmu_ac_wake_req(void); |
534 | void prcmu_ac_sleep_req(void); | 534 | void prcmu_ac_sleep_req(void); |
535 | void db8500_prcmu_modem_reset(void); | 535 | void db8500_prcmu_modem_reset(void); |
536 | 536 | ||
@@ -680,7 +680,10 @@ static inline int prcmu_abb_write(u8 slave, u8 reg, u8 *value, u8 size) | |||
680 | return -ENOSYS; | 680 | return -ENOSYS; |
681 | } | 681 | } |
682 | 682 | ||
683 | static inline void prcmu_ac_wake_req(void) {} | 683 | static inline int prcmu_ac_wake_req(void) |
684 | { | ||
685 | return 0; | ||
686 | } | ||
684 | 687 | ||
685 | static inline void prcmu_ac_sleep_req(void) {} | 688 | static inline void prcmu_ac_sleep_req(void) {} |
686 | 689 | ||
diff --git a/include/linux/mfd/dbx500-prcmu.h b/include/linux/mfd/dbx500-prcmu.h index 5a13f93d8f1c..5b90e94399e1 100644 --- a/include/linux/mfd/dbx500-prcmu.h +++ b/include/linux/mfd/dbx500-prcmu.h | |||
@@ -345,7 +345,7 @@ static inline u16 prcmu_get_reset_code(void) | |||
345 | return db8500_prcmu_get_reset_code(); | 345 | return db8500_prcmu_get_reset_code(); |
346 | } | 346 | } |
347 | 347 | ||
348 | void prcmu_ac_wake_req(void); | 348 | int prcmu_ac_wake_req(void); |
349 | void prcmu_ac_sleep_req(void); | 349 | void prcmu_ac_sleep_req(void); |
350 | static inline void prcmu_modem_reset(void) | 350 | static inline void prcmu_modem_reset(void) |
351 | { | 351 | { |
@@ -533,7 +533,10 @@ static inline u16 prcmu_get_reset_code(void) | |||
533 | return 0; | 533 | return 0; |
534 | } | 534 | } |
535 | 535 | ||
536 | static inline void prcmu_ac_wake_req(void) {} | 536 | static inline int prcmu_ac_wake_req(void) |
537 | { | ||
538 | return 0; | ||
539 | } | ||
537 | 540 | ||
538 | static inline void prcmu_ac_sleep_req(void) {} | 541 | static inline void prcmu_ac_sleep_req(void) {} |
539 | 542 | ||
diff --git a/include/linux/mfd/max77686-private.h b/include/linux/mfd/max77686-private.h new file mode 100644 index 000000000000..d327d4971e4f --- /dev/null +++ b/include/linux/mfd/max77686-private.h | |||
@@ -0,0 +1,246 @@ | |||
1 | /* | ||
2 | * max77686.h - Voltage regulator driver for the Maxim 77686 | ||
3 | * | ||
4 | * Copyright (C) 2012 Samsung Electrnoics | ||
5 | * Chiwoong Byun <woong.byun@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 as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | */ | ||
21 | |||
22 | #ifndef __LINUX_MFD_MAX77686_PRIV_H | ||
23 | #define __LINUX_MFD_MAX77686_PRIV_H | ||
24 | |||
25 | #include <linux/i2c.h> | ||
26 | #include <linux/regmap.h> | ||
27 | #include <linux/module.h> | ||
28 | |||
29 | #define MAX77686_REG_INVALID (0xff) | ||
30 | |||
31 | enum max77686_pmic_reg { | ||
32 | MAX77686_REG_DEVICE_ID = 0x00, | ||
33 | MAX77686_REG_INTSRC = 0x01, | ||
34 | MAX77686_REG_INT1 = 0x02, | ||
35 | MAX77686_REG_INT2 = 0x03, | ||
36 | |||
37 | MAX77686_REG_INT1MSK = 0x04, | ||
38 | MAX77686_REG_INT2MSK = 0x05, | ||
39 | |||
40 | MAX77686_REG_STATUS1 = 0x06, | ||
41 | MAX77686_REG_STATUS2 = 0x07, | ||
42 | |||
43 | MAX77686_REG_PWRON = 0x08, | ||
44 | MAX77686_REG_ONOFF_DELAY = 0x09, | ||
45 | MAX77686_REG_MRSTB = 0x0A, | ||
46 | /* Reserved: 0x0B-0x0F */ | ||
47 | |||
48 | MAX77686_REG_BUCK1CTRL = 0x10, | ||
49 | MAX77686_REG_BUCK1OUT = 0x11, | ||
50 | MAX77686_REG_BUCK2CTRL1 = 0x12, | ||
51 | MAX77686_REG_BUCK234FREQ = 0x13, | ||
52 | MAX77686_REG_BUCK2DVS1 = 0x14, | ||
53 | MAX77686_REG_BUCK2DVS2 = 0x15, | ||
54 | MAX77686_REG_BUCK2DVS3 = 0x16, | ||
55 | MAX77686_REG_BUCK2DVS4 = 0x17, | ||
56 | MAX77686_REG_BUCK2DVS5 = 0x18, | ||
57 | MAX77686_REG_BUCK2DVS6 = 0x19, | ||
58 | MAX77686_REG_BUCK2DVS7 = 0x1A, | ||
59 | MAX77686_REG_BUCK2DVS8 = 0x1B, | ||
60 | MAX77686_REG_BUCK3CTRL1 = 0x1C, | ||
61 | /* Reserved: 0x1D */ | ||
62 | MAX77686_REG_BUCK3DVS1 = 0x1E, | ||
63 | MAX77686_REG_BUCK3DVS2 = 0x1F, | ||
64 | MAX77686_REG_BUCK3DVS3 = 0x20, | ||
65 | MAX77686_REG_BUCK3DVS4 = 0x21, | ||
66 | MAX77686_REG_BUCK3DVS5 = 0x22, | ||
67 | MAX77686_REG_BUCK3DVS6 = 0x23, | ||
68 | MAX77686_REG_BUCK3DVS7 = 0x24, | ||
69 | MAX77686_REG_BUCK3DVS8 = 0x25, | ||
70 | MAX77686_REG_BUCK4CTRL1 = 0x26, | ||
71 | /* Reserved: 0x27 */ | ||
72 | MAX77686_REG_BUCK4DVS1 = 0x28, | ||
73 | MAX77686_REG_BUCK4DVS2 = 0x29, | ||
74 | MAX77686_REG_BUCK4DVS3 = 0x2A, | ||
75 | MAX77686_REG_BUCK4DVS4 = 0x2B, | ||
76 | MAX77686_REG_BUCK4DVS5 = 0x2C, | ||
77 | MAX77686_REG_BUCK4DVS6 = 0x2D, | ||
78 | MAX77686_REG_BUCK4DVS7 = 0x2E, | ||
79 | MAX77686_REG_BUCK4DVS8 = 0x2F, | ||
80 | MAX77686_REG_BUCK5CTRL = 0x30, | ||
81 | MAX77686_REG_BUCK5OUT = 0x31, | ||
82 | MAX77686_REG_BUCK6CTRL = 0x32, | ||
83 | MAX77686_REG_BUCK6OUT = 0x33, | ||
84 | MAX77686_REG_BUCK7CTRL = 0x34, | ||
85 | MAX77686_REG_BUCK7OUT = 0x35, | ||
86 | MAX77686_REG_BUCK8CTRL = 0x36, | ||
87 | MAX77686_REG_BUCK8OUT = 0x37, | ||
88 | MAX77686_REG_BUCK9CTRL = 0x38, | ||
89 | MAX77686_REG_BUCK9OUT = 0x39, | ||
90 | /* Reserved: 0x3A-0x3F */ | ||
91 | |||
92 | MAX77686_REG_LDO1CTRL1 = 0x40, | ||
93 | MAX77686_REG_LDO2CTRL1 = 0x41, | ||
94 | MAX77686_REG_LDO3CTRL1 = 0x42, | ||
95 | MAX77686_REG_LDO4CTRL1 = 0x43, | ||
96 | MAX77686_REG_LDO5CTRL1 = 0x44, | ||
97 | MAX77686_REG_LDO6CTRL1 = 0x45, | ||
98 | MAX77686_REG_LDO7CTRL1 = 0x46, | ||
99 | MAX77686_REG_LDO8CTRL1 = 0x47, | ||
100 | MAX77686_REG_LDO9CTRL1 = 0x48, | ||
101 | MAX77686_REG_LDO10CTRL1 = 0x49, | ||
102 | MAX77686_REG_LDO11CTRL1 = 0x4A, | ||
103 | MAX77686_REG_LDO12CTRL1 = 0x4B, | ||
104 | MAX77686_REG_LDO13CTRL1 = 0x4C, | ||
105 | MAX77686_REG_LDO14CTRL1 = 0x4D, | ||
106 | MAX77686_REG_LDO15CTRL1 = 0x4E, | ||
107 | MAX77686_REG_LDO16CTRL1 = 0x4F, | ||
108 | MAX77686_REG_LDO17CTRL1 = 0x50, | ||
109 | MAX77686_REG_LDO18CTRL1 = 0x51, | ||
110 | MAX77686_REG_LDO19CTRL1 = 0x52, | ||
111 | MAX77686_REG_LDO20CTRL1 = 0x53, | ||
112 | MAX77686_REG_LDO21CTRL1 = 0x54, | ||
113 | MAX77686_REG_LDO22CTRL1 = 0x55, | ||
114 | MAX77686_REG_LDO23CTRL1 = 0x56, | ||
115 | MAX77686_REG_LDO24CTRL1 = 0x57, | ||
116 | MAX77686_REG_LDO25CTRL1 = 0x58, | ||
117 | MAX77686_REG_LDO26CTRL1 = 0x59, | ||
118 | /* Reserved: 0x5A-0x5F */ | ||
119 | MAX77686_REG_LDO1CTRL2 = 0x60, | ||
120 | MAX77686_REG_LDO2CTRL2 = 0x61, | ||
121 | MAX77686_REG_LDO3CTRL2 = 0x62, | ||
122 | MAX77686_REG_LDO4CTRL2 = 0x63, | ||
123 | MAX77686_REG_LDO5CTRL2 = 0x64, | ||
124 | MAX77686_REG_LDO6CTRL2 = 0x65, | ||
125 | MAX77686_REG_LDO7CTRL2 = 0x66, | ||
126 | MAX77686_REG_LDO8CTRL2 = 0x67, | ||
127 | MAX77686_REG_LDO9CTRL2 = 0x68, | ||
128 | MAX77686_REG_LDO10CTRL2 = 0x69, | ||
129 | MAX77686_REG_LDO11CTRL2 = 0x6A, | ||
130 | MAX77686_REG_LDO12CTRL2 = 0x6B, | ||
131 | MAX77686_REG_LDO13CTRL2 = 0x6C, | ||
132 | MAX77686_REG_LDO14CTRL2 = 0x6D, | ||
133 | MAX77686_REG_LDO15CTRL2 = 0x6E, | ||
134 | MAX77686_REG_LDO16CTRL2 = 0x6F, | ||
135 | MAX77686_REG_LDO17CTRL2 = 0x70, | ||
136 | MAX77686_REG_LDO18CTRL2 = 0x71, | ||
137 | MAX77686_REG_LDO19CTRL2 = 0x72, | ||
138 | MAX77686_REG_LDO20CTRL2 = 0x73, | ||
139 | MAX77686_REG_LDO21CTRL2 = 0x74, | ||
140 | MAX77686_REG_LDO22CTRL2 = 0x75, | ||
141 | MAX77686_REG_LDO23CTRL2 = 0x76, | ||
142 | MAX77686_REG_LDO24CTRL2 = 0x77, | ||
143 | MAX77686_REG_LDO25CTRL2 = 0x78, | ||
144 | MAX77686_REG_LDO26CTRL2 = 0x79, | ||
145 | /* Reserved: 0x7A-0x7D */ | ||
146 | |||
147 | MAX77686_REG_BBAT_CHG = 0x7E, | ||
148 | MAX77686_REG_32KHZ = 0x7F, | ||
149 | |||
150 | MAX77686_REG_PMIC_END = 0x80, | ||
151 | }; | ||
152 | |||
153 | enum max77686_rtc_reg { | ||
154 | MAX77686_RTC_INT = 0x00, | ||
155 | MAX77686_RTC_INTM = 0x01, | ||
156 | MAX77686_RTC_CONTROLM = 0x02, | ||
157 | MAX77686_RTC_CONTROL = 0x03, | ||
158 | MAX77686_RTC_UPDATE0 = 0x04, | ||
159 | /* Reserved: 0x5 */ | ||
160 | MAX77686_WTSR_SMPL_CNTL = 0x06, | ||
161 | MAX77686_RTC_SEC = 0x07, | ||
162 | MAX77686_RTC_MIN = 0x08, | ||
163 | MAX77686_RTC_HOUR = 0x09, | ||
164 | MAX77686_RTC_WEEKDAY = 0x0A, | ||
165 | MAX77686_RTC_MONTH = 0x0B, | ||
166 | MAX77686_RTC_YEAR = 0x0C, | ||
167 | MAX77686_RTC_DATE = 0x0D, | ||
168 | MAX77686_ALARM1_SEC = 0x0E, | ||
169 | MAX77686_ALARM1_MIN = 0x0F, | ||
170 | MAX77686_ALARM1_HOUR = 0x10, | ||
171 | MAX77686_ALARM1_WEEKDAY = 0x11, | ||
172 | MAX77686_ALARM1_MONTH = 0x12, | ||
173 | MAX77686_ALARM1_YEAR = 0x13, | ||
174 | MAX77686_ALARM1_DATE = 0x14, | ||
175 | MAX77686_ALARM2_SEC = 0x15, | ||
176 | MAX77686_ALARM2_MIN = 0x16, | ||
177 | MAX77686_ALARM2_HOUR = 0x17, | ||
178 | MAX77686_ALARM2_WEEKDAY = 0x18, | ||
179 | MAX77686_ALARM2_MONTH = 0x19, | ||
180 | MAX77686_ALARM2_YEAR = 0x1A, | ||
181 | MAX77686_ALARM2_DATE = 0x1B, | ||
182 | }; | ||
183 | |||
184 | #define MAX77686_IRQSRC_PMIC (0) | ||
185 | #define MAX77686_IRQSRC_RTC (1 << 0) | ||
186 | |||
187 | enum max77686_irq_source { | ||
188 | PMIC_INT1 = 0, | ||
189 | PMIC_INT2, | ||
190 | RTC_INT, | ||
191 | |||
192 | MAX77686_IRQ_GROUP_NR, | ||
193 | }; | ||
194 | |||
195 | enum max77686_irq { | ||
196 | MAX77686_PMICIRQ_PWRONF, | ||
197 | MAX77686_PMICIRQ_PWRONR, | ||
198 | MAX77686_PMICIRQ_JIGONBF, | ||
199 | MAX77686_PMICIRQ_JIGONBR, | ||
200 | MAX77686_PMICIRQ_ACOKBF, | ||
201 | MAX77686_PMICIRQ_ACOKBR, | ||
202 | MAX77686_PMICIRQ_ONKEY1S, | ||
203 | MAX77686_PMICIRQ_MRSTB, | ||
204 | |||
205 | MAX77686_PMICIRQ_140C, | ||
206 | MAX77686_PMICIRQ_120C, | ||
207 | |||
208 | MAX77686_RTCIRQ_RTC60S, | ||
209 | MAX77686_RTCIRQ_RTCA1, | ||
210 | MAX77686_RTCIRQ_RTCA2, | ||
211 | MAX77686_RTCIRQ_SMPL, | ||
212 | MAX77686_RTCIRQ_RTC1S, | ||
213 | MAX77686_RTCIRQ_WTSR, | ||
214 | |||
215 | MAX77686_IRQ_NR, | ||
216 | }; | ||
217 | |||
218 | struct max77686_dev { | ||
219 | struct device *dev; | ||
220 | struct i2c_client *i2c; /* 0xcc / PMIC, Battery Control, and FLASH */ | ||
221 | struct i2c_client *rtc; /* slave addr 0x0c */ | ||
222 | |||
223 | int type; | ||
224 | |||
225 | struct regmap *regmap; /* regmap for mfd */ | ||
226 | struct regmap *rtc_regmap; /* regmap for rtc */ | ||
227 | |||
228 | struct irq_domain *irq_domain; | ||
229 | |||
230 | int irq; | ||
231 | int irq_gpio; | ||
232 | bool wakeup; | ||
233 | struct mutex irqlock; | ||
234 | int irq_masks_cur[MAX77686_IRQ_GROUP_NR]; | ||
235 | int irq_masks_cache[MAX77686_IRQ_GROUP_NR]; | ||
236 | }; | ||
237 | |||
238 | enum max77686_types { | ||
239 | TYPE_MAX77686, | ||
240 | }; | ||
241 | |||
242 | extern int max77686_irq_init(struct max77686_dev *max77686); | ||
243 | extern void max77686_irq_exit(struct max77686_dev *max77686); | ||
244 | extern int max77686_irq_resume(struct max77686_dev *max77686); | ||
245 | |||
246 | #endif /* __LINUX_MFD_MAX77686_PRIV_H */ | ||
diff --git a/include/linux/mfd/max77686.h b/include/linux/mfd/max77686.h new file mode 100644 index 000000000000..3d7ae4d7fd36 --- /dev/null +++ b/include/linux/mfd/max77686.h | |||
@@ -0,0 +1,114 @@ | |||
1 | /* | ||
2 | * max77686.h - Driver for the Maxim 77686 | ||
3 | * | ||
4 | * Copyright (C) 2012 Samsung Electrnoics | ||
5 | * Chiwoong Byun <woong.byun@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 as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | * | ||
21 | * This driver is based on max8997.h | ||
22 | * | ||
23 | * MAX77686 has PMIC, RTC devices. | ||
24 | * The devices share the same I2C bus and included in | ||
25 | * this mfd driver. | ||
26 | */ | ||
27 | |||
28 | #ifndef __LINUX_MFD_MAX77686_H | ||
29 | #define __LINUX_MFD_MAX77686_H | ||
30 | |||
31 | #include <linux/regulator/consumer.h> | ||
32 | |||
33 | /* MAX77686 regulator IDs */ | ||
34 | enum max77686_regulators { | ||
35 | MAX77686_LDO1 = 0, | ||
36 | MAX77686_LDO2, | ||
37 | MAX77686_LDO3, | ||
38 | MAX77686_LDO4, | ||
39 | MAX77686_LDO5, | ||
40 | MAX77686_LDO6, | ||
41 | MAX77686_LDO7, | ||
42 | MAX77686_LDO8, | ||
43 | MAX77686_LDO9, | ||
44 | MAX77686_LDO10, | ||
45 | MAX77686_LDO11, | ||
46 | MAX77686_LDO12, | ||
47 | MAX77686_LDO13, | ||
48 | MAX77686_LDO14, | ||
49 | MAX77686_LDO15, | ||
50 | MAX77686_LDO16, | ||
51 | MAX77686_LDO17, | ||
52 | MAX77686_LDO18, | ||
53 | MAX77686_LDO19, | ||
54 | MAX77686_LDO20, | ||
55 | MAX77686_LDO21, | ||
56 | MAX77686_LDO22, | ||
57 | MAX77686_LDO23, | ||
58 | MAX77686_LDO24, | ||
59 | MAX77686_LDO25, | ||
60 | MAX77686_LDO26, | ||
61 | MAX77686_BUCK1, | ||
62 | MAX77686_BUCK2, | ||
63 | MAX77686_BUCK3, | ||
64 | MAX77686_BUCK4, | ||
65 | MAX77686_BUCK5, | ||
66 | MAX77686_BUCK6, | ||
67 | MAX77686_BUCK7, | ||
68 | MAX77686_BUCK8, | ||
69 | MAX77686_BUCK9, | ||
70 | |||
71 | MAX77686_REG_MAX, | ||
72 | }; | ||
73 | |||
74 | struct max77686_regulator_data { | ||
75 | int id; | ||
76 | struct regulator_init_data *initdata; | ||
77 | }; | ||
78 | |||
79 | enum max77686_opmode { | ||
80 | MAX77686_OPMODE_NORMAL, | ||
81 | MAX77686_OPMODE_LP, | ||
82 | MAX77686_OPMODE_STANDBY, | ||
83 | }; | ||
84 | |||
85 | struct max77686_opmode_data { | ||
86 | int id; | ||
87 | int mode; | ||
88 | }; | ||
89 | |||
90 | struct max77686_platform_data { | ||
91 | /* IRQ */ | ||
92 | int irq_gpio; | ||
93 | int ono; | ||
94 | int wakeup; | ||
95 | |||
96 | /* ---- PMIC ---- */ | ||
97 | struct max77686_regulator_data *regulators; | ||
98 | int num_regulators; | ||
99 | |||
100 | struct max77686_opmode_data *opmode_data; | ||
101 | |||
102 | /* | ||
103 | * GPIO-DVS feature is not enabled with the current version of | ||
104 | * MAX77686 driver. Buck2/3/4_voltages[0] is used as the default | ||
105 | * voltage at probe. DVS/SELB gpios are set as OUTPUT-LOW. | ||
106 | */ | ||
107 | int buck234_gpio_dvs[3]; /* GPIO of [0]DVS1, [1]DVS2, [2]DVS3 */ | ||
108 | int buck234_gpio_selb[3]; /* [0]SELB2, [1]SELB3, [2]SELB4 */ | ||
109 | unsigned int buck2_voltage[8]; /* buckx_voltage in uV */ | ||
110 | unsigned int buck3_voltage[8]; | ||
111 | unsigned int buck4_voltage[8]; | ||
112 | }; | ||
113 | |||
114 | #endif /* __LINUX_MFD_MAX77686_H */ | ||
diff --git a/include/linux/mfd/max77693-private.h b/include/linux/mfd/max77693-private.h index 68263c5fa53c..1eeae5c07915 100644 --- a/include/linux/mfd/max77693-private.h +++ b/include/linux/mfd/max77693-private.h | |||
@@ -190,7 +190,6 @@ struct max77693_dev { | |||
190 | struct i2c_client *i2c; /* 0xCC , PMIC, Charger, Flash LED */ | 190 | struct i2c_client *i2c; /* 0xCC , PMIC, Charger, Flash LED */ |
191 | struct i2c_client *muic; /* 0x4A , MUIC */ | 191 | struct i2c_client *muic; /* 0x4A , MUIC */ |
192 | struct i2c_client *haptic; /* 0x90 , Haptic */ | 192 | struct i2c_client *haptic; /* 0x90 , Haptic */ |
193 | struct mutex iolock; | ||
194 | 193 | ||
195 | int type; | 194 | int type; |
196 | 195 | ||
diff --git a/include/linux/mfd/max8997-private.h b/include/linux/mfd/max8997-private.h index 3f4deb62d6b0..830152cfae33 100644 --- a/include/linux/mfd/max8997-private.h +++ b/include/linux/mfd/max8997-private.h | |||
@@ -23,6 +23,8 @@ | |||
23 | #define __LINUX_MFD_MAX8997_PRIV_H | 23 | #define __LINUX_MFD_MAX8997_PRIV_H |
24 | 24 | ||
25 | #include <linux/i2c.h> | 25 | #include <linux/i2c.h> |
26 | #include <linux/export.h> | ||
27 | #include <linux/irqdomain.h> | ||
26 | 28 | ||
27 | #define MAX8997_REG_INVALID (0xff) | 29 | #define MAX8997_REG_INVALID (0xff) |
28 | 30 | ||
@@ -325,7 +327,7 @@ struct max8997_dev { | |||
325 | 327 | ||
326 | int irq; | 328 | int irq; |
327 | int ono; | 329 | int ono; |
328 | int irq_base; | 330 | struct irq_domain *irq_domain; |
329 | struct mutex irqlock; | 331 | struct mutex irqlock; |
330 | int irq_masks_cur[MAX8997_IRQ_GROUP_NR]; | 332 | int irq_masks_cur[MAX8997_IRQ_GROUP_NR]; |
331 | int irq_masks_cache[MAX8997_IRQ_GROUP_NR]; | 333 | int irq_masks_cache[MAX8997_IRQ_GROUP_NR]; |
diff --git a/include/linux/mfd/max8997.h b/include/linux/mfd/max8997.h index b40c08cd30bc..328d8e24b533 100644 --- a/include/linux/mfd/max8997.h +++ b/include/linux/mfd/max8997.h | |||
@@ -181,7 +181,6 @@ struct max8997_led_platform_data { | |||
181 | 181 | ||
182 | struct max8997_platform_data { | 182 | struct max8997_platform_data { |
183 | /* IRQ */ | 183 | /* IRQ */ |
184 | int irq_base; | ||
185 | int ono; | 184 | int ono; |
186 | int wakeup; | 185 | int wakeup; |
187 | 186 | ||
diff --git a/include/linux/mfd/s5m87xx/s5m-core.h b/include/linux/mfd/s5m87xx/s5m-core.h deleted file mode 100644 index 21603b42f22f..000000000000 --- a/include/linux/mfd/s5m87xx/s5m-core.h +++ /dev/null | |||
@@ -1,374 +0,0 @@ | |||
1 | /* | ||
2 | * s5m-core.h | ||
3 | * | ||
4 | * Copyright (c) 2011 Samsung Electronics Co., Ltd | ||
5 | * http://www.samsung.com | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License as published by the | ||
9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
10 | * option) any later version. | ||
11 | * | ||
12 | */ | ||
13 | |||
14 | #ifndef __LINUX_MFD_S5M_CORE_H | ||
15 | #define __LINUX_MFD_S5M_CORE_H | ||
16 | |||
17 | #define NUM_IRQ_REGS 4 | ||
18 | |||
19 | enum s5m_device_type { | ||
20 | S5M8751X, | ||
21 | S5M8763X, | ||
22 | S5M8767X, | ||
23 | }; | ||
24 | |||
25 | /* S5M8767 registers */ | ||
26 | enum s5m8767_reg { | ||
27 | S5M8767_REG_ID, | ||
28 | S5M8767_REG_INT1, | ||
29 | S5M8767_REG_INT2, | ||
30 | S5M8767_REG_INT3, | ||
31 | S5M8767_REG_INT1M, | ||
32 | S5M8767_REG_INT2M, | ||
33 | S5M8767_REG_INT3M, | ||
34 | S5M8767_REG_STATUS1, | ||
35 | S5M8767_REG_STATUS2, | ||
36 | S5M8767_REG_STATUS3, | ||
37 | S5M8767_REG_CTRL1, | ||
38 | S5M8767_REG_CTRL2, | ||
39 | S5M8767_REG_LOWBAT1, | ||
40 | S5M8767_REG_LOWBAT2, | ||
41 | S5M8767_REG_BUCHG, | ||
42 | S5M8767_REG_DVSRAMP, | ||
43 | S5M8767_REG_DVSTIMER2 = 0x10, | ||
44 | S5M8767_REG_DVSTIMER3, | ||
45 | S5M8767_REG_DVSTIMER4, | ||
46 | S5M8767_REG_LDO1, | ||
47 | S5M8767_REG_LDO2, | ||
48 | S5M8767_REG_LDO3, | ||
49 | S5M8767_REG_LDO4, | ||
50 | S5M8767_REG_LDO5, | ||
51 | S5M8767_REG_LDO6, | ||
52 | S5M8767_REG_LDO7, | ||
53 | S5M8767_REG_LDO8, | ||
54 | S5M8767_REG_LDO9, | ||
55 | S5M8767_REG_LDO10, | ||
56 | S5M8767_REG_LDO11, | ||
57 | S5M8767_REG_LDO12, | ||
58 | S5M8767_REG_LDO13, | ||
59 | S5M8767_REG_LDO14 = 0x20, | ||
60 | S5M8767_REG_LDO15, | ||
61 | S5M8767_REG_LDO16, | ||
62 | S5M8767_REG_LDO17, | ||
63 | S5M8767_REG_LDO18, | ||
64 | S5M8767_REG_LDO19, | ||
65 | S5M8767_REG_LDO20, | ||
66 | S5M8767_REG_LDO21, | ||
67 | S5M8767_REG_LDO22, | ||
68 | S5M8767_REG_LDO23, | ||
69 | S5M8767_REG_LDO24, | ||
70 | S5M8767_REG_LDO25, | ||
71 | S5M8767_REG_LDO26, | ||
72 | S5M8767_REG_LDO27, | ||
73 | S5M8767_REG_LDO28, | ||
74 | S5M8767_REG_UVLO = 0x31, | ||
75 | S5M8767_REG_BUCK1CTRL1, | ||
76 | S5M8767_REG_BUCK1CTRL2, | ||
77 | S5M8767_REG_BUCK2CTRL, | ||
78 | S5M8767_REG_BUCK2DVS1, | ||
79 | S5M8767_REG_BUCK2DVS2, | ||
80 | S5M8767_REG_BUCK2DVS3, | ||
81 | S5M8767_REG_BUCK2DVS4, | ||
82 | S5M8767_REG_BUCK2DVS5, | ||
83 | S5M8767_REG_BUCK2DVS6, | ||
84 | S5M8767_REG_BUCK2DVS7, | ||
85 | S5M8767_REG_BUCK2DVS8, | ||
86 | S5M8767_REG_BUCK3CTRL, | ||
87 | S5M8767_REG_BUCK3DVS1, | ||
88 | S5M8767_REG_BUCK3DVS2, | ||
89 | S5M8767_REG_BUCK3DVS3, | ||
90 | S5M8767_REG_BUCK3DVS4, | ||
91 | S5M8767_REG_BUCK3DVS5, | ||
92 | S5M8767_REG_BUCK3DVS6, | ||
93 | S5M8767_REG_BUCK3DVS7, | ||
94 | S5M8767_REG_BUCK3DVS8, | ||
95 | S5M8767_REG_BUCK4CTRL, | ||
96 | S5M8767_REG_BUCK4DVS1, | ||
97 | S5M8767_REG_BUCK4DVS2, | ||
98 | S5M8767_REG_BUCK4DVS3, | ||
99 | S5M8767_REG_BUCK4DVS4, | ||
100 | S5M8767_REG_BUCK4DVS5, | ||
101 | S5M8767_REG_BUCK4DVS6, | ||
102 | S5M8767_REG_BUCK4DVS7, | ||
103 | S5M8767_REG_BUCK4DVS8, | ||
104 | S5M8767_REG_BUCK5CTRL1, | ||
105 | S5M8767_REG_BUCK5CTRL2, | ||
106 | S5M8767_REG_BUCK5CTRL3, | ||
107 | S5M8767_REG_BUCK5CTRL4, | ||
108 | S5M8767_REG_BUCK5CTRL5, | ||
109 | S5M8767_REG_BUCK6CTRL1, | ||
110 | S5M8767_REG_BUCK6CTRL2, | ||
111 | S5M8767_REG_BUCK7CTRL1, | ||
112 | S5M8767_REG_BUCK7CTRL2, | ||
113 | S5M8767_REG_BUCK8CTRL1, | ||
114 | S5M8767_REG_BUCK8CTRL2, | ||
115 | S5M8767_REG_BUCK9CTRL1, | ||
116 | S5M8767_REG_BUCK9CTRL2, | ||
117 | S5M8767_REG_LDO1CTRL, | ||
118 | S5M8767_REG_LDO2_1CTRL, | ||
119 | S5M8767_REG_LDO2_2CTRL, | ||
120 | S5M8767_REG_LDO2_3CTRL, | ||
121 | S5M8767_REG_LDO2_4CTRL, | ||
122 | S5M8767_REG_LDO3CTRL, | ||
123 | S5M8767_REG_LDO4CTRL, | ||
124 | S5M8767_REG_LDO5CTRL, | ||
125 | S5M8767_REG_LDO6CTRL, | ||
126 | S5M8767_REG_LDO7CTRL, | ||
127 | S5M8767_REG_LDO8CTRL, | ||
128 | S5M8767_REG_LDO9CTRL, | ||
129 | S5M8767_REG_LDO10CTRL, | ||
130 | S5M8767_REG_LDO11CTRL, | ||
131 | S5M8767_REG_LDO12CTRL, | ||
132 | S5M8767_REG_LDO13CTRL, | ||
133 | S5M8767_REG_LDO14CTRL, | ||
134 | S5M8767_REG_LDO15CTRL, | ||
135 | S5M8767_REG_LDO16CTRL, | ||
136 | S5M8767_REG_LDO17CTRL, | ||
137 | S5M8767_REG_LDO18CTRL, | ||
138 | S5M8767_REG_LDO19CTRL, | ||
139 | S5M8767_REG_LDO20CTRL, | ||
140 | S5M8767_REG_LDO21CTRL, | ||
141 | S5M8767_REG_LDO22CTRL, | ||
142 | S5M8767_REG_LDO23CTRL, | ||
143 | S5M8767_REG_LDO24CTRL, | ||
144 | S5M8767_REG_LDO25CTRL, | ||
145 | S5M8767_REG_LDO26CTRL, | ||
146 | S5M8767_REG_LDO27CTRL, | ||
147 | S5M8767_REG_LDO28CTRL, | ||
148 | }; | ||
149 | |||
150 | /* S5M8763 registers */ | ||
151 | enum s5m8763_reg { | ||
152 | S5M8763_REG_IRQ1, | ||
153 | S5M8763_REG_IRQ2, | ||
154 | S5M8763_REG_IRQ3, | ||
155 | S5M8763_REG_IRQ4, | ||
156 | S5M8763_REG_IRQM1, | ||
157 | S5M8763_REG_IRQM2, | ||
158 | S5M8763_REG_IRQM3, | ||
159 | S5M8763_REG_IRQM4, | ||
160 | S5M8763_REG_STATUS1, | ||
161 | S5M8763_REG_STATUS2, | ||
162 | S5M8763_REG_STATUSM1, | ||
163 | S5M8763_REG_STATUSM2, | ||
164 | S5M8763_REG_CHGR1, | ||
165 | S5M8763_REG_CHGR2, | ||
166 | S5M8763_REG_LDO_ACTIVE_DISCHARGE1, | ||
167 | S5M8763_REG_LDO_ACTIVE_DISCHARGE2, | ||
168 | S5M8763_REG_BUCK_ACTIVE_DISCHARGE3, | ||
169 | S5M8763_REG_ONOFF1, | ||
170 | S5M8763_REG_ONOFF2, | ||
171 | S5M8763_REG_ONOFF3, | ||
172 | S5M8763_REG_ONOFF4, | ||
173 | S5M8763_REG_BUCK1_VOLTAGE1, | ||
174 | S5M8763_REG_BUCK1_VOLTAGE2, | ||
175 | S5M8763_REG_BUCK1_VOLTAGE3, | ||
176 | S5M8763_REG_BUCK1_VOLTAGE4, | ||
177 | S5M8763_REG_BUCK2_VOLTAGE1, | ||
178 | S5M8763_REG_BUCK2_VOLTAGE2, | ||
179 | S5M8763_REG_BUCK3, | ||
180 | S5M8763_REG_BUCK4, | ||
181 | S5M8763_REG_LDO1_LDO2, | ||
182 | S5M8763_REG_LDO3, | ||
183 | S5M8763_REG_LDO4, | ||
184 | S5M8763_REG_LDO5, | ||
185 | S5M8763_REG_LDO6, | ||
186 | S5M8763_REG_LDO7, | ||
187 | S5M8763_REG_LDO7_LDO8, | ||
188 | S5M8763_REG_LDO9_LDO10, | ||
189 | S5M8763_REG_LDO11, | ||
190 | S5M8763_REG_LDO12, | ||
191 | S5M8763_REG_LDO13, | ||
192 | S5M8763_REG_LDO14, | ||
193 | S5M8763_REG_LDO15, | ||
194 | S5M8763_REG_LDO16, | ||
195 | S5M8763_REG_BKCHR, | ||
196 | S5M8763_REG_LBCNFG1, | ||
197 | S5M8763_REG_LBCNFG2, | ||
198 | }; | ||
199 | |||
200 | enum s5m8767_irq { | ||
201 | S5M8767_IRQ_PWRR, | ||
202 | S5M8767_IRQ_PWRF, | ||
203 | S5M8767_IRQ_PWR1S, | ||
204 | S5M8767_IRQ_JIGR, | ||
205 | S5M8767_IRQ_JIGF, | ||
206 | S5M8767_IRQ_LOWBAT2, | ||
207 | S5M8767_IRQ_LOWBAT1, | ||
208 | |||
209 | S5M8767_IRQ_MRB, | ||
210 | S5M8767_IRQ_DVSOK2, | ||
211 | S5M8767_IRQ_DVSOK3, | ||
212 | S5M8767_IRQ_DVSOK4, | ||
213 | |||
214 | S5M8767_IRQ_RTC60S, | ||
215 | S5M8767_IRQ_RTCA1, | ||
216 | S5M8767_IRQ_RTCA2, | ||
217 | S5M8767_IRQ_SMPL, | ||
218 | S5M8767_IRQ_RTC1S, | ||
219 | S5M8767_IRQ_WTSR, | ||
220 | |||
221 | S5M8767_IRQ_NR, | ||
222 | }; | ||
223 | |||
224 | #define S5M8767_IRQ_PWRR_MASK (1 << 0) | ||
225 | #define S5M8767_IRQ_PWRF_MASK (1 << 1) | ||
226 | #define S5M8767_IRQ_PWR1S_MASK (1 << 3) | ||
227 | #define S5M8767_IRQ_JIGR_MASK (1 << 4) | ||
228 | #define S5M8767_IRQ_JIGF_MASK (1 << 5) | ||
229 | #define S5M8767_IRQ_LOWBAT2_MASK (1 << 6) | ||
230 | #define S5M8767_IRQ_LOWBAT1_MASK (1 << 7) | ||
231 | |||
232 | #define S5M8767_IRQ_MRB_MASK (1 << 2) | ||
233 | #define S5M8767_IRQ_DVSOK2_MASK (1 << 3) | ||
234 | #define S5M8767_IRQ_DVSOK3_MASK (1 << 4) | ||
235 | #define S5M8767_IRQ_DVSOK4_MASK (1 << 5) | ||
236 | |||
237 | #define S5M8767_IRQ_RTC60S_MASK (1 << 0) | ||
238 | #define S5M8767_IRQ_RTCA1_MASK (1 << 1) | ||
239 | #define S5M8767_IRQ_RTCA2_MASK (1 << 2) | ||
240 | #define S5M8767_IRQ_SMPL_MASK (1 << 3) | ||
241 | #define S5M8767_IRQ_RTC1S_MASK (1 << 4) | ||
242 | #define S5M8767_IRQ_WTSR_MASK (1 << 5) | ||
243 | |||
244 | enum s5m8763_irq { | ||
245 | S5M8763_IRQ_DCINF, | ||
246 | S5M8763_IRQ_DCINR, | ||
247 | S5M8763_IRQ_JIGF, | ||
248 | S5M8763_IRQ_JIGR, | ||
249 | S5M8763_IRQ_PWRONF, | ||
250 | S5M8763_IRQ_PWRONR, | ||
251 | |||
252 | S5M8763_IRQ_WTSREVNT, | ||
253 | S5M8763_IRQ_SMPLEVNT, | ||
254 | S5M8763_IRQ_ALARM1, | ||
255 | S5M8763_IRQ_ALARM0, | ||
256 | |||
257 | S5M8763_IRQ_ONKEY1S, | ||
258 | S5M8763_IRQ_TOPOFFR, | ||
259 | S5M8763_IRQ_DCINOVPR, | ||
260 | S5M8763_IRQ_CHGRSTF, | ||
261 | S5M8763_IRQ_DONER, | ||
262 | S5M8763_IRQ_CHGFAULT, | ||
263 | |||
264 | S5M8763_IRQ_LOBAT1, | ||
265 | S5M8763_IRQ_LOBAT2, | ||
266 | |||
267 | S5M8763_IRQ_NR, | ||
268 | }; | ||
269 | |||
270 | #define S5M8763_IRQ_DCINF_MASK (1 << 2) | ||
271 | #define S5M8763_IRQ_DCINR_MASK (1 << 3) | ||
272 | #define S5M8763_IRQ_JIGF_MASK (1 << 4) | ||
273 | #define S5M8763_IRQ_JIGR_MASK (1 << 5) | ||
274 | #define S5M8763_IRQ_PWRONF_MASK (1 << 6) | ||
275 | #define S5M8763_IRQ_PWRONR_MASK (1 << 7) | ||
276 | |||
277 | #define S5M8763_IRQ_WTSREVNT_MASK (1 << 0) | ||
278 | #define S5M8763_IRQ_SMPLEVNT_MASK (1 << 1) | ||
279 | #define S5M8763_IRQ_ALARM1_MASK (1 << 2) | ||
280 | #define S5M8763_IRQ_ALARM0_MASK (1 << 3) | ||
281 | |||
282 | #define S5M8763_IRQ_ONKEY1S_MASK (1 << 0) | ||
283 | #define S5M8763_IRQ_TOPOFFR_MASK (1 << 2) | ||
284 | #define S5M8763_IRQ_DCINOVPR_MASK (1 << 3) | ||
285 | #define S5M8763_IRQ_CHGRSTF_MASK (1 << 4) | ||
286 | #define S5M8763_IRQ_DONER_MASK (1 << 5) | ||
287 | #define S5M8763_IRQ_CHGFAULT_MASK (1 << 7) | ||
288 | |||
289 | #define S5M8763_IRQ_LOBAT1_MASK (1 << 0) | ||
290 | #define S5M8763_IRQ_LOBAT2_MASK (1 << 1) | ||
291 | |||
292 | #define S5M8763_ENRAMP (1 << 4) | ||
293 | |||
294 | /** | ||
295 | * struct s5m87xx_dev - s5m87xx master device for sub-drivers | ||
296 | * @dev: master device of the chip (can be used to access platform data) | ||
297 | * @i2c: i2c client private data for regulator | ||
298 | * @rtc: i2c client private data for rtc | ||
299 | * @iolock: mutex for serializing io access | ||
300 | * @irqlock: mutex for buslock | ||
301 | * @irq_base: base IRQ number for s5m87xx, required for IRQs | ||
302 | * @irq: generic IRQ number for s5m87xx | ||
303 | * @ono: power onoff IRQ number for s5m87xx | ||
304 | * @irq_masks_cur: currently active value | ||
305 | * @irq_masks_cache: cached hardware value | ||
306 | * @type: indicate which s5m87xx "variant" is used | ||
307 | */ | ||
308 | struct s5m87xx_dev { | ||
309 | struct device *dev; | ||
310 | struct regmap *regmap; | ||
311 | struct i2c_client *i2c; | ||
312 | struct i2c_client *rtc; | ||
313 | struct mutex iolock; | ||
314 | struct mutex irqlock; | ||
315 | |||
316 | int device_type; | ||
317 | int irq_base; | ||
318 | int irq; | ||
319 | int ono; | ||
320 | u8 irq_masks_cur[NUM_IRQ_REGS]; | ||
321 | u8 irq_masks_cache[NUM_IRQ_REGS]; | ||
322 | int type; | ||
323 | bool wakeup; | ||
324 | }; | ||
325 | |||
326 | int s5m_irq_init(struct s5m87xx_dev *s5m87xx); | ||
327 | void s5m_irq_exit(struct s5m87xx_dev *s5m87xx); | ||
328 | int s5m_irq_resume(struct s5m87xx_dev *s5m87xx); | ||
329 | |||
330 | extern int s5m_reg_read(struct s5m87xx_dev *s5m87xx, u8 reg, void *dest); | ||
331 | extern int s5m_bulk_read(struct s5m87xx_dev *s5m87xx, u8 reg, int count, u8 *buf); | ||
332 | extern int s5m_reg_write(struct s5m87xx_dev *s5m87xx, u8 reg, u8 value); | ||
333 | extern int s5m_bulk_write(struct s5m87xx_dev *s5m87xx, u8 reg, int count, u8 *buf); | ||
334 | extern int s5m_reg_update(struct s5m87xx_dev *s5m87xx, u8 reg, u8 val, u8 mask); | ||
335 | |||
336 | struct s5m_platform_data { | ||
337 | struct s5m_regulator_data *regulators; | ||
338 | struct s5m_opmode_data *opmode; | ||
339 | int device_type; | ||
340 | int num_regulators; | ||
341 | |||
342 | int irq_base; | ||
343 | int (*cfg_pmic_irq)(void); | ||
344 | |||
345 | int ono; | ||
346 | bool wakeup; | ||
347 | bool buck_voltage_lock; | ||
348 | |||
349 | int buck_gpios[3]; | ||
350 | int buck2_voltage[8]; | ||
351 | bool buck2_gpiodvs; | ||
352 | int buck3_voltage[8]; | ||
353 | bool buck3_gpiodvs; | ||
354 | int buck4_voltage[8]; | ||
355 | bool buck4_gpiodvs; | ||
356 | |||
357 | int buck_set1; | ||
358 | int buck_set2; | ||
359 | int buck_set3; | ||
360 | int buck2_enable; | ||
361 | int buck3_enable; | ||
362 | int buck4_enable; | ||
363 | int buck_default_idx; | ||
364 | int buck2_default_idx; | ||
365 | int buck3_default_idx; | ||
366 | int buck4_default_idx; | ||
367 | |||
368 | int buck_ramp_delay; | ||
369 | bool buck2_ramp_enable; | ||
370 | bool buck3_ramp_enable; | ||
371 | bool buck4_ramp_enable; | ||
372 | }; | ||
373 | |||
374 | #endif /* __LINUX_MFD_S5M_CORE_H */ | ||
diff --git a/include/linux/mfd/s5m87xx/s5m-pmic.h b/include/linux/mfd/s5m87xx/s5m-pmic.h deleted file mode 100644 index 7c719f20f58a..000000000000 --- a/include/linux/mfd/s5m87xx/s5m-pmic.h +++ /dev/null | |||
@@ -1,129 +0,0 @@ | |||
1 | /* s5m87xx.h | ||
2 | * | ||
3 | * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. | ||
4 | * http://www.samsung.com | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | |||
11 | #ifndef __LINUX_MFD_S5M_PMIC_H | ||
12 | #define __LINUX_MFD_S5M_PMIC_H | ||
13 | |||
14 | #include <linux/regulator/machine.h> | ||
15 | |||
16 | /* S5M8767 regulator ids */ | ||
17 | enum s5m8767_regulators { | ||
18 | S5M8767_LDO1, | ||
19 | S5M8767_LDO2, | ||
20 | S5M8767_LDO3, | ||
21 | S5M8767_LDO4, | ||
22 | S5M8767_LDO5, | ||
23 | S5M8767_LDO6, | ||
24 | S5M8767_LDO7, | ||
25 | S5M8767_LDO8, | ||
26 | S5M8767_LDO9, | ||
27 | S5M8767_LDO10, | ||
28 | S5M8767_LDO11, | ||
29 | S5M8767_LDO12, | ||
30 | S5M8767_LDO13, | ||
31 | S5M8767_LDO14, | ||
32 | S5M8767_LDO15, | ||
33 | S5M8767_LDO16, | ||
34 | S5M8767_LDO17, | ||
35 | S5M8767_LDO18, | ||
36 | S5M8767_LDO19, | ||
37 | S5M8767_LDO20, | ||
38 | S5M8767_LDO21, | ||
39 | S5M8767_LDO22, | ||
40 | S5M8767_LDO23, | ||
41 | S5M8767_LDO24, | ||
42 | S5M8767_LDO25, | ||
43 | S5M8767_LDO26, | ||
44 | S5M8767_LDO27, | ||
45 | S5M8767_LDO28, | ||
46 | S5M8767_BUCK1, | ||
47 | S5M8767_BUCK2, | ||
48 | S5M8767_BUCK3, | ||
49 | S5M8767_BUCK4, | ||
50 | S5M8767_BUCK5, | ||
51 | S5M8767_BUCK6, | ||
52 | S5M8767_BUCK7, | ||
53 | S5M8767_BUCK8, | ||
54 | S5M8767_BUCK9, | ||
55 | S5M8767_AP_EN32KHZ, | ||
56 | S5M8767_CP_EN32KHZ, | ||
57 | |||
58 | S5M8767_REG_MAX, | ||
59 | }; | ||
60 | |||
61 | #define S5M8767_ENCTRL_SHIFT 6 | ||
62 | |||
63 | /* S5M8763 regulator ids */ | ||
64 | enum s5m8763_regulators { | ||
65 | S5M8763_LDO1, | ||
66 | S5M8763_LDO2, | ||
67 | S5M8763_LDO3, | ||
68 | S5M8763_LDO4, | ||
69 | S5M8763_LDO5, | ||
70 | S5M8763_LDO6, | ||
71 | S5M8763_LDO7, | ||
72 | S5M8763_LDO8, | ||
73 | S5M8763_LDO9, | ||
74 | S5M8763_LDO10, | ||
75 | S5M8763_LDO11, | ||
76 | S5M8763_LDO12, | ||
77 | S5M8763_LDO13, | ||
78 | S5M8763_LDO14, | ||
79 | S5M8763_LDO15, | ||
80 | S5M8763_LDO16, | ||
81 | S5M8763_BUCK1, | ||
82 | S5M8763_BUCK2, | ||
83 | S5M8763_BUCK3, | ||
84 | S5M8763_BUCK4, | ||
85 | S5M8763_AP_EN32KHZ, | ||
86 | S5M8763_CP_EN32KHZ, | ||
87 | S5M8763_ENCHGVI, | ||
88 | S5M8763_ESAFEUSB1, | ||
89 | S5M8763_ESAFEUSB2, | ||
90 | }; | ||
91 | |||
92 | /** | ||
93 | * s5m87xx_regulator_data - regulator data | ||
94 | * @id: regulator id | ||
95 | * @initdata: regulator init data (contraints, supplies, ...) | ||
96 | */ | ||
97 | struct s5m_regulator_data { | ||
98 | int id; | ||
99 | struct regulator_init_data *initdata; | ||
100 | }; | ||
101 | |||
102 | /* | ||
103 | * s5m_opmode_data - regulator operation mode data | ||
104 | * @id: regulator id | ||
105 | * @mode: regulator operation mode | ||
106 | */ | ||
107 | struct s5m_opmode_data { | ||
108 | int id; | ||
109 | int mode; | ||
110 | }; | ||
111 | |||
112 | /* | ||
113 | * s5m regulator operation mode | ||
114 | * S5M_OPMODE_OFF Regulator always OFF | ||
115 | * S5M_OPMODE_ON Regulator always ON | ||
116 | * S5M_OPMODE_LOWPOWER Regulator is on in low-power mode | ||
117 | * S5M_OPMODE_SUSPEND Regulator is changed by PWREN pin | ||
118 | * If PWREN is high, regulator is on | ||
119 | * If PWREN is low, regulator is off | ||
120 | */ | ||
121 | |||
122 | enum s5m_opmode { | ||
123 | S5M_OPMODE_OFF, | ||
124 | S5M_OPMODE_ON, | ||
125 | S5M_OPMODE_LOWPOWER, | ||
126 | S5M_OPMODE_SUSPEND, | ||
127 | }; | ||
128 | |||
129 | #endif /* __LINUX_MFD_S5M_PMIC_H */ | ||
diff --git a/include/linux/mfd/samsung/core.h b/include/linux/mfd/samsung/core.h new file mode 100644 index 000000000000..b50c38f8bc48 --- /dev/null +++ b/include/linux/mfd/samsung/core.h | |||
@@ -0,0 +1,159 @@ | |||
1 | /* | ||
2 | * core.h | ||
3 | * | ||
4 | * copyright (c) 2011 Samsung Electronics Co., Ltd | ||
5 | * http://www.samsung.com | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License as published by the | ||
9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
10 | * option) any later version. | ||
11 | * | ||
12 | */ | ||
13 | |||
14 | #ifndef __LINUX_MFD_SEC_CORE_H | ||
15 | #define __LINUX_MFD_SEC_CORE_H | ||
16 | |||
17 | #define NUM_IRQ_REGS 4 | ||
18 | |||
19 | enum sec_device_type { | ||
20 | S5M8751X, | ||
21 | S5M8763X, | ||
22 | S5M8767X, | ||
23 | S2MPS11X, | ||
24 | }; | ||
25 | |||
26 | /** | ||
27 | * struct sec_pmic_dev - s5m87xx master device for sub-drivers | ||
28 | * @dev: master device of the chip (can be used to access platform data) | ||
29 | * @i2c: i2c client private data for regulator | ||
30 | * @rtc: i2c client private data for rtc | ||
31 | * @iolock: mutex for serializing io access | ||
32 | * @irqlock: mutex for buslock | ||
33 | * @irq_base: base IRQ number for sec-pmic, required for IRQs | ||
34 | * @irq: generic IRQ number for s5m87xx | ||
35 | * @ono: power onoff IRQ number for s5m87xx | ||
36 | * @irq_masks_cur: currently active value | ||
37 | * @irq_masks_cache: cached hardware value | ||
38 | * @type: indicate which s5m87xx "variant" is used | ||
39 | */ | ||
40 | struct sec_pmic_dev { | ||
41 | struct device *dev; | ||
42 | struct regmap *regmap; | ||
43 | struct i2c_client *i2c; | ||
44 | struct i2c_client *rtc; | ||
45 | struct mutex iolock; | ||
46 | struct mutex irqlock; | ||
47 | |||
48 | int device_type; | ||
49 | int irq_base; | ||
50 | int irq; | ||
51 | struct regmap_irq_chip_data *irq_data; | ||
52 | |||
53 | int ono; | ||
54 | u8 irq_masks_cur[NUM_IRQ_REGS]; | ||
55 | u8 irq_masks_cache[NUM_IRQ_REGS]; | ||
56 | int type; | ||
57 | bool wakeup; | ||
58 | }; | ||
59 | |||
60 | int sec_irq_init(struct sec_pmic_dev *sec_pmic); | ||
61 | void sec_irq_exit(struct sec_pmic_dev *sec_pmic); | ||
62 | int sec_irq_resume(struct sec_pmic_dev *sec_pmic); | ||
63 | |||
64 | extern int sec_reg_read(struct sec_pmic_dev *sec_pmic, u8 reg, void *dest); | ||
65 | extern int sec_bulk_read(struct sec_pmic_dev *sec_pmic, u8 reg, int count, u8 *buf); | ||
66 | extern int sec_reg_write(struct sec_pmic_dev *sec_pmic, u8 reg, u8 value); | ||
67 | extern int sec_bulk_write(struct sec_pmic_dev *sec_pmic, u8 reg, int count, u8 *buf); | ||
68 | extern int sec_reg_update(struct sec_pmic_dev *sec_pmic, u8 reg, u8 val, u8 mask); | ||
69 | |||
70 | struct sec_platform_data { | ||
71 | struct sec_regulator_data *regulators; | ||
72 | struct sec_opmode_data *opmode; | ||
73 | int device_type; | ||
74 | int num_regulators; | ||
75 | |||
76 | int irq_base; | ||
77 | int (*cfg_pmic_irq)(void); | ||
78 | |||
79 | int ono; | ||
80 | bool wakeup; | ||
81 | bool buck_voltage_lock; | ||
82 | |||
83 | int buck_gpios[3]; | ||
84 | int buck_ds[3]; | ||
85 | int buck2_voltage[8]; | ||
86 | bool buck2_gpiodvs; | ||
87 | int buck3_voltage[8]; | ||
88 | bool buck3_gpiodvs; | ||
89 | int buck4_voltage[8]; | ||
90 | bool buck4_gpiodvs; | ||
91 | |||
92 | int buck_set1; | ||
93 | int buck_set2; | ||
94 | int buck_set3; | ||
95 | int buck2_enable; | ||
96 | int buck3_enable; | ||
97 | int buck4_enable; | ||
98 | int buck_default_idx; | ||
99 | int buck2_default_idx; | ||
100 | int buck3_default_idx; | ||
101 | int buck4_default_idx; | ||
102 | |||
103 | int buck_ramp_delay; | ||
104 | |||
105 | int buck2_ramp_delay; | ||
106 | int buck34_ramp_delay; | ||
107 | int buck5_ramp_delay; | ||
108 | int buck16_ramp_delay; | ||
109 | int buck7810_ramp_delay; | ||
110 | int buck9_ramp_delay; | ||
111 | |||
112 | bool buck2_ramp_enable; | ||
113 | bool buck3_ramp_enable; | ||
114 | bool buck4_ramp_enable; | ||
115 | bool buck6_ramp_enable; | ||
116 | |||
117 | int buck2_init; | ||
118 | int buck3_init; | ||
119 | int buck4_init; | ||
120 | }; | ||
121 | |||
122 | /** | ||
123 | * sec_regulator_data - regulator data | ||
124 | * @id: regulator id | ||
125 | * @initdata: regulator init data (contraints, supplies, ...) | ||
126 | */ | ||
127 | struct sec_regulator_data { | ||
128 | int id; | ||
129 | struct regulator_init_data *initdata; | ||
130 | }; | ||
131 | |||
132 | /* | ||
133 | * sec_opmode_data - regulator operation mode data | ||
134 | * @id: regulator id | ||
135 | * @mode: regulator operation mode | ||
136 | */ | ||
137 | struct sec_opmode_data { | ||
138 | int id; | ||
139 | int mode; | ||
140 | }; | ||
141 | |||
142 | /* | ||
143 | * samsung regulator operation mode | ||
144 | * SEC_OPMODE_OFF Regulator always OFF | ||
145 | * SEC_OPMODE_ON Regulator always ON | ||
146 | * SEC_OPMODE_LOWPOWER Regulator is on in low-power mode | ||
147 | * SEC_OPMODE_SUSPEND Regulator is changed by PWREN pin | ||
148 | * If PWREN is high, regulator is on | ||
149 | * If PWREN is low, regulator is off | ||
150 | */ | ||
151 | |||
152 | enum sec_opmode { | ||
153 | SEC_OPMODE_OFF, | ||
154 | SEC_OPMODE_ON, | ||
155 | SEC_OPMODE_LOWPOWER, | ||
156 | SEC_OPMODE_SUSPEND, | ||
157 | }; | ||
158 | |||
159 | #endif /* __LINUX_MFD_SEC_CORE_H */ | ||
diff --git a/include/linux/mfd/samsung/irq.h b/include/linux/mfd/samsung/irq.h new file mode 100644 index 000000000000..d43b4f9e7fb2 --- /dev/null +++ b/include/linux/mfd/samsung/irq.h | |||
@@ -0,0 +1,152 @@ | |||
1 | /* irq.h | ||
2 | * | ||
3 | * Copyright (c) 2012 Samsung Electronics Co., Ltd | ||
4 | * http://www.samsung.com | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the | ||
8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
9 | * option) any later version. | ||
10 | * | ||
11 | */ | ||
12 | |||
13 | #ifndef __LINUX_MFD_SEC_IRQ_H | ||
14 | #define __LINUX_MFD_SEC_IRQ_H | ||
15 | |||
16 | enum s2mps11_irq { | ||
17 | S2MPS11_IRQ_PWRONF, | ||
18 | S2MPS11_IRQ_PWRONR, | ||
19 | S2MPS11_IRQ_JIGONBF, | ||
20 | S2MPS11_IRQ_JIGONBR, | ||
21 | S2MPS11_IRQ_ACOKBF, | ||
22 | S2MPS11_IRQ_ACOKBR, | ||
23 | S2MPS11_IRQ_PWRON1S, | ||
24 | S2MPS11_IRQ_MRB, | ||
25 | |||
26 | S2MPS11_IRQ_RTC60S, | ||
27 | S2MPS11_IRQ_RTCA1, | ||
28 | S2MPS11_IRQ_RTCA2, | ||
29 | S2MPS11_IRQ_SMPL, | ||
30 | S2MPS11_IRQ_RTC1S, | ||
31 | S2MPS11_IRQ_WTSR, | ||
32 | |||
33 | S2MPS11_IRQ_INT120C, | ||
34 | S2MPS11_IRQ_INT140C, | ||
35 | |||
36 | S2MPS11_IRQ_NR, | ||
37 | }; | ||
38 | |||
39 | #define S2MPS11_IRQ_PWRONF_MASK (1 << 0) | ||
40 | #define S2MPS11_IRQ_PWRONR_MASK (1 << 1) | ||
41 | #define S2MPS11_IRQ_JIGONBF_MASK (1 << 2) | ||
42 | #define S2MPS11_IRQ_JIGONBR_MASK (1 << 3) | ||
43 | #define S2MPS11_IRQ_ACOKBF_MASK (1 << 4) | ||
44 | #define S2MPS11_IRQ_ACOKBR_MASK (1 << 5) | ||
45 | #define S2MPS11_IRQ_PWRON1S_MASK (1 << 6) | ||
46 | #define S2MPS11_IRQ_MRB_MASK (1 << 7) | ||
47 | |||
48 | #define S2MPS11_IRQ_RTC60S_MASK (1 << 0) | ||
49 | #define S2MPS11_IRQ_RTCA1_MASK (1 << 1) | ||
50 | #define S2MPS11_IRQ_RTCA2_MASK (1 << 2) | ||
51 | #define S2MPS11_IRQ_SMPL_MASK (1 << 3) | ||
52 | #define S2MPS11_IRQ_RTC1S_MASK (1 << 4) | ||
53 | #define S2MPS11_IRQ_WTSR_MASK (1 << 5) | ||
54 | |||
55 | #define S2MPS11_IRQ_INT120C_MASK (1 << 0) | ||
56 | #define S2MPS11_IRQ_INT140C_MASK (1 << 1) | ||
57 | |||
58 | enum s5m8767_irq { | ||
59 | S5M8767_IRQ_PWRR, | ||
60 | S5M8767_IRQ_PWRF, | ||
61 | S5M8767_IRQ_PWR1S, | ||
62 | S5M8767_IRQ_JIGR, | ||
63 | S5M8767_IRQ_JIGF, | ||
64 | S5M8767_IRQ_LOWBAT2, | ||
65 | S5M8767_IRQ_LOWBAT1, | ||
66 | |||
67 | S5M8767_IRQ_MRB, | ||
68 | S5M8767_IRQ_DVSOK2, | ||
69 | S5M8767_IRQ_DVSOK3, | ||
70 | S5M8767_IRQ_DVSOK4, | ||
71 | |||
72 | S5M8767_IRQ_RTC60S, | ||
73 | S5M8767_IRQ_RTCA1, | ||
74 | S5M8767_IRQ_RTCA2, | ||
75 | S5M8767_IRQ_SMPL, | ||
76 | S5M8767_IRQ_RTC1S, | ||
77 | S5M8767_IRQ_WTSR, | ||
78 | |||
79 | S5M8767_IRQ_NR, | ||
80 | }; | ||
81 | |||
82 | #define S5M8767_IRQ_PWRR_MASK (1 << 0) | ||
83 | #define S5M8767_IRQ_PWRF_MASK (1 << 1) | ||
84 | #define S5M8767_IRQ_PWR1S_MASK (1 << 3) | ||
85 | #define S5M8767_IRQ_JIGR_MASK (1 << 4) | ||
86 | #define S5M8767_IRQ_JIGF_MASK (1 << 5) | ||
87 | #define S5M8767_IRQ_LOWBAT2_MASK (1 << 6) | ||
88 | #define S5M8767_IRQ_LOWBAT1_MASK (1 << 7) | ||
89 | |||
90 | #define S5M8767_IRQ_MRB_MASK (1 << 2) | ||
91 | #define S5M8767_IRQ_DVSOK2_MASK (1 << 3) | ||
92 | #define S5M8767_IRQ_DVSOK3_MASK (1 << 4) | ||
93 | #define S5M8767_IRQ_DVSOK4_MASK (1 << 5) | ||
94 | |||
95 | #define S5M8767_IRQ_RTC60S_MASK (1 << 0) | ||
96 | #define S5M8767_IRQ_RTCA1_MASK (1 << 1) | ||
97 | #define S5M8767_IRQ_RTCA2_MASK (1 << 2) | ||
98 | #define S5M8767_IRQ_SMPL_MASK (1 << 3) | ||
99 | #define S5M8767_IRQ_RTC1S_MASK (1 << 4) | ||
100 | #define S5M8767_IRQ_WTSR_MASK (1 << 5) | ||
101 | |||
102 | enum s5m8763_irq { | ||
103 | S5M8763_IRQ_DCINF, | ||
104 | S5M8763_IRQ_DCINR, | ||
105 | S5M8763_IRQ_JIGF, | ||
106 | S5M8763_IRQ_JIGR, | ||
107 | S5M8763_IRQ_PWRONF, | ||
108 | S5M8763_IRQ_PWRONR, | ||
109 | |||
110 | S5M8763_IRQ_WTSREVNT, | ||
111 | S5M8763_IRQ_SMPLEVNT, | ||
112 | S5M8763_IRQ_ALARM1, | ||
113 | S5M8763_IRQ_ALARM0, | ||
114 | |||
115 | S5M8763_IRQ_ONKEY1S, | ||
116 | S5M8763_IRQ_TOPOFFR, | ||
117 | S5M8763_IRQ_DCINOVPR, | ||
118 | S5M8763_IRQ_CHGRSTF, | ||
119 | S5M8763_IRQ_DONER, | ||
120 | S5M8763_IRQ_CHGFAULT, | ||
121 | |||
122 | S5M8763_IRQ_LOBAT1, | ||
123 | S5M8763_IRQ_LOBAT2, | ||
124 | |||
125 | S5M8763_IRQ_NR, | ||
126 | }; | ||
127 | |||
128 | #define S5M8763_IRQ_DCINF_MASK (1 << 2) | ||
129 | #define S5M8763_IRQ_DCINR_MASK (1 << 3) | ||
130 | #define S5M8763_IRQ_JIGF_MASK (1 << 4) | ||
131 | #define S5M8763_IRQ_JIGR_MASK (1 << 5) | ||
132 | #define S5M8763_IRQ_PWRONF_MASK (1 << 6) | ||
133 | #define S5M8763_IRQ_PWRONR_MASK (1 << 7) | ||
134 | |||
135 | #define S5M8763_IRQ_WTSREVNT_MASK (1 << 0) | ||
136 | #define S5M8763_IRQ_SMPLEVNT_MASK (1 << 1) | ||
137 | #define S5M8763_IRQ_ALARM1_MASK (1 << 2) | ||
138 | #define S5M8763_IRQ_ALARM0_MASK (1 << 3) | ||
139 | |||
140 | #define S5M8763_IRQ_ONKEY1S_MASK (1 << 0) | ||
141 | #define S5M8763_IRQ_TOPOFFR_MASK (1 << 2) | ||
142 | #define S5M8763_IRQ_DCINOVPR_MASK (1 << 3) | ||
143 | #define S5M8763_IRQ_CHGRSTF_MASK (1 << 4) | ||
144 | #define S5M8763_IRQ_DONER_MASK (1 << 5) | ||
145 | #define S5M8763_IRQ_CHGFAULT_MASK (1 << 7) | ||
146 | |||
147 | #define S5M8763_IRQ_LOBAT1_MASK (1 << 0) | ||
148 | #define S5M8763_IRQ_LOBAT2_MASK (1 << 1) | ||
149 | |||
150 | #define S5M8763_ENRAMP (1 << 4) | ||
151 | |||
152 | #endif /* __LINUX_MFD_SEC_IRQ_H */ | ||
diff --git a/include/linux/mfd/s5m87xx/s5m-rtc.h b/include/linux/mfd/samsung/rtc.h index 6ce8da264cec..71597e20cddb 100644 --- a/include/linux/mfd/s5m87xx/s5m-rtc.h +++ b/include/linux/mfd/samsung/rtc.h | |||
@@ -1,5 +1,4 @@ | |||
1 | /* | 1 | /* rtc.h |
2 | * s5m-rtc.h | ||
3 | * | 2 | * |
4 | * Copyright (c) 2011 Samsung Electronics Co., Ltd | 3 | * Copyright (c) 2011 Samsung Electronics Co., Ltd |
5 | * http://www.samsung.com | 4 | * http://www.samsung.com |
@@ -11,39 +10,39 @@ | |||
11 | * | 10 | * |
12 | */ | 11 | */ |
13 | 12 | ||
14 | #ifndef __LINUX_MFD_S5M_RTC_H | 13 | #ifndef __LINUX_MFD_SEC_RTC_H |
15 | #define __LINUX_MFD_S5M_RTC_H | 14 | #define __LINUX_MFD_SEC_RTC_H |
16 | 15 | ||
17 | enum s5m87xx_rtc_reg { | 16 | enum sec_rtc_reg { |
18 | S5M87XX_RTC_SEC, | 17 | SEC_RTC_SEC, |
19 | S5M87XX_RTC_MIN, | 18 | SEC_RTC_MIN, |
20 | S5M87XX_RTC_HOUR, | 19 | SEC_RTC_HOUR, |
21 | S5M87XX_RTC_WEEKDAY, | 20 | SEC_RTC_WEEKDAY, |
22 | S5M87XX_RTC_DATE, | 21 | SEC_RTC_DATE, |
23 | S5M87XX_RTC_MONTH, | 22 | SEC_RTC_MONTH, |
24 | S5M87XX_RTC_YEAR1, | 23 | SEC_RTC_YEAR1, |
25 | S5M87XX_RTC_YEAR2, | 24 | SEC_RTC_YEAR2, |
26 | S5M87XX_ALARM0_SEC, | 25 | SEC_ALARM0_SEC, |
27 | S5M87XX_ALARM0_MIN, | 26 | SEC_ALARM0_MIN, |
28 | S5M87XX_ALARM0_HOUR, | 27 | SEC_ALARM0_HOUR, |
29 | S5M87XX_ALARM0_WEEKDAY, | 28 | SEC_ALARM0_WEEKDAY, |
30 | S5M87XX_ALARM0_DATE, | 29 | SEC_ALARM0_DATE, |
31 | S5M87XX_ALARM0_MONTH, | 30 | SEC_ALARM0_MONTH, |
32 | S5M87XX_ALARM0_YEAR1, | 31 | SEC_ALARM0_YEAR1, |
33 | S5M87XX_ALARM0_YEAR2, | 32 | SEC_ALARM0_YEAR2, |
34 | S5M87XX_ALARM1_SEC, | 33 | SEC_ALARM1_SEC, |
35 | S5M87XX_ALARM1_MIN, | 34 | SEC_ALARM1_MIN, |
36 | S5M87XX_ALARM1_HOUR, | 35 | SEC_ALARM1_HOUR, |
37 | S5M87XX_ALARM1_WEEKDAY, | 36 | SEC_ALARM1_WEEKDAY, |
38 | S5M87XX_ALARM1_DATE, | 37 | SEC_ALARM1_DATE, |
39 | S5M87XX_ALARM1_MONTH, | 38 | SEC_ALARM1_MONTH, |
40 | S5M87XX_ALARM1_YEAR1, | 39 | SEC_ALARM1_YEAR1, |
41 | S5M87XX_ALARM1_YEAR2, | 40 | SEC_ALARM1_YEAR2, |
42 | S5M87XX_ALARM0_CONF, | 41 | SEC_ALARM0_CONF, |
43 | S5M87XX_ALARM1_CONF, | 42 | SEC_ALARM1_CONF, |
44 | S5M87XX_RTC_STATUS, | 43 | SEC_RTC_STATUS, |
45 | S5M87XX_WTSR_SMPL_CNTL, | 44 | SEC_WTSR_SMPL_CNTL, |
46 | S5M87XX_RTC_UDR_CON, | 45 | SEC_RTC_UDR_CON, |
47 | }; | 46 | }; |
48 | 47 | ||
49 | #define RTC_I2C_ADDR (0x0C >> 1) | 48 | #define RTC_I2C_ADDR (0x0C >> 1) |
@@ -81,4 +80,4 @@ enum { | |||
81 | RTC_YEAR2, | 80 | RTC_YEAR2, |
82 | }; | 81 | }; |
83 | 82 | ||
84 | #endif /* __LINUX_MFD_S5M_RTC_H */ | 83 | #endif /* __LINUX_MFD_SEC_RTC_H */ |
diff --git a/include/linux/mfd/samsung/s2mps11.h b/include/linux/mfd/samsung/s2mps11.h new file mode 100644 index 000000000000..ad2252f239d7 --- /dev/null +++ b/include/linux/mfd/samsung/s2mps11.h | |||
@@ -0,0 +1,196 @@ | |||
1 | /* | ||
2 | * s2mps11.h | ||
3 | * | ||
4 | * Copyright (c) 2012 Samsung Electronics Co., Ltd | ||
5 | * http://www.samsung.com | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License as published by the | ||
9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
10 | * option) any later version. | ||
11 | * | ||
12 | */ | ||
13 | |||
14 | #ifndef __LINUX_MFD_S2MPS11_H | ||
15 | #define __LINUX_MFD_S2MPS11_H | ||
16 | |||
17 | /* S2MPS11 registers */ | ||
18 | enum s2mps11_reg { | ||
19 | S2MPS11_REG_ID, | ||
20 | S2MPS11_REG_INT1, | ||
21 | S2MPS11_REG_INT2, | ||
22 | S2MPS11_REG_INT3, | ||
23 | S2MPS11_REG_INT1M, | ||
24 | S2MPS11_REG_INT2M, | ||
25 | S2MPS11_REG_INT3M, | ||
26 | S2MPS11_REG_ST1, | ||
27 | S2MPS11_REG_ST2, | ||
28 | S2MPS11_REG_OFFSRC, | ||
29 | S2MPS11_REG_PWRONSRC, | ||
30 | S2MPS11_REG_RTC_CTRL, | ||
31 | S2MPS11_REG_CTRL1, | ||
32 | S2MPS11_REG_ETC_TEST, | ||
33 | S2MPS11_REG_RSVD3, | ||
34 | S2MPS11_REG_BU_CHG, | ||
35 | S2MPS11_REG_RAMP, | ||
36 | S2MPS11_REG_RAMP_BUCK, | ||
37 | S2MPS11_REG_LDO1_8, | ||
38 | S2MPS11_REG_LDO9_16, | ||
39 | S2MPS11_REG_LDO17_24, | ||
40 | S2MPS11_REG_LDO25_32, | ||
41 | S2MPS11_REG_LDO33_38, | ||
42 | S2MPS11_REG_LDO1_8_1, | ||
43 | S2MPS11_REG_LDO9_16_1, | ||
44 | S2MPS11_REG_LDO17_24_1, | ||
45 | S2MPS11_REG_LDO25_32_1, | ||
46 | S2MPS11_REG_LDO33_38_1, | ||
47 | S2MPS11_REG_OTP_ADRL, | ||
48 | S2MPS11_REG_OTP_ADRH, | ||
49 | S2MPS11_REG_OTP_DATA, | ||
50 | S2MPS11_REG_MON1SEL, | ||
51 | S2MPS11_REG_MON2SEL, | ||
52 | S2MPS11_REG_LEE, | ||
53 | S2MPS11_REG_RSVD_NO, | ||
54 | S2MPS11_REG_UVLO, | ||
55 | S2MPS11_REG_LEE_NO, | ||
56 | S2MPS11_REG_B1CTRL1, | ||
57 | S2MPS11_REG_B1CTRL2, | ||
58 | S2MPS11_REG_B2CTRL1, | ||
59 | S2MPS11_REG_B2CTRL2, | ||
60 | S2MPS11_REG_B3CTRL1, | ||
61 | S2MPS11_REG_B3CTRL2, | ||
62 | S2MPS11_REG_B4CTRL1, | ||
63 | S2MPS11_REG_B4CTRL2, | ||
64 | S2MPS11_REG_B5CTRL1, | ||
65 | S2MPS11_REG_BUCK5_SW, | ||
66 | S2MPS11_REG_B5CTRL2, | ||
67 | S2MPS11_REG_B5CTRL3, | ||
68 | S2MPS11_REG_B5CTRL4, | ||
69 | S2MPS11_REG_B5CTRL5, | ||
70 | S2MPS11_REG_B6CTRL1, | ||
71 | S2MPS11_REG_B6CTRL2, | ||
72 | S2MPS11_REG_B7CTRL1, | ||
73 | S2MPS11_REG_B7CTRL2, | ||
74 | S2MPS11_REG_B8CTRL1, | ||
75 | S2MPS11_REG_B8CTRL2, | ||
76 | S2MPS11_REG_B9CTRL1, | ||
77 | S2MPS11_REG_B9CTRL2, | ||
78 | S2MPS11_REG_B10CTRL1, | ||
79 | S2MPS11_REG_B10CTRL2, | ||
80 | S2MPS11_REG_L1CTRL, | ||
81 | S2MPS11_REG_L2CTRL, | ||
82 | S2MPS11_REG_L3CTRL, | ||
83 | S2MPS11_REG_L4CTRL, | ||
84 | S2MPS11_REG_L5CTRL, | ||
85 | S2MPS11_REG_L6CTRL, | ||
86 | S2MPS11_REG_L7CTRL, | ||
87 | S2MPS11_REG_L8CTRL, | ||
88 | S2MPS11_REG_L9CTRL, | ||
89 | S2MPS11_REG_L10CTRL, | ||
90 | S2MPS11_REG_L11CTRL, | ||
91 | S2MPS11_REG_L12CTRL, | ||
92 | S2MPS11_REG_L13CTRL, | ||
93 | S2MPS11_REG_L14CTRL, | ||
94 | S2MPS11_REG_L15CTRL, | ||
95 | S2MPS11_REG_L16CTRL, | ||
96 | S2MPS11_REG_L17CTRL, | ||
97 | S2MPS11_REG_L18CTRL, | ||
98 | S2MPS11_REG_L19CTRL, | ||
99 | S2MPS11_REG_L20CTRL, | ||
100 | S2MPS11_REG_L21CTRL, | ||
101 | S2MPS11_REG_L22CTRL, | ||
102 | S2MPS11_REG_L23CTRL, | ||
103 | S2MPS11_REG_L24CTRL, | ||
104 | S2MPS11_REG_L25CTRL, | ||
105 | S2MPS11_REG_L26CTRL, | ||
106 | S2MPS11_REG_L27CTRL, | ||
107 | S2MPS11_REG_L28CTRL, | ||
108 | S2MPS11_REG_L29CTRL, | ||
109 | S2MPS11_REG_L30CTRL, | ||
110 | S2MPS11_REG_L31CTRL, | ||
111 | S2MPS11_REG_L32CTRL, | ||
112 | S2MPS11_REG_L33CTRL, | ||
113 | S2MPS11_REG_L34CTRL, | ||
114 | S2MPS11_REG_L35CTRL, | ||
115 | S2MPS11_REG_L36CTRL, | ||
116 | S2MPS11_REG_L37CTRL, | ||
117 | S2MPS11_REG_L38CTRL, | ||
118 | }; | ||
119 | |||
120 | /* S2MPS11 regulator ids */ | ||
121 | enum s2mps11_regulators { | ||
122 | S2MPS11_LDO1, | ||
123 | S2MPS11_LDO2, | ||
124 | S2MPS11_LDO3, | ||
125 | S2MPS11_LDO4, | ||
126 | S2MPS11_LDO5, | ||
127 | S2MPS11_LDO6, | ||
128 | S2MPS11_LDO7, | ||
129 | S2MPS11_LDO8, | ||
130 | S2MPS11_LDO9, | ||
131 | S2MPS11_LDO10, | ||
132 | S2MPS11_LDO11, | ||
133 | S2MPS11_LDO12, | ||
134 | S2MPS11_LDO13, | ||
135 | S2MPS11_LDO14, | ||
136 | S2MPS11_LDO15, | ||
137 | S2MPS11_LDO16, | ||
138 | S2MPS11_LDO17, | ||
139 | S2MPS11_LDO18, | ||
140 | S2MPS11_LDO19, | ||
141 | S2MPS11_LDO20, | ||
142 | S2MPS11_LDO21, | ||
143 | S2MPS11_LDO22, | ||
144 | S2MPS11_LDO23, | ||
145 | S2MPS11_LDO24, | ||
146 | S2MPS11_LDO25, | ||
147 | S2MPS11_LDO26, | ||
148 | S2MPS11_LDO27, | ||
149 | S2MPS11_LDO28, | ||
150 | S2MPS11_LDO29, | ||
151 | S2MPS11_LDO30, | ||
152 | S2MPS11_LDO31, | ||
153 | S2MPS11_LDO32, | ||
154 | S2MPS11_LDO33, | ||
155 | S2MPS11_LDO34, | ||
156 | S2MPS11_LDO35, | ||
157 | S2MPS11_LDO36, | ||
158 | S2MPS11_LDO37, | ||
159 | S2MPS11_LDO38, | ||
160 | S2MPS11_BUCK1, | ||
161 | S2MPS11_BUCK2, | ||
162 | S2MPS11_BUCK3, | ||
163 | S2MPS11_BUCK4, | ||
164 | S2MPS11_BUCK5, | ||
165 | S2MPS11_BUCK6, | ||
166 | S2MPS11_BUCK7, | ||
167 | S2MPS11_BUCK8, | ||
168 | S2MPS11_BUCK9, | ||
169 | S2MPS11_BUCK10, | ||
170 | S2MPS11_AP_EN32KHZ, | ||
171 | S2MPS11_CP_EN32KHZ, | ||
172 | S2MPS11_BT_EN32KHZ, | ||
173 | |||
174 | S2MPS11_REG_MAX, | ||
175 | }; | ||
176 | |||
177 | #define S2MPS11_BUCK_MIN1 600000 | ||
178 | #define S2MPS11_BUCK_MIN2 750000 | ||
179 | #define S2MPS11_BUCK_MIN3 3000000 | ||
180 | #define S2MPS11_LDO_MIN 800000 | ||
181 | #define S2MPS11_BUCK_STEP1 6250 | ||
182 | #define S2MPS11_BUCK_STEP2 12500 | ||
183 | #define S2MPS11_BUCK_STEP3 25000 | ||
184 | #define S2MPS11_LDO_STEP1 50000 | ||
185 | #define S2MPS11_LDO_STEP2 25000 | ||
186 | #define S2MPS11_LDO_VSEL_MASK 0x3F | ||
187 | #define S2MPS11_BUCK_VSEL_MASK 0xFF | ||
188 | #define S2MPS11_ENABLE_MASK (0x03 << S2MPS11_ENABLE_SHIFT) | ||
189 | #define S2MPS11_ENABLE_SHIFT 0x06 | ||
190 | #define S2MPS11_LDO_N_VOLTAGES (S2MPS11_LDO_VSEL_MASK + 1) | ||
191 | #define S2MPS11_BUCK_N_VOLTAGES (S2MPS11_BUCK_VSEL_MASK + 1) | ||
192 | |||
193 | #define S2MPS11_PMIC_EN_SHIFT 6 | ||
194 | #define S2MPS11_REGULATOR_MAX (S2MPS11_REG_MAX - 3) | ||
195 | |||
196 | #endif /* __LINUX_MFD_S2MPS11_H */ | ||
diff --git a/include/linux/mfd/samsung/s5m8763.h b/include/linux/mfd/samsung/s5m8763.h new file mode 100644 index 000000000000..e025418e5589 --- /dev/null +++ b/include/linux/mfd/samsung/s5m8763.h | |||
@@ -0,0 +1,96 @@ | |||
1 | /* s5m8763.h | ||
2 | * | ||
3 | * Copyright (c) 2011 Samsung Electronics Co., Ltd | ||
4 | * http://www.samsung.com | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the | ||
8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
9 | * option) any later version. | ||
10 | * | ||
11 | */ | ||
12 | |||
13 | #ifndef __LINUX_MFD_S5M8763_H | ||
14 | #define __LINUX_MFD_S5M8763_H | ||
15 | |||
16 | /* S5M8763 registers */ | ||
17 | enum s5m8763_reg { | ||
18 | S5M8763_REG_IRQ1, | ||
19 | S5M8763_REG_IRQ2, | ||
20 | S5M8763_REG_IRQ3, | ||
21 | S5M8763_REG_IRQ4, | ||
22 | S5M8763_REG_IRQM1, | ||
23 | S5M8763_REG_IRQM2, | ||
24 | S5M8763_REG_IRQM3, | ||
25 | S5M8763_REG_IRQM4, | ||
26 | S5M8763_REG_STATUS1, | ||
27 | S5M8763_REG_STATUS2, | ||
28 | S5M8763_REG_STATUSM1, | ||
29 | S5M8763_REG_STATUSM2, | ||
30 | S5M8763_REG_CHGR1, | ||
31 | S5M8763_REG_CHGR2, | ||
32 | S5M8763_REG_LDO_ACTIVE_DISCHARGE1, | ||
33 | S5M8763_REG_LDO_ACTIVE_DISCHARGE2, | ||
34 | S5M8763_REG_BUCK_ACTIVE_DISCHARGE3, | ||
35 | S5M8763_REG_ONOFF1, | ||
36 | S5M8763_REG_ONOFF2, | ||
37 | S5M8763_REG_ONOFF3, | ||
38 | S5M8763_REG_ONOFF4, | ||
39 | S5M8763_REG_BUCK1_VOLTAGE1, | ||
40 | S5M8763_REG_BUCK1_VOLTAGE2, | ||
41 | S5M8763_REG_BUCK1_VOLTAGE3, | ||
42 | S5M8763_REG_BUCK1_VOLTAGE4, | ||
43 | S5M8763_REG_BUCK2_VOLTAGE1, | ||
44 | S5M8763_REG_BUCK2_VOLTAGE2, | ||
45 | S5M8763_REG_BUCK3, | ||
46 | S5M8763_REG_BUCK4, | ||
47 | S5M8763_REG_LDO1_LDO2, | ||
48 | S5M8763_REG_LDO3, | ||
49 | S5M8763_REG_LDO4, | ||
50 | S5M8763_REG_LDO5, | ||
51 | S5M8763_REG_LDO6, | ||
52 | S5M8763_REG_LDO7, | ||
53 | S5M8763_REG_LDO7_LDO8, | ||
54 | S5M8763_REG_LDO9_LDO10, | ||
55 | S5M8763_REG_LDO11, | ||
56 | S5M8763_REG_LDO12, | ||
57 | S5M8763_REG_LDO13, | ||
58 | S5M8763_REG_LDO14, | ||
59 | S5M8763_REG_LDO15, | ||
60 | S5M8763_REG_LDO16, | ||
61 | S5M8763_REG_BKCHR, | ||
62 | S5M8763_REG_LBCNFG1, | ||
63 | S5M8763_REG_LBCNFG2, | ||
64 | }; | ||
65 | |||
66 | /* S5M8763 regulator ids */ | ||
67 | enum s5m8763_regulators { | ||
68 | S5M8763_LDO1, | ||
69 | S5M8763_LDO2, | ||
70 | S5M8763_LDO3, | ||
71 | S5M8763_LDO4, | ||
72 | S5M8763_LDO5, | ||
73 | S5M8763_LDO6, | ||
74 | S5M8763_LDO7, | ||
75 | S5M8763_LDO8, | ||
76 | S5M8763_LDO9, | ||
77 | S5M8763_LDO10, | ||
78 | S5M8763_LDO11, | ||
79 | S5M8763_LDO12, | ||
80 | S5M8763_LDO13, | ||
81 | S5M8763_LDO14, | ||
82 | S5M8763_LDO15, | ||
83 | S5M8763_LDO16, | ||
84 | S5M8763_BUCK1, | ||
85 | S5M8763_BUCK2, | ||
86 | S5M8763_BUCK3, | ||
87 | S5M8763_BUCK4, | ||
88 | S5M8763_AP_EN32KHZ, | ||
89 | S5M8763_CP_EN32KHZ, | ||
90 | S5M8763_ENCHGVI, | ||
91 | S5M8763_ESAFEUSB1, | ||
92 | S5M8763_ESAFEUSB2, | ||
93 | }; | ||
94 | |||
95 | #define S5M8763_ENRAMP (1 << 4) | ||
96 | #endif /* __LINUX_MFD_S5M8763_H */ | ||
diff --git a/include/linux/mfd/samsung/s5m8767.h b/include/linux/mfd/samsung/s5m8767.h new file mode 100644 index 000000000000..306a95fc558c --- /dev/null +++ b/include/linux/mfd/samsung/s5m8767.h | |||
@@ -0,0 +1,188 @@ | |||
1 | /* s5m8767.h | ||
2 | * | ||
3 | * Copyright (c) 2011 Samsung Electronics Co., Ltd | ||
4 | * http://www.samsung.com | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the | ||
8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
9 | * option) any later version. | ||
10 | * | ||
11 | */ | ||
12 | |||
13 | #ifndef __LINUX_MFD_S5M8767_H | ||
14 | #define __LINUX_MFD_S5M8767_H | ||
15 | |||
16 | /* S5M8767 registers */ | ||
17 | enum s5m8767_reg { | ||
18 | S5M8767_REG_ID, | ||
19 | S5M8767_REG_INT1, | ||
20 | S5M8767_REG_INT2, | ||
21 | S5M8767_REG_INT3, | ||
22 | S5M8767_REG_INT1M, | ||
23 | S5M8767_REG_INT2M, | ||
24 | S5M8767_REG_INT3M, | ||
25 | S5M8767_REG_STATUS1, | ||
26 | S5M8767_REG_STATUS2, | ||
27 | S5M8767_REG_STATUS3, | ||
28 | S5M8767_REG_CTRL1, | ||
29 | S5M8767_REG_CTRL2, | ||
30 | S5M8767_REG_LOWBAT1, | ||
31 | S5M8767_REG_LOWBAT2, | ||
32 | S5M8767_REG_BUCHG, | ||
33 | S5M8767_REG_DVSRAMP, | ||
34 | S5M8767_REG_DVSTIMER2 = 0x10, | ||
35 | S5M8767_REG_DVSTIMER3, | ||
36 | S5M8767_REG_DVSTIMER4, | ||
37 | S5M8767_REG_LDO1, | ||
38 | S5M8767_REG_LDO2, | ||
39 | S5M8767_REG_LDO3, | ||
40 | S5M8767_REG_LDO4, | ||
41 | S5M8767_REG_LDO5, | ||
42 | S5M8767_REG_LDO6, | ||
43 | S5M8767_REG_LDO7, | ||
44 | S5M8767_REG_LDO8, | ||
45 | S5M8767_REG_LDO9, | ||
46 | S5M8767_REG_LDO10, | ||
47 | S5M8767_REG_LDO11, | ||
48 | S5M8767_REG_LDO12, | ||
49 | S5M8767_REG_LDO13, | ||
50 | S5M8767_REG_LDO14 = 0x20, | ||
51 | S5M8767_REG_LDO15, | ||
52 | S5M8767_REG_LDO16, | ||
53 | S5M8767_REG_LDO17, | ||
54 | S5M8767_REG_LDO18, | ||
55 | S5M8767_REG_LDO19, | ||
56 | S5M8767_REG_LDO20, | ||
57 | S5M8767_REG_LDO21, | ||
58 | S5M8767_REG_LDO22, | ||
59 | S5M8767_REG_LDO23, | ||
60 | S5M8767_REG_LDO24, | ||
61 | S5M8767_REG_LDO25, | ||
62 | S5M8767_REG_LDO26, | ||
63 | S5M8767_REG_LDO27, | ||
64 | S5M8767_REG_LDO28, | ||
65 | S5M8767_REG_UVLO = 0x31, | ||
66 | S5M8767_REG_BUCK1CTRL1, | ||
67 | S5M8767_REG_BUCK1CTRL2, | ||
68 | S5M8767_REG_BUCK2CTRL, | ||
69 | S5M8767_REG_BUCK2DVS1, | ||
70 | S5M8767_REG_BUCK2DVS2, | ||
71 | S5M8767_REG_BUCK2DVS3, | ||
72 | S5M8767_REG_BUCK2DVS4, | ||
73 | S5M8767_REG_BUCK2DVS5, | ||
74 | S5M8767_REG_BUCK2DVS6, | ||
75 | S5M8767_REG_BUCK2DVS7, | ||
76 | S5M8767_REG_BUCK2DVS8, | ||
77 | S5M8767_REG_BUCK3CTRL, | ||
78 | S5M8767_REG_BUCK3DVS1, | ||
79 | S5M8767_REG_BUCK3DVS2, | ||
80 | S5M8767_REG_BUCK3DVS3, | ||
81 | S5M8767_REG_BUCK3DVS4, | ||
82 | S5M8767_REG_BUCK3DVS5, | ||
83 | S5M8767_REG_BUCK3DVS6, | ||
84 | S5M8767_REG_BUCK3DVS7, | ||
85 | S5M8767_REG_BUCK3DVS8, | ||
86 | S5M8767_REG_BUCK4CTRL, | ||
87 | S5M8767_REG_BUCK4DVS1, | ||
88 | S5M8767_REG_BUCK4DVS2, | ||
89 | S5M8767_REG_BUCK4DVS3, | ||
90 | S5M8767_REG_BUCK4DVS4, | ||
91 | S5M8767_REG_BUCK4DVS5, | ||
92 | S5M8767_REG_BUCK4DVS6, | ||
93 | S5M8767_REG_BUCK4DVS7, | ||
94 | S5M8767_REG_BUCK4DVS8, | ||
95 | S5M8767_REG_BUCK5CTRL1, | ||
96 | S5M8767_REG_BUCK5CTRL2, | ||
97 | S5M8767_REG_BUCK5CTRL3, | ||
98 | S5M8767_REG_BUCK5CTRL4, | ||
99 | S5M8767_REG_BUCK5CTRL5, | ||
100 | S5M8767_REG_BUCK6CTRL1, | ||
101 | S5M8767_REG_BUCK6CTRL2, | ||
102 | S5M8767_REG_BUCK7CTRL1, | ||
103 | S5M8767_REG_BUCK7CTRL2, | ||
104 | S5M8767_REG_BUCK8CTRL1, | ||
105 | S5M8767_REG_BUCK8CTRL2, | ||
106 | S5M8767_REG_BUCK9CTRL1, | ||
107 | S5M8767_REG_BUCK9CTRL2, | ||
108 | S5M8767_REG_LDO1CTRL, | ||
109 | S5M8767_REG_LDO2_1CTRL, | ||
110 | S5M8767_REG_LDO2_2CTRL, | ||
111 | S5M8767_REG_LDO2_3CTRL, | ||
112 | S5M8767_REG_LDO2_4CTRL, | ||
113 | S5M8767_REG_LDO3CTRL, | ||
114 | S5M8767_REG_LDO4CTRL, | ||
115 | S5M8767_REG_LDO5CTRL, | ||
116 | S5M8767_REG_LDO6CTRL, | ||
117 | S5M8767_REG_LDO7CTRL, | ||
118 | S5M8767_REG_LDO8CTRL, | ||
119 | S5M8767_REG_LDO9CTRL, | ||
120 | S5M8767_REG_LDO10CTRL, | ||
121 | S5M8767_REG_LDO11CTRL, | ||
122 | S5M8767_REG_LDO12CTRL, | ||
123 | S5M8767_REG_LDO13CTRL, | ||
124 | S5M8767_REG_LDO14CTRL, | ||
125 | S5M8767_REG_LDO15CTRL, | ||
126 | S5M8767_REG_LDO16CTRL, | ||
127 | S5M8767_REG_LDO17CTRL, | ||
128 | S5M8767_REG_LDO18CTRL, | ||
129 | S5M8767_REG_LDO19CTRL, | ||
130 | S5M8767_REG_LDO20CTRL, | ||
131 | S5M8767_REG_LDO21CTRL, | ||
132 | S5M8767_REG_LDO22CTRL, | ||
133 | S5M8767_REG_LDO23CTRL, | ||
134 | S5M8767_REG_LDO24CTRL, | ||
135 | S5M8767_REG_LDO25CTRL, | ||
136 | S5M8767_REG_LDO26CTRL, | ||
137 | S5M8767_REG_LDO27CTRL, | ||
138 | S5M8767_REG_LDO28CTRL, | ||
139 | }; | ||
140 | |||
141 | /* S5M8767 regulator ids */ | ||
142 | enum s5m8767_regulators { | ||
143 | S5M8767_LDO1, | ||
144 | S5M8767_LDO2, | ||
145 | S5M8767_LDO3, | ||
146 | S5M8767_LDO4, | ||
147 | S5M8767_LDO5, | ||
148 | S5M8767_LDO6, | ||
149 | S5M8767_LDO7, | ||
150 | S5M8767_LDO8, | ||
151 | S5M8767_LDO9, | ||
152 | S5M8767_LDO10, | ||
153 | S5M8767_LDO11, | ||
154 | S5M8767_LDO12, | ||
155 | S5M8767_LDO13, | ||
156 | S5M8767_LDO14, | ||
157 | S5M8767_LDO15, | ||
158 | S5M8767_LDO16, | ||
159 | S5M8767_LDO17, | ||
160 | S5M8767_LDO18, | ||
161 | S5M8767_LDO19, | ||
162 | S5M8767_LDO20, | ||
163 | S5M8767_LDO21, | ||
164 | S5M8767_LDO22, | ||
165 | S5M8767_LDO23, | ||
166 | S5M8767_LDO24, | ||
167 | S5M8767_LDO25, | ||
168 | S5M8767_LDO26, | ||
169 | S5M8767_LDO27, | ||
170 | S5M8767_LDO28, | ||
171 | S5M8767_BUCK1, | ||
172 | S5M8767_BUCK2, | ||
173 | S5M8767_BUCK3, | ||
174 | S5M8767_BUCK4, | ||
175 | S5M8767_BUCK5, | ||
176 | S5M8767_BUCK6, | ||
177 | S5M8767_BUCK7, | ||
178 | S5M8767_BUCK8, | ||
179 | S5M8767_BUCK9, | ||
180 | S5M8767_AP_EN32KHZ, | ||
181 | S5M8767_CP_EN32KHZ, | ||
182 | |||
183 | S5M8767_REG_MAX, | ||
184 | }; | ||
185 | |||
186 | #define S5M8767_ENCTRL_SHIFT 6 | ||
187 | |||
188 | #endif /* __LINUX_MFD_S5M8767_H */ | ||
diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h index f5171dbf8850..d83af39815ab 100644 --- a/include/linux/mfd/tmio.h +++ b/include/linux/mfd/tmio.h | |||
@@ -101,6 +101,7 @@ struct tmio_mmc_host; | |||
101 | struct tmio_mmc_data { | 101 | struct tmio_mmc_data { |
102 | unsigned int hclk; | 102 | unsigned int hclk; |
103 | unsigned long capabilities; | 103 | unsigned long capabilities; |
104 | unsigned long capabilities2; | ||
104 | unsigned long flags; | 105 | unsigned long flags; |
105 | u32 ocr_mask; /* available voltages */ | 106 | u32 ocr_mask; /* available voltages */ |
106 | struct tmio_mmc_dma *dma; | 107 | struct tmio_mmc_dma *dma; |
@@ -110,6 +111,9 @@ struct tmio_mmc_data { | |||
110 | void (*set_clk_div)(struct platform_device *host, int state); | 111 | void (*set_clk_div)(struct platform_device *host, int state); |
111 | int (*get_cd)(struct platform_device *host); | 112 | int (*get_cd)(struct platform_device *host); |
112 | int (*write16_hook)(struct tmio_mmc_host *host, int addr); | 113 | int (*write16_hook)(struct tmio_mmc_host *host, int addr); |
114 | /* clock management callbacks */ | ||
115 | int (*clk_enable)(struct platform_device *pdev, unsigned int *f); | ||
116 | void (*clk_disable)(struct platform_device *pdev); | ||
113 | }; | 117 | }; |
114 | 118 | ||
115 | /* | 119 | /* |
diff --git a/include/linux/mfd/tps65217.h b/include/linux/mfd/tps65217.h index e030ef9a64ee..12c06870829a 100644 --- a/include/linux/mfd/tps65217.h +++ b/include/linux/mfd/tps65217.h | |||
@@ -217,7 +217,8 @@ enum tps65217_regulator_id { | |||
217 | * Board data may be used to initialize regulator. | 217 | * Board data may be used to initialize regulator. |
218 | */ | 218 | */ |
219 | struct tps65217_board { | 219 | struct tps65217_board { |
220 | struct regulator_init_data *tps65217_init_data; | 220 | struct regulator_init_data *tps65217_init_data[TPS65217_NUM_REGULATOR]; |
221 | struct device_node *of_node[TPS65217_NUM_REGULATOR]; | ||
221 | }; | 222 | }; |
222 | 223 | ||
223 | /** | 224 | /** |
@@ -227,11 +228,6 @@ struct tps65217_board { | |||
227 | * @max_uV: minimum micro volts | 228 | * @max_uV: minimum micro volts |
228 | * @vsel_to_uv: Function pointer to get voltage from selector | 229 | * @vsel_to_uv: Function pointer to get voltage from selector |
229 | * @uv_to_vsel: Function pointer to get selector from voltage | 230 | * @uv_to_vsel: Function pointer to get selector from voltage |
230 | * @table: Table for non-uniform voltage step-size | ||
231 | * @table_len: Length of the voltage table | ||
232 | * @enable_mask: Regulator enable mask bits | ||
233 | * @set_vout_reg: Regulator output voltage set register | ||
234 | * @set_vout_mask: Regulator output voltage set mask | ||
235 | * | 231 | * |
236 | * This data is used to check the regualtor voltage limits while setting. | 232 | * This data is used to check the regualtor voltage limits while setting. |
237 | */ | 233 | */ |
@@ -241,11 +237,6 @@ struct tps_info { | |||
241 | int max_uV; | 237 | int max_uV; |
242 | int (*vsel_to_uv)(unsigned int vsel); | 238 | int (*vsel_to_uv)(unsigned int vsel); |
243 | int (*uv_to_vsel)(int uV, unsigned int *vsel); | 239 | int (*uv_to_vsel)(int uV, unsigned int *vsel); |
244 | const int *table; | ||
245 | unsigned int table_len; | ||
246 | unsigned int enable_mask; | ||
247 | unsigned int set_vout_reg; | ||
248 | unsigned int set_vout_mask; | ||
249 | }; | 240 | }; |
250 | 241 | ||
251 | /** | 242 | /** |
diff --git a/include/linux/mfd/tps65910.h b/include/linux/mfd/tps65910.h index dd8dc0a6c462..9bf8767818b4 100644 --- a/include/linux/mfd/tps65910.h +++ b/include/linux/mfd/tps65910.h | |||
@@ -807,6 +807,7 @@ struct tps65910_board { | |||
807 | int irq_base; | 807 | int irq_base; |
808 | int vmbch_threshold; | 808 | int vmbch_threshold; |
809 | int vmbch2_threshold; | 809 | int vmbch2_threshold; |
810 | bool en_ck32k_xtal; | ||
810 | bool en_dev_slp; | 811 | bool en_dev_slp; |
811 | struct tps65910_sleep_keepon_data *slp_keepon; | 812 | struct tps65910_sleep_keepon_data *slp_keepon; |
812 | bool en_gpio_sleep[TPS6591X_MAX_NUM_GPIO]; | 813 | bool en_gpio_sleep[TPS6591X_MAX_NUM_GPIO]; |
@@ -880,4 +881,10 @@ static inline int tps65910_reg_clear_bits(struct tps65910 *tps65910, u8 reg, | |||
880 | return regmap_update_bits(tps65910->regmap, reg, mask, 0); | 881 | return regmap_update_bits(tps65910->regmap, reg, mask, 0); |
881 | } | 882 | } |
882 | 883 | ||
884 | static inline int tps65910_reg_update_bits(struct tps65910 *tps65910, u8 reg, | ||
885 | u8 mask, u8 val) | ||
886 | { | ||
887 | return regmap_update_bits(tps65910->regmap, reg, mask, val); | ||
888 | } | ||
889 | |||
883 | #endif /* __LINUX_MFD_TPS65910_H */ | 890 | #endif /* __LINUX_MFD_TPS65910_H */ |
diff --git a/include/linux/mfd/twl6040.h b/include/linux/mfd/twl6040.h index 6659487c31e7..eaad49f7c130 100644 --- a/include/linux/mfd/twl6040.h +++ b/include/linux/mfd/twl6040.h | |||
@@ -161,8 +161,9 @@ | |||
161 | #define TWL6040_CELLS 2 | 161 | #define TWL6040_CELLS 2 |
162 | 162 | ||
163 | #define TWL6040_REV_ES1_0 0x00 | 163 | #define TWL6040_REV_ES1_0 0x00 |
164 | #define TWL6040_REV_ES1_1 0x01 | 164 | #define TWL6040_REV_ES1_1 0x01 /* Rev ES1.1 and ES1.2 */ |
165 | #define TWL6040_REV_ES1_2 0x02 | 165 | #define TWL6040_REV_ES1_3 0x02 |
166 | #define TWL6041_REV_ES2_0 0x10 | ||
166 | 167 | ||
167 | #define TWL6040_IRQ_TH 0 | 168 | #define TWL6040_IRQ_TH 0 |
168 | #define TWL6040_IRQ_PLUG 1 | 169 | #define TWL6040_IRQ_PLUG 1 |
@@ -206,7 +207,6 @@ struct twl6040 { | |||
206 | struct regmap *regmap; | 207 | struct regmap *regmap; |
207 | struct regulator_bulk_data supplies[2]; /* supplies for vio, v2v1 */ | 208 | struct regulator_bulk_data supplies[2]; /* supplies for vio, v2v1 */ |
208 | struct mutex mutex; | 209 | struct mutex mutex; |
209 | struct mutex io_mutex; | ||
210 | struct mutex irq_mutex; | 210 | struct mutex irq_mutex; |
211 | struct mfd_cell cells[TWL6040_CELLS]; | 211 | struct mfd_cell cells[TWL6040_CELLS]; |
212 | struct completion ready; | 212 | struct completion ready; |
diff --git a/include/linux/mfd/wm8350/core.h b/include/linux/mfd/wm8350/core.h index 9192b6404a73..509481d9cf19 100644 --- a/include/linux/mfd/wm8350/core.h +++ b/include/linux/mfd/wm8350/core.h | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/mutex.h> | 17 | #include <linux/mutex.h> |
18 | #include <linux/interrupt.h> | 18 | #include <linux/interrupt.h> |
19 | #include <linux/completion.h> | 19 | #include <linux/completion.h> |
20 | #include <linux/regmap.h> | ||
20 | 21 | ||
21 | #include <linux/mfd/wm8350/audio.h> | 22 | #include <linux/mfd/wm8350/audio.h> |
22 | #include <linux/mfd/wm8350/gpio.h> | 23 | #include <linux/mfd/wm8350/gpio.h> |
@@ -66,6 +67,9 @@ | |||
66 | 67 | ||
67 | #define WM8350_MAX_REGISTER 0xFF | 68 | #define WM8350_MAX_REGISTER 0xFF |
68 | 69 | ||
70 | #define WM8350_UNLOCK_KEY 0x0013 | ||
71 | #define WM8350_LOCK_KEY 0x0000 | ||
72 | |||
69 | /* | 73 | /* |
70 | * Field Definitions. | 74 | * Field Definitions. |
71 | */ | 75 | */ |
@@ -582,27 +586,9 @@ | |||
582 | 586 | ||
583 | #define WM8350_NUM_IRQ_REGS 7 | 587 | #define WM8350_NUM_IRQ_REGS 7 |
584 | 588 | ||
585 | struct wm8350_reg_access { | 589 | extern const struct regmap_config wm8350_regmap; |
586 | u16 readable; /* Mask of readable bits */ | ||
587 | u16 writable; /* Mask of writable bits */ | ||
588 | u16 vol; /* Mask of volatile bits */ | ||
589 | }; | ||
590 | extern const struct wm8350_reg_access wm8350_reg_io_map[]; | ||
591 | extern const u16 wm8350_mode0_defaults[]; | ||
592 | extern const u16 wm8350_mode1_defaults[]; | ||
593 | extern const u16 wm8350_mode2_defaults[]; | ||
594 | extern const u16 wm8350_mode3_defaults[]; | ||
595 | extern const u16 wm8351_mode0_defaults[]; | ||
596 | extern const u16 wm8351_mode1_defaults[]; | ||
597 | extern const u16 wm8351_mode2_defaults[]; | ||
598 | extern const u16 wm8351_mode3_defaults[]; | ||
599 | extern const u16 wm8352_mode0_defaults[]; | ||
600 | extern const u16 wm8352_mode1_defaults[]; | ||
601 | extern const u16 wm8352_mode2_defaults[]; | ||
602 | extern const u16 wm8352_mode3_defaults[]; | ||
603 | 590 | ||
604 | struct wm8350; | 591 | struct wm8350; |
605 | struct regmap; | ||
606 | 592 | ||
607 | struct wm8350_hwmon { | 593 | struct wm8350_hwmon { |
608 | struct platform_device *pdev; | 594 | struct platform_device *pdev; |
@@ -614,7 +600,7 @@ struct wm8350 { | |||
614 | 600 | ||
615 | /* device IO */ | 601 | /* device IO */ |
616 | struct regmap *regmap; | 602 | struct regmap *regmap; |
617 | u16 *reg_cache; | 603 | bool unlocked; |
618 | 604 | ||
619 | struct mutex auxadc_mutex; | 605 | struct mutex auxadc_mutex; |
620 | struct completion auxadc_done; | 606 | struct completion auxadc_done; |
diff --git a/include/linux/mfd/wm8994/pdata.h b/include/linux/mfd/wm8994/pdata.h index 893267bb6229..f0361c031927 100644 --- a/include/linux/mfd/wm8994/pdata.h +++ b/include/linux/mfd/wm8994/pdata.h | |||
@@ -141,6 +141,7 @@ struct wm8994_pdata { | |||
141 | struct wm8994_ldo_pdata ldo[WM8994_NUM_LDO]; | 141 | struct wm8994_ldo_pdata ldo[WM8994_NUM_LDO]; |
142 | 142 | ||
143 | int irq_base; /** Base IRQ number for WM8994, required for IRQs */ | 143 | int irq_base; /** Base IRQ number for WM8994, required for IRQs */ |
144 | unsigned long irq_flags; /** user irq flags */ | ||
144 | 145 | ||
145 | int num_drc_cfgs; | 146 | int num_drc_cfgs; |
146 | struct wm8994_drc_cfg *drc_cfgs; | 147 | struct wm8994_drc_cfg *drc_cfgs; |
diff --git a/include/linux/mii.h b/include/linux/mii.h index 2783eca629a0..8ef3a7a11592 100644 --- a/include/linux/mii.h +++ b/include/linux/mii.h | |||
@@ -21,6 +21,8 @@ | |||
21 | #define MII_EXPANSION 0x06 /* Expansion register */ | 21 | #define MII_EXPANSION 0x06 /* Expansion register */ |
22 | #define MII_CTRL1000 0x09 /* 1000BASE-T control */ | 22 | #define MII_CTRL1000 0x09 /* 1000BASE-T control */ |
23 | #define MII_STAT1000 0x0a /* 1000BASE-T status */ | 23 | #define MII_STAT1000 0x0a /* 1000BASE-T status */ |
24 | #define MII_MMD_CTRL 0x0d /* MMD Access Control Register */ | ||
25 | #define MII_MMD_DATA 0x0e /* MMD Access Data Register */ | ||
24 | #define MII_ESTATUS 0x0f /* Extended Status */ | 26 | #define MII_ESTATUS 0x0f /* Extended Status */ |
25 | #define MII_DCOUNTER 0x12 /* Disconnect counter */ | 27 | #define MII_DCOUNTER 0x12 /* Disconnect counter */ |
26 | #define MII_FCSCOUNTER 0x13 /* False carrier counter */ | 28 | #define MII_FCSCOUNTER 0x13 /* False carrier counter */ |
@@ -141,6 +143,13 @@ | |||
141 | #define FLOW_CTRL_TX 0x01 | 143 | #define FLOW_CTRL_TX 0x01 |
142 | #define FLOW_CTRL_RX 0x02 | 144 | #define FLOW_CTRL_RX 0x02 |
143 | 145 | ||
146 | /* MMD Access Control register fields */ | ||
147 | #define MII_MMD_CTRL_DEVAD_MASK 0x1f /* Mask MMD DEVAD*/ | ||
148 | #define MII_MMD_CTRL_ADDR 0x0000 /* Address */ | ||
149 | #define MII_MMD_CTRL_NOINCR 0x4000 /* no post increment */ | ||
150 | #define MII_MMD_CTRL_INCR_RDWT 0x8000 /* post increment on reads & writes */ | ||
151 | #define MII_MMD_CTRL_INCR_ON_WT 0xC000 /* post increment on writes only */ | ||
152 | |||
144 | /* This structure is used in all SIOCxMIIxxx ioctl calls */ | 153 | /* This structure is used in all SIOCxMIIxxx ioctl calls */ |
145 | struct mii_ioctl_data { | 154 | struct mii_ioctl_data { |
146 | __u16 phy_id; | 155 | __u16 phy_id; |
diff --git a/include/linux/miscdevice.h b/include/linux/miscdevice.h index 0549d2115507..e0deeb2cc939 100644 --- a/include/linux/miscdevice.h +++ b/include/linux/miscdevice.h | |||
@@ -35,6 +35,7 @@ | |||
35 | #define MPT_MINOR 220 | 35 | #define MPT_MINOR 220 |
36 | #define MPT2SAS_MINOR 221 | 36 | #define MPT2SAS_MINOR 221 |
37 | #define UINPUT_MINOR 223 | 37 | #define UINPUT_MINOR 223 |
38 | #define MISC_MCELOG_MINOR 227 | ||
38 | #define HPET_MINOR 228 | 39 | #define HPET_MINOR 228 |
39 | #define FUSE_MINOR 229 | 40 | #define FUSE_MINOR 229 |
40 | #define KVM_MINOR 232 | 41 | #define KVM_MINOR 232 |
diff --git a/include/linux/mlx4/cmd.h b/include/linux/mlx4/cmd.h index 1f3860a8a109..260695186256 100644 --- a/include/linux/mlx4/cmd.h +++ b/include/linux/mlx4/cmd.h | |||
@@ -154,6 +154,10 @@ enum { | |||
154 | /* set port opcode modifiers */ | 154 | /* set port opcode modifiers */ |
155 | MLX4_SET_PORT_PRIO2TC = 0x8, | 155 | MLX4_SET_PORT_PRIO2TC = 0x8, |
156 | MLX4_SET_PORT_SCHEDULER = 0x9, | 156 | MLX4_SET_PORT_SCHEDULER = 0x9, |
157 | |||
158 | /* register/delete flow steering network rules */ | ||
159 | MLX4_QP_FLOW_STEERING_ATTACH = 0x65, | ||
160 | MLX4_QP_FLOW_STEERING_DETACH = 0x66, | ||
157 | }; | 161 | }; |
158 | 162 | ||
159 | enum { | 163 | enum { |
diff --git a/include/linux/mlx4/device.h b/include/linux/mlx4/device.h index 6a8f002b8ed3..bd6c9fcdf2dd 100644 --- a/include/linux/mlx4/device.h +++ b/include/linux/mlx4/device.h | |||
@@ -36,6 +36,7 @@ | |||
36 | #include <linux/pci.h> | 36 | #include <linux/pci.h> |
37 | #include <linux/completion.h> | 37 | #include <linux/completion.h> |
38 | #include <linux/radix-tree.h> | 38 | #include <linux/radix-tree.h> |
39 | #include <linux/cpu_rmap.h> | ||
39 | 40 | ||
40 | #include <linux/atomic.h> | 41 | #include <linux/atomic.h> |
41 | 42 | ||
@@ -56,6 +57,13 @@ enum { | |||
56 | MLX4_MAX_PORTS = 2 | 57 | MLX4_MAX_PORTS = 2 |
57 | }; | 58 | }; |
58 | 59 | ||
60 | /* base qkey for use in sriov tunnel-qp/proxy-qp communication. | ||
61 | * These qkeys must not be allowed for general use. This is a 64k range, | ||
62 | * and to test for violation, we use the mask (protect against future chg). | ||
63 | */ | ||
64 | #define MLX4_RESERVED_QKEY_BASE (0xFFFF0000) | ||
65 | #define MLX4_RESERVED_QKEY_MASK (0xFFFF0000) | ||
66 | |||
59 | enum { | 67 | enum { |
60 | MLX4_BOARD_ID_LEN = 64 | 68 | MLX4_BOARD_ID_LEN = 64 |
61 | }; | 69 | }; |
@@ -70,6 +78,36 @@ enum { | |||
70 | MLX4_MFUNC_EQE_MASK = (MLX4_MFUNC_MAX_EQES - 1) | 78 | MLX4_MFUNC_EQE_MASK = (MLX4_MFUNC_MAX_EQES - 1) |
71 | }; | 79 | }; |
72 | 80 | ||
81 | /* Driver supports 3 diffrent device methods to manage traffic steering: | ||
82 | * -device managed - High level API for ib and eth flow steering. FW is | ||
83 | * managing flow steering tables. | ||
84 | * - B0 steering mode - Common low level API for ib and (if supported) eth. | ||
85 | * - A0 steering mode - Limited low level API for eth. In case of IB, | ||
86 | * B0 mode is in use. | ||
87 | */ | ||
88 | enum { | ||
89 | MLX4_STEERING_MODE_A0, | ||
90 | MLX4_STEERING_MODE_B0, | ||
91 | MLX4_STEERING_MODE_DEVICE_MANAGED | ||
92 | }; | ||
93 | |||
94 | static inline const char *mlx4_steering_mode_str(int steering_mode) | ||
95 | { | ||
96 | switch (steering_mode) { | ||
97 | case MLX4_STEERING_MODE_A0: | ||
98 | return "A0 steering"; | ||
99 | |||
100 | case MLX4_STEERING_MODE_B0: | ||
101 | return "B0 steering"; | ||
102 | |||
103 | case MLX4_STEERING_MODE_DEVICE_MANAGED: | ||
104 | return "Device managed flow steering"; | ||
105 | |||
106 | default: | ||
107 | return "Unrecognize steering mode"; | ||
108 | } | ||
109 | } | ||
110 | |||
73 | enum { | 111 | enum { |
74 | MLX4_DEV_CAP_FLAG_RC = 1LL << 0, | 112 | MLX4_DEV_CAP_FLAG_RC = 1LL << 0, |
75 | MLX4_DEV_CAP_FLAG_UC = 1LL << 1, | 113 | MLX4_DEV_CAP_FLAG_UC = 1LL << 1, |
@@ -96,13 +134,15 @@ enum { | |||
96 | MLX4_DEV_CAP_FLAG_VEP_UC_STEER = 1LL << 41, | 134 | MLX4_DEV_CAP_FLAG_VEP_UC_STEER = 1LL << 41, |
97 | MLX4_DEV_CAP_FLAG_VEP_MC_STEER = 1LL << 42, | 135 | MLX4_DEV_CAP_FLAG_VEP_MC_STEER = 1LL << 42, |
98 | MLX4_DEV_CAP_FLAG_COUNTERS = 1LL << 48, | 136 | MLX4_DEV_CAP_FLAG_COUNTERS = 1LL << 48, |
99 | MLX4_DEV_CAP_FLAG_SENSE_SUPPORT = 1LL << 55 | 137 | MLX4_DEV_CAP_FLAG_SENSE_SUPPORT = 1LL << 55, |
138 | MLX4_DEV_CAP_FLAG_PORT_MNG_CHG_EV = 1LL << 59, | ||
100 | }; | 139 | }; |
101 | 140 | ||
102 | enum { | 141 | enum { |
103 | MLX4_DEV_CAP_FLAG2_RSS = 1LL << 0, | 142 | MLX4_DEV_CAP_FLAG2_RSS = 1LL << 0, |
104 | MLX4_DEV_CAP_FLAG2_RSS_TOP = 1LL << 1, | 143 | MLX4_DEV_CAP_FLAG2_RSS_TOP = 1LL << 1, |
105 | MLX4_DEV_CAP_FLAG2_RSS_XOR = 1LL << 2 | 144 | MLX4_DEV_CAP_FLAG2_RSS_XOR = 1LL << 2, |
145 | MLX4_DEV_CAP_FLAG2_FS_EN = 1LL << 3 | ||
106 | }; | 146 | }; |
107 | 147 | ||
108 | #define MLX4_ATTR_EXTENDED_PORT_INFO cpu_to_be16(0xff90) | 148 | #define MLX4_ATTR_EXTENDED_PORT_INFO cpu_to_be16(0xff90) |
@@ -138,6 +178,7 @@ enum mlx4_event { | |||
138 | MLX4_EVENT_TYPE_COMM_CHANNEL = 0x18, | 178 | MLX4_EVENT_TYPE_COMM_CHANNEL = 0x18, |
139 | MLX4_EVENT_TYPE_FATAL_WARNING = 0x1b, | 179 | MLX4_EVENT_TYPE_FATAL_WARNING = 0x1b, |
140 | MLX4_EVENT_TYPE_FLR_EVENT = 0x1c, | 180 | MLX4_EVENT_TYPE_FLR_EVENT = 0x1c, |
181 | MLX4_EVENT_TYPE_PORT_MNG_CHG_EVENT = 0x1d, | ||
141 | MLX4_EVENT_TYPE_NONE = 0xff, | 182 | MLX4_EVENT_TYPE_NONE = 0xff, |
142 | }; | 183 | }; |
143 | 184 | ||
@@ -235,12 +276,32 @@ enum { | |||
235 | MLX4_MAX_FAST_REG_PAGES = 511, | 276 | MLX4_MAX_FAST_REG_PAGES = 511, |
236 | }; | 277 | }; |
237 | 278 | ||
279 | enum { | ||
280 | MLX4_DEV_PMC_SUBTYPE_GUID_INFO = 0x14, | ||
281 | MLX4_DEV_PMC_SUBTYPE_PORT_INFO = 0x15, | ||
282 | MLX4_DEV_PMC_SUBTYPE_PKEY_TABLE = 0x16, | ||
283 | }; | ||
284 | |||
285 | /* Port mgmt change event handling */ | ||
286 | enum { | ||
287 | MLX4_EQ_PORT_INFO_MSTR_SM_LID_CHANGE_MASK = 1 << 0, | ||
288 | MLX4_EQ_PORT_INFO_GID_PFX_CHANGE_MASK = 1 << 1, | ||
289 | MLX4_EQ_PORT_INFO_LID_CHANGE_MASK = 1 << 2, | ||
290 | MLX4_EQ_PORT_INFO_CLIENT_REREG_MASK = 1 << 3, | ||
291 | MLX4_EQ_PORT_INFO_MSTR_SM_SL_CHANGE_MASK = 1 << 4, | ||
292 | }; | ||
293 | |||
294 | #define MSTR_SM_CHANGE_MASK (MLX4_EQ_PORT_INFO_MSTR_SM_SL_CHANGE_MASK | \ | ||
295 | MLX4_EQ_PORT_INFO_MSTR_SM_LID_CHANGE_MASK) | ||
296 | |||
238 | static inline u64 mlx4_fw_ver(u64 major, u64 minor, u64 subminor) | 297 | static inline u64 mlx4_fw_ver(u64 major, u64 minor, u64 subminor) |
239 | { | 298 | { |
240 | return (major << 32) | (minor << 16) | subminor; | 299 | return (major << 32) | (minor << 16) | subminor; |
241 | } | 300 | } |
242 | 301 | ||
243 | struct mlx4_phys_caps { | 302 | struct mlx4_phys_caps { |
303 | u32 gid_phys_table_len[MLX4_MAX_PORTS + 1]; | ||
304 | u32 pkey_phys_table_len[MLX4_MAX_PORTS + 1]; | ||
244 | u32 num_phys_eqs; | 305 | u32 num_phys_eqs; |
245 | }; | 306 | }; |
246 | 307 | ||
@@ -273,6 +334,8 @@ struct mlx4_caps { | |||
273 | int max_qp_init_rdma; | 334 | int max_qp_init_rdma; |
274 | int max_qp_dest_rdma; | 335 | int max_qp_dest_rdma; |
275 | int sqp_start; | 336 | int sqp_start; |
337 | u32 base_sqpn; | ||
338 | u32 base_tunnel_sqpn; | ||
276 | int num_srqs; | 339 | int num_srqs; |
277 | int max_srq_wqes; | 340 | int max_srq_wqes; |
278 | int max_srq_sge; | 341 | int max_srq_sge; |
@@ -295,6 +358,8 @@ struct mlx4_caps { | |||
295 | int num_amgms; | 358 | int num_amgms; |
296 | int reserved_mcgs; | 359 | int reserved_mcgs; |
297 | int num_qp_per_mgm; | 360 | int num_qp_per_mgm; |
361 | int steering_mode; | ||
362 | int fs_log_max_ucast_qp_range_size; | ||
298 | int num_pds; | 363 | int num_pds; |
299 | int reserved_pds; | 364 | int reserved_pds; |
300 | int max_xrcds; | 365 | int max_xrcds; |
@@ -509,8 +574,85 @@ struct mlx4_dev { | |||
509 | u8 rev_id; | 574 | u8 rev_id; |
510 | char board_id[MLX4_BOARD_ID_LEN]; | 575 | char board_id[MLX4_BOARD_ID_LEN]; |
511 | int num_vfs; | 576 | int num_vfs; |
577 | u64 regid_promisc_array[MLX4_MAX_PORTS + 1]; | ||
578 | u64 regid_allmulti_array[MLX4_MAX_PORTS + 1]; | ||
512 | }; | 579 | }; |
513 | 580 | ||
581 | struct mlx4_eqe { | ||
582 | u8 reserved1; | ||
583 | u8 type; | ||
584 | u8 reserved2; | ||
585 | u8 subtype; | ||
586 | union { | ||
587 | u32 raw[6]; | ||
588 | struct { | ||
589 | __be32 cqn; | ||
590 | } __packed comp; | ||
591 | struct { | ||
592 | u16 reserved1; | ||
593 | __be16 token; | ||
594 | u32 reserved2; | ||
595 | u8 reserved3[3]; | ||
596 | u8 status; | ||
597 | __be64 out_param; | ||
598 | } __packed cmd; | ||
599 | struct { | ||
600 | __be32 qpn; | ||
601 | } __packed qp; | ||
602 | struct { | ||
603 | __be32 srqn; | ||
604 | } __packed srq; | ||
605 | struct { | ||
606 | __be32 cqn; | ||
607 | u32 reserved1; | ||
608 | u8 reserved2[3]; | ||
609 | u8 syndrome; | ||
610 | } __packed cq_err; | ||
611 | struct { | ||
612 | u32 reserved1[2]; | ||
613 | __be32 port; | ||
614 | } __packed port_change; | ||
615 | struct { | ||
616 | #define COMM_CHANNEL_BIT_ARRAY_SIZE 4 | ||
617 | u32 reserved; | ||
618 | u32 bit_vec[COMM_CHANNEL_BIT_ARRAY_SIZE]; | ||
619 | } __packed comm_channel_arm; | ||
620 | struct { | ||
621 | u8 port; | ||
622 | u8 reserved[3]; | ||
623 | __be64 mac; | ||
624 | } __packed mac_update; | ||
625 | struct { | ||
626 | __be32 slave_id; | ||
627 | } __packed flr_event; | ||
628 | struct { | ||
629 | __be16 current_temperature; | ||
630 | __be16 warning_threshold; | ||
631 | } __packed warming; | ||
632 | struct { | ||
633 | u8 reserved[3]; | ||
634 | u8 port; | ||
635 | union { | ||
636 | struct { | ||
637 | __be16 mstr_sm_lid; | ||
638 | __be16 port_lid; | ||
639 | __be32 changed_attr; | ||
640 | u8 reserved[3]; | ||
641 | u8 mstr_sm_sl; | ||
642 | __be64 gid_prefix; | ||
643 | } __packed port_info; | ||
644 | struct { | ||
645 | __be32 block_ptr; | ||
646 | __be32 tbl_entries_mask; | ||
647 | } __packed tbl_change_info; | ||
648 | } params; | ||
649 | } __packed port_mgmt_change; | ||
650 | } event; | ||
651 | u8 slave_id; | ||
652 | u8 reserved3[2]; | ||
653 | u8 owner; | ||
654 | } __packed; | ||
655 | |||
514 | struct mlx4_init_port_param { | 656 | struct mlx4_init_port_param { |
515 | int set_guid0; | 657 | int set_guid0; |
516 | int set_node_guid; | 658 | int set_node_guid; |
@@ -534,6 +676,15 @@ struct mlx4_init_port_param { | |||
534 | if (((dev)->caps.port_mask[port] == MLX4_PORT_TYPE_IB) || \ | 676 | if (((dev)->caps.port_mask[port] == MLX4_PORT_TYPE_IB) || \ |
535 | ((dev)->caps.flags & MLX4_DEV_CAP_FLAG_IBOE)) | 677 | ((dev)->caps.flags & MLX4_DEV_CAP_FLAG_IBOE)) |
536 | 678 | ||
679 | #define MLX4_INVALID_SLAVE_ID 0xFF | ||
680 | |||
681 | void handle_port_mgmt_change_event(struct work_struct *work); | ||
682 | |||
683 | static inline int mlx4_master_func_num(struct mlx4_dev *dev) | ||
684 | { | ||
685 | return dev->caps.function; | ||
686 | } | ||
687 | |||
537 | static inline int mlx4_is_master(struct mlx4_dev *dev) | 688 | static inline int mlx4_is_master(struct mlx4_dev *dev) |
538 | { | 689 | { |
539 | return dev->flags & MLX4_FLAG_MASTER; | 690 | return dev->flags & MLX4_FLAG_MASTER; |
@@ -623,9 +774,99 @@ int mlx4_unicast_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], | |||
623 | int mlx4_unicast_detach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], | 774 | int mlx4_unicast_detach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], |
624 | enum mlx4_protocol prot); | 775 | enum mlx4_protocol prot); |
625 | int mlx4_multicast_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], | 776 | int mlx4_multicast_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], |
626 | int block_mcast_loopback, enum mlx4_protocol protocol); | 777 | u8 port, int block_mcast_loopback, |
778 | enum mlx4_protocol protocol, u64 *reg_id); | ||
627 | int mlx4_multicast_detach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], | 779 | int mlx4_multicast_detach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], |
628 | enum mlx4_protocol protocol); | 780 | enum mlx4_protocol protocol, u64 reg_id); |
781 | |||
782 | enum { | ||
783 | MLX4_DOMAIN_UVERBS = 0x1000, | ||
784 | MLX4_DOMAIN_ETHTOOL = 0x2000, | ||
785 | MLX4_DOMAIN_RFS = 0x3000, | ||
786 | MLX4_DOMAIN_NIC = 0x5000, | ||
787 | }; | ||
788 | |||
789 | enum mlx4_net_trans_rule_id { | ||
790 | MLX4_NET_TRANS_RULE_ID_ETH = 0, | ||
791 | MLX4_NET_TRANS_RULE_ID_IB, | ||
792 | MLX4_NET_TRANS_RULE_ID_IPV6, | ||
793 | MLX4_NET_TRANS_RULE_ID_IPV4, | ||
794 | MLX4_NET_TRANS_RULE_ID_TCP, | ||
795 | MLX4_NET_TRANS_RULE_ID_UDP, | ||
796 | MLX4_NET_TRANS_RULE_NUM, /* should be last */ | ||
797 | }; | ||
798 | |||
799 | enum mlx4_net_trans_promisc_mode { | ||
800 | MLX4_FS_PROMISC_NONE = 0, | ||
801 | MLX4_FS_PROMISC_UPLINK, | ||
802 | /* For future use. Not implemented yet */ | ||
803 | MLX4_FS_PROMISC_FUNCTION_PORT, | ||
804 | MLX4_FS_PROMISC_ALL_MULTI, | ||
805 | }; | ||
806 | |||
807 | struct mlx4_spec_eth { | ||
808 | u8 dst_mac[6]; | ||
809 | u8 dst_mac_msk[6]; | ||
810 | u8 src_mac[6]; | ||
811 | u8 src_mac_msk[6]; | ||
812 | u8 ether_type_enable; | ||
813 | __be16 ether_type; | ||
814 | __be16 vlan_id_msk; | ||
815 | __be16 vlan_id; | ||
816 | }; | ||
817 | |||
818 | struct mlx4_spec_tcp_udp { | ||
819 | __be16 dst_port; | ||
820 | __be16 dst_port_msk; | ||
821 | __be16 src_port; | ||
822 | __be16 src_port_msk; | ||
823 | }; | ||
824 | |||
825 | struct mlx4_spec_ipv4 { | ||
826 | __be32 dst_ip; | ||
827 | __be32 dst_ip_msk; | ||
828 | __be32 src_ip; | ||
829 | __be32 src_ip_msk; | ||
830 | }; | ||
831 | |||
832 | struct mlx4_spec_ib { | ||
833 | __be32 r_qpn; | ||
834 | __be32 qpn_msk; | ||
835 | u8 dst_gid[16]; | ||
836 | u8 dst_gid_msk[16]; | ||
837 | }; | ||
838 | |||
839 | struct mlx4_spec_list { | ||
840 | struct list_head list; | ||
841 | enum mlx4_net_trans_rule_id id; | ||
842 | union { | ||
843 | struct mlx4_spec_eth eth; | ||
844 | struct mlx4_spec_ib ib; | ||
845 | struct mlx4_spec_ipv4 ipv4; | ||
846 | struct mlx4_spec_tcp_udp tcp_udp; | ||
847 | }; | ||
848 | }; | ||
849 | |||
850 | enum mlx4_net_trans_hw_rule_queue { | ||
851 | MLX4_NET_TRANS_Q_FIFO, | ||
852 | MLX4_NET_TRANS_Q_LIFO, | ||
853 | }; | ||
854 | |||
855 | struct mlx4_net_trans_rule { | ||
856 | struct list_head list; | ||
857 | enum mlx4_net_trans_hw_rule_queue queue_mode; | ||
858 | bool exclusive; | ||
859 | bool allow_loopback; | ||
860 | enum mlx4_net_trans_promisc_mode promisc_mode; | ||
861 | u8 port; | ||
862 | u16 priority; | ||
863 | u32 qpn; | ||
864 | }; | ||
865 | |||
866 | int mlx4_flow_steer_promisc_add(struct mlx4_dev *dev, u8 port, u32 qpn, | ||
867 | enum mlx4_net_trans_promisc_mode mode); | ||
868 | int mlx4_flow_steer_promisc_remove(struct mlx4_dev *dev, u8 port, | ||
869 | enum mlx4_net_trans_promisc_mode mode); | ||
629 | int mlx4_multicast_promisc_add(struct mlx4_dev *dev, u32 qpn, u8 port); | 870 | int mlx4_multicast_promisc_add(struct mlx4_dev *dev, u32 qpn, u8 port); |
630 | int mlx4_multicast_promisc_remove(struct mlx4_dev *dev, u32 qpn, u8 port); | 871 | int mlx4_multicast_promisc_remove(struct mlx4_dev *dev, u32 qpn, u8 port); |
631 | int mlx4_unicast_promisc_add(struct mlx4_dev *dev, u32 qpn, u8 port); | 872 | int mlx4_unicast_promisc_add(struct mlx4_dev *dev, u32 qpn, u8 port); |
@@ -659,7 +900,8 @@ void mlx4_fmr_unmap(struct mlx4_dev *dev, struct mlx4_fmr *fmr, | |||
659 | int mlx4_fmr_free(struct mlx4_dev *dev, struct mlx4_fmr *fmr); | 900 | int mlx4_fmr_free(struct mlx4_dev *dev, struct mlx4_fmr *fmr); |
660 | int mlx4_SYNC_TPT(struct mlx4_dev *dev); | 901 | int mlx4_SYNC_TPT(struct mlx4_dev *dev); |
661 | int mlx4_test_interrupts(struct mlx4_dev *dev); | 902 | int mlx4_test_interrupts(struct mlx4_dev *dev); |
662 | int mlx4_assign_eq(struct mlx4_dev *dev, char* name , int* vector); | 903 | int mlx4_assign_eq(struct mlx4_dev *dev, char *name, struct cpu_rmap *rmap, |
904 | int *vector); | ||
663 | void mlx4_release_eq(struct mlx4_dev *dev, int vec); | 905 | void mlx4_release_eq(struct mlx4_dev *dev, int vec); |
664 | 906 | ||
665 | int mlx4_wol_read(struct mlx4_dev *dev, u64 *config, int port); | 907 | int mlx4_wol_read(struct mlx4_dev *dev, u64 *config, int port); |
@@ -668,4 +910,10 @@ int mlx4_wol_write(struct mlx4_dev *dev, u64 config, int port); | |||
668 | int mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx); | 910 | int mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx); |
669 | void mlx4_counter_free(struct mlx4_dev *dev, u32 idx); | 911 | void mlx4_counter_free(struct mlx4_dev *dev, u32 idx); |
670 | 912 | ||
913 | int mlx4_flow_attach(struct mlx4_dev *dev, | ||
914 | struct mlx4_net_trans_rule *rule, u64 *reg_id); | ||
915 | int mlx4_flow_detach(struct mlx4_dev *dev, u64 reg_id); | ||
916 | |||
917 | int mlx4_get_parav_qkey(struct mlx4_dev *dev, u32 qpn, u32 *qkey); | ||
918 | |||
671 | #endif /* MLX4_DEVICE_H */ | 919 | #endif /* MLX4_DEVICE_H */ |
diff --git a/include/linux/mlx4/driver.h b/include/linux/mlx4/driver.h index 5f1298b1b5ef..d813704b963b 100644 --- a/include/linux/mlx4/driver.h +++ b/include/linux/mlx4/driver.h | |||
@@ -37,18 +37,21 @@ | |||
37 | 37 | ||
38 | struct mlx4_dev; | 38 | struct mlx4_dev; |
39 | 39 | ||
40 | #define MLX4_MAC_MASK 0xffffffffffffULL | ||
41 | |||
40 | enum mlx4_dev_event { | 42 | enum mlx4_dev_event { |
41 | MLX4_DEV_EVENT_CATASTROPHIC_ERROR, | 43 | MLX4_DEV_EVENT_CATASTROPHIC_ERROR, |
42 | MLX4_DEV_EVENT_PORT_UP, | 44 | MLX4_DEV_EVENT_PORT_UP, |
43 | MLX4_DEV_EVENT_PORT_DOWN, | 45 | MLX4_DEV_EVENT_PORT_DOWN, |
44 | MLX4_DEV_EVENT_PORT_REINIT, | 46 | MLX4_DEV_EVENT_PORT_REINIT, |
47 | MLX4_DEV_EVENT_PORT_MGMT_CHANGE, | ||
45 | }; | 48 | }; |
46 | 49 | ||
47 | struct mlx4_interface { | 50 | struct mlx4_interface { |
48 | void * (*add) (struct mlx4_dev *dev); | 51 | void * (*add) (struct mlx4_dev *dev); |
49 | void (*remove)(struct mlx4_dev *dev, void *context); | 52 | void (*remove)(struct mlx4_dev *dev, void *context); |
50 | void (*event) (struct mlx4_dev *dev, void *context, | 53 | void (*event) (struct mlx4_dev *dev, void *context, |
51 | enum mlx4_dev_event event, int port); | 54 | enum mlx4_dev_event event, unsigned long param); |
52 | void * (*get_dev)(struct mlx4_dev *dev, void *context, u8 port); | 55 | void * (*get_dev)(struct mlx4_dev *dev, void *context, u8 port); |
53 | struct list_head list; | 56 | struct list_head list; |
54 | enum mlx4_protocol protocol; | 57 | enum mlx4_protocol protocol; |
diff --git a/include/linux/mm.h b/include/linux/mm.h index b36d08ce5c57..f9f279cf5b1b 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -1591,6 +1591,7 @@ void vmemmap_populate_print_last(void); | |||
1591 | enum mf_flags { | 1591 | enum mf_flags { |
1592 | MF_COUNT_INCREASED = 1 << 0, | 1592 | MF_COUNT_INCREASED = 1 << 0, |
1593 | MF_ACTION_REQUIRED = 1 << 1, | 1593 | MF_ACTION_REQUIRED = 1 << 1, |
1594 | MF_MUST_KILL = 1 << 2, | ||
1594 | }; | 1595 | }; |
1595 | extern int memory_failure(unsigned long pfn, int trapno, int flags); | 1596 | extern int memory_failure(unsigned long pfn, int trapno, int flags); |
1596 | extern void memory_failure_queue(unsigned long pfn, int trapno, int flags); | 1597 | extern void memory_failure_queue(unsigned long pfn, int trapno, int flags); |
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index dad95bdd06d7..074eb98fe15d 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h | |||
@@ -53,12 +53,22 @@ struct page { | |||
53 | struct { | 53 | struct { |
54 | union { | 54 | union { |
55 | pgoff_t index; /* Our offset within mapping. */ | 55 | pgoff_t index; /* Our offset within mapping. */ |
56 | void *freelist; /* slub first free object */ | 56 | void *freelist; /* slub/slob first free object */ |
57 | }; | 57 | }; |
58 | 58 | ||
59 | union { | 59 | union { |
60 | #if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \ | ||
61 | defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE) | ||
60 | /* Used for cmpxchg_double in slub */ | 62 | /* Used for cmpxchg_double in slub */ |
61 | unsigned long counters; | 63 | unsigned long counters; |
64 | #else | ||
65 | /* | ||
66 | * Keep _count separate from slub cmpxchg_double data. | ||
67 | * As the rest of the double word is protected by | ||
68 | * slab_lock but _count is not. | ||
69 | */ | ||
70 | unsigned counters; | ||
71 | #endif | ||
62 | 72 | ||
63 | struct { | 73 | struct { |
64 | 74 | ||
@@ -81,11 +91,12 @@ struct page { | |||
81 | */ | 91 | */ |
82 | atomic_t _mapcount; | 92 | atomic_t _mapcount; |
83 | 93 | ||
84 | struct { | 94 | struct { /* SLUB */ |
85 | unsigned inuse:16; | 95 | unsigned inuse:16; |
86 | unsigned objects:15; | 96 | unsigned objects:15; |
87 | unsigned frozen:1; | 97 | unsigned frozen:1; |
88 | }; | 98 | }; |
99 | int units; /* SLOB */ | ||
89 | }; | 100 | }; |
90 | atomic_t _count; /* Usage count, see below. */ | 101 | atomic_t _count; /* Usage count, see below. */ |
91 | }; | 102 | }; |
@@ -107,6 +118,12 @@ struct page { | |||
107 | short int pobjects; | 118 | short int pobjects; |
108 | #endif | 119 | #endif |
109 | }; | 120 | }; |
121 | |||
122 | struct list_head list; /* slobs list of pages */ | ||
123 | struct { /* slab fields */ | ||
124 | struct kmem_cache *slab_cache; | ||
125 | struct slab *slab_page; | ||
126 | }; | ||
110 | }; | 127 | }; |
111 | 128 | ||
112 | /* Remainder is not double word aligned */ | 129 | /* Remainder is not double word aligned */ |
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h index d76513b5b263..111aca5e97f3 100644 --- a/include/linux/mmc/card.h +++ b/include/linux/mmc/card.h | |||
@@ -149,6 +149,7 @@ struct sd_switch_caps { | |||
149 | #define SD_SET_CURRENT_LIMIT_400 1 | 149 | #define SD_SET_CURRENT_LIMIT_400 1 |
150 | #define SD_SET_CURRENT_LIMIT_600 2 | 150 | #define SD_SET_CURRENT_LIMIT_600 2 |
151 | #define SD_SET_CURRENT_LIMIT_800 3 | 151 | #define SD_SET_CURRENT_LIMIT_800 3 |
152 | #define SD_SET_CURRENT_NO_CHANGE (-1) | ||
152 | 153 | ||
153 | #define SD_MAX_CURRENT_200 (1 << SD_SET_CURRENT_LIMIT_200) | 154 | #define SD_MAX_CURRENT_200 (1 << SD_SET_CURRENT_LIMIT_200) |
154 | #define SD_MAX_CURRENT_400 (1 << SD_SET_CURRENT_LIMIT_400) | 155 | #define SD_MAX_CURRENT_400 (1 << SD_SET_CURRENT_LIMIT_400) |
diff --git a/include/linux/mmc/cd-gpio.h b/include/linux/mmc/cd-gpio.h deleted file mode 100644 index cefaba038ccb..000000000000 --- a/include/linux/mmc/cd-gpio.h +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | /* | ||
2 | * Generic GPIO card-detect helper header | ||
3 | * | ||
4 | * Copyright (C) 2011, Guennadi Liakhovetski <g.liakhovetski@gmx.de> | ||
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 | |||
11 | #ifndef MMC_CD_GPIO_H | ||
12 | #define MMC_CD_GPIO_H | ||
13 | |||
14 | struct mmc_host; | ||
15 | int mmc_cd_gpio_request(struct mmc_host *host, unsigned int gpio); | ||
16 | void mmc_cd_gpio_free(struct mmc_host *host); | ||
17 | |||
18 | #endif | ||
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 0707d228d7f1..f578a71d82a6 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h | |||
@@ -11,6 +11,7 @@ | |||
11 | #define LINUX_MMC_HOST_H | 11 | #define LINUX_MMC_HOST_H |
12 | 12 | ||
13 | #include <linux/leds.h> | 13 | #include <linux/leds.h> |
14 | #include <linux/mutex.h> | ||
14 | #include <linux/sched.h> | 15 | #include <linux/sched.h> |
15 | #include <linux/device.h> | 16 | #include <linux/device.h> |
16 | #include <linux/fault-inject.h> | 17 | #include <linux/fault-inject.h> |
@@ -150,11 +151,31 @@ struct mmc_async_req { | |||
150 | int (*err_check) (struct mmc_card *, struct mmc_async_req *); | 151 | int (*err_check) (struct mmc_card *, struct mmc_async_req *); |
151 | }; | 152 | }; |
152 | 153 | ||
153 | struct mmc_hotplug { | 154 | /** |
154 | unsigned int irq; | 155 | * struct mmc_slot - MMC slot functions |
156 | * | ||
157 | * @cd_irq: MMC/SD-card slot hotplug detection IRQ or -EINVAL | ||
158 | * @lock: protect the @handler_priv pointer | ||
159 | * @handler_priv: MMC/SD-card slot context | ||
160 | * | ||
161 | * Some MMC/SD host controllers implement slot-functions like card and | ||
162 | * write-protect detection natively. However, a large number of controllers | ||
163 | * leave these functions to the CPU. This struct provides a hook to attach | ||
164 | * such slot-function drivers. | ||
165 | */ | ||
166 | struct mmc_slot { | ||
167 | int cd_irq; | ||
168 | struct mutex lock; | ||
155 | void *handler_priv; | 169 | void *handler_priv; |
156 | }; | 170 | }; |
157 | 171 | ||
172 | struct regulator; | ||
173 | |||
174 | struct mmc_supply { | ||
175 | struct regulator *vmmc; /* Card power supply */ | ||
176 | struct regulator *vqmmc; /* Optional Vccq supply */ | ||
177 | }; | ||
178 | |||
158 | struct mmc_host { | 179 | struct mmc_host { |
159 | struct device *parent; | 180 | struct device *parent; |
160 | struct device class_dev; | 181 | struct device class_dev; |
@@ -168,6 +189,9 @@ struct mmc_host { | |||
168 | u32 ocr_avail_sd; /* SD-specific OCR */ | 189 | u32 ocr_avail_sd; /* SD-specific OCR */ |
169 | u32 ocr_avail_mmc; /* MMC-specific OCR */ | 190 | u32 ocr_avail_mmc; /* MMC-specific OCR */ |
170 | struct notifier_block pm_notify; | 191 | struct notifier_block pm_notify; |
192 | u32 max_current_330; | ||
193 | u32 max_current_300; | ||
194 | u32 max_current_180; | ||
171 | 195 | ||
172 | #define MMC_VDD_165_195 0x00000080 /* VDD voltage 1.65 - 1.95 */ | 196 | #define MMC_VDD_165_195 0x00000080 /* VDD voltage 1.65 - 1.95 */ |
173 | #define MMC_VDD_20_21 0x00000100 /* VDD voltage 2.0 ~ 2.1 */ | 197 | #define MMC_VDD_20_21 0x00000100 /* VDD voltage 2.0 ~ 2.1 */ |
@@ -211,16 +235,9 @@ struct mmc_host { | |||
211 | #define MMC_CAP_UHS_SDR50 (1 << 17) /* Host supports UHS SDR50 mode */ | 235 | #define MMC_CAP_UHS_SDR50 (1 << 17) /* Host supports UHS SDR50 mode */ |
212 | #define MMC_CAP_UHS_SDR104 (1 << 18) /* Host supports UHS SDR104 mode */ | 236 | #define MMC_CAP_UHS_SDR104 (1 << 18) /* Host supports UHS SDR104 mode */ |
213 | #define MMC_CAP_UHS_DDR50 (1 << 19) /* Host supports UHS DDR50 mode */ | 237 | #define MMC_CAP_UHS_DDR50 (1 << 19) /* Host supports UHS DDR50 mode */ |
214 | #define MMC_CAP_SET_XPC_330 (1 << 20) /* Host supports >150mA current at 3.3V */ | ||
215 | #define MMC_CAP_SET_XPC_300 (1 << 21) /* Host supports >150mA current at 3.0V */ | ||
216 | #define MMC_CAP_SET_XPC_180 (1 << 22) /* Host supports >150mA current at 1.8V */ | ||
217 | #define MMC_CAP_DRIVER_TYPE_A (1 << 23) /* Host supports Driver Type A */ | 238 | #define MMC_CAP_DRIVER_TYPE_A (1 << 23) /* Host supports Driver Type A */ |
218 | #define MMC_CAP_DRIVER_TYPE_C (1 << 24) /* Host supports Driver Type C */ | 239 | #define MMC_CAP_DRIVER_TYPE_C (1 << 24) /* Host supports Driver Type C */ |
219 | #define MMC_CAP_DRIVER_TYPE_D (1 << 25) /* Host supports Driver Type D */ | 240 | #define MMC_CAP_DRIVER_TYPE_D (1 << 25) /* Host supports Driver Type D */ |
220 | #define MMC_CAP_MAX_CURRENT_200 (1 << 26) /* Host max current limit is 200mA */ | ||
221 | #define MMC_CAP_MAX_CURRENT_400 (1 << 27) /* Host max current limit is 400mA */ | ||
222 | #define MMC_CAP_MAX_CURRENT_600 (1 << 28) /* Host max current limit is 600mA */ | ||
223 | #define MMC_CAP_MAX_CURRENT_800 (1 << 29) /* Host max current limit is 800mA */ | ||
224 | #define MMC_CAP_CMD23 (1 << 30) /* CMD23 supported. */ | 241 | #define MMC_CAP_CMD23 (1 << 30) /* CMD23 supported. */ |
225 | #define MMC_CAP_HW_RESET (1 << 31) /* Hardware reset */ | 242 | #define MMC_CAP_HW_RESET (1 << 31) /* Hardware reset */ |
226 | 243 | ||
@@ -238,6 +255,8 @@ struct mmc_host { | |||
238 | #define MMC_CAP2_BROKEN_VOLTAGE (1 << 7) /* Use the broken voltage */ | 255 | #define MMC_CAP2_BROKEN_VOLTAGE (1 << 7) /* Use the broken voltage */ |
239 | #define MMC_CAP2_DETECT_ON_ERR (1 << 8) /* On I/O err check card removal */ | 256 | #define MMC_CAP2_DETECT_ON_ERR (1 << 8) /* On I/O err check card removal */ |
240 | #define MMC_CAP2_HC_ERASE_SZ (1 << 9) /* High-capacity erase size */ | 257 | #define MMC_CAP2_HC_ERASE_SZ (1 << 9) /* High-capacity erase size */ |
258 | #define MMC_CAP2_CD_ACTIVE_HIGH (1 << 10) /* Card-detect signal active high */ | ||
259 | #define MMC_CAP2_RO_ACTIVE_HIGH (1 << 11) /* Write-protect signal active high */ | ||
241 | 260 | ||
242 | mmc_pm_flag_t pm_caps; /* supported pm features */ | 261 | mmc_pm_flag_t pm_caps; /* supported pm features */ |
243 | unsigned int power_notify_type; | 262 | unsigned int power_notify_type; |
@@ -290,7 +309,7 @@ struct mmc_host { | |||
290 | 309 | ||
291 | struct delayed_work detect; | 310 | struct delayed_work detect; |
292 | int detect_change; /* card detect flag */ | 311 | int detect_change; /* card detect flag */ |
293 | struct mmc_hotplug hotplug; | 312 | struct mmc_slot slot; |
294 | 313 | ||
295 | const struct mmc_bus_ops *bus_ops; /* current bus driver */ | 314 | const struct mmc_bus_ops *bus_ops; /* current bus driver */ |
296 | unsigned int bus_refs; /* reference counter */ | 315 | unsigned int bus_refs; /* reference counter */ |
@@ -309,6 +328,7 @@ struct mmc_host { | |||
309 | #ifdef CONFIG_REGULATOR | 328 | #ifdef CONFIG_REGULATOR |
310 | bool regulator_enabled; /* regulator state */ | 329 | bool regulator_enabled; /* regulator state */ |
311 | #endif | 330 | #endif |
331 | struct mmc_supply supply; | ||
312 | 332 | ||
313 | struct dentry *debugfs_root; | 333 | struct dentry *debugfs_root; |
314 | 334 | ||
@@ -357,13 +377,12 @@ static inline void mmc_signal_sdio_irq(struct mmc_host *host) | |||
357 | wake_up_process(host->sdio_irq_thread); | 377 | wake_up_process(host->sdio_irq_thread); |
358 | } | 378 | } |
359 | 379 | ||
360 | struct regulator; | ||
361 | |||
362 | #ifdef CONFIG_REGULATOR | 380 | #ifdef CONFIG_REGULATOR |
363 | int mmc_regulator_get_ocrmask(struct regulator *supply); | 381 | int mmc_regulator_get_ocrmask(struct regulator *supply); |
364 | int mmc_regulator_set_ocr(struct mmc_host *mmc, | 382 | int mmc_regulator_set_ocr(struct mmc_host *mmc, |
365 | struct regulator *supply, | 383 | struct regulator *supply, |
366 | unsigned short vdd_bit); | 384 | unsigned short vdd_bit); |
385 | int mmc_regulator_get_supply(struct mmc_host *mmc); | ||
367 | #else | 386 | #else |
368 | static inline int mmc_regulator_get_ocrmask(struct regulator *supply) | 387 | static inline int mmc_regulator_get_ocrmask(struct regulator *supply) |
369 | { | 388 | { |
@@ -376,6 +395,11 @@ static inline int mmc_regulator_set_ocr(struct mmc_host *mmc, | |||
376 | { | 395 | { |
377 | return 0; | 396 | return 0; |
378 | } | 397 | } |
398 | |||
399 | static inline int mmc_regulator_get_supply(struct mmc_host *mmc) | ||
400 | { | ||
401 | return 0; | ||
402 | } | ||
379 | #endif | 403 | #endif |
380 | 404 | ||
381 | int mmc_card_awake(struct mmc_host *host); | 405 | int mmc_card_awake(struct mmc_host *host); |
diff --git a/include/linux/mmc/sdhci-spear.h b/include/linux/mmc/sdhci-spear.h index 5cdc96da9dd5..e78c0e236e9d 100644 --- a/include/linux/mmc/sdhci-spear.h +++ b/include/linux/mmc/sdhci-spear.h | |||
@@ -4,7 +4,7 @@ | |||
4 | * SDHCI declarations specific to ST SPEAr platform | 4 | * SDHCI declarations specific to ST SPEAr platform |
5 | * | 5 | * |
6 | * Copyright (C) 2010 ST Microelectronics | 6 | * Copyright (C) 2010 ST Microelectronics |
7 | * Viresh Kumar<viresh.kumar@st.com> | 7 | * Viresh Kumar <viresh.linux@gmail.com> |
8 | * | 8 | * |
9 | * This file is licensed under the terms of the GNU General Public | 9 | * This file is licensed under the terms of the GNU General Public |
10 | * License version 2. This program is licensed "as is" without any | 10 | * License version 2. This program is licensed "as is" without any |
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h index e9051e1cb1ce..ac83b105bedd 100644 --- a/include/linux/mmc/sdhci.h +++ b/include/linux/mmc/sdhci.h | |||
@@ -122,6 +122,7 @@ struct sdhci_host { | |||
122 | #define SDHCI_PV_ENABLED (1<<8) /* Preset value enabled */ | 122 | #define SDHCI_PV_ENABLED (1<<8) /* Preset value enabled */ |
123 | #define SDHCI_SDIO_IRQ_ENABLED (1<<9) /* SDIO irq enabled */ | 123 | #define SDHCI_SDIO_IRQ_ENABLED (1<<9) /* SDIO irq enabled */ |
124 | #define SDHCI_HS200_NEEDS_TUNING (1<<10) /* HS200 needs tuning */ | 124 | #define SDHCI_HS200_NEEDS_TUNING (1<<10) /* HS200 needs tuning */ |
125 | #define SDHCI_USING_RETUNING_TIMER (1<<11) /* Host is using a retuning timer for the card */ | ||
125 | 126 | ||
126 | unsigned int version; /* SDHCI spec. version */ | 127 | unsigned int version; /* SDHCI spec. version */ |
127 | 128 | ||
@@ -155,7 +156,8 @@ struct sdhci_host { | |||
155 | 156 | ||
156 | struct timer_list timer; /* Timer for timeouts */ | 157 | struct timer_list timer; /* Timer for timeouts */ |
157 | 158 | ||
158 | unsigned int caps; /* Alternative capabilities */ | 159 | unsigned int caps; /* Alternative CAPABILITY_0 */ |
160 | unsigned int caps1; /* Alternative CAPABILITY_1 */ | ||
159 | 161 | ||
160 | unsigned int ocr_avail_sdio; /* OCR bit masks */ | 162 | unsigned int ocr_avail_sdio; /* OCR bit masks */ |
161 | unsigned int ocr_avail_sd; | 163 | unsigned int ocr_avail_sd; |
diff --git a/include/linux/mmc/sh_mmcif.h b/include/linux/mmc/sh_mmcif.h index 05f0e3db1c12..e7d5dd67bb74 100644 --- a/include/linux/mmc/sh_mmcif.h +++ b/include/linux/mmc/sh_mmcif.h | |||
@@ -32,18 +32,14 @@ | |||
32 | * 1111 : Peripheral clock (sup_pclk set '1') | 32 | * 1111 : Peripheral clock (sup_pclk set '1') |
33 | */ | 33 | */ |
34 | 34 | ||
35 | struct sh_mmcif_dma { | ||
36 | struct sh_dmae_slave chan_priv_tx; | ||
37 | struct sh_dmae_slave chan_priv_rx; | ||
38 | }; | ||
39 | |||
40 | struct sh_mmcif_plat_data { | 35 | struct sh_mmcif_plat_data { |
41 | void (*set_pwr)(struct platform_device *pdev, int state); | 36 | void (*set_pwr)(struct platform_device *pdev, int state); |
42 | void (*down_pwr)(struct platform_device *pdev); | 37 | void (*down_pwr)(struct platform_device *pdev); |
43 | int (*get_cd)(struct platform_device *pdef); | 38 | int (*get_cd)(struct platform_device *pdef); |
44 | struct sh_mmcif_dma *dma; /* Deprecated. Instead */ | 39 | unsigned int slave_id_tx; /* embedded slave_id_[tr]x */ |
45 | unsigned int slave_id_tx; /* use embedded slave_id_[tr]x */ | ||
46 | unsigned int slave_id_rx; | 40 | unsigned int slave_id_rx; |
41 | bool use_cd_gpio : 1; | ||
42 | unsigned int cd_gpio; | ||
47 | u8 sup_pclk; /* 1 :SH7757, 0: SH7724/SH7372 */ | 43 | u8 sup_pclk; /* 1 :SH7757, 0: SH7724/SH7372 */ |
48 | unsigned long caps; | 44 | unsigned long caps; |
49 | u32 ocr; | 45 | u32 ocr; |
diff --git a/include/linux/mmc/sh_mobile_sdhi.h b/include/linux/mmc/sh_mobile_sdhi.h index e94e620aeddc..b65679ffa880 100644 --- a/include/linux/mmc/sh_mobile_sdhi.h +++ b/include/linux/mmc/sh_mobile_sdhi.h | |||
@@ -23,6 +23,7 @@ struct sh_mobile_sdhi_info { | |||
23 | int dma_slave_rx; | 23 | int dma_slave_rx; |
24 | unsigned long tmio_flags; | 24 | unsigned long tmio_flags; |
25 | unsigned long tmio_caps; | 25 | unsigned long tmio_caps; |
26 | unsigned long tmio_caps2; | ||
26 | u32 tmio_ocr_mask; /* available MMC voltages */ | 27 | u32 tmio_ocr_mask; /* available MMC voltages */ |
27 | unsigned int cd_gpio; | 28 | unsigned int cd_gpio; |
28 | struct tmio_mmc_data *pdata; | 29 | struct tmio_mmc_data *pdata; |
diff --git a/include/linux/mmc/slot-gpio.h b/include/linux/mmc/slot-gpio.h new file mode 100644 index 000000000000..7d88d27bfafa --- /dev/null +++ b/include/linux/mmc/slot-gpio.h | |||
@@ -0,0 +1,24 @@ | |||
1 | /* | ||
2 | * Generic GPIO card-detect helper header | ||
3 | * | ||
4 | * Copyright (C) 2011, Guennadi Liakhovetski <g.liakhovetski@gmx.de> | ||
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 | |||
11 | #ifndef MMC_SLOT_GPIO_H | ||
12 | #define MMC_SLOT_GPIO_H | ||
13 | |||
14 | struct mmc_host; | ||
15 | |||
16 | int mmc_gpio_get_ro(struct mmc_host *host); | ||
17 | int mmc_gpio_request_ro(struct mmc_host *host, unsigned int gpio); | ||
18 | void mmc_gpio_free_ro(struct mmc_host *host); | ||
19 | |||
20 | int mmc_gpio_get_cd(struct mmc_host *host); | ||
21 | int mmc_gpio_request_cd(struct mmc_host *host, unsigned int gpio); | ||
22 | void mmc_gpio_free_cd(struct mmc_host *host); | ||
23 | |||
24 | #endif | ||
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 2427706f78b4..458988bd55a1 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
@@ -188,7 +188,7 @@ static inline int is_unevictable_lru(enum lru_list lru) | |||
188 | struct zone_reclaim_stat { | 188 | struct zone_reclaim_stat { |
189 | /* | 189 | /* |
190 | * The pageout code in vmscan.c keeps track of how many of the | 190 | * The pageout code in vmscan.c keeps track of how many of the |
191 | * mem/swap backed and file backed pages are refeferenced. | 191 | * mem/swap backed and file backed pages are referenced. |
192 | * The higher the rotated/scanned ratio, the more valuable | 192 | * The higher the rotated/scanned ratio, the more valuable |
193 | * that cache is. | 193 | * that cache is. |
194 | * | 194 | * |
@@ -694,7 +694,7 @@ typedef struct pglist_data { | |||
694 | range, including holes */ | 694 | range, including holes */ |
695 | int node_id; | 695 | int node_id; |
696 | wait_queue_head_t kswapd_wait; | 696 | wait_queue_head_t kswapd_wait; |
697 | struct task_struct *kswapd; | 697 | struct task_struct *kswapd; /* Protected by lock_memory_hotplug() */ |
698 | int kswapd_max_order; | 698 | int kswapd_max_order; |
699 | enum zone_type classzone_idx; | 699 | enum zone_type classzone_idx; |
700 | } pg_data_t; | 700 | } pg_data_t; |
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 5db93821f9c7..6955045199b0 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h | |||
@@ -78,6 +78,9 @@ struct ieee1394_device_id { | |||
78 | * of a given interface; other interfaces may support other classes. | 78 | * of a given interface; other interfaces may support other classes. |
79 | * @bInterfaceSubClass: Subclass of interface; associated with bInterfaceClass. | 79 | * @bInterfaceSubClass: Subclass of interface; associated with bInterfaceClass. |
80 | * @bInterfaceProtocol: Protocol of interface; associated with bInterfaceClass. | 80 | * @bInterfaceProtocol: Protocol of interface; associated with bInterfaceClass. |
81 | * @bInterfaceNumber: Number of interface; composite devices may use | ||
82 | * fixed interface numbers to differentiate between vendor-specific | ||
83 | * interfaces. | ||
81 | * @driver_info: Holds information used by the driver. Usually it holds | 84 | * @driver_info: Holds information used by the driver. Usually it holds |
82 | * a pointer to a descriptor understood by the driver, or perhaps | 85 | * a pointer to a descriptor understood by the driver, or perhaps |
83 | * device flags. | 86 | * device flags. |
@@ -115,8 +118,12 @@ struct usb_device_id { | |||
115 | __u8 bInterfaceSubClass; | 118 | __u8 bInterfaceSubClass; |
116 | __u8 bInterfaceProtocol; | 119 | __u8 bInterfaceProtocol; |
117 | 120 | ||
121 | /* Used for vendor-specific interface matches */ | ||
122 | __u8 bInterfaceNumber; | ||
123 | |||
118 | /* not matched against */ | 124 | /* not matched against */ |
119 | kernel_ulong_t driver_info; | 125 | kernel_ulong_t driver_info |
126 | __attribute__((aligned(sizeof(kernel_ulong_t)))); | ||
120 | }; | 127 | }; |
121 | 128 | ||
122 | /* Some useful macros to use to create struct usb_device_id */ | 129 | /* Some useful macros to use to create struct usb_device_id */ |
@@ -130,6 +137,7 @@ struct usb_device_id { | |||
130 | #define USB_DEVICE_ID_MATCH_INT_CLASS 0x0080 | 137 | #define USB_DEVICE_ID_MATCH_INT_CLASS 0x0080 |
131 | #define USB_DEVICE_ID_MATCH_INT_SUBCLASS 0x0100 | 138 | #define USB_DEVICE_ID_MATCH_INT_SUBCLASS 0x0100 |
132 | #define USB_DEVICE_ID_MATCH_INT_PROTOCOL 0x0200 | 139 | #define USB_DEVICE_ID_MATCH_INT_PROTOCOL 0x0200 |
140 | #define USB_DEVICE_ID_MATCH_INT_NUMBER 0x0400 | ||
133 | 141 | ||
134 | #define HID_ANY_ID (~0) | 142 | #define HID_ANY_ID (~0) |
135 | #define HID_BUS_ANY 0xffff | 143 | #define HID_BUS_ANY 0xffff |
diff --git a/include/linux/mxsfb.h b/include/linux/mxsfb.h new file mode 100644 index 000000000000..f14943d55315 --- /dev/null +++ b/include/linux/mxsfb.h | |||
@@ -0,0 +1,49 @@ | |||
1 | /* | ||
2 | * This program is free software; you can redistribute it and/or | ||
3 | * modify it under the terms of the GNU General Public License | ||
4 | * as published by the Free Software Foundation; either version 2 | ||
5 | * of the License, or (at your option) any later version. | ||
6 | * This program is distributed in the hope that it will be useful, | ||
7 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
8 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
9 | * GNU General Public License for more details. | ||
10 | * | ||
11 | * You should have received a copy of the GNU General Public License | ||
12 | * along with this program; if not, write to the Free Software | ||
13 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
14 | * MA 02110-1301, USA. | ||
15 | */ | ||
16 | |||
17 | #ifndef __LINUX_MXSFB_H | ||
18 | #define __LINUX_MXSFB_H | ||
19 | |||
20 | #include <linux/fb.h> | ||
21 | |||
22 | #define STMLCDIF_8BIT 1 /** pixel data bus to the display is of 8 bit width */ | ||
23 | #define STMLCDIF_16BIT 0 /** pixel data bus to the display is of 16 bit width */ | ||
24 | #define STMLCDIF_18BIT 2 /** pixel data bus to the display is of 18 bit width */ | ||
25 | #define STMLCDIF_24BIT 3 /** pixel data bus to the display is of 24 bit width */ | ||
26 | |||
27 | #define FB_SYNC_DATA_ENABLE_HIGH_ACT (1 << 6) | ||
28 | #define FB_SYNC_DOTCLK_FAILING_ACT (1 << 7) /* failing/negtive edge sampling */ | ||
29 | |||
30 | struct mxsfb_platform_data { | ||
31 | struct fb_videomode *mode_list; | ||
32 | unsigned mode_count; | ||
33 | |||
34 | unsigned default_bpp; | ||
35 | |||
36 | unsigned dotclk_delay; /* refer manual HW_LCDIF_VDCTRL4 register */ | ||
37 | unsigned ld_intf_width; /* refer STMLCDIF_* macros */ | ||
38 | |||
39 | unsigned fb_size; /* Size of the video memory. If zero a | ||
40 | * default will be used | ||
41 | */ | ||
42 | unsigned long fb_phys; /* physical address for the video memory. If | ||
43 | * zero the framebuffer memory will be dynamically | ||
44 | * allocated. If specified,fb_size must also be specified. | ||
45 | * fb_phys must be unused by Linux. | ||
46 | */ | ||
47 | }; | ||
48 | |||
49 | #endif /* __LINUX_MXSFB_H */ | ||
diff --git a/include/linux/namei.h b/include/linux/namei.h index ffc02135c483..d2ef8b34b967 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h | |||
@@ -7,12 +7,6 @@ | |||
7 | 7 | ||
8 | struct vfsmount; | 8 | struct vfsmount; |
9 | 9 | ||
10 | struct open_intent { | ||
11 | int flags; | ||
12 | int create_mode; | ||
13 | struct file *file; | ||
14 | }; | ||
15 | |||
16 | enum { MAX_NESTED_LINKS = 8 }; | 10 | enum { MAX_NESTED_LINKS = 8 }; |
17 | 11 | ||
18 | struct nameidata { | 12 | struct nameidata { |
@@ -25,11 +19,6 @@ struct nameidata { | |||
25 | int last_type; | 19 | int last_type; |
26 | unsigned depth; | 20 | unsigned depth; |
27 | char *saved_names[MAX_NESTED_LINKS + 1]; | 21 | char *saved_names[MAX_NESTED_LINKS + 1]; |
28 | |||
29 | /* Intent data */ | ||
30 | union { | ||
31 | struct open_intent open; | ||
32 | } intent; | ||
33 | }; | 22 | }; |
34 | 23 | ||
35 | /* | 24 | /* |
@@ -78,13 +67,10 @@ extern int kern_path(const char *, unsigned, struct path *); | |||
78 | 67 | ||
79 | extern struct dentry *kern_path_create(int, const char *, struct path *, int); | 68 | extern struct dentry *kern_path_create(int, const char *, struct path *, int); |
80 | extern struct dentry *user_path_create(int, const char __user *, struct path *, int); | 69 | extern struct dentry *user_path_create(int, const char __user *, struct path *, int); |
81 | extern int kern_path_parent(const char *, struct nameidata *); | 70 | extern struct dentry *kern_path_locked(const char *, struct path *); |
82 | extern int vfs_path_lookup(struct dentry *, struct vfsmount *, | 71 | extern int vfs_path_lookup(struct dentry *, struct vfsmount *, |
83 | const char *, unsigned int, struct path *); | 72 | const char *, unsigned int, struct path *); |
84 | 73 | ||
85 | extern struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry, | ||
86 | int (*open)(struct inode *, struct file *)); | ||
87 | |||
88 | extern struct dentry *lookup_one_len(const char *, struct dentry *, int); | 74 | extern struct dentry *lookup_one_len(const char *, struct dentry *, int); |
89 | 75 | ||
90 | extern int follow_down_one(struct path *); | 76 | extern int follow_down_one(struct path *); |
@@ -94,6 +80,8 @@ extern int follow_up(struct path *); | |||
94 | extern struct dentry *lock_rename(struct dentry *, struct dentry *); | 80 | extern struct dentry *lock_rename(struct dentry *, struct dentry *); |
95 | extern void unlock_rename(struct dentry *, struct dentry *); | 81 | extern void unlock_rename(struct dentry *, struct dentry *); |
96 | 82 | ||
83 | extern void nd_jump_link(struct nameidata *nd, struct path *path); | ||
84 | |||
97 | static inline void nd_set_link(struct nameidata *nd, char *path) | 85 | static inline void nd_set_link(struct nameidata *nd, char *path) |
98 | { | 86 | { |
99 | nd->saved_names[nd->depth] = path; | 87 | nd->saved_names[nd->depth] = path; |
diff --git a/include/linux/net.h b/include/linux/net.h index e9ac2df079ba..99276c3dc89a 100644 --- a/include/linux/net.h +++ b/include/linux/net.h | |||
@@ -72,6 +72,7 @@ struct net; | |||
72 | #define SOCK_NOSPACE 2 | 72 | #define SOCK_NOSPACE 2 |
73 | #define SOCK_PASSCRED 3 | 73 | #define SOCK_PASSCRED 3 |
74 | #define SOCK_PASSSEC 4 | 74 | #define SOCK_PASSSEC 4 |
75 | #define SOCK_EXTERNALLY_ALLOCATED 5 | ||
75 | 76 | ||
76 | #ifndef ARCH_HAS_SOCKET_TYPES | 77 | #ifndef ARCH_HAS_SOCKET_TYPES |
77 | /** | 78 | /** |
@@ -247,6 +248,7 @@ extern int sock_recvmsg(struct socket *sock, struct msghdr *msg, | |||
247 | size_t size, int flags); | 248 | size_t size, int flags); |
248 | extern int sock_map_fd(struct socket *sock, int flags); | 249 | extern int sock_map_fd(struct socket *sock, int flags); |
249 | extern struct socket *sockfd_lookup(int fd, int *err); | 250 | extern struct socket *sockfd_lookup(int fd, int *err); |
251 | extern struct socket *sock_from_file(struct file *file, int *err); | ||
250 | #define sockfd_put(sock) fput(sock->file) | 252 | #define sockfd_put(sock) fput(sock->file) |
251 | extern int net_ratelimit(void); | 253 | extern int net_ratelimit(void); |
252 | 254 | ||
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index d94cb1431519..eb06e58bed0b 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -1046,10 +1046,9 @@ struct net_device { | |||
1046 | */ | 1046 | */ |
1047 | char name[IFNAMSIZ]; | 1047 | char name[IFNAMSIZ]; |
1048 | 1048 | ||
1049 | struct pm_qos_request pm_qos_req; | 1049 | /* device name hash chain, please keep it close to name[] */ |
1050 | |||
1051 | /* device name hash chain */ | ||
1052 | struct hlist_node name_hlist; | 1050 | struct hlist_node name_hlist; |
1051 | |||
1053 | /* snmp alias */ | 1052 | /* snmp alias */ |
1054 | char *ifalias; | 1053 | char *ifalias; |
1055 | 1054 | ||
@@ -1322,6 +1321,8 @@ struct net_device { | |||
1322 | 1321 | ||
1323 | /* group the device belongs to */ | 1322 | /* group the device belongs to */ |
1324 | int group; | 1323 | int group; |
1324 | |||
1325 | struct pm_qos_request pm_qos_req; | ||
1325 | }; | 1326 | }; |
1326 | #define to_net_dev(d) container_of(d, struct net_device, dev) | 1327 | #define to_net_dev(d) container_of(d, struct net_device, dev) |
1327 | 1328 | ||
@@ -1626,6 +1627,7 @@ extern int dev_alloc_name(struct net_device *dev, const char *name); | |||
1626 | extern int dev_open(struct net_device *dev); | 1627 | extern int dev_open(struct net_device *dev); |
1627 | extern int dev_close(struct net_device *dev); | 1628 | extern int dev_close(struct net_device *dev); |
1628 | extern void dev_disable_lro(struct net_device *dev); | 1629 | extern void dev_disable_lro(struct net_device *dev); |
1630 | extern int dev_loopback_xmit(struct sk_buff *newskb); | ||
1629 | extern int dev_queue_xmit(struct sk_buff *skb); | 1631 | extern int dev_queue_xmit(struct sk_buff *skb); |
1630 | extern int register_netdevice(struct net_device *dev); | 1632 | extern int register_netdevice(struct net_device *dev); |
1631 | extern void unregister_netdevice_queue(struct net_device *dev, | 1633 | extern void unregister_netdevice_queue(struct net_device *dev, |
@@ -2108,7 +2110,12 @@ static inline int netif_set_real_num_rx_queues(struct net_device *dev, | |||
2108 | static inline int netif_copy_real_num_queues(struct net_device *to_dev, | 2110 | static inline int netif_copy_real_num_queues(struct net_device *to_dev, |
2109 | const struct net_device *from_dev) | 2111 | const struct net_device *from_dev) |
2110 | { | 2112 | { |
2111 | netif_set_real_num_tx_queues(to_dev, from_dev->real_num_tx_queues); | 2113 | int err; |
2114 | |||
2115 | err = netif_set_real_num_tx_queues(to_dev, | ||
2116 | from_dev->real_num_tx_queues); | ||
2117 | if (err) | ||
2118 | return err; | ||
2112 | #ifdef CONFIG_RPS | 2119 | #ifdef CONFIG_RPS |
2113 | return netif_set_real_num_rx_queues(to_dev, | 2120 | return netif_set_real_num_rx_queues(to_dev, |
2114 | from_dev->real_num_rx_queues); | 2121 | from_dev->real_num_rx_queues); |
@@ -2117,6 +2124,9 @@ static inline int netif_copy_real_num_queues(struct net_device *to_dev, | |||
2117 | #endif | 2124 | #endif |
2118 | } | 2125 | } |
2119 | 2126 | ||
2127 | #define DEFAULT_MAX_NUM_RSS_QUEUES (8) | ||
2128 | extern int netif_get_num_default_rss_queues(void); | ||
2129 | |||
2120 | /* Use this variant when it is known for sure that it | 2130 | /* Use this variant when it is known for sure that it |
2121 | * is executing from hardware interrupt context or with hardware interrupts | 2131 | * is executing from hardware interrupt context or with hardware interrupts |
2122 | * disabled. | 2132 | * disabled. |
diff --git a/include/linux/netfilter.h b/include/linux/netfilter.h index ff9c84c29b28..c613cf0d7884 100644 --- a/include/linux/netfilter.h +++ b/include/linux/netfilter.h | |||
@@ -94,6 +94,16 @@ static inline int nf_inet_addr_cmp(const union nf_inet_addr *a1, | |||
94 | a1->all[3] == a2->all[3]; | 94 | a1->all[3] == a2->all[3]; |
95 | } | 95 | } |
96 | 96 | ||
97 | static inline void nf_inet_addr_mask(const union nf_inet_addr *a1, | ||
98 | union nf_inet_addr *result, | ||
99 | const union nf_inet_addr *mask) | ||
100 | { | ||
101 | result->all[0] = a1->all[0] & mask->all[0]; | ||
102 | result->all[1] = a1->all[1] & mask->all[1]; | ||
103 | result->all[2] = a1->all[2] & mask->all[2]; | ||
104 | result->all[3] = a1->all[3] & mask->all[3]; | ||
105 | } | ||
106 | |||
97 | extern void netfilter_init(void); | 107 | extern void netfilter_init(void); |
98 | 108 | ||
99 | /* Largest hook number + 1 */ | 109 | /* Largest hook number + 1 */ |
@@ -383,6 +393,22 @@ nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family) | |||
383 | extern void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *) __rcu; | 393 | extern void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *) __rcu; |
384 | extern void nf_ct_attach(struct sk_buff *, struct sk_buff *); | 394 | extern void nf_ct_attach(struct sk_buff *, struct sk_buff *); |
385 | extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu; | 395 | extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu; |
396 | |||
397 | struct nf_conn; | ||
398 | struct nlattr; | ||
399 | |||
400 | struct nfq_ct_hook { | ||
401 | size_t (*build_size)(const struct nf_conn *ct); | ||
402 | int (*build)(struct sk_buff *skb, struct nf_conn *ct); | ||
403 | int (*parse)(const struct nlattr *attr, struct nf_conn *ct); | ||
404 | }; | ||
405 | extern struct nfq_ct_hook __rcu *nfq_ct_hook; | ||
406 | |||
407 | struct nfq_ct_nat_hook { | ||
408 | void (*seq_adjust)(struct sk_buff *skb, struct nf_conn *ct, | ||
409 | u32 ctinfo, int off); | ||
410 | }; | ||
411 | extern struct nfq_ct_nat_hook __rcu *nfq_ct_nat_hook; | ||
386 | #else | 412 | #else |
387 | static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {} | 413 | static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {} |
388 | #endif | 414 | #endif |
diff --git a/include/linux/netfilter/Kbuild b/include/linux/netfilter/Kbuild index 1697036336b6..874ae8f2706b 100644 --- a/include/linux/netfilter/Kbuild +++ b/include/linux/netfilter/Kbuild | |||
@@ -10,6 +10,7 @@ header-y += nfnetlink.h | |||
10 | header-y += nfnetlink_acct.h | 10 | header-y += nfnetlink_acct.h |
11 | header-y += nfnetlink_compat.h | 11 | header-y += nfnetlink_compat.h |
12 | header-y += nfnetlink_conntrack.h | 12 | header-y += nfnetlink_conntrack.h |
13 | header-y += nfnetlink_cthelper.h | ||
13 | header-y += nfnetlink_cttimeout.h | 14 | header-y += nfnetlink_cttimeout.h |
14 | header-y += nfnetlink_log.h | 15 | header-y += nfnetlink_log.h |
15 | header-y += nfnetlink_queue.h | 16 | header-y += nfnetlink_queue.h |
diff --git a/include/linux/netfilter/nf_conntrack_sip.h b/include/linux/netfilter/nf_conntrack_sip.h index 0ce91d56a5f2..0dfc8b7210a3 100644 --- a/include/linux/netfilter/nf_conntrack_sip.h +++ b/include/linux/netfilter/nf_conntrack_sip.h | |||
@@ -2,6 +2,8 @@ | |||
2 | #define __NF_CONNTRACK_SIP_H__ | 2 | #define __NF_CONNTRACK_SIP_H__ |
3 | #ifdef __KERNEL__ | 3 | #ifdef __KERNEL__ |
4 | 4 | ||
5 | #include <net/netfilter/nf_conntrack_expect.h> | ||
6 | |||
5 | #define SIP_PORT 5060 | 7 | #define SIP_PORT 5060 |
6 | #define SIP_TIMEOUT 3600 | 8 | #define SIP_TIMEOUT 3600 |
7 | 9 | ||
diff --git a/include/linux/netfilter/nfnetlink.h b/include/linux/netfilter/nfnetlink.h index a1048c1587d1..18341cdb2443 100644 --- a/include/linux/netfilter/nfnetlink.h +++ b/include/linux/netfilter/nfnetlink.h | |||
@@ -50,7 +50,8 @@ struct nfgenmsg { | |||
50 | #define NFNL_SUBSYS_IPSET 6 | 50 | #define NFNL_SUBSYS_IPSET 6 |
51 | #define NFNL_SUBSYS_ACCT 7 | 51 | #define NFNL_SUBSYS_ACCT 7 |
52 | #define NFNL_SUBSYS_CTNETLINK_TIMEOUT 8 | 52 | #define NFNL_SUBSYS_CTNETLINK_TIMEOUT 8 |
53 | #define NFNL_SUBSYS_COUNT 9 | 53 | #define NFNL_SUBSYS_CTHELPER 9 |
54 | #define NFNL_SUBSYS_COUNT 10 | ||
54 | 55 | ||
55 | #ifdef __KERNEL__ | 56 | #ifdef __KERNEL__ |
56 | 57 | ||
diff --git a/include/linux/netfilter/nfnetlink_conntrack.h b/include/linux/netfilter/nfnetlink_conntrack.h index e58e4b93c108..f649f7423ca2 100644 --- a/include/linux/netfilter/nfnetlink_conntrack.h +++ b/include/linux/netfilter/nfnetlink_conntrack.h | |||
@@ -7,6 +7,8 @@ enum cntl_msg_types { | |||
7 | IPCTNL_MSG_CT_GET, | 7 | IPCTNL_MSG_CT_GET, |
8 | IPCTNL_MSG_CT_DELETE, | 8 | IPCTNL_MSG_CT_DELETE, |
9 | IPCTNL_MSG_CT_GET_CTRZERO, | 9 | IPCTNL_MSG_CT_GET_CTRZERO, |
10 | IPCTNL_MSG_CT_GET_STATS_CPU, | ||
11 | IPCTNL_MSG_CT_GET_STATS, | ||
10 | 12 | ||
11 | IPCTNL_MSG_MAX | 13 | IPCTNL_MSG_MAX |
12 | }; | 14 | }; |
@@ -15,6 +17,7 @@ enum ctnl_exp_msg_types { | |||
15 | IPCTNL_MSG_EXP_NEW, | 17 | IPCTNL_MSG_EXP_NEW, |
16 | IPCTNL_MSG_EXP_GET, | 18 | IPCTNL_MSG_EXP_GET, |
17 | IPCTNL_MSG_EXP_DELETE, | 19 | IPCTNL_MSG_EXP_DELETE, |
20 | IPCTNL_MSG_EXP_GET_STATS_CPU, | ||
18 | 21 | ||
19 | IPCTNL_MSG_EXP_MAX | 22 | IPCTNL_MSG_EXP_MAX |
20 | }; | 23 | }; |
@@ -191,6 +194,7 @@ enum ctattr_expect_nat { | |||
191 | enum ctattr_help { | 194 | enum ctattr_help { |
192 | CTA_HELP_UNSPEC, | 195 | CTA_HELP_UNSPEC, |
193 | CTA_HELP_NAME, | 196 | CTA_HELP_NAME, |
197 | CTA_HELP_INFO, | ||
194 | __CTA_HELP_MAX | 198 | __CTA_HELP_MAX |
195 | }; | 199 | }; |
196 | #define CTA_HELP_MAX (__CTA_HELP_MAX - 1) | 200 | #define CTA_HELP_MAX (__CTA_HELP_MAX - 1) |
@@ -202,4 +206,39 @@ enum ctattr_secctx { | |||
202 | }; | 206 | }; |
203 | #define CTA_SECCTX_MAX (__CTA_SECCTX_MAX - 1) | 207 | #define CTA_SECCTX_MAX (__CTA_SECCTX_MAX - 1) |
204 | 208 | ||
209 | enum ctattr_stats_cpu { | ||
210 | CTA_STATS_UNSPEC, | ||
211 | CTA_STATS_SEARCHED, | ||
212 | CTA_STATS_FOUND, | ||
213 | CTA_STATS_NEW, | ||
214 | CTA_STATS_INVALID, | ||
215 | CTA_STATS_IGNORE, | ||
216 | CTA_STATS_DELETE, | ||
217 | CTA_STATS_DELETE_LIST, | ||
218 | CTA_STATS_INSERT, | ||
219 | CTA_STATS_INSERT_FAILED, | ||
220 | CTA_STATS_DROP, | ||
221 | CTA_STATS_EARLY_DROP, | ||
222 | CTA_STATS_ERROR, | ||
223 | CTA_STATS_SEARCH_RESTART, | ||
224 | __CTA_STATS_MAX, | ||
225 | }; | ||
226 | #define CTA_STATS_MAX (__CTA_STATS_MAX - 1) | ||
227 | |||
228 | enum ctattr_stats_global { | ||
229 | CTA_STATS_GLOBAL_UNSPEC, | ||
230 | CTA_STATS_GLOBAL_ENTRIES, | ||
231 | __CTA_STATS_GLOBAL_MAX, | ||
232 | }; | ||
233 | #define CTA_STATS_GLOBAL_MAX (__CTA_STATS_GLOBAL_MAX - 1) | ||
234 | |||
235 | enum ctattr_expect_stats { | ||
236 | CTA_STATS_EXP_UNSPEC, | ||
237 | CTA_STATS_EXP_NEW, | ||
238 | CTA_STATS_EXP_CREATE, | ||
239 | CTA_STATS_EXP_DELETE, | ||
240 | __CTA_STATS_EXP_MAX, | ||
241 | }; | ||
242 | #define CTA_STATS_EXP_MAX (__CTA_STATS_EXP_MAX - 1) | ||
243 | |||
205 | #endif /* _IPCONNTRACK_NETLINK_H */ | 244 | #endif /* _IPCONNTRACK_NETLINK_H */ |
diff --git a/include/linux/netfilter/nfnetlink_cthelper.h b/include/linux/netfilter/nfnetlink_cthelper.h new file mode 100644 index 000000000000..33659f6fad3e --- /dev/null +++ b/include/linux/netfilter/nfnetlink_cthelper.h | |||
@@ -0,0 +1,55 @@ | |||
1 | #ifndef _NFNL_CTHELPER_H_ | ||
2 | #define _NFNL_CTHELPER_H_ | ||
3 | |||
4 | #define NFCT_HELPER_STATUS_DISABLED 0 | ||
5 | #define NFCT_HELPER_STATUS_ENABLED 1 | ||
6 | |||
7 | enum nfnl_acct_msg_types { | ||
8 | NFNL_MSG_CTHELPER_NEW, | ||
9 | NFNL_MSG_CTHELPER_GET, | ||
10 | NFNL_MSG_CTHELPER_DEL, | ||
11 | NFNL_MSG_CTHELPER_MAX | ||
12 | }; | ||
13 | |||
14 | enum nfnl_cthelper_type { | ||
15 | NFCTH_UNSPEC, | ||
16 | NFCTH_NAME, | ||
17 | NFCTH_TUPLE, | ||
18 | NFCTH_QUEUE_NUM, | ||
19 | NFCTH_POLICY, | ||
20 | NFCTH_PRIV_DATA_LEN, | ||
21 | NFCTH_STATUS, | ||
22 | __NFCTH_MAX | ||
23 | }; | ||
24 | #define NFCTH_MAX (__NFCTH_MAX - 1) | ||
25 | |||
26 | enum nfnl_cthelper_policy_type { | ||
27 | NFCTH_POLICY_SET_UNSPEC, | ||
28 | NFCTH_POLICY_SET_NUM, | ||
29 | NFCTH_POLICY_SET, | ||
30 | NFCTH_POLICY_SET1 = NFCTH_POLICY_SET, | ||
31 | NFCTH_POLICY_SET2, | ||
32 | NFCTH_POLICY_SET3, | ||
33 | NFCTH_POLICY_SET4, | ||
34 | __NFCTH_POLICY_SET_MAX | ||
35 | }; | ||
36 | #define NFCTH_POLICY_SET_MAX (__NFCTH_POLICY_SET_MAX - 1) | ||
37 | |||
38 | enum nfnl_cthelper_pol_type { | ||
39 | NFCTH_POLICY_UNSPEC, | ||
40 | NFCTH_POLICY_NAME, | ||
41 | NFCTH_POLICY_EXPECT_MAX, | ||
42 | NFCTH_POLICY_EXPECT_TIMEOUT, | ||
43 | __NFCTH_POLICY_MAX | ||
44 | }; | ||
45 | #define NFCTH_POLICY_MAX (__NFCTH_POLICY_MAX - 1) | ||
46 | |||
47 | enum nfnl_cthelper_tuple_type { | ||
48 | NFCTH_TUPLE_UNSPEC, | ||
49 | NFCTH_TUPLE_L3PROTONUM, | ||
50 | NFCTH_TUPLE_L4PROTONUM, | ||
51 | __NFCTH_TUPLE_MAX, | ||
52 | }; | ||
53 | #define NFCTH_TUPLE_MAX (__NFCTH_TUPLE_MAX - 1) | ||
54 | |||
55 | #endif /* _NFNL_CTHELPER_H */ | ||
diff --git a/include/linux/netfilter/nfnetlink_queue.h b/include/linux/netfilter/nfnetlink_queue.h index 24b32e6c009e..3b1c1360aedf 100644 --- a/include/linux/netfilter/nfnetlink_queue.h +++ b/include/linux/netfilter/nfnetlink_queue.h | |||
@@ -42,6 +42,8 @@ enum nfqnl_attr_type { | |||
42 | NFQA_IFINDEX_PHYSOUTDEV, /* __u32 ifindex */ | 42 | NFQA_IFINDEX_PHYSOUTDEV, /* __u32 ifindex */ |
43 | NFQA_HWADDR, /* nfqnl_msg_packet_hw */ | 43 | NFQA_HWADDR, /* nfqnl_msg_packet_hw */ |
44 | NFQA_PAYLOAD, /* opaque data payload */ | 44 | NFQA_PAYLOAD, /* opaque data payload */ |
45 | NFQA_CT, /* nf_conntrack_netlink.h */ | ||
46 | NFQA_CT_INFO, /* enum ip_conntrack_info */ | ||
45 | 47 | ||
46 | __NFQA_MAX | 48 | __NFQA_MAX |
47 | }; | 49 | }; |
@@ -84,8 +86,15 @@ enum nfqnl_attr_config { | |||
84 | NFQA_CFG_CMD, /* nfqnl_msg_config_cmd */ | 86 | NFQA_CFG_CMD, /* nfqnl_msg_config_cmd */ |
85 | NFQA_CFG_PARAMS, /* nfqnl_msg_config_params */ | 87 | NFQA_CFG_PARAMS, /* nfqnl_msg_config_params */ |
86 | NFQA_CFG_QUEUE_MAXLEN, /* __u32 */ | 88 | NFQA_CFG_QUEUE_MAXLEN, /* __u32 */ |
89 | NFQA_CFG_MASK, /* identify which flags to change */ | ||
90 | NFQA_CFG_FLAGS, /* value of these flags (__u32) */ | ||
87 | __NFQA_CFG_MAX | 91 | __NFQA_CFG_MAX |
88 | }; | 92 | }; |
89 | #define NFQA_CFG_MAX (__NFQA_CFG_MAX-1) | 93 | #define NFQA_CFG_MAX (__NFQA_CFG_MAX-1) |
90 | 94 | ||
95 | /* Flags for NFQA_CFG_FLAGS */ | ||
96 | #define NFQA_CFG_F_FAIL_OPEN (1 << 0) | ||
97 | #define NFQA_CFG_F_CONNTRACK (1 << 1) | ||
98 | #define NFQA_CFG_F_MAX (1 << 2) | ||
99 | |||
91 | #endif /* _NFNETLINK_QUEUE_H */ | 100 | #endif /* _NFNETLINK_QUEUE_H */ |
diff --git a/include/linux/netfilter/xt_connlimit.h b/include/linux/netfilter/xt_connlimit.h index d1366f05d1b2..f1656096121e 100644 --- a/include/linux/netfilter/xt_connlimit.h +++ b/include/linux/netfilter/xt_connlimit.h | |||
@@ -22,13 +22,8 @@ struct xt_connlimit_info { | |||
22 | #endif | 22 | #endif |
23 | }; | 23 | }; |
24 | unsigned int limit; | 24 | unsigned int limit; |
25 | union { | 25 | /* revision 1 */ |
26 | /* revision 0 */ | 26 | __u32 flags; |
27 | unsigned int inverse; | ||
28 | |||
29 | /* revision 1 */ | ||
30 | __u32 flags; | ||
31 | }; | ||
32 | 27 | ||
33 | /* Used internally by the kernel */ | 28 | /* Used internally by the kernel */ |
34 | struct xt_connlimit_data *data __attribute__((aligned(8))); | 29 | struct xt_connlimit_data *data __attribute__((aligned(8))); |
diff --git a/include/linux/netfilter/xt_recent.h b/include/linux/netfilter/xt_recent.h index 83318e01425e..6ef36c113e89 100644 --- a/include/linux/netfilter/xt_recent.h +++ b/include/linux/netfilter/xt_recent.h | |||
@@ -32,4 +32,14 @@ struct xt_recent_mtinfo { | |||
32 | __u8 side; | 32 | __u8 side; |
33 | }; | 33 | }; |
34 | 34 | ||
35 | struct xt_recent_mtinfo_v1 { | ||
36 | __u32 seconds; | ||
37 | __u32 hit_count; | ||
38 | __u8 check_set; | ||
39 | __u8 invert; | ||
40 | char name[XT_RECENT_NAME_LEN]; | ||
41 | __u8 side; | ||
42 | union nf_inet_addr mask; | ||
43 | }; | ||
44 | |||
35 | #endif /* _LINUX_NETFILTER_XT_RECENT_H */ | 45 | #endif /* _LINUX_NETFILTER_XT_RECENT_H */ |
diff --git a/include/linux/netfilter_ipv4.h b/include/linux/netfilter_ipv4.h index fa0946c549d3..e2b12801378d 100644 --- a/include/linux/netfilter_ipv4.h +++ b/include/linux/netfilter_ipv4.h | |||
@@ -66,6 +66,7 @@ enum nf_ip_hook_priorities { | |||
66 | NF_IP_PRI_SECURITY = 50, | 66 | NF_IP_PRI_SECURITY = 50, |
67 | NF_IP_PRI_NAT_SRC = 100, | 67 | NF_IP_PRI_NAT_SRC = 100, |
68 | NF_IP_PRI_SELINUX_LAST = 225, | 68 | NF_IP_PRI_SELINUX_LAST = 225, |
69 | NF_IP_PRI_CONNTRACK_HELPER = 300, | ||
69 | NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX, | 70 | NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX, |
70 | NF_IP_PRI_LAST = INT_MAX, | 71 | NF_IP_PRI_LAST = INT_MAX, |
71 | }; | 72 | }; |
diff --git a/include/linux/netfilter_ipv4/Kbuild b/include/linux/netfilter_ipv4/Kbuild index c61b8fb1a9ef..8ba0c5b72ea9 100644 --- a/include/linux/netfilter_ipv4/Kbuild +++ b/include/linux/netfilter_ipv4/Kbuild | |||
@@ -5,7 +5,6 @@ header-y += ipt_LOG.h | |||
5 | header-y += ipt_REJECT.h | 5 | header-y += ipt_REJECT.h |
6 | header-y += ipt_TTL.h | 6 | header-y += ipt_TTL.h |
7 | header-y += ipt_ULOG.h | 7 | header-y += ipt_ULOG.h |
8 | header-y += ipt_addrtype.h | ||
9 | header-y += ipt_ah.h | 8 | header-y += ipt_ah.h |
10 | header-y += ipt_ecn.h | 9 | header-y += ipt_ecn.h |
11 | header-y += ipt_ttl.h | 10 | header-y += ipt_ttl.h |
diff --git a/include/linux/netfilter_ipv4/ipt_addrtype.h b/include/linux/netfilter_ipv4/ipt_addrtype.h deleted file mode 100644 index 0da42237c8da..000000000000 --- a/include/linux/netfilter_ipv4/ipt_addrtype.h +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | #ifndef _IPT_ADDRTYPE_H | ||
2 | #define _IPT_ADDRTYPE_H | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | |||
6 | enum { | ||
7 | IPT_ADDRTYPE_INVERT_SOURCE = 0x0001, | ||
8 | IPT_ADDRTYPE_INVERT_DEST = 0x0002, | ||
9 | IPT_ADDRTYPE_LIMIT_IFACE_IN = 0x0004, | ||
10 | IPT_ADDRTYPE_LIMIT_IFACE_OUT = 0x0008, | ||
11 | }; | ||
12 | |||
13 | struct ipt_addrtype_info_v1 { | ||
14 | __u16 source; /* source-type mask */ | ||
15 | __u16 dest; /* dest-type mask */ | ||
16 | __u32 flags; | ||
17 | }; | ||
18 | |||
19 | /* revision 0 */ | ||
20 | struct ipt_addrtype_info { | ||
21 | __u16 source; /* source-type mask */ | ||
22 | __u16 dest; /* dest-type mask */ | ||
23 | __u32 invert_source; | ||
24 | __u32 invert_dest; | ||
25 | }; | ||
26 | |||
27 | #endif | ||
diff --git a/include/linux/netfilter_ipv6.h b/include/linux/netfilter_ipv6.h index 57c025127f1d..7c8a513ce7a3 100644 --- a/include/linux/netfilter_ipv6.h +++ b/include/linux/netfilter_ipv6.h | |||
@@ -71,6 +71,7 @@ enum nf_ip6_hook_priorities { | |||
71 | NF_IP6_PRI_SECURITY = 50, | 71 | NF_IP6_PRI_SECURITY = 50, |
72 | NF_IP6_PRI_NAT_SRC = 100, | 72 | NF_IP6_PRI_NAT_SRC = 100, |
73 | NF_IP6_PRI_SELINUX_LAST = 225, | 73 | NF_IP6_PRI_SELINUX_LAST = 225, |
74 | NF_IP6_PRI_CONNTRACK_HELPER = 300, | ||
74 | NF_IP6_PRI_LAST = INT_MAX, | 75 | NF_IP6_PRI_LAST = INT_MAX, |
75 | }; | 76 | }; |
76 | 77 | ||
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index 0f628ffa420c..f74dd133788f 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h | |||
@@ -174,11 +174,17 @@ struct netlink_skb_parms { | |||
174 | extern void netlink_table_grab(void); | 174 | extern void netlink_table_grab(void); |
175 | extern void netlink_table_ungrab(void); | 175 | extern void netlink_table_ungrab(void); |
176 | 176 | ||
177 | extern struct sock *netlink_kernel_create(struct net *net, | 177 | /* optional Netlink kernel configuration parameters */ |
178 | int unit,unsigned int groups, | 178 | struct netlink_kernel_cfg { |
179 | void (*input)(struct sk_buff *skb), | 179 | unsigned int groups; |
180 | struct mutex *cb_mutex, | 180 | void (*input)(struct sk_buff *skb); |
181 | struct module *module); | 181 | struct mutex *cb_mutex; |
182 | void (*bind)(int group); | ||
183 | }; | ||
184 | |||
185 | extern struct sock *netlink_kernel_create(struct net *net, int unit, | ||
186 | struct module *module, | ||
187 | struct netlink_kernel_cfg *cfg); | ||
182 | extern void netlink_kernel_release(struct sock *sk); | 188 | extern void netlink_kernel_release(struct sock *sk); |
183 | extern int __netlink_change_ngroups(struct sock *sk, unsigned int groups); | 189 | extern int __netlink_change_ngroups(struct sock *sk, unsigned int groups); |
184 | extern int netlink_change_ngroups(struct sock *sk, unsigned int groups); | 190 | extern int netlink_change_ngroups(struct sock *sk, unsigned int groups); |
@@ -241,14 +247,6 @@ struct netlink_notify { | |||
241 | struct nlmsghdr * | 247 | struct nlmsghdr * |
242 | __nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags); | 248 | __nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags); |
243 | 249 | ||
244 | #define NLMSG_NEW(skb, pid, seq, type, len, flags) \ | ||
245 | ({ if (unlikely(skb_tailroom(skb) < (int)NLMSG_SPACE(len))) \ | ||
246 | goto nlmsg_failure; \ | ||
247 | __nlmsg_put(skb, pid, seq, type, len, flags); }) | ||
248 | |||
249 | #define NLMSG_PUT(skb, pid, seq, type, len) \ | ||
250 | NLMSG_NEW(skb, pid, seq, type, len, 0) | ||
251 | |||
252 | struct netlink_dump_control { | 250 | struct netlink_dump_control { |
253 | int (*dump)(struct sk_buff *skb, struct netlink_callback *); | 251 | int (*dump)(struct sk_buff *skb, struct netlink_callback *); |
254 | int (*done)(struct netlink_callback*); | 252 | int (*done)(struct netlink_callback*); |
diff --git a/include/linux/netpoll.h b/include/linux/netpoll.h index 5dfa091c3347..28f5389c924b 100644 --- a/include/linux/netpoll.h +++ b/include/linux/netpoll.h | |||
@@ -43,7 +43,7 @@ struct netpoll_info { | |||
43 | void netpoll_send_udp(struct netpoll *np, const char *msg, int len); | 43 | void netpoll_send_udp(struct netpoll *np, const char *msg, int len); |
44 | void netpoll_print_options(struct netpoll *np); | 44 | void netpoll_print_options(struct netpoll *np); |
45 | int netpoll_parse_options(struct netpoll *np, char *opt); | 45 | int netpoll_parse_options(struct netpoll *np, char *opt); |
46 | int __netpoll_setup(struct netpoll *np); | 46 | int __netpoll_setup(struct netpoll *np, struct net_device *ndev); |
47 | int netpoll_setup(struct netpoll *np); | 47 | int netpoll_setup(struct netpoll *np); |
48 | int netpoll_trap(void); | 48 | int netpoll_trap(void); |
49 | void netpoll_set_trap(int trap); | 49 | void netpoll_set_trap(int trap); |
diff --git a/include/linux/nfc.h b/include/linux/nfc.h index 0ae9b5857c83..6189f27e305b 100644 --- a/include/linux/nfc.h +++ b/include/linux/nfc.h | |||
@@ -56,6 +56,10 @@ | |||
56 | * %NFC_ATTR_PROTOCOLS) | 56 | * %NFC_ATTR_PROTOCOLS) |
57 | * @NFC_EVENT_DEVICE_REMOVED: event emitted when a device is removed | 57 | * @NFC_EVENT_DEVICE_REMOVED: event emitted when a device is removed |
58 | * (it sends %NFC_ATTR_DEVICE_INDEX) | 58 | * (it sends %NFC_ATTR_DEVICE_INDEX) |
59 | * @NFC_EVENT_TM_ACTIVATED: event emitted when the adapter is activated in | ||
60 | * target mode. | ||
61 | * @NFC_EVENT_DEVICE_DEACTIVATED: event emitted when the adapter is deactivated | ||
62 | * from target mode. | ||
59 | */ | 63 | */ |
60 | enum nfc_commands { | 64 | enum nfc_commands { |
61 | NFC_CMD_UNSPEC, | 65 | NFC_CMD_UNSPEC, |
@@ -71,6 +75,8 @@ enum nfc_commands { | |||
71 | NFC_EVENT_DEVICE_ADDED, | 75 | NFC_EVENT_DEVICE_ADDED, |
72 | NFC_EVENT_DEVICE_REMOVED, | 76 | NFC_EVENT_DEVICE_REMOVED, |
73 | NFC_EVENT_TARGET_LOST, | 77 | NFC_EVENT_TARGET_LOST, |
78 | NFC_EVENT_TM_ACTIVATED, | ||
79 | NFC_EVENT_TM_DEACTIVATED, | ||
74 | /* private: internal use only */ | 80 | /* private: internal use only */ |
75 | __NFC_CMD_AFTER_LAST | 81 | __NFC_CMD_AFTER_LAST |
76 | }; | 82 | }; |
@@ -94,6 +100,8 @@ enum nfc_commands { | |||
94 | * @NFC_ATTR_TARGET_SENSF_RES: NFC-F targets extra information, max 18 bytes | 100 | * @NFC_ATTR_TARGET_SENSF_RES: NFC-F targets extra information, max 18 bytes |
95 | * @NFC_ATTR_COMM_MODE: Passive or active mode | 101 | * @NFC_ATTR_COMM_MODE: Passive or active mode |
96 | * @NFC_ATTR_RF_MODE: Initiator or target | 102 | * @NFC_ATTR_RF_MODE: Initiator or target |
103 | * @NFC_ATTR_IM_PROTOCOLS: Initiator mode protocols to poll for | ||
104 | * @NFC_ATTR_TM_PROTOCOLS: Target mode protocols to listen for | ||
97 | */ | 105 | */ |
98 | enum nfc_attrs { | 106 | enum nfc_attrs { |
99 | NFC_ATTR_UNSPEC, | 107 | NFC_ATTR_UNSPEC, |
@@ -109,6 +117,8 @@ enum nfc_attrs { | |||
109 | NFC_ATTR_COMM_MODE, | 117 | NFC_ATTR_COMM_MODE, |
110 | NFC_ATTR_RF_MODE, | 118 | NFC_ATTR_RF_MODE, |
111 | NFC_ATTR_DEVICE_POWERED, | 119 | NFC_ATTR_DEVICE_POWERED, |
120 | NFC_ATTR_IM_PROTOCOLS, | ||
121 | NFC_ATTR_TM_PROTOCOLS, | ||
112 | /* private: internal use only */ | 122 | /* private: internal use only */ |
113 | __NFC_ATTR_AFTER_LAST | 123 | __NFC_ATTR_AFTER_LAST |
114 | }; | 124 | }; |
@@ -118,6 +128,7 @@ enum nfc_attrs { | |||
118 | #define NFC_NFCID1_MAXSIZE 10 | 128 | #define NFC_NFCID1_MAXSIZE 10 |
119 | #define NFC_SENSB_RES_MAXSIZE 12 | 129 | #define NFC_SENSB_RES_MAXSIZE 12 |
120 | #define NFC_SENSF_RES_MAXSIZE 18 | 130 | #define NFC_SENSF_RES_MAXSIZE 18 |
131 | #define NFC_GB_MAXSIZE 48 | ||
121 | 132 | ||
122 | /* NFC protocols */ | 133 | /* NFC protocols */ |
123 | #define NFC_PROTO_JEWEL 1 | 134 | #define NFC_PROTO_JEWEL 1 |
@@ -125,8 +136,9 @@ enum nfc_attrs { | |||
125 | #define NFC_PROTO_FELICA 3 | 136 | #define NFC_PROTO_FELICA 3 |
126 | #define NFC_PROTO_ISO14443 4 | 137 | #define NFC_PROTO_ISO14443 4 |
127 | #define NFC_PROTO_NFC_DEP 5 | 138 | #define NFC_PROTO_NFC_DEP 5 |
139 | #define NFC_PROTO_ISO14443_B 6 | ||
128 | 140 | ||
129 | #define NFC_PROTO_MAX 6 | 141 | #define NFC_PROTO_MAX 7 |
130 | 142 | ||
131 | /* NFC communication modes */ | 143 | /* NFC communication modes */ |
132 | #define NFC_COMM_ACTIVE 0 | 144 | #define NFC_COMM_ACTIVE 0 |
@@ -135,13 +147,15 @@ enum nfc_attrs { | |||
135 | /* NFC RF modes */ | 147 | /* NFC RF modes */ |
136 | #define NFC_RF_INITIATOR 0 | 148 | #define NFC_RF_INITIATOR 0 |
137 | #define NFC_RF_TARGET 1 | 149 | #define NFC_RF_TARGET 1 |
150 | #define NFC_RF_NONE 2 | ||
138 | 151 | ||
139 | /* NFC protocols masks used in bitsets */ | 152 | /* NFC protocols masks used in bitsets */ |
140 | #define NFC_PROTO_JEWEL_MASK (1 << NFC_PROTO_JEWEL) | 153 | #define NFC_PROTO_JEWEL_MASK (1 << NFC_PROTO_JEWEL) |
141 | #define NFC_PROTO_MIFARE_MASK (1 << NFC_PROTO_MIFARE) | 154 | #define NFC_PROTO_MIFARE_MASK (1 << NFC_PROTO_MIFARE) |
142 | #define NFC_PROTO_FELICA_MASK (1 << NFC_PROTO_FELICA) | 155 | #define NFC_PROTO_FELICA_MASK (1 << NFC_PROTO_FELICA) |
143 | #define NFC_PROTO_ISO14443_MASK (1 << NFC_PROTO_ISO14443) | 156 | #define NFC_PROTO_ISO14443_MASK (1 << NFC_PROTO_ISO14443) |
144 | #define NFC_PROTO_NFC_DEP_MASK (1 << NFC_PROTO_NFC_DEP) | 157 | #define NFC_PROTO_NFC_DEP_MASK (1 << NFC_PROTO_NFC_DEP) |
158 | #define NFC_PROTO_ISO14443_B_MASK (1 << NFC_PROTO_ISO14443_B) | ||
145 | 159 | ||
146 | struct sockaddr_nfc { | 160 | struct sockaddr_nfc { |
147 | sa_family_t sa_family; | 161 | sa_family_t sa_family; |
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h index b23cfc120edb..4b6043c20f77 100644 --- a/include/linux/nfs_fs.h +++ b/include/linux/nfs_fs.h | |||
@@ -427,10 +427,6 @@ extern __be32 root_nfs_parse_addr(char *name); /*__init*/ | |||
427 | /* | 427 | /* |
428 | * linux/fs/nfs/file.c | 428 | * linux/fs/nfs/file.c |
429 | */ | 429 | */ |
430 | extern const struct inode_operations nfs_file_inode_operations; | ||
431 | #ifdef CONFIG_NFS_V3 | ||
432 | extern const struct inode_operations nfs3_file_inode_operations; | ||
433 | #endif /* CONFIG_NFS_V3 */ | ||
434 | extern const struct file_operations nfs_file_operations; | 430 | extern const struct file_operations nfs_file_operations; |
435 | #ifdef CONFIG_NFS_V4 | 431 | #ifdef CONFIG_NFS_V4 |
436 | extern const struct file_operations nfs4_file_operations; | 432 | extern const struct file_operations nfs4_file_operations; |
@@ -485,10 +481,6 @@ extern ssize_t nfs_file_direct_write(struct kiocb *iocb, | |||
485 | /* | 481 | /* |
486 | * linux/fs/nfs/dir.c | 482 | * linux/fs/nfs/dir.c |
487 | */ | 483 | */ |
488 | extern const struct inode_operations nfs_dir_inode_operations; | ||
489 | #ifdef CONFIG_NFS_V3 | ||
490 | extern const struct inode_operations nfs3_dir_inode_operations; | ||
491 | #endif /* CONFIG_NFS_V3 */ | ||
492 | extern const struct file_operations nfs_dir_operations; | 484 | extern const struct file_operations nfs_dir_operations; |
493 | extern const struct dentry_operations nfs_dentry_operations; | 485 | extern const struct dentry_operations nfs_dentry_operations; |
494 | 486 | ||
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index fbb78fb09bd2..65327652c61a 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h | |||
@@ -25,6 +25,7 @@ struct nfs41_impl_id; | |||
25 | */ | 25 | */ |
26 | struct nfs_client { | 26 | struct nfs_client { |
27 | atomic_t cl_count; | 27 | atomic_t cl_count; |
28 | atomic_t cl_mds_count; | ||
28 | int cl_cons_state; /* current construction state (-ve: init error) */ | 29 | int cl_cons_state; /* current construction state (-ve: init error) */ |
29 | #define NFS_CS_READY 0 /* ready to be used */ | 30 | #define NFS_CS_READY 0 /* ready to be used */ |
30 | #define NFS_CS_INITING 1 /* busy initialising */ | 31 | #define NFS_CS_INITING 1 /* busy initialising */ |
@@ -68,10 +69,9 @@ struct nfs_client { | |||
68 | struct idmap * cl_idmap; | 69 | struct idmap * cl_idmap; |
69 | 70 | ||
70 | /* Our own IP address, as a null-terminated string. | 71 | /* Our own IP address, as a null-terminated string. |
71 | * This is used to generate the clientid, and the callback address. | 72 | * This is used to generate the mv0 callback address. |
72 | */ | 73 | */ |
73 | char cl_ipaddr[48]; | 74 | char cl_ipaddr[48]; |
74 | unsigned char cl_id_uniquifier; | ||
75 | u32 cl_cb_ident; /* v4.0 callback identifier */ | 75 | u32 cl_cb_ident; /* v4.0 callback identifier */ |
76 | const struct nfs4_minor_version_ops *cl_mvops; | 76 | const struct nfs4_minor_version_ops *cl_mvops; |
77 | 77 | ||
diff --git a/include/linux/nfs_page.h b/include/linux/nfs_page.h index 88d166b555e8..880805774f9f 100644 --- a/include/linux/nfs_page.h +++ b/include/linux/nfs_page.h | |||
@@ -42,7 +42,7 @@ struct nfs_page { | |||
42 | wb_bytes; /* Length of request */ | 42 | wb_bytes; /* Length of request */ |
43 | struct kref wb_kref; /* reference count */ | 43 | struct kref wb_kref; /* reference count */ |
44 | unsigned long wb_flags; | 44 | unsigned long wb_flags; |
45 | struct nfs_writeverf wb_verf; /* Commit cookie */ | 45 | struct nfs_write_verifier wb_verf; /* Commit cookie */ |
46 | }; | 46 | }; |
47 | 47 | ||
48 | struct nfs_pageio_descriptor; | 48 | struct nfs_pageio_descriptor; |
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 8aadd90b808a..0e181c2320b7 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h | |||
@@ -514,9 +514,13 @@ struct nfs_writeargs { | |||
514 | struct nfs4_sequence_args seq_args; | 514 | struct nfs4_sequence_args seq_args; |
515 | }; | 515 | }; |
516 | 516 | ||
517 | struct nfs_write_verifier { | ||
518 | char data[8]; | ||
519 | }; | ||
520 | |||
517 | struct nfs_writeverf { | 521 | struct nfs_writeverf { |
522 | struct nfs_write_verifier verifier; | ||
518 | enum nfs3_stable_how committed; | 523 | enum nfs3_stable_how committed; |
519 | __be32 verifier[2]; | ||
520 | }; | 524 | }; |
521 | 525 | ||
522 | struct nfs_writeres { | 526 | struct nfs_writeres { |
@@ -1349,6 +1353,8 @@ struct nfs_renamedata { | |||
1349 | struct nfs_access_entry; | 1353 | struct nfs_access_entry; |
1350 | struct nfs_client; | 1354 | struct nfs_client; |
1351 | struct rpc_timeout; | 1355 | struct rpc_timeout; |
1356 | struct nfs_client_initdata; | ||
1357 | struct nfs_pageio_descriptor; | ||
1352 | 1358 | ||
1353 | /* | 1359 | /* |
1354 | * RPC procedure vector for NFSv2/NFSv3 demuxing | 1360 | * RPC procedure vector for NFSv2/NFSv3 demuxing |
@@ -1374,7 +1380,7 @@ struct nfs_rpc_ops { | |||
1374 | int (*readlink)(struct inode *, struct page *, unsigned int, | 1380 | int (*readlink)(struct inode *, struct page *, unsigned int, |
1375 | unsigned int); | 1381 | unsigned int); |
1376 | int (*create) (struct inode *, struct dentry *, | 1382 | int (*create) (struct inode *, struct dentry *, |
1377 | struct iattr *, int, struct nfs_open_context *); | 1383 | struct iattr *, int); |
1378 | int (*remove) (struct inode *, struct qstr *); | 1384 | int (*remove) (struct inode *, struct qstr *); |
1379 | void (*unlink_setup) (struct rpc_message *, struct inode *dir); | 1385 | void (*unlink_setup) (struct rpc_message *, struct inode *dir); |
1380 | void (*unlink_rpc_prepare) (struct rpc_task *, struct nfs_unlinkdata *); | 1386 | void (*unlink_rpc_prepare) (struct rpc_task *, struct nfs_unlinkdata *); |
@@ -1402,9 +1408,13 @@ struct nfs_rpc_ops { | |||
1402 | int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); | 1408 | int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); |
1403 | int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, int); | 1409 | int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, int); |
1404 | void (*read_setup) (struct nfs_read_data *, struct rpc_message *); | 1410 | void (*read_setup) (struct nfs_read_data *, struct rpc_message *); |
1411 | void (*read_pageio_init)(struct nfs_pageio_descriptor *, struct inode *, | ||
1412 | const struct nfs_pgio_completion_ops *); | ||
1405 | void (*read_rpc_prepare)(struct rpc_task *, struct nfs_read_data *); | 1413 | void (*read_rpc_prepare)(struct rpc_task *, struct nfs_read_data *); |
1406 | int (*read_done) (struct rpc_task *, struct nfs_read_data *); | 1414 | int (*read_done) (struct rpc_task *, struct nfs_read_data *); |
1407 | void (*write_setup) (struct nfs_write_data *, struct rpc_message *); | 1415 | void (*write_setup) (struct nfs_write_data *, struct rpc_message *); |
1416 | void (*write_pageio_init)(struct nfs_pageio_descriptor *, struct inode *, int, | ||
1417 | const struct nfs_pgio_completion_ops *); | ||
1408 | void (*write_rpc_prepare)(struct rpc_task *, struct nfs_write_data *); | 1418 | void (*write_rpc_prepare)(struct rpc_task *, struct nfs_write_data *); |
1409 | int (*write_done) (struct rpc_task *, struct nfs_write_data *); | 1419 | int (*write_done) (struct rpc_task *, struct nfs_write_data *); |
1410 | void (*commit_setup) (struct nfs_commit_data *, struct rpc_message *); | 1420 | void (*commit_setup) (struct nfs_commit_data *, struct rpc_message *); |
@@ -1418,9 +1428,13 @@ struct nfs_rpc_ops { | |||
1418 | struct nfs_open_context *ctx, | 1428 | struct nfs_open_context *ctx, |
1419 | int open_flags, | 1429 | int open_flags, |
1420 | struct iattr *iattr); | 1430 | struct iattr *iattr); |
1431 | int (*have_delegation)(struct inode *, fmode_t); | ||
1432 | int (*return_delegation)(struct inode *); | ||
1433 | struct nfs_client *(*alloc_client) (const struct nfs_client_initdata *); | ||
1421 | struct nfs_client * | 1434 | struct nfs_client * |
1422 | (*init_client) (struct nfs_client *, const struct rpc_timeout *, | 1435 | (*init_client) (struct nfs_client *, const struct rpc_timeout *, |
1423 | const char *, rpc_authflavor_t); | 1436 | const char *, rpc_authflavor_t); |
1437 | void (*free_client) (struct nfs_client *); | ||
1424 | }; | 1438 | }; |
1425 | 1439 | ||
1426 | /* | 1440 | /* |
diff --git a/include/linux/nilfs2_fs.h b/include/linux/nilfs2_fs.h index 89bd4a4dcfb4..98755767c7b0 100644 --- a/include/linux/nilfs2_fs.h +++ b/include/linux/nilfs2_fs.h | |||
@@ -293,7 +293,7 @@ struct nilfs_dir_entry { | |||
293 | __le64 inode; /* Inode number */ | 293 | __le64 inode; /* Inode number */ |
294 | __le16 rec_len; /* Directory entry length */ | 294 | __le16 rec_len; /* Directory entry length */ |
295 | __u8 name_len; /* Name length */ | 295 | __u8 name_len; /* Name length */ |
296 | __u8 file_type; | 296 | __u8 file_type; /* Dir entry type (file, dir, etc) */ |
297 | char name[NILFS_NAME_LEN]; /* File name */ | 297 | char name[NILFS_NAME_LEN]; /* File name */ |
298 | char pad; | 298 | char pad; |
299 | }; | 299 | }; |
@@ -395,7 +395,7 @@ union nilfs_binfo { | |||
395 | }; | 395 | }; |
396 | 396 | ||
397 | /** | 397 | /** |
398 | * struct nilfs_segment_summary - segment summary | 398 | * struct nilfs_segment_summary - segment summary header |
399 | * @ss_datasum: checksum of data | 399 | * @ss_datasum: checksum of data |
400 | * @ss_sumsum: checksum of segment summary | 400 | * @ss_sumsum: checksum of segment summary |
401 | * @ss_magic: magic number | 401 | * @ss_magic: magic number |
@@ -683,9 +683,9 @@ struct nilfs_sufile_header { | |||
683 | 683 | ||
684 | /** | 684 | /** |
685 | * nilfs_suinfo - segment usage information | 685 | * nilfs_suinfo - segment usage information |
686 | * @sui_lastmod: | 686 | * @sui_lastmod: timestamp of last modification |
687 | * @sui_nblocks: | 687 | * @sui_nblocks: number of written blocks in segment |
688 | * @sui_flags: | 688 | * @sui_flags: segment usage flags |
689 | */ | 689 | */ |
690 | struct nilfs_suinfo { | 690 | struct nilfs_suinfo { |
691 | __u64 sui_lastmod; | 691 | __u64 sui_lastmod; |
@@ -716,9 +716,10 @@ enum { | |||
716 | }; | 716 | }; |
717 | 717 | ||
718 | /** | 718 | /** |
719 | * struct nilfs_cpmode - | 719 | * struct nilfs_cpmode - change checkpoint mode structure |
720 | * @cc_cno: | 720 | * @cm_cno: checkpoint number |
721 | * @cc_mode: | 721 | * @cm_mode: mode of checkpoint |
722 | * @cm_pad: padding | ||
722 | */ | 723 | */ |
723 | struct nilfs_cpmode { | 724 | struct nilfs_cpmode { |
724 | __u64 cm_cno; | 725 | __u64 cm_cno; |
@@ -728,11 +729,11 @@ struct nilfs_cpmode { | |||
728 | 729 | ||
729 | /** | 730 | /** |
730 | * struct nilfs_argv - argument vector | 731 | * struct nilfs_argv - argument vector |
731 | * @v_base: | 732 | * @v_base: pointer on data array from userspace |
732 | * @v_nmembs: | 733 | * @v_nmembs: number of members in data array |
733 | * @v_size: | 734 | * @v_size: size of data array in bytes |
734 | * @v_flags: | 735 | * @v_flags: flags |
735 | * @v_index: | 736 | * @v_index: start number of target data items |
736 | */ | 737 | */ |
737 | struct nilfs_argv { | 738 | struct nilfs_argv { |
738 | __u64 v_base; | 739 | __u64 v_base; |
@@ -743,9 +744,9 @@ struct nilfs_argv { | |||
743 | }; | 744 | }; |
744 | 745 | ||
745 | /** | 746 | /** |
746 | * struct nilfs_period - | 747 | * struct nilfs_period - period of checkpoint numbers |
747 | * @p_start: | 748 | * @p_start: start checkpoint number (inclusive) |
748 | * @p_end: | 749 | * @p_end: end checkpoint number (exclusive) |
749 | */ | 750 | */ |
750 | struct nilfs_period { | 751 | struct nilfs_period { |
751 | __u64 p_start; | 752 | __u64 p_start; |
@@ -753,7 +754,7 @@ struct nilfs_period { | |||
753 | }; | 754 | }; |
754 | 755 | ||
755 | /** | 756 | /** |
756 | * struct nilfs_cpstat - | 757 | * struct nilfs_cpstat - checkpoint statistics |
757 | * @cs_cno: checkpoint number | 758 | * @cs_cno: checkpoint number |
758 | * @cs_ncps: number of checkpoints | 759 | * @cs_ncps: number of checkpoints |
759 | * @cs_nsss: number of snapshots | 760 | * @cs_nsss: number of snapshots |
@@ -765,7 +766,7 @@ struct nilfs_cpstat { | |||
765 | }; | 766 | }; |
766 | 767 | ||
767 | /** | 768 | /** |
768 | * struct nilfs_sustat - | 769 | * struct nilfs_sustat - segment usage statistics |
769 | * @ss_nsegs: number of segments | 770 | * @ss_nsegs: number of segments |
770 | * @ss_ncleansegs: number of clean segments | 771 | * @ss_ncleansegs: number of clean segments |
771 | * @ss_ndirtysegs: number of dirty segments | 772 | * @ss_ndirtysegs: number of dirty segments |
@@ -784,10 +785,10 @@ struct nilfs_sustat { | |||
784 | 785 | ||
785 | /** | 786 | /** |
786 | * struct nilfs_vinfo - virtual block number information | 787 | * struct nilfs_vinfo - virtual block number information |
787 | * @vi_vblocknr: | 788 | * @vi_vblocknr: virtual block number |
788 | * @vi_start: | 789 | * @vi_start: start checkpoint number (inclusive) |
789 | * @vi_end: | 790 | * @vi_end: end checkpoint number (exclusive) |
790 | * @vi_blocknr: | 791 | * @vi_blocknr: disk block number |
791 | */ | 792 | */ |
792 | struct nilfs_vinfo { | 793 | struct nilfs_vinfo { |
793 | __u64 vi_vblocknr; | 794 | __u64 vi_vblocknr; |
@@ -797,7 +798,15 @@ struct nilfs_vinfo { | |||
797 | }; | 798 | }; |
798 | 799 | ||
799 | /** | 800 | /** |
800 | * struct nilfs_vdesc - | 801 | * struct nilfs_vdesc - descriptor of virtual block number |
802 | * @vd_ino: inode number | ||
803 | * @vd_cno: checkpoint number | ||
804 | * @vd_vblocknr: virtual block number | ||
805 | * @vd_period: period of checkpoint numbers | ||
806 | * @vd_blocknr: disk block number | ||
807 | * @vd_offset: logical block offset inside a file | ||
808 | * @vd_flags: flags (data or node block) | ||
809 | * @vd_pad: padding | ||
801 | */ | 810 | */ |
802 | struct nilfs_vdesc { | 811 | struct nilfs_vdesc { |
803 | __u64 vd_ino; | 812 | __u64 vd_ino; |
@@ -811,7 +820,13 @@ struct nilfs_vdesc { | |||
811 | }; | 820 | }; |
812 | 821 | ||
813 | /** | 822 | /** |
814 | * struct nilfs_bdesc - | 823 | * struct nilfs_bdesc - descriptor of disk block number |
824 | * @bd_ino: inode number | ||
825 | * @bd_oblocknr: disk block address (for skipping dead blocks) | ||
826 | * @bd_blocknr: disk block address | ||
827 | * @bd_offset: logical block offset inside a file | ||
828 | * @bd_level: level in the b-tree organization | ||
829 | * @bd_pad: padding | ||
815 | */ | 830 | */ |
816 | struct nilfs_bdesc { | 831 | struct nilfs_bdesc { |
817 | __u64 bd_ino; | 832 | __u64 bd_ino; |
diff --git a/include/linux/nl80211.h b/include/linux/nl80211.h index a6959f72745e..2f3878806403 100644 --- a/include/linux/nl80211.h +++ b/include/linux/nl80211.h | |||
@@ -170,6 +170,8 @@ | |||
170 | * %NL80211_ATTR_CIPHER_GROUP, %NL80211_ATTR_WPA_VERSIONS, | 170 | * %NL80211_ATTR_CIPHER_GROUP, %NL80211_ATTR_WPA_VERSIONS, |
171 | * %NL80211_ATTR_AKM_SUITES, %NL80211_ATTR_PRIVACY, | 171 | * %NL80211_ATTR_AKM_SUITES, %NL80211_ATTR_PRIVACY, |
172 | * %NL80211_ATTR_AUTH_TYPE and %NL80211_ATTR_INACTIVITY_TIMEOUT. | 172 | * %NL80211_ATTR_AUTH_TYPE and %NL80211_ATTR_INACTIVITY_TIMEOUT. |
173 | * The channel to use can be set on the interface or be given using the | ||
174 | * %NL80211_ATTR_WIPHY_FREQ and %NL80211_ATTR_WIPHY_CHANNEL_TYPE attrs. | ||
173 | * @NL80211_CMD_NEW_BEACON: old alias for %NL80211_CMD_START_AP | 175 | * @NL80211_CMD_NEW_BEACON: old alias for %NL80211_CMD_START_AP |
174 | * @NL80211_CMD_STOP_AP: Stop AP operation on the given interface | 176 | * @NL80211_CMD_STOP_AP: Stop AP operation on the given interface |
175 | * @NL80211_CMD_DEL_BEACON: old alias for %NL80211_CMD_STOP_AP | 177 | * @NL80211_CMD_DEL_BEACON: old alias for %NL80211_CMD_STOP_AP |
@@ -275,6 +277,12 @@ | |||
275 | * @NL80211_CMD_NEW_SURVEY_RESULTS: survey data notification (as a reply to | 277 | * @NL80211_CMD_NEW_SURVEY_RESULTS: survey data notification (as a reply to |
276 | * NL80211_CMD_GET_SURVEY and on the "scan" multicast group) | 278 | * NL80211_CMD_GET_SURVEY and on the "scan" multicast group) |
277 | * | 279 | * |
280 | * @NL80211_CMD_SET_PMKSA: Add a PMKSA cache entry, using %NL80211_ATTR_MAC | ||
281 | * (for the BSSID) and %NL80211_ATTR_PMKID. | ||
282 | * @NL80211_CMD_DEL_PMKSA: Delete a PMKSA cache entry, using %NL80211_ATTR_MAC | ||
283 | * (for the BSSID) and %NL80211_ATTR_PMKID. | ||
284 | * @NL80211_CMD_FLUSH_PMKSA: Flush all PMKSA cache entries. | ||
285 | * | ||
278 | * @NL80211_CMD_REG_CHANGE: indicates to userspace the regulatory domain | 286 | * @NL80211_CMD_REG_CHANGE: indicates to userspace the regulatory domain |
279 | * has been changed and provides details of the request information | 287 | * has been changed and provides details of the request information |
280 | * that caused the change such as who initiated the regulatory request | 288 | * that caused the change such as who initiated the regulatory request |
@@ -454,6 +462,10 @@ | |||
454 | * the frame. | 462 | * the frame. |
455 | * @NL80211_CMD_ACTION_TX_STATUS: Alias for @NL80211_CMD_FRAME_TX_STATUS for | 463 | * @NL80211_CMD_ACTION_TX_STATUS: Alias for @NL80211_CMD_FRAME_TX_STATUS for |
456 | * backward compatibility. | 464 | * backward compatibility. |
465 | * | ||
466 | * @NL80211_CMD_SET_POWER_SAVE: Set powersave, using %NL80211_ATTR_PS_STATE | ||
467 | * @NL80211_CMD_GET_POWER_SAVE: Get powersave status in %NL80211_ATTR_PS_STATE | ||
468 | * | ||
457 | * @NL80211_CMD_SET_CQM: Connection quality monitor configuration. This command | 469 | * @NL80211_CMD_SET_CQM: Connection quality monitor configuration. This command |
458 | * is used to configure connection quality monitoring notification trigger | 470 | * is used to configure connection quality monitoring notification trigger |
459 | * levels. | 471 | * levels. |
@@ -759,6 +771,9 @@ enum nl80211_commands { | |||
759 | * @NL80211_ATTR_IFNAME: network interface name | 771 | * @NL80211_ATTR_IFNAME: network interface name |
760 | * @NL80211_ATTR_IFTYPE: type of virtual interface, see &enum nl80211_iftype | 772 | * @NL80211_ATTR_IFTYPE: type of virtual interface, see &enum nl80211_iftype |
761 | * | 773 | * |
774 | * @NL80211_ATTR_WDEV: wireless device identifier, used for pseudo-devices | ||
775 | * that don't have a netdev (u64) | ||
776 | * | ||
762 | * @NL80211_ATTR_MAC: MAC address (various uses) | 777 | * @NL80211_ATTR_MAC: MAC address (various uses) |
763 | * | 778 | * |
764 | * @NL80211_ATTR_KEY_DATA: (temporal) key data; for TKIP this consists of | 779 | * @NL80211_ATTR_KEY_DATA: (temporal) key data; for TKIP this consists of |
@@ -769,6 +784,13 @@ enum nl80211_commands { | |||
769 | * section 7.3.2.25.1, e.g. 0x000FAC04) | 784 | * section 7.3.2.25.1, e.g. 0x000FAC04) |
770 | * @NL80211_ATTR_KEY_SEQ: transmit key sequence number (IV/PN) for TKIP and | 785 | * @NL80211_ATTR_KEY_SEQ: transmit key sequence number (IV/PN) for TKIP and |
771 | * CCMP keys, each six bytes in little endian | 786 | * CCMP keys, each six bytes in little endian |
787 | * @NL80211_ATTR_KEY_DEFAULT: Flag attribute indicating the key is default key | ||
788 | * @NL80211_ATTR_KEY_DEFAULT_MGMT: Flag attribute indicating the key is the | ||
789 | * default management key | ||
790 | * @NL80211_ATTR_CIPHER_SUITES_PAIRWISE: For crypto settings for connect or | ||
791 | * other commands, indicates which pairwise cipher suites are used | ||
792 | * @NL80211_ATTR_CIPHER_SUITE_GROUP: For crypto settings for connect or | ||
793 | * other commands, indicates which group cipher suite is used | ||
772 | * | 794 | * |
773 | * @NL80211_ATTR_BEACON_INTERVAL: beacon interval in TU | 795 | * @NL80211_ATTR_BEACON_INTERVAL: beacon interval in TU |
774 | * @NL80211_ATTR_DTIM_PERIOD: DTIM period for beaconing | 796 | * @NL80211_ATTR_DTIM_PERIOD: DTIM period for beaconing |
@@ -1004,6 +1026,8 @@ enum nl80211_commands { | |||
1004 | * @NL80211_ATTR_ACK: Flag attribute indicating that the frame was | 1026 | * @NL80211_ATTR_ACK: Flag attribute indicating that the frame was |
1005 | * acknowledged by the recipient. | 1027 | * acknowledged by the recipient. |
1006 | * | 1028 | * |
1029 | * @NL80211_ATTR_PS_STATE: powersave state, using &enum nl80211_ps_state values. | ||
1030 | * | ||
1007 | * @NL80211_ATTR_CQM: connection quality monitor configuration in a | 1031 | * @NL80211_ATTR_CQM: connection quality monitor configuration in a |
1008 | * nested attribute with %NL80211_ATTR_CQM_* sub-attributes. | 1032 | * nested attribute with %NL80211_ATTR_CQM_* sub-attributes. |
1009 | * | 1033 | * |
@@ -1061,7 +1085,7 @@ enum nl80211_commands { | |||
1061 | * flag isn't set, the frame will be rejected. This is also used as an | 1085 | * flag isn't set, the frame will be rejected. This is also used as an |
1062 | * nl80211 capability flag. | 1086 | * nl80211 capability flag. |
1063 | * | 1087 | * |
1064 | * @NL80211_ATTR_BSS_HTOPMODE: HT operation mode (u16) | 1088 | * @NL80211_ATTR_BSS_HT_OPMODE: HT operation mode (u16) |
1065 | * | 1089 | * |
1066 | * @NL80211_ATTR_KEY_DEFAULT_TYPES: A nested attribute containing flags | 1090 | * @NL80211_ATTR_KEY_DEFAULT_TYPES: A nested attribute containing flags |
1067 | * attributes, specifying what a key should be set as default as. | 1091 | * attributes, specifying what a key should be set as default as. |
@@ -1085,10 +1109,10 @@ enum nl80211_commands { | |||
1085 | * indicate which WoW triggers should be enabled. This is also | 1109 | * indicate which WoW triggers should be enabled. This is also |
1086 | * used by %NL80211_CMD_GET_WOWLAN to get the currently enabled WoWLAN | 1110 | * used by %NL80211_CMD_GET_WOWLAN to get the currently enabled WoWLAN |
1087 | * triggers. | 1111 | * triggers. |
1088 | 1112 | * | |
1089 | * @NL80211_ATTR_SCHED_SCAN_INTERVAL: Interval between scheduled scan | 1113 | * @NL80211_ATTR_SCHED_SCAN_INTERVAL: Interval between scheduled scan |
1090 | * cycles, in msecs. | 1114 | * cycles, in msecs. |
1091 | 1115 | * | |
1092 | * @NL80211_ATTR_SCHED_SCAN_MATCH: Nested attribute with one or more | 1116 | * @NL80211_ATTR_SCHED_SCAN_MATCH: Nested attribute with one or more |
1093 | * sets of attributes to match during scheduled scans. Only BSSs | 1117 | * sets of attributes to match during scheduled scans. Only BSSs |
1094 | * that match any of the sets will be reported. These are | 1118 | * that match any of the sets will be reported. These are |
@@ -1115,7 +1139,7 @@ enum nl80211_commands { | |||
1115 | * are managed in software: interfaces of these types aren't subject to | 1139 | * are managed in software: interfaces of these types aren't subject to |
1116 | * any restrictions in their number or combinations. | 1140 | * any restrictions in their number or combinations. |
1117 | * | 1141 | * |
1118 | * @%NL80211_ATTR_REKEY_DATA: nested attribute containing the information | 1142 | * @NL80211_ATTR_REKEY_DATA: nested attribute containing the information |
1119 | * necessary for GTK rekeying in the device, see &enum nl80211_rekey_data. | 1143 | * necessary for GTK rekeying in the device, see &enum nl80211_rekey_data. |
1120 | * | 1144 | * |
1121 | * @NL80211_ATTR_SCAN_SUPP_RATES: rates per to be advertised as supported in scan, | 1145 | * @NL80211_ATTR_SCAN_SUPP_RATES: rates per to be advertised as supported in scan, |
@@ -1182,7 +1206,6 @@ enum nl80211_commands { | |||
1182 | * @NL80211_ATTR_FEATURE_FLAGS: This u32 attribute contains flags from | 1206 | * @NL80211_ATTR_FEATURE_FLAGS: This u32 attribute contains flags from |
1183 | * &enum nl80211_feature_flags and is advertised in wiphy information. | 1207 | * &enum nl80211_feature_flags and is advertised in wiphy information. |
1184 | * @NL80211_ATTR_PROBE_RESP_OFFLOAD: Indicates that the HW responds to probe | 1208 | * @NL80211_ATTR_PROBE_RESP_OFFLOAD: Indicates that the HW responds to probe |
1185 | * | ||
1186 | * requests while operating in AP-mode. | 1209 | * requests while operating in AP-mode. |
1187 | * This attribute holds a bitmap of the supported protocols for | 1210 | * This attribute holds a bitmap of the supported protocols for |
1188 | * offloading (see &enum nl80211_probe_resp_offload_support_attr). | 1211 | * offloading (see &enum nl80211_probe_resp_offload_support_attr). |
@@ -1222,6 +1245,12 @@ enum nl80211_commands { | |||
1222 | * @NL80211_ATTR_BG_SCAN_PERIOD: Background scan period in seconds | 1245 | * @NL80211_ATTR_BG_SCAN_PERIOD: Background scan period in seconds |
1223 | * or 0 to disable background scan. | 1246 | * or 0 to disable background scan. |
1224 | * | 1247 | * |
1248 | * @NL80211_ATTR_USER_REG_HINT_TYPE: type of regulatory hint passed from | ||
1249 | * userspace. If unset it is assumed the hint comes directly from | ||
1250 | * a user. If set code could specify exactly what type of source | ||
1251 | * was used to provide the hint. For the different types of | ||
1252 | * allowed user regulatory hints see nl80211_user_reg_hint_type. | ||
1253 | * | ||
1225 | * @NL80211_ATTR_MAX: highest attribute number currently defined | 1254 | * @NL80211_ATTR_MAX: highest attribute number currently defined |
1226 | * @__NL80211_ATTR_AFTER_LAST: internal use | 1255 | * @__NL80211_ATTR_AFTER_LAST: internal use |
1227 | */ | 1256 | */ |
@@ -1473,6 +1502,10 @@ enum nl80211_attrs { | |||
1473 | 1502 | ||
1474 | NL80211_ATTR_BG_SCAN_PERIOD, | 1503 | NL80211_ATTR_BG_SCAN_PERIOD, |
1475 | 1504 | ||
1505 | NL80211_ATTR_WDEV, | ||
1506 | |||
1507 | NL80211_ATTR_USER_REG_HINT_TYPE, | ||
1508 | |||
1476 | /* add attributes here, update the policy in nl80211.c */ | 1509 | /* add attributes here, update the policy in nl80211.c */ |
1477 | 1510 | ||
1478 | __NL80211_ATTR_AFTER_LAST, | 1511 | __NL80211_ATTR_AFTER_LAST, |
@@ -1520,6 +1553,13 @@ enum nl80211_attrs { | |||
1520 | #define NL80211_MAX_NR_CIPHER_SUITES 5 | 1553 | #define NL80211_MAX_NR_CIPHER_SUITES 5 |
1521 | #define NL80211_MAX_NR_AKM_SUITES 2 | 1554 | #define NL80211_MAX_NR_AKM_SUITES 2 |
1522 | 1555 | ||
1556 | #define NL80211_MIN_REMAIN_ON_CHANNEL_TIME 10 | ||
1557 | |||
1558 | /* default RSSI threshold for scan results if none specified. */ | ||
1559 | #define NL80211_SCAN_RSSI_THOLD_OFF -300 | ||
1560 | |||
1561 | #define NL80211_CQM_TXE_MAX_INTVL 1800 | ||
1562 | |||
1523 | /** | 1563 | /** |
1524 | * enum nl80211_iftype - (virtual) interface types | 1564 | * enum nl80211_iftype - (virtual) interface types |
1525 | * | 1565 | * |
@@ -1613,12 +1653,20 @@ struct nl80211_sta_flag_update { | |||
1613 | * | 1653 | * |
1614 | * These attribute types are used with %NL80211_STA_INFO_TXRATE | 1654 | * These attribute types are used with %NL80211_STA_INFO_TXRATE |
1615 | * when getting information about the bitrate of a station. | 1655 | * when getting information about the bitrate of a station. |
1656 | * There are 2 attributes for bitrate, a legacy one that represents | ||
1657 | * a 16-bit value, and new one that represents a 32-bit value. | ||
1658 | * If the rate value fits into 16 bit, both attributes are reported | ||
1659 | * with the same value. If the rate is too high to fit into 16 bits | ||
1660 | * (>6.5535Gbps) only 32-bit attribute is included. | ||
1661 | * User space tools encouraged to use the 32-bit attribute and fall | ||
1662 | * back to the 16-bit one for compatibility with older kernels. | ||
1616 | * | 1663 | * |
1617 | * @__NL80211_RATE_INFO_INVALID: attribute number 0 is reserved | 1664 | * @__NL80211_RATE_INFO_INVALID: attribute number 0 is reserved |
1618 | * @NL80211_RATE_INFO_BITRATE: total bitrate (u16, 100kbit/s) | 1665 | * @NL80211_RATE_INFO_BITRATE: total bitrate (u16, 100kbit/s) |
1619 | * @NL80211_RATE_INFO_MCS: mcs index for 802.11n (u8) | 1666 | * @NL80211_RATE_INFO_MCS: mcs index for 802.11n (u8) |
1620 | * @NL80211_RATE_INFO_40_MHZ_WIDTH: 40 Mhz dualchannel bitrate | 1667 | * @NL80211_RATE_INFO_40_MHZ_WIDTH: 40 Mhz dualchannel bitrate |
1621 | * @NL80211_RATE_INFO_SHORT_GI: 400ns guard interval | 1668 | * @NL80211_RATE_INFO_SHORT_GI: 400ns guard interval |
1669 | * @NL80211_RATE_INFO_BITRATE32: total bitrate (u32, 100kbit/s) | ||
1622 | * @NL80211_RATE_INFO_MAX: highest rate_info number currently defined | 1670 | * @NL80211_RATE_INFO_MAX: highest rate_info number currently defined |
1623 | * @__NL80211_RATE_INFO_AFTER_LAST: internal use | 1671 | * @__NL80211_RATE_INFO_AFTER_LAST: internal use |
1624 | */ | 1672 | */ |
@@ -1628,6 +1676,7 @@ enum nl80211_rate_info { | |||
1628 | NL80211_RATE_INFO_MCS, | 1676 | NL80211_RATE_INFO_MCS, |
1629 | NL80211_RATE_INFO_40_MHZ_WIDTH, | 1677 | NL80211_RATE_INFO_40_MHZ_WIDTH, |
1630 | NL80211_RATE_INFO_SHORT_GI, | 1678 | NL80211_RATE_INFO_SHORT_GI, |
1679 | NL80211_RATE_INFO_BITRATE32, | ||
1631 | 1680 | ||
1632 | /* keep last */ | 1681 | /* keep last */ |
1633 | __NL80211_RATE_INFO_AFTER_LAST, | 1682 | __NL80211_RATE_INFO_AFTER_LAST, |
@@ -1788,6 +1837,9 @@ enum nl80211_mpath_info { | |||
1788 | * @NL80211_BAND_ATTR_HT_CAPA: HT capabilities, as in the HT information IE | 1837 | * @NL80211_BAND_ATTR_HT_CAPA: HT capabilities, as in the HT information IE |
1789 | * @NL80211_BAND_ATTR_HT_AMPDU_FACTOR: A-MPDU factor, as in 11n | 1838 | * @NL80211_BAND_ATTR_HT_AMPDU_FACTOR: A-MPDU factor, as in 11n |
1790 | * @NL80211_BAND_ATTR_HT_AMPDU_DENSITY: A-MPDU density, as in 11n | 1839 | * @NL80211_BAND_ATTR_HT_AMPDU_DENSITY: A-MPDU density, as in 11n |
1840 | * @NL80211_BAND_ATTR_VHT_MCS_SET: 32-byte attribute containing the MCS set as | ||
1841 | * defined in 802.11ac | ||
1842 | * @NL80211_BAND_ATTR_VHT_CAPA: VHT capabilities, as in the HT information IE | ||
1791 | * @NL80211_BAND_ATTR_MAX: highest band attribute currently defined | 1843 | * @NL80211_BAND_ATTR_MAX: highest band attribute currently defined |
1792 | * @__NL80211_BAND_ATTR_AFTER_LAST: internal use | 1844 | * @__NL80211_BAND_ATTR_AFTER_LAST: internal use |
1793 | */ | 1845 | */ |
@@ -1801,6 +1853,9 @@ enum nl80211_band_attr { | |||
1801 | NL80211_BAND_ATTR_HT_AMPDU_FACTOR, | 1853 | NL80211_BAND_ATTR_HT_AMPDU_FACTOR, |
1802 | NL80211_BAND_ATTR_HT_AMPDU_DENSITY, | 1854 | NL80211_BAND_ATTR_HT_AMPDU_DENSITY, |
1803 | 1855 | ||
1856 | NL80211_BAND_ATTR_VHT_MCS_SET, | ||
1857 | NL80211_BAND_ATTR_VHT_CAPA, | ||
1858 | |||
1804 | /* keep last */ | 1859 | /* keep last */ |
1805 | __NL80211_BAND_ATTR_AFTER_LAST, | 1860 | __NL80211_BAND_ATTR_AFTER_LAST, |
1806 | NL80211_BAND_ATTR_MAX = __NL80211_BAND_ATTR_AFTER_LAST - 1 | 1861 | NL80211_BAND_ATTR_MAX = __NL80211_BAND_ATTR_AFTER_LAST - 1 |
@@ -1952,6 +2007,8 @@ enum nl80211_reg_rule_attr { | |||
1952 | * @__NL80211_SCHED_SCAN_MATCH_ATTR_INVALID: attribute number 0 is reserved | 2007 | * @__NL80211_SCHED_SCAN_MATCH_ATTR_INVALID: attribute number 0 is reserved |
1953 | * @NL80211_SCHED_SCAN_MATCH_ATTR_SSID: SSID to be used for matching, | 2008 | * @NL80211_SCHED_SCAN_MATCH_ATTR_SSID: SSID to be used for matching, |
1954 | * only report BSS with matching SSID. | 2009 | * only report BSS with matching SSID. |
2010 | * @NL80211_SCHED_SCAN_MATCH_ATTR_RSSI: RSSI threshold (in dBm) for reporting a | ||
2011 | * BSS in scan results. Filtering is turned off if not specified. | ||
1955 | * @NL80211_SCHED_SCAN_MATCH_ATTR_MAX: highest scheduled scan filter | 2012 | * @NL80211_SCHED_SCAN_MATCH_ATTR_MAX: highest scheduled scan filter |
1956 | * attribute number currently defined | 2013 | * attribute number currently defined |
1957 | * @__NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST: internal use | 2014 | * @__NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST: internal use |
@@ -1959,7 +2016,8 @@ enum nl80211_reg_rule_attr { | |||
1959 | enum nl80211_sched_scan_match_attr { | 2016 | enum nl80211_sched_scan_match_attr { |
1960 | __NL80211_SCHED_SCAN_MATCH_ATTR_INVALID, | 2017 | __NL80211_SCHED_SCAN_MATCH_ATTR_INVALID, |
1961 | 2018 | ||
1962 | NL80211_ATTR_SCHED_SCAN_MATCH_SSID, | 2019 | NL80211_SCHED_SCAN_MATCH_ATTR_SSID, |
2020 | NL80211_SCHED_SCAN_MATCH_ATTR_RSSI, | ||
1963 | 2021 | ||
1964 | /* keep last */ | 2022 | /* keep last */ |
1965 | __NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST, | 2023 | __NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST, |
@@ -1967,6 +2025,9 @@ enum nl80211_sched_scan_match_attr { | |||
1967 | __NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST - 1 | 2025 | __NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST - 1 |
1968 | }; | 2026 | }; |
1969 | 2027 | ||
2028 | /* only for backward compatibility */ | ||
2029 | #define NL80211_ATTR_SCHED_SCAN_MATCH_SSID NL80211_SCHED_SCAN_MATCH_ATTR_SSID | ||
2030 | |||
1970 | /** | 2031 | /** |
1971 | * enum nl80211_reg_rule_flags - regulatory rule flags | 2032 | * enum nl80211_reg_rule_flags - regulatory rule flags |
1972 | * | 2033 | * |
@@ -2008,6 +2069,26 @@ enum nl80211_dfs_regions { | |||
2008 | }; | 2069 | }; |
2009 | 2070 | ||
2010 | /** | 2071 | /** |
2072 | * enum nl80211_user_reg_hint_type - type of user regulatory hint | ||
2073 | * | ||
2074 | * @NL80211_USER_REG_HINT_USER: a user sent the hint. This is always | ||
2075 | * assumed if the attribute is not set. | ||
2076 | * @NL80211_USER_REG_HINT_CELL_BASE: the hint comes from a cellular | ||
2077 | * base station. Device drivers that have been tested to work | ||
2078 | * properly to support this type of hint can enable these hints | ||
2079 | * by setting the NL80211_FEATURE_CELL_BASE_REG_HINTS feature | ||
2080 | * capability on the struct wiphy. The wireless core will | ||
2081 | * ignore all cell base station hints until at least one device | ||
2082 | * present has been registered with the wireless core that | ||
2083 | * has listed NL80211_FEATURE_CELL_BASE_REG_HINTS as a | ||
2084 | * supported feature. | ||
2085 | */ | ||
2086 | enum nl80211_user_reg_hint_type { | ||
2087 | NL80211_USER_REG_HINT_USER = 0, | ||
2088 | NL80211_USER_REG_HINT_CELL_BASE = 1, | ||
2089 | }; | ||
2090 | |||
2091 | /** | ||
2011 | * enum nl80211_survey_info - survey information | 2092 | * enum nl80211_survey_info - survey information |
2012 | * | 2093 | * |
2013 | * These attribute types are used with %NL80211_ATTR_SURVEY_INFO | 2094 | * These attribute types are used with %NL80211_ATTR_SURVEY_INFO |
@@ -2086,78 +2167,91 @@ enum nl80211_mntr_flags { | |||
2086 | * @__NL80211_MESHCONF_INVALID: internal use | 2167 | * @__NL80211_MESHCONF_INVALID: internal use |
2087 | * | 2168 | * |
2088 | * @NL80211_MESHCONF_RETRY_TIMEOUT: specifies the initial retry timeout in | 2169 | * @NL80211_MESHCONF_RETRY_TIMEOUT: specifies the initial retry timeout in |
2089 | * millisecond units, used by the Peer Link Open message | 2170 | * millisecond units, used by the Peer Link Open message |
2090 | * | 2171 | * |
2091 | * @NL80211_MESHCONF_CONFIRM_TIMEOUT: specifies the initial confirm timeout, in | 2172 | * @NL80211_MESHCONF_CONFIRM_TIMEOUT: specifies the initial confirm timeout, in |
2092 | * millisecond units, used by the peer link management to close a peer link | 2173 | * millisecond units, used by the peer link management to close a peer link |
2093 | * | 2174 | * |
2094 | * @NL80211_MESHCONF_HOLDING_TIMEOUT: specifies the holding timeout, in | 2175 | * @NL80211_MESHCONF_HOLDING_TIMEOUT: specifies the holding timeout, in |
2095 | * millisecond units | 2176 | * millisecond units |
2096 | * | 2177 | * |
2097 | * @NL80211_MESHCONF_MAX_PEER_LINKS: maximum number of peer links allowed | 2178 | * @NL80211_MESHCONF_MAX_PEER_LINKS: maximum number of peer links allowed |
2098 | * on this mesh interface | 2179 | * on this mesh interface |
2099 | * | 2180 | * |
2100 | * @NL80211_MESHCONF_MAX_RETRIES: specifies the maximum number of peer link | 2181 | * @NL80211_MESHCONF_MAX_RETRIES: specifies the maximum number of peer link |
2101 | * open retries that can be sent to establish a new peer link instance in a | 2182 | * open retries that can be sent to establish a new peer link instance in a |
2102 | * mesh | 2183 | * mesh |
2103 | * | 2184 | * |
2104 | * @NL80211_MESHCONF_TTL: specifies the value of TTL field set at a source mesh | 2185 | * @NL80211_MESHCONF_TTL: specifies the value of TTL field set at a source mesh |
2105 | * point. | 2186 | * point. |
2106 | * | 2187 | * |
2107 | * @NL80211_MESHCONF_AUTO_OPEN_PLINKS: whether we should automatically | 2188 | * @NL80211_MESHCONF_AUTO_OPEN_PLINKS: whether we should automatically |
2108 | * open peer links when we detect compatible mesh peers. | 2189 | * open peer links when we detect compatible mesh peers. |
2109 | * | 2190 | * |
2110 | * @NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES: the number of action frames | 2191 | * @NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES: the number of action frames |
2111 | * containing a PREQ that an MP can send to a particular destination (path | 2192 | * containing a PREQ that an MP can send to a particular destination (path |
2112 | * target) | 2193 | * target) |
2113 | * | 2194 | * |
2114 | * @NL80211_MESHCONF_PATH_REFRESH_TIME: how frequently to refresh mesh paths | 2195 | * @NL80211_MESHCONF_PATH_REFRESH_TIME: how frequently to refresh mesh paths |
2115 | * (in milliseconds) | 2196 | * (in milliseconds) |
2116 | * | 2197 | * |
2117 | * @NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT: minimum length of time to wait | 2198 | * @NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT: minimum length of time to wait |
2118 | * until giving up on a path discovery (in milliseconds) | 2199 | * until giving up on a path discovery (in milliseconds) |
2119 | * | 2200 | * |
2120 | * @NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT: The time (in TUs) for which mesh | 2201 | * @NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT: The time (in TUs) for which mesh |
2121 | * points receiving a PREQ shall consider the forwarding information from the | 2202 | * points receiving a PREQ shall consider the forwarding information from |
2122 | * root to be valid. (TU = time unit) | 2203 | * the root to be valid. (TU = time unit) |
2123 | * | 2204 | * |
2124 | * @NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL: The minimum interval of time (in | 2205 | * @NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL: The minimum interval of time (in |
2125 | * TUs) during which an MP can send only one action frame containing a PREQ | 2206 | * TUs) during which an MP can send only one action frame containing a PREQ |
2126 | * reference element | 2207 | * reference element |
2127 | * | 2208 | * |
2128 | * @NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME: The interval of time (in TUs) | 2209 | * @NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME: The interval of time (in TUs) |
2129 | * that it takes for an HWMP information element to propagate across the mesh | 2210 | * that it takes for an HWMP information element to propagate across the |
2211 | * mesh | ||
2130 | * | 2212 | * |
2131 | * @NL80211_MESHCONF_HWMP_ROOTMODE: whether root mode is enabled or not | 2213 | * @NL80211_MESHCONF_HWMP_ROOTMODE: whether root mode is enabled or not |
2132 | * | 2214 | * |
2133 | * @NL80211_MESHCONF_ELEMENT_TTL: specifies the value of TTL field set at a | 2215 | * @NL80211_MESHCONF_ELEMENT_TTL: specifies the value of TTL field set at a |
2134 | * source mesh point for path selection elements. | 2216 | * source mesh point for path selection elements. |
2135 | * | 2217 | * |
2136 | * @NL80211_MESHCONF_HWMP_RANN_INTERVAL: The interval of time (in TUs) between | 2218 | * @NL80211_MESHCONF_HWMP_RANN_INTERVAL: The interval of time (in TUs) between |
2137 | * root announcements are transmitted. | 2219 | * root announcements are transmitted. |
2138 | * | 2220 | * |
2139 | * @NL80211_MESHCONF_GATE_ANNOUNCEMENTS: Advertise that this mesh station has | 2221 | * @NL80211_MESHCONF_GATE_ANNOUNCEMENTS: Advertise that this mesh station has |
2140 | * access to a broader network beyond the MBSS. This is done via Root | 2222 | * access to a broader network beyond the MBSS. This is done via Root |
2141 | * Announcement frames. | 2223 | * Announcement frames. |
2142 | * | 2224 | * |
2143 | * @NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL: The minimum interval of time (in | 2225 | * @NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL: The minimum interval of time (in |
2144 | * TUs) during which a mesh STA can send only one Action frame containing a | 2226 | * TUs) during which a mesh STA can send only one Action frame containing a |
2145 | * PERR element. | 2227 | * PERR element. |
2146 | * | 2228 | * |
2147 | * @NL80211_MESHCONF_FORWARDING: set Mesh STA as forwarding or non-forwarding | 2229 | * @NL80211_MESHCONF_FORWARDING: set Mesh STA as forwarding or non-forwarding |
2148 | * or forwarding entity (default is TRUE - forwarding entity) | 2230 | * or forwarding entity (default is TRUE - forwarding entity) |
2149 | * | 2231 | * |
2150 | * @NL80211_MESHCONF_RSSI_THRESHOLD: RSSI threshold in dBm. This specifies the | 2232 | * @NL80211_MESHCONF_RSSI_THRESHOLD: RSSI threshold in dBm. This specifies the |
2151 | * threshold for average signal strength of candidate station to establish | 2233 | * threshold for average signal strength of candidate station to establish |
2152 | * a peer link. | 2234 | * a peer link. |
2153 | * | ||
2154 | * @NL80211_MESHCONF_ATTR_MAX: highest possible mesh configuration attribute | ||
2155 | * | 2235 | * |
2156 | * @NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR: maximum number of neighbors | 2236 | * @NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR: maximum number of neighbors |
2157 | * to synchronize to for 11s default synchronization method (see 11C.12.2.2) | 2237 | * to synchronize to for 11s default synchronization method |
2238 | * (see 11C.12.2.2) | ||
2158 | * | 2239 | * |
2159 | * @NL80211_MESHCONF_HT_OPMODE: set mesh HT protection mode. | 2240 | * @NL80211_MESHCONF_HT_OPMODE: set mesh HT protection mode. |
2160 | * | 2241 | * |
2242 | * @NL80211_MESHCONF_ATTR_MAX: highest possible mesh configuration attribute | ||
2243 | * | ||
2244 | * @NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT: The time (in TUs) for | ||
2245 | * which mesh STAs receiving a proactive PREQ shall consider the forwarding | ||
2246 | * information to the root mesh STA to be valid. | ||
2247 | * | ||
2248 | * @NL80211_MESHCONF_HWMP_ROOT_INTERVAL: The interval of time (in TUs) between | ||
2249 | * proactive PREQs are transmitted. | ||
2250 | * | ||
2251 | * @NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL: The minimum interval of time | ||
2252 | * (in TUs) during which a mesh STA can send only one Action frame | ||
2253 | * containing a PREQ element for root path confirmation. | ||
2254 | * | ||
2161 | * @__NL80211_MESHCONF_ATTR_AFTER_LAST: internal use | 2255 | * @__NL80211_MESHCONF_ATTR_AFTER_LAST: internal use |
2162 | */ | 2256 | */ |
2163 | enum nl80211_meshconf_params { | 2257 | enum nl80211_meshconf_params { |
@@ -2184,6 +2278,9 @@ enum nl80211_meshconf_params { | |||
2184 | NL80211_MESHCONF_RSSI_THRESHOLD, | 2278 | NL80211_MESHCONF_RSSI_THRESHOLD, |
2185 | NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, | 2279 | NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, |
2186 | NL80211_MESHCONF_HT_OPMODE, | 2280 | NL80211_MESHCONF_HT_OPMODE, |
2281 | NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, | ||
2282 | NL80211_MESHCONF_HWMP_ROOT_INTERVAL, | ||
2283 | NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, | ||
2187 | 2284 | ||
2188 | /* keep last */ | 2285 | /* keep last */ |
2189 | __NL80211_MESHCONF_ATTR_AFTER_LAST, | 2286 | __NL80211_MESHCONF_ATTR_AFTER_LAST, |
@@ -2199,34 +2296,36 @@ enum nl80211_meshconf_params { | |||
2199 | * @__NL80211_MESH_SETUP_INVALID: Internal use | 2296 | * @__NL80211_MESH_SETUP_INVALID: Internal use |
2200 | * | 2297 | * |
2201 | * @NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL: Enable this option to use a | 2298 | * @NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL: Enable this option to use a |
2202 | * vendor specific path selection algorithm or disable it to use the default | 2299 | * vendor specific path selection algorithm or disable it to use the |
2203 | * HWMP. | 2300 | * default HWMP. |
2204 | * | 2301 | * |
2205 | * @NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC: Enable this option to use a | 2302 | * @NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC: Enable this option to use a |
2206 | * vendor specific path metric or disable it to use the default Airtime | 2303 | * vendor specific path metric or disable it to use the default Airtime |
2207 | * metric. | 2304 | * metric. |
2208 | * | 2305 | * |
2209 | * @NL80211_MESH_SETUP_IE: Information elements for this mesh, for instance, a | 2306 | * @NL80211_MESH_SETUP_IE: Information elements for this mesh, for instance, a |
2210 | * robust security network ie, or a vendor specific information element that | 2307 | * robust security network ie, or a vendor specific information element |
2211 | * vendors will use to identify the path selection methods and metrics in use. | 2308 | * that vendors will use to identify the path selection methods and |
2309 | * metrics in use. | ||
2212 | * | 2310 | * |
2213 | * @NL80211_MESH_SETUP_USERSPACE_AUTH: Enable this option if an authentication | 2311 | * @NL80211_MESH_SETUP_USERSPACE_AUTH: Enable this option if an authentication |
2214 | * daemon will be authenticating mesh candidates. | 2312 | * daemon will be authenticating mesh candidates. |
2215 | * | 2313 | * |
2216 | * @NL80211_MESH_SETUP_USERSPACE_AMPE: Enable this option if an authentication | 2314 | * @NL80211_MESH_SETUP_USERSPACE_AMPE: Enable this option if an authentication |
2217 | * daemon will be securing peer link frames. AMPE is a secured version of Mesh | 2315 | * daemon will be securing peer link frames. AMPE is a secured version of |
2218 | * Peering Management (MPM) and is implemented with the assistance of a | 2316 | * Mesh Peering Management (MPM) and is implemented with the assistance of |
2219 | * userspace daemon. When this flag is set, the kernel will send peer | 2317 | * a userspace daemon. When this flag is set, the kernel will send peer |
2220 | * management frames to a userspace daemon that will implement AMPE | 2318 | * management frames to a userspace daemon that will implement AMPE |
2221 | * functionality (security capabilities selection, key confirmation, and key | 2319 | * functionality (security capabilities selection, key confirmation, and |
2222 | * management). When the flag is unset (default), the kernel can autonomously | 2320 | * key management). When the flag is unset (default), the kernel can |
2223 | * complete (unsecured) mesh peering without the need of a userspace daemon. | 2321 | * autonomously complete (unsecured) mesh peering without the need of a |
2224 | * | 2322 | * userspace daemon. |
2225 | * @NL80211_MESH_SETUP_ATTR_MAX: highest possible mesh setup attribute number | ||
2226 | * | 2323 | * |
2227 | * @NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC: Enable this option to use a | 2324 | * @NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC: Enable this option to use a |
2228 | * vendor specific synchronization method or disable it to use the default | 2325 | * vendor specific synchronization method or disable it to use the default |
2229 | * neighbor offset synchronization | 2326 | * neighbor offset synchronization |
2327 | * | ||
2328 | * @NL80211_MESH_SETUP_ATTR_MAX: highest possible mesh setup attribute number | ||
2230 | * | 2329 | * |
2231 | * @__NL80211_MESH_SETUP_ATTR_AFTER_LAST: Internal use | 2330 | * @__NL80211_MESH_SETUP_ATTR_AFTER_LAST: Internal use |
2232 | */ | 2331 | */ |
@@ -2490,12 +2589,19 @@ enum nl80211_tx_rate_attributes { | |||
2490 | * enum nl80211_band - Frequency band | 2589 | * enum nl80211_band - Frequency band |
2491 | * @NL80211_BAND_2GHZ: 2.4 GHz ISM band | 2590 | * @NL80211_BAND_2GHZ: 2.4 GHz ISM band |
2492 | * @NL80211_BAND_5GHZ: around 5 GHz band (4.9 - 5.7 GHz) | 2591 | * @NL80211_BAND_5GHZ: around 5 GHz band (4.9 - 5.7 GHz) |
2592 | * @NL80211_BAND_60GHZ: around 60 GHz band (58.32 - 64.80 GHz) | ||
2493 | */ | 2593 | */ |
2494 | enum nl80211_band { | 2594 | enum nl80211_band { |
2495 | NL80211_BAND_2GHZ, | 2595 | NL80211_BAND_2GHZ, |
2496 | NL80211_BAND_5GHZ, | 2596 | NL80211_BAND_5GHZ, |
2597 | NL80211_BAND_60GHZ, | ||
2497 | }; | 2598 | }; |
2498 | 2599 | ||
2600 | /** | ||
2601 | * enum nl80211_ps_state - powersave state | ||
2602 | * @NL80211_PS_DISABLED: powersave is disabled | ||
2603 | * @NL80211_PS_ENABLED: powersave is enabled | ||
2604 | */ | ||
2499 | enum nl80211_ps_state { | 2605 | enum nl80211_ps_state { |
2500 | NL80211_PS_DISABLED, | 2606 | NL80211_PS_DISABLED, |
2501 | NL80211_PS_ENABLED, | 2607 | NL80211_PS_ENABLED, |
@@ -2513,6 +2619,17 @@ enum nl80211_ps_state { | |||
2513 | * @NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT: RSSI threshold event | 2619 | * @NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT: RSSI threshold event |
2514 | * @NL80211_ATTR_CQM_PKT_LOSS_EVENT: a u32 value indicating that this many | 2620 | * @NL80211_ATTR_CQM_PKT_LOSS_EVENT: a u32 value indicating that this many |
2515 | * consecutive packets were not acknowledged by the peer | 2621 | * consecutive packets were not acknowledged by the peer |
2622 | * @NL80211_ATTR_CQM_TXE_RATE: TX error rate in %. Minimum % of TX failures | ||
2623 | * during the given %NL80211_ATTR_CQM_TXE_INTVL before an | ||
2624 | * %NL80211_CMD_NOTIFY_CQM with reported %NL80211_ATTR_CQM_TXE_RATE and | ||
2625 | * %NL80211_ATTR_CQM_TXE_PKTS is generated. | ||
2626 | * @NL80211_ATTR_CQM_TXE_PKTS: number of attempted packets in a given | ||
2627 | * %NL80211_ATTR_CQM_TXE_INTVL before %NL80211_ATTR_CQM_TXE_RATE is | ||
2628 | * checked. | ||
2629 | * @NL80211_ATTR_CQM_TXE_INTVL: interval in seconds. Specifies the periodic | ||
2630 | * interval in which %NL80211_ATTR_CQM_TXE_PKTS and | ||
2631 | * %NL80211_ATTR_CQM_TXE_RATE must be satisfied before generating an | ||
2632 | * %NL80211_CMD_NOTIFY_CQM. Set to 0 to turn off TX error reporting. | ||
2516 | * @__NL80211_ATTR_CQM_AFTER_LAST: internal | 2633 | * @__NL80211_ATTR_CQM_AFTER_LAST: internal |
2517 | * @NL80211_ATTR_CQM_MAX: highest key attribute | 2634 | * @NL80211_ATTR_CQM_MAX: highest key attribute |
2518 | */ | 2635 | */ |
@@ -2522,6 +2639,9 @@ enum nl80211_attr_cqm { | |||
2522 | NL80211_ATTR_CQM_RSSI_HYST, | 2639 | NL80211_ATTR_CQM_RSSI_HYST, |
2523 | NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT, | 2640 | NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT, |
2524 | NL80211_ATTR_CQM_PKT_LOSS_EVENT, | 2641 | NL80211_ATTR_CQM_PKT_LOSS_EVENT, |
2642 | NL80211_ATTR_CQM_TXE_RATE, | ||
2643 | NL80211_ATTR_CQM_TXE_PKTS, | ||
2644 | NL80211_ATTR_CQM_TXE_INTVL, | ||
2525 | 2645 | ||
2526 | /* keep last */ | 2646 | /* keep last */ |
2527 | __NL80211_ATTR_CQM_AFTER_LAST, | 2647 | __NL80211_ATTR_CQM_AFTER_LAST, |
@@ -2534,10 +2654,14 @@ enum nl80211_attr_cqm { | |||
2534 | * configured threshold | 2654 | * configured threshold |
2535 | * @NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH: The RSSI is higher than the | 2655 | * @NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH: The RSSI is higher than the |
2536 | * configured threshold | 2656 | * configured threshold |
2657 | * @NL80211_CQM_RSSI_BEACON_LOSS_EVENT: The device experienced beacon loss. | ||
2658 | * (Note that deauth/disassoc will still follow if the AP is not | ||
2659 | * available. This event might get used as roaming event, etc.) | ||
2537 | */ | 2660 | */ |
2538 | enum nl80211_cqm_rssi_threshold_event { | 2661 | enum nl80211_cqm_rssi_threshold_event { |
2539 | NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW, | 2662 | NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW, |
2540 | NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH, | 2663 | NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH, |
2664 | NL80211_CQM_RSSI_BEACON_LOSS_EVENT, | ||
2541 | }; | 2665 | }; |
2542 | 2666 | ||
2543 | 2667 | ||
@@ -2867,11 +2991,15 @@ enum nl80211_ap_sme_features { | |||
2867 | * @NL80211_FEATURE_HT_IBSS: This driver supports IBSS with HT datarates. | 2991 | * @NL80211_FEATURE_HT_IBSS: This driver supports IBSS with HT datarates. |
2868 | * @NL80211_FEATURE_INACTIVITY_TIMER: This driver takes care of freeing up | 2992 | * @NL80211_FEATURE_INACTIVITY_TIMER: This driver takes care of freeing up |
2869 | * the connected inactive stations in AP mode. | 2993 | * the connected inactive stations in AP mode. |
2994 | * @NL80211_FEATURE_CELL_BASE_REG_HINTS: This driver has been tested | ||
2995 | * to work properly to suppport receiving regulatory hints from | ||
2996 | * cellular base stations. | ||
2870 | */ | 2997 | */ |
2871 | enum nl80211_feature_flags { | 2998 | enum nl80211_feature_flags { |
2872 | NL80211_FEATURE_SK_TX_STATUS = 1 << 0, | 2999 | NL80211_FEATURE_SK_TX_STATUS = 1 << 0, |
2873 | NL80211_FEATURE_HT_IBSS = 1 << 1, | 3000 | NL80211_FEATURE_HT_IBSS = 1 << 1, |
2874 | NL80211_FEATURE_INACTIVITY_TIMER = 1 << 2, | 3001 | NL80211_FEATURE_INACTIVITY_TIMER = 1 << 2, |
3002 | NL80211_FEATURE_CELL_BASE_REG_HINTS = 1 << 3, | ||
2875 | }; | 3003 | }; |
2876 | 3004 | ||
2877 | /** | 3005 | /** |
diff --git a/include/linux/nl802154.h b/include/linux/nl802154.h index 5a3db3aa5f17..fd4f2d1cdf6c 100644 --- a/include/linux/nl802154.h +++ b/include/linux/nl802154.h | |||
@@ -130,18 +130,8 @@ enum { | |||
130 | enum { | 130 | enum { |
131 | __IEEE802154_DEV_INVALID = -1, | 131 | __IEEE802154_DEV_INVALID = -1, |
132 | 132 | ||
133 | /* TODO: | 133 | IEEE802154_DEV_WPAN, |
134 | * Nowadays three device types supported by this stack at linux-zigbee | 134 | IEEE802154_DEV_MONITOR, |
135 | * project: WPAN = 0, MONITOR = 1 and SMAC = 2. | ||
136 | * | ||
137 | * Since this stack implementation exists many years, it's definitely | ||
138 | * bad idea to change the assigned values due to they are already used | ||
139 | * by third-party userspace software like: iz-tools, wireshark... | ||
140 | * | ||
141 | * Currently only monitor device is added and initialized by '1' for | ||
142 | * compatibility. | ||
143 | */ | ||
144 | IEEE802154_DEV_MONITOR = 1, | ||
145 | 135 | ||
146 | __IEEE802154_DEV_MAX, | 136 | __IEEE802154_DEV_MAX, |
147 | }; | 137 | }; |
diff --git a/include/linux/of.h b/include/linux/of.h index 2ec1083af7ff..42c2a58328c1 100644 --- a/include/linux/of.h +++ b/include/linux/of.h | |||
@@ -163,6 +163,11 @@ static inline int of_node_to_nid(struct device_node *np) { return -1; } | |||
163 | #define of_node_to_nid of_node_to_nid | 163 | #define of_node_to_nid of_node_to_nid |
164 | #endif | 164 | #endif |
165 | 165 | ||
166 | static inline const char* of_node_full_name(struct device_node *np) | ||
167 | { | ||
168 | return np ? np->full_name : "<no-node>"; | ||
169 | } | ||
170 | |||
166 | extern struct device_node *of_find_node_by_name(struct device_node *from, | 171 | extern struct device_node *of_find_node_by_name(struct device_node *from, |
167 | const char *name); | 172 | const char *name); |
168 | #define for_each_node_by_name(dn, name) \ | 173 | #define for_each_node_by_name(dn, name) \ |
@@ -260,8 +265,7 @@ extern int of_machine_is_compatible(const char *compat); | |||
260 | extern int prom_add_property(struct device_node* np, struct property* prop); | 265 | extern int prom_add_property(struct device_node* np, struct property* prop); |
261 | extern int prom_remove_property(struct device_node *np, struct property *prop); | 266 | extern int prom_remove_property(struct device_node *np, struct property *prop); |
262 | extern int prom_update_property(struct device_node *np, | 267 | extern int prom_update_property(struct device_node *np, |
263 | struct property *newprop, | 268 | struct property *newprop); |
264 | struct property *oldprop); | ||
265 | 269 | ||
266 | #if defined(CONFIG_OF_DYNAMIC) | 270 | #if defined(CONFIG_OF_DYNAMIC) |
267 | /* For updating the device tree at runtime */ | 271 | /* For updating the device tree at runtime */ |
@@ -303,6 +307,11 @@ const char *of_prop_next_string(struct property *prop, const char *cur); | |||
303 | 307 | ||
304 | #else /* CONFIG_OF */ | 308 | #else /* CONFIG_OF */ |
305 | 309 | ||
310 | static inline const char* of_node_full_name(struct device_node *np) | ||
311 | { | ||
312 | return "<no-node>"; | ||
313 | } | ||
314 | |||
306 | static inline bool of_have_populated_dt(void) | 315 | static inline bool of_have_populated_dt(void) |
307 | { | 316 | { |
308 | return false; | 317 | return false; |
@@ -377,6 +386,13 @@ static inline int of_property_read_u64(const struct device_node *np, | |||
377 | return -ENOSYS; | 386 | return -ENOSYS; |
378 | } | 387 | } |
379 | 388 | ||
389 | static inline int of_property_match_string(struct device_node *np, | ||
390 | const char *propname, | ||
391 | const char *string) | ||
392 | { | ||
393 | return -ENOSYS; | ||
394 | } | ||
395 | |||
380 | static inline struct device_node *of_parse_phandle(struct device_node *np, | 396 | static inline struct device_node *of_parse_phandle(struct device_node *np, |
381 | const char *phandle_name, | 397 | const char *phandle_name, |
382 | int index) | 398 | int index) |
@@ -384,6 +400,15 @@ static inline struct device_node *of_parse_phandle(struct device_node *np, | |||
384 | return NULL; | 400 | return NULL; |
385 | } | 401 | } |
386 | 402 | ||
403 | static inline int of_parse_phandle_with_args(struct device_node *np, | ||
404 | const char *list_name, | ||
405 | const char *cells_name, | ||
406 | int index, | ||
407 | struct of_phandle_args *out_args) | ||
408 | { | ||
409 | return -ENOSYS; | ||
410 | } | ||
411 | |||
387 | static inline int of_alias_get_id(struct device_node *np, const char *stem) | 412 | static inline int of_alias_get_id(struct device_node *np, const char *stem) |
388 | { | 413 | { |
389 | return -ENOSYS; | 414 | return -ENOSYS; |
diff --git a/include/linux/of_iommu.h b/include/linux/of_iommu.h new file mode 100644 index 000000000000..51a560f34bca --- /dev/null +++ b/include/linux/of_iommu.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #ifndef __OF_IOMMU_H | ||
2 | #define __OF_IOMMU_H | ||
3 | |||
4 | #ifdef CONFIG_OF_IOMMU | ||
5 | |||
6 | extern int of_get_dma_window(struct device_node *dn, const char *prefix, | ||
7 | int index, unsigned long *busno, dma_addr_t *addr, | ||
8 | size_t *size); | ||
9 | |||
10 | #else | ||
11 | |||
12 | static inline int of_get_dma_window(struct device_node *dn, const char *prefix, | ||
13 | int index, unsigned long *busno, dma_addr_t *addr, | ||
14 | size_t *size) | ||
15 | { | ||
16 | return -EINVAL; | ||
17 | } | ||
18 | |||
19 | #endif /* CONFIG_OF_IOMMU */ | ||
20 | |||
21 | #endif /* __OF_IOMMU_H */ | ||
diff --git a/include/linux/of_mtd.h b/include/linux/of_mtd.h index bae1b6094c63..ed7f267e6389 100644 --- a/include/linux/of_mtd.h +++ b/include/linux/of_mtd.h | |||
@@ -11,7 +11,7 @@ | |||
11 | 11 | ||
12 | #ifdef CONFIG_OF_MTD | 12 | #ifdef CONFIG_OF_MTD |
13 | #include <linux/of.h> | 13 | #include <linux/of.h> |
14 | extern const int of_get_nand_ecc_mode(struct device_node *np); | 14 | int of_get_nand_ecc_mode(struct device_node *np); |
15 | int of_get_nand_bus_width(struct device_node *np); | 15 | int of_get_nand_bus_width(struct device_node *np); |
16 | bool of_get_nand_on_flash_bbt(struct device_node *np); | 16 | bool of_get_nand_on_flash_bbt(struct device_node *np); |
17 | #endif | 17 | #endif |
diff --git a/include/linux/pata_arasan_cf_data.h b/include/linux/pata_arasan_cf_data.h index a6ee9aa898bb..a7b4fc386e63 100644 --- a/include/linux/pata_arasan_cf_data.h +++ b/include/linux/pata_arasan_cf_data.h | |||
@@ -4,7 +4,7 @@ | |||
4 | * Arasan Compact Flash host controller platform data header file | 4 | * Arasan Compact Flash host controller platform data header file |
5 | * | 5 | * |
6 | * Copyright (C) 2011 ST Microelectronics | 6 | * Copyright (C) 2011 ST Microelectronics |
7 | * Viresh Kumar <viresh.kumar@st.com> | 7 | * Viresh Kumar <viresh.linux@gmail.com> |
8 | * | 8 | * |
9 | * This file is licensed under the terms of the GNU General Public | 9 | * This file is licensed under the terms of the GNU General Public |
10 | * License version 2. This program is licensed "as is" without any | 10 | * License version 2. This program is licensed "as is" without any |
diff --git a/include/linux/pci-acpi.h b/include/linux/pci-acpi.h index 44623500f419..248fba2af98a 100644 --- a/include/linux/pci-acpi.h +++ b/include/linux/pci-acpi.h | |||
@@ -17,6 +17,7 @@ extern acpi_status pci_acpi_remove_bus_pm_notifier(struct acpi_device *dev); | |||
17 | extern acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev, | 17 | extern acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev, |
18 | struct pci_dev *pci_dev); | 18 | struct pci_dev *pci_dev); |
19 | extern acpi_status pci_acpi_remove_pm_notifier(struct acpi_device *dev); | 19 | extern acpi_status pci_acpi_remove_pm_notifier(struct acpi_device *dev); |
20 | extern phys_addr_t acpi_pci_root_get_mcfg_addr(acpi_handle handle); | ||
20 | 21 | ||
21 | static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev) | 22 | static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev) |
22 | { | 23 | { |
diff --git a/include/linux/pci.h b/include/linux/pci.h index fefb4e19bf6a..5faa8310eec9 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -132,9 +132,10 @@ static inline const char *pci_power_name(pci_power_t state) | |||
132 | return pci_power_names[1 + (int) state]; | 132 | return pci_power_names[1 + (int) state]; |
133 | } | 133 | } |
134 | 134 | ||
135 | #define PCI_PM_D2_DELAY 200 | 135 | #define PCI_PM_D2_DELAY 200 |
136 | #define PCI_PM_D3_WAIT 10 | 136 | #define PCI_PM_D3_WAIT 10 |
137 | #define PCI_PM_BUS_WAIT 50 | 137 | #define PCI_PM_D3COLD_WAIT 100 |
138 | #define PCI_PM_BUS_WAIT 50 | ||
138 | 139 | ||
139 | /** The pci_channel state describes connectivity between the CPU and | 140 | /** The pci_channel state describes connectivity between the CPU and |
140 | * the pci device. If some PCI bus between here and the pci device | 141 | * the pci device. If some PCI bus between here and the pci device |
@@ -176,8 +177,6 @@ enum pci_dev_flags { | |||
176 | PCI_DEV_FLAGS_NO_D3 = (__force pci_dev_flags_t) 2, | 177 | PCI_DEV_FLAGS_NO_D3 = (__force pci_dev_flags_t) 2, |
177 | /* Provide indication device is assigned by a Virtual Machine Manager */ | 178 | /* Provide indication device is assigned by a Virtual Machine Manager */ |
178 | PCI_DEV_FLAGS_ASSIGNED = (__force pci_dev_flags_t) 4, | 179 | PCI_DEV_FLAGS_ASSIGNED = (__force pci_dev_flags_t) 4, |
179 | /* Device causes system crash if in D3 during S3 sleep */ | ||
180 | PCI_DEV_FLAGS_NO_D3_DURING_SLEEP = (__force pci_dev_flags_t) 8, | ||
181 | }; | 180 | }; |
182 | 181 | ||
183 | enum pci_irq_reroute_variant { | 182 | enum pci_irq_reroute_variant { |
@@ -280,11 +279,18 @@ struct pci_dev { | |||
280 | unsigned int pme_poll:1; /* Poll device's PME status bit */ | 279 | unsigned int pme_poll:1; /* Poll device's PME status bit */ |
281 | unsigned int d1_support:1; /* Low power state D1 is supported */ | 280 | unsigned int d1_support:1; /* Low power state D1 is supported */ |
282 | unsigned int d2_support:1; /* Low power state D2 is supported */ | 281 | unsigned int d2_support:1; /* Low power state D2 is supported */ |
283 | unsigned int no_d1d2:1; /* Only allow D0 and D3 */ | 282 | unsigned int no_d1d2:1; /* D1 and D2 are forbidden */ |
283 | unsigned int no_d3cold:1; /* D3cold is forbidden */ | ||
284 | unsigned int d3cold_allowed:1; /* D3cold is allowed by user */ | ||
284 | unsigned int mmio_always_on:1; /* disallow turning off io/mem | 285 | unsigned int mmio_always_on:1; /* disallow turning off io/mem |
285 | decoding during bar sizing */ | 286 | decoding during bar sizing */ |
286 | unsigned int wakeup_prepared:1; | 287 | unsigned int wakeup_prepared:1; |
288 | unsigned int runtime_d3cold:1; /* whether go through runtime | ||
289 | D3cold, not set for devices | ||
290 | powered on/off by the | ||
291 | corresponding bridge */ | ||
287 | unsigned int d3_delay; /* D3->D0 transition time in ms */ | 292 | unsigned int d3_delay; /* D3->D0 transition time in ms */ |
293 | unsigned int d3cold_delay; /* D3cold->D0 transition time in ms */ | ||
288 | 294 | ||
289 | #ifdef CONFIG_PCIEASPM | 295 | #ifdef CONFIG_PCIEASPM |
290 | struct pcie_link_state *link_state; /* ASPM link state. */ | 296 | struct pcie_link_state *link_state; /* ASPM link state. */ |
@@ -326,6 +332,8 @@ struct pci_dev { | |||
326 | unsigned int is_hotplug_bridge:1; | 332 | unsigned int is_hotplug_bridge:1; |
327 | unsigned int __aer_firmware_first_valid:1; | 333 | unsigned int __aer_firmware_first_valid:1; |
328 | unsigned int __aer_firmware_first:1; | 334 | unsigned int __aer_firmware_first:1; |
335 | unsigned int broken_intx_masking:1; | ||
336 | unsigned int io_window_1k:1; /* Intel P2P bridge 1K I/O windows */ | ||
329 | pci_dev_flags_t dev_flags; | 337 | pci_dev_flags_t dev_flags; |
330 | atomic_t enable_cnt; /* pci_enable_device has been called */ | 338 | atomic_t enable_cnt; /* pci_enable_device has been called */ |
331 | 339 | ||
@@ -370,6 +378,8 @@ static inline int pci_channel_offline(struct pci_dev *pdev) | |||
370 | return (pdev->error_state != pci_channel_io_normal); | 378 | return (pdev->error_state != pci_channel_io_normal); |
371 | } | 379 | } |
372 | 380 | ||
381 | extern struct resource busn_resource; | ||
382 | |||
373 | struct pci_host_bridge_window { | 383 | struct pci_host_bridge_window { |
374 | struct list_head list; | 384 | struct list_head list; |
375 | struct resource *res; /* host bridge aperture (CPU address) */ | 385 | struct resource *res; /* host bridge aperture (CPU address) */ |
@@ -421,6 +431,7 @@ struct pci_bus { | |||
421 | struct list_head slots; /* list of slots on this bus */ | 431 | struct list_head slots; /* list of slots on this bus */ |
422 | struct resource *resource[PCI_BRIDGE_RESOURCE_NUM]; | 432 | struct resource *resource[PCI_BRIDGE_RESOURCE_NUM]; |
423 | struct list_head resources; /* address space routed to this bus */ | 433 | struct list_head resources; /* address space routed to this bus */ |
434 | struct resource busn_res; /* bus numbers routed to this bus */ | ||
424 | 435 | ||
425 | struct pci_ops *ops; /* configuration access functions */ | 436 | struct pci_ops *ops; /* configuration access functions */ |
426 | void *sysdata; /* hook for sys-specific extension */ | 437 | void *sysdata; /* hook for sys-specific extension */ |
@@ -428,8 +439,6 @@ struct pci_bus { | |||
428 | 439 | ||
429 | unsigned char number; /* bus number */ | 440 | unsigned char number; /* bus number */ |
430 | unsigned char primary; /* number of primary bridge */ | 441 | unsigned char primary; /* number of primary bridge */ |
431 | unsigned char secondary; /* number of secondary bridge */ | ||
432 | unsigned char subordinate; /* max number of subordinate buses */ | ||
433 | unsigned char max_bus_speed; /* enum pci_bus_speed */ | 442 | unsigned char max_bus_speed; /* enum pci_bus_speed */ |
434 | unsigned char cur_bus_speed; /* enum pci_bus_speed */ | 443 | unsigned char cur_bus_speed; /* enum pci_bus_speed */ |
435 | 444 | ||
@@ -476,6 +485,32 @@ static inline bool pci_dev_msi_enabled(struct pci_dev *pci_dev) { return false; | |||
476 | #define PCIBIOS_SET_FAILED 0x88 | 485 | #define PCIBIOS_SET_FAILED 0x88 |
477 | #define PCIBIOS_BUFFER_TOO_SMALL 0x89 | 486 | #define PCIBIOS_BUFFER_TOO_SMALL 0x89 |
478 | 487 | ||
488 | /* | ||
489 | * Translate above to generic errno for passing back through non-pci. | ||
490 | */ | ||
491 | static inline int pcibios_err_to_errno(int err) | ||
492 | { | ||
493 | if (err <= PCIBIOS_SUCCESSFUL) | ||
494 | return err; /* Assume already errno */ | ||
495 | |||
496 | switch (err) { | ||
497 | case PCIBIOS_FUNC_NOT_SUPPORTED: | ||
498 | return -ENOENT; | ||
499 | case PCIBIOS_BAD_VENDOR_ID: | ||
500 | return -EINVAL; | ||
501 | case PCIBIOS_DEVICE_NOT_FOUND: | ||
502 | return -ENODEV; | ||
503 | case PCIBIOS_BAD_REGISTER_NUMBER: | ||
504 | return -EFAULT; | ||
505 | case PCIBIOS_SET_FAILED: | ||
506 | return -EIO; | ||
507 | case PCIBIOS_BUFFER_TOO_SMALL: | ||
508 | return -ENOSPC; | ||
509 | } | ||
510 | |||
511 | return -ENOTTY; | ||
512 | } | ||
513 | |||
479 | /* Low-level architecture-dependent routines */ | 514 | /* Low-level architecture-dependent routines */ |
480 | 515 | ||
481 | struct pci_ops { | 516 | struct pci_ops { |
@@ -644,6 +679,7 @@ extern int no_pci_devices(void); | |||
644 | 679 | ||
645 | void pcibios_fixup_bus(struct pci_bus *); | 680 | void pcibios_fixup_bus(struct pci_bus *); |
646 | int __must_check pcibios_enable_device(struct pci_dev *, int mask); | 681 | int __must_check pcibios_enable_device(struct pci_dev *, int mask); |
682 | /* Architecture specific versions may override this (weak) */ | ||
647 | char *pcibios_setup(char *str); | 683 | char *pcibios_setup(char *str); |
648 | 684 | ||
649 | /* Used only when drivers/pci/setup.c is used */ | 685 | /* Used only when drivers/pci/setup.c is used */ |
@@ -670,6 +706,9 @@ struct pci_bus *pci_scan_bus(int bus, struct pci_ops *ops, void *sysdata); | |||
670 | struct pci_bus *pci_create_root_bus(struct device *parent, int bus, | 706 | struct pci_bus *pci_create_root_bus(struct device *parent, int bus, |
671 | struct pci_ops *ops, void *sysdata, | 707 | struct pci_ops *ops, void *sysdata, |
672 | struct list_head *resources); | 708 | struct list_head *resources); |
709 | int pci_bus_insert_busn_res(struct pci_bus *b, int bus, int busmax); | ||
710 | int pci_bus_update_busn_res_end(struct pci_bus *b, int busmax); | ||
711 | void pci_bus_release_busn_res(struct pci_bus *b); | ||
673 | struct pci_bus * __devinit pci_scan_root_bus(struct device *parent, int bus, | 712 | struct pci_bus * __devinit pci_scan_root_bus(struct device *parent, int bus, |
674 | struct pci_ops *ops, void *sysdata, | 713 | struct pci_ops *ops, void *sysdata, |
675 | struct list_head *resources); | 714 | struct list_head *resources); |
@@ -716,8 +755,6 @@ enum pci_lost_interrupt_reason pci_lost_interrupt(struct pci_dev *dev); | |||
716 | int pci_find_capability(struct pci_dev *dev, int cap); | 755 | int pci_find_capability(struct pci_dev *dev, int cap); |
717 | int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap); | 756 | int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap); |
718 | int pci_find_ext_capability(struct pci_dev *dev, int cap); | 757 | int pci_find_ext_capability(struct pci_dev *dev, int cap); |
719 | int pci_bus_find_ext_capability(struct pci_bus *bus, unsigned int devfn, | ||
720 | int cap); | ||
721 | int pci_find_ht_capability(struct pci_dev *dev, int ht_cap); | 758 | int pci_find_ht_capability(struct pci_dev *dev, int ht_cap); |
722 | int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap); | 759 | int pci_find_next_ht_capability(struct pci_dev *dev, int pos, int ht_cap); |
723 | struct pci_bus *pci_find_next_bus(const struct pci_bus *from); | 760 | struct pci_bus *pci_find_next_bus(const struct pci_bus *from); |
@@ -779,6 +816,14 @@ static inline int pci_write_config_dword(const struct pci_dev *dev, int where, | |||
779 | return pci_bus_write_config_dword(dev->bus, dev->devfn, where, val); | 816 | return pci_bus_write_config_dword(dev->bus, dev->devfn, where, val); |
780 | } | 817 | } |
781 | 818 | ||
819 | /* user-space driven config access */ | ||
820 | int pci_user_read_config_byte(struct pci_dev *dev, int where, u8 *val); | ||
821 | int pci_user_read_config_word(struct pci_dev *dev, int where, u16 *val); | ||
822 | int pci_user_read_config_dword(struct pci_dev *dev, int where, u32 *val); | ||
823 | int pci_user_write_config_byte(struct pci_dev *dev, int where, u8 val); | ||
824 | int pci_user_write_config_word(struct pci_dev *dev, int where, u16 val); | ||
825 | int pci_user_write_config_dword(struct pci_dev *dev, int where, u32 val); | ||
826 | |||
782 | int __must_check pci_enable_device(struct pci_dev *dev); | 827 | int __must_check pci_enable_device(struct pci_dev *dev); |
783 | int __must_check pci_enable_device_io(struct pci_dev *dev); | 828 | int __must_check pci_enable_device_io(struct pci_dev *dev); |
784 | int __must_check pci_enable_device_mem(struct pci_dev *dev); | 829 | int __must_check pci_enable_device_mem(struct pci_dev *dev); |
@@ -877,7 +922,6 @@ enum pci_obff_signal_type { | |||
877 | int pci_enable_obff(struct pci_dev *dev, enum pci_obff_signal_type); | 922 | int pci_enable_obff(struct pci_dev *dev, enum pci_obff_signal_type); |
878 | void pci_disable_obff(struct pci_dev *dev); | 923 | void pci_disable_obff(struct pci_dev *dev); |
879 | 924 | ||
880 | bool pci_ltr_supported(struct pci_dev *dev); | ||
881 | int pci_enable_ltr(struct pci_dev *dev); | 925 | int pci_enable_ltr(struct pci_dev *dev); |
882 | void pci_disable_ltr(struct pci_dev *dev); | 926 | void pci_disable_ltr(struct pci_dev *dev); |
883 | int pci_set_ltr(struct pci_dev *dev, int snoop_lat_ns, int nosnoop_lat_ns); | 927 | int pci_set_ltr(struct pci_dev *dev, int snoop_lat_ns, int nosnoop_lat_ns); |
@@ -1334,6 +1378,9 @@ static inline struct pci_dev *pci_get_bus_and_slot(unsigned int bus, | |||
1334 | static inline int pci_domain_nr(struct pci_bus *bus) | 1378 | static inline int pci_domain_nr(struct pci_bus *bus) |
1335 | { return 0; } | 1379 | { return 0; } |
1336 | 1380 | ||
1381 | static inline struct pci_dev *pci_dev_get(struct pci_dev *dev) | ||
1382 | { return NULL; } | ||
1383 | |||
1337 | #define dev_is_pci(d) (false) | 1384 | #define dev_is_pci(d) (false) |
1338 | #define dev_is_pf(d) (false) | 1385 | #define dev_is_pf(d) (false) |
1339 | #define dev_num_vf(d) (0) | 1386 | #define dev_num_vf(d) (0) |
@@ -1488,9 +1535,20 @@ enum pci_fixup_pass { | |||
1488 | 1535 | ||
1489 | #ifdef CONFIG_PCI_QUIRKS | 1536 | #ifdef CONFIG_PCI_QUIRKS |
1490 | void pci_fixup_device(enum pci_fixup_pass pass, struct pci_dev *dev); | 1537 | void pci_fixup_device(enum pci_fixup_pass pass, struct pci_dev *dev); |
1538 | struct pci_dev *pci_get_dma_source(struct pci_dev *dev); | ||
1539 | int pci_dev_specific_acs_enabled(struct pci_dev *dev, u16 acs_flags); | ||
1491 | #else | 1540 | #else |
1492 | static inline void pci_fixup_device(enum pci_fixup_pass pass, | 1541 | static inline void pci_fixup_device(enum pci_fixup_pass pass, |
1493 | struct pci_dev *dev) {} | 1542 | struct pci_dev *dev) {} |
1543 | static inline struct pci_dev *pci_get_dma_source(struct pci_dev *dev) | ||
1544 | { | ||
1545 | return pci_dev_get(dev); | ||
1546 | } | ||
1547 | static inline int pci_dev_specific_acs_enabled(struct pci_dev *dev, | ||
1548 | u16 acs_flags) | ||
1549 | { | ||
1550 | return -ENOTTY; | ||
1551 | } | ||
1494 | #endif | 1552 | #endif |
1495 | 1553 | ||
1496 | void __iomem *pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen); | 1554 | void __iomem *pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen); |
@@ -1593,7 +1651,9 @@ static inline bool pci_is_pcie(struct pci_dev *dev) | |||
1593 | } | 1651 | } |
1594 | 1652 | ||
1595 | void pci_request_acs(void); | 1653 | void pci_request_acs(void); |
1596 | 1654 | bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags); | |
1655 | bool pci_acs_path_enabled(struct pci_dev *start, | ||
1656 | struct pci_dev *end, u16 acs_flags); | ||
1597 | 1657 | ||
1598 | #define PCI_VPD_LRDT 0x80 /* Large Resource Data Type */ | 1658 | #define PCI_VPD_LRDT 0x80 /* Large Resource Data Type */ |
1599 | #define PCI_VPD_LRDT_ID(x) (x | PCI_VPD_LRDT) | 1659 | #define PCI_VPD_LRDT_ID(x) (x | PCI_VPD_LRDT) |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index ab741b0d0074..fc3526077348 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
@@ -517,6 +517,7 @@ | |||
517 | #define PCI_DEVICE_ID_AMD_11H_NB_DRAM 0x1302 | 517 | #define PCI_DEVICE_ID_AMD_11H_NB_DRAM 0x1302 |
518 | #define PCI_DEVICE_ID_AMD_11H_NB_MISC 0x1303 | 518 | #define PCI_DEVICE_ID_AMD_11H_NB_MISC 0x1303 |
519 | #define PCI_DEVICE_ID_AMD_11H_NB_LINK 0x1304 | 519 | #define PCI_DEVICE_ID_AMD_11H_NB_LINK 0x1304 |
520 | #define PCI_DEVICE_ID_AMD_15H_M10H_F3 0x1403 | ||
520 | #define PCI_DEVICE_ID_AMD_15H_NB_F0 0x1600 | 521 | #define PCI_DEVICE_ID_AMD_15H_NB_F0 0x1600 |
521 | #define PCI_DEVICE_ID_AMD_15H_NB_F1 0x1601 | 522 | #define PCI_DEVICE_ID_AMD_15H_NB_F1 0x1601 |
522 | #define PCI_DEVICE_ID_AMD_15H_NB_F2 0x1602 | 523 | #define PCI_DEVICE_ID_AMD_15H_NB_F2 0x1602 |
@@ -2755,6 +2756,17 @@ | |||
2755 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB7 0x3c27 | 2756 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB7 0x3c27 |
2756 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB8 0x3c2e | 2757 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB8 0x3c2e |
2757 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB9 0x3c2f | 2758 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB9 0x3c2f |
2759 | #define PCI_DEVICE_ID_INTEL_UNC_HA 0x3c46 | ||
2760 | #define PCI_DEVICE_ID_INTEL_UNC_IMC0 0x3cb0 | ||
2761 | #define PCI_DEVICE_ID_INTEL_UNC_IMC1 0x3cb1 | ||
2762 | #define PCI_DEVICE_ID_INTEL_UNC_IMC2 0x3cb4 | ||
2763 | #define PCI_DEVICE_ID_INTEL_UNC_IMC3 0x3cb5 | ||
2764 | #define PCI_DEVICE_ID_INTEL_UNC_QPI0 0x3c41 | ||
2765 | #define PCI_DEVICE_ID_INTEL_UNC_QPI1 0x3c42 | ||
2766 | #define PCI_DEVICE_ID_INTEL_UNC_R2PCIE 0x3c43 | ||
2767 | #define PCI_DEVICE_ID_INTEL_UNC_R3QPI0 0x3c44 | ||
2768 | #define PCI_DEVICE_ID_INTEL_UNC_R3QPI1 0x3c45 | ||
2769 | #define PCI_DEVICE_ID_INTEL_JAKETOWN_UBOX 0x3ce0 | ||
2758 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB 0x402f | 2770 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB 0x402f |
2759 | #define PCI_DEVICE_ID_INTEL_5100_16 0x65f0 | 2771 | #define PCI_DEVICE_ID_INTEL_5100_16 0x65f0 |
2760 | #define PCI_DEVICE_ID_INTEL_5100_21 0x65f5 | 2772 | #define PCI_DEVICE_ID_INTEL_5100_21 0x65f5 |
diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h index 4b608f543412..7fb75b143755 100644 --- a/include/linux/pci_regs.h +++ b/include/linux/pci_regs.h | |||
@@ -26,6 +26,7 @@ | |||
26 | * Under PCI, each device has 256 bytes of configuration address space, | 26 | * Under PCI, each device has 256 bytes of configuration address space, |
27 | * of which the first 64 bytes are standardized as follows: | 27 | * of which the first 64 bytes are standardized as follows: |
28 | */ | 28 | */ |
29 | #define PCI_STD_HEADER_SIZEOF 64 | ||
29 | #define PCI_VENDOR_ID 0x00 /* 16 bits */ | 30 | #define PCI_VENDOR_ID 0x00 /* 16 bits */ |
30 | #define PCI_DEVICE_ID 0x02 /* 16 bits */ | 31 | #define PCI_DEVICE_ID 0x02 /* 16 bits */ |
31 | #define PCI_COMMAND 0x04 /* 16 bits */ | 32 | #define PCI_COMMAND 0x04 /* 16 bits */ |
@@ -125,7 +126,8 @@ | |||
125 | #define PCI_IO_RANGE_TYPE_MASK 0x0fUL /* I/O bridging type */ | 126 | #define PCI_IO_RANGE_TYPE_MASK 0x0fUL /* I/O bridging type */ |
126 | #define PCI_IO_RANGE_TYPE_16 0x00 | 127 | #define PCI_IO_RANGE_TYPE_16 0x00 |
127 | #define PCI_IO_RANGE_TYPE_32 0x01 | 128 | #define PCI_IO_RANGE_TYPE_32 0x01 |
128 | #define PCI_IO_RANGE_MASK (~0x0fUL) | 129 | #define PCI_IO_RANGE_MASK (~0x0fUL) /* Standard 4K I/O windows */ |
130 | #define PCI_IO_1K_RANGE_MASK (~0x03UL) /* Intel 1K I/O windows */ | ||
129 | #define PCI_SEC_STATUS 0x1e /* Secondary status register, only bit 14 used */ | 131 | #define PCI_SEC_STATUS 0x1e /* Secondary status register, only bit 14 used */ |
130 | #define PCI_MEMORY_BASE 0x20 /* Memory range behind */ | 132 | #define PCI_MEMORY_BASE 0x20 /* Memory range behind */ |
131 | #define PCI_MEMORY_LIMIT 0x22 | 133 | #define PCI_MEMORY_LIMIT 0x22 |
@@ -209,9 +211,12 @@ | |||
209 | #define PCI_CAP_ID_SHPC 0x0C /* PCI Standard Hot-Plug Controller */ | 211 | #define PCI_CAP_ID_SHPC 0x0C /* PCI Standard Hot-Plug Controller */ |
210 | #define PCI_CAP_ID_SSVID 0x0D /* Bridge subsystem vendor/device ID */ | 212 | #define PCI_CAP_ID_SSVID 0x0D /* Bridge subsystem vendor/device ID */ |
211 | #define PCI_CAP_ID_AGP3 0x0E /* AGP Target PCI-PCI bridge */ | 213 | #define PCI_CAP_ID_AGP3 0x0E /* AGP Target PCI-PCI bridge */ |
214 | #define PCI_CAP_ID_SECDEV 0x0F /* Secure Device */ | ||
212 | #define PCI_CAP_ID_EXP 0x10 /* PCI Express */ | 215 | #define PCI_CAP_ID_EXP 0x10 /* PCI Express */ |
213 | #define PCI_CAP_ID_MSIX 0x11 /* MSI-X */ | 216 | #define PCI_CAP_ID_MSIX 0x11 /* MSI-X */ |
217 | #define PCI_CAP_ID_SATA 0x12 /* SATA Data/Index Conf. */ | ||
214 | #define PCI_CAP_ID_AF 0x13 /* PCI Advanced Features */ | 218 | #define PCI_CAP_ID_AF 0x13 /* PCI Advanced Features */ |
219 | #define PCI_CAP_ID_MAX PCI_CAP_ID_AF | ||
215 | #define PCI_CAP_LIST_NEXT 1 /* Next capability in the list */ | 220 | #define PCI_CAP_LIST_NEXT 1 /* Next capability in the list */ |
216 | #define PCI_CAP_FLAGS 2 /* Capability defined flags (16 bits) */ | 221 | #define PCI_CAP_FLAGS 2 /* Capability defined flags (16 bits) */ |
217 | #define PCI_CAP_SIZEOF 4 | 222 | #define PCI_CAP_SIZEOF 4 |
@@ -276,6 +281,7 @@ | |||
276 | #define PCI_VPD_ADDR_MASK 0x7fff /* Address mask */ | 281 | #define PCI_VPD_ADDR_MASK 0x7fff /* Address mask */ |
277 | #define PCI_VPD_ADDR_F 0x8000 /* Write 0, 1 indicates completion */ | 282 | #define PCI_VPD_ADDR_F 0x8000 /* Write 0, 1 indicates completion */ |
278 | #define PCI_VPD_DATA 4 /* 32-bits of data returned here */ | 283 | #define PCI_VPD_DATA 4 /* 32-bits of data returned here */ |
284 | #define PCI_CAP_VPD_SIZEOF 8 | ||
279 | 285 | ||
280 | /* Slot Identification */ | 286 | /* Slot Identification */ |
281 | 287 | ||
@@ -297,8 +303,10 @@ | |||
297 | #define PCI_MSI_ADDRESS_HI 8 /* Upper 32 bits (if PCI_MSI_FLAGS_64BIT set) */ | 303 | #define PCI_MSI_ADDRESS_HI 8 /* Upper 32 bits (if PCI_MSI_FLAGS_64BIT set) */ |
298 | #define PCI_MSI_DATA_32 8 /* 16 bits of data for 32-bit devices */ | 304 | #define PCI_MSI_DATA_32 8 /* 16 bits of data for 32-bit devices */ |
299 | #define PCI_MSI_MASK_32 12 /* Mask bits register for 32-bit devices */ | 305 | #define PCI_MSI_MASK_32 12 /* Mask bits register for 32-bit devices */ |
306 | #define PCI_MSI_PENDING_32 16 /* Pending intrs for 32-bit devices */ | ||
300 | #define PCI_MSI_DATA_64 12 /* 16 bits of data for 64-bit devices */ | 307 | #define PCI_MSI_DATA_64 12 /* 16 bits of data for 64-bit devices */ |
301 | #define PCI_MSI_MASK_64 16 /* Mask bits register for 64-bit devices */ | 308 | #define PCI_MSI_MASK_64 16 /* Mask bits register for 64-bit devices */ |
309 | #define PCI_MSI_PENDING_64 20 /* Pending intrs for 64-bit devices */ | ||
302 | 310 | ||
303 | /* MSI-X registers */ | 311 | /* MSI-X registers */ |
304 | #define PCI_MSIX_FLAGS 2 | 312 | #define PCI_MSIX_FLAGS 2 |
@@ -308,6 +316,7 @@ | |||
308 | #define PCI_MSIX_TABLE 4 | 316 | #define PCI_MSIX_TABLE 4 |
309 | #define PCI_MSIX_PBA 8 | 317 | #define PCI_MSIX_PBA 8 |
310 | #define PCI_MSIX_FLAGS_BIRMASK (7 << 0) | 318 | #define PCI_MSIX_FLAGS_BIRMASK (7 << 0) |
319 | #define PCI_CAP_MSIX_SIZEOF 12 /* size of MSIX registers */ | ||
311 | 320 | ||
312 | /* MSI-X entry's format */ | 321 | /* MSI-X entry's format */ |
313 | #define PCI_MSIX_ENTRY_SIZE 16 | 322 | #define PCI_MSIX_ENTRY_SIZE 16 |
@@ -338,6 +347,7 @@ | |||
338 | #define PCI_AF_CTRL_FLR 0x01 | 347 | #define PCI_AF_CTRL_FLR 0x01 |
339 | #define PCI_AF_STATUS 5 | 348 | #define PCI_AF_STATUS 5 |
340 | #define PCI_AF_STATUS_TP 0x01 | 349 | #define PCI_AF_STATUS_TP 0x01 |
350 | #define PCI_CAP_AF_SIZEOF 6 /* size of AF registers */ | ||
341 | 351 | ||
342 | /* PCI-X registers */ | 352 | /* PCI-X registers */ |
343 | 353 | ||
@@ -374,6 +384,10 @@ | |||
374 | #define PCI_X_STATUS_SPL_ERR 0x20000000 /* Rcvd Split Completion Error Msg */ | 384 | #define PCI_X_STATUS_SPL_ERR 0x20000000 /* Rcvd Split Completion Error Msg */ |
375 | #define PCI_X_STATUS_266MHZ 0x40000000 /* 266 MHz capable */ | 385 | #define PCI_X_STATUS_266MHZ 0x40000000 /* 266 MHz capable */ |
376 | #define PCI_X_STATUS_533MHZ 0x80000000 /* 533 MHz capable */ | 386 | #define PCI_X_STATUS_533MHZ 0x80000000 /* 533 MHz capable */ |
387 | #define PCI_X_ECC_CSR 8 /* ECC control and status */ | ||
388 | #define PCI_CAP_PCIX_SIZEOF_V0 8 /* size of registers for Version 0 */ | ||
389 | #define PCI_CAP_PCIX_SIZEOF_V1 24 /* size for Version 1 */ | ||
390 | #define PCI_CAP_PCIX_SIZEOF_V2 PCI_CAP_PCIX_SIZEOF_V1 /* Same for v2 */ | ||
377 | 391 | ||
378 | /* PCI Bridge Subsystem ID registers */ | 392 | /* PCI Bridge Subsystem ID registers */ |
379 | 393 | ||
@@ -462,6 +476,7 @@ | |||
462 | #define PCI_EXP_LNKSTA_DLLLA 0x2000 /* Data Link Layer Link Active */ | 476 | #define PCI_EXP_LNKSTA_DLLLA 0x2000 /* Data Link Layer Link Active */ |
463 | #define PCI_EXP_LNKSTA_LBMS 0x4000 /* Link Bandwidth Management Status */ | 477 | #define PCI_EXP_LNKSTA_LBMS 0x4000 /* Link Bandwidth Management Status */ |
464 | #define PCI_EXP_LNKSTA_LABS 0x8000 /* Link Autonomous Bandwidth Status */ | 478 | #define PCI_EXP_LNKSTA_LABS 0x8000 /* Link Autonomous Bandwidth Status */ |
479 | #define PCI_CAP_EXP_ENDPOINT_SIZEOF_V1 20 /* v1 endpoints end here */ | ||
465 | #define PCI_EXP_SLTCAP 20 /* Slot Capabilities */ | 480 | #define PCI_EXP_SLTCAP 20 /* Slot Capabilities */ |
466 | #define PCI_EXP_SLTCAP_ABP 0x00000001 /* Attention Button Present */ | 481 | #define PCI_EXP_SLTCAP_ABP 0x00000001 /* Attention Button Present */ |
467 | #define PCI_EXP_SLTCAP_PCP 0x00000002 /* Power Controller Present */ | 482 | #define PCI_EXP_SLTCAP_PCP 0x00000002 /* Power Controller Present */ |
@@ -507,6 +522,12 @@ | |||
507 | #define PCI_EXP_RTSTA 32 /* Root Status */ | 522 | #define PCI_EXP_RTSTA 32 /* Root Status */ |
508 | #define PCI_EXP_RTSTA_PME 0x10000 /* PME status */ | 523 | #define PCI_EXP_RTSTA_PME 0x10000 /* PME status */ |
509 | #define PCI_EXP_RTSTA_PENDING 0x20000 /* PME pending */ | 524 | #define PCI_EXP_RTSTA_PENDING 0x20000 /* PME pending */ |
525 | /* | ||
526 | * Note that the following PCI Express 'Capability Structure' registers | ||
527 | * were introduced with 'Capability Version' 0x2 (v2). These registers | ||
528 | * do not exist on devices with Capability Version 1. Use pci_pcie_cap2() | ||
529 | * to use these fields safely. | ||
530 | */ | ||
510 | #define PCI_EXP_DEVCAP2 36 /* Device Capabilities 2 */ | 531 | #define PCI_EXP_DEVCAP2 36 /* Device Capabilities 2 */ |
511 | #define PCI_EXP_DEVCAP2_ARI 0x20 /* Alternative Routing-ID */ | 532 | #define PCI_EXP_DEVCAP2_ARI 0x20 /* Alternative Routing-ID */ |
512 | #define PCI_EXP_DEVCAP2_LTR 0x800 /* Latency tolerance reporting */ | 533 | #define PCI_EXP_DEVCAP2_LTR 0x800 /* Latency tolerance reporting */ |
@@ -521,6 +542,12 @@ | |||
521 | #define PCI_EXP_OBFF_MSGA_EN 0x2000 /* OBFF enable with Message type A */ | 542 | #define PCI_EXP_OBFF_MSGA_EN 0x2000 /* OBFF enable with Message type A */ |
522 | #define PCI_EXP_OBFF_MSGB_EN 0x4000 /* OBFF enable with Message type B */ | 543 | #define PCI_EXP_OBFF_MSGB_EN 0x4000 /* OBFF enable with Message type B */ |
523 | #define PCI_EXP_OBFF_WAKE_EN 0x6000 /* OBFF using WAKE# signaling */ | 544 | #define PCI_EXP_OBFF_WAKE_EN 0x6000 /* OBFF using WAKE# signaling */ |
545 | #define PCI_CAP_EXP_ENDPOINT_SIZEOF_V2 44 /* v2 endpoints end here */ | ||
546 | #define PCI_EXP_LNKCAP2 44 /* Link Capability 2 */ | ||
547 | #define PCI_EXP_LNKCAP2_SLS_2_5GB 0x01 /* Current Link Speed 2.5GT/s */ | ||
548 | #define PCI_EXP_LNKCAP2_SLS_5_0GB 0x02 /* Current Link Speed 5.0GT/s */ | ||
549 | #define PCI_EXP_LNKCAP2_SLS_8_0GB 0x04 /* Current Link Speed 8.0GT/s */ | ||
550 | #define PCI_EXP_LNKCAP2_CROSSLINK 0x100 /* Crosslink supported */ | ||
524 | #define PCI_EXP_LNKCTL2 48 /* Link Control 2 */ | 551 | #define PCI_EXP_LNKCTL2 48 /* Link Control 2 */ |
525 | #define PCI_EXP_SLTCTL2 56 /* Slot Control 2 */ | 552 | #define PCI_EXP_SLTCTL2 56 /* Slot Control 2 */ |
526 | 553 | ||
@@ -529,23 +556,43 @@ | |||
529 | #define PCI_EXT_CAP_VER(header) ((header >> 16) & 0xf) | 556 | #define PCI_EXT_CAP_VER(header) ((header >> 16) & 0xf) |
530 | #define PCI_EXT_CAP_NEXT(header) ((header >> 20) & 0xffc) | 557 | #define PCI_EXT_CAP_NEXT(header) ((header >> 20) & 0xffc) |
531 | 558 | ||
532 | #define PCI_EXT_CAP_ID_ERR 1 | 559 | #define PCI_EXT_CAP_ID_ERR 0x01 /* Advanced Error Reporting */ |
533 | #define PCI_EXT_CAP_ID_VC 2 | 560 | #define PCI_EXT_CAP_ID_VC 0x02 /* Virtual Channel Capability */ |
534 | #define PCI_EXT_CAP_ID_DSN 3 | 561 | #define PCI_EXT_CAP_ID_DSN 0x03 /* Device Serial Number */ |
535 | #define PCI_EXT_CAP_ID_PWR 4 | 562 | #define PCI_EXT_CAP_ID_PWR 0x04 /* Power Budgeting */ |
536 | #define PCI_EXT_CAP_ID_VNDR 11 | 563 | #define PCI_EXT_CAP_ID_RCLD 0x05 /* Root Complex Link Declaration */ |
537 | #define PCI_EXT_CAP_ID_ACS 13 | 564 | #define PCI_EXT_CAP_ID_RCILC 0x06 /* Root Complex Internal Link Control */ |
538 | #define PCI_EXT_CAP_ID_ARI 14 | 565 | #define PCI_EXT_CAP_ID_RCEC 0x07 /* Root Complex Event Collector */ |
539 | #define PCI_EXT_CAP_ID_ATS 15 | 566 | #define PCI_EXT_CAP_ID_MFVC 0x08 /* Multi-Function VC Capability */ |
540 | #define PCI_EXT_CAP_ID_SRIOV 16 | 567 | #define PCI_EXT_CAP_ID_VC9 0x09 /* same as _VC */ |
541 | #define PCI_EXT_CAP_ID_PRI 19 | 568 | #define PCI_EXT_CAP_ID_RCRB 0x0A /* Root Complex RB? */ |
542 | #define PCI_EXT_CAP_ID_LTR 24 | 569 | #define PCI_EXT_CAP_ID_VNDR 0x0B /* Vendor Specific */ |
543 | #define PCI_EXT_CAP_ID_PASID 27 | 570 | #define PCI_EXT_CAP_ID_CAC 0x0C /* Config Access - obsolete */ |
571 | #define PCI_EXT_CAP_ID_ACS 0x0D /* Access Control Services */ | ||
572 | #define PCI_EXT_CAP_ID_ARI 0x0E /* Alternate Routing ID */ | ||
573 | #define PCI_EXT_CAP_ID_ATS 0x0F /* Address Translation Services */ | ||
574 | #define PCI_EXT_CAP_ID_SRIOV 0x10 /* Single Root I/O Virtualization */ | ||
575 | #define PCI_EXT_CAP_ID_MRIOV 0x11 /* Multi Root I/O Virtualization */ | ||
576 | #define PCI_EXT_CAP_ID_MCAST 0x12 /* Multicast */ | ||
577 | #define PCI_EXT_CAP_ID_PRI 0x13 /* Page Request Interface */ | ||
578 | #define PCI_EXT_CAP_ID_AMD_XXX 0x14 /* reserved for AMD */ | ||
579 | #define PCI_EXT_CAP_ID_REBAR 0x15 /* resizable BAR */ | ||
580 | #define PCI_EXT_CAP_ID_DPA 0x16 /* dynamic power alloc */ | ||
581 | #define PCI_EXT_CAP_ID_TPH 0x17 /* TPH request */ | ||
582 | #define PCI_EXT_CAP_ID_LTR 0x18 /* latency tolerance reporting */ | ||
583 | #define PCI_EXT_CAP_ID_SECPCI 0x19 /* Secondary PCIe */ | ||
584 | #define PCI_EXT_CAP_ID_PMUX 0x1A /* Protocol Multiplexing */ | ||
585 | #define PCI_EXT_CAP_ID_PASID 0x1B /* Process Address Space ID */ | ||
586 | #define PCI_EXT_CAP_ID_MAX PCI_EXT_CAP_ID_PASID | ||
587 | |||
588 | #define PCI_EXT_CAP_DSN_SIZEOF 12 | ||
589 | #define PCI_EXT_CAP_MCAST_ENDPOINT_SIZEOF 40 | ||
544 | 590 | ||
545 | /* Advanced Error Reporting */ | 591 | /* Advanced Error Reporting */ |
546 | #define PCI_ERR_UNCOR_STATUS 4 /* Uncorrectable Error Status */ | 592 | #define PCI_ERR_UNCOR_STATUS 4 /* Uncorrectable Error Status */ |
547 | #define PCI_ERR_UNC_TRAIN 0x00000001 /* Training */ | 593 | #define PCI_ERR_UNC_TRAIN 0x00000001 /* Training */ |
548 | #define PCI_ERR_UNC_DLP 0x00000010 /* Data Link Protocol */ | 594 | #define PCI_ERR_UNC_DLP 0x00000010 /* Data Link Protocol */ |
595 | #define PCI_ERR_UNC_SURPDN 0x00000020 /* Surprise Down */ | ||
549 | #define PCI_ERR_UNC_POISON_TLP 0x00001000 /* Poisoned TLP */ | 596 | #define PCI_ERR_UNC_POISON_TLP 0x00001000 /* Poisoned TLP */ |
550 | #define PCI_ERR_UNC_FCP 0x00002000 /* Flow Control Protocol */ | 597 | #define PCI_ERR_UNC_FCP 0x00002000 /* Flow Control Protocol */ |
551 | #define PCI_ERR_UNC_COMP_TIME 0x00004000 /* Completion Timeout */ | 598 | #define PCI_ERR_UNC_COMP_TIME 0x00004000 /* Completion Timeout */ |
@@ -555,6 +602,11 @@ | |||
555 | #define PCI_ERR_UNC_MALF_TLP 0x00040000 /* Malformed TLP */ | 602 | #define PCI_ERR_UNC_MALF_TLP 0x00040000 /* Malformed TLP */ |
556 | #define PCI_ERR_UNC_ECRC 0x00080000 /* ECRC Error Status */ | 603 | #define PCI_ERR_UNC_ECRC 0x00080000 /* ECRC Error Status */ |
557 | #define PCI_ERR_UNC_UNSUP 0x00100000 /* Unsupported Request */ | 604 | #define PCI_ERR_UNC_UNSUP 0x00100000 /* Unsupported Request */ |
605 | #define PCI_ERR_UNC_ACSV 0x00200000 /* ACS Violation */ | ||
606 | #define PCI_ERR_UNC_INTN 0x00400000 /* internal error */ | ||
607 | #define PCI_ERR_UNC_MCBTLP 0x00800000 /* MC blocked TLP */ | ||
608 | #define PCI_ERR_UNC_ATOMEG 0x01000000 /* Atomic egress blocked */ | ||
609 | #define PCI_ERR_UNC_TLPPRE 0x02000000 /* TLP prefix blocked */ | ||
558 | #define PCI_ERR_UNCOR_MASK 8 /* Uncorrectable Error Mask */ | 610 | #define PCI_ERR_UNCOR_MASK 8 /* Uncorrectable Error Mask */ |
559 | /* Same bits as above */ | 611 | /* Same bits as above */ |
560 | #define PCI_ERR_UNCOR_SEVER 12 /* Uncorrectable Error Severity */ | 612 | #define PCI_ERR_UNCOR_SEVER 12 /* Uncorrectable Error Severity */ |
@@ -565,6 +617,9 @@ | |||
565 | #define PCI_ERR_COR_BAD_DLLP 0x00000080 /* Bad DLLP Status */ | 617 | #define PCI_ERR_COR_BAD_DLLP 0x00000080 /* Bad DLLP Status */ |
566 | #define PCI_ERR_COR_REP_ROLL 0x00000100 /* REPLAY_NUM Rollover */ | 618 | #define PCI_ERR_COR_REP_ROLL 0x00000100 /* REPLAY_NUM Rollover */ |
567 | #define PCI_ERR_COR_REP_TIMER 0x00001000 /* Replay Timer Timeout */ | 619 | #define PCI_ERR_COR_REP_TIMER 0x00001000 /* Replay Timer Timeout */ |
620 | #define PCI_ERR_COR_ADV_NFAT 0x00002000 /* Advisory Non-Fatal */ | ||
621 | #define PCI_ERR_COR_INTERNAL 0x00004000 /* Corrected Internal */ | ||
622 | #define PCI_ERR_COR_LOG_OVER 0x00008000 /* Header Log Overflow */ | ||
568 | #define PCI_ERR_COR_MASK 20 /* Correctable Error Mask */ | 623 | #define PCI_ERR_COR_MASK 20 /* Correctable Error Mask */ |
569 | /* Same bits as above */ | 624 | /* Same bits as above */ |
570 | #define PCI_ERR_CAP 24 /* Advanced Error Capabilities */ | 625 | #define PCI_ERR_CAP 24 /* Advanced Error Capabilities */ |
@@ -596,12 +651,18 @@ | |||
596 | 651 | ||
597 | /* Virtual Channel */ | 652 | /* Virtual Channel */ |
598 | #define PCI_VC_PORT_REG1 4 | 653 | #define PCI_VC_PORT_REG1 4 |
654 | #define PCI_VC_REG1_EVCC 0x7 /* extended vc count */ | ||
599 | #define PCI_VC_PORT_REG2 8 | 655 | #define PCI_VC_PORT_REG2 8 |
656 | #define PCI_VC_REG2_32_PHASE 0x2 | ||
657 | #define PCI_VC_REG2_64_PHASE 0x4 | ||
658 | #define PCI_VC_REG2_128_PHASE 0x8 | ||
600 | #define PCI_VC_PORT_CTRL 12 | 659 | #define PCI_VC_PORT_CTRL 12 |
601 | #define PCI_VC_PORT_STATUS 14 | 660 | #define PCI_VC_PORT_STATUS 14 |
602 | #define PCI_VC_RES_CAP 16 | 661 | #define PCI_VC_RES_CAP 16 |
603 | #define PCI_VC_RES_CTRL 20 | 662 | #define PCI_VC_RES_CTRL 20 |
604 | #define PCI_VC_RES_STATUS 26 | 663 | #define PCI_VC_RES_STATUS 26 |
664 | #define PCI_CAP_VC_BASE_SIZEOF 0x10 | ||
665 | #define PCI_CAP_VC_PER_VC_SIZEOF 0x0C | ||
605 | 666 | ||
606 | /* Power Budgeting */ | 667 | /* Power Budgeting */ |
607 | #define PCI_PWR_DSR 4 /* Data Select Register */ | 668 | #define PCI_PWR_DSR 4 /* Data Select Register */ |
@@ -614,6 +675,7 @@ | |||
614 | #define PCI_PWR_DATA_RAIL(x) (((x) >> 18) & 7) /* Power Rail */ | 675 | #define PCI_PWR_DATA_RAIL(x) (((x) >> 18) & 7) /* Power Rail */ |
615 | #define PCI_PWR_CAP 12 /* Capability */ | 676 | #define PCI_PWR_CAP 12 /* Capability */ |
616 | #define PCI_PWR_CAP_BUDGET(x) ((x) & 1) /* Included in system budget */ | 677 | #define PCI_PWR_CAP_BUDGET(x) ((x) & 1) /* Included in system budget */ |
678 | #define PCI_EXT_CAP_PWR_SIZEOF 16 | ||
617 | 679 | ||
618 | /* | 680 | /* |
619 | * Hypertransport sub capability types | 681 | * Hypertransport sub capability types |
@@ -646,6 +708,8 @@ | |||
646 | #define HT_CAPTYPE_ERROR_RETRY 0xC0 /* Retry on error configuration */ | 708 | #define HT_CAPTYPE_ERROR_RETRY 0xC0 /* Retry on error configuration */ |
647 | #define HT_CAPTYPE_GEN3 0xD0 /* Generation 3 hypertransport configuration */ | 709 | #define HT_CAPTYPE_GEN3 0xD0 /* Generation 3 hypertransport configuration */ |
648 | #define HT_CAPTYPE_PM 0xE0 /* Hypertransport powermanagement configuration */ | 710 | #define HT_CAPTYPE_PM 0xE0 /* Hypertransport powermanagement configuration */ |
711 | #define HT_CAP_SIZEOF_LONG 28 /* slave & primary */ | ||
712 | #define HT_CAP_SIZEOF_SHORT 24 /* host & secondary */ | ||
649 | 713 | ||
650 | /* Alternative Routing-ID Interpretation */ | 714 | /* Alternative Routing-ID Interpretation */ |
651 | #define PCI_ARI_CAP 0x04 /* ARI Capability Register */ | 715 | #define PCI_ARI_CAP 0x04 /* ARI Capability Register */ |
@@ -656,6 +720,7 @@ | |||
656 | #define PCI_ARI_CTRL_MFVC 0x0001 /* MFVC Function Groups Enable */ | 720 | #define PCI_ARI_CTRL_MFVC 0x0001 /* MFVC Function Groups Enable */ |
657 | #define PCI_ARI_CTRL_ACS 0x0002 /* ACS Function Groups Enable */ | 721 | #define PCI_ARI_CTRL_ACS 0x0002 /* ACS Function Groups Enable */ |
658 | #define PCI_ARI_CTRL_FG(x) (((x) >> 4) & 7) /* Function Group */ | 722 | #define PCI_ARI_CTRL_FG(x) (((x) >> 4) & 7) /* Function Group */ |
723 | #define PCI_EXT_CAP_ARI_SIZEOF 8 | ||
659 | 724 | ||
660 | /* Address Translation Service */ | 725 | /* Address Translation Service */ |
661 | #define PCI_ATS_CAP 0x04 /* ATS Capability Register */ | 726 | #define PCI_ATS_CAP 0x04 /* ATS Capability Register */ |
@@ -665,6 +730,7 @@ | |||
665 | #define PCI_ATS_CTRL_ENABLE 0x8000 /* ATS Enable */ | 730 | #define PCI_ATS_CTRL_ENABLE 0x8000 /* ATS Enable */ |
666 | #define PCI_ATS_CTRL_STU(x) ((x) & 0x1f) /* Smallest Translation Unit */ | 731 | #define PCI_ATS_CTRL_STU(x) ((x) & 0x1f) /* Smallest Translation Unit */ |
667 | #define PCI_ATS_MIN_STU 12 /* shift of minimum STU block */ | 732 | #define PCI_ATS_MIN_STU 12 /* shift of minimum STU block */ |
733 | #define PCI_EXT_CAP_ATS_SIZEOF 8 | ||
668 | 734 | ||
669 | /* Page Request Interface */ | 735 | /* Page Request Interface */ |
670 | #define PCI_PRI_CTRL 0x04 /* PRI control register */ | 736 | #define PCI_PRI_CTRL 0x04 /* PRI control register */ |
@@ -676,6 +742,7 @@ | |||
676 | #define PCI_PRI_STATUS_STOPPED 0x100 /* PRI Stopped */ | 742 | #define PCI_PRI_STATUS_STOPPED 0x100 /* PRI Stopped */ |
677 | #define PCI_PRI_MAX_REQ 0x08 /* PRI max reqs supported */ | 743 | #define PCI_PRI_MAX_REQ 0x08 /* PRI max reqs supported */ |
678 | #define PCI_PRI_ALLOC_REQ 0x0c /* PRI max reqs allowed */ | 744 | #define PCI_PRI_ALLOC_REQ 0x0c /* PRI max reqs allowed */ |
745 | #define PCI_EXT_CAP_PRI_SIZEOF 16 | ||
679 | 746 | ||
680 | /* PASID capability */ | 747 | /* PASID capability */ |
681 | #define PCI_PASID_CAP 0x04 /* PASID feature register */ | 748 | #define PCI_PASID_CAP 0x04 /* PASID feature register */ |
@@ -685,6 +752,7 @@ | |||
685 | #define PCI_PASID_CTRL_ENABLE 0x01 /* Enable bit */ | 752 | #define PCI_PASID_CTRL_ENABLE 0x01 /* Enable bit */ |
686 | #define PCI_PASID_CTRL_EXEC 0x02 /* Exec permissions Enable */ | 753 | #define PCI_PASID_CTRL_EXEC 0x02 /* Exec permissions Enable */ |
687 | #define PCI_PASID_CTRL_PRIV 0x04 /* Priviledge Mode Enable */ | 754 | #define PCI_PASID_CTRL_PRIV 0x04 /* Priviledge Mode Enable */ |
755 | #define PCI_EXT_CAP_PASID_SIZEOF 8 | ||
688 | 756 | ||
689 | /* Single Root I/O Virtualization */ | 757 | /* Single Root I/O Virtualization */ |
690 | #define PCI_SRIOV_CAP 0x04 /* SR-IOV Capabilities */ | 758 | #define PCI_SRIOV_CAP 0x04 /* SR-IOV Capabilities */ |
@@ -716,12 +784,14 @@ | |||
716 | #define PCI_SRIOV_VFM_MI 0x1 /* Dormant.MigrateIn */ | 784 | #define PCI_SRIOV_VFM_MI 0x1 /* Dormant.MigrateIn */ |
717 | #define PCI_SRIOV_VFM_MO 0x2 /* Active.MigrateOut */ | 785 | #define PCI_SRIOV_VFM_MO 0x2 /* Active.MigrateOut */ |
718 | #define PCI_SRIOV_VFM_AV 0x3 /* Active.Available */ | 786 | #define PCI_SRIOV_VFM_AV 0x3 /* Active.Available */ |
787 | #define PCI_EXT_CAP_SRIOV_SIZEOF 64 | ||
719 | 788 | ||
720 | #define PCI_LTR_MAX_SNOOP_LAT 0x4 | 789 | #define PCI_LTR_MAX_SNOOP_LAT 0x4 |
721 | #define PCI_LTR_MAX_NOSNOOP_LAT 0x6 | 790 | #define PCI_LTR_MAX_NOSNOOP_LAT 0x6 |
722 | #define PCI_LTR_VALUE_MASK 0x000003ff | 791 | #define PCI_LTR_VALUE_MASK 0x000003ff |
723 | #define PCI_LTR_SCALE_MASK 0x00001c00 | 792 | #define PCI_LTR_SCALE_MASK 0x00001c00 |
724 | #define PCI_LTR_SCALE_SHIFT 10 | 793 | #define PCI_LTR_SCALE_SHIFT 10 |
794 | #define PCI_EXT_CAP_LTR_SIZEOF 8 | ||
725 | 795 | ||
726 | /* Access Control Service */ | 796 | /* Access Control Service */ |
727 | #define PCI_ACS_CAP 0x04 /* ACS Capability Register */ | 797 | #define PCI_ACS_CAP 0x04 /* ACS Capability Register */ |
@@ -732,7 +802,38 @@ | |||
732 | #define PCI_ACS_UF 0x10 /* Upstream Forwarding */ | 802 | #define PCI_ACS_UF 0x10 /* Upstream Forwarding */ |
733 | #define PCI_ACS_EC 0x20 /* P2P Egress Control */ | 803 | #define PCI_ACS_EC 0x20 /* P2P Egress Control */ |
734 | #define PCI_ACS_DT 0x40 /* Direct Translated P2P */ | 804 | #define PCI_ACS_DT 0x40 /* Direct Translated P2P */ |
805 | #define PCI_ACS_EGRESS_BITS 0x05 /* ACS Egress Control Vector Size */ | ||
735 | #define PCI_ACS_CTRL 0x06 /* ACS Control Register */ | 806 | #define PCI_ACS_CTRL 0x06 /* ACS Control Register */ |
736 | #define PCI_ACS_EGRESS_CTL_V 0x08 /* ACS Egress Control Vector */ | 807 | #define PCI_ACS_EGRESS_CTL_V 0x08 /* ACS Egress Control Vector */ |
737 | 808 | ||
809 | #define PCI_VSEC_HDR 4 /* extended cap - vendor specific */ | ||
810 | #define PCI_VSEC_HDR_LEN_SHIFT 20 /* shift for length field */ | ||
811 | |||
812 | /* sata capability */ | ||
813 | #define PCI_SATA_REGS 4 /* SATA REGs specifier */ | ||
814 | #define PCI_SATA_REGS_MASK 0xF /* location - BAR#/inline */ | ||
815 | #define PCI_SATA_REGS_INLINE 0xF /* REGS in config space */ | ||
816 | #define PCI_SATA_SIZEOF_SHORT 8 | ||
817 | #define PCI_SATA_SIZEOF_LONG 16 | ||
818 | |||
819 | /* resizable BARs */ | ||
820 | #define PCI_REBAR_CTRL 8 /* control register */ | ||
821 | #define PCI_REBAR_CTRL_NBAR_MASK (7 << 5) /* mask for # bars */ | ||
822 | #define PCI_REBAR_CTRL_NBAR_SHIFT 5 /* shift for # bars */ | ||
823 | |||
824 | /* dynamic power allocation */ | ||
825 | #define PCI_DPA_CAP 4 /* capability register */ | ||
826 | #define PCI_DPA_CAP_SUBSTATE_MASK 0x1F /* # substates - 1 */ | ||
827 | #define PCI_DPA_BASE_SIZEOF 16 /* size with 0 substates */ | ||
828 | |||
829 | /* TPH Requester */ | ||
830 | #define PCI_TPH_CAP 4 /* capability register */ | ||
831 | #define PCI_TPH_CAP_LOC_MASK 0x600 /* location mask */ | ||
832 | #define PCI_TPH_LOC_NONE 0x000 /* no location */ | ||
833 | #define PCI_TPH_LOC_CAP 0x200 /* in capability */ | ||
834 | #define PCI_TPH_LOC_MSIX 0x400 /* in MSI-X */ | ||
835 | #define PCI_TPH_CAP_ST_MASK 0x07FF0000 /* st table mask */ | ||
836 | #define PCI_TPH_CAP_ST_SHIFT 16 /* st table shift */ | ||
837 | #define PCI_TPH_BASE_SIZEOF 12 /* size with no st table */ | ||
838 | |||
738 | #endif /* LINUX_PCI_REGS_H */ | 839 | #endif /* LINUX_PCI_REGS_H */ |
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 45db49f64bb4..76c5c8b724a7 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h | |||
@@ -677,6 +677,7 @@ struct hw_perf_event { | |||
677 | u64 last_tag; | 677 | u64 last_tag; |
678 | unsigned long config_base; | 678 | unsigned long config_base; |
679 | unsigned long event_base; | 679 | unsigned long event_base; |
680 | int event_base_rdpmc; | ||
680 | int idx; | 681 | int idx; |
681 | int last_cpu; | 682 | int last_cpu; |
682 | 683 | ||
@@ -1106,6 +1107,8 @@ perf_event_create_kernel_counter(struct perf_event_attr *attr, | |||
1106 | struct task_struct *task, | 1107 | struct task_struct *task, |
1107 | perf_overflow_handler_t callback, | 1108 | perf_overflow_handler_t callback, |
1108 | void *context); | 1109 | void *context); |
1110 | extern void perf_pmu_migrate_context(struct pmu *pmu, | ||
1111 | int src_cpu, int dst_cpu); | ||
1109 | extern u64 perf_event_read_value(struct perf_event *event, | 1112 | extern u64 perf_event_read_value(struct perf_event *event, |
1110 | u64 *enabled, u64 *running); | 1113 | u64 *enabled, u64 *running); |
1111 | 1114 | ||
diff --git a/include/linux/phy.h b/include/linux/phy.h index c291cae8ce32..93b3cf77f564 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h | |||
@@ -243,6 +243,15 @@ enum phy_state { | |||
243 | PHY_RESUMING | 243 | PHY_RESUMING |
244 | }; | 244 | }; |
245 | 245 | ||
246 | /** | ||
247 | * struct phy_c45_device_ids - 802.3-c45 Device Identifiers | ||
248 | * @devices_in_package: Bit vector of devices present. | ||
249 | * @device_ids: The device identifer for each present device. | ||
250 | */ | ||
251 | struct phy_c45_device_ids { | ||
252 | u32 devices_in_package; | ||
253 | u32 device_ids[8]; | ||
254 | }; | ||
246 | 255 | ||
247 | /* phy_device: An instance of a PHY | 256 | /* phy_device: An instance of a PHY |
248 | * | 257 | * |
@@ -250,6 +259,8 @@ enum phy_state { | |||
250 | * bus: Pointer to the bus this PHY is on | 259 | * bus: Pointer to the bus this PHY is on |
251 | * dev: driver model device structure for this PHY | 260 | * dev: driver model device structure for this PHY |
252 | * phy_id: UID for this device found during discovery | 261 | * phy_id: UID for this device found during discovery |
262 | * c45_ids: 802.3-c45 Device Identifers if is_c45. | ||
263 | * is_c45: Set to true if this phy uses clause 45 addressing. | ||
253 | * state: state of the PHY for management purposes | 264 | * state: state of the PHY for management purposes |
254 | * dev_flags: Device-specific flags used by the PHY driver. | 265 | * dev_flags: Device-specific flags used by the PHY driver. |
255 | * addr: Bus address of PHY | 266 | * addr: Bus address of PHY |
@@ -285,6 +296,9 @@ struct phy_device { | |||
285 | 296 | ||
286 | u32 phy_id; | 297 | u32 phy_id; |
287 | 298 | ||
299 | struct phy_c45_device_ids c45_ids; | ||
300 | bool is_c45; | ||
301 | |||
288 | enum phy_state state; | 302 | enum phy_state state; |
289 | 303 | ||
290 | u32 dev_flags; | 304 | u32 dev_flags; |
@@ -412,6 +426,12 @@ struct phy_driver { | |||
412 | /* Clears up any memory if needed */ | 426 | /* Clears up any memory if needed */ |
413 | void (*remove)(struct phy_device *phydev); | 427 | void (*remove)(struct phy_device *phydev); |
414 | 428 | ||
429 | /* Returns true if this is a suitable driver for the given | ||
430 | * phydev. If NULL, matching is based on phy_id and | ||
431 | * phy_id_mask. | ||
432 | */ | ||
433 | int (*match_phy_device)(struct phy_device *phydev); | ||
434 | |||
415 | /* Handles ethtool queries for hardware time stamping. */ | 435 | /* Handles ethtool queries for hardware time stamping. */ |
416 | int (*ts_info)(struct phy_device *phydev, struct ethtool_ts_info *ti); | 436 | int (*ts_info)(struct phy_device *phydev, struct ethtool_ts_info *ti); |
417 | 437 | ||
@@ -480,7 +500,9 @@ static inline int phy_write(struct phy_device *phydev, u32 regnum, u16 val) | |||
480 | return mdiobus_write(phydev->bus, phydev->addr, regnum, val); | 500 | return mdiobus_write(phydev->bus, phydev->addr, regnum, val); |
481 | } | 501 | } |
482 | 502 | ||
483 | struct phy_device* get_phy_device(struct mii_bus *bus, int addr); | 503 | struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id, |
504 | bool is_c45, struct phy_c45_device_ids *c45_ids); | ||
505 | struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45); | ||
484 | int phy_device_register(struct phy_device *phy); | 506 | int phy_device_register(struct phy_device *phy); |
485 | int phy_init_hw(struct phy_device *phydev); | 507 | int phy_init_hw(struct phy_device *phydev); |
486 | struct phy_device * phy_attach(struct net_device *dev, | 508 | struct phy_device * phy_attach(struct net_device *dev, |
@@ -511,7 +533,9 @@ int genphy_read_status(struct phy_device *phydev); | |||
511 | int genphy_suspend(struct phy_device *phydev); | 533 | int genphy_suspend(struct phy_device *phydev); |
512 | int genphy_resume(struct phy_device *phydev); | 534 | int genphy_resume(struct phy_device *phydev); |
513 | void phy_driver_unregister(struct phy_driver *drv); | 535 | void phy_driver_unregister(struct phy_driver *drv); |
536 | void phy_drivers_unregister(struct phy_driver *drv, int n); | ||
514 | int phy_driver_register(struct phy_driver *new_driver); | 537 | int phy_driver_register(struct phy_driver *new_driver); |
538 | int phy_drivers_register(struct phy_driver *new_driver, int n); | ||
515 | void phy_state_machine(struct work_struct *work); | 539 | void phy_state_machine(struct work_struct *work); |
516 | void phy_start_machine(struct phy_device *phydev, | 540 | void phy_start_machine(struct phy_device *phydev, |
517 | void (*handler)(struct net_device *)); | 541 | void (*handler)(struct net_device *)); |
@@ -532,6 +556,11 @@ int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask, | |||
532 | int (*run)(struct phy_device *)); | 556 | int (*run)(struct phy_device *)); |
533 | int phy_scan_fixups(struct phy_device *phydev); | 557 | int phy_scan_fixups(struct phy_device *phydev); |
534 | 558 | ||
559 | int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable); | ||
560 | int phy_get_eee_err(struct phy_device *phydev); | ||
561 | int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data); | ||
562 | int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data); | ||
563 | |||
535 | int __init mdio_bus_init(void); | 564 | int __init mdio_bus_init(void); |
536 | void mdio_bus_exit(void); | 565 | void mdio_bus_exit(void); |
537 | 566 | ||
diff --git a/include/linux/pinctrl/pinctrl.h b/include/linux/pinctrl/pinctrl.h index 3b894a668d32..69393a662532 100644 --- a/include/linux/pinctrl/pinctrl.h +++ b/include/linux/pinctrl/pinctrl.h | |||
@@ -131,8 +131,9 @@ extern void pinctrl_unregister(struct pinctrl_dev *pctldev); | |||
131 | extern bool pin_is_valid(struct pinctrl_dev *pctldev, int pin); | 131 | extern bool pin_is_valid(struct pinctrl_dev *pctldev, int pin); |
132 | extern void pinctrl_add_gpio_range(struct pinctrl_dev *pctldev, | 132 | extern void pinctrl_add_gpio_range(struct pinctrl_dev *pctldev, |
133 | struct pinctrl_gpio_range *range); | 133 | struct pinctrl_gpio_range *range); |
134 | extern void pinctrl_remove_gpio_range(struct pinctrl_dev *pctldev, | 134 | extern void pinctrl_add_gpio_ranges(struct pinctrl_dev *pctldev, |
135 | struct pinctrl_gpio_range *range); | 135 | struct pinctrl_gpio_range *ranges, |
136 | unsigned nranges); | ||
136 | extern const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev); | 137 | extern const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev); |
137 | extern void *pinctrl_dev_get_drvdata(struct pinctrl_dev *pctldev); | 138 | extern void *pinctrl_dev_get_drvdata(struct pinctrl_dev *pctldev); |
138 | #else | 139 | #else |
diff --git a/include/linux/pipe_fs_i.h b/include/linux/pipe_fs_i.h index e1ac1ce16fb0..e11d1c0fc60f 100644 --- a/include/linux/pipe_fs_i.h +++ b/include/linux/pipe_fs_i.h | |||
@@ -86,11 +86,9 @@ struct pipe_buf_operations { | |||
86 | * mapping or not. The atomic map is faster, however you can't take | 86 | * mapping or not. The atomic map is faster, however you can't take |
87 | * page faults before calling ->unmap() again. So if you need to eg | 87 | * page faults before calling ->unmap() again. So if you need to eg |
88 | * access user data through copy_to/from_user(), then you must get | 88 | * access user data through copy_to/from_user(), then you must get |
89 | * a non-atomic map. ->map() uses the KM_USER0 atomic slot for | 89 | * a non-atomic map. ->map() uses the kmap_atomic slot for |
90 | * atomic maps, so you can't map more than one pipe_buffer at once | 90 | * atomic maps, you have to be careful if mapping another page as |
91 | * and you have to be careful if mapping another page as source | 91 | * source or destination for a copy. |
92 | * or destination for a copy (IOW, it has to use something else | ||
93 | * than KM_USER0). | ||
94 | */ | 92 | */ |
95 | void * (*map)(struct pipe_inode_info *, struct pipe_buffer *, int); | 93 | void * (*map)(struct pipe_inode_info *, struct pipe_buffer *, int); |
96 | 94 | ||
diff --git a/include/linux/pkt_cls.h b/include/linux/pkt_cls.h index defbde203d07..082eafaf026b 100644 --- a/include/linux/pkt_cls.h +++ b/include/linux/pkt_cls.h | |||
@@ -451,8 +451,10 @@ enum { | |||
451 | #define TCF_EM_U32 3 | 451 | #define TCF_EM_U32 3 |
452 | #define TCF_EM_META 4 | 452 | #define TCF_EM_META 4 |
453 | #define TCF_EM_TEXT 5 | 453 | #define TCF_EM_TEXT 5 |
454 | #define TCF_EM_VLAN 6 | 454 | #define TCF_EM_VLAN 6 |
455 | #define TCF_EM_MAX 6 | 455 | #define TCF_EM_CANID 7 |
456 | #define TCF_EM_IPSET 8 | ||
457 | #define TCF_EM_MAX 8 | ||
456 | 458 | ||
457 | enum { | 459 | enum { |
458 | TCF_EM_PROG_TC | 460 | TCF_EM_PROG_TC |
diff --git a/include/linux/platform_data/ad7266.h b/include/linux/platform_data/ad7266.h new file mode 100644 index 000000000000..eabfdcb26992 --- /dev/null +++ b/include/linux/platform_data/ad7266.h | |||
@@ -0,0 +1,54 @@ | |||
1 | /* | ||
2 | * AD7266/65 SPI ADC driver | ||
3 | * | ||
4 | * Copyright 2012 Analog Devices Inc. | ||
5 | * | ||
6 | * Licensed under the GPL-2. | ||
7 | */ | ||
8 | |||
9 | #ifndef __IIO_ADC_AD7266_H__ | ||
10 | #define __IIO_ADC_AD7266_H__ | ||
11 | |||
12 | /** | ||
13 | * enum ad7266_range - AD7266 reference voltage range | ||
14 | * @AD7266_RANGE_VREF: Device is configured for input range 0V - VREF | ||
15 | * (RANGE pin set to low) | ||
16 | * @AD7266_RANGE_2VREF: Device is configured for input range 0V - 2VREF | ||
17 | * (RANGE pin set to high) | ||
18 | */ | ||
19 | enum ad7266_range { | ||
20 | AD7266_RANGE_VREF, | ||
21 | AD7266_RANGE_2VREF, | ||
22 | }; | ||
23 | |||
24 | /** | ||
25 | * enum ad7266_mode - AD7266 sample mode | ||
26 | * @AD7266_MODE_DIFF: Device is configured for full differential mode | ||
27 | * (SGL/DIFF pin set to low, AD0 pin set to low) | ||
28 | * @AD7266_MODE_PSEUDO_DIFF: Device is configured for pseudo differential mode | ||
29 | * (SGL/DIFF pin set to low, AD0 pin set to high) | ||
30 | * @AD7266_MODE_SINGLE_ENDED: Device is configured for single-ended mode | ||
31 | * (SGL/DIFF pin set to high) | ||
32 | */ | ||
33 | enum ad7266_mode { | ||
34 | AD7266_MODE_DIFF, | ||
35 | AD7266_MODE_PSEUDO_DIFF, | ||
36 | AD7266_MODE_SINGLE_ENDED, | ||
37 | }; | ||
38 | |||
39 | /** | ||
40 | * struct ad7266_platform_data - Platform data for the AD7266 driver | ||
41 | * @range: Reference voltage range the device is configured for | ||
42 | * @mode: Sample mode the device is configured for | ||
43 | * @fixed_addr: Whether the address pins are hard-wired | ||
44 | * @addr_gpios: GPIOs used for controlling the address pins, only used if | ||
45 | * fixed_addr is set to false. | ||
46 | */ | ||
47 | struct ad7266_platform_data { | ||
48 | enum ad7266_range range; | ||
49 | enum ad7266_mode mode; | ||
50 | bool fixed_addr; | ||
51 | unsigned int addr_gpios[3]; | ||
52 | }; | ||
53 | |||
54 | #endif | ||
diff --git a/include/linux/platform_data/atmel-aes.h b/include/linux/platform_data/atmel-aes.h new file mode 100644 index 000000000000..e7a1949bad26 --- /dev/null +++ b/include/linux/platform_data/atmel-aes.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef __LINUX_ATMEL_AES_H | ||
2 | #define __LINUX_ATMEL_AES_H | ||
3 | |||
4 | #include <mach/at_hdmac.h> | ||
5 | |||
6 | /** | ||
7 | * struct aes_dma_data - DMA data for AES | ||
8 | */ | ||
9 | struct aes_dma_data { | ||
10 | struct at_dma_slave txdata; | ||
11 | struct at_dma_slave rxdata; | ||
12 | }; | ||
13 | |||
14 | /** | ||
15 | * struct aes_platform_data - board-specific AES configuration | ||
16 | * @dma_slave: DMA slave interface to use in data transfers. | ||
17 | */ | ||
18 | struct aes_platform_data { | ||
19 | struct aes_dma_data *dma_slave; | ||
20 | }; | ||
21 | |||
22 | #endif /* __LINUX_ATMEL_AES_H */ | ||
diff --git a/include/linux/platform_data/clk-integrator.h b/include/linux/platform_data/clk-integrator.h new file mode 100644 index 000000000000..83fe9c283bb8 --- /dev/null +++ b/include/linux/platform_data/clk-integrator.h | |||
@@ -0,0 +1 @@ | |||
void integrator_clk_init(bool is_cp); | |||
diff --git a/include/linux/platform_data/clk-nomadik.h b/include/linux/platform_data/clk-nomadik.h new file mode 100644 index 000000000000..5713c87b2477 --- /dev/null +++ b/include/linux/platform_data/clk-nomadik.h | |||
@@ -0,0 +1,2 @@ | |||
1 | /* Minimal platform data header */ | ||
2 | void nomadik_clk_init(void); | ||
diff --git a/include/linux/platform_data/clk-u300.h b/include/linux/platform_data/clk-u300.h new file mode 100644 index 000000000000..8429e73911a1 --- /dev/null +++ b/include/linux/platform_data/clk-u300.h | |||
@@ -0,0 +1 @@ | |||
void __init u300_clk_init(void __iomem *base); | |||
diff --git a/include/linux/platform_data/i2c-nomadik.h b/include/linux/platform_data/i2c-nomadik.h new file mode 100644 index 000000000000..c2303c3e4803 --- /dev/null +++ b/include/linux/platform_data/i2c-nomadik.h | |||
@@ -0,0 +1,39 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2009 ST-Ericsson | ||
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 | #ifndef __PDATA_I2C_NOMADIK_H | ||
9 | #define __PDATA_I2C_NOMADIK_H | ||
10 | |||
11 | enum i2c_freq_mode { | ||
12 | I2C_FREQ_MODE_STANDARD, /* up to 100 Kb/s */ | ||
13 | I2C_FREQ_MODE_FAST, /* up to 400 Kb/s */ | ||
14 | I2C_FREQ_MODE_HIGH_SPEED, /* up to 3.4 Mb/s */ | ||
15 | I2C_FREQ_MODE_FAST_PLUS, /* up to 1 Mb/s */ | ||
16 | }; | ||
17 | |||
18 | /** | ||
19 | * struct nmk_i2c_controller - client specific controller configuration | ||
20 | * @clk_freq: clock frequency for the operation mode | ||
21 | * @slsu: Slave data setup time in ns. | ||
22 | * The needed setup time for three modes of operation | ||
23 | * are 250ns, 100ns and 10ns respectively thus leading | ||
24 | * to the values of 14, 6, 2 for a 48 MHz i2c clk | ||
25 | * @tft: Tx FIFO Threshold in bytes | ||
26 | * @rft: Rx FIFO Threshold in bytes | ||
27 | * @timeout Slave response timeout(ms) | ||
28 | * @sm: speed mode | ||
29 | */ | ||
30 | struct nmk_i2c_controller { | ||
31 | unsigned long clk_freq; | ||
32 | unsigned short slsu; | ||
33 | unsigned char tft; | ||
34 | unsigned char rft; | ||
35 | int timeout; | ||
36 | enum i2c_freq_mode sm; | ||
37 | }; | ||
38 | |||
39 | #endif /* __PDATA_I2C_NOMADIK_H */ | ||
diff --git a/include/linux/platform_data/leds-lm3556.h b/include/linux/platform_data/leds-lm3556.h new file mode 100644 index 000000000000..4b4e7d6b0527 --- /dev/null +++ b/include/linux/platform_data/leds-lm3556.h | |||
@@ -0,0 +1,50 @@ | |||
1 | /* | ||
2 | * Simple driver for Texas Instruments LM3556 LED Flash driver chip (Rev0x03) | ||
3 | * Copyright (C) 2012 Texas Instruments | ||
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 | |||
11 | #ifndef __LINUX_LM3556_H | ||
12 | #define __LINUX_LM3556_H | ||
13 | |||
14 | #define LM3556_NAME "leds-lm3556" | ||
15 | |||
16 | enum lm3556_pin_polarity { | ||
17 | PIN_LOW_ACTIVE = 0, | ||
18 | PIN_HIGH_ACTIVE, | ||
19 | }; | ||
20 | |||
21 | enum lm3556_pin_enable { | ||
22 | PIN_DISABLED = 0, | ||
23 | PIN_ENABLED, | ||
24 | }; | ||
25 | |||
26 | enum lm3556_strobe_usuage { | ||
27 | STROBE_EDGE_DETECT = 0, | ||
28 | STROBE_LEVEL_DETECT, | ||
29 | }; | ||
30 | |||
31 | enum lm3556_indic_mode { | ||
32 | INDIC_MODE_INTERNAL = 0, | ||
33 | INDIC_MODE_EXTERNAL, | ||
34 | }; | ||
35 | |||
36 | struct lm3556_platform_data { | ||
37 | enum lm3556_pin_enable torch_pin_en; | ||
38 | enum lm3556_pin_polarity torch_pin_polarity; | ||
39 | |||
40 | enum lm3556_strobe_usuage strobe_usuage; | ||
41 | enum lm3556_pin_enable strobe_pin_en; | ||
42 | enum lm3556_pin_polarity strobe_pin_polarity; | ||
43 | |||
44 | enum lm3556_pin_enable tx_pin_en; | ||
45 | enum lm3556_pin_polarity tx_pin_polarity; | ||
46 | |||
47 | enum lm3556_indic_mode indicator_mode; | ||
48 | }; | ||
49 | |||
50 | #endif /* __LINUX_LM3556_H */ | ||
diff --git a/include/linux/lp855x.h b/include/linux/platform_data/lp855x.h index 781a490a451b..cc76f1f18f18 100644 --- a/include/linux/lp855x.h +++ b/include/linux/platform_data/lp855x.h | |||
@@ -47,12 +47,6 @@ | |||
47 | (LP8556_I2C_ONLY << BRT_MODE_SHFT)) | 47 | (LP8556_I2C_ONLY << BRT_MODE_SHFT)) |
48 | #define LP8556_COMB2_CONFIG (LP8556_COMBINED2 << BRT_MODE_SHFT) | 48 | #define LP8556_COMB2_CONFIG (LP8556_COMBINED2 << BRT_MODE_SHFT) |
49 | 49 | ||
50 | /* ROM area boundary */ | ||
51 | #define EEPROM_START (0xA0) | ||
52 | #define EEPROM_END (0xA7) | ||
53 | #define EPROM_START (0xA0) | ||
54 | #define EPROM_END (0xAF) | ||
55 | |||
56 | enum lp855x_chip_id { | 50 | enum lp855x_chip_id { |
57 | LP8550, | 51 | LP8550, |
58 | LP8551, | 52 | LP8551, |
diff --git a/include/linux/platform_data/mmp_audio.h b/include/linux/platform_data/mmp_audio.h new file mode 100644 index 000000000000..0f25d165abd6 --- /dev/null +++ b/include/linux/platform_data/mmp_audio.h | |||
@@ -0,0 +1,22 @@ | |||
1 | /* | ||
2 | * MMP Platform AUDIO Management | ||
3 | * | ||
4 | * Copyright (c) 2011 Marvell Semiconductors Inc. | ||
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 | */ | ||
11 | |||
12 | #ifndef MMP_AUDIO_H | ||
13 | #define MMP_AUDIO_H | ||
14 | |||
15 | struct mmp_audio_platdata { | ||
16 | u32 period_max_capture; | ||
17 | u32 buffer_max_capture; | ||
18 | u32 period_max_playback; | ||
19 | u32 buffer_max_playback; | ||
20 | }; | ||
21 | |||
22 | #endif /* MMP_AUDIO_H */ | ||
diff --git a/include/linux/platform_data/mv_usb.h b/include/linux/platform_data/mv_usb.h index d94804aca764..944b01dd103e 100644 --- a/include/linux/platform_data/mv_usb.h +++ b/include/linux/platform_data/mv_usb.h | |||
@@ -52,13 +52,4 @@ struct mv_usb_platform_data { | |||
52 | int (*set_vbus)(unsigned int vbus); | 52 | int (*set_vbus)(unsigned int vbus); |
53 | int (*private_init)(void __iomem *opregs, void __iomem *phyregs); | 53 | int (*private_init)(void __iomem *opregs, void __iomem *phyregs); |
54 | }; | 54 | }; |
55 | |||
56 | #ifndef CONFIG_HAVE_CLK | ||
57 | /* Dummy stub for clk framework */ | ||
58 | #define clk_get(dev, id) NULL | ||
59 | #define clk_put(clock) do {} while (0) | ||
60 | #define clk_enable(clock) do {} while (0) | ||
61 | #define clk_disable(clock) do {} while (0) | ||
62 | #endif | ||
63 | |||
64 | #endif | 55 | #endif |
diff --git a/include/linux/platform_data/omap_drm.h b/include/linux/platform_data/omap_drm.h new file mode 100644 index 000000000000..3da73bdc2031 --- /dev/null +++ b/include/linux/platform_data/omap_drm.h | |||
@@ -0,0 +1,52 @@ | |||
1 | /* | ||
2 | * DRM/KMS platform data for TI OMAP platforms | ||
3 | * | ||
4 | * Copyright (C) 2012 Texas Instruments | ||
5 | * Author: Rob Clark <rob.clark@linaro.org> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License version 2 as published by | ||
9 | * the Free Software Foundation. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
14 | * more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License along with | ||
17 | * this program. If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | #ifndef __PLATFORM_DATA_OMAP_DRM_H__ | ||
21 | #define __PLATFORM_DATA_OMAP_DRM_H__ | ||
22 | |||
23 | /* | ||
24 | * Optional platform data to configure the default configuration of which | ||
25 | * pipes/overlays/CRTCs are used.. if this is not provided, then instead the | ||
26 | * first CONFIG_DRM_OMAP_NUM_CRTCS are used, and they are each connected to | ||
27 | * one manager, with priority given to managers that are connected to | ||
28 | * detected devices. Remaining overlays are used as video planes. This | ||
29 | * should be a good default behavior for most cases, but yet there still | ||
30 | * might be times when you wish to do something different. | ||
31 | */ | ||
32 | struct omap_kms_platform_data { | ||
33 | /* overlays to use as CRTCs: */ | ||
34 | int ovl_cnt; | ||
35 | const int *ovl_ids; | ||
36 | |||
37 | /* overlays to use as video planes: */ | ||
38 | int pln_cnt; | ||
39 | const int *pln_ids; | ||
40 | |||
41 | int mgr_cnt; | ||
42 | const int *mgr_ids; | ||
43 | |||
44 | int dev_cnt; | ||
45 | const char **dev_names; | ||
46 | }; | ||
47 | |||
48 | struct omap_drm_platform_data { | ||
49 | struct omap_kms_platform_data *kms_pdata; | ||
50 | }; | ||
51 | |||
52 | #endif /* __PLATFORM_DATA_OMAP_DRM_H__ */ | ||
diff --git a/include/linux/platform_data/s3c-hsotg.h b/include/linux/platform_data/s3c-hsotg.h index 97ec12c2ded4..8b79e0967f9c 100644 --- a/include/linux/platform_data/s3c-hsotg.h +++ b/include/linux/platform_data/s3c-hsotg.h | |||
@@ -12,6 +12,9 @@ | |||
12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
13 | */ | 13 | */ |
14 | 14 | ||
15 | #ifndef __LINUX_USB_S3C_HSOTG_H | ||
16 | #define __LINUX_USB_S3C_HSOTG_H | ||
17 | |||
15 | enum s3c_hsotg_dmamode { | 18 | enum s3c_hsotg_dmamode { |
16 | S3C_HSOTG_DMA_NONE, /* do not use DMA at-all */ | 19 | S3C_HSOTG_DMA_NONE, /* do not use DMA at-all */ |
17 | S3C_HSOTG_DMA_ONLY, /* always use DMA */ | 20 | S3C_HSOTG_DMA_ONLY, /* always use DMA */ |
@@ -33,3 +36,5 @@ struct s3c_hsotg_plat { | |||
33 | }; | 36 | }; |
34 | 37 | ||
35 | extern void s3c_hsotg_set_platdata(struct s3c_hsotg_plat *pd); | 38 | extern void s3c_hsotg_set_platdata(struct s3c_hsotg_plat *pd); |
39 | |||
40 | #endif /* __LINUX_USB_S3C_HSOTG_H */ | ||
diff --git a/include/linux/platform_data/spear_thermal.h b/include/linux/platform_data/spear_thermal.h deleted file mode 100644 index 724f2e1cbbcb..000000000000 --- a/include/linux/platform_data/spear_thermal.h +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | /* | ||
2 | * SPEAr thermal driver platform data. | ||
3 | * | ||
4 | * Copyright (C) 2011-2012 ST Microelectronics | ||
5 | * Author: Vincenzo Frascino <vincenzo.frascino@st.com> | ||
6 | * | ||
7 | * This software is licensed under the terms of the GNU General Public | ||
8 | * License version 2, as published by the Free Software Foundation, and | ||
9 | * may be copied, distributed, and modified under those terms. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | */ | ||
17 | #ifndef SPEAR_THERMAL_H | ||
18 | #define SPEAR_THERMAL_H | ||
19 | |||
20 | /* SPEAr Thermal Sensor Platform Data */ | ||
21 | struct spear_thermal_pdata { | ||
22 | /* flags used to enable thermal sensor */ | ||
23 | unsigned int thermal_flags; | ||
24 | }; | ||
25 | |||
26 | #endif /* SPEAR_THERMAL_H */ | ||
diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h index 30f794eb3826..a7d6172922d4 100644 --- a/include/linux/pm_domain.h +++ b/include/linux/pm_domain.h | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/err.h> | 15 | #include <linux/err.h> |
16 | #include <linux/of.h> | 16 | #include <linux/of.h> |
17 | #include <linux/notifier.h> | 17 | #include <linux/notifier.h> |
18 | #include <linux/cpuidle.h> | ||
18 | 19 | ||
19 | enum gpd_status { | 20 | enum gpd_status { |
20 | GPD_STATE_ACTIVE = 0, /* PM domain is active */ | 21 | GPD_STATE_ACTIVE = 0, /* PM domain is active */ |
@@ -45,6 +46,11 @@ struct gpd_dev_ops { | |||
45 | bool (*active_wakeup)(struct device *dev); | 46 | bool (*active_wakeup)(struct device *dev); |
46 | }; | 47 | }; |
47 | 48 | ||
49 | struct gpd_cpu_data { | ||
50 | unsigned int saved_exit_latency; | ||
51 | struct cpuidle_state *idle_state; | ||
52 | }; | ||
53 | |||
48 | struct generic_pm_domain { | 54 | struct generic_pm_domain { |
49 | struct dev_pm_domain domain; /* PM domain operations */ | 55 | struct dev_pm_domain domain; /* PM domain operations */ |
50 | struct list_head gpd_list_node; /* Node in the global PM domains list */ | 56 | struct list_head gpd_list_node; /* Node in the global PM domains list */ |
@@ -75,6 +81,7 @@ struct generic_pm_domain { | |||
75 | bool max_off_time_changed; | 81 | bool max_off_time_changed; |
76 | bool cached_power_down_ok; | 82 | bool cached_power_down_ok; |
77 | struct device_node *of_node; /* Node in device tree */ | 83 | struct device_node *of_node; /* Node in device tree */ |
84 | struct gpd_cpu_data *cpu_data; | ||
78 | }; | 85 | }; |
79 | 86 | ||
80 | static inline struct generic_pm_domain *pd_to_genpd(struct dev_pm_domain *pd) | 87 | static inline struct generic_pm_domain *pd_to_genpd(struct dev_pm_domain *pd) |
@@ -105,6 +112,7 @@ struct generic_pm_domain_data { | |||
105 | struct gpd_timing_data td; | 112 | struct gpd_timing_data td; |
106 | struct notifier_block nb; | 113 | struct notifier_block nb; |
107 | struct mutex lock; | 114 | struct mutex lock; |
115 | unsigned int refcount; | ||
108 | bool need_restore; | 116 | bool need_restore; |
109 | bool always_on; | 117 | bool always_on; |
110 | }; | 118 | }; |
@@ -155,6 +163,8 @@ extern int pm_genpd_add_callbacks(struct device *dev, | |||
155 | struct gpd_dev_ops *ops, | 163 | struct gpd_dev_ops *ops, |
156 | struct gpd_timing_data *td); | 164 | struct gpd_timing_data *td); |
157 | extern int __pm_genpd_remove_callbacks(struct device *dev, bool clear_td); | 165 | extern int __pm_genpd_remove_callbacks(struct device *dev, bool clear_td); |
166 | extern int genpd_attach_cpuidle(struct generic_pm_domain *genpd, int state); | ||
167 | extern int genpd_detach_cpuidle(struct generic_pm_domain *genpd); | ||
158 | extern void pm_genpd_init(struct generic_pm_domain *genpd, | 168 | extern void pm_genpd_init(struct generic_pm_domain *genpd, |
159 | struct dev_power_governor *gov, bool is_off); | 169 | struct dev_power_governor *gov, bool is_off); |
160 | 170 | ||
@@ -211,6 +221,14 @@ static inline int __pm_genpd_remove_callbacks(struct device *dev, bool clear_td) | |||
211 | { | 221 | { |
212 | return -ENOSYS; | 222 | return -ENOSYS; |
213 | } | 223 | } |
224 | static inline int genpd_attach_cpuidle(struct generic_pm_domain *genpd, int st) | ||
225 | { | ||
226 | return -ENOSYS; | ||
227 | } | ||
228 | static inline int genpd_detach_cpuidle(struct generic_pm_domain *genpd) | ||
229 | { | ||
230 | return -ENOSYS; | ||
231 | } | ||
214 | static inline void pm_genpd_init(struct generic_pm_domain *genpd, | 232 | static inline void pm_genpd_init(struct generic_pm_domain *genpd, |
215 | struct dev_power_governor *gov, bool is_off) | 233 | struct dev_power_governor *gov, bool is_off) |
216 | { | 234 | { |
diff --git a/include/linux/pm_qos.h b/include/linux/pm_qos.h index 233149cb19f4..9924ea1f22e0 100644 --- a/include/linux/pm_qos.h +++ b/include/linux/pm_qos.h | |||
@@ -66,7 +66,7 @@ enum pm_qos_req_action { | |||
66 | 66 | ||
67 | static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req) | 67 | static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req) |
68 | { | 68 | { |
69 | return req->dev != 0; | 69 | return req->dev != NULL; |
70 | } | 70 | } |
71 | 71 | ||
72 | int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node, | 72 | int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node, |
diff --git a/include/linux/posix_types.h b/include/linux/posix_types.h index f04c98cf44f3..988f76e636e3 100644 --- a/include/linux/posix_types.h +++ b/include/linux/posix_types.h | |||
@@ -15,26 +15,14 @@ | |||
15 | */ | 15 | */ |
16 | 16 | ||
17 | /* | 17 | /* |
18 | * Those macros may have been defined in <gnu/types.h>. But we always | 18 | * This macro may have been defined in <gnu/types.h>. But we always |
19 | * use the ones here. | 19 | * use the one here. |
20 | */ | 20 | */ |
21 | #undef __NFDBITS | ||
22 | #define __NFDBITS (8 * sizeof(unsigned long)) | ||
23 | |||
24 | #undef __FD_SETSIZE | 21 | #undef __FD_SETSIZE |
25 | #define __FD_SETSIZE 1024 | 22 | #define __FD_SETSIZE 1024 |
26 | 23 | ||
27 | #undef __FDSET_LONGS | ||
28 | #define __FDSET_LONGS (__FD_SETSIZE/__NFDBITS) | ||
29 | |||
30 | #undef __FDELT | ||
31 | #define __FDELT(d) ((d) / __NFDBITS) | ||
32 | |||
33 | #undef __FDMASK | ||
34 | #define __FDMASK(d) (1UL << ((d) % __NFDBITS)) | ||
35 | |||
36 | typedef struct { | 24 | typedef struct { |
37 | unsigned long fds_bits [__FDSET_LONGS]; | 25 | unsigned long fds_bits[__FD_SETSIZE / (8 * sizeof(long))]; |
38 | } __kernel_fd_set; | 26 | } __kernel_fd_set; |
39 | 27 | ||
40 | /* Type of a signal handler. */ | 28 | /* Type of a signal handler. */ |
diff --git a/include/linux/power/smartreflex.h b/include/linux/power/smartreflex.h new file mode 100644 index 000000000000..3101e62a1213 --- /dev/null +++ b/include/linux/power/smartreflex.h | |||
@@ -0,0 +1,308 @@ | |||
1 | /* | ||
2 | * OMAP Smartreflex Defines and Routines | ||
3 | * | ||
4 | * Author: Thara Gopinath <thara@ti.com> | ||
5 | * | ||
6 | * Copyright (C) 2010 Texas Instruments, Inc. | ||
7 | * Thara Gopinath <thara@ti.com> | ||
8 | * | ||
9 | * Copyright (C) 2008 Nokia Corporation | ||
10 | * Kalle Jokiniemi | ||
11 | * | ||
12 | * Copyright (C) 2007 Texas Instruments, Inc. | ||
13 | * Lesly A M <x0080970@ti.com> | ||
14 | * | ||
15 | * This program is free software; you can redistribute it and/or modify | ||
16 | * it under the terms of the GNU General Public License version 2 as | ||
17 | * published by the Free Software Foundation. | ||
18 | */ | ||
19 | |||
20 | #ifndef __POWER_SMARTREFLEX_H | ||
21 | #define __POWER_SMARTREFLEX_H | ||
22 | |||
23 | #include <linux/types.h> | ||
24 | #include <linux/platform_device.h> | ||
25 | #include <linux/delay.h> | ||
26 | #include <plat/voltage.h> | ||
27 | |||
28 | /* | ||
29 | * Different Smartreflex IPs version. The v1 is the 65nm version used in | ||
30 | * OMAP3430. The v2 is the update for the 45nm version of the IP | ||
31 | * used in OMAP3630 and OMAP4430 | ||
32 | */ | ||
33 | #define SR_TYPE_V1 1 | ||
34 | #define SR_TYPE_V2 2 | ||
35 | |||
36 | /* SMART REFLEX REG ADDRESS OFFSET */ | ||
37 | #define SRCONFIG 0x00 | ||
38 | #define SRSTATUS 0x04 | ||
39 | #define SENVAL 0x08 | ||
40 | #define SENMIN 0x0C | ||
41 | #define SENMAX 0x10 | ||
42 | #define SENAVG 0x14 | ||
43 | #define AVGWEIGHT 0x18 | ||
44 | #define NVALUERECIPROCAL 0x1c | ||
45 | #define SENERROR_V1 0x20 | ||
46 | #define ERRCONFIG_V1 0x24 | ||
47 | #define IRQ_EOI 0x20 | ||
48 | #define IRQSTATUS_RAW 0x24 | ||
49 | #define IRQSTATUS 0x28 | ||
50 | #define IRQENABLE_SET 0x2C | ||
51 | #define IRQENABLE_CLR 0x30 | ||
52 | #define SENERROR_V2 0x34 | ||
53 | #define ERRCONFIG_V2 0x38 | ||
54 | |||
55 | /* Bit/Shift Positions */ | ||
56 | |||
57 | /* SRCONFIG */ | ||
58 | #define SRCONFIG_ACCUMDATA_SHIFT 22 | ||
59 | #define SRCONFIG_SRCLKLENGTH_SHIFT 12 | ||
60 | #define SRCONFIG_SENNENABLE_V1_SHIFT 5 | ||
61 | #define SRCONFIG_SENPENABLE_V1_SHIFT 3 | ||
62 | #define SRCONFIG_SENNENABLE_V2_SHIFT 1 | ||
63 | #define SRCONFIG_SENPENABLE_V2_SHIFT 0 | ||
64 | #define SRCONFIG_CLKCTRL_SHIFT 0 | ||
65 | |||
66 | #define SRCONFIG_ACCUMDATA_MASK (0x3ff << 22) | ||
67 | |||
68 | #define SRCONFIG_SRENABLE BIT(11) | ||
69 | #define SRCONFIG_SENENABLE BIT(10) | ||
70 | #define SRCONFIG_ERRGEN_EN BIT(9) | ||
71 | #define SRCONFIG_MINMAXAVG_EN BIT(8) | ||
72 | #define SRCONFIG_DELAYCTRL BIT(2) | ||
73 | |||
74 | /* AVGWEIGHT */ | ||
75 | #define AVGWEIGHT_SENPAVGWEIGHT_SHIFT 2 | ||
76 | #define AVGWEIGHT_SENNAVGWEIGHT_SHIFT 0 | ||
77 | |||
78 | /* NVALUERECIPROCAL */ | ||
79 | #define NVALUERECIPROCAL_SENPGAIN_SHIFT 20 | ||
80 | #define NVALUERECIPROCAL_SENNGAIN_SHIFT 16 | ||
81 | #define NVALUERECIPROCAL_RNSENP_SHIFT 8 | ||
82 | #define NVALUERECIPROCAL_RNSENN_SHIFT 0 | ||
83 | |||
84 | /* ERRCONFIG */ | ||
85 | #define ERRCONFIG_ERRWEIGHT_SHIFT 16 | ||
86 | #define ERRCONFIG_ERRMAXLIMIT_SHIFT 8 | ||
87 | #define ERRCONFIG_ERRMINLIMIT_SHIFT 0 | ||
88 | |||
89 | #define SR_ERRWEIGHT_MASK (0x07 << 16) | ||
90 | #define SR_ERRMAXLIMIT_MASK (0xff << 8) | ||
91 | #define SR_ERRMINLIMIT_MASK (0xff << 0) | ||
92 | |||
93 | #define ERRCONFIG_VPBOUNDINTEN_V1 BIT(31) | ||
94 | #define ERRCONFIG_VPBOUNDINTST_V1 BIT(30) | ||
95 | #define ERRCONFIG_MCUACCUMINTEN BIT(29) | ||
96 | #define ERRCONFIG_MCUACCUMINTST BIT(28) | ||
97 | #define ERRCONFIG_MCUVALIDINTEN BIT(27) | ||
98 | #define ERRCONFIG_MCUVALIDINTST BIT(26) | ||
99 | #define ERRCONFIG_MCUBOUNDINTEN BIT(25) | ||
100 | #define ERRCONFIG_MCUBOUNDINTST BIT(24) | ||
101 | #define ERRCONFIG_MCUDISACKINTEN BIT(23) | ||
102 | #define ERRCONFIG_VPBOUNDINTST_V2 BIT(23) | ||
103 | #define ERRCONFIG_MCUDISACKINTST BIT(22) | ||
104 | #define ERRCONFIG_VPBOUNDINTEN_V2 BIT(22) | ||
105 | |||
106 | #define ERRCONFIG_STATUS_V1_MASK (ERRCONFIG_VPBOUNDINTST_V1 | \ | ||
107 | ERRCONFIG_MCUACCUMINTST | \ | ||
108 | ERRCONFIG_MCUVALIDINTST | \ | ||
109 | ERRCONFIG_MCUBOUNDINTST | \ | ||
110 | ERRCONFIG_MCUDISACKINTST) | ||
111 | /* IRQSTATUS */ | ||
112 | #define IRQSTATUS_MCUACCUMINT BIT(3) | ||
113 | #define IRQSTATUS_MCVALIDINT BIT(2) | ||
114 | #define IRQSTATUS_MCBOUNDSINT BIT(1) | ||
115 | #define IRQSTATUS_MCUDISABLEACKINT BIT(0) | ||
116 | |||
117 | /* IRQENABLE_SET and IRQENABLE_CLEAR */ | ||
118 | #define IRQENABLE_MCUACCUMINT BIT(3) | ||
119 | #define IRQENABLE_MCUVALIDINT BIT(2) | ||
120 | #define IRQENABLE_MCUBOUNDSINT BIT(1) | ||
121 | #define IRQENABLE_MCUDISABLEACKINT BIT(0) | ||
122 | |||
123 | /* Common Bit values */ | ||
124 | |||
125 | #define SRCLKLENGTH_12MHZ_SYSCLK 0x3c | ||
126 | #define SRCLKLENGTH_13MHZ_SYSCLK 0x41 | ||
127 | #define SRCLKLENGTH_19MHZ_SYSCLK 0x60 | ||
128 | #define SRCLKLENGTH_26MHZ_SYSCLK 0x82 | ||
129 | #define SRCLKLENGTH_38MHZ_SYSCLK 0xC0 | ||
130 | |||
131 | /* | ||
132 | * 3430 specific values. Maybe these should be passed from board file or | ||
133 | * pmic structures. | ||
134 | */ | ||
135 | #define OMAP3430_SR_ACCUMDATA 0x1f4 | ||
136 | |||
137 | #define OMAP3430_SR1_SENPAVGWEIGHT 0x03 | ||
138 | #define OMAP3430_SR1_SENNAVGWEIGHT 0x03 | ||
139 | |||
140 | #define OMAP3430_SR2_SENPAVGWEIGHT 0x01 | ||
141 | #define OMAP3430_SR2_SENNAVGWEIGHT 0x01 | ||
142 | |||
143 | #define OMAP3430_SR_ERRWEIGHT 0x04 | ||
144 | #define OMAP3430_SR_ERRMAXLIMIT 0x02 | ||
145 | |||
146 | struct omap_sr { | ||
147 | char *name; | ||
148 | struct list_head node; | ||
149 | struct platform_device *pdev; | ||
150 | struct omap_sr_nvalue_table *nvalue_table; | ||
151 | struct voltagedomain *voltdm; | ||
152 | struct dentry *dbg_dir; | ||
153 | unsigned int irq; | ||
154 | int srid; | ||
155 | int ip_type; | ||
156 | int nvalue_count; | ||
157 | bool autocomp_active; | ||
158 | u32 clk_length; | ||
159 | u32 err_weight; | ||
160 | u32 err_minlimit; | ||
161 | u32 err_maxlimit; | ||
162 | u32 accum_data; | ||
163 | u32 senn_avgweight; | ||
164 | u32 senp_avgweight; | ||
165 | u32 senp_mod; | ||
166 | u32 senn_mod; | ||
167 | void __iomem *base; | ||
168 | }; | ||
169 | |||
170 | /** | ||
171 | * test_cond_timeout - busy-loop, testing a condition | ||
172 | * @cond: condition to test until it evaluates to true | ||
173 | * @timeout: maximum number of microseconds in the timeout | ||
174 | * @index: loop index (integer) | ||
175 | * | ||
176 | * Loop waiting for @cond to become true or until at least @timeout | ||
177 | * microseconds have passed. To use, define some integer @index in the | ||
178 | * calling code. After running, if @index == @timeout, then the loop has | ||
179 | * timed out. | ||
180 | * | ||
181 | * Copied from omap_test_timeout */ | ||
182 | #define sr_test_cond_timeout(cond, timeout, index) \ | ||
183 | ({ \ | ||
184 | for (index = 0; index < timeout; index++) { \ | ||
185 | if (cond) \ | ||
186 | break; \ | ||
187 | udelay(1); \ | ||
188 | } \ | ||
189 | }) | ||
190 | |||
191 | /** | ||
192 | * struct omap_sr_pmic_data - Strucutre to be populated by pmic code to pass | ||
193 | * pmic specific info to smartreflex driver | ||
194 | * | ||
195 | * @sr_pmic_init: API to initialize smartreflex on the PMIC side. | ||
196 | */ | ||
197 | struct omap_sr_pmic_data { | ||
198 | void (*sr_pmic_init) (void); | ||
199 | }; | ||
200 | |||
201 | /** | ||
202 | * struct omap_smartreflex_dev_attr - Smartreflex Device attribute. | ||
203 | * | ||
204 | * @sensor_voltdm_name: Name of voltdomain of SR instance | ||
205 | */ | ||
206 | struct omap_smartreflex_dev_attr { | ||
207 | const char *sensor_voltdm_name; | ||
208 | }; | ||
209 | |||
210 | #ifdef CONFIG_POWER_AVS_OMAP | ||
211 | /* | ||
212 | * The smart reflex driver supports CLASS1 CLASS2 and CLASS3 SR. | ||
213 | * The smartreflex class driver should pass the class type. | ||
214 | * Should be used to populate the class_type field of the | ||
215 | * omap_smartreflex_class_data structure. | ||
216 | */ | ||
217 | #define SR_CLASS1 0x1 | ||
218 | #define SR_CLASS2 0x2 | ||
219 | #define SR_CLASS3 0x3 | ||
220 | |||
221 | /** | ||
222 | * struct omap_sr_class_data - Smartreflex class driver info | ||
223 | * | ||
224 | * @enable: API to enable a particular class smaartreflex. | ||
225 | * @disable: API to disable a particular class smartreflex. | ||
226 | * @configure: API to configure a particular class smartreflex. | ||
227 | * @notify: API to notify the class driver about an event in SR. | ||
228 | * Not needed for class3. | ||
229 | * @notify_flags: specify the events to be notified to the class driver | ||
230 | * @class_type: specify which smartreflex class. | ||
231 | * Can be used by the SR driver to take any class | ||
232 | * based decisions. | ||
233 | */ | ||
234 | struct omap_sr_class_data { | ||
235 | int (*enable)(struct omap_sr *sr); | ||
236 | int (*disable)(struct omap_sr *sr, int is_volt_reset); | ||
237 | int (*configure)(struct omap_sr *sr); | ||
238 | int (*notify)(struct omap_sr *sr, u32 status); | ||
239 | u8 notify_flags; | ||
240 | u8 class_type; | ||
241 | }; | ||
242 | |||
243 | /** | ||
244 | * struct omap_sr_nvalue_table - Smartreflex n-target value info | ||
245 | * | ||
246 | * @efuse_offs: The offset of the efuse where n-target values are stored. | ||
247 | * @nvalue: The n-target value. | ||
248 | * @errminlimit: The value of the ERRMINLIMIT bitfield for this n-target | ||
249 | * @volt_nominal: microvolts DC that the VDD is initially programmed to | ||
250 | */ | ||
251 | struct omap_sr_nvalue_table { | ||
252 | u32 efuse_offs; | ||
253 | u32 nvalue; | ||
254 | u32 errminlimit; | ||
255 | unsigned long volt_nominal; | ||
256 | }; | ||
257 | |||
258 | /** | ||
259 | * struct omap_sr_data - Smartreflex platform data. | ||
260 | * | ||
261 | * @name: instance name | ||
262 | * @ip_type: Smartreflex IP type. | ||
263 | * @senp_mod: SENPENABLE value for the sr | ||
264 | * @senn_mod: SENNENABLE value for sr | ||
265 | * @nvalue_count: Number of distinct nvalues in the nvalue table | ||
266 | * @enable_on_init: whether this sr module needs to enabled at | ||
267 | * boot up or not. | ||
268 | * @nvalue_table: table containing the efuse offsets and nvalues | ||
269 | * corresponding to them. | ||
270 | * @voltdm: Pointer to the voltage domain associated with the SR | ||
271 | */ | ||
272 | struct omap_sr_data { | ||
273 | const char *name; | ||
274 | int ip_type; | ||
275 | u32 senp_mod; | ||
276 | u32 senn_mod; | ||
277 | int nvalue_count; | ||
278 | bool enable_on_init; | ||
279 | struct omap_sr_nvalue_table *nvalue_table; | ||
280 | struct voltagedomain *voltdm; | ||
281 | }; | ||
282 | |||
283 | /* Smartreflex module enable/disable interface */ | ||
284 | void omap_sr_enable(struct voltagedomain *voltdm); | ||
285 | void omap_sr_disable(struct voltagedomain *voltdm); | ||
286 | void omap_sr_disable_reset_volt(struct voltagedomain *voltdm); | ||
287 | |||
288 | /* API to register the pmic specific data with the smartreflex driver. */ | ||
289 | void omap_sr_register_pmic(struct omap_sr_pmic_data *pmic_data); | ||
290 | |||
291 | /* Smartreflex driver hooks to be called from Smartreflex class driver */ | ||
292 | int sr_enable(struct voltagedomain *voltdm, unsigned long volt); | ||
293 | void sr_disable(struct voltagedomain *voltdm); | ||
294 | int sr_configure_errgen(struct voltagedomain *voltdm); | ||
295 | int sr_disable_errgen(struct voltagedomain *voltdm); | ||
296 | int sr_configure_minmax(struct voltagedomain *voltdm); | ||
297 | |||
298 | /* API to register the smartreflex class driver with the smartreflex driver */ | ||
299 | int sr_register_class(struct omap_sr_class_data *class_data); | ||
300 | #else | ||
301 | static inline void omap_sr_enable(struct voltagedomain *voltdm) {} | ||
302 | static inline void omap_sr_disable(struct voltagedomain *voltdm) {} | ||
303 | static inline void omap_sr_disable_reset_volt( | ||
304 | struct voltagedomain *voltdm) {} | ||
305 | static inline void omap_sr_register_pmic( | ||
306 | struct omap_sr_pmic_data *pmic_data) {} | ||
307 | #endif | ||
308 | #endif | ||
diff --git a/include/linux/prctl.h b/include/linux/prctl.h index 3988012255dc..289760f424aa 100644 --- a/include/linux/prctl.h +++ b/include/linux/prctl.h | |||
@@ -141,6 +141,8 @@ | |||
141 | * Changing LSM security domain is considered a new privilege. So, for example, | 141 | * Changing LSM security domain is considered a new privilege. So, for example, |
142 | * asking selinux for a specific new context (e.g. with runcon) will result | 142 | * asking selinux for a specific new context (e.g. with runcon) will result |
143 | * in execve returning -EPERM. | 143 | * in execve returning -EPERM. |
144 | * | ||
145 | * See Documentation/prctl/no_new_privs.txt for more details. | ||
144 | */ | 146 | */ |
145 | #define PR_SET_NO_NEW_PRIVS 38 | 147 | #define PR_SET_NO_NEW_PRIVS 38 |
146 | #define PR_GET_NO_NEW_PRIVS 39 | 148 | #define PR_GET_NO_NEW_PRIVS 39 |
diff --git a/include/linux/printk.h b/include/linux/printk.h index 1bec2f7a2d42..9afc01e5a0a6 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h | |||
@@ -2,27 +2,34 @@ | |||
2 | #define __KERNEL_PRINTK__ | 2 | #define __KERNEL_PRINTK__ |
3 | 3 | ||
4 | #include <linux/init.h> | 4 | #include <linux/init.h> |
5 | #include <linux/kern_levels.h> | ||
5 | 6 | ||
6 | extern const char linux_banner[]; | 7 | extern const char linux_banner[]; |
7 | extern const char linux_proc_banner[]; | 8 | extern const char linux_proc_banner[]; |
8 | 9 | ||
9 | #define KERN_EMERG "<0>" /* system is unusable */ | 10 | static inline int printk_get_level(const char *buffer) |
10 | #define KERN_ALERT "<1>" /* action must be taken immediately */ | 11 | { |
11 | #define KERN_CRIT "<2>" /* critical conditions */ | 12 | if (buffer[0] == KERN_SOH_ASCII && buffer[1]) { |
12 | #define KERN_ERR "<3>" /* error conditions */ | 13 | switch (buffer[1]) { |
13 | #define KERN_WARNING "<4>" /* warning conditions */ | 14 | case '0' ... '7': |
14 | #define KERN_NOTICE "<5>" /* normal but significant condition */ | 15 | case 'd': /* KERN_DEFAULT */ |
15 | #define KERN_INFO "<6>" /* informational */ | 16 | return buffer[1]; |
16 | #define KERN_DEBUG "<7>" /* debug-level messages */ | 17 | } |
17 | 18 | } | |
18 | /* Use the default kernel loglevel */ | 19 | return 0; |
19 | #define KERN_DEFAULT "<d>" | 20 | } |
20 | /* | 21 | |
21 | * Annotation for a "continued" line of log printout (only done after a | 22 | static inline const char *printk_skip_level(const char *buffer) |
22 | * line that had no enclosing \n). Only to be used by core/arch code | 23 | { |
23 | * during early bootup (a continued line is not SMP-safe otherwise). | 24 | if (printk_get_level(buffer)) { |
24 | */ | 25 | switch (buffer[1]) { |
25 | #define KERN_CONT "<c>" | 26 | case '0' ... '7': |
27 | case 'd': /* KERN_DEFAULT */ | ||
28 | return buffer + 2; | ||
29 | } | ||
30 | } | ||
31 | return buffer; | ||
32 | } | ||
26 | 33 | ||
27 | extern int console_printk[]; | 34 | extern int console_printk[]; |
28 | 35 | ||
diff --git a/include/linux/pstore.h b/include/linux/pstore.h index e1461e143be2..c892587d9b81 100644 --- a/include/linux/pstore.h +++ b/include/linux/pstore.h | |||
@@ -24,14 +24,22 @@ | |||
24 | 24 | ||
25 | #include <linux/time.h> | 25 | #include <linux/time.h> |
26 | #include <linux/kmsg_dump.h> | 26 | #include <linux/kmsg_dump.h> |
27 | #include <linux/mutex.h> | ||
28 | #include <linux/types.h> | ||
29 | #include <linux/spinlock.h> | ||
30 | #include <linux/errno.h> | ||
27 | 31 | ||
28 | /* types */ | 32 | /* types */ |
29 | enum pstore_type_id { | 33 | enum pstore_type_id { |
30 | PSTORE_TYPE_DMESG = 0, | 34 | PSTORE_TYPE_DMESG = 0, |
31 | PSTORE_TYPE_MCE = 1, | 35 | PSTORE_TYPE_MCE = 1, |
36 | PSTORE_TYPE_CONSOLE = 2, | ||
37 | PSTORE_TYPE_FTRACE = 3, | ||
32 | PSTORE_TYPE_UNKNOWN = 255 | 38 | PSTORE_TYPE_UNKNOWN = 255 |
33 | }; | 39 | }; |
34 | 40 | ||
41 | struct module; | ||
42 | |||
35 | struct pstore_info { | 43 | struct pstore_info { |
36 | struct module *owner; | 44 | struct module *owner; |
37 | char *name; | 45 | char *name; |
@@ -47,11 +55,23 @@ struct pstore_info { | |||
47 | int (*write)(enum pstore_type_id type, | 55 | int (*write)(enum pstore_type_id type, |
48 | enum kmsg_dump_reason reason, u64 *id, | 56 | enum kmsg_dump_reason reason, u64 *id, |
49 | unsigned int part, size_t size, struct pstore_info *psi); | 57 | unsigned int part, size_t size, struct pstore_info *psi); |
58 | int (*write_buf)(enum pstore_type_id type, | ||
59 | enum kmsg_dump_reason reason, u64 *id, | ||
60 | unsigned int part, const char *buf, size_t size, | ||
61 | struct pstore_info *psi); | ||
50 | int (*erase)(enum pstore_type_id type, u64 id, | 62 | int (*erase)(enum pstore_type_id type, u64 id, |
51 | struct pstore_info *psi); | 63 | struct pstore_info *psi); |
52 | void *data; | 64 | void *data; |
53 | }; | 65 | }; |
54 | 66 | ||
67 | |||
68 | #ifdef CONFIG_PSTORE_FTRACE | ||
69 | extern void pstore_ftrace_call(unsigned long ip, unsigned long parent_ip); | ||
70 | #else | ||
71 | static inline void pstore_ftrace_call(unsigned long ip, unsigned long parent_ip) | ||
72 | { } | ||
73 | #endif | ||
74 | |||
55 | #ifdef CONFIG_PSTORE | 75 | #ifdef CONFIG_PSTORE |
56 | extern int pstore_register(struct pstore_info *); | 76 | extern int pstore_register(struct pstore_info *); |
57 | #else | 77 | #else |
diff --git a/include/linux/pstore_ram.h b/include/linux/pstore_ram.h index 7ed7fd4dba49..098d2a838296 100644 --- a/include/linux/pstore_ram.h +++ b/include/linux/pstore_ram.h | |||
@@ -24,21 +24,7 @@ | |||
24 | #include <linux/init.h> | 24 | #include <linux/init.h> |
25 | 25 | ||
26 | struct persistent_ram_buffer; | 26 | struct persistent_ram_buffer; |
27 | 27 | struct rs_control; | |
28 | struct persistent_ram_descriptor { | ||
29 | const char *name; | ||
30 | phys_addr_t size; | ||
31 | }; | ||
32 | |||
33 | struct persistent_ram { | ||
34 | phys_addr_t start; | ||
35 | phys_addr_t size; | ||
36 | |||
37 | int num_descs; | ||
38 | struct persistent_ram_descriptor *descs; | ||
39 | |||
40 | struct list_head node; | ||
41 | }; | ||
42 | 28 | ||
43 | struct persistent_ram_zone { | 29 | struct persistent_ram_zone { |
44 | phys_addr_t paddr; | 30 | phys_addr_t paddr; |
@@ -48,7 +34,6 @@ struct persistent_ram_zone { | |||
48 | size_t buffer_size; | 34 | size_t buffer_size; |
49 | 35 | ||
50 | /* ECC correction */ | 36 | /* ECC correction */ |
51 | bool ecc; | ||
52 | char *par_buffer; | 37 | char *par_buffer; |
53 | char *par_header; | 38 | char *par_header; |
54 | struct rs_control *rs_decoder; | 39 | struct rs_control *rs_decoder; |
@@ -56,25 +41,21 @@ struct persistent_ram_zone { | |||
56 | int bad_blocks; | 41 | int bad_blocks; |
57 | int ecc_block_size; | 42 | int ecc_block_size; |
58 | int ecc_size; | 43 | int ecc_size; |
59 | int ecc_symsize; | ||
60 | int ecc_poly; | ||
61 | 44 | ||
62 | char *old_log; | 45 | char *old_log; |
63 | size_t old_log_size; | 46 | size_t old_log_size; |
64 | }; | 47 | }; |
65 | 48 | ||
66 | int persistent_ram_early_init(struct persistent_ram *ram); | 49 | struct persistent_ram_zone * __devinit persistent_ram_new(phys_addr_t start, |
67 | 50 | size_t size, u32 sig, | |
68 | struct persistent_ram_zone * __init persistent_ram_new(phys_addr_t start, | 51 | int ecc_size); |
69 | size_t size, | ||
70 | bool ecc); | ||
71 | void persistent_ram_free(struct persistent_ram_zone *prz); | 52 | void persistent_ram_free(struct persistent_ram_zone *prz); |
72 | struct persistent_ram_zone *persistent_ram_init_ringbuffer(struct device *dev, | 53 | void persistent_ram_zap(struct persistent_ram_zone *prz); |
73 | bool ecc); | ||
74 | 54 | ||
75 | int persistent_ram_write(struct persistent_ram_zone *prz, const void *s, | 55 | int persistent_ram_write(struct persistent_ram_zone *prz, const void *s, |
76 | unsigned int count); | 56 | unsigned int count); |
77 | 57 | ||
58 | void persistent_ram_save_old(struct persistent_ram_zone *prz); | ||
78 | size_t persistent_ram_old_size(struct persistent_ram_zone *prz); | 59 | size_t persistent_ram_old_size(struct persistent_ram_zone *prz); |
79 | void *persistent_ram_old(struct persistent_ram_zone *prz); | 60 | void *persistent_ram_old(struct persistent_ram_zone *prz); |
80 | void persistent_ram_free_old(struct persistent_ram_zone *prz); | 61 | void persistent_ram_free_old(struct persistent_ram_zone *prz); |
@@ -91,8 +72,10 @@ struct ramoops_platform_data { | |||
91 | unsigned long mem_size; | 72 | unsigned long mem_size; |
92 | unsigned long mem_address; | 73 | unsigned long mem_address; |
93 | unsigned long record_size; | 74 | unsigned long record_size; |
75 | unsigned long console_size; | ||
76 | unsigned long ftrace_size; | ||
94 | int dump_oops; | 77 | int dump_oops; |
95 | bool ecc; | 78 | int ecc_size; |
96 | }; | 79 | }; |
97 | 80 | ||
98 | #endif | 81 | #endif |
diff --git a/include/linux/pwm.h b/include/linux/pwm.h index 7c775751392c..21d076c5089e 100644 --- a/include/linux/pwm.h +++ b/include/linux/pwm.h | |||
@@ -1,7 +1,10 @@ | |||
1 | #ifndef __LINUX_PWM_H | 1 | #ifndef __LINUX_PWM_H |
2 | #define __LINUX_PWM_H | 2 | #define __LINUX_PWM_H |
3 | 3 | ||
4 | #include <linux/of.h> | ||
5 | |||
4 | struct pwm_device; | 6 | struct pwm_device; |
7 | struct seq_file; | ||
5 | 8 | ||
6 | /* | 9 | /* |
7 | * pwm_request - request a PWM device | 10 | * pwm_request - request a PWM device |
@@ -28,4 +31,118 @@ int pwm_enable(struct pwm_device *pwm); | |||
28 | */ | 31 | */ |
29 | void pwm_disable(struct pwm_device *pwm); | 32 | void pwm_disable(struct pwm_device *pwm); |
30 | 33 | ||
34 | #ifdef CONFIG_PWM | ||
35 | struct pwm_chip; | ||
36 | |||
37 | enum { | ||
38 | PWMF_REQUESTED = 1 << 0, | ||
39 | PWMF_ENABLED = 1 << 1, | ||
40 | }; | ||
41 | |||
42 | struct pwm_device { | ||
43 | const char *label; | ||
44 | unsigned long flags; | ||
45 | unsigned int hwpwm; | ||
46 | unsigned int pwm; | ||
47 | struct pwm_chip *chip; | ||
48 | void *chip_data; | ||
49 | |||
50 | unsigned int period; /* in nanoseconds */ | ||
51 | }; | ||
52 | |||
53 | static inline void pwm_set_period(struct pwm_device *pwm, unsigned int period) | ||
54 | { | ||
55 | if (pwm) | ||
56 | pwm->period = period; | ||
57 | } | ||
58 | |||
59 | static inline unsigned int pwm_get_period(struct pwm_device *pwm) | ||
60 | { | ||
61 | return pwm ? pwm->period : 0; | ||
62 | } | ||
63 | |||
64 | /** | ||
65 | * struct pwm_ops - PWM controller operations | ||
66 | * @request: optional hook for requesting a PWM | ||
67 | * @free: optional hook for freeing a PWM | ||
68 | * @config: configure duty cycles and period length for this PWM | ||
69 | * @enable: enable PWM output toggling | ||
70 | * @disable: disable PWM output toggling | ||
71 | * @dbg_show: optional routine to show contents in debugfs | ||
72 | * @owner: helps prevent removal of modules exporting active PWMs | ||
73 | */ | ||
74 | struct pwm_ops { | ||
75 | int (*request)(struct pwm_chip *chip, | ||
76 | struct pwm_device *pwm); | ||
77 | void (*free)(struct pwm_chip *chip, | ||
78 | struct pwm_device *pwm); | ||
79 | int (*config)(struct pwm_chip *chip, | ||
80 | struct pwm_device *pwm, | ||
81 | int duty_ns, int period_ns); | ||
82 | int (*enable)(struct pwm_chip *chip, | ||
83 | struct pwm_device *pwm); | ||
84 | void (*disable)(struct pwm_chip *chip, | ||
85 | struct pwm_device *pwm); | ||
86 | #ifdef CONFIG_DEBUG_FS | ||
87 | void (*dbg_show)(struct pwm_chip *chip, | ||
88 | struct seq_file *s); | ||
89 | #endif | ||
90 | struct module *owner; | ||
91 | }; | ||
92 | |||
93 | /** | ||
94 | * struct pwm_chip - abstract a PWM controller | ||
95 | * @dev: device providing the PWMs | ||
96 | * @list: list node for internal use | ||
97 | * @ops: callbacks for this PWM controller | ||
98 | * @base: number of first PWM controlled by this chip | ||
99 | * @npwm: number of PWMs controlled by this chip | ||
100 | * @pwms: array of PWM devices allocated by the framework | ||
101 | */ | ||
102 | struct pwm_chip { | ||
103 | struct device *dev; | ||
104 | struct list_head list; | ||
105 | const struct pwm_ops *ops; | ||
106 | int base; | ||
107 | unsigned int npwm; | ||
108 | |||
109 | struct pwm_device *pwms; | ||
110 | |||
111 | struct pwm_device * (*of_xlate)(struct pwm_chip *pc, | ||
112 | const struct of_phandle_args *args); | ||
113 | unsigned int of_pwm_n_cells; | ||
114 | }; | ||
115 | |||
116 | int pwm_set_chip_data(struct pwm_device *pwm, void *data); | ||
117 | void *pwm_get_chip_data(struct pwm_device *pwm); | ||
118 | |||
119 | int pwmchip_add(struct pwm_chip *chip); | ||
120 | int pwmchip_remove(struct pwm_chip *chip); | ||
121 | struct pwm_device *pwm_request_from_chip(struct pwm_chip *chip, | ||
122 | unsigned int index, | ||
123 | const char *label); | ||
124 | |||
125 | struct pwm_device *pwm_get(struct device *dev, const char *consumer); | ||
126 | void pwm_put(struct pwm_device *pwm); | ||
127 | |||
128 | struct pwm_lookup { | ||
129 | struct list_head list; | ||
130 | const char *provider; | ||
131 | unsigned int index; | ||
132 | const char *dev_id; | ||
133 | const char *con_id; | ||
134 | }; | ||
135 | |||
136 | #define PWM_LOOKUP(_provider, _index, _dev_id, _con_id) \ | ||
137 | { \ | ||
138 | .provider = _provider, \ | ||
139 | .index = _index, \ | ||
140 | .dev_id = _dev_id, \ | ||
141 | .con_id = _con_id, \ | ||
142 | } | ||
143 | |||
144 | void pwm_add_table(struct pwm_lookup *table, size_t num); | ||
145 | |||
146 | #endif | ||
147 | |||
31 | #endif /* __LINUX_PWM_H */ | 148 | #endif /* __LINUX_PWM_H */ |
diff --git a/include/linux/pwm_backlight.h b/include/linux/pwm_backlight.h index 63d2df43e61a..56f4a866539a 100644 --- a/include/linux/pwm_backlight.h +++ b/include/linux/pwm_backlight.h | |||
@@ -12,6 +12,7 @@ struct platform_pwm_backlight_data { | |||
12 | unsigned int dft_brightness; | 12 | unsigned int dft_brightness; |
13 | unsigned int lth_brightness; | 13 | unsigned int lth_brightness; |
14 | unsigned int pwm_period_ns; | 14 | unsigned int pwm_period_ns; |
15 | unsigned int *levels; | ||
15 | int (*init)(struct device *dev); | 16 | int (*init)(struct device *dev); |
16 | int (*notify)(struct device *dev, int brightness); | 17 | int (*notify)(struct device *dev, int brightness); |
17 | void (*notify_after)(struct device *dev, int brightness); | 18 | void (*notify_after)(struct device *dev, int brightness); |
diff --git a/include/linux/pxa2xx_ssp.h b/include/linux/pxa2xx_ssp.h index 44835fb39793..f36632061c66 100644 --- a/include/linux/pxa2xx_ssp.h +++ b/include/linux/pxa2xx_ssp.h | |||
@@ -160,7 +160,9 @@ enum pxa_ssp_type { | |||
160 | PXA25x_SSP, /* pxa 210, 250, 255, 26x */ | 160 | PXA25x_SSP, /* pxa 210, 250, 255, 26x */ |
161 | PXA25x_NSSP, /* pxa 255, 26x (including ASSP) */ | 161 | PXA25x_NSSP, /* pxa 255, 26x (including ASSP) */ |
162 | PXA27x_SSP, | 162 | PXA27x_SSP, |
163 | PXA3xx_SSP, | ||
163 | PXA168_SSP, | 164 | PXA168_SSP, |
165 | PXA910_SSP, | ||
164 | CE4100_SSP, | 166 | CE4100_SSP, |
165 | }; | 167 | }; |
166 | 168 | ||
diff --git a/include/linux/quota.h b/include/linux/quota.h index c09fa042b5ea..524ede8a160a 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
@@ -333,7 +333,7 @@ struct quotactl_ops { | |||
333 | int (*quota_on)(struct super_block *, int, int, struct path *); | 333 | int (*quota_on)(struct super_block *, int, int, struct path *); |
334 | int (*quota_on_meta)(struct super_block *, int, int); | 334 | int (*quota_on_meta)(struct super_block *, int, int); |
335 | int (*quota_off)(struct super_block *, int); | 335 | int (*quota_off)(struct super_block *, int); |
336 | int (*quota_sync)(struct super_block *, int, int); | 336 | int (*quota_sync)(struct super_block *, int); |
337 | int (*get_info)(struct super_block *, int, struct if_dqinfo *); | 337 | int (*get_info)(struct super_block *, int, struct if_dqinfo *); |
338 | int (*set_info)(struct super_block *, int, struct if_dqinfo *); | 338 | int (*set_info)(struct super_block *, int, struct if_dqinfo *); |
339 | int (*get_dqblk)(struct super_block *, int, qid_t, struct fs_disk_quota *); | 339 | int (*get_dqblk)(struct super_block *, int, qid_t, struct fs_disk_quota *); |
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index 17b977304a09..ec6b65feaaba 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h | |||
@@ -83,7 +83,8 @@ int dquot_quota_on(struct super_block *sb, int type, int format_id, | |||
83 | int dquot_quota_on_mount(struct super_block *sb, char *qf_name, | 83 | int dquot_quota_on_mount(struct super_block *sb, char *qf_name, |
84 | int format_id, int type); | 84 | int format_id, int type); |
85 | int dquot_quota_off(struct super_block *sb, int type); | 85 | int dquot_quota_off(struct super_block *sb, int type); |
86 | int dquot_quota_sync(struct super_block *sb, int type, int wait); | 86 | int dquot_writeback_dquots(struct super_block *sb, int type); |
87 | int dquot_quota_sync(struct super_block *sb, int type); | ||
87 | int dquot_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 88 | int dquot_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
88 | int dquot_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 89 | int dquot_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
89 | int dquot_get_dqblk(struct super_block *sb, int type, qid_t id, | 90 | int dquot_get_dqblk(struct super_block *sb, int type, qid_t id, |
@@ -255,6 +256,11 @@ static inline int dquot_resume(struct super_block *sb, int type) | |||
255 | 256 | ||
256 | #define dquot_file_open generic_file_open | 257 | #define dquot_file_open generic_file_open |
257 | 258 | ||
259 | static inline int dquot_writeback_dquots(struct super_block *sb, int type) | ||
260 | { | ||
261 | return 0; | ||
262 | } | ||
263 | |||
258 | #endif /* CONFIG_QUOTA */ | 264 | #endif /* CONFIG_QUOTA */ |
259 | 265 | ||
260 | static inline int dquot_alloc_space_nodirty(struct inode *inode, qsize_t nr) | 266 | static inline int dquot_alloc_space_nodirty(struct inode *inode, qsize_t nr) |
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index 26d1a47591f1..115ead2b5155 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h | |||
@@ -147,6 +147,7 @@ extern void synchronize_sched(void); | |||
147 | 147 | ||
148 | extern void __rcu_read_lock(void); | 148 | extern void __rcu_read_lock(void); |
149 | extern void __rcu_read_unlock(void); | 149 | extern void __rcu_read_unlock(void); |
150 | extern void rcu_read_unlock_special(struct task_struct *t); | ||
150 | void synchronize_rcu(void); | 151 | void synchronize_rcu(void); |
151 | 152 | ||
152 | /* | 153 | /* |
@@ -184,7 +185,6 @@ static inline int rcu_preempt_depth(void) | |||
184 | /* Internal to kernel */ | 185 | /* Internal to kernel */ |
185 | extern void rcu_sched_qs(int cpu); | 186 | extern void rcu_sched_qs(int cpu); |
186 | extern void rcu_bh_qs(int cpu); | 187 | extern void rcu_bh_qs(int cpu); |
187 | extern void rcu_preempt_note_context_switch(void); | ||
188 | extern void rcu_check_callbacks(int cpu, int user); | 188 | extern void rcu_check_callbacks(int cpu, int user); |
189 | struct notifier_block; | 189 | struct notifier_block; |
190 | extern void rcu_idle_enter(void); | 190 | extern void rcu_idle_enter(void); |
@@ -256,6 +256,10 @@ static inline void destroy_rcu_head_on_stack(struct rcu_head *head) | |||
256 | } | 256 | } |
257 | #endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */ | 257 | #endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */ |
258 | 258 | ||
259 | #if defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_SMP) | ||
260 | extern int rcu_is_cpu_idle(void); | ||
261 | #endif /* #if defined(CONFIG_DEBUG_LOCK_ALLOC) || defined(CONFIG_SMP) */ | ||
262 | |||
259 | #if defined(CONFIG_HOTPLUG_CPU) && defined(CONFIG_PROVE_RCU) | 263 | #if defined(CONFIG_HOTPLUG_CPU) && defined(CONFIG_PROVE_RCU) |
260 | bool rcu_lockdep_current_cpu_online(void); | 264 | bool rcu_lockdep_current_cpu_online(void); |
261 | #else /* #if defined(CONFIG_HOTPLUG_CPU) && defined(CONFIG_PROVE_RCU) */ | 265 | #else /* #if defined(CONFIG_HOTPLUG_CPU) && defined(CONFIG_PROVE_RCU) */ |
@@ -267,15 +271,6 @@ static inline bool rcu_lockdep_current_cpu_online(void) | |||
267 | 271 | ||
268 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 272 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
269 | 273 | ||
270 | #ifdef CONFIG_PROVE_RCU | ||
271 | extern int rcu_is_cpu_idle(void); | ||
272 | #else /* !CONFIG_PROVE_RCU */ | ||
273 | static inline int rcu_is_cpu_idle(void) | ||
274 | { | ||
275 | return 0; | ||
276 | } | ||
277 | #endif /* else !CONFIG_PROVE_RCU */ | ||
278 | |||
279 | static inline void rcu_lock_acquire(struct lockdep_map *map) | 274 | static inline void rcu_lock_acquire(struct lockdep_map *map) |
280 | { | 275 | { |
281 | lock_acquire(map, 0, 0, 2, 1, NULL, _THIS_IP_); | 276 | lock_acquire(map, 0, 0, 2, 1, NULL, _THIS_IP_); |
@@ -432,8 +427,7 @@ extern int rcu_my_thread_group_empty(void); | |||
432 | static inline void rcu_preempt_sleep_check(void) | 427 | static inline void rcu_preempt_sleep_check(void) |
433 | { | 428 | { |
434 | rcu_lockdep_assert(!lock_is_held(&rcu_lock_map), | 429 | rcu_lockdep_assert(!lock_is_held(&rcu_lock_map), |
435 | "Illegal context switch in RCU read-side " | 430 | "Illegal context switch in RCU read-side critical section"); |
436 | "critical section"); | ||
437 | } | 431 | } |
438 | #else /* #ifdef CONFIG_PROVE_RCU */ | 432 | #else /* #ifdef CONFIG_PROVE_RCU */ |
439 | static inline void rcu_preempt_sleep_check(void) | 433 | static inline void rcu_preempt_sleep_check(void) |
@@ -514,10 +508,10 @@ static inline void rcu_preempt_sleep_check(void) | |||
514 | (_________p1); \ | 508 | (_________p1); \ |
515 | }) | 509 | }) |
516 | #define __rcu_assign_pointer(p, v, space) \ | 510 | #define __rcu_assign_pointer(p, v, space) \ |
517 | ({ \ | 511 | do { \ |
518 | smp_wmb(); \ | 512 | smp_wmb(); \ |
519 | (p) = (typeof(*v) __force space *)(v); \ | 513 | (p) = (typeof(*v) __force space *)(v); \ |
520 | }) | 514 | } while (0) |
521 | 515 | ||
522 | 516 | ||
523 | /** | 517 | /** |
@@ -852,7 +846,7 @@ static inline notrace void rcu_read_unlock_sched_notrace(void) | |||
852 | * | 846 | * |
853 | * Assigns the specified value to the specified RCU-protected | 847 | * Assigns the specified value to the specified RCU-protected |
854 | * pointer, ensuring that any concurrent RCU readers will see | 848 | * pointer, ensuring that any concurrent RCU readers will see |
855 | * any prior initialization. Returns the value assigned. | 849 | * any prior initialization. |
856 | * | 850 | * |
857 | * Inserts memory barriers on architectures that require them | 851 | * Inserts memory barriers on architectures that require them |
858 | * (which is most of them), and also prevents the compiler from | 852 | * (which is most of them), and also prevents the compiler from |
@@ -904,25 +898,17 @@ static inline notrace void rcu_read_unlock_sched_notrace(void) | |||
904 | * the reader-accessible portions of the linked structure. | 898 | * the reader-accessible portions of the linked structure. |
905 | */ | 899 | */ |
906 | #define RCU_INIT_POINTER(p, v) \ | 900 | #define RCU_INIT_POINTER(p, v) \ |
907 | p = (typeof(*v) __force __rcu *)(v) | 901 | do { \ |
908 | 902 | p = (typeof(*v) __force __rcu *)(v); \ | |
909 | static __always_inline bool __is_kfree_rcu_offset(unsigned long offset) | 903 | } while (0) |
910 | { | ||
911 | return offset < 4096; | ||
912 | } | ||
913 | |||
914 | static __always_inline | ||
915 | void __kfree_rcu(struct rcu_head *head, unsigned long offset) | ||
916 | { | ||
917 | typedef void (*rcu_callback)(struct rcu_head *); | ||
918 | |||
919 | BUILD_BUG_ON(!__builtin_constant_p(offset)); | ||
920 | |||
921 | /* See the kfree_rcu() header comment. */ | ||
922 | BUILD_BUG_ON(!__is_kfree_rcu_offset(offset)); | ||
923 | 904 | ||
924 | kfree_call_rcu(head, (rcu_callback)offset); | 905 | /** |
925 | } | 906 | * RCU_POINTER_INITIALIZER() - statically initialize an RCU protected pointer |
907 | * | ||
908 | * GCC-style initialization for an RCU-protected pointer in a structure field. | ||
909 | */ | ||
910 | #define RCU_POINTER_INITIALIZER(p, v) \ | ||
911 | .p = (typeof(*v) __force __rcu *)(v) | ||
926 | 912 | ||
927 | /* | 913 | /* |
928 | * Does the specified offset indicate that the corresponding rcu_head | 914 | * Does the specified offset indicate that the corresponding rcu_head |
@@ -936,7 +922,7 @@ void __kfree_rcu(struct rcu_head *head, unsigned long offset) | |||
936 | #define __kfree_rcu(head, offset) \ | 922 | #define __kfree_rcu(head, offset) \ |
937 | do { \ | 923 | do { \ |
938 | BUILD_BUG_ON(!__is_kfree_rcu_offset(offset)); \ | 924 | BUILD_BUG_ON(!__is_kfree_rcu_offset(offset)); \ |
939 | call_rcu(head, (void (*)(struct rcu_head *))(unsigned long)(offset)); \ | 925 | kfree_call_rcu(head, (void (*)(struct rcu_head *))(unsigned long)(offset)); \ |
940 | } while (0) | 926 | } while (0) |
941 | 927 | ||
942 | /** | 928 | /** |
diff --git a/include/linux/rcutiny.h b/include/linux/rcutiny.h index 854dc4c5c271..4e56a9c69a35 100644 --- a/include/linux/rcutiny.h +++ b/include/linux/rcutiny.h | |||
@@ -87,6 +87,10 @@ static inline void kfree_call_rcu(struct rcu_head *head, | |||
87 | 87 | ||
88 | #ifdef CONFIG_TINY_RCU | 88 | #ifdef CONFIG_TINY_RCU |
89 | 89 | ||
90 | static inline void rcu_preempt_note_context_switch(void) | ||
91 | { | ||
92 | } | ||
93 | |||
90 | static inline int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies) | 94 | static inline int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies) |
91 | { | 95 | { |
92 | *delta_jiffies = ULONG_MAX; | 96 | *delta_jiffies = ULONG_MAX; |
@@ -95,6 +99,7 @@ static inline int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies) | |||
95 | 99 | ||
96 | #else /* #ifdef CONFIG_TINY_RCU */ | 100 | #else /* #ifdef CONFIG_TINY_RCU */ |
97 | 101 | ||
102 | void rcu_preempt_note_context_switch(void); | ||
98 | int rcu_preempt_needs_cpu(void); | 103 | int rcu_preempt_needs_cpu(void); |
99 | 104 | ||
100 | static inline int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies) | 105 | static inline int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies) |
@@ -108,6 +113,7 @@ static inline int rcu_needs_cpu(int cpu, unsigned long *delta_jiffies) | |||
108 | static inline void rcu_note_context_switch(int cpu) | 113 | static inline void rcu_note_context_switch(int cpu) |
109 | { | 114 | { |
110 | rcu_sched_qs(cpu); | 115 | rcu_sched_qs(cpu); |
116 | rcu_preempt_note_context_switch(); | ||
111 | } | 117 | } |
112 | 118 | ||
113 | /* | 119 | /* |
diff --git a/include/linux/regmap.h b/include/linux/regmap.h index 56af22ec9aba..7f7e00df3adf 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h | |||
@@ -14,12 +14,14 @@ | |||
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include <linux/list.h> | 16 | #include <linux/list.h> |
17 | #include <linux/rbtree.h> | ||
17 | 18 | ||
18 | struct module; | 19 | struct module; |
19 | struct device; | 20 | struct device; |
20 | struct i2c_client; | 21 | struct i2c_client; |
21 | struct spi_device; | 22 | struct spi_device; |
22 | struct regmap; | 23 | struct regmap; |
24 | struct regmap_range_cfg; | ||
23 | 25 | ||
24 | /* An enum of all the supported cache types */ | 26 | /* An enum of all the supported cache types */ |
25 | enum regcache_type { | 27 | enum regcache_type { |
@@ -43,6 +45,14 @@ struct reg_default { | |||
43 | 45 | ||
44 | #ifdef CONFIG_REGMAP | 46 | #ifdef CONFIG_REGMAP |
45 | 47 | ||
48 | enum regmap_endian { | ||
49 | /* Unspecified -> 0 -> Backwards compatible default */ | ||
50 | REGMAP_ENDIAN_DEFAULT = 0, | ||
51 | REGMAP_ENDIAN_BIG, | ||
52 | REGMAP_ENDIAN_LITTLE, | ||
53 | REGMAP_ENDIAN_NATIVE, | ||
54 | }; | ||
55 | |||
46 | /** | 56 | /** |
47 | * Configuration for the register map of a device. | 57 | * Configuration for the register map of a device. |
48 | * | 58 | * |
@@ -84,6 +94,15 @@ struct reg_default { | |||
84 | * @reg_defaults_raw: Power on reset values for registers (for use with | 94 | * @reg_defaults_raw: Power on reset values for registers (for use with |
85 | * register cache support). | 95 | * register cache support). |
86 | * @num_reg_defaults_raw: Number of elements in reg_defaults_raw. | 96 | * @num_reg_defaults_raw: Number of elements in reg_defaults_raw. |
97 | * @reg_format_endian: Endianness for formatted register addresses. If this is | ||
98 | * DEFAULT, the @reg_format_endian_default value from the | ||
99 | * regmap bus is used. | ||
100 | * @val_format_endian: Endianness for formatted register values. If this is | ||
101 | * DEFAULT, the @reg_format_endian_default value from the | ||
102 | * regmap bus is used. | ||
103 | * | ||
104 | * @ranges: Array of configuration entries for virtual address ranges. | ||
105 | * @num_ranges: Number of range configuration entries. | ||
87 | */ | 106 | */ |
88 | struct regmap_config { | 107 | struct regmap_config { |
89 | const char *name; | 108 | const char *name; |
@@ -109,6 +128,43 @@ struct regmap_config { | |||
109 | u8 write_flag_mask; | 128 | u8 write_flag_mask; |
110 | 129 | ||
111 | bool use_single_rw; | 130 | bool use_single_rw; |
131 | |||
132 | enum regmap_endian reg_format_endian; | ||
133 | enum regmap_endian val_format_endian; | ||
134 | |||
135 | const struct regmap_range_cfg *ranges; | ||
136 | unsigned int n_ranges; | ||
137 | }; | ||
138 | |||
139 | /** | ||
140 | * Configuration for indirectly accessed or paged registers. | ||
141 | * Registers, mapped to this virtual range, are accessed in two steps: | ||
142 | * 1. page selector register update; | ||
143 | * 2. access through data window registers. | ||
144 | * | ||
145 | * @range_min: Address of the lowest register address in virtual range. | ||
146 | * @range_max: Address of the highest register in virtual range. | ||
147 | * | ||
148 | * @page_sel_reg: Register with selector field. | ||
149 | * @page_sel_mask: Bit shift for selector value. | ||
150 | * @page_sel_shift: Bit mask for selector value. | ||
151 | * | ||
152 | * @window_start: Address of first (lowest) register in data window. | ||
153 | * @window_len: Number of registers in data window. | ||
154 | */ | ||
155 | struct regmap_range_cfg { | ||
156 | /* Registers of virtual address range */ | ||
157 | unsigned int range_min; | ||
158 | unsigned int range_max; | ||
159 | |||
160 | /* Page selector for indirect addressing */ | ||
161 | unsigned int selector_reg; | ||
162 | unsigned int selector_mask; | ||
163 | int selector_shift; | ||
164 | |||
165 | /* Data window (per each page) */ | ||
166 | unsigned int window_start; | ||
167 | unsigned int window_len; | ||
112 | }; | 168 | }; |
113 | 169 | ||
114 | typedef int (*regmap_hw_write)(void *context, const void *data, | 170 | typedef int (*regmap_hw_write)(void *context, const void *data, |
@@ -133,6 +189,12 @@ typedef void (*regmap_hw_free_context)(void *context); | |||
133 | * data. | 189 | * data. |
134 | * @read_flag_mask: Mask to be set in the top byte of the register when doing | 190 | * @read_flag_mask: Mask to be set in the top byte of the register when doing |
135 | * a read. | 191 | * a read. |
192 | * @reg_format_endian_default: Default endianness for formatted register | ||
193 | * addresses. Used when the regmap_config specifies DEFAULT. If this is | ||
194 | * DEFAULT, BIG is assumed. | ||
195 | * @val_format_endian_default: Default endianness for formatted register | ||
196 | * values. Used when the regmap_config specifies DEFAULT. If this is | ||
197 | * DEFAULT, BIG is assumed. | ||
136 | */ | 198 | */ |
137 | struct regmap_bus { | 199 | struct regmap_bus { |
138 | bool fast_io; | 200 | bool fast_io; |
@@ -141,6 +203,8 @@ struct regmap_bus { | |||
141 | regmap_hw_read read; | 203 | regmap_hw_read read; |
142 | regmap_hw_free_context free_context; | 204 | regmap_hw_free_context free_context; |
143 | u8 read_flag_mask; | 205 | u8 read_flag_mask; |
206 | enum regmap_endian reg_format_endian_default; | ||
207 | enum regmap_endian val_format_endian_default; | ||
144 | }; | 208 | }; |
145 | 209 | ||
146 | struct regmap *regmap_init(struct device *dev, | 210 | struct regmap *regmap_init(struct device *dev, |
@@ -219,6 +283,7 @@ struct regmap_irq { | |||
219 | * @status_base: Base status register address. | 283 | * @status_base: Base status register address. |
220 | * @mask_base: Base mask register address. | 284 | * @mask_base: Base mask register address. |
221 | * @ack_base: Base ack address. If zero then the chip is clear on read. | 285 | * @ack_base: Base ack address. If zero then the chip is clear on read. |
286 | * @wake_base: Base address for wake enables. If zero unsupported. | ||
222 | * @irq_reg_stride: Stride to use for chips where registers are not contiguous. | 287 | * @irq_reg_stride: Stride to use for chips where registers are not contiguous. |
223 | * | 288 | * |
224 | * @num_regs: Number of registers in each control bank. | 289 | * @num_regs: Number of registers in each control bank. |
@@ -232,6 +297,7 @@ struct regmap_irq_chip { | |||
232 | unsigned int status_base; | 297 | unsigned int status_base; |
233 | unsigned int mask_base; | 298 | unsigned int mask_base; |
234 | unsigned int ack_base; | 299 | unsigned int ack_base; |
300 | unsigned int wake_base; | ||
235 | unsigned int irq_reg_stride; | 301 | unsigned int irq_reg_stride; |
236 | 302 | ||
237 | int num_regs; | 303 | int num_regs; |
@@ -243,7 +309,7 @@ struct regmap_irq_chip { | |||
243 | struct regmap_irq_chip_data; | 309 | struct regmap_irq_chip_data; |
244 | 310 | ||
245 | int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags, | 311 | int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags, |
246 | int irq_base, struct regmap_irq_chip *chip, | 312 | int irq_base, const struct regmap_irq_chip *chip, |
247 | struct regmap_irq_chip_data **data); | 313 | struct regmap_irq_chip_data **data); |
248 | void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data); | 314 | void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data); |
249 | int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data); | 315 | int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data); |
@@ -361,7 +427,6 @@ static inline int regmap_register_patch(struct regmap *map, | |||
361 | static inline struct regmap *dev_get_regmap(struct device *dev, | 427 | static inline struct regmap *dev_get_regmap(struct device *dev, |
362 | const char *name) | 428 | const char *name) |
363 | { | 429 | { |
364 | WARN_ONCE(1, "regmap API is disabled"); | ||
365 | return NULL; | 430 | return NULL; |
366 | } | 431 | } |
367 | 432 | ||
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index 4ed1b30ac5fc..da339fd8c755 100644 --- a/include/linux/regulator/consumer.h +++ b/include/linux/regulator/consumer.h | |||
@@ -291,6 +291,12 @@ static inline int regulator_set_voltage(struct regulator *regulator, | |||
291 | 291 | ||
292 | static inline int regulator_get_voltage(struct regulator *regulator) | 292 | static inline int regulator_get_voltage(struct regulator *regulator) |
293 | { | 293 | { |
294 | return -EINVAL; | ||
295 | } | ||
296 | |||
297 | static inline int regulator_is_supported_voltage(struct regulator *regulator, | ||
298 | int min_uV, int max_uV) | ||
299 | { | ||
294 | return 0; | 300 | return 0; |
295 | } | 301 | } |
296 | 302 | ||
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h index b0432cc2b169..bac4c871f3bd 100644 --- a/include/linux/regulator/driver.h +++ b/include/linux/regulator/driver.h | |||
@@ -32,6 +32,8 @@ enum regulator_status { | |||
32 | REGULATOR_STATUS_NORMAL, | 32 | REGULATOR_STATUS_NORMAL, |
33 | REGULATOR_STATUS_IDLE, | 33 | REGULATOR_STATUS_IDLE, |
34 | REGULATOR_STATUS_STANDBY, | 34 | REGULATOR_STATUS_STANDBY, |
35 | /* in case that any other status doesn't apply */ | ||
36 | REGULATOR_STATUS_UNDEFINED, | ||
35 | }; | 37 | }; |
36 | 38 | ||
37 | /** | 39 | /** |
@@ -67,6 +69,8 @@ enum regulator_status { | |||
67 | * | 69 | * |
68 | * @enable_time: Time taken for the regulator voltage output voltage to | 70 | * @enable_time: Time taken for the regulator voltage output voltage to |
69 | * stabilise after being enabled, in microseconds. | 71 | * stabilise after being enabled, in microseconds. |
72 | * @set_ramp_delay: Set the ramp delay for the regulator. The driver should | ||
73 | * select ramp delay equal to or less than(closest) ramp_delay. | ||
70 | * @set_voltage_time_sel: Time taken for the regulator voltage output voltage | 74 | * @set_voltage_time_sel: Time taken for the regulator voltage output voltage |
71 | * to stabilise after being set to a new value, in microseconds. | 75 | * to stabilise after being set to a new value, in microseconds. |
72 | * The function provides the from and to voltage selector, the | 76 | * The function provides the from and to voltage selector, the |
@@ -113,6 +117,7 @@ struct regulator_ops { | |||
113 | 117 | ||
114 | /* Time taken to enable or set voltage on the regulator */ | 118 | /* Time taken to enable or set voltage on the regulator */ |
115 | int (*enable_time) (struct regulator_dev *); | 119 | int (*enable_time) (struct regulator_dev *); |
120 | int (*set_ramp_delay) (struct regulator_dev *, int ramp_delay); | ||
116 | int (*set_voltage_time_sel) (struct regulator_dev *, | 121 | int (*set_voltage_time_sel) (struct regulator_dev *, |
117 | unsigned int old_selector, | 122 | unsigned int old_selector, |
118 | unsigned int new_selector); | 123 | unsigned int new_selector); |
@@ -170,11 +175,15 @@ enum regulator_type { | |||
170 | * | 175 | * |
171 | * @min_uV: Voltage given by the lowest selector (if linear mapping) | 176 | * @min_uV: Voltage given by the lowest selector (if linear mapping) |
172 | * @uV_step: Voltage increase with each selector (if linear mapping) | 177 | * @uV_step: Voltage increase with each selector (if linear mapping) |
178 | * @ramp_delay: Time to settle down after voltage change (unit: uV/us) | ||
179 | * @volt_table: Voltage mapping table (if table based mapping) | ||
173 | * | 180 | * |
174 | * @vsel_reg: Register for selector when using regulator_regmap_X_voltage_ | 181 | * @vsel_reg: Register for selector when using regulator_regmap_X_voltage_ |
175 | * @vsel_mask: Mask for register bitfield used for selector | 182 | * @vsel_mask: Mask for register bitfield used for selector |
176 | * @enable_reg: Register for control when using regmap enable/disable ops | 183 | * @enable_reg: Register for control when using regmap enable/disable ops |
177 | * @enable_mask: Mask for control when using regmap enable/disable ops | 184 | * @enable_mask: Mask for control when using regmap enable/disable ops |
185 | * | ||
186 | * @enable_time: Time taken for initial enable of regulator (in uS). | ||
178 | */ | 187 | */ |
179 | struct regulator_desc { | 188 | struct regulator_desc { |
180 | const char *name; | 189 | const char *name; |
@@ -188,11 +197,16 @@ struct regulator_desc { | |||
188 | 197 | ||
189 | unsigned int min_uV; | 198 | unsigned int min_uV; |
190 | unsigned int uV_step; | 199 | unsigned int uV_step; |
200 | unsigned int ramp_delay; | ||
201 | |||
202 | const unsigned int *volt_table; | ||
191 | 203 | ||
192 | unsigned int vsel_reg; | 204 | unsigned int vsel_reg; |
193 | unsigned int vsel_mask; | 205 | unsigned int vsel_mask; |
194 | unsigned int enable_reg; | 206 | unsigned int enable_reg; |
195 | unsigned int enable_mask; | 207 | unsigned int enable_mask; |
208 | |||
209 | unsigned int enable_time; | ||
196 | }; | 210 | }; |
197 | 211 | ||
198 | /** | 212 | /** |
@@ -208,6 +222,9 @@ struct regulator_desc { | |||
208 | * @of_node: OpenFirmware node to parse for device tree bindings (may be | 222 | * @of_node: OpenFirmware node to parse for device tree bindings (may be |
209 | * NULL). | 223 | * NULL). |
210 | * @regmap: regmap to use for core regmap helpers | 224 | * @regmap: regmap to use for core regmap helpers |
225 | * @ena_gpio: GPIO controlling regulator enable. | ||
226 | * @ena_gpio_invert: Sense for GPIO enable control. | ||
227 | * @ena_gpio_flags: Flags to use when calling gpio_request_one() | ||
211 | */ | 228 | */ |
212 | struct regulator_config { | 229 | struct regulator_config { |
213 | struct device *dev; | 230 | struct device *dev; |
@@ -215,6 +232,10 @@ struct regulator_config { | |||
215 | void *driver_data; | 232 | void *driver_data; |
216 | struct device_node *of_node; | 233 | struct device_node *of_node; |
217 | struct regmap *regmap; | 234 | struct regmap *regmap; |
235 | |||
236 | int ena_gpio; | ||
237 | unsigned int ena_gpio_invert:1; | ||
238 | unsigned int ena_gpio_flags; | ||
218 | }; | 239 | }; |
219 | 240 | ||
220 | /* | 241 | /* |
@@ -253,6 +274,10 @@ struct regulator_dev { | |||
253 | void *reg_data; /* regulator_dev data */ | 274 | void *reg_data; /* regulator_dev data */ |
254 | 275 | ||
255 | struct dentry *debugfs; | 276 | struct dentry *debugfs; |
277 | |||
278 | int ena_gpio; | ||
279 | unsigned int ena_gpio_invert:1; | ||
280 | unsigned int ena_gpio_state:1; | ||
256 | }; | 281 | }; |
257 | 282 | ||
258 | struct regulator_dev * | 283 | struct regulator_dev * |
@@ -271,6 +296,8 @@ int regulator_mode_to_status(unsigned int); | |||
271 | 296 | ||
272 | int regulator_list_voltage_linear(struct regulator_dev *rdev, | 297 | int regulator_list_voltage_linear(struct regulator_dev *rdev, |
273 | unsigned int selector); | 298 | unsigned int selector); |
299 | int regulator_list_voltage_table(struct regulator_dev *rdev, | ||
300 | unsigned int selector); | ||
274 | int regulator_map_voltage_linear(struct regulator_dev *rdev, | 301 | int regulator_map_voltage_linear(struct regulator_dev *rdev, |
275 | int min_uV, int max_uV); | 302 | int min_uV, int max_uV); |
276 | int regulator_map_voltage_iterate(struct regulator_dev *rdev, | 303 | int regulator_map_voltage_iterate(struct regulator_dev *rdev, |
@@ -280,6 +307,9 @@ int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel); | |||
280 | int regulator_is_enabled_regmap(struct regulator_dev *rdev); | 307 | int regulator_is_enabled_regmap(struct regulator_dev *rdev); |
281 | int regulator_enable_regmap(struct regulator_dev *rdev); | 308 | int regulator_enable_regmap(struct regulator_dev *rdev); |
282 | int regulator_disable_regmap(struct regulator_dev *rdev); | 309 | int regulator_disable_regmap(struct regulator_dev *rdev); |
310 | int regulator_set_voltage_time_sel(struct regulator_dev *rdev, | ||
311 | unsigned int old_selector, | ||
312 | unsigned int new_selector); | ||
283 | 313 | ||
284 | void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data); | 314 | void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data); |
285 | 315 | ||
diff --git a/include/linux/regulator/fixed.h b/include/linux/regulator/fixed.h index f83f7440b488..48918be649d4 100644 --- a/include/linux/regulator/fixed.h +++ b/include/linux/regulator/fixed.h | |||
@@ -22,6 +22,7 @@ struct regulator_init_data; | |||
22 | /** | 22 | /** |
23 | * struct fixed_voltage_config - fixed_voltage_config structure | 23 | * struct fixed_voltage_config - fixed_voltage_config structure |
24 | * @supply_name: Name of the regulator supply | 24 | * @supply_name: Name of the regulator supply |
25 | * @input_supply: Name of the input regulator supply | ||
25 | * @microvolts: Output voltage of regulator | 26 | * @microvolts: Output voltage of regulator |
26 | * @gpio: GPIO to use for enable control | 27 | * @gpio: GPIO to use for enable control |
27 | * set to -EINVAL if not used | 28 | * set to -EINVAL if not used |
@@ -46,6 +47,7 @@ struct regulator_init_data; | |||
46 | */ | 47 | */ |
47 | struct fixed_voltage_config { | 48 | struct fixed_voltage_config { |
48 | const char *supply_name; | 49 | const char *supply_name; |
50 | const char *input_supply; | ||
49 | int microvolts; | 51 | int microvolts; |
50 | int gpio; | 52 | int gpio; |
51 | unsigned startup_delay; | 53 | unsigned startup_delay; |
@@ -58,14 +60,17 @@ struct fixed_voltage_config { | |||
58 | struct regulator_consumer_supply; | 60 | struct regulator_consumer_supply; |
59 | 61 | ||
60 | #if IS_ENABLED(CONFIG_REGULATOR) | 62 | #if IS_ENABLED(CONFIG_REGULATOR) |
61 | struct platform_device *regulator_register_fixed(int id, | 63 | struct platform_device *regulator_register_always_on(int id, const char *name, |
62 | struct regulator_consumer_supply *supplies, int num_supplies); | 64 | struct regulator_consumer_supply *supplies, int num_supplies, int uv); |
63 | #else | 65 | #else |
64 | static inline struct platform_device *regulator_register_fixed(int id, | 66 | static inline struct platform_device *regulator_register_always_on(int id, const char *name, |
65 | struct regulator_consumer_supply *supplies, int num_supplies) | 67 | struct regulator_consumer_supply *supplies, int num_supplies, int uv) |
66 | { | 68 | { |
67 | return NULL; | 69 | return NULL; |
68 | } | 70 | } |
69 | #endif | 71 | #endif |
70 | 72 | ||
73 | #define regulator_register_fixed(id, s, ns) regulator_register_always_on(id, \ | ||
74 | "fixed-dummy", s, ns, 0) | ||
75 | |||
71 | #endif | 76 | #endif |
diff --git a/include/linux/regulator/lp872x.h b/include/linux/regulator/lp872x.h new file mode 100644 index 000000000000..132e05c46661 --- /dev/null +++ b/include/linux/regulator/lp872x.h | |||
@@ -0,0 +1,90 @@ | |||
1 | /* | ||
2 | * Copyright 2012 Texas Instruments | ||
3 | * | ||
4 | * Author: Milo(Woogyom) Kim <milo.kim@ti.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | */ | ||
11 | |||
12 | #ifndef __LP872X_REGULATOR_H__ | ||
13 | #define __LP872X_REGULATOR_H__ | ||
14 | |||
15 | #include <linux/regulator/machine.h> | ||
16 | #include <linux/platform_device.h> | ||
17 | #include <linux/gpio.h> | ||
18 | |||
19 | #define LP872X_MAX_REGULATORS 9 | ||
20 | |||
21 | enum lp872x_regulator_id { | ||
22 | LP8720_ID_BASE, | ||
23 | LP8720_ID_LDO1 = LP8720_ID_BASE, | ||
24 | LP8720_ID_LDO2, | ||
25 | LP8720_ID_LDO3, | ||
26 | LP8720_ID_LDO4, | ||
27 | LP8720_ID_LDO5, | ||
28 | LP8720_ID_BUCK, | ||
29 | |||
30 | LP8725_ID_BASE, | ||
31 | LP8725_ID_LDO1 = LP8725_ID_BASE, | ||
32 | LP8725_ID_LDO2, | ||
33 | LP8725_ID_LDO3, | ||
34 | LP8725_ID_LDO4, | ||
35 | LP8725_ID_LDO5, | ||
36 | LP8725_ID_LILO1, | ||
37 | LP8725_ID_LILO2, | ||
38 | LP8725_ID_BUCK1, | ||
39 | LP8725_ID_BUCK2, | ||
40 | |||
41 | LP872X_ID_MAX, | ||
42 | }; | ||
43 | |||
44 | enum lp872x_dvs_state { | ||
45 | DVS_LOW = GPIOF_OUT_INIT_LOW, | ||
46 | DVS_HIGH = GPIOF_OUT_INIT_HIGH, | ||
47 | }; | ||
48 | |||
49 | enum lp872x_dvs_sel { | ||
50 | SEL_V1, | ||
51 | SEL_V2, | ||
52 | }; | ||
53 | |||
54 | /** | ||
55 | * lp872x_dvs | ||
56 | * @gpio : gpio pin number for dvs control | ||
57 | * @vsel : dvs selector for buck v1 or buck v2 register | ||
58 | * @init_state : initial dvs pin state | ||
59 | */ | ||
60 | struct lp872x_dvs { | ||
61 | int gpio; | ||
62 | enum lp872x_dvs_sel vsel; | ||
63 | enum lp872x_dvs_state init_state; | ||
64 | }; | ||
65 | |||
66 | /** | ||
67 | * lp872x_regdata | ||
68 | * @id : regulator id | ||
69 | * @init_data : init data for each regulator | ||
70 | */ | ||
71 | struct lp872x_regulator_data { | ||
72 | enum lp872x_regulator_id id; | ||
73 | struct regulator_init_data *init_data; | ||
74 | }; | ||
75 | |||
76 | /** | ||
77 | * lp872x_platform_data | ||
78 | * @general_config : the value of LP872X_GENERAL_CFG register | ||
79 | * @update_config : if LP872X_GENERAL_CFG register is updated, set true | ||
80 | * @regulator_data : platform regulator id and init data | ||
81 | * @dvs : dvs data for buck voltage control | ||
82 | */ | ||
83 | struct lp872x_platform_data { | ||
84 | u8 general_config; | ||
85 | bool update_config; | ||
86 | struct lp872x_regulator_data regulator_data[LP872X_MAX_REGULATORS]; | ||
87 | struct lp872x_dvs *dvs; | ||
88 | }; | ||
89 | |||
90 | #endif | ||
diff --git a/include/linux/regulator/machine.h b/include/linux/regulator/machine.h index b02108446be7..40dd0a394cfa 100644 --- a/include/linux/regulator/machine.h +++ b/include/linux/regulator/machine.h | |||
@@ -92,6 +92,7 @@ struct regulator_state { | |||
92 | * mode. | 92 | * mode. |
93 | * @initial_state: Suspend state to set by default. | 93 | * @initial_state: Suspend state to set by default. |
94 | * @initial_mode: Mode to set at startup. | 94 | * @initial_mode: Mode to set at startup. |
95 | * @ramp_delay: Time to settle down after voltage change (unit: uV/us) | ||
95 | */ | 96 | */ |
96 | struct regulation_constraints { | 97 | struct regulation_constraints { |
97 | 98 | ||
@@ -125,6 +126,8 @@ struct regulation_constraints { | |||
125 | /* mode to set on startup */ | 126 | /* mode to set on startup */ |
126 | unsigned int initial_mode; | 127 | unsigned int initial_mode; |
127 | 128 | ||
129 | unsigned int ramp_delay; | ||
130 | |||
128 | /* constraint flags */ | 131 | /* constraint flags */ |
129 | unsigned always_on:1; /* regulator never off when system is on */ | 132 | unsigned always_on:1; /* regulator never off when system is on */ |
130 | unsigned boot_on:1; /* bootloader/firmware enabled regulator */ | 133 | unsigned boot_on:1; /* bootloader/firmware enabled regulator */ |
diff --git a/include/linux/remoteproc.h b/include/linux/remoteproc.h index f1ffabb978d3..131b53957b9f 100644 --- a/include/linux/remoteproc.h +++ b/include/linux/remoteproc.h | |||
@@ -36,7 +36,6 @@ | |||
36 | #define REMOTEPROC_H | 36 | #define REMOTEPROC_H |
37 | 37 | ||
38 | #include <linux/types.h> | 38 | #include <linux/types.h> |
39 | #include <linux/kref.h> | ||
40 | #include <linux/klist.h> | 39 | #include <linux/klist.h> |
41 | #include <linux/mutex.h> | 40 | #include <linux/mutex.h> |
42 | #include <linux/virtio.h> | 41 | #include <linux/virtio.h> |
@@ -369,8 +368,8 @@ enum rproc_state { | |||
369 | * @firmware: name of firmware file to be loaded | 368 | * @firmware: name of firmware file to be loaded |
370 | * @priv: private data which belongs to the platform-specific rproc module | 369 | * @priv: private data which belongs to the platform-specific rproc module |
371 | * @ops: platform-specific start/stop rproc handlers | 370 | * @ops: platform-specific start/stop rproc handlers |
372 | * @dev: underlying device | 371 | * @dev: virtual device for refcounting and common remoteproc behavior |
373 | * @refcount: refcount of users that have a valid pointer to this rproc | 372 | * @fw_ops: firmware-specific handlers |
374 | * @power: refcount of users who need this rproc powered up | 373 | * @power: refcount of users who need this rproc powered up |
375 | * @state: state of the device | 374 | * @state: state of the device |
376 | * @lock: lock which protects concurrent manipulations of the rproc | 375 | * @lock: lock which protects concurrent manipulations of the rproc |
@@ -383,6 +382,7 @@ enum rproc_state { | |||
383 | * @bootaddr: address of first instruction to boot rproc with (optional) | 382 | * @bootaddr: address of first instruction to boot rproc with (optional) |
384 | * @rvdevs: list of remote virtio devices | 383 | * @rvdevs: list of remote virtio devices |
385 | * @notifyids: idr for dynamically assigning rproc-wide unique notify ids | 384 | * @notifyids: idr for dynamically assigning rproc-wide unique notify ids |
385 | * @index: index of this rproc device | ||
386 | */ | 386 | */ |
387 | struct rproc { | 387 | struct rproc { |
388 | struct klist_node node; | 388 | struct klist_node node; |
@@ -391,8 +391,8 @@ struct rproc { | |||
391 | const char *firmware; | 391 | const char *firmware; |
392 | void *priv; | 392 | void *priv; |
393 | const struct rproc_ops *ops; | 393 | const struct rproc_ops *ops; |
394 | struct device *dev; | 394 | struct device dev; |
395 | struct kref refcount; | 395 | const struct rproc_fw_ops *fw_ops; |
396 | atomic_t power; | 396 | atomic_t power; |
397 | unsigned int state; | 397 | unsigned int state; |
398 | struct mutex lock; | 398 | struct mutex lock; |
@@ -405,6 +405,7 @@ struct rproc { | |||
405 | u32 bootaddr; | 405 | u32 bootaddr; |
406 | struct list_head rvdevs; | 406 | struct list_head rvdevs; |
407 | struct idr notifyids; | 407 | struct idr notifyids; |
408 | int index; | ||
408 | }; | 409 | }; |
409 | 410 | ||
410 | /* we currently support only two vrings per rvdev */ | 411 | /* we currently support only two vrings per rvdev */ |
@@ -450,15 +451,12 @@ struct rproc_vdev { | |||
450 | unsigned long gfeatures; | 451 | unsigned long gfeatures; |
451 | }; | 452 | }; |
452 | 453 | ||
453 | struct rproc *rproc_get_by_name(const char *name); | ||
454 | void rproc_put(struct rproc *rproc); | ||
455 | |||
456 | struct rproc *rproc_alloc(struct device *dev, const char *name, | 454 | struct rproc *rproc_alloc(struct device *dev, const char *name, |
457 | const struct rproc_ops *ops, | 455 | const struct rproc_ops *ops, |
458 | const char *firmware, int len); | 456 | const char *firmware, int len); |
459 | void rproc_free(struct rproc *rproc); | 457 | void rproc_put(struct rproc *rproc); |
460 | int rproc_register(struct rproc *rproc); | 458 | int rproc_add(struct rproc *rproc); |
461 | int rproc_unregister(struct rproc *rproc); | 459 | int rproc_del(struct rproc *rproc); |
462 | 460 | ||
463 | int rproc_boot(struct rproc *rproc); | 461 | int rproc_boot(struct rproc *rproc); |
464 | void rproc_shutdown(struct rproc *rproc); | 462 | void rproc_shutdown(struct rproc *rproc); |
diff --git a/include/linux/rpmsg.h b/include/linux/rpmsg.h index a8e50e44203c..82a673905edb 100644 --- a/include/linux/rpmsg.h +++ b/include/linux/rpmsg.h | |||
@@ -38,6 +38,8 @@ | |||
38 | #include <linux/types.h> | 38 | #include <linux/types.h> |
39 | #include <linux/device.h> | 39 | #include <linux/device.h> |
40 | #include <linux/mod_devicetable.h> | 40 | #include <linux/mod_devicetable.h> |
41 | #include <linux/kref.h> | ||
42 | #include <linux/mutex.h> | ||
41 | 43 | ||
42 | /* The feature bitmap for virtio rpmsg */ | 44 | /* The feature bitmap for virtio rpmsg */ |
43 | #define VIRTIO_RPMSG_F_NS 0 /* RP supports name service notifications */ | 45 | #define VIRTIO_RPMSG_F_NS 0 /* RP supports name service notifications */ |
@@ -120,7 +122,9 @@ typedef void (*rpmsg_rx_cb_t)(struct rpmsg_channel *, void *, int, void *, u32); | |||
120 | /** | 122 | /** |
121 | * struct rpmsg_endpoint - binds a local rpmsg address to its user | 123 | * struct rpmsg_endpoint - binds a local rpmsg address to its user |
122 | * @rpdev: rpmsg channel device | 124 | * @rpdev: rpmsg channel device |
125 | * @refcount: when this drops to zero, the ept is deallocated | ||
123 | * @cb: rx callback handler | 126 | * @cb: rx callback handler |
127 | * @cb_lock: must be taken before accessing/changing @cb | ||
124 | * @addr: local rpmsg address | 128 | * @addr: local rpmsg address |
125 | * @priv: private data for the driver's use | 129 | * @priv: private data for the driver's use |
126 | * | 130 | * |
@@ -140,7 +144,9 @@ typedef void (*rpmsg_rx_cb_t)(struct rpmsg_channel *, void *, int, void *, u32); | |||
140 | */ | 144 | */ |
141 | struct rpmsg_endpoint { | 145 | struct rpmsg_endpoint { |
142 | struct rpmsg_channel *rpdev; | 146 | struct rpmsg_channel *rpdev; |
147 | struct kref refcount; | ||
143 | rpmsg_rx_cb_t cb; | 148 | rpmsg_rx_cb_t cb; |
149 | struct mutex cb_lock; | ||
144 | u32 addr; | 150 | u32 addr; |
145 | void *priv; | 151 | void *priv; |
146 | }; | 152 | }; |
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h index 2c1de8982c85..db71c4ad8624 100644 --- a/include/linux/rtnetlink.h +++ b/include/linux/rtnetlink.h | |||
@@ -612,12 +612,6 @@ struct tcamsg { | |||
612 | #include <linux/mutex.h> | 612 | #include <linux/mutex.h> |
613 | #include <linux/netdevice.h> | 613 | #include <linux/netdevice.h> |
614 | 614 | ||
615 | static __inline__ int rtattr_strcmp(const struct rtattr *rta, const char *str) | ||
616 | { | ||
617 | int len = strlen(str) + 1; | ||
618 | return len > rta->rta_len || memcmp(RTA_DATA(rta), str, len); | ||
619 | } | ||
620 | |||
621 | extern int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, u32 group, int echo); | 615 | extern int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, u32 group, int echo); |
622 | extern int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid); | 616 | extern int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid); |
623 | extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, | 617 | extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, |
@@ -625,124 +619,7 @@ extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, | |||
625 | extern void rtnl_set_sk_err(struct net *net, u32 group, int error); | 619 | extern void rtnl_set_sk_err(struct net *net, u32 group, int error); |
626 | extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics); | 620 | extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics); |
627 | extern int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, | 621 | extern int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, |
628 | u32 id, u32 ts, u32 tsage, long expires, | 622 | u32 id, long expires, u32 error); |
629 | u32 error); | ||
630 | |||
631 | extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data); | ||
632 | |||
633 | #define RTA_PUT(skb, attrtype, attrlen, data) \ | ||
634 | ({ if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) \ | ||
635 | goto rtattr_failure; \ | ||
636 | __rta_fill(skb, attrtype, attrlen, data); }) | ||
637 | |||
638 | #define RTA_APPEND(skb, attrlen, data) \ | ||
639 | ({ if (unlikely(skb_tailroom(skb) < (int)(attrlen))) \ | ||
640 | goto rtattr_failure; \ | ||
641 | memcpy(skb_put(skb, attrlen), data, attrlen); }) | ||
642 | |||
643 | #define RTA_PUT_NOHDR(skb, attrlen, data) \ | ||
644 | ({ RTA_APPEND(skb, RTA_ALIGN(attrlen), data); \ | ||
645 | memset(skb_tail_pointer(skb) - (RTA_ALIGN(attrlen) - attrlen), 0, \ | ||
646 | RTA_ALIGN(attrlen) - attrlen); }) | ||
647 | |||
648 | #define RTA_PUT_U8(skb, attrtype, value) \ | ||
649 | ({ u8 _tmp = (value); \ | ||
650 | RTA_PUT(skb, attrtype, sizeof(u8), &_tmp); }) | ||
651 | |||
652 | #define RTA_PUT_U16(skb, attrtype, value) \ | ||
653 | ({ u16 _tmp = (value); \ | ||
654 | RTA_PUT(skb, attrtype, sizeof(u16), &_tmp); }) | ||
655 | |||
656 | #define RTA_PUT_U32(skb, attrtype, value) \ | ||
657 | ({ u32 _tmp = (value); \ | ||
658 | RTA_PUT(skb, attrtype, sizeof(u32), &_tmp); }) | ||
659 | |||
660 | #define RTA_PUT_U64(skb, attrtype, value) \ | ||
661 | ({ u64 _tmp = (value); \ | ||
662 | RTA_PUT(skb, attrtype, sizeof(u64), &_tmp); }) | ||
663 | |||
664 | #define RTA_PUT_SECS(skb, attrtype, value) \ | ||
665 | RTA_PUT_U64(skb, attrtype, (value) / HZ) | ||
666 | |||
667 | #define RTA_PUT_MSECS(skb, attrtype, value) \ | ||
668 | RTA_PUT_U64(skb, attrtype, jiffies_to_msecs(value)) | ||
669 | |||
670 | #define RTA_PUT_STRING(skb, attrtype, value) \ | ||
671 | RTA_PUT(skb, attrtype, strlen(value) + 1, value) | ||
672 | |||
673 | #define RTA_PUT_FLAG(skb, attrtype) \ | ||
674 | RTA_PUT(skb, attrtype, 0, NULL); | ||
675 | |||
676 | #define RTA_NEST(skb, type) \ | ||
677 | ({ struct rtattr *__start = (struct rtattr *)skb_tail_pointer(skb); \ | ||
678 | RTA_PUT(skb, type, 0, NULL); \ | ||
679 | __start; }) | ||
680 | |||
681 | #define RTA_NEST_END(skb, start) \ | ||
682 | ({ (start)->rta_len = skb_tail_pointer(skb) - (unsigned char *)(start); \ | ||
683 | (skb)->len; }) | ||
684 | |||
685 | #define RTA_NEST_COMPAT(skb, type, attrlen, data) \ | ||
686 | ({ struct rtattr *__start = (struct rtattr *)skb_tail_pointer(skb); \ | ||
687 | RTA_PUT(skb, type, attrlen, data); \ | ||
688 | RTA_NEST(skb, type); \ | ||
689 | __start; }) | ||
690 | |||
691 | #define RTA_NEST_COMPAT_END(skb, start) \ | ||
692 | ({ struct rtattr *__nest = (void *)(start) + NLMSG_ALIGN((start)->rta_len); \ | ||
693 | (start)->rta_len = skb_tail_pointer(skb) - (unsigned char *)(start); \ | ||
694 | RTA_NEST_END(skb, __nest); \ | ||
695 | (skb)->len; }) | ||
696 | |||
697 | #define RTA_NEST_CANCEL(skb, start) \ | ||
698 | ({ if (start) \ | ||
699 | skb_trim(skb, (unsigned char *) (start) - (skb)->data); \ | ||
700 | -1; }) | ||
701 | |||
702 | #define RTA_GET_U8(rta) \ | ||
703 | ({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u8)) \ | ||
704 | goto rtattr_failure; \ | ||
705 | *(u8 *) RTA_DATA(rta); }) | ||
706 | |||
707 | #define RTA_GET_U16(rta) \ | ||
708 | ({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u16)) \ | ||
709 | goto rtattr_failure; \ | ||
710 | *(u16 *) RTA_DATA(rta); }) | ||
711 | |||
712 | #define RTA_GET_U32(rta) \ | ||
713 | ({ if (!rta || RTA_PAYLOAD(rta) < sizeof(u32)) \ | ||
714 | goto rtattr_failure; \ | ||
715 | *(u32 *) RTA_DATA(rta); }) | ||
716 | |||
717 | #define RTA_GET_U64(rta) \ | ||
718 | ({ u64 _tmp; \ | ||
719 | if (!rta || RTA_PAYLOAD(rta) < sizeof(u64)) \ | ||
720 | goto rtattr_failure; \ | ||
721 | memcpy(&_tmp, RTA_DATA(rta), sizeof(_tmp)); \ | ||
722 | _tmp; }) | ||
723 | |||
724 | #define RTA_GET_FLAG(rta) (!!(rta)) | ||
725 | |||
726 | #define RTA_GET_SECS(rta) ((unsigned long) RTA_GET_U64(rta) * HZ) | ||
727 | #define RTA_GET_MSECS(rta) (msecs_to_jiffies((unsigned long) RTA_GET_U64(rta))) | ||
728 | |||
729 | static inline struct rtattr * | ||
730 | __rta_reserve(struct sk_buff *skb, int attrtype, int attrlen) | ||
731 | { | ||
732 | struct rtattr *rta; | ||
733 | int size = RTA_LENGTH(attrlen); | ||
734 | |||
735 | rta = (struct rtattr*)skb_put(skb, RTA_ALIGN(size)); | ||
736 | rta->rta_type = attrtype; | ||
737 | rta->rta_len = size; | ||
738 | memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size); | ||
739 | return rta; | ||
740 | } | ||
741 | |||
742 | #define __RTA_PUT(skb, attrtype, attrlen) \ | ||
743 | ({ if (unlikely(skb_tailroom(skb) < (int)RTA_SPACE(attrlen))) \ | ||
744 | goto rtattr_failure; \ | ||
745 | __rta_reserve(skb, attrtype, attrlen); }) | ||
746 | 623 | ||
747 | extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change); | 624 | extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change); |
748 | 625 | ||
@@ -794,13 +671,6 @@ extern void __rtnl_unlock(void); | |||
794 | } \ | 671 | } \ |
795 | } while(0) | 672 | } while(0) |
796 | 673 | ||
797 | static inline u32 rtm_get_table(struct rtattr **rta, u8 table) | ||
798 | { | ||
799 | return RTA_GET_U32(rta[RTA_TABLE-1]); | ||
800 | rtattr_failure: | ||
801 | return table; | ||
802 | } | ||
803 | |||
804 | extern int ndo_dflt_fdb_dump(struct sk_buff *skb, | 674 | extern int ndo_dflt_fdb_dump(struct sk_buff *skb, |
805 | struct netlink_callback *cb, | 675 | struct netlink_callback *cb, |
806 | struct net_device *dev, | 676 | struct net_device *dev, |
diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h index ac9586dadfa5..7b600da9a635 100644 --- a/include/linux/scatterlist.h +++ b/include/linux/scatterlist.h | |||
@@ -214,6 +214,10 @@ void sg_free_table(struct sg_table *); | |||
214 | int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int, gfp_t, | 214 | int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int, gfp_t, |
215 | sg_alloc_fn *); | 215 | sg_alloc_fn *); |
216 | int sg_alloc_table(struct sg_table *, unsigned int, gfp_t); | 216 | int sg_alloc_table(struct sg_table *, unsigned int, gfp_t); |
217 | int sg_alloc_table_from_pages(struct sg_table *sgt, | ||
218 | struct page **pages, unsigned int n_pages, | ||
219 | unsigned long offset, unsigned long size, | ||
220 | gfp_t gfp_mask); | ||
217 | 221 | ||
218 | size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents, | 222 | size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents, |
219 | void *buf, size_t buflen); | 223 | void *buf, size_t buflen); |
diff --git a/include/linux/sched.h b/include/linux/sched.h index 4059c0f33f07..68dcffaa62a0 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -334,6 +334,14 @@ static inline void lockup_detector_init(void) | |||
334 | } | 334 | } |
335 | #endif | 335 | #endif |
336 | 336 | ||
337 | #if defined(CONFIG_LOCKUP_DETECTOR) && defined(CONFIG_SUSPEND) | ||
338 | void lockup_detector_bootcpu_resume(void); | ||
339 | #else | ||
340 | static inline void lockup_detector_bootcpu_resume(void) | ||
341 | { | ||
342 | } | ||
343 | #endif | ||
344 | |||
337 | #ifdef CONFIG_DETECT_HUNG_TASK | 345 | #ifdef CONFIG_DETECT_HUNG_TASK |
338 | extern unsigned int sysctl_hung_task_panic; | 346 | extern unsigned int sysctl_hung_task_panic; |
339 | extern unsigned long sysctl_hung_task_check_count; | 347 | extern unsigned long sysctl_hung_task_check_count; |
@@ -406,6 +414,11 @@ static inline void arch_pick_mmap_layout(struct mm_struct *mm) {} | |||
406 | extern void set_dumpable(struct mm_struct *mm, int value); | 414 | extern void set_dumpable(struct mm_struct *mm, int value); |
407 | extern int get_dumpable(struct mm_struct *mm); | 415 | extern int get_dumpable(struct mm_struct *mm); |
408 | 416 | ||
417 | /* get/set_dumpable() values */ | ||
418 | #define SUID_DUMPABLE_DISABLED 0 | ||
419 | #define SUID_DUMPABLE_ENABLED 1 | ||
420 | #define SUID_DUMPABLE_SAFE 2 | ||
421 | |||
409 | /* mm flags */ | 422 | /* mm flags */ |
410 | /* dumpable bits */ | 423 | /* dumpable bits */ |
411 | #define MMF_DUMPABLE 0 /* core dump is permitted */ | 424 | #define MMF_DUMPABLE 0 /* core dump is permitted */ |
@@ -949,6 +962,7 @@ struct sched_domain { | |||
949 | unsigned int smt_gain; | 962 | unsigned int smt_gain; |
950 | int flags; /* See SD_* */ | 963 | int flags; /* See SD_* */ |
951 | int level; | 964 | int level; |
965 | int idle_buddy; /* cpu assigned to select_idle_sibling() */ | ||
952 | 966 | ||
953 | /* Runtime fields. */ | 967 | /* Runtime fields. */ |
954 | unsigned long last_balance; /* init to jiffies. units in jiffies */ | 968 | unsigned long last_balance; /* init to jiffies. units in jiffies */ |
@@ -1244,6 +1258,9 @@ struct task_struct { | |||
1244 | const struct sched_class *sched_class; | 1258 | const struct sched_class *sched_class; |
1245 | struct sched_entity se; | 1259 | struct sched_entity se; |
1246 | struct sched_rt_entity rt; | 1260 | struct sched_rt_entity rt; |
1261 | #ifdef CONFIG_CGROUP_SCHED | ||
1262 | struct task_group *sched_task_group; | ||
1263 | #endif | ||
1247 | 1264 | ||
1248 | #ifdef CONFIG_PREEMPT_NOTIFIERS | 1265 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
1249 | /* list of struct preempt_notifier: */ | 1266 | /* list of struct preempt_notifier: */ |
@@ -1405,7 +1422,7 @@ struct task_struct { | |||
1405 | int (*notifier)(void *priv); | 1422 | int (*notifier)(void *priv); |
1406 | void *notifier_data; | 1423 | void *notifier_data; |
1407 | sigset_t *notifier_mask; | 1424 | sigset_t *notifier_mask; |
1408 | struct hlist_head task_works; | 1425 | struct callback_head *task_works; |
1409 | 1426 | ||
1410 | struct audit_context *audit_context; | 1427 | struct audit_context *audit_context; |
1411 | #ifdef CONFIG_AUDITSYSCALL | 1428 | #ifdef CONFIG_AUDITSYSCALL |
@@ -1546,7 +1563,6 @@ struct task_struct { | |||
1546 | unsigned long timer_slack_ns; | 1563 | unsigned long timer_slack_ns; |
1547 | unsigned long default_timer_slack_ns; | 1564 | unsigned long default_timer_slack_ns; |
1548 | 1565 | ||
1549 | struct list_head *scm_work_list; | ||
1550 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER | 1566 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
1551 | /* Index of current stored address in ret_stack */ | 1567 | /* Index of current stored address in ret_stack */ |
1552 | int curr_ret_stack; | 1568 | int curr_ret_stack; |
@@ -1581,7 +1597,6 @@ struct task_struct { | |||
1581 | #endif | 1597 | #endif |
1582 | #ifdef CONFIG_UPROBES | 1598 | #ifdef CONFIG_UPROBES |
1583 | struct uprobe_task *utask; | 1599 | struct uprobe_task *utask; |
1584 | int uprobe_srcu_id; | ||
1585 | #endif | 1600 | #endif |
1586 | }; | 1601 | }; |
1587 | 1602 | ||
@@ -1871,22 +1886,12 @@ static inline void rcu_copy_process(struct task_struct *p) | |||
1871 | INIT_LIST_HEAD(&p->rcu_node_entry); | 1886 | INIT_LIST_HEAD(&p->rcu_node_entry); |
1872 | } | 1887 | } |
1873 | 1888 | ||
1874 | static inline void rcu_switch_from(struct task_struct *prev) | ||
1875 | { | ||
1876 | if (prev->rcu_read_lock_nesting != 0) | ||
1877 | rcu_preempt_note_context_switch(); | ||
1878 | } | ||
1879 | |||
1880 | #else | 1889 | #else |
1881 | 1890 | ||
1882 | static inline void rcu_copy_process(struct task_struct *p) | 1891 | static inline void rcu_copy_process(struct task_struct *p) |
1883 | { | 1892 | { |
1884 | } | 1893 | } |
1885 | 1894 | ||
1886 | static inline void rcu_switch_from(struct task_struct *prev) | ||
1887 | { | ||
1888 | } | ||
1889 | |||
1890 | #endif | 1895 | #endif |
1891 | 1896 | ||
1892 | #ifdef CONFIG_SMP | 1897 | #ifdef CONFIG_SMP |
@@ -1909,6 +1914,14 @@ static inline int set_cpus_allowed_ptr(struct task_struct *p, | |||
1909 | } | 1914 | } |
1910 | #endif | 1915 | #endif |
1911 | 1916 | ||
1917 | #ifdef CONFIG_NO_HZ | ||
1918 | void calc_load_enter_idle(void); | ||
1919 | void calc_load_exit_idle(void); | ||
1920 | #else | ||
1921 | static inline void calc_load_enter_idle(void) { } | ||
1922 | static inline void calc_load_exit_idle(void) { } | ||
1923 | #endif /* CONFIG_NO_HZ */ | ||
1924 | |||
1912 | #ifndef CONFIG_CPUMASK_OFFSTACK | 1925 | #ifndef CONFIG_CPUMASK_OFFSTACK |
1913 | static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) | 1926 | static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) |
1914 | { | 1927 | { |
@@ -2725,7 +2738,7 @@ extern int sched_group_set_rt_period(struct task_group *tg, | |||
2725 | extern long sched_group_rt_period(struct task_group *tg); | 2738 | extern long sched_group_rt_period(struct task_group *tg); |
2726 | extern int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk); | 2739 | extern int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk); |
2727 | #endif | 2740 | #endif |
2728 | #endif | 2741 | #endif /* CONFIG_CGROUP_SCHED */ |
2729 | 2742 | ||
2730 | extern int task_can_switch_user(struct user_struct *up, | 2743 | extern int task_can_switch_user(struct user_struct *up, |
2731 | struct task_struct *tsk); | 2744 | struct task_struct *tsk); |
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h index fc61854f6224..83c44eefe698 100644 --- a/include/linux/seq_file.h +++ b/include/linux/seq_file.h | |||
@@ -86,6 +86,7 @@ int seq_puts(struct seq_file *m, const char *s); | |||
86 | int seq_write(struct seq_file *seq, const void *data, size_t len); | 86 | int seq_write(struct seq_file *seq, const void *data, size_t len); |
87 | 87 | ||
88 | __printf(2, 3) int seq_printf(struct seq_file *, const char *, ...); | 88 | __printf(2, 3) int seq_printf(struct seq_file *, const char *, ...); |
89 | __printf(2, 0) int seq_vprintf(struct seq_file *, const char *, va_list args); | ||
89 | 90 | ||
90 | int seq_path(struct seq_file *, const struct path *, const char *); | 91 | int seq_path(struct seq_file *, const struct path *, const char *); |
91 | int seq_dentry(struct seq_file *, struct dentry *, const char *); | 92 | int seq_dentry(struct seq_file *, struct dentry *, const char *); |
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index 65db9928e15f..0253c2022e53 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h | |||
@@ -47,7 +47,8 @@ | |||
47 | #define PORT_U6_16550A 19 /* ST-Ericsson U6xxx internal UART */ | 47 | #define PORT_U6_16550A 19 /* ST-Ericsson U6xxx internal UART */ |
48 | #define PORT_TEGRA 20 /* NVIDIA Tegra internal UART */ | 48 | #define PORT_TEGRA 20 /* NVIDIA Tegra internal UART */ |
49 | #define PORT_XR17D15X 21 /* Exar XR17D15x UART */ | 49 | #define PORT_XR17D15X 21 /* Exar XR17D15x UART */ |
50 | #define PORT_MAX_8250 21 /* max port ID */ | 50 | #define PORT_LPC3220 22 /* NXP LPC32xx SoC "Standard" UART */ |
51 | #define PORT_MAX_8250 22 /* max port ID */ | ||
51 | 52 | ||
52 | /* | 53 | /* |
53 | * ARM specific type numbers. These are not currently guaranteed | 54 | * ARM specific type numbers. These are not currently guaranteed |
diff --git a/include/linux/sfi_acpi.h b/include/linux/sfi_acpi.h index c4a5a8cd4469..631af63af42d 100644 --- a/include/linux/sfi_acpi.h +++ b/include/linux/sfi_acpi.h | |||
@@ -66,7 +66,7 @@ extern int sfi_acpi_table_parse(char *signature, char *oem_id, | |||
66 | char *oem_table_id, | 66 | char *oem_table_id, |
67 | int (*handler)(struct acpi_table_header *)); | 67 | int (*handler)(struct acpi_table_header *)); |
68 | 68 | ||
69 | static inline int acpi_sfi_table_parse(char *signature, | 69 | static inline int __init acpi_sfi_table_parse(char *signature, |
70 | int (*handler)(struct acpi_table_header *)) | 70 | int (*handler)(struct acpi_table_header *)) |
71 | { | 71 | { |
72 | if (!acpi_table_parse(signature, handler)) | 72 | if (!acpi_table_parse(signature, handler)) |
@@ -83,7 +83,7 @@ static inline int sfi_acpi_table_parse(char *signature, char *oem_id, | |||
83 | return -1; | 83 | return -1; |
84 | } | 84 | } |
85 | 85 | ||
86 | static inline int acpi_sfi_table_parse(char *signature, | 86 | static inline int __init acpi_sfi_table_parse(char *signature, |
87 | int (*handler)(struct acpi_table_header *)) | 87 | int (*handler)(struct acpi_table_header *)) |
88 | { | 88 | { |
89 | return acpi_table_parse(signature, handler); | 89 | return acpi_table_parse(signature, handler); |
diff --git a/include/linux/sh_clk.h b/include/linux/sh_clk.h index c513b73cd7cb..50910913b268 100644 --- a/include/linux/sh_clk.h +++ b/include/linux/sh_clk.h | |||
@@ -18,7 +18,6 @@ struct clk_mapping { | |||
18 | struct kref ref; | 18 | struct kref ref; |
19 | }; | 19 | }; |
20 | 20 | ||
21 | |||
22 | struct sh_clk_ops { | 21 | struct sh_clk_ops { |
23 | #ifdef CONFIG_SH_CLK_CPG_LEGACY | 22 | #ifdef CONFIG_SH_CLK_CPG_LEGACY |
24 | void (*init)(struct clk *clk); | 23 | void (*init)(struct clk *clk); |
@@ -31,6 +30,10 @@ struct sh_clk_ops { | |||
31 | long (*round_rate)(struct clk *clk, unsigned long rate); | 30 | long (*round_rate)(struct clk *clk, unsigned long rate); |
32 | }; | 31 | }; |
33 | 32 | ||
33 | #define SH_CLK_DIV_MSK(div) ((1 << (div)) - 1) | ||
34 | #define SH_CLK_DIV4_MSK SH_CLK_DIV_MSK(4) | ||
35 | #define SH_CLK_DIV6_MSK SH_CLK_DIV_MSK(6) | ||
36 | |||
34 | struct clk { | 37 | struct clk { |
35 | struct list_head node; | 38 | struct list_head node; |
36 | struct clk *parent; | 39 | struct clk *parent; |
@@ -52,6 +55,7 @@ struct clk { | |||
52 | unsigned int enable_bit; | 55 | unsigned int enable_bit; |
53 | void __iomem *mapped_reg; | 56 | void __iomem *mapped_reg; |
54 | 57 | ||
58 | unsigned int div_mask; | ||
55 | unsigned long arch_flags; | 59 | unsigned long arch_flags; |
56 | void *priv; | 60 | void *priv; |
57 | struct clk_mapping *mapping; | 61 | struct clk_mapping *mapping; |
@@ -65,6 +69,8 @@ struct clk { | |||
65 | #define CLK_ENABLE_REG_16BIT BIT(2) | 69 | #define CLK_ENABLE_REG_16BIT BIT(2) |
66 | #define CLK_ENABLE_REG_8BIT BIT(3) | 70 | #define CLK_ENABLE_REG_8BIT BIT(3) |
67 | 71 | ||
72 | #define CLK_MASK_DIV_ON_DISABLE BIT(4) | ||
73 | |||
68 | #define CLK_ENABLE_REG_MASK (CLK_ENABLE_REG_32BIT | \ | 74 | #define CLK_ENABLE_REG_MASK (CLK_ENABLE_REG_32BIT | \ |
69 | CLK_ENABLE_REG_16BIT | \ | 75 | CLK_ENABLE_REG_16BIT | \ |
70 | CLK_ENABLE_REG_8BIT) | 76 | CLK_ENABLE_REG_8BIT) |
@@ -146,14 +152,17 @@ static inline int __deprecated sh_clk_mstp32_register(struct clk *clks, int nr) | |||
146 | .enable_reg = (void __iomem *)_reg, \ | 152 | .enable_reg = (void __iomem *)_reg, \ |
147 | .enable_bit = _shift, \ | 153 | .enable_bit = _shift, \ |
148 | .arch_flags = _div_bitmap, \ | 154 | .arch_flags = _div_bitmap, \ |
155 | .div_mask = SH_CLK_DIV4_MSK, \ | ||
149 | .flags = _flags, \ | 156 | .flags = _flags, \ |
150 | } | 157 | } |
151 | 158 | ||
152 | struct clk_div4_table { | 159 | struct clk_div_table { |
153 | struct clk_div_mult_table *div_mult_table; | 160 | struct clk_div_mult_table *div_mult_table; |
154 | void (*kick)(struct clk *clk); | 161 | void (*kick)(struct clk *clk); |
155 | }; | 162 | }; |
156 | 163 | ||
164 | #define clk_div4_table clk_div_table | ||
165 | |||
157 | int sh_clk_div4_register(struct clk *clks, int nr, | 166 | int sh_clk_div4_register(struct clk *clks, int nr, |
158 | struct clk_div4_table *table); | 167 | struct clk_div4_table *table); |
159 | int sh_clk_div4_enable_register(struct clk *clks, int nr, | 168 | int sh_clk_div4_enable_register(struct clk *clks, int nr, |
@@ -165,7 +174,9 @@ int sh_clk_div4_reparent_register(struct clk *clks, int nr, | |||
165 | _num_parents, _src_shift, _src_width) \ | 174 | _num_parents, _src_shift, _src_width) \ |
166 | { \ | 175 | { \ |
167 | .enable_reg = (void __iomem *)_reg, \ | 176 | .enable_reg = (void __iomem *)_reg, \ |
168 | .flags = _flags, \ | 177 | .enable_bit = 0, /* unused */ \ |
178 | .flags = _flags | CLK_MASK_DIV_ON_DISABLE, \ | ||
179 | .div_mask = SH_CLK_DIV6_MSK, \ | ||
169 | .parent_table = _parents, \ | 180 | .parent_table = _parents, \ |
170 | .parent_num = _num_parents, \ | 181 | .parent_num = _num_parents, \ |
171 | .src_shift = _src_shift, \ | 182 | .src_shift = _src_shift, \ |
@@ -176,7 +187,9 @@ int sh_clk_div4_reparent_register(struct clk *clks, int nr, | |||
176 | { \ | 187 | { \ |
177 | .parent = _parent, \ | 188 | .parent = _parent, \ |
178 | .enable_reg = (void __iomem *)_reg, \ | 189 | .enable_reg = (void __iomem *)_reg, \ |
179 | .flags = _flags, \ | 190 | .enable_bit = 0, /* unused */ \ |
191 | .div_mask = SH_CLK_DIV6_MSK, \ | ||
192 | .flags = _flags | CLK_MASK_DIV_ON_DISABLE, \ | ||
180 | } | 193 | } |
181 | 194 | ||
182 | int sh_clk_div6_register(struct clk *clks, int nr); | 195 | int sh_clk_div6_register(struct clk *clks, int nr); |
diff --git a/include/linux/sh_dma.h b/include/linux/sh_dma.h index 425450b980b8..b64d6bec6f90 100644 --- a/include/linux/sh_dma.h +++ b/include/linux/sh_dma.h | |||
@@ -10,38 +10,27 @@ | |||
10 | #ifndef SH_DMA_H | 10 | #ifndef SH_DMA_H |
11 | #define SH_DMA_H | 11 | #define SH_DMA_H |
12 | 12 | ||
13 | #include <linux/list.h> | ||
14 | #include <linux/dmaengine.h> | 13 | #include <linux/dmaengine.h> |
14 | #include <linux/list.h> | ||
15 | #include <linux/shdma-base.h> | ||
16 | #include <linux/types.h> | ||
17 | |||
18 | struct device; | ||
15 | 19 | ||
16 | /* Used by slave DMA clients to request DMA to/from a specific peripheral */ | 20 | /* Used by slave DMA clients to request DMA to/from a specific peripheral */ |
17 | struct sh_dmae_slave { | 21 | struct sh_dmae_slave { |
18 | unsigned int slave_id; /* Set by the platform */ | 22 | struct shdma_slave shdma_slave; /* Set by the platform */ |
19 | struct device *dma_dev; /* Set by the platform */ | ||
20 | const struct sh_dmae_slave_config *config; /* Set by the driver */ | ||
21 | }; | ||
22 | |||
23 | struct sh_dmae_regs { | ||
24 | u32 sar; /* SAR / source address */ | ||
25 | u32 dar; /* DAR / destination address */ | ||
26 | u32 tcr; /* TCR / transfer count */ | ||
27 | }; | ||
28 | |||
29 | struct sh_desc { | ||
30 | struct sh_dmae_regs hw; | ||
31 | struct list_head node; | ||
32 | struct dma_async_tx_descriptor async_tx; | ||
33 | enum dma_transfer_direction direction; | ||
34 | dma_cookie_t cookie; | ||
35 | size_t partial; | ||
36 | int chunks; | ||
37 | int mark; | ||
38 | }; | 23 | }; |
39 | 24 | ||
25 | /* | ||
26 | * Supplied by platforms to specify, how a DMA channel has to be configured for | ||
27 | * a certain peripheral | ||
28 | */ | ||
40 | struct sh_dmae_slave_config { | 29 | struct sh_dmae_slave_config { |
41 | unsigned int slave_id; | 30 | int slave_id; |
42 | dma_addr_t addr; | 31 | dma_addr_t addr; |
43 | u32 chcr; | 32 | u32 chcr; |
44 | char mid_rid; | 33 | char mid_rid; |
45 | }; | 34 | }; |
46 | 35 | ||
47 | struct sh_dmae_channel { | 36 | struct sh_dmae_channel { |
@@ -110,4 +99,6 @@ struct sh_dmae_pdata { | |||
110 | #define CHCR_TE 0x00000002 | 99 | #define CHCR_TE 0x00000002 |
111 | #define CHCR_IE 0x00000004 | 100 | #define CHCR_IE 0x00000004 |
112 | 101 | ||
102 | bool shdma_chan_filter(struct dma_chan *chan, void *arg); | ||
103 | |||
113 | #endif | 104 | #endif |
diff --git a/include/linux/sh_pfc.h b/include/linux/sh_pfc.h index 5c15aed9c4b2..c19a0925829a 100644 --- a/include/linux/sh_pfc.h +++ b/include/linux/sh_pfc.h | |||
@@ -11,22 +11,24 @@ | |||
11 | #ifndef __SH_PFC_H | 11 | #ifndef __SH_PFC_H |
12 | #define __SH_PFC_H | 12 | #define __SH_PFC_H |
13 | 13 | ||
14 | #include <linux/stringify.h> | ||
14 | #include <asm-generic/gpio.h> | 15 | #include <asm-generic/gpio.h> |
15 | 16 | ||
16 | typedef unsigned short pinmux_enum_t; | 17 | typedef unsigned short pinmux_enum_t; |
17 | typedef unsigned short pinmux_flag_t; | 18 | typedef unsigned short pinmux_flag_t; |
18 | 19 | ||
19 | #define PINMUX_TYPE_NONE 0 | 20 | enum { |
20 | #define PINMUX_TYPE_FUNCTION 1 | 21 | PINMUX_TYPE_NONE, |
21 | #define PINMUX_TYPE_GPIO 2 | ||
22 | #define PINMUX_TYPE_OUTPUT 3 | ||
23 | #define PINMUX_TYPE_INPUT 4 | ||
24 | #define PINMUX_TYPE_INPUT_PULLUP 5 | ||
25 | #define PINMUX_TYPE_INPUT_PULLDOWN 6 | ||
26 | 22 | ||
27 | #define PINMUX_FLAG_TYPE (0x7) | 23 | PINMUX_TYPE_FUNCTION, |
28 | #define PINMUX_FLAG_WANT_PULLUP (1 << 3) | 24 | PINMUX_TYPE_GPIO, |
29 | #define PINMUX_FLAG_WANT_PULLDOWN (1 << 4) | 25 | PINMUX_TYPE_OUTPUT, |
26 | PINMUX_TYPE_INPUT, | ||
27 | PINMUX_TYPE_INPUT_PULLUP, | ||
28 | PINMUX_TYPE_INPUT_PULLDOWN, | ||
29 | |||
30 | PINMUX_FLAG_TYPE, /* must be last */ | ||
31 | }; | ||
30 | 32 | ||
31 | #define PINMUX_FLAG_DBIT_SHIFT 5 | 33 | #define PINMUX_FLAG_DBIT_SHIFT 5 |
32 | #define PINMUX_FLAG_DBIT (0x1f << PINMUX_FLAG_DBIT_SHIFT) | 34 | #define PINMUX_FLAG_DBIT (0x1f << PINMUX_FLAG_DBIT_SHIFT) |
@@ -36,9 +38,12 @@ typedef unsigned short pinmux_flag_t; | |||
36 | struct pinmux_gpio { | 38 | struct pinmux_gpio { |
37 | pinmux_enum_t enum_id; | 39 | pinmux_enum_t enum_id; |
38 | pinmux_flag_t flags; | 40 | pinmux_flag_t flags; |
41 | const char *name; | ||
39 | }; | 42 | }; |
40 | 43 | ||
41 | #define PINMUX_GPIO(gpio, data_or_mark) [gpio] = { data_or_mark } | 44 | #define PINMUX_GPIO(gpio, data_or_mark) \ |
45 | [gpio] = { .name = __stringify(gpio), .enum_id = data_or_mark, .flags = PINMUX_TYPE_NONE } | ||
46 | |||
42 | #define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0 | 47 | #define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0 |
43 | 48 | ||
44 | struct pinmux_cfg_reg { | 49 | struct pinmux_cfg_reg { |
@@ -89,7 +94,7 @@ struct pfc_window { | |||
89 | unsigned long size; | 94 | unsigned long size; |
90 | }; | 95 | }; |
91 | 96 | ||
92 | struct pinmux_info { | 97 | struct sh_pfc { |
93 | char *name; | 98 | char *name; |
94 | pinmux_enum_t reserved_id; | 99 | pinmux_enum_t reserved_id; |
95 | struct pinmux_range data; | 100 | struct pinmux_range data; |
@@ -112,17 +117,45 @@ struct pinmux_info { | |||
112 | struct pinmux_irq *gpio_irq; | 117 | struct pinmux_irq *gpio_irq; |
113 | unsigned int gpio_irq_size; | 118 | unsigned int gpio_irq_size; |
114 | 119 | ||
120 | spinlock_t lock; | ||
121 | |||
115 | struct resource *resource; | 122 | struct resource *resource; |
116 | unsigned int num_resources; | 123 | unsigned int num_resources; |
117 | struct pfc_window *window; | 124 | struct pfc_window *window; |
118 | 125 | ||
119 | unsigned long unlock_reg; | 126 | unsigned long unlock_reg; |
120 | |||
121 | struct gpio_chip chip; | ||
122 | }; | 127 | }; |
123 | 128 | ||
124 | int register_pinmux(struct pinmux_info *pip); | 129 | /* XXX compat for now */ |
125 | int unregister_pinmux(struct pinmux_info *pip); | 130 | #define pinmux_info sh_pfc |
131 | |||
132 | /* drivers/sh/pfc/gpio.c */ | ||
133 | int sh_pfc_register_gpiochip(struct sh_pfc *pfc); | ||
134 | |||
135 | /* drivers/sh/pfc/pinctrl.c */ | ||
136 | int sh_pfc_register_pinctrl(struct sh_pfc *pfc); | ||
137 | |||
138 | /* drivers/sh/pfc/core.c */ | ||
139 | int register_sh_pfc(struct sh_pfc *pfc); | ||
140 | |||
141 | int sh_pfc_read_bit(struct pinmux_data_reg *dr, unsigned long in_pos); | ||
142 | void sh_pfc_write_bit(struct pinmux_data_reg *dr, unsigned long in_pos, | ||
143 | unsigned long value); | ||
144 | int sh_pfc_get_data_reg(struct sh_pfc *pfc, unsigned gpio, | ||
145 | struct pinmux_data_reg **drp, int *bitp); | ||
146 | int sh_pfc_gpio_to_enum(struct sh_pfc *pfc, unsigned gpio, int pos, | ||
147 | pinmux_enum_t *enum_idp); | ||
148 | int sh_pfc_config_gpio(struct sh_pfc *pfc, unsigned gpio, int pinmux_type, | ||
149 | int cfg_mode); | ||
150 | |||
151 | /* xxx */ | ||
152 | static inline int register_pinmux(struct pinmux_info *pip) | ||
153 | { | ||
154 | struct sh_pfc *pfc = pip; | ||
155 | return register_sh_pfc(pfc); | ||
156 | } | ||
157 | |||
158 | enum { GPIO_CFG_DRYRUN, GPIO_CFG_REQ, GPIO_CFG_FREE }; | ||
126 | 159 | ||
127 | /* helper macro for port */ | 160 | /* helper macro for port */ |
128 | #define PORT_1(fn, pfx, sfx) fn(pfx, sfx) | 161 | #define PORT_1(fn, pfx, sfx) fn(pfx, sfx) |
diff --git a/include/linux/shdma-base.h b/include/linux/shdma-base.h new file mode 100644 index 000000000000..93f9821554b6 --- /dev/null +++ b/include/linux/shdma-base.h | |||
@@ -0,0 +1,124 @@ | |||
1 | /* | ||
2 | * Dmaengine driver base library for DMA controllers, found on SH-based SoCs | ||
3 | * | ||
4 | * extracted from shdma.c and headers | ||
5 | * | ||
6 | * Copyright (C) 2011-2012 Guennadi Liakhovetski <g.liakhovetski@gmx.de> | ||
7 | * Copyright (C) 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> | ||
8 | * Copyright (C) 2009 Renesas Solutions, Inc. All rights reserved. | ||
9 | * Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved. | ||
10 | * | ||
11 | * This is free software; you can redistribute it and/or modify | ||
12 | * it under the terms of version 2 of the GNU General Public License as | ||
13 | * published by the Free Software Foundation. | ||
14 | */ | ||
15 | |||
16 | #ifndef SHDMA_BASE_H | ||
17 | #define SHDMA_BASE_H | ||
18 | |||
19 | #include <linux/dmaengine.h> | ||
20 | #include <linux/interrupt.h> | ||
21 | #include <linux/list.h> | ||
22 | #include <linux/types.h> | ||
23 | |||
24 | /** | ||
25 | * shdma_pm_state - DMA channel PM state | ||
26 | * SHDMA_PM_ESTABLISHED: either idle or during data transfer | ||
27 | * SHDMA_PM_BUSY: during the transfer preparation, when we have to | ||
28 | * drop the lock temporarily | ||
29 | * SHDMA_PM_PENDING: transfers pending | ||
30 | */ | ||
31 | enum shdma_pm_state { | ||
32 | SHDMA_PM_ESTABLISHED, | ||
33 | SHDMA_PM_BUSY, | ||
34 | SHDMA_PM_PENDING, | ||
35 | }; | ||
36 | |||
37 | struct device; | ||
38 | |||
39 | /* | ||
40 | * Drivers, using this library are expected to embed struct shdma_dev, | ||
41 | * struct shdma_chan, struct shdma_desc, and struct shdma_slave | ||
42 | * in their respective device, channel, descriptor and slave objects. | ||
43 | */ | ||
44 | |||
45 | struct shdma_slave { | ||
46 | int slave_id; | ||
47 | }; | ||
48 | |||
49 | struct shdma_desc { | ||
50 | struct list_head node; | ||
51 | struct dma_async_tx_descriptor async_tx; | ||
52 | enum dma_transfer_direction direction; | ||
53 | dma_cookie_t cookie; | ||
54 | int chunks; | ||
55 | int mark; | ||
56 | }; | ||
57 | |||
58 | struct shdma_chan { | ||
59 | spinlock_t chan_lock; /* Channel operation lock */ | ||
60 | struct list_head ld_queue; /* Link descriptors queue */ | ||
61 | struct list_head ld_free; /* Free link descriptors */ | ||
62 | struct dma_chan dma_chan; /* DMA channel */ | ||
63 | struct device *dev; /* Channel device */ | ||
64 | void *desc; /* buffer for descriptor array */ | ||
65 | int desc_num; /* desc count */ | ||
66 | size_t max_xfer_len; /* max transfer length */ | ||
67 | int id; /* Raw id of this channel */ | ||
68 | int irq; /* Channel IRQ */ | ||
69 | int slave_id; /* Client ID for slave DMA */ | ||
70 | enum shdma_pm_state pm_state; | ||
71 | }; | ||
72 | |||
73 | /** | ||
74 | * struct shdma_ops - simple DMA driver operations | ||
75 | * desc_completed: return true, if this is the descriptor, that just has | ||
76 | * completed (atomic) | ||
77 | * halt_channel: stop DMA channel operation (atomic) | ||
78 | * channel_busy: return true, if the channel is busy (atomic) | ||
79 | * slave_addr: return slave DMA address | ||
80 | * desc_setup: set up the hardware specific descriptor portion (atomic) | ||
81 | * set_slave: bind channel to a slave | ||
82 | * setup_xfer: configure channel hardware for operation (atomic) | ||
83 | * start_xfer: start the DMA transfer (atomic) | ||
84 | * embedded_desc: return Nth struct shdma_desc pointer from the | ||
85 | * descriptor array | ||
86 | * chan_irq: process channel IRQ, return true if a transfer has | ||
87 | * completed (atomic) | ||
88 | */ | ||
89 | struct shdma_ops { | ||
90 | bool (*desc_completed)(struct shdma_chan *, struct shdma_desc *); | ||
91 | void (*halt_channel)(struct shdma_chan *); | ||
92 | bool (*channel_busy)(struct shdma_chan *); | ||
93 | dma_addr_t (*slave_addr)(struct shdma_chan *); | ||
94 | int (*desc_setup)(struct shdma_chan *, struct shdma_desc *, | ||
95 | dma_addr_t, dma_addr_t, size_t *); | ||
96 | int (*set_slave)(struct shdma_chan *, int, bool); | ||
97 | void (*setup_xfer)(struct shdma_chan *, int); | ||
98 | void (*start_xfer)(struct shdma_chan *, struct shdma_desc *); | ||
99 | struct shdma_desc *(*embedded_desc)(void *, int); | ||
100 | bool (*chan_irq)(struct shdma_chan *, int); | ||
101 | }; | ||
102 | |||
103 | struct shdma_dev { | ||
104 | struct dma_device dma_dev; | ||
105 | struct shdma_chan **schan; | ||
106 | const struct shdma_ops *ops; | ||
107 | size_t desc_size; | ||
108 | }; | ||
109 | |||
110 | #define shdma_for_each_chan(c, d, i) for (i = 0, c = (d)->schan[0]; \ | ||
111 | i < (d)->dma_dev.chancnt; c = (d)->schan[++i]) | ||
112 | |||
113 | int shdma_request_irq(struct shdma_chan *, int, | ||
114 | unsigned long, const char *); | ||
115 | void shdma_free_irq(struct shdma_chan *); | ||
116 | bool shdma_reset(struct shdma_dev *sdev); | ||
117 | void shdma_chan_probe(struct shdma_dev *sdev, | ||
118 | struct shdma_chan *schan, int id); | ||
119 | void shdma_chan_remove(struct shdma_chan *schan); | ||
120 | int shdma_init(struct device *dev, struct shdma_dev *sdev, | ||
121 | int chan_num); | ||
122 | void shdma_cleanup(struct shdma_dev *sdev); | ||
123 | |||
124 | #endif | ||
diff --git a/include/linux/shm.h b/include/linux/shm.h index 92808b86703b..edd086883ccb 100644 --- a/include/linux/shm.h +++ b/include/linux/shm.h | |||
@@ -107,12 +107,14 @@ struct shmid_kernel /* private to the kernel */ | |||
107 | #define SHM_NORESERVE 010000 /* don't check for reservations */ | 107 | #define SHM_NORESERVE 010000 /* don't check for reservations */ |
108 | 108 | ||
109 | #ifdef CONFIG_SYSVIPC | 109 | #ifdef CONFIG_SYSVIPC |
110 | long do_shmat(int shmid, char __user *shmaddr, int shmflg, unsigned long *addr); | 110 | long do_shmat(int shmid, char __user *shmaddr, int shmflg, unsigned long *addr, |
111 | unsigned long shmlba); | ||
111 | extern int is_file_shm_hugepages(struct file *file); | 112 | extern int is_file_shm_hugepages(struct file *file); |
112 | extern void exit_shm(struct task_struct *task); | 113 | extern void exit_shm(struct task_struct *task); |
113 | #else | 114 | #else |
114 | static inline long do_shmat(int shmid, char __user *shmaddr, | 115 | static inline long do_shmat(int shmid, char __user *shmaddr, |
115 | int shmflg, unsigned long *addr) | 116 | int shmflg, unsigned long *addr, |
117 | unsigned long shmlba) | ||
116 | { | 118 | { |
117 | return -ENOSYS; | 119 | return -ENOSYS; |
118 | } | 120 | } |
diff --git a/include/linux/sizes.h b/include/linux/sizes.h new file mode 100644 index 000000000000..ce3e8150c174 --- /dev/null +++ b/include/linux/sizes.h | |||
@@ -0,0 +1,47 @@ | |||
1 | /* | ||
2 | * include/linux/sizes.h | ||
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 | #ifndef __LINUX_SIZES_H__ | ||
9 | #define __LINUX_SIZES_H__ | ||
10 | |||
11 | #define SZ_1 0x00000001 | ||
12 | #define SZ_2 0x00000002 | ||
13 | #define SZ_4 0x00000004 | ||
14 | #define SZ_8 0x00000008 | ||
15 | #define SZ_16 0x00000010 | ||
16 | #define SZ_32 0x00000020 | ||
17 | #define SZ_64 0x00000040 | ||
18 | #define SZ_128 0x00000080 | ||
19 | #define SZ_256 0x00000100 | ||
20 | #define SZ_512 0x00000200 | ||
21 | |||
22 | #define SZ_1K 0x00000400 | ||
23 | #define SZ_2K 0x00000800 | ||
24 | #define SZ_4K 0x00001000 | ||
25 | #define SZ_8K 0x00002000 | ||
26 | #define SZ_16K 0x00004000 | ||
27 | #define SZ_32K 0x00008000 | ||
28 | #define SZ_64K 0x00010000 | ||
29 | #define SZ_128K 0x00020000 | ||
30 | #define SZ_256K 0x00040000 | ||
31 | #define SZ_512K 0x00080000 | ||
32 | |||
33 | #define SZ_1M 0x00100000 | ||
34 | #define SZ_2M 0x00200000 | ||
35 | #define SZ_4M 0x00400000 | ||
36 | #define SZ_8M 0x00800000 | ||
37 | #define SZ_16M 0x01000000 | ||
38 | #define SZ_32M 0x02000000 | ||
39 | #define SZ_64M 0x04000000 | ||
40 | #define SZ_128M 0x08000000 | ||
41 | #define SZ_256M 0x10000000 | ||
42 | #define SZ_512M 0x20000000 | ||
43 | |||
44 | #define SZ_1G 0x40000000 | ||
45 | #define SZ_2G 0x80000000 | ||
46 | |||
47 | #endif /* __LINUX_SIZES_H__ */ | ||
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index b534a1be540a..d205c4be7f5b 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -225,14 +225,11 @@ enum { | |||
225 | /* device driver is going to provide hardware time stamp */ | 225 | /* device driver is going to provide hardware time stamp */ |
226 | SKBTX_IN_PROGRESS = 1 << 2, | 226 | SKBTX_IN_PROGRESS = 1 << 2, |
227 | 227 | ||
228 | /* ensure the originating sk reference is available on driver level */ | ||
229 | SKBTX_DRV_NEEDS_SK_REF = 1 << 3, | ||
230 | |||
231 | /* device driver supports TX zero-copy buffers */ | 228 | /* device driver supports TX zero-copy buffers */ |
232 | SKBTX_DEV_ZEROCOPY = 1 << 4, | 229 | SKBTX_DEV_ZEROCOPY = 1 << 3, |
233 | 230 | ||
234 | /* generate wifi status information (where possible) */ | 231 | /* generate wifi status information (where possible) */ |
235 | SKBTX_WIFI_STATUS = 1 << 5, | 232 | SKBTX_WIFI_STATUS = 1 << 4, |
236 | }; | 233 | }; |
237 | 234 | ||
238 | /* | 235 | /* |
@@ -1670,6 +1667,22 @@ static inline void skb_orphan(struct sk_buff *skb) | |||
1670 | } | 1667 | } |
1671 | 1668 | ||
1672 | /** | 1669 | /** |
1670 | * skb_orphan_frags - orphan the frags contained in a buffer | ||
1671 | * @skb: buffer to orphan frags from | ||
1672 | * @gfp_mask: allocation mask for replacement pages | ||
1673 | * | ||
1674 | * For each frag in the SKB which needs a destructor (i.e. has an | ||
1675 | * owner) create a copy of that frag and release the original | ||
1676 | * page by calling the destructor. | ||
1677 | */ | ||
1678 | static inline int skb_orphan_frags(struct sk_buff *skb, gfp_t gfp_mask) | ||
1679 | { | ||
1680 | if (likely(!(skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY))) | ||
1681 | return 0; | ||
1682 | return skb_copy_ubufs(skb, gfp_mask); | ||
1683 | } | ||
1684 | |||
1685 | /** | ||
1673 | * __skb_queue_purge - empty a list | 1686 | * __skb_queue_purge - empty a list |
1674 | * @list: list to empty | 1687 | * @list: list to empty |
1675 | * | 1688 | * |
diff --git a/include/linux/slab.h b/include/linux/slab.h index 67d5d94b783a..0dd2dfa7beca 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
@@ -93,6 +93,30 @@ | |||
93 | (unsigned long)ZERO_SIZE_PTR) | 93 | (unsigned long)ZERO_SIZE_PTR) |
94 | 94 | ||
95 | /* | 95 | /* |
96 | * Common fields provided in kmem_cache by all slab allocators | ||
97 | * This struct is either used directly by the allocator (SLOB) | ||
98 | * or the allocator must include definitions for all fields | ||
99 | * provided in kmem_cache_common in their definition of kmem_cache. | ||
100 | * | ||
101 | * Once we can do anonymous structs (C11 standard) we could put a | ||
102 | * anonymous struct definition in these allocators so that the | ||
103 | * separate allocations in the kmem_cache structure of SLAB and | ||
104 | * SLUB is no longer needed. | ||
105 | */ | ||
106 | #ifdef CONFIG_SLOB | ||
107 | struct kmem_cache { | ||
108 | unsigned int object_size;/* The original size of the object */ | ||
109 | unsigned int size; /* The aligned/padded/added on size */ | ||
110 | unsigned int align; /* Alignment as calculated */ | ||
111 | unsigned long flags; /* Active flags on the slab */ | ||
112 | const char *name; /* Slab name for sysfs */ | ||
113 | int refcount; /* Use counter */ | ||
114 | void (*ctor)(void *); /* Called on object slot creation */ | ||
115 | struct list_head list; /* List of all slab caches on the system */ | ||
116 | }; | ||
117 | #endif | ||
118 | |||
119 | /* | ||
96 | * struct kmem_cache related prototypes | 120 | * struct kmem_cache related prototypes |
97 | */ | 121 | */ |
98 | void __init kmem_cache_init(void); | 122 | void __init kmem_cache_init(void); |
diff --git a/include/linux/slab_def.h b/include/linux/slab_def.h index fbd1117fdfde..0c634fa376c9 100644 --- a/include/linux/slab_def.h +++ b/include/linux/slab_def.h | |||
@@ -27,7 +27,7 @@ struct kmem_cache { | |||
27 | unsigned int limit; | 27 | unsigned int limit; |
28 | unsigned int shared; | 28 | unsigned int shared; |
29 | 29 | ||
30 | unsigned int buffer_size; | 30 | unsigned int size; |
31 | u32 reciprocal_buffer_size; | 31 | u32 reciprocal_buffer_size; |
32 | /* 2) touched by every alloc & free from the backend */ | 32 | /* 2) touched by every alloc & free from the backend */ |
33 | 33 | ||
@@ -39,7 +39,7 @@ struct kmem_cache { | |||
39 | unsigned int gfporder; | 39 | unsigned int gfporder; |
40 | 40 | ||
41 | /* force GFP flags, e.g. GFP_DMA */ | 41 | /* force GFP flags, e.g. GFP_DMA */ |
42 | gfp_t gfpflags; | 42 | gfp_t allocflags; |
43 | 43 | ||
44 | size_t colour; /* cache colouring range */ | 44 | size_t colour; /* cache colouring range */ |
45 | unsigned int colour_off; /* colour offset */ | 45 | unsigned int colour_off; /* colour offset */ |
@@ -52,7 +52,10 @@ struct kmem_cache { | |||
52 | 52 | ||
53 | /* 4) cache creation/removal */ | 53 | /* 4) cache creation/removal */ |
54 | const char *name; | 54 | const char *name; |
55 | struct list_head next; | 55 | struct list_head list; |
56 | int refcount; | ||
57 | int object_size; | ||
58 | int align; | ||
56 | 59 | ||
57 | /* 5) statistics */ | 60 | /* 5) statistics */ |
58 | #ifdef CONFIG_DEBUG_SLAB | 61 | #ifdef CONFIG_DEBUG_SLAB |
@@ -73,12 +76,11 @@ struct kmem_cache { | |||
73 | 76 | ||
74 | /* | 77 | /* |
75 | * If debugging is enabled, then the allocator can add additional | 78 | * If debugging is enabled, then the allocator can add additional |
76 | * fields and/or padding to every object. buffer_size contains the total | 79 | * fields and/or padding to every object. size contains the total |
77 | * object size including these internal fields, the following two | 80 | * object size including these internal fields, the following two |
78 | * variables contain the offset to the user object and its size. | 81 | * variables contain the offset to the user object and its size. |
79 | */ | 82 | */ |
80 | int obj_offset; | 83 | int obj_offset; |
81 | int obj_size; | ||
82 | #endif /* CONFIG_DEBUG_SLAB */ | 84 | #endif /* CONFIG_DEBUG_SLAB */ |
83 | 85 | ||
84 | /* 6) per-cpu/per-node data, touched during every alloc/free */ | 86 | /* 6) per-cpu/per-node data, touched during every alloc/free */ |
diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index c2f8c8bc56ed..df448adb7283 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h | |||
@@ -48,7 +48,6 @@ struct kmem_cache_cpu { | |||
48 | unsigned long tid; /* Globally unique transaction id */ | 48 | unsigned long tid; /* Globally unique transaction id */ |
49 | struct page *page; /* The slab from which we are allocating */ | 49 | struct page *page; /* The slab from which we are allocating */ |
50 | struct page *partial; /* Partially allocated frozen slabs */ | 50 | struct page *partial; /* Partially allocated frozen slabs */ |
51 | int node; /* The node of the page (or -1 for debug) */ | ||
52 | #ifdef CONFIG_SLUB_STATS | 51 | #ifdef CONFIG_SLUB_STATS |
53 | unsigned stat[NR_SLUB_STAT_ITEMS]; | 52 | unsigned stat[NR_SLUB_STAT_ITEMS]; |
54 | #endif | 53 | #endif |
@@ -83,7 +82,7 @@ struct kmem_cache { | |||
83 | unsigned long flags; | 82 | unsigned long flags; |
84 | unsigned long min_partial; | 83 | unsigned long min_partial; |
85 | int size; /* The size of an object including meta data */ | 84 | int size; /* The size of an object including meta data */ |
86 | int objsize; /* The size of an object without meta data */ | 85 | int object_size; /* The size of an object without meta data */ |
87 | int offset; /* Free pointer offset. */ | 86 | int offset; /* Free pointer offset. */ |
88 | int cpu_partial; /* Number of per cpu partial objects to keep around */ | 87 | int cpu_partial; /* Number of per cpu partial objects to keep around */ |
89 | struct kmem_cache_order_objects oo; | 88 | struct kmem_cache_order_objects oo; |
diff --git a/include/linux/smp.h b/include/linux/smp.h index 717fb746c9a8..dd6f06be3c9f 100644 --- a/include/linux/smp.h +++ b/include/linux/smp.h | |||
@@ -90,10 +90,6 @@ void kick_all_cpus_sync(void); | |||
90 | void __init call_function_init(void); | 90 | void __init call_function_init(void); |
91 | void generic_smp_call_function_single_interrupt(void); | 91 | void generic_smp_call_function_single_interrupt(void); |
92 | void generic_smp_call_function_interrupt(void); | 92 | void generic_smp_call_function_interrupt(void); |
93 | void ipi_call_lock(void); | ||
94 | void ipi_call_unlock(void); | ||
95 | void ipi_call_lock_irq(void); | ||
96 | void ipi_call_unlock_irq(void); | ||
97 | #else | 93 | #else |
98 | static inline void call_function_init(void) { } | 94 | static inline void call_function_init(void) { } |
99 | #endif | 95 | #endif |
@@ -181,7 +177,6 @@ static inline int up_smp_call_function(smp_call_func_t func, void *info) | |||
181 | } while (0) | 177 | } while (0) |
182 | 178 | ||
183 | static inline void smp_send_reschedule(int cpu) { } | 179 | static inline void smp_send_reschedule(int cpu) { } |
184 | #define num_booting_cpus() 1 | ||
185 | #define smp_prepare_boot_cpu() do {} while (0) | 180 | #define smp_prepare_boot_cpu() do {} while (0) |
186 | #define smp_call_function_many(mask, func, info, wait) \ | 181 | #define smp_call_function_many(mask, func, info, wait) \ |
187 | (up_smp_call_function(func, info)) | 182 | (up_smp_call_function(func, info)) |
diff --git a/include/linux/snmp.h b/include/linux/snmp.h index 2e68f5ba0389..00bc189cb395 100644 --- a/include/linux/snmp.h +++ b/include/linux/snmp.h | |||
@@ -208,7 +208,6 @@ enum | |||
208 | LINUX_MIB_TCPDSACKOFOSENT, /* TCPDSACKOfoSent */ | 208 | LINUX_MIB_TCPDSACKOFOSENT, /* TCPDSACKOfoSent */ |
209 | LINUX_MIB_TCPDSACKRECV, /* TCPDSACKRecv */ | 209 | LINUX_MIB_TCPDSACKRECV, /* TCPDSACKRecv */ |
210 | LINUX_MIB_TCPDSACKOFORECV, /* TCPDSACKOfoRecv */ | 210 | LINUX_MIB_TCPDSACKOFORECV, /* TCPDSACKOfoRecv */ |
211 | LINUX_MIB_TCPABORTONSYN, /* TCPAbortOnSyn */ | ||
212 | LINUX_MIB_TCPABORTONDATA, /* TCPAbortOnData */ | 211 | LINUX_MIB_TCPABORTONDATA, /* TCPAbortOnData */ |
213 | LINUX_MIB_TCPABORTONCLOSE, /* TCPAbortOnClose */ | 212 | LINUX_MIB_TCPABORTONCLOSE, /* TCPAbortOnClose */ |
214 | LINUX_MIB_TCPABORTONMEMORY, /* TCPAbortOnMemory */ | 213 | LINUX_MIB_TCPABORTONMEMORY, /* TCPAbortOnMemory */ |
@@ -233,7 +232,13 @@ enum | |||
233 | LINUX_MIB_TCPREQQFULLDOCOOKIES, /* TCPReqQFullDoCookies */ | 232 | LINUX_MIB_TCPREQQFULLDOCOOKIES, /* TCPReqQFullDoCookies */ |
234 | LINUX_MIB_TCPREQQFULLDROP, /* TCPReqQFullDrop */ | 233 | LINUX_MIB_TCPREQQFULLDROP, /* TCPReqQFullDrop */ |
235 | LINUX_MIB_TCPRETRANSFAIL, /* TCPRetransFail */ | 234 | LINUX_MIB_TCPRETRANSFAIL, /* TCPRetransFail */ |
236 | LINUX_MIB_TCPRCVCOALESCE, /* TCPRcvCoalesce */ | 235 | LINUX_MIB_TCPRCVCOALESCE, /* TCPRcvCoalesce */ |
236 | LINUX_MIB_TCPOFOQUEUE, /* TCPOFOQueue */ | ||
237 | LINUX_MIB_TCPOFODROP, /* TCPOFODrop */ | ||
238 | LINUX_MIB_TCPOFOMERGE, /* TCPOFOMerge */ | ||
239 | LINUX_MIB_TCPCHALLENGEACK, /* TCPChallengeACK */ | ||
240 | LINUX_MIB_TCPSYNCHALLENGE, /* TCPSYNChallenge */ | ||
241 | LINUX_MIB_TCPFASTOPENACTIVE, /* TCPFastOpenActive */ | ||
237 | __LINUX_MIB_MAX | 242 | __LINUX_MIB_MAX |
238 | }; | 243 | }; |
239 | 244 | ||
diff --git a/include/linux/sock_diag.h b/include/linux/sock_diag.h index db4bae78bda9..e3e395acc2fd 100644 --- a/include/linux/sock_diag.h +++ b/include/linux/sock_diag.h | |||
@@ -18,6 +18,7 @@ enum { | |||
18 | SK_MEMINFO_FWD_ALLOC, | 18 | SK_MEMINFO_FWD_ALLOC, |
19 | SK_MEMINFO_WMEM_QUEUED, | 19 | SK_MEMINFO_WMEM_QUEUED, |
20 | SK_MEMINFO_OPTMEM, | 20 | SK_MEMINFO_OPTMEM, |
21 | SK_MEMINFO_BACKLOG, | ||
21 | 22 | ||
22 | SK_MEMINFO_VARS, | 23 | SK_MEMINFO_VARS, |
23 | }; | 24 | }; |
@@ -43,6 +44,5 @@ void sock_diag_save_cookie(void *sk, __u32 *cookie); | |||
43 | 44 | ||
44 | int sock_diag_put_meminfo(struct sock *sk, struct sk_buff *skb, int attr); | 45 | int sock_diag_put_meminfo(struct sock *sk, struct sk_buff *skb, int attr); |
45 | 46 | ||
46 | extern struct sock *sock_diag_nlsk; | ||
47 | #endif /* KERNEL */ | 47 | #endif /* KERNEL */ |
48 | #endif | 48 | #endif |
diff --git a/include/linux/socket.h b/include/linux/socket.h index 25d6322fb635..ba7b2e817cfa 100644 --- a/include/linux/socket.h +++ b/include/linux/socket.h | |||
@@ -268,6 +268,7 @@ struct ucred { | |||
268 | #define MSG_SENDPAGE_NOTLAST 0x20000 /* sendpage() internal : not the last page */ | 268 | #define MSG_SENDPAGE_NOTLAST 0x20000 /* sendpage() internal : not the last page */ |
269 | #define MSG_EOF MSG_FIN | 269 | #define MSG_EOF MSG_FIN |
270 | 270 | ||
271 | #define MSG_FASTOPEN 0x20000000 /* Send data in TCP SYN */ | ||
271 | #define MSG_CMSG_CLOEXEC 0x40000000 /* Set close_on_exit for file | 272 | #define MSG_CMSG_CLOEXEC 0x40000000 /* Set close_on_exit for file |
272 | descriptor received through | 273 | descriptor received through |
273 | SCM_RIGHTS */ | 274 | SCM_RIGHTS */ |
diff --git a/include/linux/spi/ad7879.h b/include/linux/spi/ad7879.h index 6334cee1a3be..58368be0b4c0 100644 --- a/include/linux/spi/ad7879.h +++ b/include/linux/spi/ad7879.h | |||
@@ -12,6 +12,8 @@ struct ad7879_platform_data { | |||
12 | u16 y_min, y_max; | 12 | u16 y_min, y_max; |
13 | u16 pressure_min, pressure_max; | 13 | u16 pressure_min, pressure_max; |
14 | 14 | ||
15 | bool swap_xy; /* swap x and y axes */ | ||
16 | |||
15 | /* [0..255] 0=OFF Starts at 1=550us and goes | 17 | /* [0..255] 0=OFF Starts at 1=550us and goes |
16 | * all the way to 9.440ms in steps of 35us. | 18 | * all the way to 9.440ms in steps of 35us. |
17 | */ | 19 | */ |
diff --git a/include/linux/spi/at86rf230.h b/include/linux/spi/at86rf230.h new file mode 100644 index 000000000000..b2b1afbb3202 --- /dev/null +++ b/include/linux/spi/at86rf230.h | |||
@@ -0,0 +1,31 @@ | |||
1 | /* | ||
2 | * AT86RF230/RF231 driver | ||
3 | * | ||
4 | * Copyright (C) 2009-2012 Siemens AG | ||
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 | ||
8 | * as published by the Free Software Foundation. | ||
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 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: | ||
20 | * Dmitry Eremin-Solenikov <dmitry.baryshkov@siemens.com> | ||
21 | */ | ||
22 | #ifndef AT86RF230_H | ||
23 | #define AT86RF230_H | ||
24 | |||
25 | struct at86rf230_platform_data { | ||
26 | int rstn; | ||
27 | int slp_tr; | ||
28 | int dig2; | ||
29 | }; | ||
30 | |||
31 | #endif | ||
diff --git a/include/linux/spi/pxa2xx_spi.h b/include/linux/spi/pxa2xx_spi.h index d3e1075f7b60..c73d1445c77e 100644 --- a/include/linux/spi/pxa2xx_spi.h +++ b/include/linux/spi/pxa2xx_spi.h | |||
@@ -43,7 +43,7 @@ struct pxa2xx_spi_chip { | |||
43 | void (*cs_control)(u32 command); | 43 | void (*cs_control)(u32 command); |
44 | }; | 44 | }; |
45 | 45 | ||
46 | #ifdef CONFIG_ARCH_PXA | 46 | #if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP) |
47 | 47 | ||
48 | #include <linux/clk.h> | 48 | #include <linux/clk.h> |
49 | #include <mach/dma.h> | 49 | #include <mach/dma.h> |
diff --git a/include/linux/splice.h b/include/linux/splice.h index 26e5b613deda..09a545a7dfa3 100644 --- a/include/linux/splice.h +++ b/include/linux/splice.h | |||
@@ -51,7 +51,8 @@ struct partial_page { | |||
51 | struct splice_pipe_desc { | 51 | struct splice_pipe_desc { |
52 | struct page **pages; /* page map */ | 52 | struct page **pages; /* page map */ |
53 | struct partial_page *partial; /* pages[] may not be contig */ | 53 | struct partial_page *partial; /* pages[] may not be contig */ |
54 | int nr_pages; /* number of pages in map */ | 54 | int nr_pages; /* number of populated pages in map */ |
55 | unsigned int nr_pages_max; /* pages[] & partial[] arrays size */ | ||
55 | unsigned int flags; /* splice flags */ | 56 | unsigned int flags; /* splice flags */ |
56 | const struct pipe_buf_operations *ops;/* ops associated with output pipe */ | 57 | const struct pipe_buf_operations *ops;/* ops associated with output pipe */ |
57 | void (*spd_release)(struct splice_pipe_desc *, unsigned int); | 58 | void (*spd_release)(struct splice_pipe_desc *, unsigned int); |
@@ -85,9 +86,8 @@ extern ssize_t splice_direct_to_actor(struct file *, struct splice_desc *, | |||
85 | /* | 86 | /* |
86 | * for dynamic pipe sizing | 87 | * for dynamic pipe sizing |
87 | */ | 88 | */ |
88 | extern int splice_grow_spd(struct pipe_inode_info *, struct splice_pipe_desc *); | 89 | extern int splice_grow_spd(const struct pipe_inode_info *, struct splice_pipe_desc *); |
89 | extern void splice_shrink_spd(struct pipe_inode_info *, | 90 | extern void splice_shrink_spd(struct splice_pipe_desc *); |
90 | struct splice_pipe_desc *); | ||
91 | extern void spd_release_page(struct splice_pipe_desc *, unsigned int); | 91 | extern void spd_release_page(struct splice_pipe_desc *, unsigned int); |
92 | 92 | ||
93 | extern const struct pipe_buf_operations page_cache_pipe_buf_ops; | 93 | extern const struct pipe_buf_operations page_cache_pipe_buf_ops; |
diff --git a/include/linux/ssb/ssb.h b/include/linux/ssb/ssb.h index bc14bd738ade..bb674c02f306 100644 --- a/include/linux/ssb/ssb.h +++ b/include/linux/ssb/ssb.h | |||
@@ -243,6 +243,7 @@ struct ssb_bus_ops { | |||
243 | #define SSB_DEV_MINI_MACPHY 0x823 | 243 | #define SSB_DEV_MINI_MACPHY 0x823 |
244 | #define SSB_DEV_ARM_1176 0x824 | 244 | #define SSB_DEV_ARM_1176 0x824 |
245 | #define SSB_DEV_ARM_7TDMI 0x825 | 245 | #define SSB_DEV_ARM_7TDMI 0x825 |
246 | #define SSB_DEV_ARM_CM3 0x82A | ||
246 | 247 | ||
247 | /* Vendor-ID values */ | 248 | /* Vendor-ID values */ |
248 | #define SSB_VENDOR_BROADCOM 0x4243 | 249 | #define SSB_VENDOR_BROADCOM 0x4243 |
diff --git a/include/linux/string.h b/include/linux/string.h index e033564f10ba..ffe0442e18d2 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
@@ -145,4 +145,7 @@ static inline bool strstarts(const char *str, const char *prefix) | |||
145 | return strncmp(str, prefix, strlen(prefix)) == 0; | 145 | return strncmp(str, prefix, strlen(prefix)) == 0; |
146 | } | 146 | } |
147 | #endif | 147 | #endif |
148 | |||
149 | extern size_t memweight(const void *ptr, size_t bytes); | ||
150 | |||
148 | #endif /* _LINUX_STRING_H_ */ | 151 | #endif /* _LINUX_STRING_H_ */ |
diff --git a/include/linux/sunrpc/auth.h b/include/linux/sunrpc/auth.h index 492a36d72829..f25ba922baaf 100644 --- a/include/linux/sunrpc/auth.h +++ b/include/linux/sunrpc/auth.h | |||
@@ -101,6 +101,7 @@ struct rpc_authops { | |||
101 | struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int); | 101 | struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int); |
102 | int (*pipes_create)(struct rpc_auth *); | 102 | int (*pipes_create)(struct rpc_auth *); |
103 | void (*pipes_destroy)(struct rpc_auth *); | 103 | void (*pipes_destroy)(struct rpc_auth *); |
104 | int (*list_pseudoflavors)(rpc_authflavor_t *, int); | ||
104 | }; | 105 | }; |
105 | 106 | ||
106 | struct rpc_credops { | 107 | struct rpc_credops { |
@@ -135,6 +136,7 @@ int rpcauth_register(const struct rpc_authops *); | |||
135 | int rpcauth_unregister(const struct rpc_authops *); | 136 | int rpcauth_unregister(const struct rpc_authops *); |
136 | struct rpc_auth * rpcauth_create(rpc_authflavor_t, struct rpc_clnt *); | 137 | struct rpc_auth * rpcauth_create(rpc_authflavor_t, struct rpc_clnt *); |
137 | void rpcauth_release(struct rpc_auth *); | 138 | void rpcauth_release(struct rpc_auth *); |
139 | int rpcauth_list_flavors(rpc_authflavor_t *, int); | ||
138 | struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int); | 140 | struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int); |
139 | void rpcauth_init_cred(struct rpc_cred *, const struct auth_cred *, struct rpc_auth *, const struct rpc_credops *); | 141 | void rpcauth_init_cred(struct rpc_cred *, const struct auth_cred *, struct rpc_auth *, const struct rpc_credops *); |
140 | struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int); | 142 | struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int); |
diff --git a/include/linux/sunrpc/gss_api.h b/include/linux/sunrpc/gss_api.h index 332da61cf8b7..a19e2547ae6a 100644 --- a/include/linux/sunrpc/gss_api.h +++ b/include/linux/sunrpc/gss_api.h | |||
@@ -14,6 +14,7 @@ | |||
14 | 14 | ||
15 | #ifdef __KERNEL__ | 15 | #ifdef __KERNEL__ |
16 | #include <linux/sunrpc/xdr.h> | 16 | #include <linux/sunrpc/xdr.h> |
17 | #include <linux/sunrpc/msg_prot.h> | ||
17 | #include <linux/uio.h> | 18 | #include <linux/uio.h> |
18 | 19 | ||
19 | /* The mechanism-independent gss-api context: */ | 20 | /* The mechanism-independent gss-api context: */ |
@@ -127,7 +128,7 @@ struct gss_api_mech *gss_mech_get_by_name(const char *); | |||
127 | struct gss_api_mech *gss_mech_get_by_pseudoflavor(u32); | 128 | struct gss_api_mech *gss_mech_get_by_pseudoflavor(u32); |
128 | 129 | ||
129 | /* Fill in an array with a list of supported pseudoflavors */ | 130 | /* Fill in an array with a list of supported pseudoflavors */ |
130 | int gss_mech_list_pseudoflavors(u32 *); | 131 | int gss_mech_list_pseudoflavors(rpc_authflavor_t *, int); |
131 | 132 | ||
132 | /* Just increments the mechanism's reference count and returns its input: */ | 133 | /* Just increments the mechanism's reference count and returns its input: */ |
133 | struct gss_api_mech * gss_mech_get(struct gss_api_mech *); | 134 | struct gss_api_mech * gss_mech_get(struct gss_api_mech *); |
diff --git a/include/linux/sunrpc/xdr.h b/include/linux/sunrpc/xdr.h index af70af333546..63988990bd36 100644 --- a/include/linux/sunrpc/xdr.h +++ b/include/linux/sunrpc/xdr.h | |||
@@ -104,8 +104,6 @@ __be32 *xdr_decode_string_inplace(__be32 *p, char **sp, unsigned int *lenp, | |||
104 | __be32 *xdr_encode_netobj(__be32 *p, const struct xdr_netobj *); | 104 | __be32 *xdr_encode_netobj(__be32 *p, const struct xdr_netobj *); |
105 | __be32 *xdr_decode_netobj(__be32 *p, struct xdr_netobj *); | 105 | __be32 *xdr_decode_netobj(__be32 *p, struct xdr_netobj *); |
106 | 106 | ||
107 | void xdr_encode_pages(struct xdr_buf *, struct page **, unsigned int, | ||
108 | unsigned int); | ||
109 | void xdr_inline_pages(struct xdr_buf *, unsigned int, | 107 | void xdr_inline_pages(struct xdr_buf *, unsigned int, |
110 | struct page **, unsigned int, unsigned int); | 108 | struct page **, unsigned int, unsigned int); |
111 | void xdr_terminate_string(struct xdr_buf *, const u32); | 109 | void xdr_terminate_string(struct xdr_buf *, const u32); |
@@ -205,6 +203,7 @@ struct xdr_stream { | |||
205 | struct kvec *iov; /* pointer to the current kvec */ | 203 | struct kvec *iov; /* pointer to the current kvec */ |
206 | struct kvec scratch; /* Scratch buffer */ | 204 | struct kvec scratch; /* Scratch buffer */ |
207 | struct page **page_ptr; /* pointer to the current page */ | 205 | struct page **page_ptr; /* pointer to the current page */ |
206 | unsigned int nwords; /* Remaining decode buffer length */ | ||
208 | }; | 207 | }; |
209 | 208 | ||
210 | /* | 209 | /* |
@@ -217,12 +216,13 @@ extern void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 | |||
217 | extern __be32 *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes); | 216 | extern __be32 *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes); |
218 | extern void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, | 217 | extern void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, |
219 | unsigned int base, unsigned int len); | 218 | unsigned int base, unsigned int len); |
219 | extern unsigned int xdr_stream_pos(const struct xdr_stream *xdr); | ||
220 | extern void xdr_init_decode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p); | 220 | extern void xdr_init_decode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p); |
221 | extern void xdr_init_decode_pages(struct xdr_stream *xdr, struct xdr_buf *buf, | 221 | extern void xdr_init_decode_pages(struct xdr_stream *xdr, struct xdr_buf *buf, |
222 | struct page **pages, unsigned int len); | 222 | struct page **pages, unsigned int len); |
223 | extern void xdr_set_scratch_buffer(struct xdr_stream *xdr, void *buf, size_t buflen); | 223 | extern void xdr_set_scratch_buffer(struct xdr_stream *xdr, void *buf, size_t buflen); |
224 | extern __be32 *xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes); | 224 | extern __be32 *xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes); |
225 | extern void xdr_read_pages(struct xdr_stream *xdr, unsigned int len); | 225 | extern unsigned int xdr_read_pages(struct xdr_stream *xdr, unsigned int len); |
226 | extern void xdr_enter_page(struct xdr_stream *xdr, unsigned int len); | 226 | extern void xdr_enter_page(struct xdr_stream *xdr, unsigned int len); |
227 | extern int xdr_process_buf(struct xdr_buf *buf, unsigned int offset, unsigned int len, int (*actor)(struct scatterlist *, void *), void *data); | 227 | extern int xdr_process_buf(struct xdr_buf *buf, unsigned int offset, unsigned int len, int (*actor)(struct scatterlist *, void *), void *data); |
228 | 228 | ||
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index cd83059fb592..0c808d7fa579 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
@@ -408,6 +408,12 @@ static inline void unlock_system_sleep(void) {} | |||
408 | 408 | ||
409 | #endif /* !CONFIG_PM_SLEEP */ | 409 | #endif /* !CONFIG_PM_SLEEP */ |
410 | 410 | ||
411 | #ifdef CONFIG_PM_SLEEP_DEBUG | ||
412 | extern bool pm_print_times_enabled; | ||
413 | #else | ||
414 | #define pm_print_times_enabled (false) | ||
415 | #endif | ||
416 | |||
411 | #ifdef CONFIG_PM_AUTOSLEEP | 417 | #ifdef CONFIG_PM_AUTOSLEEP |
412 | 418 | ||
413 | /* kernel/power/autosleep.c */ | 419 | /* kernel/power/autosleep.c */ |
diff --git a/include/linux/task_work.h b/include/linux/task_work.h index 294d5d5e90b1..fb46b03b1852 100644 --- a/include/linux/task_work.h +++ b/include/linux/task_work.h | |||
@@ -4,29 +4,21 @@ | |||
4 | #include <linux/list.h> | 4 | #include <linux/list.h> |
5 | #include <linux/sched.h> | 5 | #include <linux/sched.h> |
6 | 6 | ||
7 | struct task_work; | 7 | typedef void (*task_work_func_t)(struct callback_head *); |
8 | typedef void (*task_work_func_t)(struct task_work *); | ||
9 | |||
10 | struct task_work { | ||
11 | struct hlist_node hlist; | ||
12 | task_work_func_t func; | ||
13 | void *data; | ||
14 | }; | ||
15 | 8 | ||
16 | static inline void | 9 | static inline void |
17 | init_task_work(struct task_work *twork, task_work_func_t func, void *data) | 10 | init_task_work(struct callback_head *twork, task_work_func_t func) |
18 | { | 11 | { |
19 | twork->func = func; | 12 | twork->func = func; |
20 | twork->data = data; | ||
21 | } | 13 | } |
22 | 14 | ||
23 | int task_work_add(struct task_struct *task, struct task_work *twork, bool); | 15 | int task_work_add(struct task_struct *task, struct callback_head *twork, bool); |
24 | struct task_work *task_work_cancel(struct task_struct *, task_work_func_t); | 16 | struct callback_head *task_work_cancel(struct task_struct *, task_work_func_t); |
25 | void task_work_run(void); | 17 | void task_work_run(void); |
26 | 18 | ||
27 | static inline void exit_task_work(struct task_struct *task) | 19 | static inline void exit_task_work(struct task_struct *task) |
28 | { | 20 | { |
29 | if (unlikely(!hlist_empty(&task->task_works))) | 21 | if (unlikely(task->task_works)) |
30 | task_work_run(); | 22 | task_work_run(); |
31 | } | 23 | } |
32 | 24 | ||
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 5f359dbfcdce..eb125a4c30b3 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h | |||
@@ -243,6 +243,16 @@ static inline unsigned int tcp_optlen(const struct sk_buff *skb) | |||
243 | return (tcp_hdr(skb)->doff - 5) * 4; | 243 | return (tcp_hdr(skb)->doff - 5) * 4; |
244 | } | 244 | } |
245 | 245 | ||
246 | /* TCP Fast Open */ | ||
247 | #define TCP_FASTOPEN_COOKIE_MIN 4 /* Min Fast Open Cookie size in bytes */ | ||
248 | #define TCP_FASTOPEN_COOKIE_MAX 16 /* Max Fast Open Cookie size in bytes */ | ||
249 | |||
250 | /* TCP Fast Open Cookie as stored in memory */ | ||
251 | struct tcp_fastopen_cookie { | ||
252 | s8 len; | ||
253 | u8 val[TCP_FASTOPEN_COOKIE_MAX]; | ||
254 | }; | ||
255 | |||
246 | /* This defines a selective acknowledgement block. */ | 256 | /* This defines a selective acknowledgement block. */ |
247 | struct tcp_sack_block_wire { | 257 | struct tcp_sack_block_wire { |
248 | __be32 start_seq; | 258 | __be32 start_seq; |
@@ -339,6 +349,9 @@ struct tcp_sock { | |||
339 | u32 rcv_tstamp; /* timestamp of last received ACK (for keepalives) */ | 349 | u32 rcv_tstamp; /* timestamp of last received ACK (for keepalives) */ |
340 | u32 lsndtime; /* timestamp of last sent data packet (for restart window) */ | 350 | u32 lsndtime; /* timestamp of last sent data packet (for restart window) */ |
341 | 351 | ||
352 | struct list_head tsq_node; /* anchor in tsq_tasklet.head list */ | ||
353 | unsigned long tsq_flags; | ||
354 | |||
342 | /* Data for direct copy to user */ | 355 | /* Data for direct copy to user */ |
343 | struct { | 356 | struct { |
344 | struct sk_buff_head prequeue; | 357 | struct sk_buff_head prequeue; |
@@ -373,7 +386,9 @@ struct tcp_sock { | |||
373 | unused : 1; | 386 | unused : 1; |
374 | u8 repair_queue; | 387 | u8 repair_queue; |
375 | u8 do_early_retrans:1,/* Enable RFC5827 early-retransmit */ | 388 | u8 do_early_retrans:1,/* Enable RFC5827 early-retransmit */ |
376 | early_retrans_delayed:1; /* Delayed ER timer installed */ | 389 | early_retrans_delayed:1, /* Delayed ER timer installed */ |
390 | syn_data:1, /* SYN includes data */ | ||
391 | syn_fastopen:1; /* SYN includes Fast Open option */ | ||
377 | 392 | ||
378 | /* RTT measurement */ | 393 | /* RTT measurement */ |
379 | u32 srtt; /* smoothed round trip time << 3 */ | 394 | u32 srtt; /* smoothed round trip time << 3 */ |
@@ -478,6 +493,9 @@ struct tcp_sock { | |||
478 | u32 probe_seq_start; | 493 | u32 probe_seq_start; |
479 | u32 probe_seq_end; | 494 | u32 probe_seq_end; |
480 | } mtu_probe; | 495 | } mtu_probe; |
496 | u32 mtu_info; /* We received an ICMP_FRAG_NEEDED / ICMPV6_PKT_TOOBIG | ||
497 | * while socket was owned by user. | ||
498 | */ | ||
481 | 499 | ||
482 | #ifdef CONFIG_TCP_MD5SIG | 500 | #ifdef CONFIG_TCP_MD5SIG |
483 | /* TCP AF-Specific parts; only used by MD5 Signature support so far */ | 501 | /* TCP AF-Specific parts; only used by MD5 Signature support so far */ |
@@ -487,6 +505,9 @@ struct tcp_sock { | |||
487 | struct tcp_md5sig_info __rcu *md5sig_info; | 505 | struct tcp_md5sig_info __rcu *md5sig_info; |
488 | #endif | 506 | #endif |
489 | 507 | ||
508 | /* TCP fastopen related information */ | ||
509 | struct tcp_fastopen_request *fastopen_req; | ||
510 | |||
490 | /* When the cookie options are generated and exchanged, then this | 511 | /* When the cookie options are generated and exchanged, then this |
491 | * object holds a reference to them (cookie_values->kref). Also | 512 | * object holds a reference to them (cookie_values->kref). Also |
492 | * contains related tcp_cookie_transactions fields. | 513 | * contains related tcp_cookie_transactions fields. |
@@ -494,6 +515,17 @@ struct tcp_sock { | |||
494 | struct tcp_cookie_values *cookie_values; | 515 | struct tcp_cookie_values *cookie_values; |
495 | }; | 516 | }; |
496 | 517 | ||
518 | enum tsq_flags { | ||
519 | TSQ_THROTTLED, | ||
520 | TSQ_QUEUED, | ||
521 | TCP_TSQ_DEFERRED, /* tcp_tasklet_func() found socket was owned */ | ||
522 | TCP_WRITE_TIMER_DEFERRED, /* tcp_write_timer() found socket was owned */ | ||
523 | TCP_DELACK_TIMER_DEFERRED, /* tcp_delack_timer() found socket was owned */ | ||
524 | TCP_MTU_REDUCED_DEFERRED, /* tcp_v{4|6}_err() could not call | ||
525 | * tcp_v{4|6}_mtu_reduced() | ||
526 | */ | ||
527 | }; | ||
528 | |||
497 | static inline struct tcp_sock *tcp_sk(const struct sock *sk) | 529 | static inline struct tcp_sock *tcp_sk(const struct sock *sk) |
498 | { | 530 | { |
499 | return (struct tcp_sock *)sk; | 531 | return (struct tcp_sock *)sk; |
@@ -507,7 +539,7 @@ struct tcp_timewait_sock { | |||
507 | u32 tw_ts_recent; | 539 | u32 tw_ts_recent; |
508 | long tw_ts_recent_stamp; | 540 | long tw_ts_recent_stamp; |
509 | #ifdef CONFIG_TCP_MD5SIG | 541 | #ifdef CONFIG_TCP_MD5SIG |
510 | struct tcp_md5sig_key *tw_md5_key; | 542 | struct tcp_md5sig_key *tw_md5_key; |
511 | #endif | 543 | #endif |
512 | /* Few sockets in timewait have cookies; in that case, then this | 544 | /* Few sockets in timewait have cookies; in that case, then this |
513 | * object holds a reference to them (tw_cookie_values->kref). | 545 | * object holds a reference to them (tw_cookie_values->kref). |
diff --git a/include/linux/thermal.h b/include/linux/thermal.h index 796f1ff0388c..cfc8d908892e 100644 --- a/include/linux/thermal.h +++ b/include/linux/thermal.h | |||
@@ -58,6 +58,12 @@ struct thermal_zone_device_ops { | |||
58 | enum thermal_trip_type *); | 58 | enum thermal_trip_type *); |
59 | int (*get_trip_temp) (struct thermal_zone_device *, int, | 59 | int (*get_trip_temp) (struct thermal_zone_device *, int, |
60 | unsigned long *); | 60 | unsigned long *); |
61 | int (*set_trip_temp) (struct thermal_zone_device *, int, | ||
62 | unsigned long); | ||
63 | int (*get_trip_hyst) (struct thermal_zone_device *, int, | ||
64 | unsigned long *); | ||
65 | int (*set_trip_hyst) (struct thermal_zone_device *, int, | ||
66 | unsigned long); | ||
61 | int (*get_crit_temp) (struct thermal_zone_device *, unsigned long *); | 67 | int (*get_crit_temp) (struct thermal_zone_device *, unsigned long *); |
62 | int (*notify) (struct thermal_zone_device *, int, | 68 | int (*notify) (struct thermal_zone_device *, int, |
63 | enum thermal_trip_type); | 69 | enum thermal_trip_type); |
@@ -85,10 +91,18 @@ struct thermal_cooling_device { | |||
85 | ((long)t-2732+5)/10 : ((long)t-2732-5)/10) | 91 | ((long)t-2732+5)/10 : ((long)t-2732-5)/10) |
86 | #define CELSIUS_TO_KELVIN(t) ((t)*10+2732) | 92 | #define CELSIUS_TO_KELVIN(t) ((t)*10+2732) |
87 | 93 | ||
94 | struct thermal_attr { | ||
95 | struct device_attribute attr; | ||
96 | char name[THERMAL_NAME_LENGTH]; | ||
97 | }; | ||
98 | |||
88 | struct thermal_zone_device { | 99 | struct thermal_zone_device { |
89 | int id; | 100 | int id; |
90 | char type[THERMAL_NAME_LENGTH]; | 101 | char type[THERMAL_NAME_LENGTH]; |
91 | struct device device; | 102 | struct device device; |
103 | struct thermal_attr *trip_temp_attrs; | ||
104 | struct thermal_attr *trip_type_attrs; | ||
105 | struct thermal_attr *trip_hyst_attrs; | ||
92 | void *devdata; | 106 | void *devdata; |
93 | int trips; | 107 | int trips; |
94 | int tc1; | 108 | int tc1; |
@@ -137,9 +151,9 @@ enum { | |||
137 | }; | 151 | }; |
138 | #define THERMAL_GENL_CMD_MAX (__THERMAL_GENL_CMD_MAX - 1) | 152 | #define THERMAL_GENL_CMD_MAX (__THERMAL_GENL_CMD_MAX - 1) |
139 | 153 | ||
140 | struct thermal_zone_device *thermal_zone_device_register(char *, int, void *, | 154 | struct thermal_zone_device *thermal_zone_device_register(char *, int, int, |
141 | const struct thermal_zone_device_ops *, int tc1, int tc2, | 155 | void *, const struct thermal_zone_device_ops *, int tc1, |
142 | int passive_freq, int polling_freq); | 156 | int tc2, int passive_freq, int polling_freq); |
143 | void thermal_zone_device_unregister(struct thermal_zone_device *); | 157 | void thermal_zone_device_unregister(struct thermal_zone_device *); |
144 | 158 | ||
145 | int thermal_zone_bind_cooling_device(struct thermal_zone_device *, int, | 159 | int thermal_zone_bind_cooling_device(struct thermal_zone_device *, int, |
diff --git a/include/linux/tick.h b/include/linux/tick.h index ab8be90b5cc9..f37fceb69b73 100644 --- a/include/linux/tick.h +++ b/include/linux/tick.h | |||
@@ -31,10 +31,10 @@ enum tick_nohz_mode { | |||
31 | * struct tick_sched - sched tick emulation and no idle tick control/stats | 31 | * struct tick_sched - sched tick emulation and no idle tick control/stats |
32 | * @sched_timer: hrtimer to schedule the periodic tick in high | 32 | * @sched_timer: hrtimer to schedule the periodic tick in high |
33 | * resolution mode | 33 | * resolution mode |
34 | * @idle_tick: Store the last idle tick expiry time when the tick | 34 | * @last_tick: Store the last tick expiry time when the tick |
35 | * timer is modified for idle sleeps. This is necessary | 35 | * timer is modified for nohz sleeps. This is necessary |
36 | * to resume the tick timer operation in the timeline | 36 | * to resume the tick timer operation in the timeline |
37 | * when the CPU returns from idle | 37 | * when the CPU returns from nohz sleep. |
38 | * @tick_stopped: Indicator that the idle tick has been stopped | 38 | * @tick_stopped: Indicator that the idle tick has been stopped |
39 | * @idle_jiffies: jiffies at the entry to idle for idle time accounting | 39 | * @idle_jiffies: jiffies at the entry to idle for idle time accounting |
40 | * @idle_calls: Total number of idle calls | 40 | * @idle_calls: Total number of idle calls |
@@ -51,7 +51,7 @@ struct tick_sched { | |||
51 | struct hrtimer sched_timer; | 51 | struct hrtimer sched_timer; |
52 | unsigned long check_clocks; | 52 | unsigned long check_clocks; |
53 | enum tick_nohz_mode nohz_mode; | 53 | enum tick_nohz_mode nohz_mode; |
54 | ktime_t idle_tick; | 54 | ktime_t last_tick; |
55 | int inidle; | 55 | int inidle; |
56 | int tick_stopped; | 56 | int tick_stopped; |
57 | unsigned long idle_jiffies; | 57 | unsigned long idle_jiffies; |
diff --git a/include/linux/time-armada-370-xp.h b/include/linux/time-armada-370-xp.h new file mode 100644 index 000000000000..dfdfdc03115b --- /dev/null +++ b/include/linux/time-armada-370-xp.h | |||
@@ -0,0 +1,18 @@ | |||
1 | /* | ||
2 | * Marvell Armada 370/XP SoC timer handling. | ||
3 | * | ||
4 | * Copyright (C) 2012 Marvell | ||
5 | * | ||
6 | * Lior Amsalem <alior@marvell.com> | ||
7 | * Gregory CLEMENT <gregory.clement@free-electrons.com> | ||
8 | * Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | ||
9 | * | ||
10 | */ | ||
11 | #ifndef __TIME_ARMADA_370_XPPRCMU_H | ||
12 | #define __TIME_ARMADA_370_XPPRCMU_H | ||
13 | |||
14 | #include <linux/init.h> | ||
15 | |||
16 | void __init armada_370_xp_timer_init(void); | ||
17 | |||
18 | #endif | ||
diff --git a/include/linux/time.h b/include/linux/time.h index 179f4d6755fc..c81c5e40fcb5 100644 --- a/include/linux/time.h +++ b/include/linux/time.h | |||
@@ -257,14 +257,6 @@ static __always_inline void timespec_add_ns(struct timespec *a, u64 ns) | |||
257 | 257 | ||
258 | #endif /* __KERNEL__ */ | 258 | #endif /* __KERNEL__ */ |
259 | 259 | ||
260 | #define NFDBITS __NFDBITS | ||
261 | |||
262 | #define FD_SETSIZE __FD_SETSIZE | ||
263 | #define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp) | ||
264 | #define FD_CLR(fd,fdsetp) __FD_CLR(fd,fdsetp) | ||
265 | #define FD_ISSET(fd,fdsetp) __FD_ISSET(fd,fdsetp) | ||
266 | #define FD_ZERO(fdsetp) __FD_ZERO(fdsetp) | ||
267 | |||
268 | /* | 260 | /* |
269 | * Names of the interval timers, and structure | 261 | * Names of the interval timers, and structure |
270 | * defining a timer setting: | 262 | * defining a timer setting: |
diff --git a/include/linux/tipc_config.h b/include/linux/tipc_config.h index 9730b0e51e46..c98928420100 100644 --- a/include/linux/tipc_config.h +++ b/include/linux/tipc_config.h | |||
@@ -102,8 +102,8 @@ | |||
102 | #define TIPC_CMD_SET_LINK_TOL 0x4107 /* tx link_config, rx none */ | 102 | #define TIPC_CMD_SET_LINK_TOL 0x4107 /* tx link_config, rx none */ |
103 | #define TIPC_CMD_SET_LINK_PRI 0x4108 /* tx link_config, rx none */ | 103 | #define TIPC_CMD_SET_LINK_PRI 0x4108 /* tx link_config, rx none */ |
104 | #define TIPC_CMD_SET_LINK_WINDOW 0x4109 /* tx link_config, rx none */ | 104 | #define TIPC_CMD_SET_LINK_WINDOW 0x4109 /* tx link_config, rx none */ |
105 | #define TIPC_CMD_SET_LOG_SIZE 0x410A /* tx unsigned, rx none */ | 105 | #define TIPC_CMD_SET_LOG_SIZE 0x410A /* obsoleted */ |
106 | #define TIPC_CMD_DUMP_LOG 0x410B /* tx none, rx ultra_string */ | 106 | #define TIPC_CMD_DUMP_LOG 0x410B /* obsoleted */ |
107 | #define TIPC_CMD_RESET_LINK_STATS 0x410C /* tx link_name, rx none */ | 107 | #define TIPC_CMD_RESET_LINK_STATS 0x410C /* tx link_name, rx none */ |
108 | 108 | ||
109 | /* | 109 | /* |
diff --git a/include/linux/tracehook.h b/include/linux/tracehook.h index 6a4d82bedb03..1e98b5530425 100644 --- a/include/linux/tracehook.h +++ b/include/linux/tracehook.h | |||
@@ -192,7 +192,7 @@ static inline void tracehook_notify_resume(struct pt_regs *regs) | |||
192 | * hlist_add_head(task->task_works); | 192 | * hlist_add_head(task->task_works); |
193 | */ | 193 | */ |
194 | smp_mb__after_clear_bit(); | 194 | smp_mb__after_clear_bit(); |
195 | if (unlikely(!hlist_empty(¤t->task_works))) | 195 | if (unlikely(current->task_works)) |
196 | task_work_run(); | 196 | task_work_run(); |
197 | } | 197 | } |
198 | 198 | ||
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h index bd96ecd0e05c..802de56c41e8 100644 --- a/include/linux/tracepoint.h +++ b/include/linux/tracepoint.h | |||
@@ -153,7 +153,7 @@ static inline void tracepoint_synchronize_unregister(void) | |||
153 | } \ | 153 | } \ |
154 | static inline void trace_##name##_rcuidle(proto) \ | 154 | static inline void trace_##name##_rcuidle(proto) \ |
155 | { \ | 155 | { \ |
156 | if (static_branch(&__tracepoint_##name.key)) \ | 156 | if (static_key_false(&__tracepoint_##name.key)) \ |
157 | __DO_TRACE(&__tracepoint_##name, \ | 157 | __DO_TRACE(&__tracepoint_##name, \ |
158 | TP_PROTO(data_proto), \ | 158 | TP_PROTO(data_proto), \ |
159 | TP_ARGS(data_args), \ | 159 | TP_ARGS(data_args), \ |
diff --git a/include/linux/types.h b/include/linux/types.h index 9c1bd539ea70..bf0dd7524b2a 100644 --- a/include/linux/types.h +++ b/include/linux/types.h | |||
@@ -246,14 +246,15 @@ struct ustat { | |||
246 | }; | 246 | }; |
247 | 247 | ||
248 | /** | 248 | /** |
249 | * struct rcu_head - callback structure for use with RCU | 249 | * struct callback_head - callback structure for use with RCU and task_work |
250 | * @next: next update requests in a list | 250 | * @next: next update requests in a list |
251 | * @func: actual update function to call after the grace period. | 251 | * @func: actual update function to call after the grace period. |
252 | */ | 252 | */ |
253 | struct rcu_head { | 253 | struct callback_head { |
254 | struct rcu_head *next; | 254 | struct callback_head *next; |
255 | void (*func)(struct rcu_head *head); | 255 | void (*func)(struct callback_head *head); |
256 | }; | 256 | }; |
257 | #define rcu_head callback_head | ||
257 | 258 | ||
258 | #endif /* __KERNEL__ */ | 259 | #endif /* __KERNEL__ */ |
259 | #endif /* __ASSEMBLY__ */ | 260 | #endif /* __ASSEMBLY__ */ |
diff --git a/include/linux/uhid.h b/include/linux/uhid.h new file mode 100644 index 000000000000..9c6974f16966 --- /dev/null +++ b/include/linux/uhid.h | |||
@@ -0,0 +1,104 @@ | |||
1 | #ifndef __UHID_H_ | ||
2 | #define __UHID_H_ | ||
3 | |||
4 | /* | ||
5 | * User-space I/O driver support for HID subsystem | ||
6 | * Copyright (c) 2012 David Herrmann | ||
7 | */ | ||
8 | |||
9 | /* | ||
10 | * This program is free software; you can redistribute it and/or modify it | ||
11 | * under the terms of the GNU General Public License as published by the Free | ||
12 | * Software Foundation; either version 2 of the License, or (at your option) | ||
13 | * any later version. | ||
14 | */ | ||
15 | |||
16 | /* | ||
17 | * Public header for user-space communication. We try to keep every structure | ||
18 | * aligned but to be safe we also use __attribute__((__packed__)). Therefore, | ||
19 | * the communication should be ABI compatible even between architectures. | ||
20 | */ | ||
21 | |||
22 | #include <linux/input.h> | ||
23 | #include <linux/types.h> | ||
24 | |||
25 | enum uhid_event_type { | ||
26 | UHID_CREATE, | ||
27 | UHID_DESTROY, | ||
28 | UHID_START, | ||
29 | UHID_STOP, | ||
30 | UHID_OPEN, | ||
31 | UHID_CLOSE, | ||
32 | UHID_OUTPUT, | ||
33 | UHID_OUTPUT_EV, | ||
34 | UHID_INPUT, | ||
35 | UHID_FEATURE, | ||
36 | UHID_FEATURE_ANSWER, | ||
37 | }; | ||
38 | |||
39 | struct uhid_create_req { | ||
40 | __u8 name[128]; | ||
41 | __u8 phys[64]; | ||
42 | __u8 uniq[64]; | ||
43 | __u8 __user *rd_data; | ||
44 | __u16 rd_size; | ||
45 | |||
46 | __u16 bus; | ||
47 | __u32 vendor; | ||
48 | __u32 product; | ||
49 | __u32 version; | ||
50 | __u32 country; | ||
51 | } __attribute__((__packed__)); | ||
52 | |||
53 | #define UHID_DATA_MAX 4096 | ||
54 | |||
55 | enum uhid_report_type { | ||
56 | UHID_FEATURE_REPORT, | ||
57 | UHID_OUTPUT_REPORT, | ||
58 | UHID_INPUT_REPORT, | ||
59 | }; | ||
60 | |||
61 | struct uhid_input_req { | ||
62 | __u8 data[UHID_DATA_MAX]; | ||
63 | __u16 size; | ||
64 | } __attribute__((__packed__)); | ||
65 | |||
66 | struct uhid_output_req { | ||
67 | __u8 data[UHID_DATA_MAX]; | ||
68 | __u16 size; | ||
69 | __u8 rtype; | ||
70 | } __attribute__((__packed__)); | ||
71 | |||
72 | struct uhid_output_ev_req { | ||
73 | __u16 type; | ||
74 | __u16 code; | ||
75 | __s32 value; | ||
76 | } __attribute__((__packed__)); | ||
77 | |||
78 | struct uhid_feature_req { | ||
79 | __u32 id; | ||
80 | __u8 rnum; | ||
81 | __u8 rtype; | ||
82 | } __attribute__((__packed__)); | ||
83 | |||
84 | struct uhid_feature_answer_req { | ||
85 | __u32 id; | ||
86 | __u16 err; | ||
87 | __u16 size; | ||
88 | __u8 data[UHID_DATA_MAX]; | ||
89 | }; | ||
90 | |||
91 | struct uhid_event { | ||
92 | __u32 type; | ||
93 | |||
94 | union { | ||
95 | struct uhid_create_req create; | ||
96 | struct uhid_input_req input; | ||
97 | struct uhid_output_req output; | ||
98 | struct uhid_output_ev_req output_ev; | ||
99 | struct uhid_feature_req feature; | ||
100 | struct uhid_feature_answer_req feature_answer; | ||
101 | } u; | ||
102 | } __attribute__((__packed__)); | ||
103 | |||
104 | #endif /* __UHID_H_ */ | ||
diff --git a/include/linux/usb.h b/include/linux/usb.h index dea39dc551d4..30d1ae38eab1 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
@@ -77,14 +77,15 @@ struct usb_host_endpoint { | |||
77 | struct usb_host_interface { | 77 | struct usb_host_interface { |
78 | struct usb_interface_descriptor desc; | 78 | struct usb_interface_descriptor desc; |
79 | 79 | ||
80 | int extralen; | ||
81 | unsigned char *extra; /* Extra descriptors */ | ||
82 | |||
80 | /* array of desc.bNumEndpoint endpoints associated with this | 83 | /* array of desc.bNumEndpoint endpoints associated with this |
81 | * interface setting. these will be in no particular order. | 84 | * interface setting. these will be in no particular order. |
82 | */ | 85 | */ |
83 | struct usb_host_endpoint *endpoint; | 86 | struct usb_host_endpoint *endpoint; |
84 | 87 | ||
85 | char *string; /* iInterface string, if present */ | 88 | char *string; /* iInterface string, if present */ |
86 | unsigned char *extra; /* Extra descriptors */ | ||
87 | int extralen; | ||
88 | }; | 89 | }; |
89 | 90 | ||
90 | enum usb_interface_condition { | 91 | enum usb_interface_condition { |
@@ -331,6 +332,11 @@ struct usb_bus { | |||
331 | u8 otg_port; /* 0, or number of OTG/HNP port */ | 332 | u8 otg_port; /* 0, or number of OTG/HNP port */ |
332 | unsigned is_b_host:1; /* true during some HNP roleswitches */ | 333 | unsigned is_b_host:1; /* true during some HNP roleswitches */ |
333 | unsigned b_hnp_enable:1; /* OTG: did A-Host enable HNP? */ | 334 | unsigned b_hnp_enable:1; /* OTG: did A-Host enable HNP? */ |
335 | unsigned no_stop_on_short:1; /* | ||
336 | * Quirk: some controllers don't stop | ||
337 | * the ep queue on a short transfer | ||
338 | * with the URB_SHORT_NOT_OK flag set. | ||
339 | */ | ||
334 | unsigned sg_tablesize; /* 0 or largest number of sg list entries */ | 340 | unsigned sg_tablesize; /* 0 or largest number of sg list entries */ |
335 | 341 | ||
336 | int devnum_next; /* Next open device number in | 342 | int devnum_next; /* Next open device number in |
@@ -556,7 +562,6 @@ struct usb_device { | |||
556 | struct usb3_lpm_parameters u1_params; | 562 | struct usb3_lpm_parameters u1_params; |
557 | struct usb3_lpm_parameters u2_params; | 563 | struct usb3_lpm_parameters u2_params; |
558 | unsigned lpm_disable_count; | 564 | unsigned lpm_disable_count; |
559 | unsigned hub_initiated_lpm_disable_count; | ||
560 | }; | 565 | }; |
561 | #define to_usb_device(d) container_of(d, struct usb_device, dev) | 566 | #define to_usb_device(d) container_of(d, struct usb_device, dev) |
562 | 567 | ||
@@ -629,6 +634,17 @@ extern void usb_enable_lpm(struct usb_device *udev); | |||
629 | extern int usb_unlocked_disable_lpm(struct usb_device *udev); | 634 | extern int usb_unlocked_disable_lpm(struct usb_device *udev); |
630 | extern void usb_unlocked_enable_lpm(struct usb_device *udev); | 635 | extern void usb_unlocked_enable_lpm(struct usb_device *udev); |
631 | 636 | ||
637 | extern int usb_disable_ltm(struct usb_device *udev); | ||
638 | extern void usb_enable_ltm(struct usb_device *udev); | ||
639 | |||
640 | static inline bool usb_device_supports_ltm(struct usb_device *udev) | ||
641 | { | ||
642 | if (udev->speed != USB_SPEED_SUPER || !udev->bos || !udev->bos->ss_cap) | ||
643 | return false; | ||
644 | return udev->bos->ss_cap->bmAttributes & USB_LTM_SUPPORT; | ||
645 | } | ||
646 | |||
647 | |||
632 | /*-------------------------------------------------------------------------*/ | 648 | /*-------------------------------------------------------------------------*/ |
633 | 649 | ||
634 | /* for drivers using iso endpoints */ | 650 | /* for drivers using iso endpoints */ |
@@ -777,6 +793,22 @@ static inline int usb_make_path(struct usb_device *dev, char *buf, size_t size) | |||
777 | .bInterfaceProtocol = (pr) | 793 | .bInterfaceProtocol = (pr) |
778 | 794 | ||
779 | /** | 795 | /** |
796 | * USB_DEVICE_INTERFACE_NUMBER - describe a usb device with a specific interface number | ||
797 | * @vend: the 16 bit USB Vendor ID | ||
798 | * @prod: the 16 bit USB Product ID | ||
799 | * @num: bInterfaceNumber value | ||
800 | * | ||
801 | * This macro is used to create a struct usb_device_id that matches a | ||
802 | * specific interface number of devices. | ||
803 | */ | ||
804 | #define USB_DEVICE_INTERFACE_NUMBER(vend, prod, num) \ | ||
805 | .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \ | ||
806 | USB_DEVICE_ID_MATCH_INT_NUMBER, \ | ||
807 | .idVendor = (vend), \ | ||
808 | .idProduct = (prod), \ | ||
809 | .bInterfaceNumber = (num) | ||
810 | |||
811 | /** | ||
780 | * USB_DEVICE_INFO - macro used to describe a class of usb devices | 812 | * USB_DEVICE_INFO - macro used to describe a class of usb devices |
781 | * @cl: bDeviceClass value | 813 | * @cl: bDeviceClass value |
782 | * @sc: bDeviceSubClass value | 814 | * @sc: bDeviceSubClass value |
@@ -829,6 +861,27 @@ static inline int usb_make_path(struct usb_device *dev, char *buf, size_t size) | |||
829 | .bInterfaceSubClass = (sc), \ | 861 | .bInterfaceSubClass = (sc), \ |
830 | .bInterfaceProtocol = (pr) | 862 | .bInterfaceProtocol = (pr) |
831 | 863 | ||
864 | /** | ||
865 | * USB_VENDOR_AND_INTERFACE_INFO - describe a specific usb vendor with a class of usb interfaces | ||
866 | * @vend: the 16 bit USB Vendor ID | ||
867 | * @cl: bInterfaceClass value | ||
868 | * @sc: bInterfaceSubClass value | ||
869 | * @pr: bInterfaceProtocol value | ||
870 | * | ||
871 | * This macro is used to create a struct usb_device_id that matches a | ||
872 | * specific vendor with a specific class of interfaces. | ||
873 | * | ||
874 | * This is especially useful when explicitly matching devices that have | ||
875 | * vendor specific bDeviceClass values, but standards-compliant interfaces. | ||
876 | */ | ||
877 | #define USB_VENDOR_AND_INTERFACE_INFO(vend, cl, sc, pr) \ | ||
878 | .match_flags = USB_DEVICE_ID_MATCH_INT_INFO \ | ||
879 | | USB_DEVICE_ID_MATCH_VENDOR, \ | ||
880 | .idVendor = (vend), \ | ||
881 | .bInterfaceClass = (cl), \ | ||
882 | .bInterfaceSubClass = (sc), \ | ||
883 | .bInterfaceProtocol = (pr) | ||
884 | |||
832 | /* ----------------------------------------------------------------------- */ | 885 | /* ----------------------------------------------------------------------- */ |
833 | 886 | ||
834 | /* Stuff for dynamic usb ids */ | 887 | /* Stuff for dynamic usb ids */ |
diff --git a/include/linux/usb/chipidea.h b/include/linux/usb/chipidea.h index edb90d6cfd12..544825dde823 100644 --- a/include/linux/usb/chipidea.h +++ b/include/linux/usb/chipidea.h | |||
@@ -5,12 +5,15 @@ | |||
5 | #ifndef __LINUX_USB_CHIPIDEA_H | 5 | #ifndef __LINUX_USB_CHIPIDEA_H |
6 | #define __LINUX_USB_CHIPIDEA_H | 6 | #define __LINUX_USB_CHIPIDEA_H |
7 | 7 | ||
8 | #include <linux/usb/otg.h> | ||
9 | |||
8 | struct ci13xxx; | 10 | struct ci13xxx; |
9 | struct ci13xxx_udc_driver { | 11 | struct ci13xxx_platform_data { |
10 | const char *name; | 12 | const char *name; |
11 | /* offset of the capability registers */ | 13 | /* offset of the capability registers */ |
12 | uintptr_t capoffset; | 14 | uintptr_t capoffset; |
13 | unsigned power_budget; | 15 | unsigned power_budget; |
16 | struct usb_phy *phy; | ||
14 | unsigned long flags; | 17 | unsigned long flags; |
15 | #define CI13XXX_REGS_SHARED BIT(0) | 18 | #define CI13XXX_REGS_SHARED BIT(0) |
16 | #define CI13XXX_REQUIRE_TRANSCEIVER BIT(1) | 19 | #define CI13XXX_REQUIRE_TRANSCEIVER BIT(1) |
@@ -19,10 +22,17 @@ struct ci13xxx_udc_driver { | |||
19 | 22 | ||
20 | #define CI13XXX_CONTROLLER_RESET_EVENT 0 | 23 | #define CI13XXX_CONTROLLER_RESET_EVENT 0 |
21 | #define CI13XXX_CONTROLLER_STOPPED_EVENT 1 | 24 | #define CI13XXX_CONTROLLER_STOPPED_EVENT 1 |
22 | void (*notify_event) (struct ci13xxx *udc, unsigned event); | 25 | void (*notify_event) (struct ci13xxx *ci, unsigned event); |
23 | }; | 26 | }; |
24 | 27 | ||
25 | /* Default offset of capability registers */ | 28 | /* Default offset of capability registers */ |
26 | #define DEF_CAPOFFSET 0x100 | 29 | #define DEF_CAPOFFSET 0x100 |
27 | 30 | ||
31 | /* Add ci13xxx device */ | ||
32 | struct platform_device *ci13xxx_add_device(struct device *dev, | ||
33 | struct resource *res, int nres, | ||
34 | struct ci13xxx_platform_data *platdata); | ||
35 | /* Remove ci13xxx device */ | ||
36 | void ci13xxx_remove_device(struct platform_device *pdev); | ||
37 | |||
28 | #endif | 38 | #endif |
diff --git a/include/linux/usb/ehci_def.h b/include/linux/usb/ehci_def.h index 7cc95ee3606b..de4b9ed5d5dd 100644 --- a/include/linux/usb/ehci_def.h +++ b/include/linux/usb/ehci_def.h | |||
@@ -111,7 +111,13 @@ struct ehci_regs { | |||
111 | /* ASYNCLISTADDR: offset 0x18 */ | 111 | /* ASYNCLISTADDR: offset 0x18 */ |
112 | u32 async_next; /* address of next async queue head */ | 112 | u32 async_next; /* address of next async queue head */ |
113 | 113 | ||
114 | u32 reserved[9]; | 114 | u32 reserved1[2]; |
115 | |||
116 | /* TXFILLTUNING: offset 0x24 */ | ||
117 | u32 txfill_tuning; /* TX FIFO Tuning register */ | ||
118 | #define TXFIFO_DEFAULT (8<<16) /* FIFO burst threshold 8 */ | ||
119 | |||
120 | u32 reserved2[6]; | ||
115 | 121 | ||
116 | /* CONFIGFLAG: offset 0x40 */ | 122 | /* CONFIGFLAG: offset 0x40 */ |
117 | u32 configured_flag; | 123 | u32 configured_flag; |
@@ -155,26 +161,34 @@ struct ehci_regs { | |||
155 | #define PORT_CSC (1<<1) /* connect status change */ | 161 | #define PORT_CSC (1<<1) /* connect status change */ |
156 | #define PORT_CONNECT (1<<0) /* device connected */ | 162 | #define PORT_CONNECT (1<<0) /* device connected */ |
157 | #define PORT_RWC_BITS (PORT_CSC | PORT_PEC | PORT_OCC) | 163 | #define PORT_RWC_BITS (PORT_CSC | PORT_PEC | PORT_OCC) |
158 | }; | ||
159 | 164 | ||
160 | #define USBMODE 0x68 /* USB Device mode */ | 165 | u32 reserved3[9]; |
166 | |||
167 | /* USBMODE: offset 0x68 */ | ||
168 | u32 usbmode; /* USB Device mode */ | ||
161 | #define USBMODE_SDIS (1<<3) /* Stream disable */ | 169 | #define USBMODE_SDIS (1<<3) /* Stream disable */ |
162 | #define USBMODE_BE (1<<2) /* BE/LE endianness select */ | 170 | #define USBMODE_BE (1<<2) /* BE/LE endianness select */ |
163 | #define USBMODE_CM_HC (3<<0) /* host controller mode */ | 171 | #define USBMODE_CM_HC (3<<0) /* host controller mode */ |
164 | #define USBMODE_CM_IDLE (0<<0) /* idle state */ | 172 | #define USBMODE_CM_IDLE (0<<0) /* idle state */ |
165 | 173 | ||
174 | u32 reserved4[7]; | ||
175 | |||
166 | /* Moorestown has some non-standard registers, partially due to the fact that | 176 | /* Moorestown has some non-standard registers, partially due to the fact that |
167 | * its EHCI controller has both TT and LPM support. HOSTPCx are extensions to | 177 | * its EHCI controller has both TT and LPM support. HOSTPCx are extensions to |
168 | * PORTSCx | 178 | * PORTSCx |
169 | */ | 179 | */ |
170 | #define HOSTPC0 0x84 /* HOSTPC extension */ | 180 | /* HOSTPC: offset 0x84 */ |
181 | u32 hostpc[0]; /* HOSTPC extension */ | ||
171 | #define HOSTPC_PHCD (1<<22) /* Phy clock disable */ | 182 | #define HOSTPC_PHCD (1<<22) /* Phy clock disable */ |
172 | #define HOSTPC_PSPD (3<<25) /* Port speed detection */ | 183 | #define HOSTPC_PSPD (3<<25) /* Port speed detection */ |
173 | #define USBMODE_EX 0xc8 /* USB Device mode extension */ | 184 | |
185 | u32 reserved5[17]; | ||
186 | |||
187 | /* USBMODE_EX: offset 0xc8 */ | ||
188 | u32 usbmode_ex; /* USB Device mode extension */ | ||
174 | #define USBMODE_EX_VBPS (1<<5) /* VBus Power Select On */ | 189 | #define USBMODE_EX_VBPS (1<<5) /* VBus Power Select On */ |
175 | #define USBMODE_EX_HC (3<<0) /* host controller mode */ | 190 | #define USBMODE_EX_HC (3<<0) /* host controller mode */ |
176 | #define TXFILLTUNING 0x24 /* TX FIFO Tuning register */ | 191 | }; |
177 | #define TXFIFO_DEFAULT (8<<16) /* FIFO burst threshold 8 */ | ||
178 | 192 | ||
179 | /* Appendix C, Debug port ... intended for use with special "debug devices" | 193 | /* Appendix C, Debug port ... intended for use with special "debug devices" |
180 | * that can help if there's no serial console. (nonstandard enumeration.) | 194 | * that can help if there's no serial console. (nonstandard enumeration.) |
diff --git a/include/linux/usb/hcd.h b/include/linux/usb/hcd.h index 49b3ac29726a..c5fdb148fc02 100644 --- a/include/linux/usb/hcd.h +++ b/include/linux/usb/hcd.h | |||
@@ -93,6 +93,12 @@ struct usb_hcd { | |||
93 | */ | 93 | */ |
94 | const struct hc_driver *driver; /* hw-specific hooks */ | 94 | const struct hc_driver *driver; /* hw-specific hooks */ |
95 | 95 | ||
96 | /* | ||
97 | * OTG and some Host controllers need software interaction with phys; | ||
98 | * other external phys should be software-transparent | ||
99 | */ | ||
100 | struct usb_phy *phy; | ||
101 | |||
96 | /* Flags that need to be manipulated atomically because they can | 102 | /* Flags that need to be manipulated atomically because they can |
97 | * change while the host controller is running. Always use | 103 | * change while the host controller is running. Always use |
98 | * set_bit() or clear_bit() to change their values. | 104 | * set_bit() or clear_bit() to change their values. |
diff --git a/include/linux/usb/musb-omap.h b/include/linux/usb/musb-omap.h new file mode 100644 index 000000000000..7774c5986f07 --- /dev/null +++ b/include/linux/usb/musb-omap.h | |||
@@ -0,0 +1,30 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2011-2012 by Texas Instruments | ||
3 | * | ||
4 | * The Inventra Controller Driver for Linux is free software; you | ||
5 | * can redistribute it and/or modify it under the terms of the GNU | ||
6 | * General Public License version 2 as published by the Free Software | ||
7 | * Foundation. | ||
8 | */ | ||
9 | |||
10 | #ifndef __MUSB_OMAP_H__ | ||
11 | #define __MUSB_OMAP_H__ | ||
12 | |||
13 | enum omap_musb_vbus_id_status { | ||
14 | OMAP_MUSB_UNKNOWN = 0, | ||
15 | OMAP_MUSB_ID_GROUND, | ||
16 | OMAP_MUSB_ID_FLOAT, | ||
17 | OMAP_MUSB_VBUS_VALID, | ||
18 | OMAP_MUSB_VBUS_OFF, | ||
19 | }; | ||
20 | |||
21 | #if (defined(CONFIG_USB_MUSB_OMAP2PLUS) || \ | ||
22 | defined(CONFIG_USB_MUSB_OMAP2PLUS_MODULE)) | ||
23 | void omap_musb_mailbox(enum omap_musb_vbus_id_status status); | ||
24 | #else | ||
25 | static inline void omap_musb_mailbox(enum omap_musb_vbus_id_status status) | ||
26 | { | ||
27 | } | ||
28 | #endif | ||
29 | |||
30 | #endif /* __MUSB_OMAP_H__ */ | ||
diff --git a/include/linux/usb/otg.h b/include/linux/usb/otg.h index 38ab3f46346f..45824be0a2f9 100644 --- a/include/linux/usb/otg.h +++ b/include/linux/usb/otg.h | |||
@@ -43,6 +43,13 @@ enum usb_phy_events { | |||
43 | USB_EVENT_ENUMERATED, /* gadget driver enumerated */ | 43 | USB_EVENT_ENUMERATED, /* gadget driver enumerated */ |
44 | }; | 44 | }; |
45 | 45 | ||
46 | /* associate a type with PHY */ | ||
47 | enum usb_phy_type { | ||
48 | USB_PHY_TYPE_UNDEFINED, | ||
49 | USB_PHY_TYPE_USB2, | ||
50 | USB_PHY_TYPE_USB3, | ||
51 | }; | ||
52 | |||
46 | struct usb_phy; | 53 | struct usb_phy; |
47 | 54 | ||
48 | /* for transceivers connected thru an ULPI interface, the user must | 55 | /* for transceivers connected thru an ULPI interface, the user must |
@@ -89,6 +96,7 @@ struct usb_phy { | |||
89 | const char *label; | 96 | const char *label; |
90 | unsigned int flags; | 97 | unsigned int flags; |
91 | 98 | ||
99 | enum usb_phy_type type; | ||
92 | enum usb_otg_state state; | 100 | enum usb_otg_state state; |
93 | enum usb_phy_events last_event; | 101 | enum usb_phy_events last_event; |
94 | 102 | ||
@@ -105,6 +113,9 @@ struct usb_phy { | |||
105 | u16 port_status; | 113 | u16 port_status; |
106 | u16 port_change; | 114 | u16 port_change; |
107 | 115 | ||
116 | /* to support controllers that have multiple transceivers */ | ||
117 | struct list_head head; | ||
118 | |||
108 | /* initialize/shutdown the OTG controller */ | 119 | /* initialize/shutdown the OTG controller */ |
109 | int (*init)(struct usb_phy *x); | 120 | int (*init)(struct usb_phy *x); |
110 | void (*shutdown)(struct usb_phy *x); | 121 | void (*shutdown)(struct usb_phy *x); |
@@ -117,11 +128,15 @@ struct usb_phy { | |||
117 | int (*set_suspend)(struct usb_phy *x, | 128 | int (*set_suspend)(struct usb_phy *x, |
118 | int suspend); | 129 | int suspend); |
119 | 130 | ||
131 | /* notify phy connect status change */ | ||
132 | int (*notify_connect)(struct usb_phy *x, int port); | ||
133 | int (*notify_disconnect)(struct usb_phy *x, int port); | ||
120 | }; | 134 | }; |
121 | 135 | ||
122 | 136 | ||
123 | /* for board-specific init logic */ | 137 | /* for board-specific init logic */ |
124 | extern int usb_set_transceiver(struct usb_phy *); | 138 | extern int usb_add_phy(struct usb_phy *, enum usb_phy_type type); |
139 | extern void usb_remove_phy(struct usb_phy *); | ||
125 | 140 | ||
126 | #if defined(CONFIG_NOP_USB_XCEIV) || (defined(CONFIG_NOP_USB_XCEIV_MODULE) && defined(MODULE)) | 141 | #if defined(CONFIG_NOP_USB_XCEIV) || (defined(CONFIG_NOP_USB_XCEIV_MODULE) && defined(MODULE)) |
127 | /* sometimes transceivers are accessed only through e.g. ULPI */ | 142 | /* sometimes transceivers are accessed only through e.g. ULPI */ |
@@ -172,16 +187,29 @@ usb_phy_shutdown(struct usb_phy *x) | |||
172 | 187 | ||
173 | /* for usb host and peripheral controller drivers */ | 188 | /* for usb host and peripheral controller drivers */ |
174 | #ifdef CONFIG_USB_OTG_UTILS | 189 | #ifdef CONFIG_USB_OTG_UTILS |
175 | extern struct usb_phy *usb_get_transceiver(void); | 190 | extern struct usb_phy *usb_get_phy(enum usb_phy_type type); |
176 | extern void usb_put_transceiver(struct usb_phy *); | 191 | extern struct usb_phy *devm_usb_get_phy(struct device *dev, |
192 | enum usb_phy_type type); | ||
193 | extern void usb_put_phy(struct usb_phy *); | ||
194 | extern void devm_usb_put_phy(struct device *dev, struct usb_phy *x); | ||
177 | extern const char *otg_state_string(enum usb_otg_state state); | 195 | extern const char *otg_state_string(enum usb_otg_state state); |
178 | #else | 196 | #else |
179 | static inline struct usb_phy *usb_get_transceiver(void) | 197 | static inline struct usb_phy *usb_get_phy(enum usb_phy_type type) |
198 | { | ||
199 | return NULL; | ||
200 | } | ||
201 | |||
202 | static inline struct usb_phy *devm_usb_get_phy(struct device *dev, | ||
203 | enum usb_phy_type type) | ||
180 | { | 204 | { |
181 | return NULL; | 205 | return NULL; |
182 | } | 206 | } |
183 | 207 | ||
184 | static inline void usb_put_transceiver(struct usb_phy *x) | 208 | static inline void usb_put_phy(struct usb_phy *x) |
209 | { | ||
210 | } | ||
211 | |||
212 | static inline void devm_usb_put_phy(struct device *dev, struct usb_phy *x) | ||
185 | { | 213 | { |
186 | } | 214 | } |
187 | 215 | ||
@@ -252,6 +280,24 @@ usb_phy_set_suspend(struct usb_phy *x, int suspend) | |||
252 | } | 280 | } |
253 | 281 | ||
254 | static inline int | 282 | static inline int |
283 | usb_phy_notify_connect(struct usb_phy *x, int port) | ||
284 | { | ||
285 | if (x->notify_connect) | ||
286 | return x->notify_connect(x, port); | ||
287 | else | ||
288 | return 0; | ||
289 | } | ||
290 | |||
291 | static inline int | ||
292 | usb_phy_notify_disconnect(struct usb_phy *x, int port) | ||
293 | { | ||
294 | if (x->notify_disconnect) | ||
295 | return x->notify_disconnect(x, port); | ||
296 | else | ||
297 | return 0; | ||
298 | } | ||
299 | |||
300 | static inline int | ||
255 | otg_start_srp(struct usb_otg *otg) | 301 | otg_start_srp(struct usb_otg *otg) |
256 | { | 302 | { |
257 | if (otg && otg->start_srp) | 303 | if (otg && otg->start_srp) |
@@ -276,4 +322,15 @@ usb_unregister_notifier(struct usb_phy *x, struct notifier_block *nb) | |||
276 | /* for OTG controller drivers (and maybe other stuff) */ | 322 | /* for OTG controller drivers (and maybe other stuff) */ |
277 | extern int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num); | 323 | extern int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num); |
278 | 324 | ||
325 | static inline const char *usb_phy_type_string(enum usb_phy_type type) | ||
326 | { | ||
327 | switch (type) { | ||
328 | case USB_PHY_TYPE_USB2: | ||
329 | return "USB2 PHY"; | ||
330 | case USB_PHY_TYPE_USB3: | ||
331 | return "USB3 PHY"; | ||
332 | default: | ||
333 | return "UNKNOWN PHY TYPE"; | ||
334 | } | ||
335 | } | ||
279 | #endif /* __LINUX_USB_OTG_H */ | 336 | #endif /* __LINUX_USB_OTG_H */ |
diff --git a/include/linux/usb/renesas_usbhs.h b/include/linux/usb/renesas_usbhs.h index 547e59cc00ea..c5d36c65c33b 100644 --- a/include/linux/usb/renesas_usbhs.h +++ b/include/linux/usb/renesas_usbhs.h | |||
@@ -132,6 +132,14 @@ struct renesas_usbhs_driver_param { | |||
132 | * option: | 132 | * option: |
133 | * | 133 | * |
134 | * dma id for dmaengine | 134 | * dma id for dmaengine |
135 | * The data transfer direction on D0FIFO/D1FIFO should be | ||
136 | * fixed for keeping consistency. | ||
137 | * So, the platform id settings will be.. | ||
138 | * .d0_tx_id = xx_TX, | ||
139 | * .d1_rx_id = xx_RX, | ||
140 | * or | ||
141 | * .d1_tx_id = xx_TX, | ||
142 | * .d0_rx_id = xx_RX, | ||
135 | */ | 143 | */ |
136 | int d0_tx_id; | 144 | int d0_tx_id; |
137 | int d0_rx_id; | 145 | int d0_rx_id; |
diff --git a/include/linux/usb/tilegx.h b/include/linux/usb/tilegx.h new file mode 100644 index 000000000000..2d65e3435680 --- /dev/null +++ b/include/linux/usb/tilegx.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /* | ||
2 | * Copyright 2012 Tilera Corporation. All Rights Reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation, version 2. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, but | ||
9 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or | ||
11 | * NON INFRINGEMENT. See the GNU General Public License for | ||
12 | * more details. | ||
13 | * | ||
14 | * Structure to contain platform-specific data related to Tile-Gx USB | ||
15 | * controllers. | ||
16 | */ | ||
17 | |||
18 | #ifndef _LINUX_USB_TILEGX_H | ||
19 | #define _LINUX_USB_TILEGX_H | ||
20 | |||
21 | #include <gxio/usb_host.h> | ||
22 | |||
23 | struct tilegx_usb_platform_data { | ||
24 | /* GXIO device index. */ | ||
25 | int dev_index; | ||
26 | |||
27 | /* GXIO device context. */ | ||
28 | gxio_usb_host_context_t usb_ctx; | ||
29 | |||
30 | /* Device IRQ. */ | ||
31 | unsigned int irq; | ||
32 | }; | ||
33 | |||
34 | #endif /* _LINUX_USB_TILEGX_H */ | ||
diff --git a/include/linux/usb/uas.h b/include/linux/usb/uas.h index 9a988e413694..5499ab5c94bd 100644 --- a/include/linux/usb/uas.h +++ b/include/linux/usb/uas.h | |||
@@ -20,6 +20,28 @@ enum { | |||
20 | IU_ID_WRITE_READY = 0x07, | 20 | IU_ID_WRITE_READY = 0x07, |
21 | }; | 21 | }; |
22 | 22 | ||
23 | enum { | ||
24 | TMF_ABORT_TASK = 0x01, | ||
25 | TMF_ABORT_TASK_SET = 0x02, | ||
26 | TMF_CLEAR_TASK_SET = 0x04, | ||
27 | TMF_LOGICAL_UNIT_RESET = 0x08, | ||
28 | TMF_I_T_NEXUS_RESET = 0x10, | ||
29 | TMF_CLEAR_ACA = 0x40, | ||
30 | TMF_QUERY_TASK = 0x80, | ||
31 | TMF_QUERY_TASK_SET = 0x81, | ||
32 | TMF_QUERY_ASYNC_EVENT = 0x82, | ||
33 | }; | ||
34 | |||
35 | enum { | ||
36 | RC_TMF_COMPLETE = 0x00, | ||
37 | RC_INVALID_INFO_UNIT = 0x02, | ||
38 | RC_TMF_NOT_SUPPORTED = 0x04, | ||
39 | RC_TMF_FAILED = 0x05, | ||
40 | RC_TMF_SUCCEEDED = 0x08, | ||
41 | RC_INCORRECT_LUN = 0x09, | ||
42 | RC_OVERLAPPED_TAG = 0x0a, | ||
43 | }; | ||
44 | |||
23 | struct command_iu { | 45 | struct command_iu { |
24 | __u8 iu_id; | 46 | __u8 iu_id; |
25 | __u8 rsvd1; | 47 | __u8 rsvd1; |
@@ -32,6 +54,16 @@ struct command_iu { | |||
32 | __u8 cdb[16]; /* XXX: Overflow-checking tools may misunderstand */ | 54 | __u8 cdb[16]; /* XXX: Overflow-checking tools may misunderstand */ |
33 | }; | 55 | }; |
34 | 56 | ||
57 | struct task_mgmt_iu { | ||
58 | __u8 iu_id; | ||
59 | __u8 rsvd1; | ||
60 | __be16 tag; | ||
61 | __u8 function; | ||
62 | __u8 rsvd2; | ||
63 | __be16 task_tag; | ||
64 | struct scsi_lun lun; | ||
65 | }; | ||
66 | |||
35 | /* | 67 | /* |
36 | * Also used for the Read Ready and Write Ready IUs since they have the | 68 | * Also used for the Read Ready and Write Ready IUs since they have the |
37 | * same first four bytes | 69 | * same first four bytes |
@@ -47,6 +79,14 @@ struct sense_iu { | |||
47 | __u8 sense[SCSI_SENSE_BUFFERSIZE]; | 79 | __u8 sense[SCSI_SENSE_BUFFERSIZE]; |
48 | }; | 80 | }; |
49 | 81 | ||
82 | struct response_ui { | ||
83 | __u8 iu_id; | ||
84 | __u8 rsvd1; | ||
85 | __be16 tag; | ||
86 | __be16 add_response_info; | ||
87 | __u8 response_code; | ||
88 | }; | ||
89 | |||
50 | struct usb_pipe_usage_descriptor { | 90 | struct usb_pipe_usage_descriptor { |
51 | __u8 bLength; | 91 | __u8 bLength; |
52 | __u8 bDescriptorType; | 92 | __u8 bDescriptorType; |
diff --git a/include/linux/usb/usbnet.h b/include/linux/usb/usbnet.h index 76f439647c4b..f87cf622317f 100644 --- a/include/linux/usb/usbnet.h +++ b/include/linux/usb/usbnet.h | |||
@@ -66,9 +66,8 @@ struct usbnet { | |||
66 | # define EVENT_STS_SPLIT 3 | 66 | # define EVENT_STS_SPLIT 3 |
67 | # define EVENT_LINK_RESET 4 | 67 | # define EVENT_LINK_RESET 4 |
68 | # define EVENT_RX_PAUSED 5 | 68 | # define EVENT_RX_PAUSED 5 |
69 | # define EVENT_DEV_WAKING 6 | 69 | # define EVENT_DEV_ASLEEP 6 |
70 | # define EVENT_DEV_ASLEEP 7 | 70 | # define EVENT_DEV_OPEN 7 |
71 | # define EVENT_DEV_OPEN 8 | ||
72 | }; | 71 | }; |
73 | 72 | ||
74 | static inline struct usb_driver *driver_of(struct usb_interface *intf) | 73 | static inline struct usb_driver *driver_of(struct usb_interface *intf) |
diff --git a/include/linux/usb_usual.h b/include/linux/usb_usual.h index 17df3600bcef..e84e769aaddc 100644 --- a/include/linux/usb_usual.h +++ b/include/linux/usb_usual.h | |||
@@ -64,7 +64,9 @@ | |||
64 | US_FLAG(NO_READ_CAPACITY_16, 0x00080000) \ | 64 | US_FLAG(NO_READ_CAPACITY_16, 0x00080000) \ |
65 | /* cannot handle READ_CAPACITY_16 */ \ | 65 | /* cannot handle READ_CAPACITY_16 */ \ |
66 | US_FLAG(INITIAL_READ10, 0x00100000) \ | 66 | US_FLAG(INITIAL_READ10, 0x00100000) \ |
67 | /* Initial READ(10) (and others) must be retried */ | 67 | /* Initial READ(10) (and others) must be retried */ \ |
68 | US_FLAG(WRITE_CACHE, 0x00200000) \ | ||
69 | /* Write Cache status is not available */ | ||
68 | 70 | ||
69 | #define US_FLAG(name, value) US_FL_##name = value , | 71 | #define US_FLAG(name, value) US_FL_##name = value , |
70 | enum { US_DO_ALL_FLAGS }; | 72 | enum { US_DO_ALL_FLAGS }; |
diff --git a/include/linux/usbdevice_fs.h b/include/linux/usbdevice_fs.h index 15591d2ea400..3b74666be027 100644 --- a/include/linux/usbdevice_fs.h +++ b/include/linux/usbdevice_fs.h | |||
@@ -125,6 +125,12 @@ struct usbdevfs_hub_portinfo { | |||
125 | char port [127]; /* e.g. port 3 connects to device 27 */ | 125 | char port [127]; /* e.g. port 3 connects to device 27 */ |
126 | }; | 126 | }; |
127 | 127 | ||
128 | /* Device capability flags */ | ||
129 | #define USBDEVFS_CAP_ZERO_PACKET 0x01 | ||
130 | #define USBDEVFS_CAP_BULK_CONTINUATION 0x02 | ||
131 | #define USBDEVFS_CAP_NO_PACKET_SIZE_LIM 0x04 | ||
132 | #define USBDEVFS_CAP_BULK_SCATTER_GATHER 0x08 | ||
133 | |||
128 | #ifdef __KERNEL__ | 134 | #ifdef __KERNEL__ |
129 | #ifdef CONFIG_COMPAT | 135 | #ifdef CONFIG_COMPAT |
130 | #include <linux/compat.h> | 136 | #include <linux/compat.h> |
@@ -204,4 +210,6 @@ struct usbdevfs_ioctl32 { | |||
204 | #define USBDEVFS_CONNECT _IO('U', 23) | 210 | #define USBDEVFS_CONNECT _IO('U', 23) |
205 | #define USBDEVFS_CLAIM_PORT _IOR('U', 24, unsigned int) | 211 | #define USBDEVFS_CLAIM_PORT _IOR('U', 24, unsigned int) |
206 | #define USBDEVFS_RELEASE_PORT _IOR('U', 25, unsigned int) | 212 | #define USBDEVFS_RELEASE_PORT _IOR('U', 25, unsigned int) |
213 | #define USBDEVFS_GET_CAPABILITIES _IOR('U', 26, __u32) | ||
214 | |||
207 | #endif /* _LINUX_USBDEVICE_FS_H */ | 215 | #endif /* _LINUX_USBDEVICE_FS_H */ |
diff --git a/include/linux/uvcvideo.h b/include/linux/uvcvideo.h index f46a53f060d7..3b081862b9e8 100644 --- a/include/linux/uvcvideo.h +++ b/include/linux/uvcvideo.h | |||
@@ -58,7 +58,8 @@ struct uvc_xu_control_mapping { | |||
58 | struct uvc_xu_control_query { | 58 | struct uvc_xu_control_query { |
59 | __u8 unit; | 59 | __u8 unit; |
60 | __u8 selector; | 60 | __u8 selector; |
61 | __u8 query; | 61 | __u8 query; /* Video Class-Specific Request Code, */ |
62 | /* defined in linux/usb/video.h A.8. */ | ||
62 | __u16 size; | 63 | __u16 size; |
63 | __u8 __user *data; | 64 | __u8 __user *data; |
64 | }; | 65 | }; |
diff --git a/include/linux/v4l2-common.h b/include/linux/v4l2-common.h new file mode 100644 index 000000000000..0fa8b64c3cdb --- /dev/null +++ b/include/linux/v4l2-common.h | |||
@@ -0,0 +1,71 @@ | |||
1 | /* | ||
2 | * include/linux/v4l2-common.h | ||
3 | * | ||
4 | * Common V4L2 and V4L2 subdev definitions. | ||
5 | * | ||
6 | * Users are advised to #include this file either through videodev2.h | ||
7 | * (V4L2) or through v4l2-subdev.h (V4L2 subdev) rather than to refer | ||
8 | * to this file directly. | ||
9 | * | ||
10 | * Copyright (C) 2012 Nokia Corporation | ||
11 | * Contact: Sakari Ailus <sakari.ailus@iki.fi> | ||
12 | * | ||
13 | * This program is free software; you can redistribute it and/or | ||
14 | * modify it under the terms of the GNU General Public License | ||
15 | * version 2 as published by the Free Software Foundation. | ||
16 | * | ||
17 | * This program is distributed in the hope that it will be useful, but | ||
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
20 | * General Public License for more details. | ||
21 | * | ||
22 | * You should have received a copy of the GNU General Public License | ||
23 | * along with this program; if not, write to the Free Software | ||
24 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
25 | * 02110-1301 USA | ||
26 | * | ||
27 | */ | ||
28 | |||
29 | #ifndef __V4L2_COMMON__ | ||
30 | #define __V4L2_COMMON__ | ||
31 | |||
32 | /* | ||
33 | * | ||
34 | * Selection interface definitions | ||
35 | * | ||
36 | */ | ||
37 | |||
38 | /* Current cropping area */ | ||
39 | #define V4L2_SEL_TGT_CROP 0x0000 | ||
40 | /* Default cropping area */ | ||
41 | #define V4L2_SEL_TGT_CROP_DEFAULT 0x0001 | ||
42 | /* Cropping bounds */ | ||
43 | #define V4L2_SEL_TGT_CROP_BOUNDS 0x0002 | ||
44 | /* Current composing area */ | ||
45 | #define V4L2_SEL_TGT_COMPOSE 0x0100 | ||
46 | /* Default composing area */ | ||
47 | #define V4L2_SEL_TGT_COMPOSE_DEFAULT 0x0101 | ||
48 | /* Composing bounds */ | ||
49 | #define V4L2_SEL_TGT_COMPOSE_BOUNDS 0x0102 | ||
50 | /* Current composing area plus all padding pixels */ | ||
51 | #define V4L2_SEL_TGT_COMPOSE_PADDED 0x0103 | ||
52 | |||
53 | /* Backward compatibility target definitions --- to be removed. */ | ||
54 | #define V4L2_SEL_TGT_CROP_ACTIVE V4L2_SEL_TGT_CROP | ||
55 | #define V4L2_SEL_TGT_COMPOSE_ACTIVE V4L2_SEL_TGT_COMPOSE | ||
56 | #define V4L2_SUBDEV_SEL_TGT_CROP_ACTUAL \ | ||
57 | V4L2_SEL_TGT_CROP | ||
58 | #define V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL \ | ||
59 | V4L2_SEL_TGT_COMPOSE | ||
60 | |||
61 | /* Selection flags */ | ||
62 | #define V4L2_SEL_FLAG_GE (1 << 0) | ||
63 | #define V4L2_SEL_FLAG_LE (1 << 1) | ||
64 | #define V4L2_SEL_FLAG_KEEP_CONFIG (1 << 2) | ||
65 | |||
66 | /* Backward compatibility flag definitions --- to be removed. */ | ||
67 | #define V4L2_SUBDEV_SEL_FLAG_SIZE_GE V4L2_SEL_FLAG_GE | ||
68 | #define V4L2_SUBDEV_SEL_FLAG_SIZE_LE V4L2_SEL_FLAG_LE | ||
69 | #define V4L2_SUBDEV_SEL_FLAG_KEEP_CONFIG V4L2_SEL_FLAG_KEEP_CONFIG | ||
70 | |||
71 | #endif /* __V4L2_COMMON__ */ | ||
diff --git a/include/linux/v4l2-subdev.h b/include/linux/v4l2-subdev.h index 812019ee1e06..8c57ee9872bb 100644 --- a/include/linux/v4l2-subdev.h +++ b/include/linux/v4l2-subdev.h | |||
@@ -25,6 +25,7 @@ | |||
25 | 25 | ||
26 | #include <linux/ioctl.h> | 26 | #include <linux/ioctl.h> |
27 | #include <linux/types.h> | 27 | #include <linux/types.h> |
28 | #include <linux/v4l2-common.h> | ||
28 | #include <linux/v4l2-mediabus.h> | 29 | #include <linux/v4l2-mediabus.h> |
29 | 30 | ||
30 | /** | 31 | /** |
@@ -123,27 +124,14 @@ struct v4l2_subdev_frame_interval_enum { | |||
123 | __u32 reserved[9]; | 124 | __u32 reserved[9]; |
124 | }; | 125 | }; |
125 | 126 | ||
126 | #define V4L2_SUBDEV_SEL_FLAG_SIZE_GE (1 << 0) | ||
127 | #define V4L2_SUBDEV_SEL_FLAG_SIZE_LE (1 << 1) | ||
128 | #define V4L2_SUBDEV_SEL_FLAG_KEEP_CONFIG (1 << 2) | ||
129 | |||
130 | /* active cropping area */ | ||
131 | #define V4L2_SUBDEV_SEL_TGT_CROP_ACTUAL 0x0000 | ||
132 | /* cropping bounds */ | ||
133 | #define V4L2_SUBDEV_SEL_TGT_CROP_BOUNDS 0x0002 | ||
134 | /* current composing area */ | ||
135 | #define V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL 0x0100 | ||
136 | /* composing bounds */ | ||
137 | #define V4L2_SUBDEV_SEL_TGT_COMPOSE_BOUNDS 0x0102 | ||
138 | |||
139 | |||
140 | /** | 127 | /** |
141 | * struct v4l2_subdev_selection - selection info | 128 | * struct v4l2_subdev_selection - selection info |
142 | * | 129 | * |
143 | * @which: either V4L2_SUBDEV_FORMAT_ACTIVE or V4L2_SUBDEV_FORMAT_TRY | 130 | * @which: either V4L2_SUBDEV_FORMAT_ACTIVE or V4L2_SUBDEV_FORMAT_TRY |
144 | * @pad: pad number, as reported by the media API | 131 | * @pad: pad number, as reported by the media API |
145 | * @target: selection target, used to choose one of possible rectangles | 132 | * @target: Selection target, used to choose one of possible rectangles, |
146 | * @flags: constraint flags | 133 | * defined in v4l2-common.h; V4L2_SEL_TGT_* . |
134 | * @flags: constraint flags, defined in v4l2-common.h; V4L2_SEL_FLAG_*. | ||
147 | * @r: coordinates of the selection window | 135 | * @r: coordinates of the selection window |
148 | * @reserved: for future use, set to zero for now | 136 | * @reserved: for future use, set to zero for now |
149 | * | 137 | * |
diff --git a/include/linux/vga_switcheroo.h b/include/linux/vga_switcheroo.h index d844b7790ea6..ddb419cf4530 100644 --- a/include/linux/vga_switcheroo.h +++ b/include/linux/vga_switcheroo.h | |||
@@ -7,6 +7,9 @@ | |||
7 | * vga_switcheroo.h - Support for laptop with dual GPU using one set of outputs | 7 | * vga_switcheroo.h - Support for laptop with dual GPU using one set of outputs |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #ifndef _LINUX_VGA_SWITCHEROO_H_ | ||
11 | #define _LINUX_VGA_SWITCHEROO_H_ | ||
12 | |||
10 | #include <linux/fb.h> | 13 | #include <linux/fb.h> |
11 | 14 | ||
12 | struct pci_dev; | 15 | struct pci_dev; |
@@ -73,3 +76,4 @@ static inline int vga_switcheroo_get_client_state(struct pci_dev *dev) { return | |||
73 | 76 | ||
74 | 77 | ||
75 | #endif | 78 | #endif |
79 | #endif /* _LINUX_VGA_SWITCHEROO_H_ */ | ||
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index 370d11106c11..5d78910f926c 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h | |||
@@ -64,6 +64,7 @@ | |||
64 | #include <linux/compiler.h> | 64 | #include <linux/compiler.h> |
65 | #include <linux/ioctl.h> | 65 | #include <linux/ioctl.h> |
66 | #include <linux/types.h> | 66 | #include <linux/types.h> |
67 | #include <linux/v4l2-common.h> | ||
67 | 68 | ||
68 | /* | 69 | /* |
69 | * Common stuff for both V4L1 and V4L2 | 70 | * Common stuff for both V4L1 and V4L2 |
@@ -657,7 +658,7 @@ struct v4l2_buffer { | |||
657 | struct v4l2_plane *planes; | 658 | struct v4l2_plane *planes; |
658 | } m; | 659 | } m; |
659 | __u32 length; | 660 | __u32 length; |
660 | __u32 input; | 661 | __u32 reserved2; |
661 | __u32 reserved; | 662 | __u32 reserved; |
662 | }; | 663 | }; |
663 | 664 | ||
@@ -671,7 +672,6 @@ struct v4l2_buffer { | |||
671 | /* Buffer is ready, but the data contained within is corrupted. */ | 672 | /* Buffer is ready, but the data contained within is corrupted. */ |
672 | #define V4L2_BUF_FLAG_ERROR 0x0040 | 673 | #define V4L2_BUF_FLAG_ERROR 0x0040 |
673 | #define V4L2_BUF_FLAG_TIMECODE 0x0100 /* timecode field is valid */ | 674 | #define V4L2_BUF_FLAG_TIMECODE 0x0100 /* timecode field is valid */ |
674 | #define V4L2_BUF_FLAG_INPUT 0x0200 /* input field is valid */ | ||
675 | #define V4L2_BUF_FLAG_PREPARED 0x0400 /* Buffer is prepared for queuing */ | 675 | #define V4L2_BUF_FLAG_PREPARED 0x0400 /* Buffer is prepared for queuing */ |
676 | /* Cache handling flags */ | 676 | /* Cache handling flags */ |
677 | #define V4L2_BUF_FLAG_NO_CACHE_INVALIDATE 0x0800 | 677 | #define V4L2_BUF_FLAG_NO_CACHE_INVALIDATE 0x0800 |
@@ -761,32 +761,12 @@ struct v4l2_crop { | |||
761 | struct v4l2_rect c; | 761 | struct v4l2_rect c; |
762 | }; | 762 | }; |
763 | 763 | ||
764 | /* Hints for adjustments of selection rectangle */ | ||
765 | #define V4L2_SEL_FLAG_GE 0x00000001 | ||
766 | #define V4L2_SEL_FLAG_LE 0x00000002 | ||
767 | |||
768 | /* Selection targets */ | ||
769 | |||
770 | /* Current cropping area */ | ||
771 | #define V4L2_SEL_TGT_CROP_ACTIVE 0x0000 | ||
772 | /* Default cropping area */ | ||
773 | #define V4L2_SEL_TGT_CROP_DEFAULT 0x0001 | ||
774 | /* Cropping bounds */ | ||
775 | #define V4L2_SEL_TGT_CROP_BOUNDS 0x0002 | ||
776 | /* Current composing area */ | ||
777 | #define V4L2_SEL_TGT_COMPOSE_ACTIVE 0x0100 | ||
778 | /* Default composing area */ | ||
779 | #define V4L2_SEL_TGT_COMPOSE_DEFAULT 0x0101 | ||
780 | /* Composing bounds */ | ||
781 | #define V4L2_SEL_TGT_COMPOSE_BOUNDS 0x0102 | ||
782 | /* Current composing area plus all padding pixels */ | ||
783 | #define V4L2_SEL_TGT_COMPOSE_PADDED 0x0103 | ||
784 | |||
785 | /** | 764 | /** |
786 | * struct v4l2_selection - selection info | 765 | * struct v4l2_selection - selection info |
787 | * @type: buffer type (do not use *_MPLANE types) | 766 | * @type: buffer type (do not use *_MPLANE types) |
788 | * @target: selection target, used to choose one of possible rectangles | 767 | * @target: Selection target, used to choose one of possible rectangles; |
789 | * @flags: constraints flags | 768 | * defined in v4l2-common.h; V4L2_SEL_TGT_* . |
769 | * @flags: constraints flags, defined in v4l2-common.h; V4L2_SEL_FLAG_*. | ||
790 | * @r: coordinates of selection window | 770 | * @r: coordinates of selection window |
791 | * @reserved: for future use, rounds structure size to 64 bytes, set to zero | 771 | * @reserved: for future use, rounds structure size to 64 bytes, set to zero |
792 | * | 772 | * |
@@ -2039,6 +2019,8 @@ struct v4l2_modulator { | |||
2039 | /* Flags for the 'capability' field */ | 2019 | /* Flags for the 'capability' field */ |
2040 | #define V4L2_TUNER_CAP_LOW 0x0001 | 2020 | #define V4L2_TUNER_CAP_LOW 0x0001 |
2041 | #define V4L2_TUNER_CAP_NORM 0x0002 | 2021 | #define V4L2_TUNER_CAP_NORM 0x0002 |
2022 | #define V4L2_TUNER_CAP_HWSEEK_BOUNDED 0x0004 | ||
2023 | #define V4L2_TUNER_CAP_HWSEEK_WRAP 0x0008 | ||
2042 | #define V4L2_TUNER_CAP_STEREO 0x0010 | 2024 | #define V4L2_TUNER_CAP_STEREO 0x0010 |
2043 | #define V4L2_TUNER_CAP_LANG2 0x0020 | 2025 | #define V4L2_TUNER_CAP_LANG2 0x0020 |
2044 | #define V4L2_TUNER_CAP_SAP 0x0020 | 2026 | #define V4L2_TUNER_CAP_SAP 0x0020 |
@@ -2640,9 +2622,9 @@ struct v4l2_create_buffers { | |||
2640 | 2622 | ||
2641 | /* Experimental, these three ioctls may change over the next couple of kernel | 2623 | /* Experimental, these three ioctls may change over the next couple of kernel |
2642 | versions. */ | 2624 | versions. */ |
2643 | #define VIDIOC_ENUM_DV_TIMINGS _IOWR('V', 96, struct v4l2_enum_dv_timings) | 2625 | #define VIDIOC_ENUM_DV_TIMINGS _IOWR('V', 98, struct v4l2_enum_dv_timings) |
2644 | #define VIDIOC_QUERY_DV_TIMINGS _IOR('V', 97, struct v4l2_dv_timings) | 2626 | #define VIDIOC_QUERY_DV_TIMINGS _IOR('V', 99, struct v4l2_dv_timings) |
2645 | #define VIDIOC_DV_TIMINGS_CAP _IOWR('V', 98, struct v4l2_dv_timings_cap) | 2627 | #define VIDIOC_DV_TIMINGS_CAP _IOWR('V', 100, struct v4l2_dv_timings_cap) |
2646 | 2628 | ||
2647 | /* Reminder: when adding new ioctls please add support for them to | 2629 | /* Reminder: when adding new ioctls please add support for them to |
2648 | drivers/media/video/v4l2-compat-ioctl32.c as well! */ | 2630 | drivers/media/video/v4l2-compat-ioctl32.c as well! */ |
diff --git a/include/linux/virtio.h b/include/linux/virtio.h index 8efd28ae5597..a1ba8bbd9fbe 100644 --- a/include/linux/virtio.h +++ b/include/linux/virtio.h | |||
@@ -92,6 +92,7 @@ struct virtio_driver { | |||
92 | const unsigned int *feature_table; | 92 | const unsigned int *feature_table; |
93 | unsigned int feature_table_size; | 93 | unsigned int feature_table_size; |
94 | int (*probe)(struct virtio_device *dev); | 94 | int (*probe)(struct virtio_device *dev); |
95 | void (*scan)(struct virtio_device *dev); | ||
95 | void (*remove)(struct virtio_device *dev); | 96 | void (*remove)(struct virtio_device *dev); |
96 | void (*config_changed)(struct virtio_device *dev); | 97 | void (*config_changed)(struct virtio_device *dev); |
97 | #ifdef CONFIG_PM | 98 | #ifdef CONFIG_PM |
diff --git a/include/linux/virtio_blk.h b/include/linux/virtio_blk.h index e0edb40ca7aa..6d8e61c48563 100644 --- a/include/linux/virtio_blk.h +++ b/include/linux/virtio_blk.h | |||
@@ -37,8 +37,14 @@ | |||
37 | #define VIRTIO_BLK_F_RO 5 /* Disk is read-only */ | 37 | #define VIRTIO_BLK_F_RO 5 /* Disk is read-only */ |
38 | #define VIRTIO_BLK_F_BLK_SIZE 6 /* Block size of disk is available*/ | 38 | #define VIRTIO_BLK_F_BLK_SIZE 6 /* Block size of disk is available*/ |
39 | #define VIRTIO_BLK_F_SCSI 7 /* Supports scsi command passthru */ | 39 | #define VIRTIO_BLK_F_SCSI 7 /* Supports scsi command passthru */ |
40 | #define VIRTIO_BLK_F_FLUSH 9 /* Cache flush command support */ | 40 | #define VIRTIO_BLK_F_WCE 9 /* Writeback mode enabled after reset */ |
41 | #define VIRTIO_BLK_F_TOPOLOGY 10 /* Topology information is available */ | 41 | #define VIRTIO_BLK_F_TOPOLOGY 10 /* Topology information is available */ |
42 | #define VIRTIO_BLK_F_CONFIG_WCE 11 /* Writeback mode available in config */ | ||
43 | |||
44 | #ifndef __KERNEL__ | ||
45 | /* Old (deprecated) name for VIRTIO_BLK_F_WCE. */ | ||
46 | #define VIRTIO_BLK_F_FLUSH VIRTIO_BLK_F_WCE | ||
47 | #endif | ||
42 | 48 | ||
43 | #define VIRTIO_BLK_ID_BYTES 20 /* ID string length */ | 49 | #define VIRTIO_BLK_ID_BYTES 20 /* ID string length */ |
44 | 50 | ||
@@ -69,6 +75,8 @@ struct virtio_blk_config { | |||
69 | /* optimal sustained I/O size in logical blocks. */ | 75 | /* optimal sustained I/O size in logical blocks. */ |
70 | __u32 opt_io_size; | 76 | __u32 opt_io_size; |
71 | 77 | ||
78 | /* writeback mode (if VIRTIO_BLK_F_CONFIG_WCE) */ | ||
79 | __u8 wce; | ||
72 | } __attribute__((packed)); | 80 | } __attribute__((packed)); |
73 | 81 | ||
74 | /* | 82 | /* |
diff --git a/include/linux/virtio_ids.h b/include/linux/virtio_ids.h index 7529b854b7fd..270fb22c5811 100644 --- a/include/linux/virtio_ids.h +++ b/include/linux/virtio_ids.h | |||
@@ -32,7 +32,7 @@ | |||
32 | #define VIRTIO_ID_NET 1 /* virtio net */ | 32 | #define VIRTIO_ID_NET 1 /* virtio net */ |
33 | #define VIRTIO_ID_BLOCK 2 /* virtio block */ | 33 | #define VIRTIO_ID_BLOCK 2 /* virtio block */ |
34 | #define VIRTIO_ID_CONSOLE 3 /* virtio console */ | 34 | #define VIRTIO_ID_CONSOLE 3 /* virtio console */ |
35 | #define VIRTIO_ID_RNG 4 /* virtio ring */ | 35 | #define VIRTIO_ID_RNG 4 /* virtio rng */ |
36 | #define VIRTIO_ID_BALLOON 5 /* virtio balloon */ | 36 | #define VIRTIO_ID_BALLOON 5 /* virtio balloon */ |
37 | #define VIRTIO_ID_RPMSG 7 /* virtio remote processor messaging */ | 37 | #define VIRTIO_ID_RPMSG 7 /* virtio remote processor messaging */ |
38 | #define VIRTIO_ID_SCSI 8 /* virtio scsi */ | 38 | #define VIRTIO_ID_SCSI 8 /* virtio scsi */ |
diff --git a/include/linux/virtio_scsi.h b/include/linux/virtio_scsi.h index 8ddeafdc0546..dc8d305b0e05 100644 --- a/include/linux/virtio_scsi.h +++ b/include/linux/virtio_scsi.h | |||
@@ -69,6 +69,10 @@ struct virtio_scsi_config { | |||
69 | u32 max_lun; | 69 | u32 max_lun; |
70 | } __packed; | 70 | } __packed; |
71 | 71 | ||
72 | /* Feature Bits */ | ||
73 | #define VIRTIO_SCSI_F_INOUT 0 | ||
74 | #define VIRTIO_SCSI_F_HOTPLUG 1 | ||
75 | |||
72 | /* Response codes */ | 76 | /* Response codes */ |
73 | #define VIRTIO_SCSI_S_OK 0 | 77 | #define VIRTIO_SCSI_S_OK 0 |
74 | #define VIRTIO_SCSI_S_OVERRUN 1 | 78 | #define VIRTIO_SCSI_S_OVERRUN 1 |
@@ -105,6 +109,11 @@ struct virtio_scsi_config { | |||
105 | #define VIRTIO_SCSI_T_TRANSPORT_RESET 1 | 109 | #define VIRTIO_SCSI_T_TRANSPORT_RESET 1 |
106 | #define VIRTIO_SCSI_T_ASYNC_NOTIFY 2 | 110 | #define VIRTIO_SCSI_T_ASYNC_NOTIFY 2 |
107 | 111 | ||
112 | /* Reasons of transport reset event */ | ||
113 | #define VIRTIO_SCSI_EVT_RESET_HARD 0 | ||
114 | #define VIRTIO_SCSI_EVT_RESET_RESCAN 1 | ||
115 | #define VIRTIO_SCSI_EVT_RESET_REMOVED 2 | ||
116 | |||
108 | #define VIRTIO_SCSI_S_SIMPLE 0 | 117 | #define VIRTIO_SCSI_S_SIMPLE 0 |
109 | #define VIRTIO_SCSI_S_ORDERED 1 | 118 | #define VIRTIO_SCSI_S_ORDERED 1 |
110 | #define VIRTIO_SCSI_S_HEAD 2 | 119 | #define VIRTIO_SCSI_S_HEAD 2 |
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h index dcdfc2bda922..6071e911c7f4 100644 --- a/include/linux/vmalloc.h +++ b/include/linux/vmalloc.h | |||
@@ -32,7 +32,7 @@ struct vm_struct { | |||
32 | struct page **pages; | 32 | struct page **pages; |
33 | unsigned int nr_pages; | 33 | unsigned int nr_pages; |
34 | phys_addr_t phys_addr; | 34 | phys_addr_t phys_addr; |
35 | void *caller; | 35 | const void *caller; |
36 | }; | 36 | }; |
37 | 37 | ||
38 | /* | 38 | /* |
@@ -62,7 +62,7 @@ extern void *vmalloc_32_user(unsigned long size); | |||
62 | extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot); | 62 | extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot); |
63 | extern void *__vmalloc_node_range(unsigned long size, unsigned long align, | 63 | extern void *__vmalloc_node_range(unsigned long size, unsigned long align, |
64 | unsigned long start, unsigned long end, gfp_t gfp_mask, | 64 | unsigned long start, unsigned long end, gfp_t gfp_mask, |
65 | pgprot_t prot, int node, void *caller); | 65 | pgprot_t prot, int node, const void *caller); |
66 | extern void vfree(const void *addr); | 66 | extern void vfree(const void *addr); |
67 | 67 | ||
68 | extern void *vmap(struct page **pages, unsigned int count, | 68 | extern void *vmap(struct page **pages, unsigned int count, |
@@ -85,14 +85,15 @@ static inline size_t get_vm_area_size(const struct vm_struct *area) | |||
85 | 85 | ||
86 | extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags); | 86 | extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags); |
87 | extern struct vm_struct *get_vm_area_caller(unsigned long size, | 87 | extern struct vm_struct *get_vm_area_caller(unsigned long size, |
88 | unsigned long flags, void *caller); | 88 | unsigned long flags, const void *caller); |
89 | extern struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags, | 89 | extern struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags, |
90 | unsigned long start, unsigned long end); | 90 | unsigned long start, unsigned long end); |
91 | extern struct vm_struct *__get_vm_area_caller(unsigned long size, | 91 | extern struct vm_struct *__get_vm_area_caller(unsigned long size, |
92 | unsigned long flags, | 92 | unsigned long flags, |
93 | unsigned long start, unsigned long end, | 93 | unsigned long start, unsigned long end, |
94 | void *caller); | 94 | const void *caller); |
95 | extern struct vm_struct *remove_vm_area(const void *addr); | 95 | extern struct vm_struct *remove_vm_area(const void *addr); |
96 | extern struct vm_struct *find_vm_area(const void *addr); | ||
96 | 97 | ||
97 | extern int map_vm_area(struct vm_struct *area, pgprot_t prot, | 98 | extern int map_vm_area(struct vm_struct *area, pgprot_t prot, |
98 | struct page ***pages); | 99 | struct page ***pages); |
diff --git a/include/media/adv7393.h b/include/media/adv7393.h new file mode 100644 index 000000000000..b28edf351842 --- /dev/null +++ b/include/media/adv7393.h | |||
@@ -0,0 +1,28 @@ | |||
1 | /* | ||
2 | * ADV7393 header file | ||
3 | * | ||
4 | * Copyright (C) 2010-2012 ADVANSEE - http://www.advansee.com/ | ||
5 | * Benoît Thébaudeau <benoit.thebaudeau@advansee.com> | ||
6 | * | ||
7 | * Based on ADV7343 driver, | ||
8 | * | ||
9 | * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/ | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or | ||
12 | * modify it under the terms of the GNU General Public License as | ||
13 | * published by the Free Software Foundation version 2. | ||
14 | * | ||
15 | * This program is distributed .as is. WITHOUT ANY WARRANTY of any | ||
16 | * kind, whether express or implied; without even the implied warranty | ||
17 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
18 | * GNU General Public License for more details. | ||
19 | */ | ||
20 | |||
21 | #ifndef ADV7393_H | ||
22 | #define ADV7393_H | ||
23 | |||
24 | #define ADV7393_COMPOSITE_ID (0) | ||
25 | #define ADV7393_COMPONENT_ID (1) | ||
26 | #define ADV7393_SVIDEO_ID (2) | ||
27 | |||
28 | #endif /* End of #ifndef ADV7393_H */ | ||
diff --git a/include/media/gpio-ir-recv.h b/include/media/gpio-ir-recv.h index 67797bf5d432..0142736a59db 100644 --- a/include/media/gpio-ir-recv.h +++ b/include/media/gpio-ir-recv.h | |||
@@ -14,8 +14,10 @@ | |||
14 | #define __GPIO_IR_RECV_H__ | 14 | #define __GPIO_IR_RECV_H__ |
15 | 15 | ||
16 | struct gpio_ir_recv_platform_data { | 16 | struct gpio_ir_recv_platform_data { |
17 | int gpio_nr; | 17 | int gpio_nr; |
18 | bool active_low; | 18 | bool active_low; |
19 | u64 allowed_protos; | ||
20 | const char *map_name; | ||
19 | }; | 21 | }; |
20 | 22 | ||
21 | #endif /* __GPIO_IR_RECV_H__ */ | 23 | #endif /* __GPIO_IR_RECV_H__ */ |
diff --git a/include/media/mt9t001.h b/include/media/mt9t001.h index e839a78bb9c5..03fd63edd133 100644 --- a/include/media/mt9t001.h +++ b/include/media/mt9t001.h | |||
@@ -3,6 +3,7 @@ | |||
3 | 3 | ||
4 | struct mt9t001_platform_data { | 4 | struct mt9t001_platform_data { |
5 | unsigned int clk_pol:1; | 5 | unsigned int clk_pol:1; |
6 | unsigned int ext_clk; | ||
6 | }; | 7 | }; |
7 | 8 | ||
8 | #endif | 9 | #endif |
diff --git a/include/media/v4l2-chip-ident.h b/include/media/v4l2-chip-ident.h index 7395c815939d..58f914a40b20 100644 --- a/include/media/v4l2-chip-ident.h +++ b/include/media/v4l2-chip-ident.h | |||
@@ -180,6 +180,9 @@ enum { | |||
180 | /* module adv7343: just ident 7343 */ | 180 | /* module adv7343: just ident 7343 */ |
181 | V4L2_IDENT_ADV7343 = 7343, | 181 | V4L2_IDENT_ADV7343 = 7343, |
182 | 182 | ||
183 | /* module adv7393: just ident 7393 */ | ||
184 | V4L2_IDENT_ADV7393 = 7393, | ||
185 | |||
183 | /* module saa7706h: just ident 7706 */ | 186 | /* module saa7706h: just ident 7706 */ |
184 | V4L2_IDENT_SAA7706H = 7706, | 187 | V4L2_IDENT_SAA7706H = 7706, |
185 | 188 | ||
diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h index a056e6ee1b68..5c416cdc88d5 100644 --- a/include/media/v4l2-dev.h +++ b/include/media/v4l2-dev.h | |||
@@ -100,6 +100,9 @@ struct video_device | |||
100 | /* Control handler associated with this device node. May be NULL. */ | 100 | /* Control handler associated with this device node. May be NULL. */ |
101 | struct v4l2_ctrl_handler *ctrl_handler; | 101 | struct v4l2_ctrl_handler *ctrl_handler; |
102 | 102 | ||
103 | /* vb2_queue associated with this device node. May be NULL. */ | ||
104 | struct vb2_queue *queue; | ||
105 | |||
103 | /* Priority state. If NULL, then v4l2_dev->prio will be used. */ | 106 | /* Priority state. If NULL, then v4l2_dev->prio will be used. */ |
104 | struct v4l2_prio_state *prio; | 107 | struct v4l2_prio_state *prio; |
105 | 108 | ||
diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h index d8b76f7392f8..19e93523c2d8 100644 --- a/include/media/v4l2-ioctl.h +++ b/include/media/v4l2-ioctl.h | |||
@@ -295,28 +295,19 @@ struct v4l2_ioctl_ops { | |||
295 | #define V4L2_DEBUG_IOCTL 0x01 | 295 | #define V4L2_DEBUG_IOCTL 0x01 |
296 | #define V4L2_DEBUG_IOCTL_ARG 0x02 | 296 | #define V4L2_DEBUG_IOCTL_ARG 0x02 |
297 | 297 | ||
298 | /* Use this macro for non-I2C drivers. Pass the driver name as the first arg. */ | ||
299 | #define v4l_print_ioctl(name, cmd) \ | ||
300 | do { \ | ||
301 | printk(KERN_DEBUG "%s: ", name); \ | ||
302 | v4l_printk_ioctl(cmd); \ | ||
303 | } while (0) | ||
304 | |||
305 | /* Use this macro in I2C drivers where 'client' is the struct i2c_client | ||
306 | pointer */ | ||
307 | #define v4l_i2c_print_ioctl(client, cmd) \ | ||
308 | do { \ | ||
309 | v4l_client_printk(KERN_DEBUG, client, ""); \ | ||
310 | v4l_printk_ioctl(cmd); \ | ||
311 | } while (0) | ||
312 | |||
313 | /* Video standard functions */ | 298 | /* Video standard functions */ |
314 | extern const char *v4l2_norm_to_name(v4l2_std_id id); | 299 | extern const char *v4l2_norm_to_name(v4l2_std_id id); |
315 | extern void v4l2_video_std_frame_period(int id, struct v4l2_fract *frameperiod); | 300 | extern void v4l2_video_std_frame_period(int id, struct v4l2_fract *frameperiod); |
316 | extern int v4l2_video_std_construct(struct v4l2_standard *vs, | 301 | extern int v4l2_video_std_construct(struct v4l2_standard *vs, |
317 | int id, const char *name); | 302 | int id, const char *name); |
318 | /* Prints the ioctl in a human-readable format */ | 303 | /* Prints the ioctl in a human-readable format. If prefix != NULL, |
319 | extern void v4l_printk_ioctl(unsigned int cmd); | 304 | then do printk(KERN_DEBUG "%s: ", prefix) first. */ |
305 | extern void v4l_printk_ioctl(const char *prefix, unsigned int cmd); | ||
306 | |||
307 | /* Internal use only: get the mutex (if any) that we need to lock for the | ||
308 | given command. */ | ||
309 | struct video_device; | ||
310 | extern struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned cmd); | ||
320 | 311 | ||
321 | /* names for fancy debug output */ | 312 | /* names for fancy debug output */ |
322 | extern const char *v4l2_field_names[]; | 313 | extern const char *v4l2_field_names[]; |
diff --git a/include/media/videobuf-core.h b/include/media/videobuf-core.h index 90ed895e217d..8c6e825940e5 100644 --- a/include/media/videobuf-core.h +++ b/include/media/videobuf-core.h | |||
@@ -72,7 +72,6 @@ struct videobuf_buffer { | |||
72 | unsigned int height; | 72 | unsigned int height; |
73 | unsigned int bytesperline; /* use only if != 0 */ | 73 | unsigned int bytesperline; /* use only if != 0 */ |
74 | unsigned long size; | 74 | unsigned long size; |
75 | unsigned int input; | ||
76 | enum v4l2_field field; | 75 | enum v4l2_field field; |
77 | enum videobuf_state state; | 76 | enum videobuf_state state; |
78 | struct list_head stream; /* QBUF/DQBUF list */ | 77 | struct list_head stream; /* QBUF/DQBUF list */ |
@@ -142,7 +141,6 @@ struct videobuf_queue { | |||
142 | wait_queue_head_t wait; /* wait if queue is empty */ | 141 | wait_queue_head_t wait; /* wait if queue is empty */ |
143 | 142 | ||
144 | enum v4l2_buf_type type; | 143 | enum v4l2_buf_type type; |
145 | unsigned int inputs; /* for V4L2_BUF_FLAG_INPUT */ | ||
146 | unsigned int msize; | 144 | unsigned int msize; |
147 | enum v4l2_field field; | 145 | enum v4l2_field field; |
148 | enum v4l2_field last; /* for field=V4L2_FIELD_ALTERNATE */ | 146 | enum v4l2_field last; /* for field=V4L2_FIELD_ALTERNATE */ |
diff --git a/include/media/videobuf2-core.h b/include/media/videobuf2-core.h index a15d1f1b319e..8dd9b6cc296b 100644 --- a/include/media/videobuf2-core.h +++ b/include/media/videobuf2-core.h | |||
@@ -244,12 +244,23 @@ struct vb2_ops { | |||
244 | void (*buf_queue)(struct vb2_buffer *vb); | 244 | void (*buf_queue)(struct vb2_buffer *vb); |
245 | }; | 245 | }; |
246 | 246 | ||
247 | struct v4l2_fh; | ||
248 | |||
247 | /** | 249 | /** |
248 | * struct vb2_queue - a videobuf queue | 250 | * struct vb2_queue - a videobuf queue |
249 | * | 251 | * |
250 | * @type: queue type (see V4L2_BUF_TYPE_* in linux/videodev2.h | 252 | * @type: queue type (see V4L2_BUF_TYPE_* in linux/videodev2.h |
251 | * @io_modes: supported io methods (see vb2_io_modes enum) | 253 | * @io_modes: supported io methods (see vb2_io_modes enum) |
252 | * @io_flags: additional io flags (see vb2_fileio_flags enum) | 254 | * @io_flags: additional io flags (see vb2_fileio_flags enum) |
255 | * @lock: pointer to a mutex that protects the vb2_queue struct. The | ||
256 | * driver can set this to a mutex to let the v4l2 core serialize | ||
257 | * the queuing ioctls. If the driver wants to handle locking | ||
258 | * itself, then this should be set to NULL. This lock is not used | ||
259 | * by the videobuf2 core API. | ||
260 | * @owner: The filehandle that 'owns' the buffers, i.e. the filehandle | ||
261 | * that called reqbufs, create_buffers or started fileio. | ||
262 | * This field is not used by the videobuf2 core API, but it allows | ||
263 | * drivers to easily associate an owner filehandle with the queue. | ||
253 | * @ops: driver-specific callbacks | 264 | * @ops: driver-specific callbacks |
254 | * @mem_ops: memory allocator specific callbacks | 265 | * @mem_ops: memory allocator specific callbacks |
255 | * @drv_priv: driver private data | 266 | * @drv_priv: driver private data |
@@ -273,6 +284,8 @@ struct vb2_queue { | |||
273 | enum v4l2_buf_type type; | 284 | enum v4l2_buf_type type; |
274 | unsigned int io_modes; | 285 | unsigned int io_modes; |
275 | unsigned int io_flags; | 286 | unsigned int io_flags; |
287 | struct mutex *lock; | ||
288 | struct v4l2_fh *owner; | ||
276 | 289 | ||
277 | const struct vb2_ops *ops; | 290 | const struct vb2_ops *ops; |
278 | const struct vb2_mem_ops *mem_ops; | 291 | const struct vb2_mem_ops *mem_ops; |
@@ -404,4 +417,45 @@ vb2_plane_size(struct vb2_buffer *vb, unsigned int plane_no) | |||
404 | return 0; | 417 | return 0; |
405 | } | 418 | } |
406 | 419 | ||
420 | /* | ||
421 | * The following functions are not part of the vb2 core API, but are simple | ||
422 | * helper functions that you can use in your struct v4l2_file_operations, | ||
423 | * struct v4l2_ioctl_ops and struct vb2_ops. They will serialize if vb2_queue->lock | ||
424 | * or video_device->lock is set, and they will set and test vb2_queue->owner | ||
425 | * to check if the calling filehandle is permitted to do the queuing operation. | ||
426 | */ | ||
427 | |||
428 | /* struct v4l2_ioctl_ops helpers */ | ||
429 | |||
430 | int vb2_ioctl_reqbufs(struct file *file, void *priv, | ||
431 | struct v4l2_requestbuffers *p); | ||
432 | int vb2_ioctl_create_bufs(struct file *file, void *priv, | ||
433 | struct v4l2_create_buffers *p); | ||
434 | int vb2_ioctl_prepare_buf(struct file *file, void *priv, | ||
435 | struct v4l2_buffer *p); | ||
436 | int vb2_ioctl_querybuf(struct file *file, void *priv, struct v4l2_buffer *p); | ||
437 | int vb2_ioctl_qbuf(struct file *file, void *priv, struct v4l2_buffer *p); | ||
438 | int vb2_ioctl_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p); | ||
439 | int vb2_ioctl_streamon(struct file *file, void *priv, enum v4l2_buf_type i); | ||
440 | int vb2_ioctl_streamoff(struct file *file, void *priv, enum v4l2_buf_type i); | ||
441 | |||
442 | /* struct v4l2_file_operations helpers */ | ||
443 | |||
444 | int vb2_fop_mmap(struct file *file, struct vm_area_struct *vma); | ||
445 | int vb2_fop_release(struct file *file); | ||
446 | ssize_t vb2_fop_write(struct file *file, char __user *buf, | ||
447 | size_t count, loff_t *ppos); | ||
448 | ssize_t vb2_fop_read(struct file *file, char __user *buf, | ||
449 | size_t count, loff_t *ppos); | ||
450 | unsigned int vb2_fop_poll(struct file *file, poll_table *wait); | ||
451 | #ifndef CONFIG_MMU | ||
452 | unsigned long vb2_fop_get_unmapped_area(struct file *file, unsigned long addr, | ||
453 | unsigned long len, unsigned long pgoff, unsigned long flags); | ||
454 | #endif | ||
455 | |||
456 | /* struct vb2_ops helpers, only use if vq->lock is non-NULL. */ | ||
457 | |||
458 | void vb2_ops_wait_prepare(struct vb2_queue *vq); | ||
459 | void vb2_ops_wait_finish(struct vb2_queue *vq); | ||
460 | |||
407 | #endif /* _MEDIA_VIDEOBUF2_CORE_H */ | 461 | #endif /* _MEDIA_VIDEOBUF2_CORE_H */ |
diff --git a/include/media/videobuf2-dma-contig.h b/include/media/videobuf2-dma-contig.h index 19ae1e350567..8197f87d6c61 100644 --- a/include/media/videobuf2-dma-contig.h +++ b/include/media/videobuf2-dma-contig.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * videobuf2-dma-coherent.h - DMA coherent memory allocator for videobuf2 | 2 | * videobuf2-dma-contig.h - DMA contig memory allocator for videobuf2 |
3 | * | 3 | * |
4 | * Copyright (C) 2010 Samsung Electronics | 4 | * Copyright (C) 2010 Samsung Electronics |
5 | * | 5 | * |
@@ -10,8 +10,8 @@ | |||
10 | * the Free Software Foundation. | 10 | * the Free Software Foundation. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #ifndef _MEDIA_VIDEOBUF2_DMA_COHERENT_H | 13 | #ifndef _MEDIA_VIDEOBUF2_DMA_CONTIG_H |
14 | #define _MEDIA_VIDEOBUF2_DMA_COHERENT_H | 14 | #define _MEDIA_VIDEOBUF2_DMA_CONTIG_H |
15 | 15 | ||
16 | #include <media/videobuf2-core.h> | 16 | #include <media/videobuf2-core.h> |
17 | #include <linux/dma-mapping.h> | 17 | #include <linux/dma-mapping.h> |
diff --git a/include/net/addrconf.h b/include/net/addrconf.h index f2b801c4b555..089a09d001d1 100644 --- a/include/net/addrconf.h +++ b/include/net/addrconf.h | |||
@@ -46,7 +46,8 @@ struct prefix_info { | |||
46 | #include <net/if_inet6.h> | 46 | #include <net/if_inet6.h> |
47 | #include <net/ipv6.h> | 47 | #include <net/ipv6.h> |
48 | 48 | ||
49 | #define IN6_ADDR_HSIZE 16 | 49 | #define IN6_ADDR_HSIZE_SHIFT 4 |
50 | #define IN6_ADDR_HSIZE (1 << IN6_ADDR_HSIZE_SHIFT) | ||
50 | 51 | ||
51 | extern int addrconf_init(void); | 52 | extern int addrconf_init(void); |
52 | extern void addrconf_cleanup(void); | 53 | extern void addrconf_cleanup(void); |
diff --git a/include/net/af_unix.h b/include/net/af_unix.h index 2ee33da36a7a..b5f8988e4283 100644 --- a/include/net/af_unix.h +++ b/include/net/af_unix.h | |||
@@ -14,10 +14,11 @@ extern struct sock *unix_get_socket(struct file *filp); | |||
14 | extern struct sock *unix_peer_get(struct sock *); | 14 | extern struct sock *unix_peer_get(struct sock *); |
15 | 15 | ||
16 | #define UNIX_HASH_SIZE 256 | 16 | #define UNIX_HASH_SIZE 256 |
17 | #define UNIX_HASH_BITS 8 | ||
17 | 18 | ||
18 | extern unsigned int unix_tot_inflight; | 19 | extern unsigned int unix_tot_inflight; |
19 | extern spinlock_t unix_table_lock; | 20 | extern spinlock_t unix_table_lock; |
20 | extern struct hlist_head unix_socket_table[UNIX_HASH_SIZE + 1]; | 21 | extern struct hlist_head unix_socket_table[2 * UNIX_HASH_SIZE]; |
21 | 22 | ||
22 | struct unix_address { | 23 | struct unix_address { |
23 | atomic_t refcnt; | 24 | atomic_t refcnt; |
diff --git a/include/net/arp.h b/include/net/arp.h index 4a1f3fb562eb..7f7df93f37cd 100644 --- a/include/net/arp.h +++ b/include/net/arp.h | |||
@@ -15,24 +15,31 @@ static inline u32 arp_hashfn(u32 key, const struct net_device *dev, u32 hash_rnd | |||
15 | return val * hash_rnd; | 15 | return val * hash_rnd; |
16 | } | 16 | } |
17 | 17 | ||
18 | static inline struct neighbour *__ipv4_neigh_lookup(struct net_device *dev, u32 key) | 18 | static inline struct neighbour *__ipv4_neigh_lookup_noref(struct net_device *dev, u32 key) |
19 | { | 19 | { |
20 | struct neigh_hash_table *nht; | 20 | struct neigh_hash_table *nht = rcu_dereference_bh(arp_tbl.nht); |
21 | struct neighbour *n; | 21 | struct neighbour *n; |
22 | u32 hash_val; | 22 | u32 hash_val; |
23 | 23 | ||
24 | rcu_read_lock_bh(); | ||
25 | nht = rcu_dereference_bh(arp_tbl.nht); | ||
26 | hash_val = arp_hashfn(key, dev, nht->hash_rnd[0]) >> (32 - nht->hash_shift); | 24 | hash_val = arp_hashfn(key, dev, nht->hash_rnd[0]) >> (32 - nht->hash_shift); |
27 | for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]); | 25 | for (n = rcu_dereference_bh(nht->hash_buckets[hash_val]); |
28 | n != NULL; | 26 | n != NULL; |
29 | n = rcu_dereference_bh(n->next)) { | 27 | n = rcu_dereference_bh(n->next)) { |
30 | if (n->dev == dev && *(u32 *)n->primary_key == key) { | 28 | if (n->dev == dev && *(u32 *)n->primary_key == key) |
31 | if (!atomic_inc_not_zero(&n->refcnt)) | 29 | return n; |
32 | n = NULL; | ||
33 | break; | ||
34 | } | ||
35 | } | 30 | } |
31 | |||
32 | return NULL; | ||
33 | } | ||
34 | |||
35 | static inline struct neighbour *__ipv4_neigh_lookup(struct net_device *dev, u32 key) | ||
36 | { | ||
37 | struct neighbour *n; | ||
38 | |||
39 | rcu_read_lock_bh(); | ||
40 | n = __ipv4_neigh_lookup_noref(dev, key); | ||
41 | if (n && !atomic_inc_not_zero(&n->refcnt)) | ||
42 | n = NULL; | ||
36 | rcu_read_unlock_bh(); | 43 | rcu_read_unlock_bh(); |
37 | 44 | ||
38 | return n; | 45 | return n; |
diff --git a/include/net/bluetooth/a2mp.h b/include/net/bluetooth/a2mp.h new file mode 100644 index 000000000000..6a76e0a0705e --- /dev/null +++ b/include/net/bluetooth/a2mp.h | |||
@@ -0,0 +1,126 @@ | |||
1 | /* | ||
2 | Copyright (c) 2010,2011 Code Aurora Forum. All rights reserved. | ||
3 | Copyright (c) 2011,2012 Intel Corp. | ||
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 and | ||
7 | only version 2 as 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 __A2MP_H | ||
16 | #define __A2MP_H | ||
17 | |||
18 | #include <net/bluetooth/l2cap.h> | ||
19 | |||
20 | #define A2MP_FEAT_EXT 0x8000 | ||
21 | |||
22 | struct amp_mgr { | ||
23 | struct l2cap_conn *l2cap_conn; | ||
24 | struct l2cap_chan *a2mp_chan; | ||
25 | struct kref kref; | ||
26 | __u8 ident; | ||
27 | __u8 handle; | ||
28 | unsigned long flags; | ||
29 | }; | ||
30 | |||
31 | struct a2mp_cmd { | ||
32 | __u8 code; | ||
33 | __u8 ident; | ||
34 | __le16 len; | ||
35 | __u8 data[0]; | ||
36 | } __packed; | ||
37 | |||
38 | /* A2MP command codes */ | ||
39 | #define A2MP_COMMAND_REJ 0x01 | ||
40 | struct a2mp_cmd_rej { | ||
41 | __le16 reason; | ||
42 | __u8 data[0]; | ||
43 | } __packed; | ||
44 | |||
45 | #define A2MP_DISCOVER_REQ 0x02 | ||
46 | struct a2mp_discov_req { | ||
47 | __le16 mtu; | ||
48 | __le16 ext_feat; | ||
49 | } __packed; | ||
50 | |||
51 | struct a2mp_cl { | ||
52 | __u8 id; | ||
53 | __u8 type; | ||
54 | __u8 status; | ||
55 | } __packed; | ||
56 | |||
57 | #define A2MP_DISCOVER_RSP 0x03 | ||
58 | struct a2mp_discov_rsp { | ||
59 | __le16 mtu; | ||
60 | __le16 ext_feat; | ||
61 | struct a2mp_cl cl[0]; | ||
62 | } __packed; | ||
63 | |||
64 | #define A2MP_CHANGE_NOTIFY 0x04 | ||
65 | #define A2MP_CHANGE_RSP 0x05 | ||
66 | |||
67 | #define A2MP_GETINFO_REQ 0x06 | ||
68 | struct a2mp_info_req { | ||
69 | __u8 id; | ||
70 | } __packed; | ||
71 | |||
72 | #define A2MP_GETINFO_RSP 0x07 | ||
73 | struct a2mp_info_rsp { | ||
74 | __u8 id; | ||
75 | __u8 status; | ||
76 | __le32 total_bw; | ||
77 | __le32 max_bw; | ||
78 | __le32 min_latency; | ||
79 | __le16 pal_cap; | ||
80 | __le16 assoc_size; | ||
81 | } __packed; | ||
82 | |||
83 | #define A2MP_GETAMPASSOC_REQ 0x08 | ||
84 | struct a2mp_amp_assoc_req { | ||
85 | __u8 id; | ||
86 | } __packed; | ||
87 | |||
88 | #define A2MP_GETAMPASSOC_RSP 0x09 | ||
89 | struct a2mp_amp_assoc_rsp { | ||
90 | __u8 id; | ||
91 | __u8 status; | ||
92 | __u8 amp_assoc[0]; | ||
93 | } __packed; | ||
94 | |||
95 | #define A2MP_CREATEPHYSLINK_REQ 0x0A | ||
96 | #define A2MP_DISCONNPHYSLINK_REQ 0x0C | ||
97 | struct a2mp_physlink_req { | ||
98 | __u8 local_id; | ||
99 | __u8 remote_id; | ||
100 | __u8 amp_assoc[0]; | ||
101 | } __packed; | ||
102 | |||
103 | #define A2MP_CREATEPHYSLINK_RSP 0x0B | ||
104 | #define A2MP_DISCONNPHYSLINK_RSP 0x0D | ||
105 | struct a2mp_physlink_rsp { | ||
106 | __u8 local_id; | ||
107 | __u8 remote_id; | ||
108 | __u8 status; | ||
109 | } __packed; | ||
110 | |||
111 | /* A2MP response status */ | ||
112 | #define A2MP_STATUS_SUCCESS 0x00 | ||
113 | #define A2MP_STATUS_INVALID_CTRL_ID 0x01 | ||
114 | #define A2MP_STATUS_UNABLE_START_LINK_CREATION 0x02 | ||
115 | #define A2MP_STATUS_NO_PHYSICAL_LINK_EXISTS 0x02 | ||
116 | #define A2MP_STATUS_COLLISION_OCCURED 0x03 | ||
117 | #define A2MP_STATUS_DISCONN_REQ_RECVD 0x04 | ||
118 | #define A2MP_STATUS_PHYS_LINK_EXISTS 0x05 | ||
119 | #define A2MP_STATUS_SECURITY_VIOLATION 0x06 | ||
120 | |||
121 | void amp_mgr_get(struct amp_mgr *mgr); | ||
122 | int amp_mgr_put(struct amp_mgr *mgr); | ||
123 | struct l2cap_chan *a2mp_channel_create(struct l2cap_conn *conn, | ||
124 | struct sk_buff *skb); | ||
125 | |||
126 | #endif /* __A2MP_H */ | ||
diff --git a/include/net/bluetooth/bluetooth.h b/include/net/bluetooth/bluetooth.h index 961669b648fd..565d4bee1e49 100644 --- a/include/net/bluetooth/bluetooth.h +++ b/include/net/bluetooth/bluetooth.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | BlueZ - Bluetooth protocol stack for Linux | 2 | BlueZ - Bluetooth protocol stack for Linux |
3 | Copyright (C) 2000-2001 Qualcomm Incorporated | 3 | Copyright (C) 2000-2001 Qualcomm Incorporated |
4 | 4 | ||
@@ -12,22 +12,19 @@ | |||
12 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 12 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. | 13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. |
14 | IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY | 14 | IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY |
15 | CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES | 15 | CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES |
16 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 16 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
17 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 17 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
18 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 18 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
19 | 19 | ||
20 | ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, | 20 | ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, |
21 | COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS | 21 | COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS |
22 | SOFTWARE IS DISCLAIMED. | 22 | SOFTWARE IS DISCLAIMED. |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #ifndef __BLUETOOTH_H | 25 | #ifndef __BLUETOOTH_H |
26 | #define __BLUETOOTH_H | 26 | #define __BLUETOOTH_H |
27 | 27 | ||
28 | #include <asm/types.h> | ||
29 | #include <asm/byteorder.h> | ||
30 | #include <linux/list.h> | ||
31 | #include <linux/poll.h> | 28 | #include <linux/poll.h> |
32 | #include <net/sock.h> | 29 | #include <net/sock.h> |
33 | 30 | ||
@@ -168,8 +165,8 @@ typedef struct { | |||
168 | #define BDADDR_LE_PUBLIC 0x01 | 165 | #define BDADDR_LE_PUBLIC 0x01 |
169 | #define BDADDR_LE_RANDOM 0x02 | 166 | #define BDADDR_LE_RANDOM 0x02 |
170 | 167 | ||
171 | #define BDADDR_ANY (&(bdaddr_t) {{0, 0, 0, 0, 0, 0}}) | 168 | #define BDADDR_ANY (&(bdaddr_t) {{0, 0, 0, 0, 0, 0} }) |
172 | #define BDADDR_LOCAL (&(bdaddr_t) {{0, 0, 0, 0xff, 0xff, 0xff}}) | 169 | #define BDADDR_LOCAL (&(bdaddr_t) {{0, 0, 0, 0xff, 0xff, 0xff} }) |
173 | 170 | ||
174 | /* Copy, swap, convert BD Address */ | 171 | /* Copy, swap, convert BD Address */ |
175 | static inline int bacmp(bdaddr_t *ba1, bdaddr_t *ba2) | 172 | static inline int bacmp(bdaddr_t *ba1, bdaddr_t *ba2) |
@@ -215,7 +212,7 @@ int bt_sock_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
215 | struct msghdr *msg, size_t len, int flags); | 212 | struct msghdr *msg, size_t len, int flags); |
216 | int bt_sock_stream_recvmsg(struct kiocb *iocb, struct socket *sock, | 213 | int bt_sock_stream_recvmsg(struct kiocb *iocb, struct socket *sock, |
217 | struct msghdr *msg, size_t len, int flags); | 214 | struct msghdr *msg, size_t len, int flags); |
218 | uint bt_sock_poll(struct file * file, struct socket *sock, poll_table *wait); | 215 | uint bt_sock_poll(struct file *file, struct socket *sock, poll_table *wait); |
219 | int bt_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg); | 216 | int bt_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg); |
220 | int bt_sock_wait_state(struct sock *sk, int state, unsigned long timeo); | 217 | int bt_sock_wait_state(struct sock *sk, int state, unsigned long timeo); |
221 | 218 | ||
@@ -225,12 +222,12 @@ struct sock *bt_accept_dequeue(struct sock *parent, struct socket *newsock); | |||
225 | 222 | ||
226 | /* Skb helpers */ | 223 | /* Skb helpers */ |
227 | struct l2cap_ctrl { | 224 | struct l2cap_ctrl { |
228 | unsigned int sframe : 1, | 225 | unsigned int sframe:1, |
229 | poll : 1, | 226 | poll:1, |
230 | final : 1, | 227 | final:1, |
231 | fcs : 1, | 228 | fcs:1, |
232 | sar : 2, | 229 | sar:2, |
233 | super : 2; | 230 | super:2; |
234 | __u16 reqseq; | 231 | __u16 reqseq; |
235 | __u16 txseq; | 232 | __u16 txseq; |
236 | __u8 retries; | 233 | __u8 retries; |
@@ -249,7 +246,8 @@ static inline struct sk_buff *bt_skb_alloc(unsigned int len, gfp_t how) | |||
249 | { | 246 | { |
250 | struct sk_buff *skb; | 247 | struct sk_buff *skb; |
251 | 248 | ||
252 | if ((skb = alloc_skb(len + BT_SKB_RESERVE, how))) { | 249 | skb = alloc_skb(len + BT_SKB_RESERVE, how); |
250 | if (skb) { | ||
253 | skb_reserve(skb, BT_SKB_RESERVE); | 251 | skb_reserve(skb, BT_SKB_RESERVE); |
254 | bt_cb(skb)->incoming = 0; | 252 | bt_cb(skb)->incoming = 0; |
255 | } | 253 | } |
@@ -261,7 +259,8 @@ static inline struct sk_buff *bt_skb_send_alloc(struct sock *sk, | |||
261 | { | 259 | { |
262 | struct sk_buff *skb; | 260 | struct sk_buff *skb; |
263 | 261 | ||
264 | if ((skb = sock_alloc_send_skb(sk, len + BT_SKB_RESERVE, nb, err))) { | 262 | skb = sock_alloc_send_skb(sk, len + BT_SKB_RESERVE, nb, err); |
263 | if (skb) { | ||
265 | skb_reserve(skb, BT_SKB_RESERVE); | 264 | skb_reserve(skb, BT_SKB_RESERVE); |
266 | bt_cb(skb)->incoming = 0; | 265 | bt_cb(skb)->incoming = 0; |
267 | } | 266 | } |
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 66a7b579e31c..ccd723e0f783 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h | |||
@@ -30,6 +30,9 @@ | |||
30 | #define HCI_MAX_EVENT_SIZE 260 | 30 | #define HCI_MAX_EVENT_SIZE 260 |
31 | #define HCI_MAX_FRAME_SIZE (HCI_MAX_ACL_SIZE + 4) | 31 | #define HCI_MAX_FRAME_SIZE (HCI_MAX_ACL_SIZE + 4) |
32 | 32 | ||
33 | #define HCI_LINK_KEY_SIZE 16 | ||
34 | #define HCI_AMP_LINK_KEY_SIZE (2 * HCI_LINK_KEY_SIZE) | ||
35 | |||
33 | /* HCI dev events */ | 36 | /* HCI dev events */ |
34 | #define HCI_DEV_REG 1 | 37 | #define HCI_DEV_REG 1 |
35 | #define HCI_DEV_UNREG 2 | 38 | #define HCI_DEV_UNREG 2 |
@@ -56,9 +59,12 @@ | |||
56 | #define HCI_BREDR 0x00 | 59 | #define HCI_BREDR 0x00 |
57 | #define HCI_AMP 0x01 | 60 | #define HCI_AMP 0x01 |
58 | 61 | ||
62 | /* First BR/EDR Controller shall have ID = 0 */ | ||
63 | #define HCI_BREDR_ID 0 | ||
64 | |||
59 | /* HCI device quirks */ | 65 | /* HCI device quirks */ |
60 | enum { | 66 | enum { |
61 | HCI_QUIRK_NO_RESET, | 67 | HCI_QUIRK_RESET_ON_CLOSE, |
62 | HCI_QUIRK_RAW_DEVICE, | 68 | HCI_QUIRK_RAW_DEVICE, |
63 | HCI_QUIRK_FIXUP_BUFFER_SIZE | 69 | HCI_QUIRK_FIXUP_BUFFER_SIZE |
64 | }; | 70 | }; |
@@ -133,13 +139,12 @@ enum { | |||
133 | #define HCIINQUIRY _IOR('H', 240, int) | 139 | #define HCIINQUIRY _IOR('H', 240, int) |
134 | 140 | ||
135 | /* HCI timeouts */ | 141 | /* HCI timeouts */ |
136 | #define HCI_CONNECT_TIMEOUT (40000) /* 40 seconds */ | 142 | #define HCI_DISCONN_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */ |
137 | #define HCI_DISCONN_TIMEOUT (2000) /* 2 seconds */ | 143 | #define HCI_PAIRING_TIMEOUT msecs_to_jiffies(60000) /* 60 seconds */ |
138 | #define HCI_PAIRING_TIMEOUT (60000) /* 60 seconds */ | 144 | #define HCI_INIT_TIMEOUT msecs_to_jiffies(10000) /* 10 seconds */ |
139 | #define HCI_IDLE_TIMEOUT (6000) /* 6 seconds */ | 145 | #define HCI_CMD_TIMEOUT msecs_to_jiffies(1000) /* 1 second */ |
140 | #define HCI_INIT_TIMEOUT (10000) /* 10 seconds */ | 146 | #define HCI_ACL_TX_TIMEOUT msecs_to_jiffies(45000) /* 45 seconds */ |
141 | #define HCI_CMD_TIMEOUT (1000) /* 1 seconds */ | 147 | #define HCI_AUTO_OFF_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */ |
142 | #define HCI_ACL_TX_TIMEOUT (45000) /* 45 seconds */ | ||
143 | 148 | ||
144 | /* HCI data types */ | 149 | /* HCI data types */ |
145 | #define HCI_COMMAND_PKT 0x01 | 150 | #define HCI_COMMAND_PKT 0x01 |
@@ -371,7 +376,7 @@ struct hci_cp_reject_conn_req { | |||
371 | #define HCI_OP_LINK_KEY_REPLY 0x040b | 376 | #define HCI_OP_LINK_KEY_REPLY 0x040b |
372 | struct hci_cp_link_key_reply { | 377 | struct hci_cp_link_key_reply { |
373 | bdaddr_t bdaddr; | 378 | bdaddr_t bdaddr; |
374 | __u8 link_key[16]; | 379 | __u8 link_key[HCI_LINK_KEY_SIZE]; |
375 | } __packed; | 380 | } __packed; |
376 | 381 | ||
377 | #define HCI_OP_LINK_KEY_NEG_REPLY 0x040c | 382 | #define HCI_OP_LINK_KEY_NEG_REPLY 0x040c |
@@ -523,6 +528,28 @@ struct hci_cp_io_capability_neg_reply { | |||
523 | __u8 reason; | 528 | __u8 reason; |
524 | } __packed; | 529 | } __packed; |
525 | 530 | ||
531 | #define HCI_OP_CREATE_PHY_LINK 0x0435 | ||
532 | struct hci_cp_create_phy_link { | ||
533 | __u8 phy_handle; | ||
534 | __u8 key_len; | ||
535 | __u8 key_type; | ||
536 | __u8 key[HCI_AMP_LINK_KEY_SIZE]; | ||
537 | } __packed; | ||
538 | |||
539 | #define HCI_OP_ACCEPT_PHY_LINK 0x0436 | ||
540 | struct hci_cp_accept_phy_link { | ||
541 | __u8 phy_handle; | ||
542 | __u8 key_len; | ||
543 | __u8 key_type; | ||
544 | __u8 key[HCI_AMP_LINK_KEY_SIZE]; | ||
545 | } __packed; | ||
546 | |||
547 | #define HCI_OP_DISCONN_PHY_LINK 0x0437 | ||
548 | struct hci_cp_disconn_phy_link { | ||
549 | __u8 phy_handle; | ||
550 | __u8 reason; | ||
551 | } __packed; | ||
552 | |||
526 | #define HCI_OP_SNIFF_MODE 0x0803 | 553 | #define HCI_OP_SNIFF_MODE 0x0803 |
527 | struct hci_cp_sniff_mode { | 554 | struct hci_cp_sniff_mode { |
528 | __le16 handle; | 555 | __le16 handle; |
@@ -818,6 +845,31 @@ struct hci_rp_read_local_amp_info { | |||
818 | __le32 be_flush_to; | 845 | __le32 be_flush_to; |
819 | } __packed; | 846 | } __packed; |
820 | 847 | ||
848 | #define HCI_OP_READ_LOCAL_AMP_ASSOC 0x140a | ||
849 | struct hci_cp_read_local_amp_assoc { | ||
850 | __u8 phy_handle; | ||
851 | __le16 len_so_far; | ||
852 | __le16 max_len; | ||
853 | } __packed; | ||
854 | struct hci_rp_read_local_amp_assoc { | ||
855 | __u8 status; | ||
856 | __u8 phy_handle; | ||
857 | __le16 rem_len; | ||
858 | __u8 frag[0]; | ||
859 | } __packed; | ||
860 | |||
861 | #define HCI_OP_WRITE_REMOTE_AMP_ASSOC 0x140b | ||
862 | struct hci_cp_write_remote_amp_assoc { | ||
863 | __u8 phy_handle; | ||
864 | __le16 len_so_far; | ||
865 | __le16 rem_len; | ||
866 | __u8 frag[0]; | ||
867 | } __packed; | ||
868 | struct hci_rp_write_remote_amp_assoc { | ||
869 | __u8 status; | ||
870 | __u8 phy_handle; | ||
871 | } __packed; | ||
872 | |||
821 | #define HCI_OP_LE_SET_EVENT_MASK 0x2001 | 873 | #define HCI_OP_LE_SET_EVENT_MASK 0x2001 |
822 | struct hci_cp_le_set_event_mask { | 874 | struct hci_cp_le_set_event_mask { |
823 | __u8 mask[8]; | 875 | __u8 mask[8]; |
@@ -1048,7 +1100,7 @@ struct hci_ev_link_key_req { | |||
1048 | #define HCI_EV_LINK_KEY_NOTIFY 0x18 | 1100 | #define HCI_EV_LINK_KEY_NOTIFY 0x18 |
1049 | struct hci_ev_link_key_notify { | 1101 | struct hci_ev_link_key_notify { |
1050 | bdaddr_t bdaddr; | 1102 | bdaddr_t bdaddr; |
1051 | __u8 link_key[16]; | 1103 | __u8 link_key[HCI_LINK_KEY_SIZE]; |
1052 | __u8 key_type; | 1104 | __u8 key_type; |
1053 | } __packed; | 1105 | } __packed; |
1054 | 1106 | ||
@@ -1144,6 +1196,12 @@ struct extended_inquiry_info { | |||
1144 | __u8 data[240]; | 1196 | __u8 data[240]; |
1145 | } __packed; | 1197 | } __packed; |
1146 | 1198 | ||
1199 | #define HCI_EV_KEY_REFRESH_COMPLETE 0x30 | ||
1200 | struct hci_ev_key_refresh_complete { | ||
1201 | __u8 status; | ||
1202 | __le16 handle; | ||
1203 | } __packed; | ||
1204 | |||
1147 | #define HCI_EV_IO_CAPA_REQUEST 0x31 | 1205 | #define HCI_EV_IO_CAPA_REQUEST 0x31 |
1148 | struct hci_ev_io_capa_request { | 1206 | struct hci_ev_io_capa_request { |
1149 | bdaddr_t bdaddr; | 1207 | bdaddr_t bdaddr; |
@@ -1190,6 +1248,39 @@ struct hci_ev_le_meta { | |||
1190 | __u8 subevent; | 1248 | __u8 subevent; |
1191 | } __packed; | 1249 | } __packed; |
1192 | 1250 | ||
1251 | #define HCI_EV_PHY_LINK_COMPLETE 0x40 | ||
1252 | struct hci_ev_phy_link_complete { | ||
1253 | __u8 status; | ||
1254 | __u8 phy_handle; | ||
1255 | } __packed; | ||
1256 | |||
1257 | #define HCI_EV_CHANNEL_SELECTED 0x41 | ||
1258 | struct hci_ev_channel_selected { | ||
1259 | __u8 phy_handle; | ||
1260 | } __packed; | ||
1261 | |||
1262 | #define HCI_EV_DISCONN_PHY_LINK_COMPLETE 0x42 | ||
1263 | struct hci_ev_disconn_phy_link_complete { | ||
1264 | __u8 status; | ||
1265 | __u8 phy_handle; | ||
1266 | __u8 reason; | ||
1267 | } __packed; | ||
1268 | |||
1269 | #define HCI_EV_LOGICAL_LINK_COMPLETE 0x45 | ||
1270 | struct hci_ev_logical_link_complete { | ||
1271 | __u8 status; | ||
1272 | __le16 handle; | ||
1273 | __u8 phy_handle; | ||
1274 | __u8 flow_spec_id; | ||
1275 | } __packed; | ||
1276 | |||
1277 | #define HCI_EV_DISCONN_LOGICAL_LINK_COMPLETE 0x46 | ||
1278 | struct hci_ev_disconn_logical_link_complete { | ||
1279 | __u8 status; | ||
1280 | __le16 handle; | ||
1281 | __u8 reason; | ||
1282 | } __packed; | ||
1283 | |||
1193 | #define HCI_EV_NUM_COMP_BLOCKS 0x48 | 1284 | #define HCI_EV_NUM_COMP_BLOCKS 0x48 |
1194 | struct hci_comp_blocks_info { | 1285 | struct hci_comp_blocks_info { |
1195 | __le16 handle; | 1286 | __le16 handle; |
@@ -1290,7 +1381,6 @@ struct hci_sco_hdr { | |||
1290 | __u8 dlen; | 1381 | __u8 dlen; |
1291 | } __packed; | 1382 | } __packed; |
1292 | 1383 | ||
1293 | #include <linux/skbuff.h> | ||
1294 | static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb) | 1384 | static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb) |
1295 | { | 1385 | { |
1296 | return (struct hci_event_hdr *) skb->data; | 1386 | return (struct hci_event_hdr *) skb->data; |
@@ -1307,12 +1397,12 @@ static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb) | |||
1307 | } | 1397 | } |
1308 | 1398 | ||
1309 | /* Command opcode pack/unpack */ | 1399 | /* Command opcode pack/unpack */ |
1310 | #define hci_opcode_pack(ogf, ocf) (__u16) ((ocf & 0x03ff)|(ogf << 10)) | 1400 | #define hci_opcode_pack(ogf, ocf) ((__u16) ((ocf & 0x03ff)|(ogf << 10))) |
1311 | #define hci_opcode_ogf(op) (op >> 10) | 1401 | #define hci_opcode_ogf(op) (op >> 10) |
1312 | #define hci_opcode_ocf(op) (op & 0x03ff) | 1402 | #define hci_opcode_ocf(op) (op & 0x03ff) |
1313 | 1403 | ||
1314 | /* ACL handle and flags pack/unpack */ | 1404 | /* ACL handle and flags pack/unpack */ |
1315 | #define hci_handle_pack(h, f) (__u16) ((h & 0x0fff)|(f << 12)) | 1405 | #define hci_handle_pack(h, f) ((__u16) ((h & 0x0fff)|(f << 12))) |
1316 | #define hci_handle(h) (h & 0x0fff) | 1406 | #define hci_handle(h) (h & 0x0fff) |
1317 | #define hci_flags(h) (h >> 12) | 1407 | #define hci_flags(h) (h >> 12) |
1318 | 1408 | ||
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 9fc7728f94e4..475b8c04ba52 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h | |||
@@ -25,7 +25,6 @@ | |||
25 | #ifndef __HCI_CORE_H | 25 | #ifndef __HCI_CORE_H |
26 | #define __HCI_CORE_H | 26 | #define __HCI_CORE_H |
27 | 27 | ||
28 | #include <linux/interrupt.h> | ||
29 | #include <net/bluetooth/hci.h> | 28 | #include <net/bluetooth/hci.h> |
30 | 29 | ||
31 | /* HCI priority */ | 30 | /* HCI priority */ |
@@ -65,7 +64,7 @@ struct discovery_state { | |||
65 | DISCOVERY_RESOLVING, | 64 | DISCOVERY_RESOLVING, |
66 | DISCOVERY_STOPPING, | 65 | DISCOVERY_STOPPING, |
67 | } state; | 66 | } state; |
68 | struct list_head all; /* All devices found during inquiry */ | 67 | struct list_head all; /* All devices found during inquiry */ |
69 | struct list_head unknown; /* Name state not known */ | 68 | struct list_head unknown; /* Name state not known */ |
70 | struct list_head resolve; /* Name needs to be resolved */ | 69 | struct list_head resolve; /* Name needs to be resolved */ |
71 | __u32 timestamp; | 70 | __u32 timestamp; |
@@ -105,7 +104,7 @@ struct link_key { | |||
105 | struct list_head list; | 104 | struct list_head list; |
106 | bdaddr_t bdaddr; | 105 | bdaddr_t bdaddr; |
107 | u8 type; | 106 | u8 type; |
108 | u8 val[16]; | 107 | u8 val[HCI_LINK_KEY_SIZE]; |
109 | u8 pin_len; | 108 | u8 pin_len; |
110 | }; | 109 | }; |
111 | 110 | ||
@@ -333,6 +332,7 @@ struct hci_conn { | |||
333 | void *l2cap_data; | 332 | void *l2cap_data; |
334 | void *sco_data; | 333 | void *sco_data; |
335 | void *smp_conn; | 334 | void *smp_conn; |
335 | struct amp_mgr *amp_mgr; | ||
336 | 336 | ||
337 | struct hci_conn *link; | 337 | struct hci_conn *link; |
338 | 338 | ||
@@ -360,7 +360,8 @@ extern int l2cap_connect_cfm(struct hci_conn *hcon, u8 status); | |||
360 | extern int l2cap_disconn_ind(struct hci_conn *hcon); | 360 | extern int l2cap_disconn_ind(struct hci_conn *hcon); |
361 | extern int l2cap_disconn_cfm(struct hci_conn *hcon, u8 reason); | 361 | extern int l2cap_disconn_cfm(struct hci_conn *hcon, u8 reason); |
362 | extern int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt); | 362 | extern int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt); |
363 | extern int l2cap_recv_acldata(struct hci_conn *hcon, struct sk_buff *skb, u16 flags); | 363 | extern int l2cap_recv_acldata(struct hci_conn *hcon, struct sk_buff *skb, |
364 | u16 flags); | ||
364 | 365 | ||
365 | extern int sco_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr); | 366 | extern int sco_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr); |
366 | extern int sco_connect_cfm(struct hci_conn *hcon, __u8 status); | 367 | extern int sco_connect_cfm(struct hci_conn *hcon, __u8 status); |
@@ -429,8 +430,8 @@ enum { | |||
429 | static inline bool hci_conn_ssp_enabled(struct hci_conn *conn) | 430 | static inline bool hci_conn_ssp_enabled(struct hci_conn *conn) |
430 | { | 431 | { |
431 | struct hci_dev *hdev = conn->hdev; | 432 | struct hci_dev *hdev = conn->hdev; |
432 | return (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) && | 433 | return test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) && |
433 | test_bit(HCI_CONN_SSP_ENABLED, &conn->flags)); | 434 | test_bit(HCI_CONN_SSP_ENABLED, &conn->flags); |
434 | } | 435 | } |
435 | 436 | ||
436 | static inline void hci_conn_hash_init(struct hci_dev *hdev) | 437 | static inline void hci_conn_hash_init(struct hci_dev *hdev) |
@@ -586,18 +587,24 @@ void hci_conn_put_device(struct hci_conn *conn); | |||
586 | 587 | ||
587 | static inline void hci_conn_hold(struct hci_conn *conn) | 588 | static inline void hci_conn_hold(struct hci_conn *conn) |
588 | { | 589 | { |
590 | BT_DBG("hcon %p refcnt %d -> %d", conn, atomic_read(&conn->refcnt), | ||
591 | atomic_read(&conn->refcnt) + 1); | ||
592 | |||
589 | atomic_inc(&conn->refcnt); | 593 | atomic_inc(&conn->refcnt); |
590 | cancel_delayed_work(&conn->disc_work); | 594 | cancel_delayed_work(&conn->disc_work); |
591 | } | 595 | } |
592 | 596 | ||
593 | static inline void hci_conn_put(struct hci_conn *conn) | 597 | static inline void hci_conn_put(struct hci_conn *conn) |
594 | { | 598 | { |
599 | BT_DBG("hcon %p refcnt %d -> %d", conn, atomic_read(&conn->refcnt), | ||
600 | atomic_read(&conn->refcnt) - 1); | ||
601 | |||
595 | if (atomic_dec_and_test(&conn->refcnt)) { | 602 | if (atomic_dec_and_test(&conn->refcnt)) { |
596 | unsigned long timeo; | 603 | unsigned long timeo; |
597 | if (conn->type == ACL_LINK || conn->type == LE_LINK) { | 604 | if (conn->type == ACL_LINK || conn->type == LE_LINK) { |
598 | del_timer(&conn->idle_timer); | 605 | del_timer(&conn->idle_timer); |
599 | if (conn->state == BT_CONNECTED) { | 606 | if (conn->state == BT_CONNECTED) { |
600 | timeo = msecs_to_jiffies(conn->disc_timeout); | 607 | timeo = conn->disc_timeout; |
601 | if (!conn->out) | 608 | if (!conn->out) |
602 | timeo *= 2; | 609 | timeo *= 2; |
603 | } else { | 610 | } else { |
@@ -640,6 +647,19 @@ static inline void hci_set_drvdata(struct hci_dev *hdev, void *data) | |||
640 | dev_set_drvdata(&hdev->dev, data); | 647 | dev_set_drvdata(&hdev->dev, data); |
641 | } | 648 | } |
642 | 649 | ||
650 | /* hci_dev_list shall be locked */ | ||
651 | static inline uint8_t __hci_num_ctrl(void) | ||
652 | { | ||
653 | uint8_t count = 0; | ||
654 | struct list_head *p; | ||
655 | |||
656 | list_for_each(p, &hci_dev_list) { | ||
657 | count++; | ||
658 | } | ||
659 | |||
660 | return count; | ||
661 | } | ||
662 | |||
643 | struct hci_dev *hci_dev_get(int index); | 663 | struct hci_dev *hci_dev_get(int index); |
644 | struct hci_dev *hci_get_route(bdaddr_t *src, bdaddr_t *dst); | 664 | struct hci_dev *hci_get_route(bdaddr_t *src, bdaddr_t *dst); |
645 | 665 | ||
@@ -661,7 +681,8 @@ int hci_get_conn_info(struct hci_dev *hdev, void __user *arg); | |||
661 | int hci_get_auth_info(struct hci_dev *hdev, void __user *arg); | 681 | int hci_get_auth_info(struct hci_dev *hdev, void __user *arg); |
662 | int hci_inquiry(void __user *arg); | 682 | int hci_inquiry(void __user *arg); |
663 | 683 | ||
664 | struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr); | 684 | struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, |
685 | bdaddr_t *bdaddr); | ||
665 | int hci_blacklist_clear(struct hci_dev *hdev); | 686 | int hci_blacklist_clear(struct hci_dev *hdev); |
666 | int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type); | 687 | int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type); |
667 | int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type); | 688 | int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type); |
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h index 1c7d1cd5e679..a7679f8913d2 100644 --- a/include/net/bluetooth/l2cap.h +++ b/include/net/bluetooth/l2cap.h | |||
@@ -40,11 +40,11 @@ | |||
40 | #define L2CAP_DEFAULT_MONITOR_TO 12000 /* 12 seconds */ | 40 | #define L2CAP_DEFAULT_MONITOR_TO 12000 /* 12 seconds */ |
41 | #define L2CAP_DEFAULT_MAX_PDU_SIZE 1009 /* Sized for 3-DH5 packet */ | 41 | #define L2CAP_DEFAULT_MAX_PDU_SIZE 1009 /* Sized for 3-DH5 packet */ |
42 | #define L2CAP_DEFAULT_ACK_TO 200 | 42 | #define L2CAP_DEFAULT_ACK_TO 200 |
43 | #define L2CAP_LE_DEFAULT_MTU 23 | ||
44 | #define L2CAP_DEFAULT_MAX_SDU_SIZE 0xFFFF | 43 | #define L2CAP_DEFAULT_MAX_SDU_SIZE 0xFFFF |
45 | #define L2CAP_DEFAULT_SDU_ITIME 0xFFFFFFFF | 44 | #define L2CAP_DEFAULT_SDU_ITIME 0xFFFFFFFF |
46 | #define L2CAP_DEFAULT_ACC_LAT 0xFFFFFFFF | 45 | #define L2CAP_DEFAULT_ACC_LAT 0xFFFFFFFF |
47 | #define L2CAP_BREDR_MAX_PAYLOAD 1019 /* 3-DH5 packet */ | 46 | #define L2CAP_BREDR_MAX_PAYLOAD 1019 /* 3-DH5 packet */ |
47 | #define L2CAP_LE_MIN_MTU 23 | ||
48 | 48 | ||
49 | #define L2CAP_DISC_TIMEOUT msecs_to_jiffies(100) | 49 | #define L2CAP_DISC_TIMEOUT msecs_to_jiffies(100) |
50 | #define L2CAP_DISC_REJ_TIMEOUT msecs_to_jiffies(5000) | 50 | #define L2CAP_DISC_REJ_TIMEOUT msecs_to_jiffies(5000) |
@@ -52,6 +52,8 @@ | |||
52 | #define L2CAP_CONN_TIMEOUT msecs_to_jiffies(40000) | 52 | #define L2CAP_CONN_TIMEOUT msecs_to_jiffies(40000) |
53 | #define L2CAP_INFO_TIMEOUT msecs_to_jiffies(4000) | 53 | #define L2CAP_INFO_TIMEOUT msecs_to_jiffies(4000) |
54 | 54 | ||
55 | #define L2CAP_A2MP_DEFAULT_MTU 670 | ||
56 | |||
55 | /* L2CAP socket address */ | 57 | /* L2CAP socket address */ |
56 | struct sockaddr_l2 { | 58 | struct sockaddr_l2 { |
57 | sa_family_t l2_family; | 59 | sa_family_t l2_family; |
@@ -229,9 +231,14 @@ struct l2cap_conn_rsp { | |||
229 | __le16 status; | 231 | __le16 status; |
230 | } __packed; | 232 | } __packed; |
231 | 233 | ||
234 | /* protocol/service multiplexer (PSM) */ | ||
235 | #define L2CAP_PSM_SDP 0x0001 | ||
236 | #define L2CAP_PSM_RFCOMM 0x0003 | ||
237 | |||
232 | /* channel indentifier */ | 238 | /* channel indentifier */ |
233 | #define L2CAP_CID_SIGNALING 0x0001 | 239 | #define L2CAP_CID_SIGNALING 0x0001 |
234 | #define L2CAP_CID_CONN_LESS 0x0002 | 240 | #define L2CAP_CID_CONN_LESS 0x0002 |
241 | #define L2CAP_CID_A2MP 0x0003 | ||
235 | #define L2CAP_CID_LE_DATA 0x0004 | 242 | #define L2CAP_CID_LE_DATA 0x0004 |
236 | #define L2CAP_CID_LE_SIGNALING 0x0005 | 243 | #define L2CAP_CID_LE_SIGNALING 0x0005 |
237 | #define L2CAP_CID_SMP 0x0006 | 244 | #define L2CAP_CID_SMP 0x0006 |
@@ -271,6 +278,9 @@ struct l2cap_conf_rsp { | |||
271 | #define L2CAP_CONF_PENDING 0x0004 | 278 | #define L2CAP_CONF_PENDING 0x0004 |
272 | #define L2CAP_CONF_EFS_REJECT 0x0005 | 279 | #define L2CAP_CONF_EFS_REJECT 0x0005 |
273 | 280 | ||
281 | /* configuration req/rsp continuation flag */ | ||
282 | #define L2CAP_CONF_FLAG_CONTINUATION 0x0001 | ||
283 | |||
274 | struct l2cap_conf_opt { | 284 | struct l2cap_conf_opt { |
275 | __u8 type; | 285 | __u8 type; |
276 | __u8 len; | 286 | __u8 len; |
@@ -419,11 +429,6 @@ struct l2cap_seq_list { | |||
419 | #define L2CAP_SEQ_LIST_CLEAR 0xFFFF | 429 | #define L2CAP_SEQ_LIST_CLEAR 0xFFFF |
420 | #define L2CAP_SEQ_LIST_TAIL 0x8000 | 430 | #define L2CAP_SEQ_LIST_TAIL 0x8000 |
421 | 431 | ||
422 | struct srej_list { | ||
423 | __u16 tx_seq; | ||
424 | struct list_head list; | ||
425 | }; | ||
426 | |||
427 | struct l2cap_chan { | 432 | struct l2cap_chan { |
428 | struct sock *sk; | 433 | struct sock *sk; |
429 | 434 | ||
@@ -459,6 +464,7 @@ struct l2cap_chan { | |||
459 | 464 | ||
460 | __u16 tx_win; | 465 | __u16 tx_win; |
461 | __u16 tx_win_max; | 466 | __u16 tx_win_max; |
467 | __u16 ack_win; | ||
462 | __u8 max_tx; | 468 | __u8 max_tx; |
463 | __u16 retrans_timeout; | 469 | __u16 retrans_timeout; |
464 | __u16 monitor_timeout; | 470 | __u16 monitor_timeout; |
@@ -475,14 +481,12 @@ struct l2cap_chan { | |||
475 | __u16 expected_ack_seq; | 481 | __u16 expected_ack_seq; |
476 | __u16 expected_tx_seq; | 482 | __u16 expected_tx_seq; |
477 | __u16 buffer_seq; | 483 | __u16 buffer_seq; |
478 | __u16 buffer_seq_srej; | ||
479 | __u16 srej_save_reqseq; | 484 | __u16 srej_save_reqseq; |
480 | __u16 last_acked_seq; | 485 | __u16 last_acked_seq; |
481 | __u16 frames_sent; | 486 | __u16 frames_sent; |
482 | __u16 unacked_frames; | 487 | __u16 unacked_frames; |
483 | __u8 retry_count; | 488 | __u8 retry_count; |
484 | __u16 srej_queue_next; | 489 | __u16 srej_queue_next; |
485 | __u8 num_acked; | ||
486 | __u16 sdu_len; | 490 | __u16 sdu_len; |
487 | struct sk_buff *sdu; | 491 | struct sk_buff *sdu; |
488 | struct sk_buff *sdu_last_frag; | 492 | struct sk_buff *sdu_last_frag; |
@@ -515,7 +519,6 @@ struct l2cap_chan { | |||
515 | struct sk_buff_head srej_q; | 519 | struct sk_buff_head srej_q; |
516 | struct l2cap_seq_list srej_list; | 520 | struct l2cap_seq_list srej_list; |
517 | struct l2cap_seq_list retrans_list; | 521 | struct l2cap_seq_list retrans_list; |
518 | struct list_head srej_l; | ||
519 | 522 | ||
520 | struct list_head list; | 523 | struct list_head list; |
521 | struct list_head global_l; | 524 | struct list_head global_l; |
@@ -528,10 +531,14 @@ struct l2cap_chan { | |||
528 | struct l2cap_ops { | 531 | struct l2cap_ops { |
529 | char *name; | 532 | char *name; |
530 | 533 | ||
531 | struct l2cap_chan *(*new_connection) (void *data); | 534 | struct l2cap_chan *(*new_connection) (struct l2cap_chan *chan); |
532 | int (*recv) (void *data, struct sk_buff *skb); | 535 | int (*recv) (struct l2cap_chan * chan, |
533 | void (*close) (void *data); | 536 | struct sk_buff *skb); |
534 | void (*state_change) (void *data, int state); | 537 | void (*teardown) (struct l2cap_chan *chan, int err); |
538 | void (*close) (struct l2cap_chan *chan); | ||
539 | void (*state_change) (struct l2cap_chan *chan, | ||
540 | int state); | ||
541 | void (*ready) (struct l2cap_chan *chan); | ||
535 | struct sk_buff *(*alloc_skb) (struct l2cap_chan *chan, | 542 | struct sk_buff *(*alloc_skb) (struct l2cap_chan *chan, |
536 | unsigned long len, int nb); | 543 | unsigned long len, int nb); |
537 | }; | 544 | }; |
@@ -575,6 +582,7 @@ struct l2cap_conn { | |||
575 | #define L2CAP_CHAN_RAW 1 | 582 | #define L2CAP_CHAN_RAW 1 |
576 | #define L2CAP_CHAN_CONN_LESS 2 | 583 | #define L2CAP_CHAN_CONN_LESS 2 |
577 | #define L2CAP_CHAN_CONN_ORIENTED 3 | 584 | #define L2CAP_CHAN_CONN_ORIENTED 3 |
585 | #define L2CAP_CHAN_CONN_FIX_A2MP 4 | ||
578 | 586 | ||
579 | /* ----- L2CAP socket info ----- */ | 587 | /* ----- L2CAP socket info ----- */ |
580 | #define l2cap_pi(sk) ((struct l2cap_pinfo *) sk) | 588 | #define l2cap_pi(sk) ((struct l2cap_pinfo *) sk) |
@@ -597,6 +605,7 @@ enum { | |||
597 | CONF_EWS_RECV, | 605 | CONF_EWS_RECV, |
598 | CONF_LOC_CONF_PEND, | 606 | CONF_LOC_CONF_PEND, |
599 | CONF_REM_CONF_PEND, | 607 | CONF_REM_CONF_PEND, |
608 | CONF_NOT_COMPLETE, | ||
600 | }; | 609 | }; |
601 | 610 | ||
602 | #define L2CAP_CONF_MAX_CONF_REQ 2 | 611 | #define L2CAP_CONF_MAX_CONF_REQ 2 |
@@ -664,11 +673,15 @@ enum { | |||
664 | 673 | ||
665 | static inline void l2cap_chan_hold(struct l2cap_chan *c) | 674 | static inline void l2cap_chan_hold(struct l2cap_chan *c) |
666 | { | 675 | { |
676 | BT_DBG("chan %p orig refcnt %d", c, atomic_read(&c->refcnt)); | ||
677 | |||
667 | atomic_inc(&c->refcnt); | 678 | atomic_inc(&c->refcnt); |
668 | } | 679 | } |
669 | 680 | ||
670 | static inline void l2cap_chan_put(struct l2cap_chan *c) | 681 | static inline void l2cap_chan_put(struct l2cap_chan *c) |
671 | { | 682 | { |
683 | BT_DBG("chan %p orig refcnt %d", c, atomic_read(&c->refcnt)); | ||
684 | |||
672 | if (atomic_dec_and_test(&c->refcnt)) | 685 | if (atomic_dec_and_test(&c->refcnt)) |
673 | kfree(c); | 686 | kfree(c); |
674 | } | 687 | } |
@@ -713,11 +726,7 @@ static inline bool l2cap_clear_timer(struct l2cap_chan *chan, | |||
713 | 726 | ||
714 | #define __set_chan_timer(c, t) l2cap_set_timer(c, &c->chan_timer, (t)) | 727 | #define __set_chan_timer(c, t) l2cap_set_timer(c, &c->chan_timer, (t)) |
715 | #define __clear_chan_timer(c) l2cap_clear_timer(c, &c->chan_timer) | 728 | #define __clear_chan_timer(c) l2cap_clear_timer(c, &c->chan_timer) |
716 | #define __set_retrans_timer(c) l2cap_set_timer(c, &c->retrans_timer, \ | ||
717 | msecs_to_jiffies(L2CAP_DEFAULT_RETRANS_TO)); | ||
718 | #define __clear_retrans_timer(c) l2cap_clear_timer(c, &c->retrans_timer) | 729 | #define __clear_retrans_timer(c) l2cap_clear_timer(c, &c->retrans_timer) |
719 | #define __set_monitor_timer(c) l2cap_set_timer(c, &c->monitor_timer, \ | ||
720 | msecs_to_jiffies(L2CAP_DEFAULT_MONITOR_TO)); | ||
721 | #define __clear_monitor_timer(c) l2cap_clear_timer(c, &c->monitor_timer) | 730 | #define __clear_monitor_timer(c) l2cap_clear_timer(c, &c->monitor_timer) |
722 | #define __set_ack_timer(c) l2cap_set_timer(c, &chan->ack_timer, \ | 731 | #define __set_ack_timer(c) l2cap_set_timer(c, &chan->ack_timer, \ |
723 | msecs_to_jiffies(L2CAP_DEFAULT_ACK_TO)); | 732 | msecs_to_jiffies(L2CAP_DEFAULT_ACK_TO)); |
@@ -736,173 +745,17 @@ static inline __u16 __next_seq(struct l2cap_chan *chan, __u16 seq) | |||
736 | return (seq + 1) % (chan->tx_win_max + 1); | 745 | return (seq + 1) % (chan->tx_win_max + 1); |
737 | } | 746 | } |
738 | 747 | ||
739 | static inline int l2cap_tx_window_full(struct l2cap_chan *ch) | 748 | static inline struct l2cap_chan *l2cap_chan_no_new_connection(struct l2cap_chan *chan) |
740 | { | ||
741 | int sub; | ||
742 | |||
743 | sub = (ch->next_tx_seq - ch->expected_ack_seq) % 64; | ||
744 | |||
745 | if (sub < 0) | ||
746 | sub += 64; | ||
747 | |||
748 | return sub == ch->remote_tx_win; | ||
749 | } | ||
750 | |||
751 | static inline __u16 __get_reqseq(struct l2cap_chan *chan, __u32 ctrl) | ||
752 | { | ||
753 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
754 | return (ctrl & L2CAP_EXT_CTRL_REQSEQ) >> | ||
755 | L2CAP_EXT_CTRL_REQSEQ_SHIFT; | ||
756 | else | ||
757 | return (ctrl & L2CAP_CTRL_REQSEQ) >> L2CAP_CTRL_REQSEQ_SHIFT; | ||
758 | } | ||
759 | |||
760 | static inline __u32 __set_reqseq(struct l2cap_chan *chan, __u32 reqseq) | ||
761 | { | ||
762 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
763 | return (reqseq << L2CAP_EXT_CTRL_REQSEQ_SHIFT) & | ||
764 | L2CAP_EXT_CTRL_REQSEQ; | ||
765 | else | ||
766 | return (reqseq << L2CAP_CTRL_REQSEQ_SHIFT) & L2CAP_CTRL_REQSEQ; | ||
767 | } | ||
768 | |||
769 | static inline __u16 __get_txseq(struct l2cap_chan *chan, __u32 ctrl) | ||
770 | { | ||
771 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
772 | return (ctrl & L2CAP_EXT_CTRL_TXSEQ) >> | ||
773 | L2CAP_EXT_CTRL_TXSEQ_SHIFT; | ||
774 | else | ||
775 | return (ctrl & L2CAP_CTRL_TXSEQ) >> L2CAP_CTRL_TXSEQ_SHIFT; | ||
776 | } | ||
777 | |||
778 | static inline __u32 __set_txseq(struct l2cap_chan *chan, __u32 txseq) | ||
779 | { | ||
780 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
781 | return (txseq << L2CAP_EXT_CTRL_TXSEQ_SHIFT) & | ||
782 | L2CAP_EXT_CTRL_TXSEQ; | ||
783 | else | ||
784 | return (txseq << L2CAP_CTRL_TXSEQ_SHIFT) & L2CAP_CTRL_TXSEQ; | ||
785 | } | ||
786 | |||
787 | static inline bool __is_sframe(struct l2cap_chan *chan, __u32 ctrl) | ||
788 | { | ||
789 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
790 | return ctrl & L2CAP_EXT_CTRL_FRAME_TYPE; | ||
791 | else | ||
792 | return ctrl & L2CAP_CTRL_FRAME_TYPE; | ||
793 | } | ||
794 | |||
795 | static inline __u32 __set_sframe(struct l2cap_chan *chan) | ||
796 | { | ||
797 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
798 | return L2CAP_EXT_CTRL_FRAME_TYPE; | ||
799 | else | ||
800 | return L2CAP_CTRL_FRAME_TYPE; | ||
801 | } | ||
802 | |||
803 | static inline __u8 __get_ctrl_sar(struct l2cap_chan *chan, __u32 ctrl) | ||
804 | { | 749 | { |
805 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | 750 | return NULL; |
806 | return (ctrl & L2CAP_EXT_CTRL_SAR) >> L2CAP_EXT_CTRL_SAR_SHIFT; | ||
807 | else | ||
808 | return (ctrl & L2CAP_CTRL_SAR) >> L2CAP_CTRL_SAR_SHIFT; | ||
809 | } | 751 | } |
810 | 752 | ||
811 | static inline __u32 __set_ctrl_sar(struct l2cap_chan *chan, __u32 sar) | 753 | static inline void l2cap_chan_no_teardown(struct l2cap_chan *chan, int err) |
812 | { | 754 | { |
813 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
814 | return (sar << L2CAP_EXT_CTRL_SAR_SHIFT) & L2CAP_EXT_CTRL_SAR; | ||
815 | else | ||
816 | return (sar << L2CAP_CTRL_SAR_SHIFT) & L2CAP_CTRL_SAR; | ||
817 | } | 755 | } |
818 | 756 | ||
819 | static inline bool __is_sar_start(struct l2cap_chan *chan, __u32 ctrl) | 757 | static inline void l2cap_chan_no_ready(struct l2cap_chan *chan) |
820 | { | 758 | { |
821 | return __get_ctrl_sar(chan, ctrl) == L2CAP_SAR_START; | ||
822 | } | ||
823 | |||
824 | static inline __u32 __get_sar_mask(struct l2cap_chan *chan) | ||
825 | { | ||
826 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
827 | return L2CAP_EXT_CTRL_SAR; | ||
828 | else | ||
829 | return L2CAP_CTRL_SAR; | ||
830 | } | ||
831 | |||
832 | static inline __u8 __get_ctrl_super(struct l2cap_chan *chan, __u32 ctrl) | ||
833 | { | ||
834 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
835 | return (ctrl & L2CAP_EXT_CTRL_SUPERVISE) >> | ||
836 | L2CAP_EXT_CTRL_SUPER_SHIFT; | ||
837 | else | ||
838 | return (ctrl & L2CAP_CTRL_SUPERVISE) >> L2CAP_CTRL_SUPER_SHIFT; | ||
839 | } | ||
840 | |||
841 | static inline __u32 __set_ctrl_super(struct l2cap_chan *chan, __u32 super) | ||
842 | { | ||
843 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
844 | return (super << L2CAP_EXT_CTRL_SUPER_SHIFT) & | ||
845 | L2CAP_EXT_CTRL_SUPERVISE; | ||
846 | else | ||
847 | return (super << L2CAP_CTRL_SUPER_SHIFT) & | ||
848 | L2CAP_CTRL_SUPERVISE; | ||
849 | } | ||
850 | |||
851 | static inline __u32 __set_ctrl_final(struct l2cap_chan *chan) | ||
852 | { | ||
853 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
854 | return L2CAP_EXT_CTRL_FINAL; | ||
855 | else | ||
856 | return L2CAP_CTRL_FINAL; | ||
857 | } | ||
858 | |||
859 | static inline bool __is_ctrl_final(struct l2cap_chan *chan, __u32 ctrl) | ||
860 | { | ||
861 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
862 | return ctrl & L2CAP_EXT_CTRL_FINAL; | ||
863 | else | ||
864 | return ctrl & L2CAP_CTRL_FINAL; | ||
865 | } | ||
866 | |||
867 | static inline __u32 __set_ctrl_poll(struct l2cap_chan *chan) | ||
868 | { | ||
869 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
870 | return L2CAP_EXT_CTRL_POLL; | ||
871 | else | ||
872 | return L2CAP_CTRL_POLL; | ||
873 | } | ||
874 | |||
875 | static inline bool __is_ctrl_poll(struct l2cap_chan *chan, __u32 ctrl) | ||
876 | { | ||
877 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
878 | return ctrl & L2CAP_EXT_CTRL_POLL; | ||
879 | else | ||
880 | return ctrl & L2CAP_CTRL_POLL; | ||
881 | } | ||
882 | |||
883 | static inline __u32 __get_control(struct l2cap_chan *chan, void *p) | ||
884 | { | ||
885 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
886 | return get_unaligned_le32(p); | ||
887 | else | ||
888 | return get_unaligned_le16(p); | ||
889 | } | ||
890 | |||
891 | static inline void __put_control(struct l2cap_chan *chan, __u32 control, | ||
892 | void *p) | ||
893 | { | ||
894 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
895 | return put_unaligned_le32(control, p); | ||
896 | else | ||
897 | return put_unaligned_le16(control, p); | ||
898 | } | ||
899 | |||
900 | static inline __u8 __ctrl_size(struct l2cap_chan *chan) | ||
901 | { | ||
902 | if (test_bit(FLAG_EXT_CTRL, &chan->flags)) | ||
903 | return L2CAP_EXT_HDR_SIZE - L2CAP_HDR_SIZE; | ||
904 | else | ||
905 | return L2CAP_ENH_HDR_SIZE - L2CAP_HDR_SIZE; | ||
906 | } | 759 | } |
907 | 760 | ||
908 | extern bool disable_ertm; | 761 | extern bool disable_ertm; |
@@ -926,5 +779,8 @@ int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len, | |||
926 | void l2cap_chan_busy(struct l2cap_chan *chan, int busy); | 779 | void l2cap_chan_busy(struct l2cap_chan *chan, int busy); |
927 | int l2cap_chan_check_security(struct l2cap_chan *chan); | 780 | int l2cap_chan_check_security(struct l2cap_chan *chan); |
928 | void l2cap_chan_set_defaults(struct l2cap_chan *chan); | 781 | void l2cap_chan_set_defaults(struct l2cap_chan *chan); |
782 | int l2cap_ertm_init(struct l2cap_chan *chan); | ||
783 | void l2cap_chan_add(struct l2cap_conn *conn, struct l2cap_chan *chan); | ||
784 | void l2cap_chan_del(struct l2cap_chan *chan, int err); | ||
929 | 785 | ||
930 | #endif /* __L2CAP_H */ | 786 | #endif /* __L2CAP_H */ |
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index 23fd0546fccb..4348ee8bda69 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h | |||
@@ -444,7 +444,7 @@ struct mgmt_ev_auth_failed { | |||
444 | struct mgmt_ev_device_found { | 444 | struct mgmt_ev_device_found { |
445 | struct mgmt_addr_info addr; | 445 | struct mgmt_addr_info addr; |
446 | __s8 rssi; | 446 | __s8 rssi; |
447 | __u8 flags[4]; | 447 | __le32 flags; |
448 | __le16 eir_len; | 448 | __le16 eir_len; |
449 | __u8 eir[0]; | 449 | __u8 eir[0]; |
450 | } __packed; | 450 | } __packed; |
diff --git a/include/net/caif/caif_hsi.h b/include/net/caif/caif_hsi.h index 439dadc8102f..bcb9cc3ce98b 100644 --- a/include/net/caif/caif_hsi.h +++ b/include/net/caif/caif_hsi.h | |||
@@ -93,25 +93,25 @@ struct cfhsi_desc { | |||
93 | #endif | 93 | #endif |
94 | 94 | ||
95 | /* Structure implemented by the CAIF HSI driver. */ | 95 | /* Structure implemented by the CAIF HSI driver. */ |
96 | struct cfhsi_drv { | 96 | struct cfhsi_cb_ops { |
97 | void (*tx_done_cb) (struct cfhsi_drv *drv); | 97 | void (*tx_done_cb) (struct cfhsi_cb_ops *drv); |
98 | void (*rx_done_cb) (struct cfhsi_drv *drv); | 98 | void (*rx_done_cb) (struct cfhsi_cb_ops *drv); |
99 | void (*wake_up_cb) (struct cfhsi_drv *drv); | 99 | void (*wake_up_cb) (struct cfhsi_cb_ops *drv); |
100 | void (*wake_down_cb) (struct cfhsi_drv *drv); | 100 | void (*wake_down_cb) (struct cfhsi_cb_ops *drv); |
101 | }; | 101 | }; |
102 | 102 | ||
103 | /* Structure implemented by HSI device. */ | 103 | /* Structure implemented by HSI device. */ |
104 | struct cfhsi_dev { | 104 | struct cfhsi_ops { |
105 | int (*cfhsi_up) (struct cfhsi_dev *dev); | 105 | int (*cfhsi_up) (struct cfhsi_ops *dev); |
106 | int (*cfhsi_down) (struct cfhsi_dev *dev); | 106 | int (*cfhsi_down) (struct cfhsi_ops *dev); |
107 | int (*cfhsi_tx) (u8 *ptr, int len, struct cfhsi_dev *dev); | 107 | int (*cfhsi_tx) (u8 *ptr, int len, struct cfhsi_ops *dev); |
108 | int (*cfhsi_rx) (u8 *ptr, int len, struct cfhsi_dev *dev); | 108 | int (*cfhsi_rx) (u8 *ptr, int len, struct cfhsi_ops *dev); |
109 | int (*cfhsi_wake_up) (struct cfhsi_dev *dev); | 109 | int (*cfhsi_wake_up) (struct cfhsi_ops *dev); |
110 | int (*cfhsi_wake_down) (struct cfhsi_dev *dev); | 110 | int (*cfhsi_wake_down) (struct cfhsi_ops *dev); |
111 | int (*cfhsi_get_peer_wake) (struct cfhsi_dev *dev, bool *status); | 111 | int (*cfhsi_get_peer_wake) (struct cfhsi_ops *dev, bool *status); |
112 | int (*cfhsi_fifo_occupancy)(struct cfhsi_dev *dev, size_t *occupancy); | 112 | int (*cfhsi_fifo_occupancy) (struct cfhsi_ops *dev, size_t *occupancy); |
113 | int (*cfhsi_rx_cancel)(struct cfhsi_dev *dev); | 113 | int (*cfhsi_rx_cancel)(struct cfhsi_ops *dev); |
114 | struct cfhsi_drv *drv; | 114 | struct cfhsi_cb_ops *cb_ops; |
115 | }; | 115 | }; |
116 | 116 | ||
117 | /* Structure holds status of received CAIF frames processing */ | 117 | /* Structure holds status of received CAIF frames processing */ |
@@ -132,17 +132,26 @@ enum { | |||
132 | CFHSI_PRIO_LAST, | 132 | CFHSI_PRIO_LAST, |
133 | }; | 133 | }; |
134 | 134 | ||
135 | struct cfhsi_config { | ||
136 | u32 inactivity_timeout; | ||
137 | u32 aggregation_timeout; | ||
138 | u32 head_align; | ||
139 | u32 tail_align; | ||
140 | u32 q_high_mark; | ||
141 | u32 q_low_mark; | ||
142 | }; | ||
143 | |||
135 | /* Structure implemented by CAIF HSI drivers. */ | 144 | /* Structure implemented by CAIF HSI drivers. */ |
136 | struct cfhsi { | 145 | struct cfhsi { |
137 | struct caif_dev_common cfdev; | 146 | struct caif_dev_common cfdev; |
138 | struct net_device *ndev; | 147 | struct net_device *ndev; |
139 | struct platform_device *pdev; | 148 | struct platform_device *pdev; |
140 | struct sk_buff_head qhead[CFHSI_PRIO_LAST]; | 149 | struct sk_buff_head qhead[CFHSI_PRIO_LAST]; |
141 | struct cfhsi_drv drv; | 150 | struct cfhsi_cb_ops cb_ops; |
142 | struct cfhsi_dev *dev; | 151 | struct cfhsi_ops *ops; |
143 | int tx_state; | 152 | int tx_state; |
144 | struct cfhsi_rx_state rx_state; | 153 | struct cfhsi_rx_state rx_state; |
145 | unsigned long inactivity_timeout; | 154 | struct cfhsi_config cfg; |
146 | int rx_len; | 155 | int rx_len; |
147 | u8 *rx_ptr; | 156 | u8 *rx_ptr; |
148 | u8 *tx_buf; | 157 | u8 *tx_buf; |
@@ -150,8 +159,6 @@ struct cfhsi { | |||
150 | u8 *rx_flip_buf; | 159 | u8 *rx_flip_buf; |
151 | spinlock_t lock; | 160 | spinlock_t lock; |
152 | int flow_off_sent; | 161 | int flow_off_sent; |
153 | u32 q_low_mark; | ||
154 | u32 q_high_mark; | ||
155 | struct list_head list; | 162 | struct list_head list; |
156 | struct work_struct wake_up_work; | 163 | struct work_struct wake_up_work; |
157 | struct work_struct wake_down_work; | 164 | struct work_struct wake_down_work; |
@@ -164,13 +171,31 @@ struct cfhsi { | |||
164 | struct timer_list rx_slowpath_timer; | 171 | struct timer_list rx_slowpath_timer; |
165 | 172 | ||
166 | /* TX aggregation */ | 173 | /* TX aggregation */ |
167 | unsigned long aggregation_timeout; | ||
168 | int aggregation_len; | 174 | int aggregation_len; |
169 | struct timer_list aggregation_timer; | 175 | struct timer_list aggregation_timer; |
170 | 176 | ||
171 | unsigned long bits; | 177 | unsigned long bits; |
172 | }; | 178 | }; |
173 | |||
174 | extern struct platform_driver cfhsi_driver; | 179 | extern struct platform_driver cfhsi_driver; |
175 | 180 | ||
181 | /** | ||
182 | * enum ifla_caif_hsi - CAIF HSI NetlinkRT parameters. | ||
183 | * @IFLA_CAIF_HSI_INACTIVITY_TOUT: Inactivity timeout before | ||
184 | * taking the HSI wakeline down, in milliseconds. | ||
185 | * When using RT Netlink to create, destroy or configure a CAIF HSI interface, | ||
186 | * enum ifla_caif_hsi is used to specify the configuration attributes. | ||
187 | */ | ||
188 | enum ifla_caif_hsi { | ||
189 | __IFLA_CAIF_HSI_UNSPEC, | ||
190 | __IFLA_CAIF_HSI_INACTIVITY_TOUT, | ||
191 | __IFLA_CAIF_HSI_AGGREGATION_TOUT, | ||
192 | __IFLA_CAIF_HSI_HEAD_ALIGN, | ||
193 | __IFLA_CAIF_HSI_TAIL_ALIGN, | ||
194 | __IFLA_CAIF_HSI_QHIGH_WATERMARK, | ||
195 | __IFLA_CAIF_HSI_QLOW_WATERMARK, | ||
196 | __IFLA_CAIF_HSI_MAX | ||
197 | }; | ||
198 | |||
199 | extern struct cfhsi_ops *cfhsi_get_ops(void); | ||
200 | |||
176 | #endif /* CAIF_HSI_H_ */ | 201 | #endif /* CAIF_HSI_H_ */ |
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 0289d4ce7070..493fa0c79005 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -70,11 +70,13 @@ | |||
70 | * | 70 | * |
71 | * @IEEE80211_BAND_2GHZ: 2.4GHz ISM band | 71 | * @IEEE80211_BAND_2GHZ: 2.4GHz ISM band |
72 | * @IEEE80211_BAND_5GHZ: around 5GHz band (4.9-5.7) | 72 | * @IEEE80211_BAND_5GHZ: around 5GHz band (4.9-5.7) |
73 | * @IEEE80211_BAND_60GHZ: around 60 GHz band (58.32 - 64.80 GHz) | ||
73 | * @IEEE80211_NUM_BANDS: number of defined bands | 74 | * @IEEE80211_NUM_BANDS: number of defined bands |
74 | */ | 75 | */ |
75 | enum ieee80211_band { | 76 | enum ieee80211_band { |
76 | IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ, | 77 | IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ, |
77 | IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ, | 78 | IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ, |
79 | IEEE80211_BAND_60GHZ = NL80211_BAND_60GHZ, | ||
78 | 80 | ||
79 | /* keep last */ | 81 | /* keep last */ |
80 | IEEE80211_NUM_BANDS | 82 | IEEE80211_NUM_BANDS |
@@ -211,6 +213,22 @@ struct ieee80211_sta_ht_cap { | |||
211 | }; | 213 | }; |
212 | 214 | ||
213 | /** | 215 | /** |
216 | * struct ieee80211_sta_vht_cap - STA's VHT capabilities | ||
217 | * | ||
218 | * This structure describes most essential parameters needed | ||
219 | * to describe 802.11ac VHT capabilities for an STA. | ||
220 | * | ||
221 | * @vht_supported: is VHT supported by the STA | ||
222 | * @cap: VHT capabilities map as described in 802.11ac spec | ||
223 | * @vht_mcs: Supported VHT MCS rates | ||
224 | */ | ||
225 | struct ieee80211_sta_vht_cap { | ||
226 | bool vht_supported; | ||
227 | u32 cap; /* use IEEE80211_VHT_CAP_ */ | ||
228 | struct ieee80211_vht_mcs_info vht_mcs; | ||
229 | }; | ||
230 | |||
231 | /** | ||
214 | * struct ieee80211_supported_band - frequency band definition | 232 | * struct ieee80211_supported_band - frequency band definition |
215 | * | 233 | * |
216 | * This structure describes a frequency band a wiphy | 234 | * This structure describes a frequency band a wiphy |
@@ -233,6 +251,7 @@ struct ieee80211_supported_band { | |||
233 | int n_channels; | 251 | int n_channels; |
234 | int n_bitrates; | 252 | int n_bitrates; |
235 | struct ieee80211_sta_ht_cap ht_cap; | 253 | struct ieee80211_sta_ht_cap ht_cap; |
254 | struct ieee80211_sta_vht_cap vht_cap; | ||
236 | }; | 255 | }; |
237 | 256 | ||
238 | /* | 257 | /* |
@@ -404,6 +423,8 @@ struct cfg80211_beacon_data { | |||
404 | * | 423 | * |
405 | * Used to configure an AP interface. | 424 | * Used to configure an AP interface. |
406 | * | 425 | * |
426 | * @channel: the channel to start the AP on | ||
427 | * @channel_type: the channel type to use | ||
407 | * @beacon: beacon data | 428 | * @beacon: beacon data |
408 | * @beacon_interval: beacon interval | 429 | * @beacon_interval: beacon interval |
409 | * @dtim_period: DTIM period | 430 | * @dtim_period: DTIM period |
@@ -417,6 +438,9 @@ struct cfg80211_beacon_data { | |||
417 | * @inactivity_timeout: time in seconds to determine station's inactivity. | 438 | * @inactivity_timeout: time in seconds to determine station's inactivity. |
418 | */ | 439 | */ |
419 | struct cfg80211_ap_settings { | 440 | struct cfg80211_ap_settings { |
441 | struct ieee80211_channel *channel; | ||
442 | enum nl80211_channel_type channel_type; | ||
443 | |||
420 | struct cfg80211_beacon_data beacon; | 444 | struct cfg80211_beacon_data beacon; |
421 | 445 | ||
422 | int beacon_interval, dtim_period; | 446 | int beacon_interval, dtim_period; |
@@ -556,11 +580,13 @@ enum station_info_flags { | |||
556 | * @RATE_INFO_FLAGS_MCS: @tx_bitrate_mcs filled | 580 | * @RATE_INFO_FLAGS_MCS: @tx_bitrate_mcs filled |
557 | * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 Mhz width transmission | 581 | * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 Mhz width transmission |
558 | * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval | 582 | * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval |
583 | * @RATE_INFO_FLAGS_60G: 60gHz MCS | ||
559 | */ | 584 | */ |
560 | enum rate_info_flags { | 585 | enum rate_info_flags { |
561 | RATE_INFO_FLAGS_MCS = 1<<0, | 586 | RATE_INFO_FLAGS_MCS = 1<<0, |
562 | RATE_INFO_FLAGS_40_MHZ_WIDTH = 1<<1, | 587 | RATE_INFO_FLAGS_40_MHZ_WIDTH = 1<<1, |
563 | RATE_INFO_FLAGS_SHORT_GI = 1<<2, | 588 | RATE_INFO_FLAGS_SHORT_GI = 1<<2, |
589 | RATE_INFO_FLAGS_60G = 1<<3, | ||
564 | }; | 590 | }; |
565 | 591 | ||
566 | /** | 592 | /** |
@@ -622,10 +648,10 @@ struct sta_bss_parameters { | |||
622 | * @llid: mesh local link id | 648 | * @llid: mesh local link id |
623 | * @plid: mesh peer link id | 649 | * @plid: mesh peer link id |
624 | * @plink_state: mesh peer link state | 650 | * @plink_state: mesh peer link state |
625 | * @signal: the signal strength, type depends on the wiphy's signal_type | 651 | * @signal: The signal strength, type depends on the wiphy's signal_type. |
626 | NOTE: For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_. | 652 | * For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_. |
627 | * @signal_avg: avg signal strength, type depends on the wiphy's signal_type | 653 | * @signal_avg: Average signal strength, type depends on the wiphy's signal_type. |
628 | NOTE: For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_. | 654 | * For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_. |
629 | * @txrate: current unicast bitrate from this station | 655 | * @txrate: current unicast bitrate from this station |
630 | * @rxrate: current unicast bitrate to this station | 656 | * @rxrate: current unicast bitrate to this station |
631 | * @rx_packets: packets received from this station | 657 | * @rx_packets: packets received from this station |
@@ -785,47 +811,101 @@ struct bss_parameters { | |||
785 | int ht_opmode; | 811 | int ht_opmode; |
786 | }; | 812 | }; |
787 | 813 | ||
788 | /* | 814 | /** |
789 | * struct mesh_config - 802.11s mesh configuration | 815 | * struct mesh_config - 802.11s mesh configuration |
790 | * | 816 | * |
791 | * These parameters can be changed while the mesh is active. | 817 | * These parameters can be changed while the mesh is active. |
818 | * | ||
819 | * @dot11MeshRetryTimeout: the initial retry timeout in millisecond units used | ||
820 | * by the Mesh Peering Open message | ||
821 | * @dot11MeshConfirmTimeout: the initial retry timeout in millisecond units | ||
822 | * used by the Mesh Peering Open message | ||
823 | * @dot11MeshHoldingTimeout: the confirm timeout in millisecond units used by | ||
824 | * the mesh peering management to close a mesh peering | ||
825 | * @dot11MeshMaxPeerLinks: the maximum number of peer links allowed on this | ||
826 | * mesh interface | ||
827 | * @dot11MeshMaxRetries: the maximum number of peer link open retries that can | ||
828 | * be sent to establish a new peer link instance in a mesh | ||
829 | * @dot11MeshTTL: the value of TTL field set at a source mesh STA | ||
830 | * @element_ttl: the value of TTL field set at a mesh STA for path selection | ||
831 | * elements | ||
832 | * @auto_open_plinks: whether we should automatically open peer links when we | ||
833 | * detect compatible mesh peers | ||
834 | * @dot11MeshNbrOffsetMaxNeighbor: the maximum number of neighbors to | ||
835 | * synchronize to for 11s default synchronization method | ||
836 | * @dot11MeshHWMPmaxPREQretries: the number of action frames containing a PREQ | ||
837 | * that an originator mesh STA can send to a particular path target | ||
838 | * @path_refresh_time: how frequently to refresh mesh paths in milliseconds | ||
839 | * @min_discovery_timeout: the minimum length of time to wait until giving up on | ||
840 | * a path discovery in milliseconds | ||
841 | * @dot11MeshHWMPactivePathTimeout: the time (in TUs) for which mesh STAs | ||
842 | * receiving a PREQ shall consider the forwarding information from the | ||
843 | * root to be valid. (TU = time unit) | ||
844 | * @dot11MeshHWMPpreqMinInterval: the minimum interval of time (in TUs) during | ||
845 | * which a mesh STA can send only one action frame containing a PREQ | ||
846 | * element | ||
847 | * @dot11MeshHWMPperrMinInterval: the minimum interval of time (in TUs) during | ||
848 | * which a mesh STA can send only one Action frame containing a PERR | ||
849 | * element | ||
850 | * @dot11MeshHWMPnetDiameterTraversalTime: the interval of time (in TUs) that | ||
851 | * it takes for an HWMP information element to propagate across the mesh | ||
852 | * @dot11MeshHWMPRootMode: the configuration of a mesh STA as root mesh STA | ||
853 | * @dot11MeshHWMPRannInterval: the interval of time (in TUs) between root | ||
854 | * announcements are transmitted | ||
855 | * @dot11MeshGateAnnouncementProtocol: whether to advertise that this mesh | ||
856 | * station has access to a broader network beyond the MBSS. (This is | ||
857 | * missnamed in draft 12.0: dot11MeshGateAnnouncementProtocol set to true | ||
858 | * only means that the station will announce others it's a mesh gate, but | ||
859 | * not necessarily using the gate announcement protocol. Still keeping the | ||
860 | * same nomenclature to be in sync with the spec) | ||
861 | * @dot11MeshForwarding: whether the Mesh STA is forwarding or non-forwarding | ||
862 | * entity (default is TRUE - forwarding entity) | ||
863 | * @rssi_threshold: the threshold for average signal strength of candidate | ||
864 | * station to establish a peer link | ||
865 | * @ht_opmode: mesh HT protection mode | ||
866 | * | ||
867 | * @dot11MeshHWMPactivePathToRootTimeout: The time (in TUs) for which mesh STAs | ||
868 | * receiving a proactive PREQ shall consider the forwarding information to | ||
869 | * the root mesh STA to be valid. | ||
870 | * | ||
871 | * @dot11MeshHWMProotInterval: The interval of time (in TUs) between proactive | ||
872 | * PREQs are transmitted. | ||
873 | * @dot11MeshHWMPconfirmationInterval: The minimum interval of time (in TUs) | ||
874 | * during which a mesh STA can send only one Action frame containing | ||
875 | * a PREQ element for root path confirmation. | ||
792 | */ | 876 | */ |
793 | struct mesh_config { | 877 | struct mesh_config { |
794 | /* Timeouts in ms */ | ||
795 | /* Mesh plink management parameters */ | ||
796 | u16 dot11MeshRetryTimeout; | 878 | u16 dot11MeshRetryTimeout; |
797 | u16 dot11MeshConfirmTimeout; | 879 | u16 dot11MeshConfirmTimeout; |
798 | u16 dot11MeshHoldingTimeout; | 880 | u16 dot11MeshHoldingTimeout; |
799 | u16 dot11MeshMaxPeerLinks; | 881 | u16 dot11MeshMaxPeerLinks; |
800 | u8 dot11MeshMaxRetries; | 882 | u8 dot11MeshMaxRetries; |
801 | u8 dot11MeshTTL; | 883 | u8 dot11MeshTTL; |
802 | /* ttl used in path selection information elements */ | 884 | u8 element_ttl; |
803 | u8 element_ttl; | ||
804 | bool auto_open_plinks; | 885 | bool auto_open_plinks; |
805 | /* neighbor offset synchronization */ | ||
806 | u32 dot11MeshNbrOffsetMaxNeighbor; | 886 | u32 dot11MeshNbrOffsetMaxNeighbor; |
807 | /* HWMP parameters */ | 887 | u8 dot11MeshHWMPmaxPREQretries; |
808 | u8 dot11MeshHWMPmaxPREQretries; | ||
809 | u32 path_refresh_time; | 888 | u32 path_refresh_time; |
810 | u16 min_discovery_timeout; | 889 | u16 min_discovery_timeout; |
811 | u32 dot11MeshHWMPactivePathTimeout; | 890 | u32 dot11MeshHWMPactivePathTimeout; |
812 | u16 dot11MeshHWMPpreqMinInterval; | 891 | u16 dot11MeshHWMPpreqMinInterval; |
813 | u16 dot11MeshHWMPperrMinInterval; | 892 | u16 dot11MeshHWMPperrMinInterval; |
814 | u16 dot11MeshHWMPnetDiameterTraversalTime; | 893 | u16 dot11MeshHWMPnetDiameterTraversalTime; |
815 | u8 dot11MeshHWMPRootMode; | 894 | u8 dot11MeshHWMPRootMode; |
816 | u16 dot11MeshHWMPRannInterval; | 895 | u16 dot11MeshHWMPRannInterval; |
817 | /* This is missnamed in draft 12.0: dot11MeshGateAnnouncementProtocol | 896 | bool dot11MeshGateAnnouncementProtocol; |
818 | * set to true only means that the station will announce others it's a | ||
819 | * mesh gate, but not necessarily using the gate announcement protocol. | ||
820 | * Still keeping the same nomenclature to be in sync with the spec. */ | ||
821 | bool dot11MeshGateAnnouncementProtocol; | ||
822 | bool dot11MeshForwarding; | 897 | bool dot11MeshForwarding; |
823 | s32 rssi_threshold; | 898 | s32 rssi_threshold; |
824 | u16 ht_opmode; | 899 | u16 ht_opmode; |
900 | u32 dot11MeshHWMPactivePathToRootTimeout; | ||
901 | u16 dot11MeshHWMProotInterval; | ||
902 | u16 dot11MeshHWMPconfirmationInterval; | ||
825 | }; | 903 | }; |
826 | 904 | ||
827 | /** | 905 | /** |
828 | * struct mesh_setup - 802.11s mesh setup configuration | 906 | * struct mesh_setup - 802.11s mesh setup configuration |
907 | * @channel: the channel to start the mesh network on | ||
908 | * @channel_type: the channel type to use | ||
829 | * @mesh_id: the mesh ID | 909 | * @mesh_id: the mesh ID |
830 | * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes | 910 | * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes |
831 | * @sync_method: which synchronization method to use | 911 | * @sync_method: which synchronization method to use |
@@ -840,6 +920,8 @@ struct mesh_config { | |||
840 | * These parameters are fixed when the mesh is created. | 920 | * These parameters are fixed when the mesh is created. |
841 | */ | 921 | */ |
842 | struct mesh_setup { | 922 | struct mesh_setup { |
923 | struct ieee80211_channel *channel; | ||
924 | enum nl80211_channel_type channel_type; | ||
843 | const u8 *mesh_id; | 925 | const u8 *mesh_id; |
844 | u8 mesh_id_len; | 926 | u8 mesh_id_len; |
845 | u8 sync_method; | 927 | u8 sync_method; |
@@ -917,7 +999,7 @@ struct cfg80211_ssid { | |||
917 | * @ie_len: length of ie in octets | 999 | * @ie_len: length of ie in octets |
918 | * @rates: bitmap of rates to advertise for each band | 1000 | * @rates: bitmap of rates to advertise for each band |
919 | * @wiphy: the wiphy this was for | 1001 | * @wiphy: the wiphy this was for |
920 | * @dev: the interface | 1002 | * @wdev: the wireless device to scan for |
921 | * @aborted: (internal) scan request was notified as aborted | 1003 | * @aborted: (internal) scan request was notified as aborted |
922 | * @no_cck: used to send probe requests at non CCK rate in 2GHz band | 1004 | * @no_cck: used to send probe requests at non CCK rate in 2GHz band |
923 | */ | 1005 | */ |
@@ -930,9 +1012,10 @@ struct cfg80211_scan_request { | |||
930 | 1012 | ||
931 | u32 rates[IEEE80211_NUM_BANDS]; | 1013 | u32 rates[IEEE80211_NUM_BANDS]; |
932 | 1014 | ||
1015 | struct wireless_dev *wdev; | ||
1016 | |||
933 | /* internal */ | 1017 | /* internal */ |
934 | struct wiphy *wiphy; | 1018 | struct wiphy *wiphy; |
935 | struct net_device *dev; | ||
936 | bool aborted; | 1019 | bool aborted; |
937 | bool no_cck; | 1020 | bool no_cck; |
938 | 1021 | ||
@@ -966,6 +1049,7 @@ struct cfg80211_match_set { | |||
966 | * @wiphy: the wiphy this was for | 1049 | * @wiphy: the wiphy this was for |
967 | * @dev: the interface | 1050 | * @dev: the interface |
968 | * @channels: channels to scan | 1051 | * @channels: channels to scan |
1052 | * @rssi_thold: don't report scan results below this threshold (in s32 dBm) | ||
969 | */ | 1053 | */ |
970 | struct cfg80211_sched_scan_request { | 1054 | struct cfg80211_sched_scan_request { |
971 | struct cfg80211_ssid *ssids; | 1055 | struct cfg80211_ssid *ssids; |
@@ -976,6 +1060,7 @@ struct cfg80211_sched_scan_request { | |||
976 | size_t ie_len; | 1060 | size_t ie_len; |
977 | struct cfg80211_match_set *match_sets; | 1061 | struct cfg80211_match_set *match_sets; |
978 | int n_match_sets; | 1062 | int n_match_sets; |
1063 | s32 rssi_thold; | ||
979 | 1064 | ||
980 | /* internal */ | 1065 | /* internal */ |
981 | struct wiphy *wiphy; | 1066 | struct wiphy *wiphy; |
@@ -1351,10 +1436,10 @@ struct cfg80211_gtk_rekey_data { | |||
1351 | * | 1436 | * |
1352 | * @add_virtual_intf: create a new virtual interface with the given name, | 1437 | * @add_virtual_intf: create a new virtual interface with the given name, |
1353 | * must set the struct wireless_dev's iftype. Beware: You must create | 1438 | * must set the struct wireless_dev's iftype. Beware: You must create |
1354 | * the new netdev in the wiphy's network namespace! Returns the netdev, | 1439 | * the new netdev in the wiphy's network namespace! Returns the struct |
1355 | * or an ERR_PTR. | 1440 | * wireless_dev, or an ERR_PTR. |
1356 | * | 1441 | * |
1357 | * @del_virtual_intf: remove the virtual interface determined by ifindex. | 1442 | * @del_virtual_intf: remove the virtual interface |
1358 | * | 1443 | * |
1359 | * @change_virtual_intf: change type/configuration of virtual interface, | 1444 | * @change_virtual_intf: change type/configuration of virtual interface, |
1360 | * keep the struct wireless_dev's iftype updated. | 1445 | * keep the struct wireless_dev's iftype updated. |
@@ -1411,14 +1496,14 @@ struct cfg80211_gtk_rekey_data { | |||
1411 | * | 1496 | * |
1412 | * @set_txq_params: Set TX queue parameters | 1497 | * @set_txq_params: Set TX queue parameters |
1413 | * | 1498 | * |
1414 | * @set_channel: Set channel for a given wireless interface. Some devices | 1499 | * @libertas_set_mesh_channel: Only for backward compatibility for libertas, |
1415 | * may support multi-channel operation (by channel hopping) so cfg80211 | 1500 | * as it doesn't implement join_mesh and needs to set the channel to |
1416 | * doesn't verify much. Note, however, that the passed netdev may be | 1501 | * join the mesh instead. |
1417 | * %NULL as well if the user requested changing the channel for the | 1502 | * |
1418 | * device itself, or for a monitor interface. | 1503 | * @set_monitor_channel: Set the monitor mode channel for the device. If other |
1419 | * @get_channel: Get the current operating channel, should return %NULL if | 1504 | * interfaces are active this callback should reject the configuration. |
1420 | * there's no single defined operating channel if for example the | 1505 | * If no interfaces are active or the device is down, the channel should |
1421 | * device implements channel hopping for multi-channel virtual interfaces. | 1506 | * be stored for when a monitor interface becomes active. |
1422 | * | 1507 | * |
1423 | * @scan: Request to do a scan. If returning zero, the scan request is given | 1508 | * @scan: Request to do a scan. If returning zero, the scan request is given |
1424 | * the driver, and will be valid until passed to cfg80211_scan_done(). | 1509 | * the driver, and will be valid until passed to cfg80211_scan_done(). |
@@ -1488,6 +1573,8 @@ struct cfg80211_gtk_rekey_data { | |||
1488 | * @set_power_mgmt: Configure WLAN power management. A timeout value of -1 | 1573 | * @set_power_mgmt: Configure WLAN power management. A timeout value of -1 |
1489 | * allows the driver to adjust the dynamic ps timeout value. | 1574 | * allows the driver to adjust the dynamic ps timeout value. |
1490 | * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold. | 1575 | * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold. |
1576 | * @set_cqm_txe_config: Configure connection quality monitor TX error | ||
1577 | * thresholds. | ||
1491 | * @sched_scan_start: Tell the driver to start a scheduled scan. | 1578 | * @sched_scan_start: Tell the driver to start a scheduled scan. |
1492 | * @sched_scan_stop: Tell the driver to stop an ongoing scheduled | 1579 | * @sched_scan_stop: Tell the driver to stop an ongoing scheduled |
1493 | * scan. The driver_initiated flag specifies whether the driver | 1580 | * scan. The driver_initiated flag specifies whether the driver |
@@ -1525,18 +1612,23 @@ struct cfg80211_gtk_rekey_data { | |||
1525 | * @get_et_strings: Ethtool API to get a set of strings to describe stats | 1612 | * @get_et_strings: Ethtool API to get a set of strings to describe stats |
1526 | * and perhaps other supported types of ethtool data-sets. | 1613 | * and perhaps other supported types of ethtool data-sets. |
1527 | * See @ethtool_ops.get_strings | 1614 | * See @ethtool_ops.get_strings |
1615 | * | ||
1616 | * @get_channel: Get the current operating channel for the virtual interface. | ||
1617 | * For monitor interfaces, it should return %NULL unless there's a single | ||
1618 | * current monitoring channel. | ||
1528 | */ | 1619 | */ |
1529 | struct cfg80211_ops { | 1620 | struct cfg80211_ops { |
1530 | int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow); | 1621 | int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow); |
1531 | int (*resume)(struct wiphy *wiphy); | 1622 | int (*resume)(struct wiphy *wiphy); |
1532 | void (*set_wakeup)(struct wiphy *wiphy, bool enabled); | 1623 | void (*set_wakeup)(struct wiphy *wiphy, bool enabled); |
1533 | 1624 | ||
1534 | struct net_device * (*add_virtual_intf)(struct wiphy *wiphy, | 1625 | struct wireless_dev * (*add_virtual_intf)(struct wiphy *wiphy, |
1535 | char *name, | 1626 | char *name, |
1536 | enum nl80211_iftype type, | 1627 | enum nl80211_iftype type, |
1537 | u32 *flags, | 1628 | u32 *flags, |
1538 | struct vif_params *params); | 1629 | struct vif_params *params); |
1539 | int (*del_virtual_intf)(struct wiphy *wiphy, struct net_device *dev); | 1630 | int (*del_virtual_intf)(struct wiphy *wiphy, |
1631 | struct wireless_dev *wdev); | ||
1540 | int (*change_virtual_intf)(struct wiphy *wiphy, | 1632 | int (*change_virtual_intf)(struct wiphy *wiphy, |
1541 | struct net_device *dev, | 1633 | struct net_device *dev, |
1542 | enum nl80211_iftype type, u32 *flags, | 1634 | enum nl80211_iftype type, u32 *flags, |
@@ -1605,11 +1697,15 @@ struct cfg80211_ops { | |||
1605 | int (*set_txq_params)(struct wiphy *wiphy, struct net_device *dev, | 1697 | int (*set_txq_params)(struct wiphy *wiphy, struct net_device *dev, |
1606 | struct ieee80211_txq_params *params); | 1698 | struct ieee80211_txq_params *params); |
1607 | 1699 | ||
1608 | int (*set_channel)(struct wiphy *wiphy, struct net_device *dev, | 1700 | int (*libertas_set_mesh_channel)(struct wiphy *wiphy, |
1609 | struct ieee80211_channel *chan, | 1701 | struct net_device *dev, |
1610 | enum nl80211_channel_type channel_type); | 1702 | struct ieee80211_channel *chan); |
1703 | |||
1704 | int (*set_monitor_channel)(struct wiphy *wiphy, | ||
1705 | struct ieee80211_channel *chan, | ||
1706 | enum nl80211_channel_type channel_type); | ||
1611 | 1707 | ||
1612 | int (*scan)(struct wiphy *wiphy, struct net_device *dev, | 1708 | int (*scan)(struct wiphy *wiphy, |
1613 | struct cfg80211_scan_request *request); | 1709 | struct cfg80211_scan_request *request); |
1614 | 1710 | ||
1615 | int (*auth)(struct wiphy *wiphy, struct net_device *dev, | 1711 | int (*auth)(struct wiphy *wiphy, struct net_device *dev, |
@@ -1663,23 +1759,23 @@ struct cfg80211_ops { | |||
1663 | int (*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev); | 1759 | int (*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev); |
1664 | 1760 | ||
1665 | int (*remain_on_channel)(struct wiphy *wiphy, | 1761 | int (*remain_on_channel)(struct wiphy *wiphy, |
1666 | struct net_device *dev, | 1762 | struct wireless_dev *wdev, |
1667 | struct ieee80211_channel *chan, | 1763 | struct ieee80211_channel *chan, |
1668 | enum nl80211_channel_type channel_type, | 1764 | enum nl80211_channel_type channel_type, |
1669 | unsigned int duration, | 1765 | unsigned int duration, |
1670 | u64 *cookie); | 1766 | u64 *cookie); |
1671 | int (*cancel_remain_on_channel)(struct wiphy *wiphy, | 1767 | int (*cancel_remain_on_channel)(struct wiphy *wiphy, |
1672 | struct net_device *dev, | 1768 | struct wireless_dev *wdev, |
1673 | u64 cookie); | 1769 | u64 cookie); |
1674 | 1770 | ||
1675 | int (*mgmt_tx)(struct wiphy *wiphy, struct net_device *dev, | 1771 | int (*mgmt_tx)(struct wiphy *wiphy, struct wireless_dev *wdev, |
1676 | struct ieee80211_channel *chan, bool offchan, | 1772 | struct ieee80211_channel *chan, bool offchan, |
1677 | enum nl80211_channel_type channel_type, | 1773 | enum nl80211_channel_type channel_type, |
1678 | bool channel_type_valid, unsigned int wait, | 1774 | bool channel_type_valid, unsigned int wait, |
1679 | const u8 *buf, size_t len, bool no_cck, | 1775 | const u8 *buf, size_t len, bool no_cck, |
1680 | bool dont_wait_for_ack, u64 *cookie); | 1776 | bool dont_wait_for_ack, u64 *cookie); |
1681 | int (*mgmt_tx_cancel_wait)(struct wiphy *wiphy, | 1777 | int (*mgmt_tx_cancel_wait)(struct wiphy *wiphy, |
1682 | struct net_device *dev, | 1778 | struct wireless_dev *wdev, |
1683 | u64 cookie); | 1779 | u64 cookie); |
1684 | 1780 | ||
1685 | int (*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev, | 1781 | int (*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev, |
@@ -1689,8 +1785,12 @@ struct cfg80211_ops { | |||
1689 | struct net_device *dev, | 1785 | struct net_device *dev, |
1690 | s32 rssi_thold, u32 rssi_hyst); | 1786 | s32 rssi_thold, u32 rssi_hyst); |
1691 | 1787 | ||
1788 | int (*set_cqm_txe_config)(struct wiphy *wiphy, | ||
1789 | struct net_device *dev, | ||
1790 | u32 rate, u32 pkts, u32 intvl); | ||
1791 | |||
1692 | void (*mgmt_frame_register)(struct wiphy *wiphy, | 1792 | void (*mgmt_frame_register)(struct wiphy *wiphy, |
1693 | struct net_device *dev, | 1793 | struct wireless_dev *wdev, |
1694 | u16 frame_type, bool reg); | 1794 | u16 frame_type, bool reg); |
1695 | 1795 | ||
1696 | int (*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant); | 1796 | int (*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant); |
@@ -1721,15 +1821,17 @@ struct cfg80211_ops { | |||
1721 | struct net_device *dev, | 1821 | struct net_device *dev, |
1722 | u16 noack_map); | 1822 | u16 noack_map); |
1723 | 1823 | ||
1724 | struct ieee80211_channel *(*get_channel)(struct wiphy *wiphy, | ||
1725 | enum nl80211_channel_type *type); | ||
1726 | |||
1727 | int (*get_et_sset_count)(struct wiphy *wiphy, | 1824 | int (*get_et_sset_count)(struct wiphy *wiphy, |
1728 | struct net_device *dev, int sset); | 1825 | struct net_device *dev, int sset); |
1729 | void (*get_et_stats)(struct wiphy *wiphy, struct net_device *dev, | 1826 | void (*get_et_stats)(struct wiphy *wiphy, struct net_device *dev, |
1730 | struct ethtool_stats *stats, u64 *data); | 1827 | struct ethtool_stats *stats, u64 *data); |
1731 | void (*get_et_strings)(struct wiphy *wiphy, struct net_device *dev, | 1828 | void (*get_et_strings)(struct wiphy *wiphy, struct net_device *dev, |
1732 | u32 sset, u8 *data); | 1829 | u32 sset, u8 *data); |
1830 | |||
1831 | struct ieee80211_channel * | ||
1832 | (*get_channel)(struct wiphy *wiphy, | ||
1833 | struct wireless_dev *wdev, | ||
1834 | enum nl80211_channel_type *type); | ||
1733 | }; | 1835 | }; |
1734 | 1836 | ||
1735 | /* | 1837 | /* |
@@ -2083,7 +2185,9 @@ struct wiphy { | |||
2083 | char fw_version[ETHTOOL_BUSINFO_LEN]; | 2185 | char fw_version[ETHTOOL_BUSINFO_LEN]; |
2084 | u32 hw_version; | 2186 | u32 hw_version; |
2085 | 2187 | ||
2188 | #ifdef CONFIG_PM | ||
2086 | struct wiphy_wowlan_support wowlan; | 2189 | struct wiphy_wowlan_support wowlan; |
2190 | #endif | ||
2087 | 2191 | ||
2088 | u16 max_remain_on_channel_duration; | 2192 | u16 max_remain_on_channel_duration; |
2089 | 2193 | ||
@@ -2250,20 +2354,31 @@ struct cfg80211_internal_bss; | |||
2250 | struct cfg80211_cached_keys; | 2354 | struct cfg80211_cached_keys; |
2251 | 2355 | ||
2252 | /** | 2356 | /** |
2253 | * struct wireless_dev - wireless per-netdev state | 2357 | * struct wireless_dev - wireless device state |
2358 | * | ||
2359 | * For netdevs, this structure must be allocated by the driver | ||
2360 | * that uses the ieee80211_ptr field in struct net_device (this | ||
2361 | * is intentional so it can be allocated along with the netdev.) | ||
2362 | * It need not be registered then as netdev registration will | ||
2363 | * be intercepted by cfg80211 to see the new wireless device. | ||
2254 | * | 2364 | * |
2255 | * This structure must be allocated by the driver/stack | 2365 | * For non-netdev uses, it must also be allocated by the driver |
2256 | * that uses the ieee80211_ptr field in struct net_device | 2366 | * in response to the cfg80211 callbacks that require it, as |
2257 | * (this is intentional so it can be allocated along with | 2367 | * there's no netdev registration in that case it may not be |
2258 | * the netdev.) | 2368 | * allocated outside of callback operations that return it. |
2259 | * | 2369 | * |
2260 | * @wiphy: pointer to hardware description | 2370 | * @wiphy: pointer to hardware description |
2261 | * @iftype: interface type | 2371 | * @iftype: interface type |
2262 | * @list: (private) Used to collect the interfaces | 2372 | * @list: (private) Used to collect the interfaces |
2263 | * @netdev: (private) Used to reference back to the netdev | 2373 | * @netdev: (private) Used to reference back to the netdev, may be %NULL |
2374 | * @identifier: (private) Identifier used in nl80211 to identify this | ||
2375 | * wireless device if it has no netdev | ||
2264 | * @current_bss: (private) Used by the internal configuration code | 2376 | * @current_bss: (private) Used by the internal configuration code |
2265 | * @channel: (private) Used by the internal configuration code to track | 2377 | * @channel: (private) Used by the internal configuration code to track |
2266 | * user-set AP, monitor and WDS channels for wireless extensions | 2378 | * the user-set AP, monitor and WDS channel |
2379 | * @preset_chan: (private) Used by the internal configuration code to | ||
2380 | * track the channel to be used for AP later | ||
2381 | * @preset_chantype: (private) the corresponding channel type | ||
2267 | * @bssid: (private) Used by the internal configuration code | 2382 | * @bssid: (private) Used by the internal configuration code |
2268 | * @ssid: (private) Used by the internal configuration code | 2383 | * @ssid: (private) Used by the internal configuration code |
2269 | * @ssid_len: (private) Used by the internal configuration code | 2384 | * @ssid_len: (private) Used by the internal configuration code |
@@ -2289,6 +2404,8 @@ struct wireless_dev { | |||
2289 | struct list_head list; | 2404 | struct list_head list; |
2290 | struct net_device *netdev; | 2405 | struct net_device *netdev; |
2291 | 2406 | ||
2407 | u32 identifier; | ||
2408 | |||
2292 | struct list_head mgmt_registrations; | 2409 | struct list_head mgmt_registrations; |
2293 | spinlock_t mgmt_registrations_lock; | 2410 | spinlock_t mgmt_registrations_lock; |
2294 | 2411 | ||
@@ -2313,8 +2430,14 @@ struct wireless_dev { | |||
2313 | spinlock_t event_lock; | 2430 | spinlock_t event_lock; |
2314 | 2431 | ||
2315 | struct cfg80211_internal_bss *current_bss; /* associated / joined */ | 2432 | struct cfg80211_internal_bss *current_bss; /* associated / joined */ |
2433 | struct ieee80211_channel *preset_chan; | ||
2434 | enum nl80211_channel_type preset_chantype; | ||
2435 | |||
2436 | /* for AP and mesh channel tracking */ | ||
2316 | struct ieee80211_channel *channel; | 2437 | struct ieee80211_channel *channel; |
2317 | 2438 | ||
2439 | bool ibss_fixed; | ||
2440 | |||
2318 | bool ps; | 2441 | bool ps; |
2319 | int ps_timeout; | 2442 | int ps_timeout; |
2320 | 2443 | ||
@@ -3169,7 +3292,7 @@ void cfg80211_disconnected(struct net_device *dev, u16 reason, | |||
3169 | 3292 | ||
3170 | /** | 3293 | /** |
3171 | * cfg80211_ready_on_channel - notification of remain_on_channel start | 3294 | * cfg80211_ready_on_channel - notification of remain_on_channel start |
3172 | * @dev: network device | 3295 | * @wdev: wireless device |
3173 | * @cookie: the request cookie | 3296 | * @cookie: the request cookie |
3174 | * @chan: The current channel (from remain_on_channel request) | 3297 | * @chan: The current channel (from remain_on_channel request) |
3175 | * @channel_type: Channel type | 3298 | * @channel_type: Channel type |
@@ -3177,21 +3300,20 @@ void cfg80211_disconnected(struct net_device *dev, u16 reason, | |||
3177 | * channel | 3300 | * channel |
3178 | * @gfp: allocation flags | 3301 | * @gfp: allocation flags |
3179 | */ | 3302 | */ |
3180 | void cfg80211_ready_on_channel(struct net_device *dev, u64 cookie, | 3303 | void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie, |
3181 | struct ieee80211_channel *chan, | 3304 | struct ieee80211_channel *chan, |
3182 | enum nl80211_channel_type channel_type, | 3305 | enum nl80211_channel_type channel_type, |
3183 | unsigned int duration, gfp_t gfp); | 3306 | unsigned int duration, gfp_t gfp); |
3184 | 3307 | ||
3185 | /** | 3308 | /** |
3186 | * cfg80211_remain_on_channel_expired - remain_on_channel duration expired | 3309 | * cfg80211_remain_on_channel_expired - remain_on_channel duration expired |
3187 | * @dev: network device | 3310 | * @wdev: wireless device |
3188 | * @cookie: the request cookie | 3311 | * @cookie: the request cookie |
3189 | * @chan: The current channel (from remain_on_channel request) | 3312 | * @chan: The current channel (from remain_on_channel request) |
3190 | * @channel_type: Channel type | 3313 | * @channel_type: Channel type |
3191 | * @gfp: allocation flags | 3314 | * @gfp: allocation flags |
3192 | */ | 3315 | */ |
3193 | void cfg80211_remain_on_channel_expired(struct net_device *dev, | 3316 | void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie, |
3194 | u64 cookie, | ||
3195 | struct ieee80211_channel *chan, | 3317 | struct ieee80211_channel *chan, |
3196 | enum nl80211_channel_type channel_type, | 3318 | enum nl80211_channel_type channel_type, |
3197 | gfp_t gfp); | 3319 | gfp_t gfp); |
@@ -3219,7 +3341,7 @@ void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp); | |||
3219 | 3341 | ||
3220 | /** | 3342 | /** |
3221 | * cfg80211_rx_mgmt - notification of received, unprocessed management frame | 3343 | * cfg80211_rx_mgmt - notification of received, unprocessed management frame |
3222 | * @dev: network device | 3344 | * @wdev: wireless device receiving the frame |
3223 | * @freq: Frequency on which the frame was received in MHz | 3345 | * @freq: Frequency on which the frame was received in MHz |
3224 | * @sig_dbm: signal strength in mBm, or 0 if unknown | 3346 | * @sig_dbm: signal strength in mBm, or 0 if unknown |
3225 | * @buf: Management frame (header + body) | 3347 | * @buf: Management frame (header + body) |
@@ -3234,12 +3356,12 @@ void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp); | |||
3234 | * This function is called whenever an Action frame is received for a station | 3356 | * This function is called whenever an Action frame is received for a station |
3235 | * mode interface, but is not processed in kernel. | 3357 | * mode interface, but is not processed in kernel. |
3236 | */ | 3358 | */ |
3237 | bool cfg80211_rx_mgmt(struct net_device *dev, int freq, int sig_dbm, | 3359 | bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int sig_dbm, |
3238 | const u8 *buf, size_t len, gfp_t gfp); | 3360 | const u8 *buf, size_t len, gfp_t gfp); |
3239 | 3361 | ||
3240 | /** | 3362 | /** |
3241 | * cfg80211_mgmt_tx_status - notification of TX status for management frame | 3363 | * cfg80211_mgmt_tx_status - notification of TX status for management frame |
3242 | * @dev: network device | 3364 | * @wdev: wireless device receiving the frame |
3243 | * @cookie: Cookie returned by cfg80211_ops::mgmt_tx() | 3365 | * @cookie: Cookie returned by cfg80211_ops::mgmt_tx() |
3244 | * @buf: Management frame (header + body) | 3366 | * @buf: Management frame (header + body) |
3245 | * @len: length of the frame data | 3367 | * @len: length of the frame data |
@@ -3250,7 +3372,7 @@ bool cfg80211_rx_mgmt(struct net_device *dev, int freq, int sig_dbm, | |||
3250 | * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the | 3372 | * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the |
3251 | * transmission attempt. | 3373 | * transmission attempt. |
3252 | */ | 3374 | */ |
3253 | void cfg80211_mgmt_tx_status(struct net_device *dev, u64 cookie, | 3375 | void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie, |
3254 | const u8 *buf, size_t len, bool ack, gfp_t gfp); | 3376 | const u8 *buf, size_t len, bool ack, gfp_t gfp); |
3255 | 3377 | ||
3256 | 3378 | ||
@@ -3280,6 +3402,21 @@ void cfg80211_cqm_pktloss_notify(struct net_device *dev, | |||
3280 | const u8 *peer, u32 num_packets, gfp_t gfp); | 3402 | const u8 *peer, u32 num_packets, gfp_t gfp); |
3281 | 3403 | ||
3282 | /** | 3404 | /** |
3405 | * cfg80211_cqm_txe_notify - TX error rate event | ||
3406 | * @dev: network device | ||
3407 | * @peer: peer's MAC address | ||
3408 | * @num_packets: how many packets were lost | ||
3409 | * @rate: % of packets which failed transmission | ||
3410 | * @intvl: interval (in s) over which the TX failure threshold was breached. | ||
3411 | * @gfp: context flags | ||
3412 | * | ||
3413 | * Notify userspace when configured % TX failures over number of packets in a | ||
3414 | * given interval is exceeded. | ||
3415 | */ | ||
3416 | void cfg80211_cqm_txe_notify(struct net_device *dev, const u8 *peer, | ||
3417 | u32 num_packets, u32 rate, u32 intvl, gfp_t gfp); | ||
3418 | |||
3419 | /** | ||
3283 | * cfg80211_gtk_rekey_notify - notify userspace about driver rekeying | 3420 | * cfg80211_gtk_rekey_notify - notify userspace about driver rekeying |
3284 | * @dev: network device | 3421 | * @dev: network device |
3285 | * @bssid: BSSID of AP (to avoid races) | 3422 | * @bssid: BSSID of AP (to avoid races) |
@@ -3359,11 +3496,14 @@ void cfg80211_report_obss_beacon(struct wiphy *wiphy, | |||
3359 | const u8 *frame, size_t len, | 3496 | const u8 *frame, size_t len, |
3360 | int freq, int sig_dbm, gfp_t gfp); | 3497 | int freq, int sig_dbm, gfp_t gfp); |
3361 | 3498 | ||
3362 | /* | 3499 | /** |
3363 | * cfg80211_can_beacon_sec_chan - test if ht40 on extension channel can be used | 3500 | * cfg80211_can_beacon_sec_chan - test if ht40 on extension channel can be used |
3364 | * @wiphy: the wiphy | 3501 | * @wiphy: the wiphy |
3365 | * @chan: main channel | 3502 | * @chan: main channel |
3366 | * @channel_type: HT mode | 3503 | * @channel_type: HT mode |
3504 | * | ||
3505 | * This function returns true if there is no secondary channel or the secondary | ||
3506 | * channel can be used for beaconing (i.e. is not a radar channel etc.) | ||
3367 | */ | 3507 | */ |
3368 | bool cfg80211_can_beacon_sec_chan(struct wiphy *wiphy, | 3508 | bool cfg80211_can_beacon_sec_chan(struct wiphy *wiphy, |
3369 | struct ieee80211_channel *chan, | 3509 | struct ieee80211_channel *chan, |
@@ -3386,7 +3526,7 @@ void cfg80211_ch_switch_notify(struct net_device *dev, int freq, | |||
3386 | * | 3526 | * |
3387 | * return 0 if MCS index >= 32 | 3527 | * return 0 if MCS index >= 32 |
3388 | */ | 3528 | */ |
3389 | u16 cfg80211_calculate_bitrate(struct rate_info *rate); | 3529 | u32 cfg80211_calculate_bitrate(struct rate_info *rate); |
3390 | 3530 | ||
3391 | /* Logging, debugging and troubleshooting/diagnostic helpers. */ | 3531 | /* Logging, debugging and troubleshooting/diagnostic helpers. */ |
3392 | 3532 | ||
diff --git a/include/net/dn_route.h b/include/net/dn_route.h index c507e05d172f..4f7d6a182381 100644 --- a/include/net/dn_route.h +++ b/include/net/dn_route.h | |||
@@ -67,6 +67,8 @@ extern void dn_rt_cache_flush(int delay); | |||
67 | struct dn_route { | 67 | struct dn_route { |
68 | struct dst_entry dst; | 68 | struct dst_entry dst; |
69 | 69 | ||
70 | struct neighbour *n; | ||
71 | |||
70 | struct flowidn fld; | 72 | struct flowidn fld; |
71 | 73 | ||
72 | __le16 rt_saddr; | 74 | __le16 rt_saddr; |
diff --git a/include/net/dst.h b/include/net/dst.h index 8197eadca819..baf597890064 100644 --- a/include/net/dst.h +++ b/include/net/dst.h | |||
@@ -42,16 +42,16 @@ struct dst_entry { | |||
42 | struct dst_entry *from; | 42 | struct dst_entry *from; |
43 | }; | 43 | }; |
44 | struct dst_entry *path; | 44 | struct dst_entry *path; |
45 | struct neighbour __rcu *_neighbour; | 45 | void *__pad0; |
46 | #ifdef CONFIG_XFRM | 46 | #ifdef CONFIG_XFRM |
47 | struct xfrm_state *xfrm; | 47 | struct xfrm_state *xfrm; |
48 | #else | 48 | #else |
49 | void *__pad1; | 49 | void *__pad1; |
50 | #endif | 50 | #endif |
51 | int (*input)(struct sk_buff*); | 51 | int (*input)(struct sk_buff *); |
52 | int (*output)(struct sk_buff*); | 52 | int (*output)(struct sk_buff *); |
53 | 53 | ||
54 | int flags; | 54 | unsigned short flags; |
55 | #define DST_HOST 0x0001 | 55 | #define DST_HOST 0x0001 |
56 | #define DST_NOXFRM 0x0002 | 56 | #define DST_NOXFRM 0x0002 |
57 | #define DST_NOPOLICY 0x0004 | 57 | #define DST_NOPOLICY 0x0004 |
@@ -62,8 +62,23 @@ struct dst_entry { | |||
62 | #define DST_FAKE_RTABLE 0x0080 | 62 | #define DST_FAKE_RTABLE 0x0080 |
63 | #define DST_XFRM_TUNNEL 0x0100 | 63 | #define DST_XFRM_TUNNEL 0x0100 |
64 | 64 | ||
65 | unsigned short pending_confirm; | ||
66 | |||
65 | short error; | 67 | short error; |
68 | |||
69 | /* A non-zero value of dst->obsolete forces by-hand validation | ||
70 | * of the route entry. Positive values are set by the generic | ||
71 | * dst layer to indicate that the entry has been forcefully | ||
72 | * destroyed. | ||
73 | * | ||
74 | * Negative values are used by the implementation layer code to | ||
75 | * force invocation of the dst_ops->check() method. | ||
76 | */ | ||
66 | short obsolete; | 77 | short obsolete; |
78 | #define DST_OBSOLETE_NONE 0 | ||
79 | #define DST_OBSOLETE_DEAD 2 | ||
80 | #define DST_OBSOLETE_FORCE_CHK -1 | ||
81 | #define DST_OBSOLETE_KILL -2 | ||
67 | unsigned short header_len; /* more space at head required */ | 82 | unsigned short header_len; /* more space at head required */ |
68 | unsigned short trailer_len; /* space to reserve at tail */ | 83 | unsigned short trailer_len; /* space to reserve at tail */ |
69 | #ifdef CONFIG_IP_ROUTE_CLASSID | 84 | #ifdef CONFIG_IP_ROUTE_CLASSID |
@@ -94,21 +109,6 @@ struct dst_entry { | |||
94 | }; | 109 | }; |
95 | }; | 110 | }; |
96 | 111 | ||
97 | static inline struct neighbour *dst_get_neighbour_noref(struct dst_entry *dst) | ||
98 | { | ||
99 | return rcu_dereference(dst->_neighbour); | ||
100 | } | ||
101 | |||
102 | static inline struct neighbour *dst_get_neighbour_noref_raw(struct dst_entry *dst) | ||
103 | { | ||
104 | return rcu_dereference_raw(dst->_neighbour); | ||
105 | } | ||
106 | |||
107 | static inline void dst_set_neighbour(struct dst_entry *dst, struct neighbour *neigh) | ||
108 | { | ||
109 | rcu_assign_pointer(dst->_neighbour, neigh); | ||
110 | } | ||
111 | |||
112 | extern u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old); | 112 | extern u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old); |
113 | extern const u32 dst_default_metrics[RTAX_MAX]; | 113 | extern const u32 dst_default_metrics[RTAX_MAX]; |
114 | 114 | ||
@@ -222,12 +222,6 @@ static inline unsigned long dst_metric_rtt(const struct dst_entry *dst, int metr | |||
222 | return msecs_to_jiffies(dst_metric(dst, metric)); | 222 | return msecs_to_jiffies(dst_metric(dst, metric)); |
223 | } | 223 | } |
224 | 224 | ||
225 | static inline void set_dst_metric_rtt(struct dst_entry *dst, int metric, | ||
226 | unsigned long rtt) | ||
227 | { | ||
228 | dst_metric_set(dst, metric, jiffies_to_msecs(rtt)); | ||
229 | } | ||
230 | |||
231 | static inline u32 | 225 | static inline u32 |
232 | dst_allfrag(const struct dst_entry *dst) | 226 | dst_allfrag(const struct dst_entry *dst) |
233 | { | 227 | { |
@@ -241,7 +235,7 @@ dst_metric_locked(const struct dst_entry *dst, int metric) | |||
241 | return dst_metric(dst, RTAX_LOCK) & (1<<metric); | 235 | return dst_metric(dst, RTAX_LOCK) & (1<<metric); |
242 | } | 236 | } |
243 | 237 | ||
244 | static inline void dst_hold(struct dst_entry * dst) | 238 | static inline void dst_hold(struct dst_entry *dst) |
245 | { | 239 | { |
246 | /* | 240 | /* |
247 | * If your kernel compilation stops here, please check | 241 | * If your kernel compilation stops here, please check |
@@ -264,8 +258,7 @@ static inline void dst_use_noref(struct dst_entry *dst, unsigned long time) | |||
264 | dst->lastuse = time; | 258 | dst->lastuse = time; |
265 | } | 259 | } |
266 | 260 | ||
267 | static inline | 261 | static inline struct dst_entry *dst_clone(struct dst_entry *dst) |
268 | struct dst_entry * dst_clone(struct dst_entry * dst) | ||
269 | { | 262 | { |
270 | if (dst) | 263 | if (dst) |
271 | atomic_inc(&dst->__refcnt); | 264 | atomic_inc(&dst->__refcnt); |
@@ -371,14 +364,15 @@ static inline struct dst_entry *skb_dst_pop(struct sk_buff *skb) | |||
371 | } | 364 | } |
372 | 365 | ||
373 | extern int dst_discard(struct sk_buff *skb); | 366 | extern int dst_discard(struct sk_buff *skb); |
374 | extern void *dst_alloc(struct dst_ops * ops, struct net_device *dev, | 367 | extern void *dst_alloc(struct dst_ops *ops, struct net_device *dev, |
375 | int initial_ref, int initial_obsolete, int flags); | 368 | int initial_ref, int initial_obsolete, |
376 | extern void __dst_free(struct dst_entry * dst); | 369 | unsigned short flags); |
377 | extern struct dst_entry *dst_destroy(struct dst_entry * dst); | 370 | extern void __dst_free(struct dst_entry *dst); |
371 | extern struct dst_entry *dst_destroy(struct dst_entry *dst); | ||
378 | 372 | ||
379 | static inline void dst_free(struct dst_entry * dst) | 373 | static inline void dst_free(struct dst_entry *dst) |
380 | { | 374 | { |
381 | if (dst->obsolete > 1) | 375 | if (dst->obsolete > 0) |
382 | return; | 376 | return; |
383 | if (!atomic_read(&dst->__refcnt)) { | 377 | if (!atomic_read(&dst->__refcnt)) { |
384 | dst = dst_destroy(dst); | 378 | dst = dst_destroy(dst); |
@@ -396,19 +390,35 @@ static inline void dst_rcu_free(struct rcu_head *head) | |||
396 | 390 | ||
397 | static inline void dst_confirm(struct dst_entry *dst) | 391 | static inline void dst_confirm(struct dst_entry *dst) |
398 | { | 392 | { |
399 | if (dst) { | 393 | dst->pending_confirm = 1; |
400 | struct neighbour *n; | 394 | } |
401 | 395 | ||
402 | rcu_read_lock(); | 396 | static inline int dst_neigh_output(struct dst_entry *dst, struct neighbour *n, |
403 | n = dst_get_neighbour_noref(dst); | 397 | struct sk_buff *skb) |
404 | neigh_confirm(n); | 398 | { |
405 | rcu_read_unlock(); | 399 | struct hh_cache *hh; |
400 | |||
401 | if (unlikely(dst->pending_confirm)) { | ||
402 | n->confirmed = jiffies; | ||
403 | dst->pending_confirm = 0; | ||
406 | } | 404 | } |
405 | |||
406 | hh = &n->hh; | ||
407 | if ((n->nud_state & NUD_CONNECTED) && hh->hh_len) | ||
408 | return neigh_hh_output(hh, skb); | ||
409 | else | ||
410 | return n->output(n, skb); | ||
407 | } | 411 | } |
408 | 412 | ||
409 | static inline struct neighbour *dst_neigh_lookup(const struct dst_entry *dst, const void *daddr) | 413 | static inline struct neighbour *dst_neigh_lookup(const struct dst_entry *dst, const void *daddr) |
410 | { | 414 | { |
411 | return dst->ops->neigh_lookup(dst, daddr); | 415 | return dst->ops->neigh_lookup(dst, NULL, daddr); |
416 | } | ||
417 | |||
418 | static inline struct neighbour *dst_neigh_lookup_skb(const struct dst_entry *dst, | ||
419 | struct sk_buff *skb) | ||
420 | { | ||
421 | return dst->ops->neigh_lookup(dst, skb, NULL); | ||
412 | } | 422 | } |
413 | 423 | ||
414 | static inline void dst_link_failure(struct sk_buff *skb) | 424 | static inline void dst_link_failure(struct sk_buff *skb) |
diff --git a/include/net/dst_ops.h b/include/net/dst_ops.h index 3682a0a076c1..2f26dfb8450e 100644 --- a/include/net/dst_ops.h +++ b/include/net/dst_ops.h | |||
@@ -8,6 +8,7 @@ struct dst_entry; | |||
8 | struct kmem_cachep; | 8 | struct kmem_cachep; |
9 | struct net_device; | 9 | struct net_device; |
10 | struct sk_buff; | 10 | struct sk_buff; |
11 | struct sock; | ||
11 | 12 | ||
12 | struct dst_ops { | 13 | struct dst_ops { |
13 | unsigned short family; | 14 | unsigned short family; |
@@ -24,9 +25,14 @@ struct dst_ops { | |||
24 | struct net_device *dev, int how); | 25 | struct net_device *dev, int how); |
25 | struct dst_entry * (*negative_advice)(struct dst_entry *); | 26 | struct dst_entry * (*negative_advice)(struct dst_entry *); |
26 | void (*link_failure)(struct sk_buff *); | 27 | void (*link_failure)(struct sk_buff *); |
27 | void (*update_pmtu)(struct dst_entry *dst, u32 mtu); | 28 | void (*update_pmtu)(struct dst_entry *dst, struct sock *sk, |
29 | struct sk_buff *skb, u32 mtu); | ||
30 | void (*redirect)(struct dst_entry *dst, struct sock *sk, | ||
31 | struct sk_buff *skb); | ||
28 | int (*local_out)(struct sk_buff *skb); | 32 | int (*local_out)(struct sk_buff *skb); |
29 | struct neighbour * (*neigh_lookup)(const struct dst_entry *dst, const void *daddr); | 33 | struct neighbour * (*neigh_lookup)(const struct dst_entry *dst, |
34 | struct sk_buff *skb, | ||
35 | const void *daddr); | ||
30 | 36 | ||
31 | struct kmem_cache *kmem_cachep; | 37 | struct kmem_cache *kmem_cachep; |
32 | 38 | ||
diff --git a/include/net/fib_rules.h b/include/net/fib_rules.h index 075f1e3a0fed..e361f4882426 100644 --- a/include/net/fib_rules.h +++ b/include/net/fib_rules.h | |||
@@ -52,6 +52,7 @@ struct fib_rules_ops { | |||
52 | struct sk_buff *, | 52 | struct sk_buff *, |
53 | struct fib_rule_hdr *, | 53 | struct fib_rule_hdr *, |
54 | struct nlattr **); | 54 | struct nlattr **); |
55 | void (*delete)(struct fib_rule *); | ||
55 | int (*compare)(struct fib_rule *, | 56 | int (*compare)(struct fib_rule *, |
56 | struct fib_rule_hdr *, | 57 | struct fib_rule_hdr *, |
57 | struct nlattr **); | 58 | struct nlattr **); |
diff --git a/include/net/flow.h b/include/net/flow.h index 6c469dbdb917..e1dd5082ec7e 100644 --- a/include/net/flow.h +++ b/include/net/flow.h | |||
@@ -20,8 +20,7 @@ struct flowi_common { | |||
20 | __u8 flowic_proto; | 20 | __u8 flowic_proto; |
21 | __u8 flowic_flags; | 21 | __u8 flowic_flags; |
22 | #define FLOWI_FLAG_ANYSRC 0x01 | 22 | #define FLOWI_FLAG_ANYSRC 0x01 |
23 | #define FLOWI_FLAG_PRECOW_METRICS 0x02 | 23 | #define FLOWI_FLAG_CAN_SLEEP 0x02 |
24 | #define FLOWI_FLAG_CAN_SLEEP 0x04 | ||
25 | __u32 flowic_secid; | 24 | __u32 flowic_secid; |
26 | }; | 25 | }; |
27 | 26 | ||
diff --git a/include/net/genetlink.h b/include/net/genetlink.h index ccb68880abf5..48905cd3884c 100644 --- a/include/net/genetlink.h +++ b/include/net/genetlink.h | |||
@@ -5,6 +5,8 @@ | |||
5 | #include <net/netlink.h> | 5 | #include <net/netlink.h> |
6 | #include <net/net_namespace.h> | 6 | #include <net/net_namespace.h> |
7 | 7 | ||
8 | #define GENLMSG_DEFAULT_SIZE (NLMSG_DEFAULT_SIZE - GENL_HDRLEN) | ||
9 | |||
8 | /** | 10 | /** |
9 | * struct genl_multicast_group - generic netlink multicast group | 11 | * struct genl_multicast_group - generic netlink multicast group |
10 | * @name: name of the multicast group, names are per-family | 12 | * @name: name of the multicast group, names are per-family |
diff --git a/include/net/inet6_connection_sock.h b/include/net/inet6_connection_sock.h index 1866a676c810..04642c920431 100644 --- a/include/net/inet6_connection_sock.h +++ b/include/net/inet6_connection_sock.h | |||
@@ -26,6 +26,7 @@ extern int inet6_csk_bind_conflict(const struct sock *sk, | |||
26 | const struct inet_bind_bucket *tb, bool relax); | 26 | const struct inet_bind_bucket *tb, bool relax); |
27 | 27 | ||
28 | extern struct dst_entry* inet6_csk_route_req(struct sock *sk, | 28 | extern struct dst_entry* inet6_csk_route_req(struct sock *sk, |
29 | struct flowi6 *fl6, | ||
29 | const struct request_sock *req); | 30 | const struct request_sock *req); |
30 | 31 | ||
31 | extern struct request_sock *inet6_csk_search_req(const struct sock *sk, | 32 | extern struct request_sock *inet6_csk_search_req(const struct sock *sk, |
@@ -42,4 +43,6 @@ extern void inet6_csk_reqsk_queue_hash_add(struct sock *sk, | |||
42 | extern void inet6_csk_addr2sockaddr(struct sock *sk, struct sockaddr *uaddr); | 43 | extern void inet6_csk_addr2sockaddr(struct sock *sk, struct sockaddr *uaddr); |
43 | 44 | ||
44 | extern int inet6_csk_xmit(struct sk_buff *skb, struct flowi *fl); | 45 | extern int inet6_csk_xmit(struct sk_buff *skb, struct flowi *fl); |
46 | |||
47 | extern struct dst_entry *inet6_csk_update_pmtu(struct sock *sk, u32 mtu); | ||
45 | #endif /* _INET6_CONNECTION_SOCK_H */ | 48 | #endif /* _INET6_CONNECTION_SOCK_H */ |
diff --git a/include/net/inet6_hashtables.h b/include/net/inet6_hashtables.h index 00cbb4384c79..9e34c877a770 100644 --- a/include/net/inet6_hashtables.h +++ b/include/net/inet6_hashtables.h | |||
@@ -96,14 +96,15 @@ static inline struct sock *__inet6_lookup_skb(struct inet_hashinfo *hashinfo, | |||
96 | const __be16 sport, | 96 | const __be16 sport, |
97 | const __be16 dport) | 97 | const __be16 dport) |
98 | { | 98 | { |
99 | struct sock *sk; | 99 | struct sock *sk = skb_steal_sock(skb); |
100 | 100 | ||
101 | if (unlikely(sk = skb_steal_sock(skb))) | 101 | if (sk) |
102 | return sk; | 102 | return sk; |
103 | else return __inet6_lookup(dev_net(skb_dst(skb)->dev), hashinfo, | 103 | |
104 | &ipv6_hdr(skb)->saddr, sport, | 104 | return __inet6_lookup(dev_net(skb_dst(skb)->dev), hashinfo, |
105 | &ipv6_hdr(skb)->daddr, ntohs(dport), | 105 | &ipv6_hdr(skb)->saddr, sport, |
106 | inet6_iif(skb)); | 106 | &ipv6_hdr(skb)->daddr, ntohs(dport), |
107 | inet6_iif(skb)); | ||
107 | } | 108 | } |
108 | 109 | ||
109 | extern struct sock *inet6_lookup(struct net *net, struct inet_hashinfo *hashinfo, | 110 | extern struct sock *inet6_lookup(struct net *net, struct inet_hashinfo *hashinfo, |
diff --git a/include/net/inet_common.h b/include/net/inet_common.h index 22fac9892b16..234008782c8c 100644 --- a/include/net/inet_common.h +++ b/include/net/inet_common.h | |||
@@ -14,9 +14,11 @@ struct sockaddr; | |||
14 | struct socket; | 14 | struct socket; |
15 | 15 | ||
16 | extern int inet_release(struct socket *sock); | 16 | extern int inet_release(struct socket *sock); |
17 | extern int inet_stream_connect(struct socket *sock, struct sockaddr * uaddr, | 17 | extern int inet_stream_connect(struct socket *sock, struct sockaddr *uaddr, |
18 | int addr_len, int flags); | 18 | int addr_len, int flags); |
19 | extern int inet_dgram_connect(struct socket *sock, struct sockaddr * uaddr, | 19 | extern int __inet_stream_connect(struct socket *sock, struct sockaddr *uaddr, |
20 | int addr_len, int flags); | ||
21 | extern int inet_dgram_connect(struct socket *sock, struct sockaddr *uaddr, | ||
20 | int addr_len, int flags); | 22 | int addr_len, int flags); |
21 | extern int inet_accept(struct socket *sock, struct socket *newsock, int flags); | 23 | extern int inet_accept(struct socket *sock, struct socket *newsock, int flags); |
22 | extern int inet_sendmsg(struct kiocb *iocb, struct socket *sock, | 24 | extern int inet_sendmsg(struct kiocb *iocb, struct socket *sock, |
diff --git a/include/net/inet_connection_sock.h b/include/net/inet_connection_sock.h index 7d83f90f203f..5ee66f517b4f 100644 --- a/include/net/inet_connection_sock.h +++ b/include/net/inet_connection_sock.h | |||
@@ -43,7 +43,6 @@ struct inet_connection_sock_af_ops { | |||
43 | struct sock *(*syn_recv_sock)(struct sock *sk, struct sk_buff *skb, | 43 | struct sock *(*syn_recv_sock)(struct sock *sk, struct sk_buff *skb, |
44 | struct request_sock *req, | 44 | struct request_sock *req, |
45 | struct dst_entry *dst); | 45 | struct dst_entry *dst); |
46 | struct inet_peer *(*get_peer)(struct sock *sk, bool *release_it); | ||
47 | u16 net_header_len; | 46 | u16 net_header_len; |
48 | u16 net_frag_header_len; | 47 | u16 net_frag_header_len; |
49 | u16 sockaddr_len; | 48 | u16 sockaddr_len; |
@@ -337,4 +336,6 @@ extern int inet_csk_compat_getsockopt(struct sock *sk, int level, int optname, | |||
337 | char __user *optval, int __user *optlen); | 336 | char __user *optval, int __user *optlen); |
338 | extern int inet_csk_compat_setsockopt(struct sock *sk, int level, int optname, | 337 | extern int inet_csk_compat_setsockopt(struct sock *sk, int level, int optname, |
339 | char __user *optval, unsigned int optlen); | 338 | char __user *optval, unsigned int optlen); |
339 | |||
340 | extern struct dst_entry *inet_csk_update_pmtu(struct sock *sk, u32 mtu); | ||
340 | #endif /* _INET_CONNECTION_SOCK_H */ | 341 | #endif /* _INET_CONNECTION_SOCK_H */ |
diff --git a/include/net/inet_hashtables.h b/include/net/inet_hashtables.h index 808fc5f76b03..54be0287eb98 100644 --- a/include/net/inet_hashtables.h +++ b/include/net/inet_hashtables.h | |||
@@ -379,10 +379,10 @@ static inline struct sock *__inet_lookup_skb(struct inet_hashinfo *hashinfo, | |||
379 | const __be16 sport, | 379 | const __be16 sport, |
380 | const __be16 dport) | 380 | const __be16 dport) |
381 | { | 381 | { |
382 | struct sock *sk; | 382 | struct sock *sk = skb_steal_sock(skb); |
383 | const struct iphdr *iph = ip_hdr(skb); | 383 | const struct iphdr *iph = ip_hdr(skb); |
384 | 384 | ||
385 | if (unlikely(sk = skb_steal_sock(skb))) | 385 | if (sk) |
386 | return sk; | 386 | return sk; |
387 | else | 387 | else |
388 | return __inet_lookup(dev_net(skb_dst(skb)->dev), hashinfo, | 388 | return __inet_lookup(dev_net(skb_dst(skb)->dev), hashinfo, |
diff --git a/include/net/inet_sock.h b/include/net/inet_sock.h index ae17e1352d7e..613cfa401672 100644 --- a/include/net/inet_sock.h +++ b/include/net/inet_sock.h | |||
@@ -172,6 +172,7 @@ struct inet_sock { | |||
172 | int uc_index; | 172 | int uc_index; |
173 | int mc_index; | 173 | int mc_index; |
174 | __be32 mc_addr; | 174 | __be32 mc_addr; |
175 | int rx_dst_ifindex; | ||
175 | struct ip_mc_socklist __rcu *mc_list; | 176 | struct ip_mc_socklist __rcu *mc_list; |
176 | struct inet_cork_full cork; | 177 | struct inet_cork_full cork; |
177 | }; | 178 | }; |
@@ -245,8 +246,6 @@ static inline __u8 inet_sk_flowi_flags(const struct sock *sk) | |||
245 | 246 | ||
246 | if (inet_sk(sk)->transparent || inet_sk(sk)->hdrincl) | 247 | if (inet_sk(sk)->transparent || inet_sk(sk)->hdrincl) |
247 | flags |= FLOWI_FLAG_ANYSRC; | 248 | flags |= FLOWI_FLAG_ANYSRC; |
248 | if (sk->sk_protocol == IPPROTO_TCP) | ||
249 | flags |= FLOWI_FLAG_PRECOW_METRICS; | ||
250 | return flags; | 249 | return flags; |
251 | } | 250 | } |
252 | 251 | ||
diff --git a/include/net/inetpeer.h b/include/net/inetpeer.h index 2040bff945d4..53f464d7cddc 100644 --- a/include/net/inetpeer.h +++ b/include/net/inetpeer.h | |||
@@ -36,25 +36,19 @@ struct inet_peer { | |||
36 | u32 metrics[RTAX_MAX]; | 36 | u32 metrics[RTAX_MAX]; |
37 | u32 rate_tokens; /* rate limiting for ICMP */ | 37 | u32 rate_tokens; /* rate limiting for ICMP */ |
38 | unsigned long rate_last; | 38 | unsigned long rate_last; |
39 | unsigned long pmtu_expires; | ||
40 | u32 pmtu_orig; | ||
41 | u32 pmtu_learned; | ||
42 | struct inetpeer_addr_base redirect_learned; | ||
43 | union { | 39 | union { |
44 | struct list_head gc_list; | 40 | struct list_head gc_list; |
45 | struct rcu_head gc_rcu; | 41 | struct rcu_head gc_rcu; |
46 | }; | 42 | }; |
47 | /* | 43 | /* |
48 | * Once inet_peer is queued for deletion (refcnt == -1), following fields | 44 | * Once inet_peer is queued for deletion (refcnt == -1), following fields |
49 | * are not available: rid, ip_id_count, tcp_ts, tcp_ts_stamp | 45 | * are not available: rid, ip_id_count |
50 | * We can share memory with rcu_head to help keep inet_peer small. | 46 | * We can share memory with rcu_head to help keep inet_peer small. |
51 | */ | 47 | */ |
52 | union { | 48 | union { |
53 | struct { | 49 | struct { |
54 | atomic_t rid; /* Frag reception counter */ | 50 | atomic_t rid; /* Frag reception counter */ |
55 | atomic_t ip_id_count; /* IP ID for the next packet */ | 51 | atomic_t ip_id_count; /* IP ID for the next packet */ |
56 | __u32 tcp_ts; | ||
57 | __u32 tcp_ts_stamp; | ||
58 | }; | 52 | }; |
59 | struct rcu_head rcu; | 53 | struct rcu_head rcu; |
60 | struct inet_peer *gc_next; | 54 | struct inet_peer *gc_next; |
@@ -65,6 +59,69 @@ struct inet_peer { | |||
65 | atomic_t refcnt; | 59 | atomic_t refcnt; |
66 | }; | 60 | }; |
67 | 61 | ||
62 | struct inet_peer_base { | ||
63 | struct inet_peer __rcu *root; | ||
64 | seqlock_t lock; | ||
65 | u32 flush_seq; | ||
66 | int total; | ||
67 | }; | ||
68 | |||
69 | #define INETPEER_BASE_BIT 0x1UL | ||
70 | |||
71 | static inline struct inet_peer *inetpeer_ptr(unsigned long val) | ||
72 | { | ||
73 | BUG_ON(val & INETPEER_BASE_BIT); | ||
74 | return (struct inet_peer *) val; | ||
75 | } | ||
76 | |||
77 | static inline struct inet_peer_base *inetpeer_base_ptr(unsigned long val) | ||
78 | { | ||
79 | if (!(val & INETPEER_BASE_BIT)) | ||
80 | return NULL; | ||
81 | val &= ~INETPEER_BASE_BIT; | ||
82 | return (struct inet_peer_base *) val; | ||
83 | } | ||
84 | |||
85 | static inline bool inetpeer_ptr_is_peer(unsigned long val) | ||
86 | { | ||
87 | return !(val & INETPEER_BASE_BIT); | ||
88 | } | ||
89 | |||
90 | static inline void __inetpeer_ptr_set_peer(unsigned long *val, struct inet_peer *peer) | ||
91 | { | ||
92 | /* This implicitly clears INETPEER_BASE_BIT */ | ||
93 | *val = (unsigned long) peer; | ||
94 | } | ||
95 | |||
96 | static inline bool inetpeer_ptr_set_peer(unsigned long *ptr, struct inet_peer *peer) | ||
97 | { | ||
98 | unsigned long val = (unsigned long) peer; | ||
99 | unsigned long orig = *ptr; | ||
100 | |||
101 | if (!(orig & INETPEER_BASE_BIT) || | ||
102 | cmpxchg(ptr, orig, val) != orig) | ||
103 | return false; | ||
104 | return true; | ||
105 | } | ||
106 | |||
107 | static inline void inetpeer_init_ptr(unsigned long *ptr, struct inet_peer_base *base) | ||
108 | { | ||
109 | *ptr = (unsigned long) base | INETPEER_BASE_BIT; | ||
110 | } | ||
111 | |||
112 | static inline void inetpeer_transfer_peer(unsigned long *to, unsigned long *from) | ||
113 | { | ||
114 | unsigned long val = *from; | ||
115 | |||
116 | *to = val; | ||
117 | if (inetpeer_ptr_is_peer(val)) { | ||
118 | struct inet_peer *peer = inetpeer_ptr(val); | ||
119 | atomic_inc(&peer->refcnt); | ||
120 | } | ||
121 | } | ||
122 | |||
123 | extern void inet_peer_base_init(struct inet_peer_base *); | ||
124 | |||
68 | void inet_initpeers(void) __init; | 125 | void inet_initpeers(void) __init; |
69 | 126 | ||
70 | #define INETPEER_METRICS_NEW (~(u32) 0) | 127 | #define INETPEER_METRICS_NEW (~(u32) 0) |
@@ -75,31 +132,38 @@ static inline bool inet_metrics_new(const struct inet_peer *p) | |||
75 | } | 132 | } |
76 | 133 | ||
77 | /* can be called with or without local BH being disabled */ | 134 | /* can be called with or without local BH being disabled */ |
78 | struct inet_peer *inet_getpeer(const struct inetpeer_addr *daddr, int create); | 135 | struct inet_peer *inet_getpeer(struct inet_peer_base *base, |
136 | const struct inetpeer_addr *daddr, | ||
137 | int create); | ||
79 | 138 | ||
80 | static inline struct inet_peer *inet_getpeer_v4(__be32 v4daddr, int create) | 139 | static inline struct inet_peer *inet_getpeer_v4(struct inet_peer_base *base, |
140 | __be32 v4daddr, | ||
141 | int create) | ||
81 | { | 142 | { |
82 | struct inetpeer_addr daddr; | 143 | struct inetpeer_addr daddr; |
83 | 144 | ||
84 | daddr.addr.a4 = v4daddr; | 145 | daddr.addr.a4 = v4daddr; |
85 | daddr.family = AF_INET; | 146 | daddr.family = AF_INET; |
86 | return inet_getpeer(&daddr, create); | 147 | return inet_getpeer(base, &daddr, create); |
87 | } | 148 | } |
88 | 149 | ||
89 | static inline struct inet_peer *inet_getpeer_v6(const struct in6_addr *v6daddr, int create) | 150 | static inline struct inet_peer *inet_getpeer_v6(struct inet_peer_base *base, |
151 | const struct in6_addr *v6daddr, | ||
152 | int create) | ||
90 | { | 153 | { |
91 | struct inetpeer_addr daddr; | 154 | struct inetpeer_addr daddr; |
92 | 155 | ||
93 | *(struct in6_addr *)daddr.addr.a6 = *v6daddr; | 156 | *(struct in6_addr *)daddr.addr.a6 = *v6daddr; |
94 | daddr.family = AF_INET6; | 157 | daddr.family = AF_INET6; |
95 | return inet_getpeer(&daddr, create); | 158 | return inet_getpeer(base, &daddr, create); |
96 | } | 159 | } |
97 | 160 | ||
98 | /* can be called from BH context or outside */ | 161 | /* can be called from BH context or outside */ |
99 | extern void inet_putpeer(struct inet_peer *p); | 162 | extern void inet_putpeer(struct inet_peer *p); |
100 | extern bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout); | 163 | extern bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout); |
101 | 164 | ||
102 | extern void inetpeer_invalidate_tree(int family); | 165 | extern void inetpeer_invalidate_tree(struct inet_peer_base *); |
166 | extern void inetpeer_invalidate_family(int family); | ||
103 | 167 | ||
104 | /* | 168 | /* |
105 | * temporary check to make sure we dont access rid, ip_id_count, tcp_ts, | 169 | * temporary check to make sure we dont access rid, ip_id_count, tcp_ts, |
diff --git a/include/net/ip.h b/include/net/ip.h index 83e0619f59d0..bd5e444a19ce 100644 --- a/include/net/ip.h +++ b/include/net/ip.h | |||
@@ -158,8 +158,9 @@ static inline __u8 ip_reply_arg_flowi_flags(const struct ip_reply_arg *arg) | |||
158 | return (arg->flags & IP_REPLY_ARG_NOSRCCHECK) ? FLOWI_FLAG_ANYSRC : 0; | 158 | return (arg->flags & IP_REPLY_ARG_NOSRCCHECK) ? FLOWI_FLAG_ANYSRC : 0; |
159 | } | 159 | } |
160 | 160 | ||
161 | void ip_send_reply(struct sock *sk, struct sk_buff *skb, __be32 daddr, | 161 | void ip_send_unicast_reply(struct net *net, struct sk_buff *skb, __be32 daddr, |
162 | const struct ip_reply_arg *arg, unsigned int len); | 162 | __be32 saddr, const struct ip_reply_arg *arg, |
163 | unsigned int len); | ||
163 | 164 | ||
164 | struct ipv4_config { | 165 | struct ipv4_config { |
165 | int log_martians; | 166 | int log_martians; |
@@ -210,6 +211,9 @@ extern int inet_peer_threshold; | |||
210 | extern int inet_peer_minttl; | 211 | extern int inet_peer_minttl; |
211 | extern int inet_peer_maxttl; | 212 | extern int inet_peer_maxttl; |
212 | 213 | ||
214 | /* From ip_input.c */ | ||
215 | extern int sysctl_ip_early_demux; | ||
216 | |||
213 | /* From ip_output.c */ | 217 | /* From ip_output.c */ |
214 | extern int sysctl_ip_dynaddr; | 218 | extern int sysctl_ip_dynaddr; |
215 | 219 | ||
diff --git a/include/net/ip6_fib.h b/include/net/ip6_fib.h index 0ae759a6c76e..0fedbd8d747a 100644 --- a/include/net/ip6_fib.h +++ b/include/net/ip6_fib.h | |||
@@ -86,6 +86,8 @@ struct fib6_table; | |||
86 | struct rt6_info { | 86 | struct rt6_info { |
87 | struct dst_entry dst; | 87 | struct dst_entry dst; |
88 | 88 | ||
89 | struct neighbour *n; | ||
90 | |||
89 | /* | 91 | /* |
90 | * Tail elements of dst_entry (__refcnt etc.) | 92 | * Tail elements of dst_entry (__refcnt etc.) |
91 | * and these elements (rarely used in hot path) are in | 93 | * and these elements (rarely used in hot path) are in |
@@ -107,7 +109,7 @@ struct rt6_info { | |||
107 | u32 rt6i_peer_genid; | 109 | u32 rt6i_peer_genid; |
108 | 110 | ||
109 | struct inet6_dev *rt6i_idev; | 111 | struct inet6_dev *rt6i_idev; |
110 | struct inet_peer *rt6i_peer; | 112 | unsigned long _rt6i_peer; |
111 | 113 | ||
112 | #ifdef CONFIG_XFRM | 114 | #ifdef CONFIG_XFRM |
113 | u32 rt6i_flow_cache_genid; | 115 | u32 rt6i_flow_cache_genid; |
@@ -118,6 +120,36 @@ struct rt6_info { | |||
118 | u8 rt6i_protocol; | 120 | u8 rt6i_protocol; |
119 | }; | 121 | }; |
120 | 122 | ||
123 | static inline struct inet_peer *rt6_peer_ptr(struct rt6_info *rt) | ||
124 | { | ||
125 | return inetpeer_ptr(rt->_rt6i_peer); | ||
126 | } | ||
127 | |||
128 | static inline bool rt6_has_peer(struct rt6_info *rt) | ||
129 | { | ||
130 | return inetpeer_ptr_is_peer(rt->_rt6i_peer); | ||
131 | } | ||
132 | |||
133 | static inline void __rt6_set_peer(struct rt6_info *rt, struct inet_peer *peer) | ||
134 | { | ||
135 | __inetpeer_ptr_set_peer(&rt->_rt6i_peer, peer); | ||
136 | } | ||
137 | |||
138 | static inline bool rt6_set_peer(struct rt6_info *rt, struct inet_peer *peer) | ||
139 | { | ||
140 | return inetpeer_ptr_set_peer(&rt->_rt6i_peer, peer); | ||
141 | } | ||
142 | |||
143 | static inline void rt6_init_peer(struct rt6_info *rt, struct inet_peer_base *base) | ||
144 | { | ||
145 | inetpeer_init_ptr(&rt->_rt6i_peer, base); | ||
146 | } | ||
147 | |||
148 | static inline void rt6_transfer_peer(struct rt6_info *rt, struct rt6_info *ort) | ||
149 | { | ||
150 | inetpeer_transfer_peer(&rt->_rt6i_peer, &ort->_rt6i_peer); | ||
151 | } | ||
152 | |||
121 | static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst) | 153 | static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst) |
122 | { | 154 | { |
123 | return ((struct rt6_info *)dst)->rt6i_idev; | 155 | return ((struct rt6_info *)dst)->rt6i_idev; |
@@ -207,6 +239,7 @@ struct fib6_table { | |||
207 | u32 tb6_id; | 239 | u32 tb6_id; |
208 | rwlock_t tb6_lock; | 240 | rwlock_t tb6_lock; |
209 | struct fib6_node tb6_root; | 241 | struct fib6_node tb6_root; |
242 | struct inet_peer_base tb6_peers; | ||
210 | }; | 243 | }; |
211 | 244 | ||
212 | #define RT6_TABLE_UNSPEC RT_TABLE_UNSPEC | 245 | #define RT6_TABLE_UNSPEC RT_TABLE_UNSPEC |
diff --git a/include/net/ip6_route.h b/include/net/ip6_route.h index 37c1a1ed82c1..5fa2af00634a 100644 --- a/include/net/ip6_route.h +++ b/include/net/ip6_route.h | |||
@@ -53,16 +53,25 @@ static inline unsigned int rt6_flags2srcprefs(int flags) | |||
53 | return (flags >> 3) & 7; | 53 | return (flags >> 3) & 7; |
54 | } | 54 | } |
55 | 55 | ||
56 | extern void rt6_bind_peer(struct rt6_info *rt, | 56 | extern void rt6_bind_peer(struct rt6_info *rt, int create); |
57 | int create); | 57 | |
58 | static inline struct inet_peer *__rt6_get_peer(struct rt6_info *rt, int create) | ||
59 | { | ||
60 | if (rt6_has_peer(rt)) | ||
61 | return rt6_peer_ptr(rt); | ||
62 | |||
63 | rt6_bind_peer(rt, create); | ||
64 | return (rt6_has_peer(rt) ? rt6_peer_ptr(rt) : NULL); | ||
65 | } | ||
58 | 66 | ||
59 | static inline struct inet_peer *rt6_get_peer(struct rt6_info *rt) | 67 | static inline struct inet_peer *rt6_get_peer(struct rt6_info *rt) |
60 | { | 68 | { |
61 | if (rt->rt6i_peer) | 69 | return __rt6_get_peer(rt, 0); |
62 | return rt->rt6i_peer; | 70 | } |
63 | 71 | ||
64 | rt6_bind_peer(rt, 0); | 72 | static inline struct inet_peer *rt6_get_peer_create(struct rt6_info *rt) |
65 | return rt->rt6i_peer; | 73 | { |
74 | return __rt6_get_peer(rt, 1); | ||
66 | } | 75 | } |
67 | 76 | ||
68 | extern void ip6_route_input(struct sk_buff *skb); | 77 | extern void ip6_route_input(struct sk_buff *skb); |
@@ -124,17 +133,12 @@ extern int rt6_route_rcv(struct net_device *dev, | |||
124 | u8 *opt, int len, | 133 | u8 *opt, int len, |
125 | const struct in6_addr *gwaddr); | 134 | const struct in6_addr *gwaddr); |
126 | 135 | ||
127 | extern void rt6_redirect(const struct in6_addr *dest, | 136 | extern void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu, |
128 | const struct in6_addr *src, | 137 | int oif, u32 mark); |
129 | const struct in6_addr *saddr, | 138 | extern void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, |
130 | struct neighbour *neigh, | 139 | __be32 mtu); |
131 | u8 *lladdr, | 140 | extern void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark); |
132 | int on_link); | 141 | extern void ip6_sk_redirect(struct sk_buff *skb, struct sock *sk); |
133 | |||
134 | extern void rt6_pmtu_discovery(const struct in6_addr *daddr, | ||
135 | const struct in6_addr *saddr, | ||
136 | struct net_device *dev, | ||
137 | u32 pmtu); | ||
138 | 142 | ||
139 | struct netlink_callback; | 143 | struct netlink_callback; |
140 | 144 | ||
@@ -154,7 +158,8 @@ extern void rt6_remove_prefsrc(struct inet6_ifaddr *ifp); | |||
154 | * Store a destination cache entry in a socket | 158 | * Store a destination cache entry in a socket |
155 | */ | 159 | */ |
156 | static inline void __ip6_dst_store(struct sock *sk, struct dst_entry *dst, | 160 | static inline void __ip6_dst_store(struct sock *sk, struct dst_entry *dst, |
157 | struct in6_addr *daddr, struct in6_addr *saddr) | 161 | const struct in6_addr *daddr, |
162 | const struct in6_addr *saddr) | ||
158 | { | 163 | { |
159 | struct ipv6_pinfo *np = inet6_sk(sk); | 164 | struct ipv6_pinfo *np = inet6_sk(sk); |
160 | struct rt6_info *rt = (struct rt6_info *) dst; | 165 | struct rt6_info *rt = (struct rt6_info *) dst; |
diff --git a/include/net/ip6_tunnel.h b/include/net/ip6_tunnel.h index fc73e667b50e..358fb86f57eb 100644 --- a/include/net/ip6_tunnel.h +++ b/include/net/ip6_tunnel.h | |||
@@ -9,6 +9,8 @@ | |||
9 | #define IP6_TNL_F_CAP_XMIT 0x10000 | 9 | #define IP6_TNL_F_CAP_XMIT 0x10000 |
10 | /* capable of receiving packets */ | 10 | /* capable of receiving packets */ |
11 | #define IP6_TNL_F_CAP_RCV 0x20000 | 11 | #define IP6_TNL_F_CAP_RCV 0x20000 |
12 | /* determine capability on a per-packet basis */ | ||
13 | #define IP6_TNL_F_CAP_PER_PACKET 0x40000 | ||
12 | 14 | ||
13 | /* IPv6 tunnel */ | 15 | /* IPv6 tunnel */ |
14 | 16 | ||
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index 78df0866cc38..e69c3a47153d 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h | |||
@@ -18,7 +18,9 @@ | |||
18 | 18 | ||
19 | #include <net/flow.h> | 19 | #include <net/flow.h> |
20 | #include <linux/seq_file.h> | 20 | #include <linux/seq_file.h> |
21 | #include <linux/rcupdate.h> | ||
21 | #include <net/fib_rules.h> | 22 | #include <net/fib_rules.h> |
23 | #include <net/inetpeer.h> | ||
22 | 24 | ||
23 | struct fib_config { | 25 | struct fib_config { |
24 | u8 fc_dst_len; | 26 | u8 fc_dst_len; |
@@ -44,6 +46,23 @@ struct fib_config { | |||
44 | }; | 46 | }; |
45 | 47 | ||
46 | struct fib_info; | 48 | struct fib_info; |
49 | struct rtable; | ||
50 | |||
51 | struct fib_nh_exception { | ||
52 | struct fib_nh_exception __rcu *fnhe_next; | ||
53 | __be32 fnhe_daddr; | ||
54 | u32 fnhe_pmtu; | ||
55 | __be32 fnhe_gw; | ||
56 | unsigned long fnhe_expires; | ||
57 | unsigned long fnhe_stamp; | ||
58 | }; | ||
59 | |||
60 | struct fnhe_hash_bucket { | ||
61 | struct fib_nh_exception __rcu *chain; | ||
62 | }; | ||
63 | |||
64 | #define FNHE_HASH_SIZE 2048 | ||
65 | #define FNHE_RECLAIM_DEPTH 5 | ||
47 | 66 | ||
48 | struct fib_nh { | 67 | struct fib_nh { |
49 | struct net_device *nh_dev; | 68 | struct net_device *nh_dev; |
@@ -62,6 +81,9 @@ struct fib_nh { | |||
62 | __be32 nh_gw; | 81 | __be32 nh_gw; |
63 | __be32 nh_saddr; | 82 | __be32 nh_saddr; |
64 | int nh_saddr_genid; | 83 | int nh_saddr_genid; |
84 | struct rtable *nh_rth_output; | ||
85 | struct rtable *nh_rth_input; | ||
86 | struct fnhe_hash_bucket *nh_exceptions; | ||
65 | }; | 87 | }; |
66 | 88 | ||
67 | /* | 89 | /* |
@@ -105,12 +127,10 @@ struct fib_result { | |||
105 | unsigned char nh_sel; | 127 | unsigned char nh_sel; |
106 | unsigned char type; | 128 | unsigned char type; |
107 | unsigned char scope; | 129 | unsigned char scope; |
130 | u32 tclassid; | ||
108 | struct fib_info *fi; | 131 | struct fib_info *fi; |
109 | struct fib_table *table; | 132 | struct fib_table *table; |
110 | struct list_head *fa_head; | 133 | struct list_head *fa_head; |
111 | #ifdef CONFIG_IP_MULTIPLE_TABLES | ||
112 | struct fib_rule *r; | ||
113 | #endif | ||
114 | }; | 134 | }; |
115 | 135 | ||
116 | struct fib_result_nl { | 136 | struct fib_result_nl { |
@@ -157,11 +177,11 @@ extern __be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh); | |||
157 | FIB_RES_SADDR(net, res)) | 177 | FIB_RES_SADDR(net, res)) |
158 | 178 | ||
159 | struct fib_table { | 179 | struct fib_table { |
160 | struct hlist_node tb_hlist; | 180 | struct hlist_node tb_hlist; |
161 | u32 tb_id; | 181 | u32 tb_id; |
162 | int tb_default; | 182 | int tb_default; |
163 | int tb_num_default; | 183 | int tb_num_default; |
164 | unsigned long tb_data[0]; | 184 | unsigned long tb_data[0]; |
165 | }; | 185 | }; |
166 | 186 | ||
167 | extern int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp, | 187 | extern int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp, |
@@ -214,24 +234,55 @@ static inline int fib_lookup(struct net *net, const struct flowi4 *flp, | |||
214 | extern int __net_init fib4_rules_init(struct net *net); | 234 | extern int __net_init fib4_rules_init(struct net *net); |
215 | extern void __net_exit fib4_rules_exit(struct net *net); | 235 | extern void __net_exit fib4_rules_exit(struct net *net); |
216 | 236 | ||
217 | #ifdef CONFIG_IP_ROUTE_CLASSID | ||
218 | extern u32 fib_rules_tclass(const struct fib_result *res); | ||
219 | #endif | ||
220 | |||
221 | extern int fib_lookup(struct net *n, struct flowi4 *flp, struct fib_result *res); | ||
222 | |||
223 | extern struct fib_table *fib_new_table(struct net *net, u32 id); | 237 | extern struct fib_table *fib_new_table(struct net *net, u32 id); |
224 | extern struct fib_table *fib_get_table(struct net *net, u32 id); | 238 | extern struct fib_table *fib_get_table(struct net *net, u32 id); |
225 | 239 | ||
240 | extern int __fib_lookup(struct net *net, struct flowi4 *flp, | ||
241 | struct fib_result *res); | ||
242 | |||
243 | static inline int fib_lookup(struct net *net, struct flowi4 *flp, | ||
244 | struct fib_result *res) | ||
245 | { | ||
246 | if (!net->ipv4.fib_has_custom_rules) { | ||
247 | res->tclassid = 0; | ||
248 | if (net->ipv4.fib_local && | ||
249 | !fib_table_lookup(net->ipv4.fib_local, flp, res, | ||
250 | FIB_LOOKUP_NOREF)) | ||
251 | return 0; | ||
252 | if (net->ipv4.fib_main && | ||
253 | !fib_table_lookup(net->ipv4.fib_main, flp, res, | ||
254 | FIB_LOOKUP_NOREF)) | ||
255 | return 0; | ||
256 | if (net->ipv4.fib_default && | ||
257 | !fib_table_lookup(net->ipv4.fib_default, flp, res, | ||
258 | FIB_LOOKUP_NOREF)) | ||
259 | return 0; | ||
260 | return -ENETUNREACH; | ||
261 | } | ||
262 | return __fib_lookup(net, flp, res); | ||
263 | } | ||
264 | |||
226 | #endif /* CONFIG_IP_MULTIPLE_TABLES */ | 265 | #endif /* CONFIG_IP_MULTIPLE_TABLES */ |
227 | 266 | ||
228 | /* Exported by fib_frontend.c */ | 267 | /* Exported by fib_frontend.c */ |
229 | extern const struct nla_policy rtm_ipv4_policy[]; | 268 | extern const struct nla_policy rtm_ipv4_policy[]; |
230 | extern void ip_fib_init(void); | 269 | extern void ip_fib_init(void); |
270 | extern __be32 fib_compute_spec_dst(struct sk_buff *skb); | ||
231 | extern int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst, | 271 | extern int fib_validate_source(struct sk_buff *skb, __be32 src, __be32 dst, |
232 | u8 tos, int oif, struct net_device *dev, | 272 | u8 tos, int oif, struct net_device *dev, |
233 | __be32 *spec_dst, u32 *itag); | 273 | struct in_device *idev, u32 *itag); |
234 | extern void fib_select_default(struct fib_result *res); | 274 | extern void fib_select_default(struct fib_result *res); |
275 | #ifdef CONFIG_IP_ROUTE_CLASSID | ||
276 | static inline int fib_num_tclassid_users(struct net *net) | ||
277 | { | ||
278 | return net->ipv4.fib_num_tclassid_users; | ||
279 | } | ||
280 | #else | ||
281 | static inline int fib_num_tclassid_users(struct net *net) | ||
282 | { | ||
283 | return 0; | ||
284 | } | ||
285 | #endif | ||
235 | 286 | ||
236 | /* Exported by fib_semantics.c */ | 287 | /* Exported by fib_semantics.c */ |
237 | extern int ip_fib_check_default(__be32 gw, struct net_device *dev); | 288 | extern int ip_fib_check_default(__be32 gw, struct net_device *dev); |
@@ -253,7 +304,7 @@ static inline void fib_combine_itag(u32 *itag, const struct fib_result *res) | |||
253 | #endif | 304 | #endif |
254 | *itag = FIB_RES_NH(*res).nh_tclassid<<16; | 305 | *itag = FIB_RES_NH(*res).nh_tclassid<<16; |
255 | #ifdef CONFIG_IP_MULTIPLE_TABLES | 306 | #ifdef CONFIG_IP_MULTIPLE_TABLES |
256 | rtag = fib_rules_tclass(res); | 307 | rtag = res->tclassid; |
257 | if (*itag == 0) | 308 | if (*itag == 0) |
258 | *itag = (rtag<<16); | 309 | *itag = (rtag<<16); |
259 | *itag |= (rtag>>16); | 310 | *itag |= (rtag>>16); |
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h index d6146b4811c2..95374d1696a1 100644 --- a/include/net/ip_vs.h +++ b/include/net/ip_vs.h | |||
@@ -1425,7 +1425,7 @@ static inline void ip_vs_notrack(struct sk_buff *skb) | |||
1425 | struct nf_conn *ct = nf_ct_get(skb, &ctinfo); | 1425 | struct nf_conn *ct = nf_ct_get(skb, &ctinfo); |
1426 | 1426 | ||
1427 | if (!ct || !nf_ct_is_untracked(ct)) { | 1427 | if (!ct || !nf_ct_is_untracked(ct)) { |
1428 | nf_reset(skb); | 1428 | nf_conntrack_put(skb->nfct); |
1429 | skb->nfct = &nf_ct_untracked_get()->ct_general; | 1429 | skb->nfct = &nf_ct_untracked_get()->ct_general; |
1430 | skb->nfctinfo = IP_CT_NEW; | 1430 | skb->nfctinfo = IP_CT_NEW; |
1431 | nf_conntrack_get(skb->nfct); | 1431 | nf_conntrack_get(skb->nfct); |
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index aecf88436abf..01c34b363a34 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h | |||
@@ -251,6 +251,8 @@ static inline void fl6_sock_release(struct ip6_flowlabel *fl) | |||
251 | atomic_dec(&fl->users); | 251 | atomic_dec(&fl->users); |
252 | } | 252 | } |
253 | 253 | ||
254 | extern void icmpv6_notify(struct sk_buff *skb, u8 type, u8 code, __be32 info); | ||
255 | |||
254 | extern int ip6_ra_control(struct sock *sk, int sel); | 256 | extern int ip6_ra_control(struct sock *sk, int sel); |
255 | 257 | ||
256 | extern int ipv6_parse_hopopts(struct sk_buff *skb); | 258 | extern int ipv6_parse_hopopts(struct sk_buff *skb); |
@@ -298,14 +300,23 @@ static inline int ipv6_addr_cmp(const struct in6_addr *a1, const struct in6_addr | |||
298 | return memcmp(a1, a2, sizeof(struct in6_addr)); | 300 | return memcmp(a1, a2, sizeof(struct in6_addr)); |
299 | } | 301 | } |
300 | 302 | ||
301 | static inline int | 303 | static inline bool |
302 | ipv6_masked_addr_cmp(const struct in6_addr *a1, const struct in6_addr *m, | 304 | ipv6_masked_addr_cmp(const struct in6_addr *a1, const struct in6_addr *m, |
303 | const struct in6_addr *a2) | 305 | const struct in6_addr *a2) |
304 | { | 306 | { |
307 | #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64 | ||
308 | const unsigned long *ul1 = (const unsigned long *)a1; | ||
309 | const unsigned long *ulm = (const unsigned long *)m; | ||
310 | const unsigned long *ul2 = (const unsigned long *)a2; | ||
311 | |||
312 | return !!(((ul1[0] ^ ul2[0]) & ulm[0]) | | ||
313 | ((ul1[1] ^ ul2[1]) & ulm[1])); | ||
314 | #else | ||
305 | return !!(((a1->s6_addr32[0] ^ a2->s6_addr32[0]) & m->s6_addr32[0]) | | 315 | return !!(((a1->s6_addr32[0] ^ a2->s6_addr32[0]) & m->s6_addr32[0]) | |
306 | ((a1->s6_addr32[1] ^ a2->s6_addr32[1]) & m->s6_addr32[1]) | | 316 | ((a1->s6_addr32[1] ^ a2->s6_addr32[1]) & m->s6_addr32[1]) | |
307 | ((a1->s6_addr32[2] ^ a2->s6_addr32[2]) & m->s6_addr32[2]) | | 317 | ((a1->s6_addr32[2] ^ a2->s6_addr32[2]) & m->s6_addr32[2]) | |
308 | ((a1->s6_addr32[3] ^ a2->s6_addr32[3]) & m->s6_addr32[3])); | 318 | ((a1->s6_addr32[3] ^ a2->s6_addr32[3]) & m->s6_addr32[3])); |
319 | #endif | ||
309 | } | 320 | } |
310 | 321 | ||
311 | static inline void ipv6_addr_prefix(struct in6_addr *pfx, | 322 | static inline void ipv6_addr_prefix(struct in6_addr *pfx, |
@@ -335,10 +346,17 @@ static inline void ipv6_addr_set(struct in6_addr *addr, | |||
335 | static inline bool ipv6_addr_equal(const struct in6_addr *a1, | 346 | static inline bool ipv6_addr_equal(const struct in6_addr *a1, |
336 | const struct in6_addr *a2) | 347 | const struct in6_addr *a2) |
337 | { | 348 | { |
349 | #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64 | ||
350 | const unsigned long *ul1 = (const unsigned long *)a1; | ||
351 | const unsigned long *ul2 = (const unsigned long *)a2; | ||
352 | |||
353 | return ((ul1[0] ^ ul2[0]) | (ul1[1] ^ ul2[1])) == 0UL; | ||
354 | #else | ||
338 | return ((a1->s6_addr32[0] ^ a2->s6_addr32[0]) | | 355 | return ((a1->s6_addr32[0] ^ a2->s6_addr32[0]) | |
339 | (a1->s6_addr32[1] ^ a2->s6_addr32[1]) | | 356 | (a1->s6_addr32[1] ^ a2->s6_addr32[1]) | |
340 | (a1->s6_addr32[2] ^ a2->s6_addr32[2]) | | 357 | (a1->s6_addr32[2] ^ a2->s6_addr32[2]) | |
341 | (a1->s6_addr32[3] ^ a2->s6_addr32[3])) == 0; | 358 | (a1->s6_addr32[3] ^ a2->s6_addr32[3])) == 0; |
359 | #endif | ||
342 | } | 360 | } |
343 | 361 | ||
344 | static inline bool __ipv6_prefix_equal(const __be32 *a1, const __be32 *a2, | 362 | static inline bool __ipv6_prefix_equal(const __be32 *a1, const __be32 *a2, |
@@ -391,8 +409,27 @@ bool ip6_frag_match(struct inet_frag_queue *q, void *a); | |||
391 | 409 | ||
392 | static inline bool ipv6_addr_any(const struct in6_addr *a) | 410 | static inline bool ipv6_addr_any(const struct in6_addr *a) |
393 | { | 411 | { |
412 | #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64 | ||
413 | const unsigned long *ul = (const unsigned long *)a; | ||
414 | |||
415 | return (ul[0] | ul[1]) == 0UL; | ||
416 | #else | ||
394 | return (a->s6_addr32[0] | a->s6_addr32[1] | | 417 | return (a->s6_addr32[0] | a->s6_addr32[1] | |
395 | a->s6_addr32[2] | a->s6_addr32[3]) == 0; | 418 | a->s6_addr32[2] | a->s6_addr32[3]) == 0; |
419 | #endif | ||
420 | } | ||
421 | |||
422 | static inline u32 ipv6_addr_hash(const struct in6_addr *a) | ||
423 | { | ||
424 | #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64 | ||
425 | const unsigned long *ul = (const unsigned long *)a; | ||
426 | unsigned long x = ul[0] ^ ul[1]; | ||
427 | |||
428 | return (u32)(x ^ (x >> 32)); | ||
429 | #else | ||
430 | return (__force u32)(a->s6_addr32[0] ^ a->s6_addr32[1] ^ | ||
431 | a->s6_addr32[2] ^ a->s6_addr32[3]); | ||
432 | #endif | ||
396 | } | 433 | } |
397 | 434 | ||
398 | static inline bool ipv6_addr_loopback(const struct in6_addr *a) | 435 | static inline bool ipv6_addr_loopback(const struct in6_addr *a) |
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 1937c7d98304..bb86aa6f98dd 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -233,8 +233,10 @@ enum ieee80211_rssi_event { | |||
233 | * valid in station mode only while @assoc is true and if also | 233 | * valid in station mode only while @assoc is true and if also |
234 | * requested by %IEEE80211_HW_NEED_DTIM_PERIOD (cf. also hw conf | 234 | * requested by %IEEE80211_HW_NEED_DTIM_PERIOD (cf. also hw conf |
235 | * @ps_dtim_period) | 235 | * @ps_dtim_period) |
236 | * @last_tsf: last beacon's/probe response's TSF timestamp (could be old | 236 | * @sync_tsf: last beacon's/probe response's TSF timestamp (could be old |
237 | * as it may have been received during scanning long ago) | 237 | * as it may have been received during scanning long ago) |
238 | * @sync_device_ts: the device timestamp corresponding to the sync_tsf, | ||
239 | * the driver/device can use this to calculate synchronisation | ||
238 | * @beacon_int: beacon interval | 240 | * @beacon_int: beacon interval |
239 | * @assoc_capability: capabilities taken from assoc resp | 241 | * @assoc_capability: capabilities taken from assoc resp |
240 | * @basic_rates: bitmap of basic rates, each bit stands for an | 242 | * @basic_rates: bitmap of basic rates, each bit stands for an |
@@ -281,7 +283,8 @@ struct ieee80211_bss_conf { | |||
281 | u8 dtim_period; | 283 | u8 dtim_period; |
282 | u16 beacon_int; | 284 | u16 beacon_int; |
283 | u16 assoc_capability; | 285 | u16 assoc_capability; |
284 | u64 last_tsf; | 286 | u64 sync_tsf; |
287 | u32 sync_device_ts; | ||
285 | u32 basic_rates; | 288 | u32 basic_rates; |
286 | int mcast_rate[IEEE80211_NUM_BANDS]; | 289 | int mcast_rate[IEEE80211_NUM_BANDS]; |
287 | u16 ht_operation_mode; | 290 | u16 ht_operation_mode; |
@@ -475,7 +478,7 @@ enum mac80211_rate_control_flags { | |||
475 | #define IEEE80211_TX_INFO_RATE_DRIVER_DATA_SIZE 24 | 478 | #define IEEE80211_TX_INFO_RATE_DRIVER_DATA_SIZE 24 |
476 | 479 | ||
477 | /* maximum number of rate stages */ | 480 | /* maximum number of rate stages */ |
478 | #define IEEE80211_TX_MAX_RATES 5 | 481 | #define IEEE80211_TX_MAX_RATES 4 |
479 | 482 | ||
480 | /** | 483 | /** |
481 | * struct ieee80211_tx_rate - rate selection/status | 484 | * struct ieee80211_tx_rate - rate selection/status |
@@ -563,11 +566,11 @@ struct ieee80211_tx_info { | |||
563 | } control; | 566 | } control; |
564 | struct { | 567 | struct { |
565 | struct ieee80211_tx_rate rates[IEEE80211_TX_MAX_RATES]; | 568 | struct ieee80211_tx_rate rates[IEEE80211_TX_MAX_RATES]; |
566 | u8 ampdu_ack_len; | ||
567 | int ack_signal; | 569 | int ack_signal; |
570 | u8 ampdu_ack_len; | ||
568 | u8 ampdu_len; | 571 | u8 ampdu_len; |
569 | u8 antenna; | 572 | u8 antenna; |
570 | /* 14 bytes free */ | 573 | /* 21 bytes free */ |
571 | } status; | 574 | } status; |
572 | struct { | 575 | struct { |
573 | struct ieee80211_tx_rate driver_rates[ | 576 | struct ieee80211_tx_rate driver_rates[ |
@@ -634,7 +637,7 @@ ieee80211_tx_info_clear_status(struct ieee80211_tx_info *info) | |||
634 | info->status.rates[i].count = 0; | 637 | info->status.rates[i].count = 0; |
635 | 638 | ||
636 | BUILD_BUG_ON( | 639 | BUILD_BUG_ON( |
637 | offsetof(struct ieee80211_tx_info, status.ampdu_ack_len) != 23); | 640 | offsetof(struct ieee80211_tx_info, status.ack_signal) != 20); |
638 | memset(&info->status.ampdu_ack_len, 0, | 641 | memset(&info->status.ampdu_ack_len, 0, |
639 | sizeof(struct ieee80211_tx_info) - | 642 | sizeof(struct ieee80211_tx_info) - |
640 | offsetof(struct ieee80211_tx_info, status.ampdu_ack_len)); | 643 | offsetof(struct ieee80211_tx_info, status.ampdu_ack_len)); |
@@ -696,6 +699,8 @@ enum mac80211_rx_flags { | |||
696 | * | 699 | * |
697 | * @mactime: value in microseconds of the 64-bit Time Synchronization Function | 700 | * @mactime: value in microseconds of the 64-bit Time Synchronization Function |
698 | * (TSF) timer when the first data symbol (MPDU) arrived at the hardware. | 701 | * (TSF) timer when the first data symbol (MPDU) arrived at the hardware. |
702 | * @device_timestamp: arbitrary timestamp for the device, mac80211 doesn't use | ||
703 | * it but can store it and pass it back to the driver for synchronisation | ||
699 | * @band: the active band when this frame was received | 704 | * @band: the active band when this frame was received |
700 | * @freq: frequency the radio was tuned to when receiving this frame, in MHz | 705 | * @freq: frequency the radio was tuned to when receiving this frame, in MHz |
701 | * @signal: signal strength when receiving this frame, either in dBm, in dB or | 706 | * @signal: signal strength when receiving this frame, either in dBm, in dB or |
@@ -709,13 +714,14 @@ enum mac80211_rx_flags { | |||
709 | */ | 714 | */ |
710 | struct ieee80211_rx_status { | 715 | struct ieee80211_rx_status { |
711 | u64 mactime; | 716 | u64 mactime; |
712 | enum ieee80211_band band; | 717 | u32 device_timestamp; |
713 | int freq; | 718 | u16 flag; |
714 | int signal; | 719 | u16 freq; |
715 | int antenna; | 720 | u8 rate_idx; |
716 | int rate_idx; | 721 | u8 rx_flags; |
717 | int flag; | 722 | u8 band; |
718 | unsigned int rx_flags; | 723 | u8 antenna; |
724 | s8 signal; | ||
719 | }; | 725 | }; |
720 | 726 | ||
721 | /** | 727 | /** |
@@ -1297,6 +1303,10 @@ enum ieee80211_hw_flags { | |||
1297 | * reports, by default it is set to _MCS, _GI and _BW but doesn't | 1303 | * reports, by default it is set to _MCS, _GI and _BW but doesn't |
1298 | * include _FMT. Use %IEEE80211_RADIOTAP_MCS_HAVE_* values, only | 1304 | * include _FMT. Use %IEEE80211_RADIOTAP_MCS_HAVE_* values, only |
1299 | * adding _BW is supported today. | 1305 | * adding _BW is supported today. |
1306 | * | ||
1307 | * @netdev_features: netdev features to be set in each netdev created | ||
1308 | * from this HW. Note only HW checksum features are currently | ||
1309 | * compatible with mac80211. Other feature bits will be rejected. | ||
1300 | */ | 1310 | */ |
1301 | struct ieee80211_hw { | 1311 | struct ieee80211_hw { |
1302 | struct ieee80211_conf conf; | 1312 | struct ieee80211_conf conf; |
@@ -1319,6 +1329,7 @@ struct ieee80211_hw { | |||
1319 | u8 max_tx_aggregation_subframes; | 1329 | u8 max_tx_aggregation_subframes; |
1320 | u8 offchannel_tx_hw_queue; | 1330 | u8 offchannel_tx_hw_queue; |
1321 | u8 radiotap_mcs_details; | 1331 | u8 radiotap_mcs_details; |
1332 | netdev_features_t netdev_features; | ||
1322 | }; | 1333 | }; |
1323 | 1334 | ||
1324 | /** | 1335 | /** |
@@ -1891,19 +1902,6 @@ enum ieee80211_rate_control_changed { | |||
1891 | * The low-level driver should send the frame out based on | 1902 | * The low-level driver should send the frame out based on |
1892 | * configuration in the TX control data. This handler should, | 1903 | * configuration in the TX control data. This handler should, |
1893 | * preferably, never fail and stop queues appropriately. | 1904 | * preferably, never fail and stop queues appropriately. |
1894 | * This must be implemented if @tx_frags is not. | ||
1895 | * Must be atomic. | ||
1896 | * | ||
1897 | * @tx_frags: Called to transmit multiple fragments of a single MSDU. | ||
1898 | * This handler must consume all fragments, sending out some of | ||
1899 | * them only is useless and it can't ask for some of them to be | ||
1900 | * queued again. If the frame is not fragmented the queue has a | ||
1901 | * single SKB only. To avoid issues with the networking stack | ||
1902 | * when TX status is reported the frames should be removed from | ||
1903 | * the skb queue. | ||
1904 | * If this is used, the tx_info @vif and @sta pointers will be | ||
1905 | * invalid -- you must not use them in that case. | ||
1906 | * This must be implemented if @tx isn't. | ||
1907 | * Must be atomic. | 1905 | * Must be atomic. |
1908 | * | 1906 | * |
1909 | * @start: Called before the first netdevice attached to the hardware | 1907 | * @start: Called before the first netdevice attached to the hardware |
@@ -1940,6 +1938,11 @@ enum ieee80211_rate_control_changed { | |||
1940 | * to also unregister the device. If it returns 1, then mac80211 | 1938 | * to also unregister the device. If it returns 1, then mac80211 |
1941 | * will also go through the regular complete restart on resume. | 1939 | * will also go through the regular complete restart on resume. |
1942 | * | 1940 | * |
1941 | * @set_wakeup: Enable or disable wakeup when WoWLAN configuration is | ||
1942 | * modified. The reason is that device_set_wakeup_enable() is | ||
1943 | * supposed to be called when the configuration changes, not only | ||
1944 | * in suspend(). | ||
1945 | * | ||
1943 | * @add_interface: Called when a netdevice attached to the hardware is | 1946 | * @add_interface: Called when a netdevice attached to the hardware is |
1944 | * enabled. Because it is not called for monitor mode devices, @start | 1947 | * enabled. Because it is not called for monitor mode devices, @start |
1945 | * and @stop must be implemented. | 1948 | * and @stop must be implemented. |
@@ -2178,7 +2181,10 @@ enum ieee80211_rate_control_changed { | |||
2178 | * offload. Frames to transmit on the off-channel channel are transmitted | 2181 | * offload. Frames to transmit on the off-channel channel are transmitted |
2179 | * normally except for the %IEEE80211_TX_CTL_TX_OFFCHAN flag. When the | 2182 | * normally except for the %IEEE80211_TX_CTL_TX_OFFCHAN flag. When the |
2180 | * duration (which will always be non-zero) expires, the driver must call | 2183 | * duration (which will always be non-zero) expires, the driver must call |
2181 | * ieee80211_remain_on_channel_expired(). This callback may sleep. | 2184 | * ieee80211_remain_on_channel_expired(). |
2185 | * Note that this callback may be called while the device is in IDLE and | ||
2186 | * must be accepted in this case. | ||
2187 | * This callback may sleep. | ||
2182 | * @cancel_remain_on_channel: Requests that an ongoing off-channel period is | 2188 | * @cancel_remain_on_channel: Requests that an ongoing off-channel period is |
2183 | * aborted before it expires. This callback may sleep. | 2189 | * aborted before it expires. This callback may sleep. |
2184 | * | 2190 | * |
@@ -2241,11 +2247,24 @@ enum ieee80211_rate_control_changed { | |||
2241 | * @get_et_strings: Ethtool API to get a set of strings to describe stats | 2247 | * @get_et_strings: Ethtool API to get a set of strings to describe stats |
2242 | * and perhaps other supported types of ethtool data-sets. | 2248 | * and perhaps other supported types of ethtool data-sets. |
2243 | * | 2249 | * |
2250 | * @get_rssi: Get current signal strength in dBm, the function is optional | ||
2251 | * and can sleep. | ||
2252 | * | ||
2253 | * @mgd_prepare_tx: Prepare for transmitting a management frame for association | ||
2254 | * before associated. In multi-channel scenarios, a virtual interface is | ||
2255 | * bound to a channel before it is associated, but as it isn't associated | ||
2256 | * yet it need not necessarily be given airtime, in particular since any | ||
2257 | * transmission to a P2P GO needs to be synchronized against the GO's | ||
2258 | * powersave state. mac80211 will call this function before transmitting a | ||
2259 | * management frame prior to having successfully associated to allow the | ||
2260 | * driver to give it channel time for the transmission, to get a response | ||
2261 | * and to be able to synchronize with the GO. | ||
2262 | * The callback will be called before each transmission and upon return | ||
2263 | * mac80211 will transmit the frame right away. | ||
2264 | * The callback is optional and can (should!) sleep. | ||
2244 | */ | 2265 | */ |
2245 | struct ieee80211_ops { | 2266 | struct ieee80211_ops { |
2246 | void (*tx)(struct ieee80211_hw *hw, struct sk_buff *skb); | 2267 | void (*tx)(struct ieee80211_hw *hw, struct sk_buff *skb); |
2247 | void (*tx_frags)(struct ieee80211_hw *hw, struct ieee80211_vif *vif, | ||
2248 | struct ieee80211_sta *sta, struct sk_buff_head *skbs); | ||
2249 | int (*start)(struct ieee80211_hw *hw); | 2268 | int (*start)(struct ieee80211_hw *hw); |
2250 | void (*stop)(struct ieee80211_hw *hw); | 2269 | void (*stop)(struct ieee80211_hw *hw); |
2251 | #ifdef CONFIG_PM | 2270 | #ifdef CONFIG_PM |
@@ -2380,6 +2399,11 @@ struct ieee80211_ops { | |||
2380 | void (*get_et_strings)(struct ieee80211_hw *hw, | 2399 | void (*get_et_strings)(struct ieee80211_hw *hw, |
2381 | struct ieee80211_vif *vif, | 2400 | struct ieee80211_vif *vif, |
2382 | u32 sset, u8 *data); | 2401 | u32 sset, u8 *data); |
2402 | int (*get_rssi)(struct ieee80211_hw *hw, struct ieee80211_vif *vif, | ||
2403 | struct ieee80211_sta *sta, s8 *rssi_dbm); | ||
2404 | |||
2405 | void (*mgd_prepare_tx)(struct ieee80211_hw *hw, | ||
2406 | struct ieee80211_vif *vif); | ||
2383 | }; | 2407 | }; |
2384 | 2408 | ||
2385 | /** | 2409 | /** |
@@ -2966,6 +2990,7 @@ __le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw, | |||
2966 | * ieee80211_generic_frame_duration - Calculate the duration field for a frame | 2990 | * ieee80211_generic_frame_duration - Calculate the duration field for a frame |
2967 | * @hw: pointer obtained from ieee80211_alloc_hw(). | 2991 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
2968 | * @vif: &struct ieee80211_vif pointer from the add_interface callback. | 2992 | * @vif: &struct ieee80211_vif pointer from the add_interface callback. |
2993 | * @band: the band to calculate the frame duration on | ||
2969 | * @frame_len: the length of the frame. | 2994 | * @frame_len: the length of the frame. |
2970 | * @rate: the rate at which the frame is going to be transmitted. | 2995 | * @rate: the rate at which the frame is going to be transmitted. |
2971 | * | 2996 | * |
@@ -3551,16 +3576,6 @@ void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif, | |||
3551 | gfp_t gfp); | 3576 | gfp_t gfp); |
3552 | 3577 | ||
3553 | /** | 3578 | /** |
3554 | * ieee80211_get_operstate - get the operstate of the vif | ||
3555 | * | ||
3556 | * @vif: &struct ieee80211_vif pointer from the add_interface callback. | ||
3557 | * | ||
3558 | * The driver might need to know the operstate of the net_device | ||
3559 | * (specifically, whether the link is IF_OPER_UP after resume) | ||
3560 | */ | ||
3561 | unsigned char ieee80211_get_operstate(struct ieee80211_vif *vif); | ||
3562 | |||
3563 | /** | ||
3564 | * ieee80211_chswitch_done - Complete channel switch process | 3579 | * ieee80211_chswitch_done - Complete channel switch process |
3565 | * @vif: &struct ieee80211_vif pointer from the add_interface callback. | 3580 | * @vif: &struct ieee80211_vif pointer from the add_interface callback. |
3566 | * @success: make the channel switch successful or not | 3581 | * @success: make the channel switch successful or not |
@@ -3583,22 +3598,6 @@ void ieee80211_request_smps(struct ieee80211_vif *vif, | |||
3583 | enum ieee80211_smps_mode smps_mode); | 3598 | enum ieee80211_smps_mode smps_mode); |
3584 | 3599 | ||
3585 | /** | 3600 | /** |
3586 | * ieee80211_key_removed - disable hw acceleration for key | ||
3587 | * @key_conf: The key hw acceleration should be disabled for | ||
3588 | * | ||
3589 | * This allows drivers to indicate that the given key has been | ||
3590 | * removed from hardware acceleration, due to a new key that | ||
3591 | * was added. Don't use this if the key can continue to be used | ||
3592 | * for TX, if the key restriction is on RX only it is permitted | ||
3593 | * to keep the key for TX only and not call this function. | ||
3594 | * | ||
3595 | * Due to locking constraints, it may only be called during | ||
3596 | * @set_key. This function must be allowed to sleep, and the | ||
3597 | * key it tries to disable may still be used until it returns. | ||
3598 | */ | ||
3599 | void ieee80211_key_removed(struct ieee80211_key_conf *key_conf); | ||
3600 | |||
3601 | /** | ||
3602 | * ieee80211_ready_on_channel - notification of remain-on-channel start | 3601 | * ieee80211_ready_on_channel - notification of remain-on-channel start |
3603 | * @hw: pointer as obtained from ieee80211_alloc_hw() | 3602 | * @hw: pointer as obtained from ieee80211_alloc_hw() |
3604 | */ | 3603 | */ |
@@ -3823,12 +3822,6 @@ void ieee80211_enable_rssi_reports(struct ieee80211_vif *vif, | |||
3823 | 3822 | ||
3824 | void ieee80211_disable_rssi_reports(struct ieee80211_vif *vif); | 3823 | void ieee80211_disable_rssi_reports(struct ieee80211_vif *vif); |
3825 | 3824 | ||
3826 | int ieee80211_add_srates_ie(struct ieee80211_vif *vif, | ||
3827 | struct sk_buff *skb, bool need_basic); | ||
3828 | |||
3829 | int ieee80211_add_ext_srates_ie(struct ieee80211_vif *vif, | ||
3830 | struct sk_buff *skb, bool need_basic); | ||
3831 | |||
3832 | /** | 3825 | /** |
3833 | * ieee80211_ave_rssi - report the average rssi for the specified interface | 3826 | * ieee80211_ave_rssi - report the average rssi for the specified interface |
3834 | * | 3827 | * |
diff --git a/include/net/mac802154.h b/include/net/mac802154.h index c9f8ab5cc687..d0d11df9cba1 100644 --- a/include/net/mac802154.h +++ b/include/net/mac802154.h | |||
@@ -21,6 +21,14 @@ | |||
21 | 21 | ||
22 | #include <net/af_ieee802154.h> | 22 | #include <net/af_ieee802154.h> |
23 | 23 | ||
24 | /* General MAC frame format: | ||
25 | * 2 bytes: Frame Control | ||
26 | * 1 byte: Sequence Number | ||
27 | * 20 bytes: Addressing fields | ||
28 | * 14 bytes: Auxiliary Security Header | ||
29 | */ | ||
30 | #define MAC802154_FRAME_HARD_HEADER_LEN (2 + 1 + 20 + 14) | ||
31 | |||
24 | /* The following flags are used to indicate changed address settings from | 32 | /* The following flags are used to indicate changed address settings from |
25 | * the stack to the hardware. | 33 | * the stack to the hardware. |
26 | */ | 34 | */ |
diff --git a/include/net/ndisc.h b/include/net/ndisc.h index c02b6ad3f6c5..96a3b5c03e37 100644 --- a/include/net/ndisc.h +++ b/include/net/ndisc.h | |||
@@ -47,6 +47,8 @@ enum { | |||
47 | #include <linux/icmpv6.h> | 47 | #include <linux/icmpv6.h> |
48 | #include <linux/in6.h> | 48 | #include <linux/in6.h> |
49 | #include <linux/types.h> | 49 | #include <linux/types.h> |
50 | #include <linux/if_arp.h> | ||
51 | #include <linux/netdevice.h> | ||
50 | 52 | ||
51 | #include <net/neighbour.h> | 53 | #include <net/neighbour.h> |
52 | 54 | ||
@@ -80,6 +82,54 @@ struct nd_opt_hdr { | |||
80 | __u8 nd_opt_len; | 82 | __u8 nd_opt_len; |
81 | } __packed; | 83 | } __packed; |
82 | 84 | ||
85 | /* ND options */ | ||
86 | struct ndisc_options { | ||
87 | struct nd_opt_hdr *nd_opt_array[__ND_OPT_ARRAY_MAX]; | ||
88 | #ifdef CONFIG_IPV6_ROUTE_INFO | ||
89 | struct nd_opt_hdr *nd_opts_ri; | ||
90 | struct nd_opt_hdr *nd_opts_ri_end; | ||
91 | #endif | ||
92 | struct nd_opt_hdr *nd_useropts; | ||
93 | struct nd_opt_hdr *nd_useropts_end; | ||
94 | }; | ||
95 | |||
96 | #define nd_opts_src_lladdr nd_opt_array[ND_OPT_SOURCE_LL_ADDR] | ||
97 | #define nd_opts_tgt_lladdr nd_opt_array[ND_OPT_TARGET_LL_ADDR] | ||
98 | #define nd_opts_pi nd_opt_array[ND_OPT_PREFIX_INFO] | ||
99 | #define nd_opts_pi_end nd_opt_array[__ND_OPT_PREFIX_INFO_END] | ||
100 | #define nd_opts_rh nd_opt_array[ND_OPT_REDIRECT_HDR] | ||
101 | #define nd_opts_mtu nd_opt_array[ND_OPT_MTU] | ||
102 | |||
103 | #define NDISC_OPT_SPACE(len) (((len)+2+7)&~7) | ||
104 | |||
105 | extern struct ndisc_options *ndisc_parse_options(u8 *opt, int opt_len, | ||
106 | struct ndisc_options *ndopts); | ||
107 | |||
108 | /* | ||
109 | * Return the padding between the option length and the start of the | ||
110 | * link addr. Currently only IP-over-InfiniBand needs this, although | ||
111 | * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may | ||
112 | * also need a pad of 2. | ||
113 | */ | ||
114 | static int ndisc_addr_option_pad(unsigned short type) | ||
115 | { | ||
116 | switch (type) { | ||
117 | case ARPHRD_INFINIBAND: return 2; | ||
118 | default: return 0; | ||
119 | } | ||
120 | } | ||
121 | |||
122 | static inline u8 *ndisc_opt_addr_data(struct nd_opt_hdr *p, | ||
123 | struct net_device *dev) | ||
124 | { | ||
125 | u8 *lladdr = (u8 *)(p + 1); | ||
126 | int lladdrlen = p->nd_opt_len << 3; | ||
127 | int prepad = ndisc_addr_option_pad(dev->type); | ||
128 | if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len + prepad)) | ||
129 | return NULL; | ||
130 | return lladdr + prepad; | ||
131 | } | ||
132 | |||
83 | static inline u32 ndisc_hashfn(const void *pkey, const struct net_device *dev, __u32 *hash_rnd) | 133 | static inline u32 ndisc_hashfn(const void *pkey, const struct net_device *dev, __u32 *hash_rnd) |
84 | { | 134 | { |
85 | const u32 *p32 = pkey; | 135 | const u32 *p32 = pkey; |
diff --git a/include/net/neighbour.h b/include/net/neighbour.h index 6cdfeedb650b..344d8988842a 100644 --- a/include/net/neighbour.h +++ b/include/net/neighbour.h | |||
@@ -202,9 +202,16 @@ extern struct neighbour * neigh_lookup(struct neigh_table *tbl, | |||
202 | extern struct neighbour * neigh_lookup_nodev(struct neigh_table *tbl, | 202 | extern struct neighbour * neigh_lookup_nodev(struct neigh_table *tbl, |
203 | struct net *net, | 203 | struct net *net, |
204 | const void *pkey); | 204 | const void *pkey); |
205 | extern struct neighbour * neigh_create(struct neigh_table *tbl, | 205 | extern struct neighbour * __neigh_create(struct neigh_table *tbl, |
206 | const void *pkey, | ||
207 | struct net_device *dev, | ||
208 | bool want_ref); | ||
209 | static inline struct neighbour *neigh_create(struct neigh_table *tbl, | ||
206 | const void *pkey, | 210 | const void *pkey, |
207 | struct net_device *dev); | 211 | struct net_device *dev) |
212 | { | ||
213 | return __neigh_create(tbl, pkey, dev, true); | ||
214 | } | ||
208 | extern void neigh_destroy(struct neighbour *neigh); | 215 | extern void neigh_destroy(struct neighbour *neigh); |
209 | extern int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb); | 216 | extern int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb); |
210 | extern int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new, | 217 | extern int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new, |
@@ -302,12 +309,6 @@ static inline struct neighbour * neigh_clone(struct neighbour *neigh) | |||
302 | 309 | ||
303 | #define neigh_hold(n) atomic_inc(&(n)->refcnt) | 310 | #define neigh_hold(n) atomic_inc(&(n)->refcnt) |
304 | 311 | ||
305 | static inline void neigh_confirm(struct neighbour *neigh) | ||
306 | { | ||
307 | if (neigh) | ||
308 | neigh->confirmed = jiffies; | ||
309 | } | ||
310 | |||
311 | static inline int neigh_event_send(struct neighbour *neigh, struct sk_buff *skb) | 312 | static inline int neigh_event_send(struct neighbour *neigh, struct sk_buff *skb) |
312 | { | 313 | { |
313 | unsigned long now = jiffies; | 314 | unsigned long now = jiffies; |
@@ -351,15 +352,6 @@ static inline int neigh_hh_output(struct hh_cache *hh, struct sk_buff *skb) | |||
351 | return dev_queue_xmit(skb); | 352 | return dev_queue_xmit(skb); |
352 | } | 353 | } |
353 | 354 | ||
354 | static inline int neigh_output(struct neighbour *n, struct sk_buff *skb) | ||
355 | { | ||
356 | struct hh_cache *hh = &n->hh; | ||
357 | if ((n->nud_state & NUD_CONNECTED) && hh->hh_len) | ||
358 | return neigh_hh_output(hh, skb); | ||
359 | else | ||
360 | return n->output(n, skb); | ||
361 | } | ||
362 | |||
363 | static inline struct neighbour * | 355 | static inline struct neighbour * |
364 | __neigh_lookup(struct neigh_table *tbl, const void *pkey, struct net_device *dev, int creat) | 356 | __neigh_lookup(struct neigh_table *tbl, const void *pkey, struct net_device *dev, int creat) |
365 | { | 357 | { |
diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h index ac9195e6a062..ae1cd6c9ba52 100644 --- a/include/net/net_namespace.h +++ b/include/net/net_namespace.h | |||
@@ -101,6 +101,7 @@ struct net { | |||
101 | struct netns_xfrm xfrm; | 101 | struct netns_xfrm xfrm; |
102 | #endif | 102 | #endif |
103 | struct netns_ipvs *ipvs; | 103 | struct netns_ipvs *ipvs; |
104 | struct sock *diag_nlsk; | ||
104 | }; | 105 | }; |
105 | 106 | ||
106 | 107 | ||
diff --git a/include/net/netevent.h b/include/net/netevent.h index 086f8a5b59dc..3ce4988c9c08 100644 --- a/include/net/netevent.h +++ b/include/net/netevent.h | |||
@@ -12,10 +12,14 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | struct dst_entry; | 14 | struct dst_entry; |
15 | struct neighbour; | ||
15 | 16 | ||
16 | struct netevent_redirect { | 17 | struct netevent_redirect { |
17 | struct dst_entry *old; | 18 | struct dst_entry *old; |
19 | struct neighbour *old_neigh; | ||
18 | struct dst_entry *new; | 20 | struct dst_entry *new; |
21 | struct neighbour *new_neigh; | ||
22 | const void *daddr; | ||
19 | }; | 23 | }; |
20 | 24 | ||
21 | enum netevent_notif_type { | 25 | enum netevent_notif_type { |
diff --git a/include/net/netfilter/nf_conntrack.h b/include/net/netfilter/nf_conntrack.h index cce7f6a798bf..f1494feba79f 100644 --- a/include/net/netfilter/nf_conntrack.h +++ b/include/net/netfilter/nf_conntrack.h | |||
@@ -39,36 +39,6 @@ union nf_conntrack_expect_proto { | |||
39 | /* insert expect proto private data here */ | 39 | /* insert expect proto private data here */ |
40 | }; | 40 | }; |
41 | 41 | ||
42 | /* Add protocol helper include file here */ | ||
43 | #include <linux/netfilter/nf_conntrack_ftp.h> | ||
44 | #include <linux/netfilter/nf_conntrack_pptp.h> | ||
45 | #include <linux/netfilter/nf_conntrack_h323.h> | ||
46 | #include <linux/netfilter/nf_conntrack_sane.h> | ||
47 | #include <linux/netfilter/nf_conntrack_sip.h> | ||
48 | |||
49 | /* per conntrack: application helper private data */ | ||
50 | union nf_conntrack_help { | ||
51 | /* insert conntrack helper private data (master) here */ | ||
52 | #if defined(CONFIG_NF_CONNTRACK_FTP) || defined(CONFIG_NF_CONNTRACK_FTP_MODULE) | ||
53 | struct nf_ct_ftp_master ct_ftp_info; | ||
54 | #endif | ||
55 | #if defined(CONFIG_NF_CONNTRACK_PPTP) || \ | ||
56 | defined(CONFIG_NF_CONNTRACK_PPTP_MODULE) | ||
57 | struct nf_ct_pptp_master ct_pptp_info; | ||
58 | #endif | ||
59 | #if defined(CONFIG_NF_CONNTRACK_H323) || \ | ||
60 | defined(CONFIG_NF_CONNTRACK_H323_MODULE) | ||
61 | struct nf_ct_h323_master ct_h323_info; | ||
62 | #endif | ||
63 | #if defined(CONFIG_NF_CONNTRACK_SANE) || \ | ||
64 | defined(CONFIG_NF_CONNTRACK_SANE_MODULE) | ||
65 | struct nf_ct_sane_master ct_sane_info; | ||
66 | #endif | ||
67 | #if defined(CONFIG_NF_CONNTRACK_SIP) || defined(CONFIG_NF_CONNTRACK_SIP_MODULE) | ||
68 | struct nf_ct_sip_master ct_sip_info; | ||
69 | #endif | ||
70 | }; | ||
71 | |||
72 | #include <linux/types.h> | 42 | #include <linux/types.h> |
73 | #include <linux/skbuff.h> | 43 | #include <linux/skbuff.h> |
74 | #include <linux/timer.h> | 44 | #include <linux/timer.h> |
@@ -89,12 +59,13 @@ struct nf_conn_help { | |||
89 | /* Helper. if any */ | 59 | /* Helper. if any */ |
90 | struct nf_conntrack_helper __rcu *helper; | 60 | struct nf_conntrack_helper __rcu *helper; |
91 | 61 | ||
92 | union nf_conntrack_help help; | ||
93 | |||
94 | struct hlist_head expectations; | 62 | struct hlist_head expectations; |
95 | 63 | ||
96 | /* Current number of expected connections */ | 64 | /* Current number of expected connections */ |
97 | u8 expecting[NF_CT_MAX_EXPECT_CLASSES]; | 65 | u8 expecting[NF_CT_MAX_EXPECT_CLASSES]; |
66 | |||
67 | /* private helper information. */ | ||
68 | char data[]; | ||
98 | }; | 69 | }; |
99 | 70 | ||
100 | #include <net/netfilter/ipv4/nf_conntrack_ipv4.h> | 71 | #include <net/netfilter/ipv4/nf_conntrack_ipv4.h> |
diff --git a/include/net/netfilter/nf_conntrack_core.h b/include/net/netfilter/nf_conntrack_core.h index aced085132e7..d8f5b9f52169 100644 --- a/include/net/netfilter/nf_conntrack_core.h +++ b/include/net/netfilter/nf_conntrack_core.h | |||
@@ -28,8 +28,8 @@ extern unsigned int nf_conntrack_in(struct net *net, | |||
28 | extern int nf_conntrack_init(struct net *net); | 28 | extern int nf_conntrack_init(struct net *net); |
29 | extern void nf_conntrack_cleanup(struct net *net); | 29 | extern void nf_conntrack_cleanup(struct net *net); |
30 | 30 | ||
31 | extern int nf_conntrack_proto_init(void); | 31 | extern int nf_conntrack_proto_init(struct net *net); |
32 | extern void nf_conntrack_proto_fini(void); | 32 | extern void nf_conntrack_proto_fini(struct net *net); |
33 | 33 | ||
34 | extern bool | 34 | extern bool |
35 | nf_ct_get_tuple(const struct sk_buff *skb, | 35 | nf_ct_get_tuple(const struct sk_buff *skb, |
diff --git a/include/net/netfilter/nf_conntrack_ecache.h b/include/net/netfilter/nf_conntrack_ecache.h index a88fb6939387..e1ce1048fe5f 100644 --- a/include/net/netfilter/nf_conntrack_ecache.h +++ b/include/net/netfilter/nf_conntrack_ecache.h | |||
@@ -78,7 +78,7 @@ nf_conntrack_event_cache(enum ip_conntrack_events event, struct nf_conn *ct) | |||
78 | struct net *net = nf_ct_net(ct); | 78 | struct net *net = nf_ct_net(ct); |
79 | struct nf_conntrack_ecache *e; | 79 | struct nf_conntrack_ecache *e; |
80 | 80 | ||
81 | if (net->ct.nf_conntrack_event_cb == NULL) | 81 | if (!rcu_access_pointer(net->ct.nf_conntrack_event_cb)) |
82 | return; | 82 | return; |
83 | 83 | ||
84 | e = nf_ct_ecache_find(ct); | 84 | e = nf_ct_ecache_find(ct); |
diff --git a/include/net/netfilter/nf_conntrack_expect.h b/include/net/netfilter/nf_conntrack_expect.h index 4619caadd9d1..983f00263243 100644 --- a/include/net/netfilter/nf_conntrack_expect.h +++ b/include/net/netfilter/nf_conntrack_expect.h | |||
@@ -59,10 +59,12 @@ static inline struct net *nf_ct_exp_net(struct nf_conntrack_expect *exp) | |||
59 | return nf_ct_net(exp->master); | 59 | return nf_ct_net(exp->master); |
60 | } | 60 | } |
61 | 61 | ||
62 | #define NF_CT_EXP_POLICY_NAME_LEN 16 | ||
63 | |||
62 | struct nf_conntrack_expect_policy { | 64 | struct nf_conntrack_expect_policy { |
63 | unsigned int max_expected; | 65 | unsigned int max_expected; |
64 | unsigned int timeout; | 66 | unsigned int timeout; |
65 | const char *name; | 67 | char name[NF_CT_EXP_POLICY_NAME_LEN]; |
66 | }; | 68 | }; |
67 | 69 | ||
68 | #define NF_CT_EXPECT_CLASS_DEFAULT 0 | 70 | #define NF_CT_EXPECT_CLASS_DEFAULT 0 |
diff --git a/include/net/netfilter/nf_conntrack_extend.h b/include/net/netfilter/nf_conntrack_extend.h index 96755c3798a5..8b4d1fc29096 100644 --- a/include/net/netfilter/nf_conntrack_extend.h +++ b/include/net/netfilter/nf_conntrack_extend.h | |||
@@ -80,10 +80,13 @@ static inline void nf_ct_ext_free(struct nf_conn *ct) | |||
80 | } | 80 | } |
81 | 81 | ||
82 | /* Add this type, returns pointer to data or NULL. */ | 82 | /* Add this type, returns pointer to data or NULL. */ |
83 | void * | 83 | void *__nf_ct_ext_add_length(struct nf_conn *ct, enum nf_ct_ext_id id, |
84 | __nf_ct_ext_add(struct nf_conn *ct, enum nf_ct_ext_id id, gfp_t gfp); | 84 | size_t var_alloc_len, gfp_t gfp); |
85 | |||
85 | #define nf_ct_ext_add(ct, id, gfp) \ | 86 | #define nf_ct_ext_add(ct, id, gfp) \ |
86 | ((id##_TYPE *)__nf_ct_ext_add((ct), (id), (gfp))) | 87 | ((id##_TYPE *)__nf_ct_ext_add_length((ct), (id), 0, (gfp))) |
88 | #define nf_ct_ext_add_length(ct, id, len, gfp) \ | ||
89 | ((id##_TYPE *)__nf_ct_ext_add_length((ct), (id), (len), (gfp))) | ||
87 | 90 | ||
88 | #define NF_CT_EXT_F_PREALLOC 0x0001 | 91 | #define NF_CT_EXT_F_PREALLOC 0x0001 |
89 | 92 | ||
diff --git a/include/net/netfilter/nf_conntrack_helper.h b/include/net/netfilter/nf_conntrack_helper.h index 1d1889409b9e..9aad956d1008 100644 --- a/include/net/netfilter/nf_conntrack_helper.h +++ b/include/net/netfilter/nf_conntrack_helper.h | |||
@@ -11,18 +11,27 @@ | |||
11 | #define _NF_CONNTRACK_HELPER_H | 11 | #define _NF_CONNTRACK_HELPER_H |
12 | #include <net/netfilter/nf_conntrack.h> | 12 | #include <net/netfilter/nf_conntrack.h> |
13 | #include <net/netfilter/nf_conntrack_extend.h> | 13 | #include <net/netfilter/nf_conntrack_extend.h> |
14 | #include <net/netfilter/nf_conntrack_expect.h> | ||
14 | 15 | ||
15 | struct module; | 16 | struct module; |
16 | 17 | ||
18 | enum nf_ct_helper_flags { | ||
19 | NF_CT_HELPER_F_USERSPACE = (1 << 0), | ||
20 | NF_CT_HELPER_F_CONFIGURED = (1 << 1), | ||
21 | }; | ||
22 | |||
17 | #define NF_CT_HELPER_NAME_LEN 16 | 23 | #define NF_CT_HELPER_NAME_LEN 16 |
18 | 24 | ||
19 | struct nf_conntrack_helper { | 25 | struct nf_conntrack_helper { |
20 | struct hlist_node hnode; /* Internal use. */ | 26 | struct hlist_node hnode; /* Internal use. */ |
21 | 27 | ||
22 | const char *name; /* name of the module */ | 28 | char name[NF_CT_HELPER_NAME_LEN]; /* name of the module */ |
23 | struct module *me; /* pointer to self */ | 29 | struct module *me; /* pointer to self */ |
24 | const struct nf_conntrack_expect_policy *expect_policy; | 30 | const struct nf_conntrack_expect_policy *expect_policy; |
25 | 31 | ||
32 | /* length of internal data, ie. sizeof(struct nf_ct_*_master) */ | ||
33 | size_t data_len; | ||
34 | |||
26 | /* Tuple of things we will help (compared against server response) */ | 35 | /* Tuple of things we will help (compared against server response) */ |
27 | struct nf_conntrack_tuple tuple; | 36 | struct nf_conntrack_tuple tuple; |
28 | 37 | ||
@@ -35,8 +44,12 @@ struct nf_conntrack_helper { | |||
35 | 44 | ||
36 | void (*destroy)(struct nf_conn *ct); | 45 | void (*destroy)(struct nf_conn *ct); |
37 | 46 | ||
47 | int (*from_nlattr)(struct nlattr *attr, struct nf_conn *ct); | ||
38 | int (*to_nlattr)(struct sk_buff *skb, const struct nf_conn *ct); | 48 | int (*to_nlattr)(struct sk_buff *skb, const struct nf_conn *ct); |
39 | unsigned int expect_class_max; | 49 | unsigned int expect_class_max; |
50 | |||
51 | unsigned int flags; | ||
52 | unsigned int queue_num; /* For user-space helpers. */ | ||
40 | }; | 53 | }; |
41 | 54 | ||
42 | extern struct nf_conntrack_helper * | 55 | extern struct nf_conntrack_helper * |
@@ -48,7 +61,7 @@ nf_conntrack_helper_try_module_get(const char *name, u16 l3num, u8 protonum); | |||
48 | extern int nf_conntrack_helper_register(struct nf_conntrack_helper *); | 61 | extern int nf_conntrack_helper_register(struct nf_conntrack_helper *); |
49 | extern void nf_conntrack_helper_unregister(struct nf_conntrack_helper *); | 62 | extern void nf_conntrack_helper_unregister(struct nf_conntrack_helper *); |
50 | 63 | ||
51 | extern struct nf_conn_help *nf_ct_helper_ext_add(struct nf_conn *ct, gfp_t gfp); | 64 | extern struct nf_conn_help *nf_ct_helper_ext_add(struct nf_conn *ct, struct nf_conntrack_helper *helper, gfp_t gfp); |
52 | 65 | ||
53 | extern int __nf_ct_try_assign_helper(struct nf_conn *ct, struct nf_conn *tmpl, | 66 | extern int __nf_ct_try_assign_helper(struct nf_conn *ct, struct nf_conn *tmpl, |
54 | gfp_t flags); | 67 | gfp_t flags); |
@@ -60,6 +73,15 @@ static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct) | |||
60 | return nf_ct_ext_find(ct, NF_CT_EXT_HELPER); | 73 | return nf_ct_ext_find(ct, NF_CT_EXT_HELPER); |
61 | } | 74 | } |
62 | 75 | ||
76 | static inline void *nfct_help_data(const struct nf_conn *ct) | ||
77 | { | ||
78 | struct nf_conn_help *help; | ||
79 | |||
80 | help = nf_ct_ext_find(ct, NF_CT_EXT_HELPER); | ||
81 | |||
82 | return (void *)help->data; | ||
83 | } | ||
84 | |||
63 | extern int nf_conntrack_helper_init(struct net *net); | 85 | extern int nf_conntrack_helper_init(struct net *net); |
64 | extern void nf_conntrack_helper_fini(struct net *net); | 86 | extern void nf_conntrack_helper_fini(struct net *net); |
65 | 87 | ||
@@ -82,4 +104,7 @@ nf_ct_helper_expectfn_find_by_name(const char *name); | |||
82 | struct nf_ct_helper_expectfn * | 104 | struct nf_ct_helper_expectfn * |
83 | nf_ct_helper_expectfn_find_by_symbol(const void *symbol); | 105 | nf_ct_helper_expectfn_find_by_symbol(const void *symbol); |
84 | 106 | ||
107 | extern struct hlist_head *nf_ct_helper_hash; | ||
108 | extern unsigned int nf_ct_helper_hsize; | ||
109 | |||
85 | #endif /*_NF_CONNTRACK_HELPER_H*/ | 110 | #endif /*_NF_CONNTRACK_HELPER_H*/ |
diff --git a/include/net/netfilter/nf_conntrack_l3proto.h b/include/net/netfilter/nf_conntrack_l3proto.h index 9699c028b74b..6f7c13f4ac03 100644 --- a/include/net/netfilter/nf_conntrack_l3proto.h +++ b/include/net/netfilter/nf_conntrack_l3proto.h | |||
@@ -64,11 +64,12 @@ struct nf_conntrack_l3proto { | |||
64 | size_t nla_size; | 64 | size_t nla_size; |
65 | 65 | ||
66 | #ifdef CONFIG_SYSCTL | 66 | #ifdef CONFIG_SYSCTL |
67 | struct ctl_table_header *ctl_table_header; | ||
68 | const char *ctl_table_path; | 67 | const char *ctl_table_path; |
69 | struct ctl_table *ctl_table; | ||
70 | #endif /* CONFIG_SYSCTL */ | 68 | #endif /* CONFIG_SYSCTL */ |
71 | 69 | ||
70 | /* Init l3proto pernet data */ | ||
71 | int (*init_net)(struct net *net); | ||
72 | |||
72 | /* Module (if any) which this is connected to. */ | 73 | /* Module (if any) which this is connected to. */ |
73 | struct module *me; | 74 | struct module *me; |
74 | }; | 75 | }; |
@@ -76,8 +77,10 @@ struct nf_conntrack_l3proto { | |||
76 | extern struct nf_conntrack_l3proto __rcu *nf_ct_l3protos[AF_MAX]; | 77 | extern struct nf_conntrack_l3proto __rcu *nf_ct_l3protos[AF_MAX]; |
77 | 78 | ||
78 | /* Protocol registration. */ | 79 | /* Protocol registration. */ |
79 | extern int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto *proto); | 80 | extern int nf_conntrack_l3proto_register(struct net *net, |
80 | extern void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto *proto); | 81 | struct nf_conntrack_l3proto *proto); |
82 | extern void nf_conntrack_l3proto_unregister(struct net *net, | ||
83 | struct nf_conntrack_l3proto *proto); | ||
81 | extern struct nf_conntrack_l3proto *nf_ct_l3proto_find_get(u_int16_t l3proto); | 84 | extern struct nf_conntrack_l3proto *nf_ct_l3proto_find_get(u_int16_t l3proto); |
82 | extern void nf_ct_l3proto_put(struct nf_conntrack_l3proto *p); | 85 | extern void nf_ct_l3proto_put(struct nf_conntrack_l3proto *p); |
83 | 86 | ||
diff --git a/include/net/netfilter/nf_conntrack_l4proto.h b/include/net/netfilter/nf_conntrack_l4proto.h index 3b572bb20aa2..c3be4aef6bf7 100644 --- a/include/net/netfilter/nf_conntrack_l4proto.h +++ b/include/net/netfilter/nf_conntrack_l4proto.h | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/netlink.h> | 12 | #include <linux/netlink.h> |
13 | #include <net/netlink.h> | 13 | #include <net/netlink.h> |
14 | #include <net/netfilter/nf_conntrack.h> | 14 | #include <net/netfilter/nf_conntrack.h> |
15 | #include <net/netns/generic.h> | ||
15 | 16 | ||
16 | struct seq_file; | 17 | struct seq_file; |
17 | 18 | ||
@@ -86,23 +87,21 @@ struct nf_conntrack_l4proto { | |||
86 | #if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT) | 87 | #if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT) |
87 | struct { | 88 | struct { |
88 | size_t obj_size; | 89 | size_t obj_size; |
89 | int (*nlattr_to_obj)(struct nlattr *tb[], void *data); | 90 | int (*nlattr_to_obj)(struct nlattr *tb[], |
91 | struct net *net, void *data); | ||
90 | int (*obj_to_nlattr)(struct sk_buff *skb, const void *data); | 92 | int (*obj_to_nlattr)(struct sk_buff *skb, const void *data); |
91 | 93 | ||
92 | unsigned int nlattr_max; | 94 | unsigned int nlattr_max; |
93 | const struct nla_policy *nla_policy; | 95 | const struct nla_policy *nla_policy; |
94 | } ctnl_timeout; | 96 | } ctnl_timeout; |
95 | #endif | 97 | #endif |
98 | int *net_id; | ||
99 | /* Init l4proto pernet data */ | ||
100 | int (*init_net)(struct net *net, u_int16_t proto); | ||
101 | |||
102 | /* Return the per-net protocol part. */ | ||
103 | struct nf_proto_net *(*get_net_proto)(struct net *net); | ||
96 | 104 | ||
97 | #ifdef CONFIG_SYSCTL | ||
98 | struct ctl_table_header **ctl_table_header; | ||
99 | struct ctl_table *ctl_table; | ||
100 | unsigned int *ctl_table_users; | ||
101 | #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT | ||
102 | struct ctl_table_header *ctl_compat_table_header; | ||
103 | struct ctl_table *ctl_compat_table; | ||
104 | #endif | ||
105 | #endif | ||
106 | /* Protocol name */ | 105 | /* Protocol name */ |
107 | const char *name; | 106 | const char *name; |
108 | 107 | ||
@@ -123,8 +122,18 @@ nf_ct_l4proto_find_get(u_int16_t l3proto, u_int8_t l4proto); | |||
123 | extern void nf_ct_l4proto_put(struct nf_conntrack_l4proto *p); | 122 | extern void nf_ct_l4proto_put(struct nf_conntrack_l4proto *p); |
124 | 123 | ||
125 | /* Protocol registration. */ | 124 | /* Protocol registration. */ |
126 | extern int nf_conntrack_l4proto_register(struct nf_conntrack_l4proto *proto); | 125 | extern int nf_conntrack_l4proto_register(struct net *net, |
127 | extern void nf_conntrack_l4proto_unregister(struct nf_conntrack_l4proto *proto); | 126 | struct nf_conntrack_l4proto *proto); |
127 | extern void nf_conntrack_l4proto_unregister(struct net *net, | ||
128 | struct nf_conntrack_l4proto *proto); | ||
129 | |||
130 | static inline void nf_ct_kfree_compat_sysctl_table(struct nf_proto_net *pn) | ||
131 | { | ||
132 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT) | ||
133 | kfree(pn->ctl_compat_table); | ||
134 | pn->ctl_compat_table = NULL; | ||
135 | #endif | ||
136 | } | ||
128 | 137 | ||
129 | /* Generic netlink helpers */ | 138 | /* Generic netlink helpers */ |
130 | extern int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb, | 139 | extern int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb, |
diff --git a/include/net/netfilter/nf_nat_helper.h b/include/net/netfilter/nf_nat_helper.h index 02bb6c29dc3d..7d8fb7b46c44 100644 --- a/include/net/netfilter/nf_nat_helper.h +++ b/include/net/netfilter/nf_nat_helper.h | |||
@@ -54,4 +54,8 @@ extern void nf_nat_follow_master(struct nf_conn *ct, | |||
54 | extern s16 nf_nat_get_offset(const struct nf_conn *ct, | 54 | extern s16 nf_nat_get_offset(const struct nf_conn *ct, |
55 | enum ip_conntrack_dir dir, | 55 | enum ip_conntrack_dir dir, |
56 | u32 seq); | 56 | u32 seq); |
57 | |||
58 | extern void nf_nat_tcp_seq_adjust(struct sk_buff *skb, struct nf_conn *ct, | ||
59 | u32 dir, int off); | ||
60 | |||
57 | #endif | 61 | #endif |
diff --git a/include/net/netfilter/nfnetlink_queue.h b/include/net/netfilter/nfnetlink_queue.h new file mode 100644 index 000000000000..86267a529514 --- /dev/null +++ b/include/net/netfilter/nfnetlink_queue.h | |||
@@ -0,0 +1,43 @@ | |||
1 | #ifndef _NET_NFNL_QUEUE_H_ | ||
2 | #define _NET_NFNL_QUEUE_H_ | ||
3 | |||
4 | #include <linux/netfilter/nf_conntrack_common.h> | ||
5 | |||
6 | struct nf_conn; | ||
7 | |||
8 | #ifdef CONFIG_NETFILTER_NETLINK_QUEUE_CT | ||
9 | struct nf_conn *nfqnl_ct_get(struct sk_buff *entskb, size_t *size, | ||
10 | enum ip_conntrack_info *ctinfo); | ||
11 | struct nf_conn *nfqnl_ct_parse(const struct sk_buff *skb, | ||
12 | const struct nlattr *attr, | ||
13 | enum ip_conntrack_info *ctinfo); | ||
14 | int nfqnl_ct_put(struct sk_buff *skb, struct nf_conn *ct, | ||
15 | enum ip_conntrack_info ctinfo); | ||
16 | void nfqnl_ct_seq_adjust(struct sk_buff *skb, struct nf_conn *ct, | ||
17 | enum ip_conntrack_info ctinfo, int diff); | ||
18 | #else | ||
19 | inline struct nf_conn * | ||
20 | nfqnl_ct_get(struct sk_buff *entskb, size_t *size, enum ip_conntrack_info *ctinfo) | ||
21 | { | ||
22 | return NULL; | ||
23 | } | ||
24 | |||
25 | inline struct nf_conn *nfqnl_ct_parse(const struct sk_buff *skb, | ||
26 | const struct nlattr *attr, | ||
27 | enum ip_conntrack_info *ctinfo) | ||
28 | { | ||
29 | return NULL; | ||
30 | } | ||
31 | |||
32 | inline int | ||
33 | nfqnl_ct_put(struct sk_buff *skb, struct nf_conn *ct, enum ip_conntrack_info ctinfo) | ||
34 | { | ||
35 | return 0; | ||
36 | } | ||
37 | |||
38 | inline void nfqnl_ct_seq_adjust(struct sk_buff *skb, struct nf_conn *ct, | ||
39 | enum ip_conntrack_info ctinfo, int diff) | ||
40 | { | ||
41 | } | ||
42 | #endif /* NF_CONNTRACK */ | ||
43 | #endif | ||
diff --git a/include/net/netns/conntrack.h b/include/net/netns/conntrack.h index a053a19870cf..3aecdc7a84fb 100644 --- a/include/net/netns/conntrack.h +++ b/include/net/netns/conntrack.h | |||
@@ -4,10 +4,64 @@ | |||
4 | #include <linux/list.h> | 4 | #include <linux/list.h> |
5 | #include <linux/list_nulls.h> | 5 | #include <linux/list_nulls.h> |
6 | #include <linux/atomic.h> | 6 | #include <linux/atomic.h> |
7 | #include <linux/netfilter/nf_conntrack_tcp.h> | ||
7 | 8 | ||
8 | struct ctl_table_header; | 9 | struct ctl_table_header; |
9 | struct nf_conntrack_ecache; | 10 | struct nf_conntrack_ecache; |
10 | 11 | ||
12 | struct nf_proto_net { | ||
13 | #ifdef CONFIG_SYSCTL | ||
14 | struct ctl_table_header *ctl_table_header; | ||
15 | struct ctl_table *ctl_table; | ||
16 | #ifdef CONFIG_NF_CONNTRACK_PROC_COMPAT | ||
17 | struct ctl_table_header *ctl_compat_header; | ||
18 | struct ctl_table *ctl_compat_table; | ||
19 | #endif | ||
20 | #endif | ||
21 | unsigned int users; | ||
22 | }; | ||
23 | |||
24 | struct nf_generic_net { | ||
25 | struct nf_proto_net pn; | ||
26 | unsigned int timeout; | ||
27 | }; | ||
28 | |||
29 | struct nf_tcp_net { | ||
30 | struct nf_proto_net pn; | ||
31 | unsigned int timeouts[TCP_CONNTRACK_TIMEOUT_MAX]; | ||
32 | unsigned int tcp_loose; | ||
33 | unsigned int tcp_be_liberal; | ||
34 | unsigned int tcp_max_retrans; | ||
35 | }; | ||
36 | |||
37 | enum udp_conntrack { | ||
38 | UDP_CT_UNREPLIED, | ||
39 | UDP_CT_REPLIED, | ||
40 | UDP_CT_MAX | ||
41 | }; | ||
42 | |||
43 | struct nf_udp_net { | ||
44 | struct nf_proto_net pn; | ||
45 | unsigned int timeouts[UDP_CT_MAX]; | ||
46 | }; | ||
47 | |||
48 | struct nf_icmp_net { | ||
49 | struct nf_proto_net pn; | ||
50 | unsigned int timeout; | ||
51 | }; | ||
52 | |||
53 | struct nf_ip_net { | ||
54 | struct nf_generic_net generic; | ||
55 | struct nf_tcp_net tcp; | ||
56 | struct nf_udp_net udp; | ||
57 | struct nf_icmp_net icmp; | ||
58 | struct nf_icmp_net icmpv6; | ||
59 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_NF_CONNTRACK_PROC_COMPAT) | ||
60 | struct ctl_table_header *ctl_table_header; | ||
61 | struct ctl_table *ctl_table; | ||
62 | #endif | ||
63 | }; | ||
64 | |||
11 | struct netns_ct { | 65 | struct netns_ct { |
12 | atomic_t count; | 66 | atomic_t count; |
13 | unsigned int expect_count; | 67 | unsigned int expect_count; |
@@ -28,6 +82,7 @@ struct netns_ct { | |||
28 | unsigned int sysctl_log_invalid; /* Log invalid packets */ | 82 | unsigned int sysctl_log_invalid; /* Log invalid packets */ |
29 | int sysctl_auto_assign_helper; | 83 | int sysctl_auto_assign_helper; |
30 | bool auto_assign_helper_warned; | 84 | bool auto_assign_helper_warned; |
85 | struct nf_ip_net nf_ct_proto; | ||
31 | #ifdef CONFIG_SYSCTL | 86 | #ifdef CONFIG_SYSCTL |
32 | struct ctl_table_header *sysctl_header; | 87 | struct ctl_table_header *sysctl_header; |
33 | struct ctl_table_header *acct_sysctl_header; | 88 | struct ctl_table_header *acct_sysctl_header; |
diff --git a/include/net/netns/ipv4.h b/include/net/netns/ipv4.h index bbd023a1c9b9..0ffb8e31f3cd 100644 --- a/include/net/netns/ipv4.h +++ b/include/net/netns/ipv4.h | |||
@@ -7,10 +7,12 @@ | |||
7 | 7 | ||
8 | #include <net/inet_frag.h> | 8 | #include <net/inet_frag.h> |
9 | 9 | ||
10 | struct tcpm_hash_bucket; | ||
10 | struct ctl_table_header; | 11 | struct ctl_table_header; |
11 | struct ipv4_devconf; | 12 | struct ipv4_devconf; |
12 | struct fib_rules_ops; | 13 | struct fib_rules_ops; |
13 | struct hlist_head; | 14 | struct hlist_head; |
15 | struct fib_table; | ||
14 | struct sock; | 16 | struct sock; |
15 | 17 | ||
16 | struct netns_ipv4 { | 18 | struct netns_ipv4 { |
@@ -24,13 +26,21 @@ struct netns_ipv4 { | |||
24 | struct ipv4_devconf *devconf_dflt; | 26 | struct ipv4_devconf *devconf_dflt; |
25 | #ifdef CONFIG_IP_MULTIPLE_TABLES | 27 | #ifdef CONFIG_IP_MULTIPLE_TABLES |
26 | struct fib_rules_ops *rules_ops; | 28 | struct fib_rules_ops *rules_ops; |
29 | bool fib_has_custom_rules; | ||
30 | struct fib_table *fib_local; | ||
31 | struct fib_table *fib_main; | ||
32 | struct fib_table *fib_default; | ||
33 | #endif | ||
34 | #ifdef CONFIG_IP_ROUTE_CLASSID | ||
35 | int fib_num_tclassid_users; | ||
27 | #endif | 36 | #endif |
28 | struct hlist_head *fib_table_hash; | 37 | struct hlist_head *fib_table_hash; |
29 | struct sock *fibnl; | 38 | struct sock *fibnl; |
30 | 39 | ||
31 | struct sock **icmp_sk; | 40 | struct sock **icmp_sk; |
32 | struct sock *tcp_sock; | 41 | struct inet_peer_base *peers; |
33 | 42 | struct tcpm_hash_bucket *tcp_metrics_hash; | |
43 | unsigned int tcp_metrics_hash_log; | ||
34 | struct netns_frags frags; | 44 | struct netns_frags frags; |
35 | #ifdef CONFIG_NETFILTER | 45 | #ifdef CONFIG_NETFILTER |
36 | struct xt_table *iptable_filter; | 46 | struct xt_table *iptable_filter; |
diff --git a/include/net/netns/ipv6.h b/include/net/netns/ipv6.h index b42be53587ba..df0a5456a3fd 100644 --- a/include/net/netns/ipv6.h +++ b/include/net/netns/ipv6.h | |||
@@ -33,6 +33,7 @@ struct netns_ipv6 { | |||
33 | struct netns_sysctl_ipv6 sysctl; | 33 | struct netns_sysctl_ipv6 sysctl; |
34 | struct ipv6_devconf *devconf_all; | 34 | struct ipv6_devconf *devconf_all; |
35 | struct ipv6_devconf *devconf_dflt; | 35 | struct ipv6_devconf *devconf_dflt; |
36 | struct inet_peer_base *peers; | ||
36 | struct netns_frags frags; | 37 | struct netns_frags frags; |
37 | #ifdef CONFIG_NETFILTER | 38 | #ifdef CONFIG_NETFILTER |
38 | struct xt_table *ip6table_filter; | 39 | struct xt_table *ip6table_filter; |
diff --git a/include/net/netprio_cgroup.h b/include/net/netprio_cgroup.h index d58fdec47597..2719dec6b5a8 100644 --- a/include/net/netprio_cgroup.h +++ b/include/net/netprio_cgroup.h | |||
@@ -35,7 +35,7 @@ struct cgroup_netprio_state { | |||
35 | extern int net_prio_subsys_id; | 35 | extern int net_prio_subsys_id; |
36 | #endif | 36 | #endif |
37 | 37 | ||
38 | extern void sock_update_netprioidx(struct sock *sk); | 38 | extern void sock_update_netprioidx(struct sock *sk, struct task_struct *task); |
39 | 39 | ||
40 | #if IS_BUILTIN(CONFIG_NETPRIO_CGROUP) | 40 | #if IS_BUILTIN(CONFIG_NETPRIO_CGROUP) |
41 | 41 | ||
@@ -82,7 +82,7 @@ static inline u32 task_netprioidx(struct task_struct *p) | |||
82 | #endif /* CONFIG_NETPRIO_CGROUP */ | 82 | #endif /* CONFIG_NETPRIO_CGROUP */ |
83 | 83 | ||
84 | #else | 84 | #else |
85 | #define sock_update_netprioidx(sk) | 85 | #define sock_update_netprioidx(sk, task) |
86 | #endif | 86 | #endif |
87 | 87 | ||
88 | #endif /* _NET_CLS_CGROUP_H */ | 88 | #endif /* _NET_CLS_CGROUP_H */ |
diff --git a/include/net/nfc/hci.h b/include/net/nfc/hci.h index 4467c9460857..f5169b04f082 100644 --- a/include/net/nfc/hci.h +++ b/include/net/nfc/hci.h | |||
@@ -31,7 +31,8 @@ struct nfc_hci_ops { | |||
31 | void (*close) (struct nfc_hci_dev *hdev); | 31 | void (*close) (struct nfc_hci_dev *hdev); |
32 | int (*hci_ready) (struct nfc_hci_dev *hdev); | 32 | int (*hci_ready) (struct nfc_hci_dev *hdev); |
33 | int (*xmit) (struct nfc_hci_dev *hdev, struct sk_buff *skb); | 33 | int (*xmit) (struct nfc_hci_dev *hdev, struct sk_buff *skb); |
34 | int (*start_poll) (struct nfc_hci_dev *hdev, u32 protocols); | 34 | int (*start_poll) (struct nfc_hci_dev *hdev, |
35 | u32 im_protocols, u32 tm_protocols); | ||
35 | int (*target_from_gate) (struct nfc_hci_dev *hdev, u8 gate, | 36 | int (*target_from_gate) (struct nfc_hci_dev *hdev, u8 gate, |
36 | struct nfc_target *target); | 37 | struct nfc_target *target); |
37 | int (*complete_target_discovered) (struct nfc_hci_dev *hdev, u8 gate, | 38 | int (*complete_target_discovered) (struct nfc_hci_dev *hdev, u8 gate, |
@@ -43,10 +44,20 @@ struct nfc_hci_ops { | |||
43 | struct nfc_target *target); | 44 | struct nfc_target *target); |
44 | }; | 45 | }; |
45 | 46 | ||
46 | #define NFC_HCI_MAX_CUSTOM_GATES 15 | 47 | /* Pipes */ |
48 | #define NFC_HCI_INVALID_PIPE 0x80 | ||
49 | #define NFC_HCI_LINK_MGMT_PIPE 0x00 | ||
50 | #define NFC_HCI_ADMIN_PIPE 0x01 | ||
51 | |||
52 | struct nfc_hci_gate { | ||
53 | u8 gate; | ||
54 | u8 pipe; | ||
55 | }; | ||
56 | |||
57 | #define NFC_HCI_MAX_CUSTOM_GATES 50 | ||
47 | struct nfc_hci_init_data { | 58 | struct nfc_hci_init_data { |
48 | u8 gate_count; | 59 | u8 gate_count; |
49 | u8 gates[NFC_HCI_MAX_CUSTOM_GATES]; | 60 | struct nfc_hci_gate gates[NFC_HCI_MAX_CUSTOM_GATES]; |
50 | char session_id[9]; | 61 | char session_id[9]; |
51 | }; | 62 | }; |
52 | 63 | ||
@@ -111,6 +122,8 @@ void nfc_hci_unregister_device(struct nfc_hci_dev *hdev); | |||
111 | void nfc_hci_set_clientdata(struct nfc_hci_dev *hdev, void *clientdata); | 122 | void nfc_hci_set_clientdata(struct nfc_hci_dev *hdev, void *clientdata); |
112 | void *nfc_hci_get_clientdata(struct nfc_hci_dev *hdev); | 123 | void *nfc_hci_get_clientdata(struct nfc_hci_dev *hdev); |
113 | 124 | ||
125 | void nfc_hci_driver_failure(struct nfc_hci_dev *hdev, int err); | ||
126 | |||
114 | /* Host IDs */ | 127 | /* Host IDs */ |
115 | #define NFC_HCI_HOST_CONTROLLER_ID 0x00 | 128 | #define NFC_HCI_HOST_CONTROLLER_ID 0x00 |
116 | #define NFC_HCI_TERMINAL_HOST_ID 0x01 | 129 | #define NFC_HCI_TERMINAL_HOST_ID 0x01 |
@@ -179,7 +192,8 @@ void nfc_hci_event_received(struct nfc_hci_dev *hdev, u8 pipe, u8 event, | |||
179 | void nfc_hci_recv_frame(struct nfc_hci_dev *hdev, struct sk_buff *skb); | 192 | void nfc_hci_recv_frame(struct nfc_hci_dev *hdev, struct sk_buff *skb); |
180 | 193 | ||
181 | /* connecting to gates and sending hci instructions */ | 194 | /* connecting to gates and sending hci instructions */ |
182 | int nfc_hci_connect_gate(struct nfc_hci_dev *hdev, u8 dest_host, u8 dest_gate); | 195 | int nfc_hci_connect_gate(struct nfc_hci_dev *hdev, u8 dest_host, u8 dest_gate, |
196 | u8 pipe); | ||
183 | int nfc_hci_disconnect_gate(struct nfc_hci_dev *hdev, u8 gate); | 197 | int nfc_hci_disconnect_gate(struct nfc_hci_dev *hdev, u8 gate); |
184 | int nfc_hci_disconnect_all_gates(struct nfc_hci_dev *hdev); | 198 | int nfc_hci_disconnect_all_gates(struct nfc_hci_dev *hdev); |
185 | int nfc_hci_get_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx, | 199 | int nfc_hci_get_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx, |
diff --git a/include/net/nfc/nfc.h b/include/net/nfc/nfc.h index b7ca4a2a1d72..6431f5e39022 100644 --- a/include/net/nfc/nfc.h +++ b/include/net/nfc/nfc.h | |||
@@ -53,7 +53,8 @@ struct nfc_target; | |||
53 | struct nfc_ops { | 53 | struct nfc_ops { |
54 | int (*dev_up)(struct nfc_dev *dev); | 54 | int (*dev_up)(struct nfc_dev *dev); |
55 | int (*dev_down)(struct nfc_dev *dev); | 55 | int (*dev_down)(struct nfc_dev *dev); |
56 | int (*start_poll)(struct nfc_dev *dev, u32 protocols); | 56 | int (*start_poll)(struct nfc_dev *dev, |
57 | u32 im_protocols, u32 tm_protocols); | ||
57 | void (*stop_poll)(struct nfc_dev *dev); | 58 | void (*stop_poll)(struct nfc_dev *dev); |
58 | int (*dep_link_up)(struct nfc_dev *dev, struct nfc_target *target, | 59 | int (*dep_link_up)(struct nfc_dev *dev, struct nfc_target *target, |
59 | u8 comm_mode, u8 *gb, size_t gb_len); | 60 | u8 comm_mode, u8 *gb, size_t gb_len); |
@@ -62,9 +63,10 @@ struct nfc_ops { | |||
62 | u32 protocol); | 63 | u32 protocol); |
63 | void (*deactivate_target)(struct nfc_dev *dev, | 64 | void (*deactivate_target)(struct nfc_dev *dev, |
64 | struct nfc_target *target); | 65 | struct nfc_target *target); |
65 | int (*data_exchange)(struct nfc_dev *dev, struct nfc_target *target, | 66 | int (*im_transceive)(struct nfc_dev *dev, struct nfc_target *target, |
66 | struct sk_buff *skb, data_exchange_cb_t cb, | 67 | struct sk_buff *skb, data_exchange_cb_t cb, |
67 | void *cb_context); | 68 | void *cb_context); |
69 | int (*tm_send)(struct nfc_dev *dev, struct sk_buff *skb); | ||
68 | int (*check_presence)(struct nfc_dev *dev, struct nfc_target *target); | 70 | int (*check_presence)(struct nfc_dev *dev, struct nfc_target *target); |
69 | }; | 71 | }; |
70 | 72 | ||
@@ -99,10 +101,10 @@ struct nfc_dev { | |||
99 | int targets_generation; | 101 | int targets_generation; |
100 | struct device dev; | 102 | struct device dev; |
101 | bool dev_up; | 103 | bool dev_up; |
104 | u8 rf_mode; | ||
102 | bool polling; | 105 | bool polling; |
103 | struct nfc_target *active_target; | 106 | struct nfc_target *active_target; |
104 | bool dep_link_up; | 107 | bool dep_link_up; |
105 | u32 dep_rf_mode; | ||
106 | struct nfc_genl_data genl_data; | 108 | struct nfc_genl_data genl_data; |
107 | u32 supported_protocols; | 109 | u32 supported_protocols; |
108 | 110 | ||
@@ -188,6 +190,7 @@ struct sk_buff *nfc_alloc_recv_skb(unsigned int size, gfp_t gfp); | |||
188 | 190 | ||
189 | int nfc_set_remote_general_bytes(struct nfc_dev *dev, | 191 | int nfc_set_remote_general_bytes(struct nfc_dev *dev, |
190 | u8 *gt, u8 gt_len); | 192 | u8 *gt, u8 gt_len); |
193 | u8 *nfc_get_local_general_bytes(struct nfc_dev *dev, size_t *gb_len); | ||
191 | 194 | ||
192 | int nfc_targets_found(struct nfc_dev *dev, | 195 | int nfc_targets_found(struct nfc_dev *dev, |
193 | struct nfc_target *targets, int ntargets); | 196 | struct nfc_target *targets, int ntargets); |
@@ -196,4 +199,11 @@ int nfc_target_lost(struct nfc_dev *dev, u32 target_idx); | |||
196 | int nfc_dep_link_is_up(struct nfc_dev *dev, u32 target_idx, | 199 | int nfc_dep_link_is_up(struct nfc_dev *dev, u32 target_idx, |
197 | u8 comm_mode, u8 rf_mode); | 200 | u8 comm_mode, u8 rf_mode); |
198 | 201 | ||
202 | int nfc_tm_activated(struct nfc_dev *dev, u32 protocol, u8 comm_mode, | ||
203 | u8 *gb, size_t gb_len); | ||
204 | int nfc_tm_deactivated(struct nfc_dev *dev); | ||
205 | int nfc_tm_data_received(struct nfc_dev *dev, struct sk_buff *skb); | ||
206 | |||
207 | void nfc_driver_failure(struct nfc_dev *dev, int err); | ||
208 | |||
199 | #endif /* __NET_NFC_H */ | 209 | #endif /* __NET_NFC_H */ |
diff --git a/include/net/nfc/shdlc.h b/include/net/nfc/shdlc.h index ab06afd462da..35e930d2f638 100644 --- a/include/net/nfc/shdlc.h +++ b/include/net/nfc/shdlc.h | |||
@@ -27,7 +27,8 @@ struct nfc_shdlc_ops { | |||
27 | void (*close) (struct nfc_shdlc *shdlc); | 27 | void (*close) (struct nfc_shdlc *shdlc); |
28 | int (*hci_ready) (struct nfc_shdlc *shdlc); | 28 | int (*hci_ready) (struct nfc_shdlc *shdlc); |
29 | int (*xmit) (struct nfc_shdlc *shdlc, struct sk_buff *skb); | 29 | int (*xmit) (struct nfc_shdlc *shdlc, struct sk_buff *skb); |
30 | int (*start_poll) (struct nfc_shdlc *shdlc, u32 protocols); | 30 | int (*start_poll) (struct nfc_shdlc *shdlc, |
31 | u32 im_protocols, u32 tm_protocols); | ||
31 | int (*target_from_gate) (struct nfc_shdlc *shdlc, u8 gate, | 32 | int (*target_from_gate) (struct nfc_shdlc *shdlc, u8 gate, |
32 | struct nfc_target *target); | 33 | struct nfc_target *target); |
33 | int (*complete_target_discovered) (struct nfc_shdlc *shdlc, u8 gate, | 34 | int (*complete_target_discovered) (struct nfc_shdlc *shdlc, u8 gate, |
diff --git a/include/net/phonet/gprs.h b/include/net/phonet/gprs.h index 928daf595beb..bcd525e39a0b 100644 --- a/include/net/phonet/gprs.h +++ b/include/net/phonet/gprs.h | |||
@@ -5,7 +5,7 @@ | |||
5 | * | 5 | * |
6 | * Copyright (C) 2008 Nokia Corporation. | 6 | * Copyright (C) 2008 Nokia Corporation. |
7 | * | 7 | * |
8 | * Author: Rémi Denis-Courmont <remi.denis-courmont@nokia.com> | 8 | * Author: Rémi Denis-Courmont |
9 | * | 9 | * |
10 | * This program is free software; you can redistribute it and/or | 10 | * This program is free software; you can redistribute it and/or |
11 | * modify it under the terms of the GNU General Public License | 11 | * modify it under the terms of the GNU General Public License |
diff --git a/include/net/protocol.h b/include/net/protocol.h index 875f4895b033..929528c73fe8 100644 --- a/include/net/protocol.h +++ b/include/net/protocol.h | |||
@@ -29,11 +29,15 @@ | |||
29 | #include <linux/ipv6.h> | 29 | #include <linux/ipv6.h> |
30 | #endif | 30 | #endif |
31 | 31 | ||
32 | #define MAX_INET_PROTOS 256 /* Must be a power of 2 */ | 32 | /* This is one larger than the largest protocol value that can be |
33 | 33 | * found in an ipv4 or ipv6 header. Since in both cases the protocol | |
34 | * value is presented in a __u8, this is defined to be 256. | ||
35 | */ | ||
36 | #define MAX_INET_PROTOS 256 | ||
34 | 37 | ||
35 | /* This is used to register protocols. */ | 38 | /* This is used to register protocols. */ |
36 | struct net_protocol { | 39 | struct net_protocol { |
40 | void (*early_demux)(struct sk_buff *skb); | ||
37 | int (*handler)(struct sk_buff *skb); | 41 | int (*handler)(struct sk_buff *skb); |
38 | void (*err_handler)(struct sk_buff *skb, u32 info); | 42 | void (*err_handler)(struct sk_buff *skb, u32 info); |
39 | int (*gso_send_check)(struct sk_buff *skb); | 43 | int (*gso_send_check)(struct sk_buff *skb); |
@@ -48,6 +52,8 @@ struct net_protocol { | |||
48 | 52 | ||
49 | #if IS_ENABLED(CONFIG_IPV6) | 53 | #if IS_ENABLED(CONFIG_IPV6) |
50 | struct inet6_protocol { | 54 | struct inet6_protocol { |
55 | void (*early_demux)(struct sk_buff *skb); | ||
56 | |||
51 | int (*handler)(struct sk_buff *skb); | 57 | int (*handler)(struct sk_buff *skb); |
52 | 58 | ||
53 | void (*err_handler)(struct sk_buff *skb, | 59 | void (*err_handler)(struct sk_buff *skb, |
diff --git a/include/net/regulatory.h b/include/net/regulatory.h index a5f79933e211..7dcaa2794fde 100644 --- a/include/net/regulatory.h +++ b/include/net/regulatory.h | |||
@@ -52,6 +52,10 @@ enum environment_cap { | |||
52 | * DFS master operation on a known DFS region (NL80211_DFS_*), | 52 | * DFS master operation on a known DFS region (NL80211_DFS_*), |
53 | * dfs_region represents that region. Drivers can use this and the | 53 | * dfs_region represents that region. Drivers can use this and the |
54 | * @alpha2 to adjust their device's DFS parameters as required. | 54 | * @alpha2 to adjust their device's DFS parameters as required. |
55 | * @user_reg_hint_type: if the @initiator was of type | ||
56 | * %NL80211_REGDOM_SET_BY_USER, this classifies the type | ||
57 | * of hint passed. This could be any of the %NL80211_USER_REG_HINT_* | ||
58 | * types. | ||
55 | * @intersect: indicates whether the wireless core should intersect | 59 | * @intersect: indicates whether the wireless core should intersect |
56 | * the requested regulatory domain with the presently set regulatory | 60 | * the requested regulatory domain with the presently set regulatory |
57 | * domain. | 61 | * domain. |
@@ -70,6 +74,7 @@ enum environment_cap { | |||
70 | struct regulatory_request { | 74 | struct regulatory_request { |
71 | int wiphy_idx; | 75 | int wiphy_idx; |
72 | enum nl80211_reg_initiator initiator; | 76 | enum nl80211_reg_initiator initiator; |
77 | enum nl80211_user_reg_hint_type user_reg_hint_type; | ||
73 | char alpha2[2]; | 78 | char alpha2[2]; |
74 | u8 dfs_region; | 79 | u8 dfs_region; |
75 | bool intersect; | 80 | bool intersect; |
diff --git a/include/net/route.h b/include/net/route.h index 98705468ac03..8c52bc6f1c90 100644 --- a/include/net/route.h +++ b/include/net/route.h | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <net/inet_sock.h> | 30 | #include <net/inet_sock.h> |
31 | #include <linux/in_route.h> | 31 | #include <linux/in_route.h> |
32 | #include <linux/rtnetlink.h> | 32 | #include <linux/rtnetlink.h> |
33 | #include <linux/rcupdate.h> | ||
33 | #include <linux/route.h> | 34 | #include <linux/route.h> |
34 | #include <linux/ip.h> | 35 | #include <linux/ip.h> |
35 | #include <linux/cache.h> | 36 | #include <linux/cache.h> |
@@ -40,45 +41,39 @@ | |||
40 | #define RT_CONN_FLAGS(sk) (RT_TOS(inet_sk(sk)->tos) | sock_flag(sk, SOCK_LOCALROUTE)) | 41 | #define RT_CONN_FLAGS(sk) (RT_TOS(inet_sk(sk)->tos) | sock_flag(sk, SOCK_LOCALROUTE)) |
41 | 42 | ||
42 | struct fib_nh; | 43 | struct fib_nh; |
43 | struct inet_peer; | ||
44 | struct fib_info; | 44 | struct fib_info; |
45 | struct rtable { | 45 | struct rtable { |
46 | struct dst_entry dst; | 46 | struct dst_entry dst; |
47 | 47 | ||
48 | /* Lookup key. */ | ||
49 | __be32 rt_key_dst; | ||
50 | __be32 rt_key_src; | ||
51 | |||
52 | int rt_genid; | 48 | int rt_genid; |
53 | unsigned int rt_flags; | 49 | unsigned int rt_flags; |
54 | __u16 rt_type; | 50 | __u16 rt_type; |
55 | __u8 rt_key_tos; | 51 | __u16 rt_is_input; |
56 | 52 | ||
57 | __be32 rt_dst; /* Path destination */ | ||
58 | __be32 rt_src; /* Path source */ | ||
59 | int rt_route_iif; | ||
60 | int rt_iif; | 53 | int rt_iif; |
61 | int rt_oif; | ||
62 | __u32 rt_mark; | ||
63 | 54 | ||
64 | /* Info on neighbour */ | 55 | /* Info on neighbour */ |
65 | __be32 rt_gateway; | 56 | __be32 rt_gateway; |
66 | 57 | ||
67 | /* Miscellaneous cached information */ | 58 | /* Miscellaneous cached information */ |
68 | __be32 rt_spec_dst; /* RFC1122 specific destination */ | 59 | u32 rt_pmtu; |
69 | u32 rt_peer_genid; | ||
70 | struct inet_peer *peer; /* long-living peer info */ | ||
71 | struct fib_info *fi; /* for client ref to shared metrics */ | ||
72 | }; | 60 | }; |
73 | 61 | ||
74 | static inline bool rt_is_input_route(const struct rtable *rt) | 62 | static inline bool rt_is_input_route(const struct rtable *rt) |
75 | { | 63 | { |
76 | return rt->rt_route_iif != 0; | 64 | return rt->rt_is_input != 0; |
77 | } | 65 | } |
78 | 66 | ||
79 | static inline bool rt_is_output_route(const struct rtable *rt) | 67 | static inline bool rt_is_output_route(const struct rtable *rt) |
80 | { | 68 | { |
81 | return rt->rt_route_iif == 0; | 69 | return rt->rt_is_input == 0; |
70 | } | ||
71 | |||
72 | static inline __be32 rt_nexthop(const struct rtable *rt, __be32 daddr) | ||
73 | { | ||
74 | if (rt->rt_gateway) | ||
75 | return rt->rt_gateway; | ||
76 | return daddr; | ||
82 | } | 77 | } |
83 | 78 | ||
84 | struct ip_rt_acct { | 79 | struct ip_rt_acct { |
@@ -111,10 +106,7 @@ extern struct ip_rt_acct __percpu *ip_rt_acct; | |||
111 | 106 | ||
112 | struct in_device; | 107 | struct in_device; |
113 | extern int ip_rt_init(void); | 108 | extern int ip_rt_init(void); |
114 | extern void ip_rt_redirect(__be32 old_gw, __be32 dst, __be32 new_gw, | ||
115 | __be32 src, struct net_device *dev); | ||
116 | extern void rt_cache_flush(struct net *net, int how); | 109 | extern void rt_cache_flush(struct net *net, int how); |
117 | extern void rt_cache_flush_batch(struct net *net); | ||
118 | extern struct rtable *__ip_route_output_key(struct net *, struct flowi4 *flp); | 110 | extern struct rtable *__ip_route_output_key(struct net *, struct flowi4 *flp); |
119 | extern struct rtable *ip_route_output_flow(struct net *, struct flowi4 *flp, | 111 | extern struct rtable *ip_route_output_flow(struct net *, struct flowi4 *flp, |
120 | struct sock *sk); | 112 | struct sock *sk); |
@@ -166,24 +158,30 @@ static inline struct rtable *ip_route_output_gre(struct net *net, struct flowi4 | |||
166 | return ip_route_output_key(net, fl4); | 158 | return ip_route_output_key(net, fl4); |
167 | } | 159 | } |
168 | 160 | ||
169 | extern int ip_route_input_common(struct sk_buff *skb, __be32 dst, __be32 src, | 161 | extern int ip_route_input_noref(struct sk_buff *skb, __be32 dst, __be32 src, |
170 | u8 tos, struct net_device *devin, bool noref); | 162 | u8 tos, struct net_device *devin); |
171 | 163 | ||
172 | static inline int ip_route_input(struct sk_buff *skb, __be32 dst, __be32 src, | 164 | static inline int ip_route_input(struct sk_buff *skb, __be32 dst, __be32 src, |
173 | u8 tos, struct net_device *devin) | 165 | u8 tos, struct net_device *devin) |
174 | { | 166 | { |
175 | return ip_route_input_common(skb, dst, src, tos, devin, false); | 167 | int err; |
176 | } | ||
177 | 168 | ||
178 | static inline int ip_route_input_noref(struct sk_buff *skb, __be32 dst, __be32 src, | 169 | rcu_read_lock(); |
179 | u8 tos, struct net_device *devin) | 170 | err = ip_route_input_noref(skb, dst, src, tos, devin); |
180 | { | 171 | if (!err) |
181 | return ip_route_input_common(skb, dst, src, tos, devin, true); | 172 | skb_dst_force(skb); |
173 | rcu_read_unlock(); | ||
174 | |||
175 | return err; | ||
182 | } | 176 | } |
183 | 177 | ||
184 | extern unsigned short ip_rt_frag_needed(struct net *net, const struct iphdr *iph, | 178 | extern void ipv4_update_pmtu(struct sk_buff *skb, struct net *net, u32 mtu, |
185 | unsigned short new_mtu, struct net_device *dev); | 179 | int oif, u32 mark, u8 protocol, int flow_flags); |
186 | extern void ip_rt_send_redirect(struct sk_buff *skb); | 180 | extern void ipv4_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, u32 mtu); |
181 | extern void ipv4_redirect(struct sk_buff *skb, struct net *net, | ||
182 | int oif, u32 mark, u8 protocol, int flow_flags); | ||
183 | extern void ipv4_sk_redirect(struct sk_buff *skb, struct sock *sk); | ||
184 | extern void ip_rt_send_redirect(struct sk_buff *skb); | ||
187 | 185 | ||
188 | extern unsigned int inet_addr_type(struct net *net, __be32 addr); | 186 | extern unsigned int inet_addr_type(struct net *net, __be32 addr); |
189 | extern unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev, __be32 addr); | 187 | extern unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev, __be32 addr); |
@@ -244,8 +242,6 @@ static inline void ip_route_connect_init(struct flowi4 *fl4, __be32 dst, __be32 | |||
244 | 242 | ||
245 | if (inet_sk(sk)->transparent) | 243 | if (inet_sk(sk)->transparent) |
246 | flow_flags |= FLOWI_FLAG_ANYSRC; | 244 | flow_flags |= FLOWI_FLAG_ANYSRC; |
247 | if (protocol == IPPROTO_TCP) | ||
248 | flow_flags |= FLOWI_FLAG_PRECOW_METRICS; | ||
249 | if (can_sleep) | 245 | if (can_sleep) |
250 | flow_flags |= FLOWI_FLAG_CAN_SLEEP; | 246 | flow_flags |= FLOWI_FLAG_CAN_SLEEP; |
251 | 247 | ||
@@ -294,20 +290,13 @@ static inline struct rtable *ip_route_newports(struct flowi4 *fl4, struct rtable | |||
294 | return rt; | 290 | return rt; |
295 | } | 291 | } |
296 | 292 | ||
297 | extern void rt_bind_peer(struct rtable *rt, __be32 daddr, int create); | ||
298 | |||
299 | static inline struct inet_peer *rt_get_peer(struct rtable *rt, __be32 daddr) | ||
300 | { | ||
301 | if (rt->peer) | ||
302 | return rt->peer; | ||
303 | |||
304 | rt_bind_peer(rt, daddr, 0); | ||
305 | return rt->peer; | ||
306 | } | ||
307 | |||
308 | static inline int inet_iif(const struct sk_buff *skb) | 293 | static inline int inet_iif(const struct sk_buff *skb) |
309 | { | 294 | { |
310 | return skb_rtable(skb)->rt_iif; | 295 | int iif = skb_rtable(skb)->rt_iif; |
296 | |||
297 | if (iif) | ||
298 | return iif; | ||
299 | return skb->skb_iif; | ||
311 | } | 300 | } |
312 | 301 | ||
313 | extern int sysctl_ip_default_ttl; | 302 | extern int sysctl_ip_default_ttl; |
diff --git a/include/net/rtnetlink.h b/include/net/rtnetlink.h index bbcfd0993432..6b00c4fc4291 100644 --- a/include/net/rtnetlink.h +++ b/include/net/rtnetlink.h | |||
@@ -44,8 +44,10 @@ static inline int rtnl_msg_family(const struct nlmsghdr *nlh) | |||
44 | * @get_xstats_size: Function to calculate required room for dumping device | 44 | * @get_xstats_size: Function to calculate required room for dumping device |
45 | * specific statistics | 45 | * specific statistics |
46 | * @fill_xstats: Function to dump device specific statistics | 46 | * @fill_xstats: Function to dump device specific statistics |
47 | * @get_tx_queues: Function to determine number of transmit queues to create when | 47 | * @get_num_tx_queues: Function to determine number of transmit queues |
48 | * creating a new device. | 48 | * to create when creating a new device. |
49 | * @get_num_rx_queues: Function to determine number of receive queues | ||
50 | * to create when creating a new device. | ||
49 | */ | 51 | */ |
50 | struct rtnl_link_ops { | 52 | struct rtnl_link_ops { |
51 | struct list_head list; | 53 | struct list_head list; |
@@ -77,8 +79,8 @@ struct rtnl_link_ops { | |||
77 | size_t (*get_xstats_size)(const struct net_device *dev); | 79 | size_t (*get_xstats_size)(const struct net_device *dev); |
78 | int (*fill_xstats)(struct sk_buff *skb, | 80 | int (*fill_xstats)(struct sk_buff *skb, |
79 | const struct net_device *dev); | 81 | const struct net_device *dev); |
80 | int (*get_tx_queues)(struct net *net, | 82 | unsigned int (*get_num_tx_queues)(void); |
81 | struct nlattr *tb[]); | 83 | unsigned int (*get_num_rx_queues)(void); |
82 | }; | 84 | }; |
83 | 85 | ||
84 | extern int __rtnl_link_register(struct rtnl_link_ops *ops); | 86 | extern int __rtnl_link_register(struct rtnl_link_ops *ops); |
diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h index 9d7d54a00e63..d9611e032418 100644 --- a/include/net/sch_generic.h +++ b/include/net/sch_generic.h | |||
@@ -220,7 +220,7 @@ struct tcf_proto { | |||
220 | 220 | ||
221 | struct qdisc_skb_cb { | 221 | struct qdisc_skb_cb { |
222 | unsigned int pkt_len; | 222 | unsigned int pkt_len; |
223 | u16 bond_queue_mapping; | 223 | u16 slave_dev_queue_mapping; |
224 | u16 _pad; | 224 | u16 _pad; |
225 | unsigned char data[20]; | 225 | unsigned char data[20]; |
226 | }; | 226 | }; |
diff --git a/include/net/scm.h b/include/net/scm.h index d456f4c71a32..079d7887dac1 100644 --- a/include/net/scm.h +++ b/include/net/scm.h | |||
@@ -13,7 +13,6 @@ | |||
13 | #define SCM_MAX_FD 253 | 13 | #define SCM_MAX_FD 253 |
14 | 14 | ||
15 | struct scm_fp_list { | 15 | struct scm_fp_list { |
16 | struct list_head list; | ||
17 | short count; | 16 | short count; |
18 | short max; | 17 | short max; |
19 | struct file *fp[SCM_MAX_FD]; | 18 | struct file *fp[SCM_MAX_FD]; |
diff --git a/include/net/sctp/constants.h b/include/net/sctp/constants.h index 942b864f6135..d053d2e99876 100644 --- a/include/net/sctp/constants.h +++ b/include/net/sctp/constants.h | |||
@@ -334,6 +334,7 @@ typedef enum { | |||
334 | typedef enum { | 334 | typedef enum { |
335 | SCTP_TRANSPORT_UP, | 335 | SCTP_TRANSPORT_UP, |
336 | SCTP_TRANSPORT_DOWN, | 336 | SCTP_TRANSPORT_DOWN, |
337 | SCTP_TRANSPORT_PF, | ||
337 | } sctp_transport_cmd_t; | 338 | } sctp_transport_cmd_t; |
338 | 339 | ||
339 | /* These are the address scopes defined mainly for IPv4 addresses | 340 | /* These are the address scopes defined mainly for IPv4 addresses |
diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h index a2ef81466b00..ff499640528b 100644 --- a/include/net/sctp/sctp.h +++ b/include/net/sctp/sctp.h | |||
@@ -162,6 +162,8 @@ struct sock *sctp_err_lookup(int family, struct sk_buff *, | |||
162 | void sctp_err_finish(struct sock *, struct sctp_association *); | 162 | void sctp_err_finish(struct sock *, struct sctp_association *); |
163 | void sctp_icmp_frag_needed(struct sock *, struct sctp_association *, | 163 | void sctp_icmp_frag_needed(struct sock *, struct sctp_association *, |
164 | struct sctp_transport *t, __u32 pmtu); | 164 | struct sctp_transport *t, __u32 pmtu); |
165 | void sctp_icmp_redirect(struct sock *, struct sctp_transport *, | ||
166 | struct sk_buff *); | ||
165 | void sctp_icmp_proto_unreachable(struct sock *sk, | 167 | void sctp_icmp_proto_unreachable(struct sock *sk, |
166 | struct sctp_association *asoc, | 168 | struct sctp_association *asoc, |
167 | struct sctp_transport *t); | 169 | struct sctp_transport *t); |
@@ -517,10 +519,10 @@ static inline int sctp_frag_point(const struct sctp_association *asoc, int pmtu) | |||
517 | return frag; | 519 | return frag; |
518 | } | 520 | } |
519 | 521 | ||
520 | static inline void sctp_assoc_pending_pmtu(struct sctp_association *asoc) | 522 | static inline void sctp_assoc_pending_pmtu(struct sock *sk, struct sctp_association *asoc) |
521 | { | 523 | { |
522 | 524 | ||
523 | sctp_assoc_sync_pmtu(asoc); | 525 | sctp_assoc_sync_pmtu(sk, asoc); |
524 | asoc->pmtu_pending = 0; | 526 | asoc->pmtu_pending = 0; |
525 | } | 527 | } |
526 | 528 | ||
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index e4652fe58958..fc5e60016e37 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h | |||
@@ -161,6 +161,12 @@ extern struct sctp_globals { | |||
161 | int max_retrans_path; | 161 | int max_retrans_path; |
162 | int max_retrans_init; | 162 | int max_retrans_init; |
163 | 163 | ||
164 | /* Potentially-Failed.Max.Retrans sysctl value | ||
165 | * taken from: | ||
166 | * http://tools.ietf.org/html/draft-nishida-tsvwg-sctp-failover-05 | ||
167 | */ | ||
168 | int pf_retrans; | ||
169 | |||
164 | /* | 170 | /* |
165 | * Policy for preforming sctp/socket accounting | 171 | * Policy for preforming sctp/socket accounting |
166 | * 0 - do socket level accounting, all assocs share sk_sndbuf | 172 | * 0 - do socket level accounting, all assocs share sk_sndbuf |
@@ -258,6 +264,7 @@ extern struct sctp_globals { | |||
258 | #define sctp_sndbuf_policy (sctp_globals.sndbuf_policy) | 264 | #define sctp_sndbuf_policy (sctp_globals.sndbuf_policy) |
259 | #define sctp_rcvbuf_policy (sctp_globals.rcvbuf_policy) | 265 | #define sctp_rcvbuf_policy (sctp_globals.rcvbuf_policy) |
260 | #define sctp_max_retrans_path (sctp_globals.max_retrans_path) | 266 | #define sctp_max_retrans_path (sctp_globals.max_retrans_path) |
267 | #define sctp_pf_retrans (sctp_globals.pf_retrans) | ||
261 | #define sctp_max_retrans_init (sctp_globals.max_retrans_init) | 268 | #define sctp_max_retrans_init (sctp_globals.max_retrans_init) |
262 | #define sctp_sack_timeout (sctp_globals.sack_timeout) | 269 | #define sctp_sack_timeout (sctp_globals.sack_timeout) |
263 | #define sctp_hb_interval (sctp_globals.hb_interval) | 270 | #define sctp_hb_interval (sctp_globals.hb_interval) |
@@ -912,6 +919,9 @@ struct sctp_transport { | |||
912 | /* Is this structure kfree()able? */ | 919 | /* Is this structure kfree()able? */ |
913 | malloced:1; | 920 | malloced:1; |
914 | 921 | ||
922 | /* Has this transport moved the ctsn since we last sacked */ | ||
923 | __u32 sack_generation; | ||
924 | |||
915 | struct flowi fl; | 925 | struct flowi fl; |
916 | 926 | ||
917 | /* This is the peer's IP address and port. */ | 927 | /* This is the peer's IP address and port. */ |
@@ -987,10 +997,15 @@ struct sctp_transport { | |||
987 | 997 | ||
988 | /* This is the max_retrans value for the transport and will | 998 | /* This is the max_retrans value for the transport and will |
989 | * be initialized from the assocs value. This can be changed | 999 | * be initialized from the assocs value. This can be changed |
990 | * using SCTP_SET_PEER_ADDR_PARAMS socket option. | 1000 | * using the SCTP_SET_PEER_ADDR_PARAMS socket option. |
991 | */ | 1001 | */ |
992 | __u16 pathmaxrxt; | 1002 | __u16 pathmaxrxt; |
993 | 1003 | ||
1004 | /* This is the partially failed retrans value for the transport | ||
1005 | * and will be initialized from the assocs value. This can be changed | ||
1006 | * using the SCTP_PEER_ADDR_THLDS socket option | ||
1007 | */ | ||
1008 | int pf_retrans; | ||
994 | /* PMTU : The current known path MTU. */ | 1009 | /* PMTU : The current known path MTU. */ |
995 | __u32 pathmtu; | 1010 | __u32 pathmtu; |
996 | 1011 | ||
@@ -1088,7 +1103,7 @@ void sctp_transport_burst_limited(struct sctp_transport *); | |||
1088 | void sctp_transport_burst_reset(struct sctp_transport *); | 1103 | void sctp_transport_burst_reset(struct sctp_transport *); |
1089 | unsigned long sctp_transport_timeout(struct sctp_transport *); | 1104 | unsigned long sctp_transport_timeout(struct sctp_transport *); |
1090 | void sctp_transport_reset(struct sctp_transport *); | 1105 | void sctp_transport_reset(struct sctp_transport *); |
1091 | void sctp_transport_update_pmtu(struct sctp_transport *, u32); | 1106 | void sctp_transport_update_pmtu(struct sock *, struct sctp_transport *, u32); |
1092 | void sctp_transport_immediate_rtx(struct sctp_transport *); | 1107 | void sctp_transport_immediate_rtx(struct sctp_transport *); |
1093 | 1108 | ||
1094 | 1109 | ||
@@ -1584,6 +1599,7 @@ struct sctp_association { | |||
1584 | */ | 1599 | */ |
1585 | __u8 sack_needed; /* Do we need to sack the peer? */ | 1600 | __u8 sack_needed; /* Do we need to sack the peer? */ |
1586 | __u32 sack_cnt; | 1601 | __u32 sack_cnt; |
1602 | __u32 sack_generation; | ||
1587 | 1603 | ||
1588 | /* These are capabilities which our peer advertised. */ | 1604 | /* These are capabilities which our peer advertised. */ |
1589 | __u8 ecn_capable:1, /* Can peer do ECN? */ | 1605 | __u8 ecn_capable:1, /* Can peer do ECN? */ |
@@ -1660,6 +1676,12 @@ struct sctp_association { | |||
1660 | */ | 1676 | */ |
1661 | int max_retrans; | 1677 | int max_retrans; |
1662 | 1678 | ||
1679 | /* This is the partially failed retrans value for the transport | ||
1680 | * and will be initialized from the assocs value. This can be | ||
1681 | * changed using the SCTP_PEER_ADDR_THLDS socket option | ||
1682 | */ | ||
1683 | int pf_retrans; | ||
1684 | |||
1663 | /* Maximum number of times the endpoint will retransmit INIT */ | 1685 | /* Maximum number of times the endpoint will retransmit INIT */ |
1664 | __u16 max_init_attempts; | 1686 | __u16 max_init_attempts; |
1665 | 1687 | ||
@@ -1999,7 +2021,7 @@ void sctp_assoc_update(struct sctp_association *old, | |||
1999 | 2021 | ||
2000 | __u32 sctp_association_get_next_tsn(struct sctp_association *); | 2022 | __u32 sctp_association_get_next_tsn(struct sctp_association *); |
2001 | 2023 | ||
2002 | void sctp_assoc_sync_pmtu(struct sctp_association *); | 2024 | void sctp_assoc_sync_pmtu(struct sock *, struct sctp_association *); |
2003 | void sctp_assoc_rwnd_increase(struct sctp_association *, unsigned int); | 2025 | void sctp_assoc_rwnd_increase(struct sctp_association *, unsigned int); |
2004 | void sctp_assoc_rwnd_decrease(struct sctp_association *, unsigned int); | 2026 | void sctp_assoc_rwnd_decrease(struct sctp_association *, unsigned int); |
2005 | void sctp_assoc_set_primary(struct sctp_association *, | 2027 | void sctp_assoc_set_primary(struct sctp_association *, |
diff --git a/include/net/sctp/tsnmap.h b/include/net/sctp/tsnmap.h index e7728bc14ccf..2c5d2b4d5d1e 100644 --- a/include/net/sctp/tsnmap.h +++ b/include/net/sctp/tsnmap.h | |||
@@ -117,7 +117,8 @@ void sctp_tsnmap_free(struct sctp_tsnmap *map); | |||
117 | int sctp_tsnmap_check(const struct sctp_tsnmap *, __u32 tsn); | 117 | int sctp_tsnmap_check(const struct sctp_tsnmap *, __u32 tsn); |
118 | 118 | ||
119 | /* Mark this TSN as seen. */ | 119 | /* Mark this TSN as seen. */ |
120 | int sctp_tsnmap_mark(struct sctp_tsnmap *, __u32 tsn); | 120 | int sctp_tsnmap_mark(struct sctp_tsnmap *, __u32 tsn, |
121 | struct sctp_transport *trans); | ||
121 | 122 | ||
122 | /* Mark this TSN and all lower as seen. */ | 123 | /* Mark this TSN and all lower as seen. */ |
123 | void sctp_tsnmap_skip(struct sctp_tsnmap *map, __u32 tsn); | 124 | void sctp_tsnmap_skip(struct sctp_tsnmap *map, __u32 tsn); |
diff --git a/include/net/sctp/user.h b/include/net/sctp/user.h index 0842ef00b2fe..1b02d7ad453b 100644 --- a/include/net/sctp/user.h +++ b/include/net/sctp/user.h | |||
@@ -93,6 +93,7 @@ typedef __s32 sctp_assoc_t; | |||
93 | #define SCTP_GET_ASSOC_NUMBER 28 /* Read only */ | 93 | #define SCTP_GET_ASSOC_NUMBER 28 /* Read only */ |
94 | #define SCTP_GET_ASSOC_ID_LIST 29 /* Read only */ | 94 | #define SCTP_GET_ASSOC_ID_LIST 29 /* Read only */ |
95 | #define SCTP_AUTO_ASCONF 30 | 95 | #define SCTP_AUTO_ASCONF 30 |
96 | #define SCTP_PEER_ADDR_THLDS 31 | ||
96 | 97 | ||
97 | /* Internal Socket Options. Some of the sctp library functions are | 98 | /* Internal Socket Options. Some of the sctp library functions are |
98 | * implemented using these socket options. | 99 | * implemented using these socket options. |
@@ -649,6 +650,7 @@ struct sctp_paddrinfo { | |||
649 | */ | 650 | */ |
650 | enum sctp_spinfo_state { | 651 | enum sctp_spinfo_state { |
651 | SCTP_INACTIVE, | 652 | SCTP_INACTIVE, |
653 | SCTP_PF, | ||
652 | SCTP_ACTIVE, | 654 | SCTP_ACTIVE, |
653 | SCTP_UNCONFIRMED, | 655 | SCTP_UNCONFIRMED, |
654 | SCTP_UNKNOWN = 0xffff /* Value used for transport state unknown */ | 656 | SCTP_UNKNOWN = 0xffff /* Value used for transport state unknown */ |
@@ -741,4 +743,13 @@ typedef struct { | |||
741 | int sd; | 743 | int sd; |
742 | } sctp_peeloff_arg_t; | 744 | } sctp_peeloff_arg_t; |
743 | 745 | ||
746 | /* | ||
747 | * Peer Address Thresholds socket option | ||
748 | */ | ||
749 | struct sctp_paddrthlds { | ||
750 | sctp_assoc_t spt_assoc_id; | ||
751 | struct sockaddr_storage spt_address; | ||
752 | __u16 spt_pathmaxrxt; | ||
753 | __u16 spt_pathpfthld; | ||
754 | }; | ||
744 | #endif /* __net_sctp_user_h__ */ | 755 | #endif /* __net_sctp_user_h__ */ |
diff --git a/include/net/sock.h b/include/net/sock.h index 4a4521699563..e067f8c18f88 100644 --- a/include/net/sock.h +++ b/include/net/sock.h | |||
@@ -198,6 +198,7 @@ struct cg_proto; | |||
198 | * @sk_lock: synchronizer | 198 | * @sk_lock: synchronizer |
199 | * @sk_rcvbuf: size of receive buffer in bytes | 199 | * @sk_rcvbuf: size of receive buffer in bytes |
200 | * @sk_wq: sock wait queue and async head | 200 | * @sk_wq: sock wait queue and async head |
201 | * @sk_rx_dst: receive input route used by early tcp demux | ||
201 | * @sk_dst_cache: destination cache | 202 | * @sk_dst_cache: destination cache |
202 | * @sk_dst_lock: destination cache lock | 203 | * @sk_dst_lock: destination cache lock |
203 | * @sk_policy: flow policy | 204 | * @sk_policy: flow policy |
@@ -317,6 +318,7 @@ struct sock { | |||
317 | struct xfrm_policy *sk_policy[2]; | 318 | struct xfrm_policy *sk_policy[2]; |
318 | #endif | 319 | #endif |
319 | unsigned long sk_flags; | 320 | unsigned long sk_flags; |
321 | struct dst_entry *sk_rx_dst; | ||
320 | struct dst_entry *sk_dst_cache; | 322 | struct dst_entry *sk_dst_cache; |
321 | spinlock_t sk_dst_lock; | 323 | spinlock_t sk_dst_lock; |
322 | atomic_t sk_wmem_alloc; | 324 | atomic_t sk_wmem_alloc; |
@@ -856,6 +858,9 @@ struct proto { | |||
856 | int (*backlog_rcv) (struct sock *sk, | 858 | int (*backlog_rcv) (struct sock *sk, |
857 | struct sk_buff *skb); | 859 | struct sk_buff *skb); |
858 | 860 | ||
861 | void (*release_cb)(struct sock *sk); | ||
862 | void (*mtu_reduced)(struct sock *sk); | ||
863 | |||
859 | /* Keeping track of sk's, looking them up, and port selection methods. */ | 864 | /* Keeping track of sk's, looking them up, and port selection methods. */ |
860 | void (*hash)(struct sock *sk); | 865 | void (*hash)(struct sock *sk); |
861 | void (*unhash)(struct sock *sk); | 866 | void (*unhash)(struct sock *sk); |
@@ -1426,6 +1431,7 @@ extern struct sk_buff *sock_rmalloc(struct sock *sk, | |||
1426 | gfp_t priority); | 1431 | gfp_t priority); |
1427 | extern void sock_wfree(struct sk_buff *skb); | 1432 | extern void sock_wfree(struct sk_buff *skb); |
1428 | extern void sock_rfree(struct sk_buff *skb); | 1433 | extern void sock_rfree(struct sk_buff *skb); |
1434 | extern void sock_edemux(struct sk_buff *skb); | ||
1429 | 1435 | ||
1430 | extern int sock_setsockopt(struct socket *sock, int level, | 1436 | extern int sock_setsockopt(struct socket *sock, int level, |
1431 | int op, char __user *optval, | 1437 | int op, char __user *optval, |
@@ -2152,7 +2158,7 @@ static inline void sk_change_net(struct sock *sk, struct net *net) | |||
2152 | 2158 | ||
2153 | static inline struct sock *skb_steal_sock(struct sk_buff *skb) | 2159 | static inline struct sock *skb_steal_sock(struct sk_buff *skb) |
2154 | { | 2160 | { |
2155 | if (unlikely(skb->sk)) { | 2161 | if (skb->sk) { |
2156 | struct sock *sk = skb->sk; | 2162 | struct sock *sk = skb->sk; |
2157 | 2163 | ||
2158 | skb->destructor = NULL; | 2164 | skb->destructor = NULL; |
diff --git a/include/net/tcp.h b/include/net/tcp.h index e79aa48d9fc1..e19124b84cd2 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
@@ -170,6 +170,11 @@ extern void tcp_time_wait(struct sock *sk, int state, int timeo); | |||
170 | #define TCPOPT_TIMESTAMP 8 /* Better RTT estimations/PAWS */ | 170 | #define TCPOPT_TIMESTAMP 8 /* Better RTT estimations/PAWS */ |
171 | #define TCPOPT_MD5SIG 19 /* MD5 Signature (RFC2385) */ | 171 | #define TCPOPT_MD5SIG 19 /* MD5 Signature (RFC2385) */ |
172 | #define TCPOPT_COOKIE 253 /* Cookie extension (experimental) */ | 172 | #define TCPOPT_COOKIE 253 /* Cookie extension (experimental) */ |
173 | #define TCPOPT_EXP 254 /* Experimental */ | ||
174 | /* Magic number to be after the option value for sharing TCP | ||
175 | * experimental options. See draft-ietf-tcpm-experimental-options-00.txt | ||
176 | */ | ||
177 | #define TCPOPT_FASTOPEN_MAGIC 0xF989 | ||
173 | 178 | ||
174 | /* | 179 | /* |
175 | * TCP option lengths | 180 | * TCP option lengths |
@@ -180,6 +185,7 @@ extern void tcp_time_wait(struct sock *sk, int state, int timeo); | |||
180 | #define TCPOLEN_SACK_PERM 2 | 185 | #define TCPOLEN_SACK_PERM 2 |
181 | #define TCPOLEN_TIMESTAMP 10 | 186 | #define TCPOLEN_TIMESTAMP 10 |
182 | #define TCPOLEN_MD5SIG 18 | 187 | #define TCPOLEN_MD5SIG 18 |
188 | #define TCPOLEN_EXP_FASTOPEN_BASE 4 | ||
183 | #define TCPOLEN_COOKIE_BASE 2 /* Cookie-less header extension */ | 189 | #define TCPOLEN_COOKIE_BASE 2 /* Cookie-less header extension */ |
184 | #define TCPOLEN_COOKIE_PAIR 3 /* Cookie pair header extension */ | 190 | #define TCPOLEN_COOKIE_PAIR 3 /* Cookie pair header extension */ |
185 | #define TCPOLEN_COOKIE_MIN (TCPOLEN_COOKIE_BASE+TCP_COOKIE_MIN) | 191 | #define TCPOLEN_COOKIE_MIN (TCPOLEN_COOKIE_BASE+TCP_COOKIE_MIN) |
@@ -206,6 +212,10 @@ extern void tcp_time_wait(struct sock *sk, int state, int timeo); | |||
206 | /* TCP initial congestion window as per draft-hkchu-tcpm-initcwnd-01 */ | 212 | /* TCP initial congestion window as per draft-hkchu-tcpm-initcwnd-01 */ |
207 | #define TCP_INIT_CWND 10 | 213 | #define TCP_INIT_CWND 10 |
208 | 214 | ||
215 | /* Bit Flags for sysctl_tcp_fastopen */ | ||
216 | #define TFO_CLIENT_ENABLE 1 | ||
217 | #define TFO_CLIENT_NO_COOKIE 4 /* Data in SYN w/o cookie option */ | ||
218 | |||
209 | extern struct inet_timewait_death_row tcp_death_row; | 219 | extern struct inet_timewait_death_row tcp_death_row; |
210 | 220 | ||
211 | /* sysctl variables for tcp */ | 221 | /* sysctl variables for tcp */ |
@@ -222,6 +232,7 @@ extern int sysctl_tcp_retries1; | |||
222 | extern int sysctl_tcp_retries2; | 232 | extern int sysctl_tcp_retries2; |
223 | extern int sysctl_tcp_orphan_retries; | 233 | extern int sysctl_tcp_orphan_retries; |
224 | extern int sysctl_tcp_syncookies; | 234 | extern int sysctl_tcp_syncookies; |
235 | extern int sysctl_tcp_fastopen; | ||
225 | extern int sysctl_tcp_retrans_collapse; | 236 | extern int sysctl_tcp_retrans_collapse; |
226 | extern int sysctl_tcp_stdurg; | 237 | extern int sysctl_tcp_stdurg; |
227 | extern int sysctl_tcp_rfc1337; | 238 | extern int sysctl_tcp_rfc1337; |
@@ -253,6 +264,8 @@ extern int sysctl_tcp_cookie_size; | |||
253 | extern int sysctl_tcp_thin_linear_timeouts; | 264 | extern int sysctl_tcp_thin_linear_timeouts; |
254 | extern int sysctl_tcp_thin_dupack; | 265 | extern int sysctl_tcp_thin_dupack; |
255 | extern int sysctl_tcp_early_retrans; | 266 | extern int sysctl_tcp_early_retrans; |
267 | extern int sysctl_tcp_limit_output_bytes; | ||
268 | extern int sysctl_tcp_challenge_ack_limit; | ||
256 | 269 | ||
257 | extern atomic_long_t tcp_memory_allocated; | 270 | extern atomic_long_t tcp_memory_allocated; |
258 | extern struct percpu_counter tcp_sockets_allocated; | 271 | extern struct percpu_counter tcp_sockets_allocated; |
@@ -321,19 +334,24 @@ extern struct proto tcp_prot; | |||
321 | 334 | ||
322 | extern void tcp_init_mem(struct net *net); | 335 | extern void tcp_init_mem(struct net *net); |
323 | 336 | ||
337 | extern void tcp_tasklet_init(void); | ||
338 | |||
324 | extern void tcp_v4_err(struct sk_buff *skb, u32); | 339 | extern void tcp_v4_err(struct sk_buff *skb, u32); |
325 | 340 | ||
326 | extern void tcp_shutdown (struct sock *sk, int how); | 341 | extern void tcp_shutdown (struct sock *sk, int how); |
327 | 342 | ||
343 | extern void tcp_v4_early_demux(struct sk_buff *skb); | ||
328 | extern int tcp_v4_rcv(struct sk_buff *skb); | 344 | extern int tcp_v4_rcv(struct sk_buff *skb); |
329 | 345 | ||
330 | extern struct inet_peer *tcp_v4_get_peer(struct sock *sk, bool *release_it); | 346 | extern struct inet_peer *tcp_v4_get_peer(struct sock *sk); |
331 | extern void *tcp_v4_tw_get_peer(struct sock *sk); | ||
332 | extern int tcp_v4_tw_remember_stamp(struct inet_timewait_sock *tw); | 347 | extern int tcp_v4_tw_remember_stamp(struct inet_timewait_sock *tw); |
333 | extern int tcp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, | 348 | extern int tcp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, |
334 | size_t size); | 349 | size_t size); |
335 | extern int tcp_sendpage(struct sock *sk, struct page *page, int offset, | 350 | extern int tcp_sendpage(struct sock *sk, struct page *page, int offset, |
336 | size_t size, int flags); | 351 | size_t size, int flags); |
352 | extern void tcp_release_cb(struct sock *sk); | ||
353 | extern void tcp_write_timer_handler(struct sock *sk); | ||
354 | extern void tcp_delack_timer_handler(struct sock *sk); | ||
337 | extern int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg); | 355 | extern int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg); |
338 | extern int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb, | 356 | extern int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb, |
339 | const struct tcphdr *th, unsigned int len); | 357 | const struct tcphdr *th, unsigned int len); |
@@ -388,6 +406,19 @@ extern void tcp_enter_frto(struct sock *sk); | |||
388 | extern void tcp_enter_loss(struct sock *sk, int how); | 406 | extern void tcp_enter_loss(struct sock *sk, int how); |
389 | extern void tcp_clear_retrans(struct tcp_sock *tp); | 407 | extern void tcp_clear_retrans(struct tcp_sock *tp); |
390 | extern void tcp_update_metrics(struct sock *sk); | 408 | extern void tcp_update_metrics(struct sock *sk); |
409 | extern void tcp_init_metrics(struct sock *sk); | ||
410 | extern void tcp_metrics_init(void); | ||
411 | extern bool tcp_peer_is_proven(struct request_sock *req, struct dst_entry *dst, bool paws_check); | ||
412 | extern bool tcp_remember_stamp(struct sock *sk); | ||
413 | extern bool tcp_tw_remember_stamp(struct inet_timewait_sock *tw); | ||
414 | extern void tcp_fastopen_cache_get(struct sock *sk, u16 *mss, | ||
415 | struct tcp_fastopen_cookie *cookie, | ||
416 | int *syn_loss, unsigned long *last_syn_loss); | ||
417 | extern void tcp_fastopen_cache_set(struct sock *sk, u16 mss, | ||
418 | struct tcp_fastopen_cookie *cookie, | ||
419 | bool syn_lost); | ||
420 | extern void tcp_fetch_timewait_stamp(struct sock *sk, struct dst_entry *dst); | ||
421 | extern void tcp_disable_fack(struct tcp_sock *tp); | ||
391 | extern void tcp_close(struct sock *sk, long timeout); | 422 | extern void tcp_close(struct sock *sk, long timeout); |
392 | extern void tcp_init_sock(struct sock *sk); | 423 | extern void tcp_init_sock(struct sock *sk); |
393 | extern unsigned int tcp_poll(struct file * file, struct socket *sock, | 424 | extern unsigned int tcp_poll(struct file * file, struct socket *sock, |
@@ -406,7 +437,7 @@ extern int tcp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, | |||
406 | size_t len, int nonblock, int flags, int *addr_len); | 437 | size_t len, int nonblock, int flags, int *addr_len); |
407 | extern void tcp_parse_options(const struct sk_buff *skb, | 438 | extern void tcp_parse_options(const struct sk_buff *skb, |
408 | struct tcp_options_received *opt_rx, const u8 **hvpp, | 439 | struct tcp_options_received *opt_rx, const u8 **hvpp, |
409 | int estab); | 440 | int estab, struct tcp_fastopen_cookie *foc); |
410 | extern const u8 *tcp_parse_md5sig_option(const struct tcphdr *th); | 441 | extern const u8 *tcp_parse_md5sig_option(const struct tcphdr *th); |
411 | 442 | ||
412 | /* | 443 | /* |
@@ -556,6 +587,8 @@ static inline u32 __tcp_set_rto(const struct tcp_sock *tp) | |||
556 | return (tp->srtt >> 3) + tp->rttvar; | 587 | return (tp->srtt >> 3) + tp->rttvar; |
557 | } | 588 | } |
558 | 589 | ||
590 | extern void tcp_set_rto(struct sock *sk); | ||
591 | |||
559 | static inline void __tcp_fast_path_on(struct tcp_sock *tp, u32 snd_wnd) | 592 | static inline void __tcp_fast_path_on(struct tcp_sock *tp, u32 snd_wnd) |
560 | { | 593 | { |
561 | tp->pred_flags = htonl((tp->tcp_header_len << 26) | | 594 | tp->pred_flags = htonl((tp->tcp_header_len << 26) | |
@@ -1264,6 +1297,15 @@ extern int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *, const struct sk_buff | |||
1264 | extern int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, | 1297 | extern int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, |
1265 | const struct tcp_md5sig_key *key); | 1298 | const struct tcp_md5sig_key *key); |
1266 | 1299 | ||
1300 | struct tcp_fastopen_request { | ||
1301 | /* Fast Open cookie. Size 0 means a cookie request */ | ||
1302 | struct tcp_fastopen_cookie cookie; | ||
1303 | struct msghdr *data; /* data in MSG_FASTOPEN */ | ||
1304 | u16 copied; /* queued in tcp_connect() */ | ||
1305 | }; | ||
1306 | |||
1307 | void tcp_free_fastopen_req(struct tcp_sock *tp); | ||
1308 | |||
1267 | /* write queue abstraction */ | 1309 | /* write queue abstraction */ |
1268 | static inline void tcp_write_queue_purge(struct sock *sk) | 1310 | static inline void tcp_write_queue_purge(struct sock *sk) |
1269 | { | 1311 | { |
diff --git a/include/net/timewait_sock.h b/include/net/timewait_sock.h index 8d6689cb2c66..68f0ecad6c6e 100644 --- a/include/net/timewait_sock.h +++ b/include/net/timewait_sock.h | |||
@@ -22,7 +22,6 @@ struct timewait_sock_ops { | |||
22 | int (*twsk_unique)(struct sock *sk, | 22 | int (*twsk_unique)(struct sock *sk, |
23 | struct sock *sktw, void *twp); | 23 | struct sock *sktw, void *twp); |
24 | void (*twsk_destructor)(struct sock *sk); | 24 | void (*twsk_destructor)(struct sock *sk); |
25 | void *(*twsk_getpeer)(struct sock *sk); | ||
26 | }; | 25 | }; |
27 | 26 | ||
28 | static inline int twsk_unique(struct sock *sk, struct sock *sktw, void *twp) | 27 | static inline int twsk_unique(struct sock *sk, struct sock *sktw, void *twp) |
@@ -41,11 +40,4 @@ static inline void twsk_destructor(struct sock *sk) | |||
41 | sk->sk_prot->twsk_prot->twsk_destructor(sk); | 40 | sk->sk_prot->twsk_prot->twsk_destructor(sk); |
42 | } | 41 | } |
43 | 42 | ||
44 | static inline void *twsk_getpeer(struct sock *sk) | ||
45 | { | ||
46 | if (sk->sk_prot->twsk_prot->twsk_getpeer) | ||
47 | return sk->sk_prot->twsk_prot->twsk_getpeer(sk); | ||
48 | return NULL; | ||
49 | } | ||
50 | |||
51 | #endif /* _TIMEWAIT_SOCK_H */ | 43 | #endif /* _TIMEWAIT_SOCK_H */ |
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index e0a55df5bde8..d9509eb29b80 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h | |||
@@ -1475,6 +1475,8 @@ extern int xfrm4_output(struct sk_buff *skb); | |||
1475 | extern int xfrm4_output_finish(struct sk_buff *skb); | 1475 | extern int xfrm4_output_finish(struct sk_buff *skb); |
1476 | extern int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family); | 1476 | extern int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family); |
1477 | extern int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family); | 1477 | extern int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family); |
1478 | extern int xfrm4_mode_tunnel_input_register(struct xfrm_tunnel *handler); | ||
1479 | extern int xfrm4_mode_tunnel_input_deregister(struct xfrm_tunnel *handler); | ||
1478 | extern int xfrm6_extract_header(struct sk_buff *skb); | 1480 | extern int xfrm6_extract_header(struct sk_buff *skb); |
1479 | extern int xfrm6_extract_input(struct xfrm_state *x, struct sk_buff *skb); | 1481 | extern int xfrm6_extract_input(struct xfrm_state *x, struct sk_buff *skb); |
1480 | extern int xfrm6_rcv_spi(struct sk_buff *skb, int nexthdr, __be32 spi); | 1482 | extern int xfrm6_rcv_spi(struct sk_buff *skb, int nexthdr, __be32 spi); |
@@ -1682,13 +1684,11 @@ static inline int xfrm_mark_get(struct nlattr **attrs, struct xfrm_mark *m) | |||
1682 | 1684 | ||
1683 | static inline int xfrm_mark_put(struct sk_buff *skb, const struct xfrm_mark *m) | 1685 | static inline int xfrm_mark_put(struct sk_buff *skb, const struct xfrm_mark *m) |
1684 | { | 1686 | { |
1685 | if ((m->m | m->v) && | 1687 | int ret = 0; |
1686 | nla_put(skb, XFRMA_MARK, sizeof(struct xfrm_mark), m)) | ||
1687 | goto nla_put_failure; | ||
1688 | return 0; | ||
1689 | 1688 | ||
1690 | nla_put_failure: | 1689 | if (m->m | m->v) |
1691 | return -1; | 1690 | ret = nla_put(skb, XFRMA_MARK, sizeof(struct xfrm_mark), m); |
1691 | return ret; | ||
1692 | } | 1692 | } |
1693 | 1693 | ||
1694 | #endif /* _NET_XFRM_H */ | 1694 | #endif /* _NET_XFRM_H */ |
diff --git a/include/ras/ras_event.h b/include/ras/ras_event.h new file mode 100644 index 000000000000..260470e72483 --- /dev/null +++ b/include/ras/ras_event.h | |||
@@ -0,0 +1,102 @@ | |||
1 | #undef TRACE_SYSTEM | ||
2 | #define TRACE_SYSTEM ras | ||
3 | #define TRACE_INCLUDE_FILE ras_event | ||
4 | |||
5 | #if !defined(_TRACE_HW_EVENT_MC_H) || defined(TRACE_HEADER_MULTI_READ) | ||
6 | #define _TRACE_HW_EVENT_MC_H | ||
7 | |||
8 | #include <linux/tracepoint.h> | ||
9 | #include <linux/edac.h> | ||
10 | #include <linux/ktime.h> | ||
11 | |||
12 | /* | ||
13 | * Hardware Events Report | ||
14 | * | ||
15 | * Those events are generated when hardware detected a corrected or | ||
16 | * uncorrected event, and are meant to replace the current API to report | ||
17 | * errors defined on both EDAC and MCE subsystems. | ||
18 | * | ||
19 | * FIXME: Add events for handling memory errors originated from the | ||
20 | * MCE subsystem. | ||
21 | */ | ||
22 | |||
23 | /* | ||
24 | * Hardware-independent Memory Controller specific events | ||
25 | */ | ||
26 | |||
27 | /* | ||
28 | * Default error mechanisms for Memory Controller errors (CE and UE) | ||
29 | */ | ||
30 | TRACE_EVENT(mc_event, | ||
31 | |||
32 | TP_PROTO(const unsigned int err_type, | ||
33 | const char *error_msg, | ||
34 | const char *label, | ||
35 | const int error_count, | ||
36 | const u8 mc_index, | ||
37 | const s8 top_layer, | ||
38 | const s8 mid_layer, | ||
39 | const s8 low_layer, | ||
40 | unsigned long address, | ||
41 | const u8 grain_bits, | ||
42 | unsigned long syndrome, | ||
43 | const char *driver_detail), | ||
44 | |||
45 | TP_ARGS(err_type, error_msg, label, error_count, mc_index, | ||
46 | top_layer, mid_layer, low_layer, address, grain_bits, | ||
47 | syndrome, driver_detail), | ||
48 | |||
49 | TP_STRUCT__entry( | ||
50 | __field( unsigned int, error_type ) | ||
51 | __string( msg, error_msg ) | ||
52 | __string( label, label ) | ||
53 | __field( u16, error_count ) | ||
54 | __field( u8, mc_index ) | ||
55 | __field( s8, top_layer ) | ||
56 | __field( s8, middle_layer ) | ||
57 | __field( s8, lower_layer ) | ||
58 | __field( long, address ) | ||
59 | __field( u8, grain_bits ) | ||
60 | __field( long, syndrome ) | ||
61 | __string( driver_detail, driver_detail ) | ||
62 | ), | ||
63 | |||
64 | TP_fast_assign( | ||
65 | __entry->error_type = err_type; | ||
66 | __assign_str(msg, error_msg); | ||
67 | __assign_str(label, label); | ||
68 | __entry->error_count = error_count; | ||
69 | __entry->mc_index = mc_index; | ||
70 | __entry->top_layer = top_layer; | ||
71 | __entry->middle_layer = mid_layer; | ||
72 | __entry->lower_layer = low_layer; | ||
73 | __entry->address = address; | ||
74 | __entry->grain_bits = grain_bits; | ||
75 | __entry->syndrome = syndrome; | ||
76 | __assign_str(driver_detail, driver_detail); | ||
77 | ), | ||
78 | |||
79 | TP_printk("%d %s error%s:%s%s on %s (mc:%d location:%d:%d:%d address:0x%08lx grain:%d syndrome:0x%08lx%s%s)", | ||
80 | __entry->error_count, | ||
81 | (__entry->error_type == HW_EVENT_ERR_CORRECTED) ? "Corrected" : | ||
82 | ((__entry->error_type == HW_EVENT_ERR_FATAL) ? | ||
83 | "Fatal" : "Uncorrected"), | ||
84 | __entry->error_count > 1 ? "s" : "", | ||
85 | ((char *)__get_str(msg))[0] ? " " : "", | ||
86 | __get_str(msg), | ||
87 | __get_str(label), | ||
88 | __entry->mc_index, | ||
89 | __entry->top_layer, | ||
90 | __entry->middle_layer, | ||
91 | __entry->lower_layer, | ||
92 | __entry->address, | ||
93 | 1 << __entry->grain_bits, | ||
94 | __entry->syndrome, | ||
95 | ((char *)__get_str(driver_detail))[0] ? " " : "", | ||
96 | __get_str(driver_detail)) | ||
97 | ); | ||
98 | |||
99 | #endif /* _TRACE_HW_EVENT_MC_H */ | ||
100 | |||
101 | /* This part must be outside protection */ | ||
102 | #include <trace/define_trace.h> | ||
diff --git a/include/rdma/ib_cm.h b/include/rdma/ib_cm.h index 83f77ac33957..0e3ff30647d5 100644 --- a/include/rdma/ib_cm.h +++ b/include/rdma/ib_cm.h | |||
@@ -262,6 +262,18 @@ struct ib_cm_event { | |||
262 | void *private_data; | 262 | void *private_data; |
263 | }; | 263 | }; |
264 | 264 | ||
265 | #define CM_REQ_ATTR_ID cpu_to_be16(0x0010) | ||
266 | #define CM_MRA_ATTR_ID cpu_to_be16(0x0011) | ||
267 | #define CM_REJ_ATTR_ID cpu_to_be16(0x0012) | ||
268 | #define CM_REP_ATTR_ID cpu_to_be16(0x0013) | ||
269 | #define CM_RTU_ATTR_ID cpu_to_be16(0x0014) | ||
270 | #define CM_DREQ_ATTR_ID cpu_to_be16(0x0015) | ||
271 | #define CM_DREP_ATTR_ID cpu_to_be16(0x0016) | ||
272 | #define CM_SIDR_REQ_ATTR_ID cpu_to_be16(0x0017) | ||
273 | #define CM_SIDR_REP_ATTR_ID cpu_to_be16(0x0018) | ||
274 | #define CM_LAP_ATTR_ID cpu_to_be16(0x0019) | ||
275 | #define CM_APR_ATTR_ID cpu_to_be16(0x001A) | ||
276 | |||
265 | /** | 277 | /** |
266 | * ib_cm_handler - User-defined callback to process communication events. | 278 | * ib_cm_handler - User-defined callback to process communication events. |
267 | * @cm_id: Communication identifier associated with the reported event. | 279 | * @cm_id: Communication identifier associated with the reported event. |
diff --git a/include/rdma/ib_sa.h b/include/rdma/ib_sa.h index d44a56388a3e..8275e539bace 100644 --- a/include/rdma/ib_sa.h +++ b/include/rdma/ib_sa.h | |||
@@ -251,6 +251,28 @@ struct ib_sa_service_rec { | |||
251 | u64 data64[2]; | 251 | u64 data64[2]; |
252 | }; | 252 | }; |
253 | 253 | ||
254 | #define IB_SA_GUIDINFO_REC_LID IB_SA_COMP_MASK(0) | ||
255 | #define IB_SA_GUIDINFO_REC_BLOCK_NUM IB_SA_COMP_MASK(1) | ||
256 | #define IB_SA_GUIDINFO_REC_RES1 IB_SA_COMP_MASK(2) | ||
257 | #define IB_SA_GUIDINFO_REC_RES2 IB_SA_COMP_MASK(3) | ||
258 | #define IB_SA_GUIDINFO_REC_GID0 IB_SA_COMP_MASK(4) | ||
259 | #define IB_SA_GUIDINFO_REC_GID1 IB_SA_COMP_MASK(5) | ||
260 | #define IB_SA_GUIDINFO_REC_GID2 IB_SA_COMP_MASK(6) | ||
261 | #define IB_SA_GUIDINFO_REC_GID3 IB_SA_COMP_MASK(7) | ||
262 | #define IB_SA_GUIDINFO_REC_GID4 IB_SA_COMP_MASK(8) | ||
263 | #define IB_SA_GUIDINFO_REC_GID5 IB_SA_COMP_MASK(9) | ||
264 | #define IB_SA_GUIDINFO_REC_GID6 IB_SA_COMP_MASK(10) | ||
265 | #define IB_SA_GUIDINFO_REC_GID7 IB_SA_COMP_MASK(11) | ||
266 | |||
267 | struct ib_sa_guidinfo_rec { | ||
268 | __be16 lid; | ||
269 | u8 block_num; | ||
270 | /* reserved */ | ||
271 | u8 res1; | ||
272 | __be32 res2; | ||
273 | u8 guid_info_list[64]; | ||
274 | }; | ||
275 | |||
254 | struct ib_sa_client { | 276 | struct ib_sa_client { |
255 | atomic_t users; | 277 | atomic_t users; |
256 | struct completion comp; | 278 | struct completion comp; |
@@ -385,4 +407,15 @@ int ib_init_ah_from_path(struct ib_device *device, u8 port_num, | |||
385 | */ | 407 | */ |
386 | void ib_sa_unpack_path(void *attribute, struct ib_sa_path_rec *rec); | 408 | void ib_sa_unpack_path(void *attribute, struct ib_sa_path_rec *rec); |
387 | 409 | ||
410 | /* Support GuidInfoRecord */ | ||
411 | int ib_sa_guid_info_rec_query(struct ib_sa_client *client, | ||
412 | struct ib_device *device, u8 port_num, | ||
413 | struct ib_sa_guidinfo_rec *rec, | ||
414 | ib_sa_comp_mask comp_mask, u8 method, | ||
415 | int timeout_ms, gfp_t gfp_mask, | ||
416 | void (*callback)(int status, | ||
417 | struct ib_sa_guidinfo_rec *resp, | ||
418 | void *context), | ||
419 | void *context, | ||
420 | struct ib_sa_query **sa_query); | ||
388 | #endif /* IB_SA_H */ | 421 | #endif /* IB_SA_H */ |
diff --git a/include/rdma/rdma_cm.h b/include/rdma/rdma_cm.h index 51988f808181..ad3a3142383a 100644 --- a/include/rdma/rdma_cm.h +++ b/include/rdma/rdma_cm.h | |||
@@ -357,4 +357,14 @@ void rdma_set_service_type(struct rdma_cm_id *id, int tos); | |||
357 | */ | 357 | */ |
358 | int rdma_set_reuseaddr(struct rdma_cm_id *id, int reuse); | 358 | int rdma_set_reuseaddr(struct rdma_cm_id *id, int reuse); |
359 | 359 | ||
360 | /** | ||
361 | * rdma_set_afonly - Specify that listens are restricted to the | ||
362 | * bound address family only. | ||
363 | * @id: Communication identifer to configure. | ||
364 | * @afonly: Value indicating if listens are restricted. | ||
365 | * | ||
366 | * Must be set before identifier is in the listening state. | ||
367 | */ | ||
368 | int rdma_set_afonly(struct rdma_cm_id *id, int afonly); | ||
369 | |||
360 | #endif /* RDMA_CM_H */ | 370 | #endif /* RDMA_CM_H */ |
diff --git a/include/rdma/rdma_user_cm.h b/include/rdma/rdma_user_cm.h index 5348a000c8f3..1ee9239ff8c2 100644 --- a/include/rdma/rdma_user_cm.h +++ b/include/rdma/rdma_user_cm.h | |||
@@ -224,6 +224,7 @@ enum { | |||
224 | enum { | 224 | enum { |
225 | RDMA_OPTION_ID_TOS = 0, | 225 | RDMA_OPTION_ID_TOS = 0, |
226 | RDMA_OPTION_ID_REUSEADDR = 1, | 226 | RDMA_OPTION_ID_REUSEADDR = 1, |
227 | RDMA_OPTION_ID_AFONLY = 2, | ||
227 | RDMA_OPTION_IB_PATH = 1 | 228 | RDMA_OPTION_IB_PATH = 1 |
228 | }; | 229 | }; |
229 | 230 | ||
diff --git a/include/scsi/libfc.h b/include/scsi/libfc.h index 8f9dfba3fcf0..399162b50a8d 100644 --- a/include/scsi/libfc.h +++ b/include/scsi/libfc.h | |||
@@ -224,7 +224,7 @@ struct fc_rport_priv { | |||
224 | }; | 224 | }; |
225 | 225 | ||
226 | /** | 226 | /** |
227 | * struct fcoe_dev_stats - fcoe stats structure | 227 | * struct fc_stats - fc stats structure |
228 | * @SecondsSinceLastReset: Seconds since the last reset | 228 | * @SecondsSinceLastReset: Seconds since the last reset |
229 | * @TxFrames: Number of transmitted frames | 229 | * @TxFrames: Number of transmitted frames |
230 | * @TxWords: Number of transmitted words | 230 | * @TxWords: Number of transmitted words |
@@ -232,6 +232,9 @@ struct fc_rport_priv { | |||
232 | * @RxWords: Number of received words | 232 | * @RxWords: Number of received words |
233 | * @ErrorFrames: Number of received error frames | 233 | * @ErrorFrames: Number of received error frames |
234 | * @DumpedFrames: Number of dumped frames | 234 | * @DumpedFrames: Number of dumped frames |
235 | * @FcpPktAllocFails: Number of fcp packet allocation failures | ||
236 | * @FcpPktAborts: Number of fcp packet aborts | ||
237 | * @FcpFrameAllocFails: Number of fcp frame allocation failures | ||
235 | * @LinkFailureCount: Number of link failures | 238 | * @LinkFailureCount: Number of link failures |
236 | * @LossOfSignalCount: Number for signal losses | 239 | * @LossOfSignalCount: Number for signal losses |
237 | * @InvalidTxWordCount: Number of invalid transmitted words | 240 | * @InvalidTxWordCount: Number of invalid transmitted words |
@@ -244,7 +247,7 @@ struct fc_rport_priv { | |||
244 | * @VLinkFailureCount: Number of virtual link failures | 247 | * @VLinkFailureCount: Number of virtual link failures |
245 | * @MissDiscAdvCount: Number of missing FIP discovery advertisement | 248 | * @MissDiscAdvCount: Number of missing FIP discovery advertisement |
246 | */ | 249 | */ |
247 | struct fcoe_dev_stats { | 250 | struct fc_stats { |
248 | u64 SecondsSinceLastReset; | 251 | u64 SecondsSinceLastReset; |
249 | u64 TxFrames; | 252 | u64 TxFrames; |
250 | u64 TxWords; | 253 | u64 TxWords; |
@@ -252,6 +255,9 @@ struct fcoe_dev_stats { | |||
252 | u64 RxWords; | 255 | u64 RxWords; |
253 | u64 ErrorFrames; | 256 | u64 ErrorFrames; |
254 | u64 DumpedFrames; | 257 | u64 DumpedFrames; |
258 | u64 FcpPktAllocFails; | ||
259 | u64 FcpPktAborts; | ||
260 | u64 FcpFrameAllocFails; | ||
255 | u64 LinkFailureCount; | 261 | u64 LinkFailureCount; |
256 | u64 LossOfSignalCount; | 262 | u64 LossOfSignalCount; |
257 | u64 InvalidTxWordCount; | 263 | u64 InvalidTxWordCount; |
@@ -510,7 +516,7 @@ struct libfc_function_template { | |||
510 | int (*ddp_done)(struct fc_lport *, u16); | 516 | int (*ddp_done)(struct fc_lport *, u16); |
511 | /* | 517 | /* |
512 | * Sets up the DDP context for a given exchange id on the given | 518 | * Sets up the DDP context for a given exchange id on the given |
513 | * scatterlist if LLD supports DDP for FCoE target. | 519 | * scatterlist if LLD supports DDP for target. |
514 | * | 520 | * |
515 | * STATUS: OPTIONAL | 521 | * STATUS: OPTIONAL |
516 | */ | 522 | */ |
@@ -817,8 +823,7 @@ enum fc_lport_event { | |||
817 | * @state: Identifies the state | 823 | * @state: Identifies the state |
818 | * @boot_time: Timestamp indicating when the local port came online | 824 | * @boot_time: Timestamp indicating when the local port came online |
819 | * @host_stats: SCSI host statistics | 825 | * @host_stats: SCSI host statistics |
820 | * @dev_stats: FCoE device stats (TODO: libfc should not be | 826 | * @stats: FC local port stats (TODO separate libfc LLD stats) |
821 | * FCoE aware) | ||
822 | * @retry_count: Number of retries in the current state | 827 | * @retry_count: Number of retries in the current state |
823 | * @port_id: FC Port ID | 828 | * @port_id: FC Port ID |
824 | * @wwpn: World Wide Port Name | 829 | * @wwpn: World Wide Port Name |
@@ -867,7 +872,7 @@ struct fc_lport { | |||
867 | enum fc_lport_state state; | 872 | enum fc_lport_state state; |
868 | unsigned long boot_time; | 873 | unsigned long boot_time; |
869 | struct fc_host_statistics host_stats; | 874 | struct fc_host_statistics host_stats; |
870 | struct fcoe_dev_stats __percpu *dev_stats; | 875 | struct fc_stats __percpu *stats; |
871 | u8 retry_count; | 876 | u8 retry_count; |
872 | 877 | ||
873 | /* Fabric information */ | 878 | /* Fabric information */ |
@@ -980,8 +985,8 @@ static inline void fc_lport_state_enter(struct fc_lport *lport, | |||
980 | */ | 985 | */ |
981 | static inline int fc_lport_init_stats(struct fc_lport *lport) | 986 | static inline int fc_lport_init_stats(struct fc_lport *lport) |
982 | { | 987 | { |
983 | lport->dev_stats = alloc_percpu(struct fcoe_dev_stats); | 988 | lport->stats = alloc_percpu(struct fc_stats); |
984 | if (!lport->dev_stats) | 989 | if (!lport->stats) |
985 | return -ENOMEM; | 990 | return -ENOMEM; |
986 | return 0; | 991 | return 0; |
987 | } | 992 | } |
@@ -992,7 +997,7 @@ static inline int fc_lport_init_stats(struct fc_lport *lport) | |||
992 | */ | 997 | */ |
993 | static inline void fc_lport_free_stats(struct fc_lport *lport) | 998 | static inline void fc_lport_free_stats(struct fc_lport *lport) |
994 | { | 999 | { |
995 | free_percpu(lport->dev_stats); | 1000 | free_percpu(lport->stats); |
996 | } | 1001 | } |
997 | 1002 | ||
998 | /** | 1003 | /** |
@@ -1116,6 +1121,7 @@ void fc_fill_hdr(struct fc_frame *, const struct fc_frame *, | |||
1116 | * EXCHANGE MANAGER LAYER | 1121 | * EXCHANGE MANAGER LAYER |
1117 | *****************************/ | 1122 | *****************************/ |
1118 | int fc_exch_init(struct fc_lport *); | 1123 | int fc_exch_init(struct fc_lport *); |
1124 | void fc_exch_update_stats(struct fc_lport *lport); | ||
1119 | struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *, | 1125 | struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *, |
1120 | struct fc_exch_mgr *, | 1126 | struct fc_exch_mgr *, |
1121 | bool (*match)(struct fc_frame *)); | 1127 | bool (*match)(struct fc_frame *)); |
diff --git a/include/scsi/libsas.h b/include/scsi/libsas.h index f4f1c96dca72..ae33706afeb0 100644 --- a/include/scsi/libsas.h +++ b/include/scsi/libsas.h | |||
@@ -163,20 +163,29 @@ enum ata_command_set { | |||
163 | ATAPI_COMMAND_SET = 1, | 163 | ATAPI_COMMAND_SET = 1, |
164 | }; | 164 | }; |
165 | 165 | ||
166 | #define ATA_RESP_FIS_SIZE 24 | ||
167 | |||
166 | struct sata_device { | 168 | struct sata_device { |
167 | enum ata_command_set command_set; | 169 | enum ata_command_set command_set; |
168 | struct smp_resp rps_resp; /* report_phy_sata_resp */ | 170 | struct smp_resp rps_resp; /* report_phy_sata_resp */ |
169 | u8 port_no; /* port number, if this is a PM (Port) */ | 171 | u8 port_no; /* port number, if this is a PM (Port) */ |
170 | struct list_head children; /* PM Ports if this is a PM */ | ||
171 | 172 | ||
172 | struct ata_port *ap; | 173 | struct ata_port *ap; |
173 | struct ata_host ata_host; | 174 | struct ata_host ata_host; |
174 | struct ata_taskfile tf; | 175 | u8 fis[ATA_RESP_FIS_SIZE]; |
176 | }; | ||
177 | |||
178 | struct ssp_device { | ||
179 | struct list_head eh_list_node; /* pending a user requested eh action */ | ||
180 | struct scsi_lun reset_lun; | ||
175 | }; | 181 | }; |
176 | 182 | ||
177 | enum { | 183 | enum { |
178 | SAS_DEV_GONE, | 184 | SAS_DEV_GONE, |
179 | SAS_DEV_DESTROY, | 185 | SAS_DEV_DESTROY, |
186 | SAS_DEV_EH_PENDING, | ||
187 | SAS_DEV_LU_RESET, | ||
188 | SAS_DEV_RESET, | ||
180 | }; | 189 | }; |
181 | 190 | ||
182 | struct domain_device { | 191 | struct domain_device { |
@@ -210,6 +219,7 @@ struct domain_device { | |||
210 | union { | 219 | union { |
211 | struct expander_device ex_dev; | 220 | struct expander_device ex_dev; |
212 | struct sata_device sata_dev; /* STP & directly attached */ | 221 | struct sata_device sata_dev; /* STP & directly attached */ |
222 | struct ssp_device ssp_dev; | ||
213 | }; | 223 | }; |
214 | 224 | ||
215 | void *lldd_dev; | 225 | void *lldd_dev; |
@@ -384,7 +394,10 @@ struct sas_ha_struct { | |||
384 | struct list_head defer_q; /* work queued while draining */ | 394 | struct list_head defer_q; /* work queued while draining */ |
385 | struct mutex drain_mutex; | 395 | struct mutex drain_mutex; |
386 | unsigned long state; | 396 | unsigned long state; |
387 | spinlock_t state_lock; | 397 | spinlock_t lock; |
398 | int eh_active; | ||
399 | wait_queue_head_t eh_wait_q; | ||
400 | struct list_head eh_dev_q; | ||
388 | 401 | ||
389 | struct mutex disco_mutex; | 402 | struct mutex disco_mutex; |
390 | 403 | ||
@@ -537,7 +550,7 @@ enum exec_status { | |||
537 | */ | 550 | */ |
538 | struct ata_task_resp { | 551 | struct ata_task_resp { |
539 | u16 frame_len; | 552 | u16 frame_len; |
540 | u8 ending_fis[24]; /* dev to host or data-in */ | 553 | u8 ending_fis[ATA_RESP_FIS_SIZE]; /* dev to host or data-in */ |
541 | }; | 554 | }; |
542 | 555 | ||
543 | #define SAS_STATUS_BUF_SIZE 96 | 556 | #define SAS_STATUS_BUF_SIZE 96 |
@@ -600,10 +613,6 @@ struct sas_task { | |||
600 | 613 | ||
601 | enum sas_protocol task_proto; | 614 | enum sas_protocol task_proto; |
602 | 615 | ||
603 | /* Used by the discovery code. */ | ||
604 | struct timer_list timer; | ||
605 | struct completion completion; | ||
606 | |||
607 | union { | 616 | union { |
608 | struct sas_ata_task ata_task; | 617 | struct sas_ata_task ata_task; |
609 | struct sas_smp_task smp_task; | 618 | struct sas_smp_task smp_task; |
@@ -620,8 +629,15 @@ struct sas_task { | |||
620 | 629 | ||
621 | void *lldd_task; /* for use by LLDDs */ | 630 | void *lldd_task; /* for use by LLDDs */ |
622 | void *uldd_task; | 631 | void *uldd_task; |
632 | struct sas_task_slow *slow_task; | ||
633 | }; | ||
623 | 634 | ||
624 | struct work_struct abort_work; | 635 | struct sas_task_slow { |
636 | /* standard/extra infrastructure for slow path commands (SMP and | ||
637 | * internal lldd commands | ||
638 | */ | ||
639 | struct timer_list timer; | ||
640 | struct completion completion; | ||
625 | }; | 641 | }; |
626 | 642 | ||
627 | #define SAS_TASK_STATE_PENDING 1 | 643 | #define SAS_TASK_STATE_PENDING 1 |
@@ -631,6 +647,7 @@ struct sas_task { | |||
631 | #define SAS_TASK_AT_INITIATOR 16 | 647 | #define SAS_TASK_AT_INITIATOR 16 |
632 | 648 | ||
633 | extern struct sas_task *sas_alloc_task(gfp_t flags); | 649 | extern struct sas_task *sas_alloc_task(gfp_t flags); |
650 | extern struct sas_task *sas_alloc_slow_task(gfp_t flags); | ||
634 | extern void sas_free_task(struct sas_task *task); | 651 | extern void sas_free_task(struct sas_task *task); |
635 | 652 | ||
636 | struct sas_domain_function_template { | 653 | struct sas_domain_function_template { |
@@ -706,6 +723,7 @@ void sas_unregister_dev(struct asd_sas_port *port, struct domain_device *); | |||
706 | void sas_init_dev(struct domain_device *); | 723 | void sas_init_dev(struct domain_device *); |
707 | 724 | ||
708 | void sas_task_abort(struct sas_task *); | 725 | void sas_task_abort(struct sas_task *); |
726 | int sas_eh_abort_handler(struct scsi_cmnd *cmd); | ||
709 | int sas_eh_device_reset_handler(struct scsi_cmnd *cmd); | 727 | int sas_eh_device_reset_handler(struct scsi_cmnd *cmd); |
710 | int sas_eh_bus_reset_handler(struct scsi_cmnd *cmd); | 728 | int sas_eh_bus_reset_handler(struct scsi_cmnd *cmd); |
711 | 729 | ||
diff --git a/include/scsi/sas_ata.h b/include/scsi/sas_ata.h index 77670e823ed8..2dfbdaa0b34a 100644 --- a/include/scsi/sas_ata.h +++ b/include/scsi/sas_ata.h | |||
@@ -45,6 +45,7 @@ void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q, | |||
45 | void sas_ata_schedule_reset(struct domain_device *dev); | 45 | void sas_ata_schedule_reset(struct domain_device *dev); |
46 | void sas_ata_wait_eh(struct domain_device *dev); | 46 | void sas_ata_wait_eh(struct domain_device *dev); |
47 | void sas_probe_sata(struct asd_sas_port *port); | 47 | void sas_probe_sata(struct asd_sas_port *port); |
48 | void sas_ata_end_eh(struct ata_port *ap); | ||
48 | #else | 49 | #else |
49 | 50 | ||
50 | 51 | ||
@@ -85,6 +86,10 @@ static inline int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy | |||
85 | { | 86 | { |
86 | return 0; | 87 | return 0; |
87 | } | 88 | } |
89 | |||
90 | static inline void sas_ata_end_eh(struct ata_port *ap) | ||
91 | { | ||
92 | } | ||
88 | #endif | 93 | #endif |
89 | 94 | ||
90 | #endif /* _SAS_ATA_H_ */ | 95 | #endif /* _SAS_ATA_H_ */ |
diff --git a/include/scsi/scsi.h b/include/scsi/scsi.h index f34a5a87af38..66216c1acb48 100644 --- a/include/scsi/scsi.h +++ b/include/scsi/scsi.h | |||
@@ -161,6 +161,8 @@ struct scsi_cmnd; | |||
161 | #define MI_REPORT_PRIORITY 0x0e | 161 | #define MI_REPORT_PRIORITY 0x0e |
162 | #define MI_REPORT_TIMESTAMP 0x0f | 162 | #define MI_REPORT_TIMESTAMP 0x0f |
163 | #define MI_MANAGEMENT_PROTOCOL_IN 0x10 | 163 | #define MI_MANAGEMENT_PROTOCOL_IN 0x10 |
164 | /* value for MI_REPORT_TARGET_PGS ext header */ | ||
165 | #define MI_EXT_HDR_PARAM_FMT 0x20 | ||
164 | /* values for maintenance out */ | 166 | /* values for maintenance out */ |
165 | #define MO_SET_IDENTIFYING_INFORMATION 0x06 | 167 | #define MO_SET_IDENTIFYING_INFORMATION 0x06 |
166 | #define MO_SET_TARGET_PGS 0x0a | 168 | #define MO_SET_TARGET_PGS 0x0a |
@@ -214,6 +216,16 @@ scsi_command_size(const unsigned char *cmnd) | |||
214 | scsi_varlen_cdb_length(cmnd) : COMMAND_SIZE(cmnd[0]); | 216 | scsi_varlen_cdb_length(cmnd) : COMMAND_SIZE(cmnd[0]); |
215 | } | 217 | } |
216 | 218 | ||
219 | #ifdef CONFIG_ACPI | ||
220 | struct acpi_bus_type; | ||
221 | |||
222 | extern int | ||
223 | scsi_register_acpi_bus_type(struct acpi_bus_type *bus); | ||
224 | |||
225 | extern void | ||
226 | scsi_unregister_acpi_bus_type(struct acpi_bus_type *bus); | ||
227 | #endif | ||
228 | |||
217 | /* | 229 | /* |
218 | * SCSI Architecture Model (SAM) Status codes. Taken from SAM-3 draft | 230 | * SCSI Architecture Model (SAM) Status codes. Taken from SAM-3 draft |
219 | * T10/1561-D Revision 4 Draft dated 7th November 2002. | 231 | * T10/1561-D Revision 4 Draft dated 7th November 2002. |
diff --git a/include/scsi/scsi_cmnd.h b/include/scsi/scsi_cmnd.h index 1e1198546c72..ac06cc595890 100644 --- a/include/scsi/scsi_cmnd.h +++ b/include/scsi/scsi_cmnd.h | |||
@@ -134,10 +134,16 @@ struct scsi_cmnd { | |||
134 | 134 | ||
135 | static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd) | 135 | static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd) |
136 | { | 136 | { |
137 | struct scsi_driver **sdp; | ||
138 | |||
137 | if (!cmd->request->rq_disk) | 139 | if (!cmd->request->rq_disk) |
138 | return NULL; | 140 | return NULL; |
139 | 141 | ||
140 | return *(struct scsi_driver **)cmd->request->rq_disk->private_data; | 142 | sdp = (struct scsi_driver **)cmd->request->rq_disk->private_data; |
143 | if (!sdp) | ||
144 | return NULL; | ||
145 | |||
146 | return *sdp; | ||
141 | } | 147 | } |
142 | 148 | ||
143 | extern struct scsi_cmnd *scsi_get_command(struct scsi_device *, gfp_t); | 149 | extern struct scsi_cmnd *scsi_get_command(struct scsi_device *, gfp_t); |
diff --git a/include/scsi/scsi_device.h b/include/scsi/scsi_device.h index 6efb2e1416e0..9895f69294fc 100644 --- a/include/scsi/scsi_device.h +++ b/include/scsi/scsi_device.h | |||
@@ -42,6 +42,7 @@ enum scsi_device_state { | |||
42 | * originate in the mid-layer) */ | 42 | * originate in the mid-layer) */ |
43 | SDEV_OFFLINE, /* Device offlined (by error handling or | 43 | SDEV_OFFLINE, /* Device offlined (by error handling or |
44 | * user request */ | 44 | * user request */ |
45 | SDEV_TRANSPORT_OFFLINE, /* Offlined by transport class error handler */ | ||
45 | SDEV_BLOCK, /* Device blocked by scsi lld. No | 46 | SDEV_BLOCK, /* Device blocked by scsi lld. No |
46 | * scsi commands from user or midlayer | 47 | * scsi commands from user or midlayer |
47 | * should be issued to the scsi | 48 | * should be issued to the scsi |
@@ -151,7 +152,10 @@ struct scsi_device { | |||
151 | SD_LAST_BUGGY_SECTORS */ | 152 | SD_LAST_BUGGY_SECTORS */ |
152 | unsigned no_read_disc_info:1; /* Avoid READ_DISC_INFO cmds */ | 153 | unsigned no_read_disc_info:1; /* Avoid READ_DISC_INFO cmds */ |
153 | unsigned no_read_capacity_16:1; /* Avoid READ_CAPACITY_16 cmds */ | 154 | unsigned no_read_capacity_16:1; /* Avoid READ_CAPACITY_16 cmds */ |
155 | unsigned try_rc_10_first:1; /* Try READ_CAPACACITY_10 first */ | ||
154 | unsigned is_visible:1; /* is the device visible in sysfs */ | 156 | unsigned is_visible:1; /* is the device visible in sysfs */ |
157 | unsigned can_power_off:1; /* Device supports runtime power off */ | ||
158 | unsigned wce_default_on:1; /* Cache is ON by default */ | ||
155 | 159 | ||
156 | DECLARE_BITMAP(supported_events, SDEV_EVT_MAXBITS); /* supported events */ | 160 | DECLARE_BITMAP(supported_events, SDEV_EVT_MAXBITS); /* supported events */ |
157 | struct list_head event_list; /* asserted events */ | 161 | struct list_head event_list; /* asserted events */ |
@@ -372,7 +376,7 @@ extern void scsi_scan_target(struct device *parent, unsigned int channel, | |||
372 | unsigned int id, unsigned int lun, int rescan); | 376 | unsigned int id, unsigned int lun, int rescan); |
373 | extern void scsi_target_reap(struct scsi_target *); | 377 | extern void scsi_target_reap(struct scsi_target *); |
374 | extern void scsi_target_block(struct device *); | 378 | extern void scsi_target_block(struct device *); |
375 | extern void scsi_target_unblock(struct device *); | 379 | extern void scsi_target_unblock(struct device *, enum scsi_device_state); |
376 | extern void scsi_remove_target(struct device *); | 380 | extern void scsi_remove_target(struct device *); |
377 | extern void int_to_scsilun(unsigned int, struct scsi_lun *); | 381 | extern void int_to_scsilun(unsigned int, struct scsi_lun *); |
378 | extern int scsilun_to_int(struct scsi_lun *); | 382 | extern int scsilun_to_int(struct scsi_lun *); |
@@ -420,6 +424,7 @@ static inline unsigned int sdev_id(struct scsi_device *sdev) | |||
420 | static inline int scsi_device_online(struct scsi_device *sdev) | 424 | static inline int scsi_device_online(struct scsi_device *sdev) |
421 | { | 425 | { |
422 | return (sdev->sdev_state != SDEV_OFFLINE && | 426 | return (sdev->sdev_state != SDEV_OFFLINE && |
427 | sdev->sdev_state != SDEV_TRANSPORT_OFFLINE && | ||
423 | sdev->sdev_state != SDEV_DEL); | 428 | sdev->sdev_state != SDEV_DEL); |
424 | } | 429 | } |
425 | static inline int scsi_device_blocked(struct scsi_device *sdev) | 430 | static inline int scsi_device_blocked(struct scsi_device *sdev) |
diff --git a/include/scsi/scsi_dh.h b/include/scsi/scsi_dh.h index e3f2db212ddc..620c723ee8ed 100644 --- a/include/scsi/scsi_dh.h +++ b/include/scsi/scsi_dh.h | |||
@@ -60,6 +60,7 @@ extern int scsi_dh_activate(struct request_queue *, activate_complete, void *); | |||
60 | extern int scsi_dh_handler_exist(const char *); | 60 | extern int scsi_dh_handler_exist(const char *); |
61 | extern int scsi_dh_attach(struct request_queue *, const char *); | 61 | extern int scsi_dh_attach(struct request_queue *, const char *); |
62 | extern void scsi_dh_detach(struct request_queue *); | 62 | extern void scsi_dh_detach(struct request_queue *); |
63 | extern const char *scsi_dh_attached_handler_name(struct request_queue *, gfp_t); | ||
63 | extern int scsi_dh_set_params(struct request_queue *, const char *); | 64 | extern int scsi_dh_set_params(struct request_queue *, const char *); |
64 | #else | 65 | #else |
65 | static inline int scsi_dh_activate(struct request_queue *req, | 66 | static inline int scsi_dh_activate(struct request_queue *req, |
@@ -80,6 +81,11 @@ static inline void scsi_dh_detach(struct request_queue *q) | |||
80 | { | 81 | { |
81 | return; | 82 | return; |
82 | } | 83 | } |
84 | static inline const char *scsi_dh_attached_handler_name(struct request_queue *q, | ||
85 | gfp_t gfp) | ||
86 | { | ||
87 | return NULL; | ||
88 | } | ||
83 | static inline int scsi_dh_set_params(struct request_queue *req, const char *params) | 89 | static inline int scsi_dh_set_params(struct request_queue *req, const char *params) |
84 | { | 90 | { |
85 | return -SCSI_DH_NOSYS; | 91 | return -SCSI_DH_NOSYS; |
diff --git a/include/scsi/scsi_scan.h b/include/scsi/scsi_scan.h deleted file mode 100644 index 78898889243d..000000000000 --- a/include/scsi/scsi_scan.h +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | #ifndef _SCSI_SCSI_SCAN_H | ||
2 | #define _SCSI_SCSI_SCAN_H | ||
3 | |||
4 | #ifdef CONFIG_SCSI | ||
5 | /* drivers/scsi/scsi_scan.c */ | ||
6 | extern int scsi_complete_async_scans(void); | ||
7 | #else | ||
8 | static inline int scsi_complete_async_scans(void) { return 0; } | ||
9 | #endif | ||
10 | |||
11 | #endif /* _SCSI_SCSI_SCAN_H */ | ||
diff --git a/include/scsi/scsi_transport_fc.h b/include/scsi/scsi_transport_fc.h index 719faf1863ad..b797e8fad669 100644 --- a/include/scsi/scsi_transport_fc.h +++ b/include/scsi/scsi_transport_fc.h | |||
@@ -426,6 +426,18 @@ struct fc_host_statistics { | |||
426 | u64 fcp_control_requests; | 426 | u64 fcp_control_requests; |
427 | u64 fcp_input_megabytes; | 427 | u64 fcp_input_megabytes; |
428 | u64 fcp_output_megabytes; | 428 | u64 fcp_output_megabytes; |
429 | u64 fcp_packet_alloc_failures; /* fcp packet allocation failures */ | ||
430 | u64 fcp_packet_aborts; /* fcp packet aborted */ | ||
431 | u64 fcp_frame_alloc_failures; /* fcp frame allocation failures */ | ||
432 | |||
433 | /* fc exches statistics */ | ||
434 | u64 fc_no_free_exch; /* no free exch memory */ | ||
435 | u64 fc_no_free_exch_xid; /* no free exch id */ | ||
436 | u64 fc_xid_not_found; /* exch not found for a response */ | ||
437 | u64 fc_xid_busy; /* exch exist for new a request */ | ||
438 | u64 fc_seq_not_found; /* seq is not found for exchange */ | ||
439 | u64 fc_non_bls_resp; /* a non BLS response frame with | ||
440 | a sequence responder in new exch */ | ||
429 | }; | 441 | }; |
430 | 442 | ||
431 | 443 | ||
diff --git a/include/sound/cs46xx.h b/include/sound/cs46xx.h deleted file mode 100644 index e3005a674a24..000000000000 --- a/include/sound/cs46xx.h +++ /dev/null | |||
@@ -1,1745 +0,0 @@ | |||
1 | #ifndef __SOUND_CS46XX_H | ||
2 | #define __SOUND_CS46XX_H | ||
3 | |||
4 | /* | ||
5 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz>, | ||
6 | * Cirrus Logic, Inc. | ||
7 | * Definitions for Cirrus Logic CS46xx chips | ||
8 | * | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License as published by | ||
12 | * the Free Software Foundation; either version 2 of the License, or | ||
13 | * (at your option) any later version. | ||
14 | * | ||
15 | * This program is distributed in the hope that it will be useful, | ||
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
18 | * GNU General Public License for more details. | ||
19 | * | ||
20 | * You should have received a copy of the GNU General Public License | ||
21 | * along with this program; if not, write to the Free Software | ||
22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
23 | * | ||
24 | */ | ||
25 | |||
26 | #include "pcm.h" | ||
27 | #include "pcm-indirect.h" | ||
28 | #include "rawmidi.h" | ||
29 | #include "ac97_codec.h" | ||
30 | #include "cs46xx_dsp_spos.h" | ||
31 | |||
32 | /* | ||
33 | * Direct registers | ||
34 | */ | ||
35 | |||
36 | /* | ||
37 | * The following define the offsets of the registers accessed via base address | ||
38 | * register zero on the CS46xx part. | ||
39 | */ | ||
40 | #define BA0_HISR 0x00000000 | ||
41 | #define BA0_HSR0 0x00000004 | ||
42 | #define BA0_HICR 0x00000008 | ||
43 | #define BA0_DMSR 0x00000100 | ||
44 | #define BA0_HSAR 0x00000110 | ||
45 | #define BA0_HDAR 0x00000114 | ||
46 | #define BA0_HDMR 0x00000118 | ||
47 | #define BA0_HDCR 0x0000011C | ||
48 | #define BA0_PFMC 0x00000200 | ||
49 | #define BA0_PFCV1 0x00000204 | ||
50 | #define BA0_PFCV2 0x00000208 | ||
51 | #define BA0_PCICFG00 0x00000300 | ||
52 | #define BA0_PCICFG04 0x00000304 | ||
53 | #define BA0_PCICFG08 0x00000308 | ||
54 | #define BA0_PCICFG0C 0x0000030C | ||
55 | #define BA0_PCICFG10 0x00000310 | ||
56 | #define BA0_PCICFG14 0x00000314 | ||
57 | #define BA0_PCICFG18 0x00000318 | ||
58 | #define BA0_PCICFG1C 0x0000031C | ||
59 | #define BA0_PCICFG20 0x00000320 | ||
60 | #define BA0_PCICFG24 0x00000324 | ||
61 | #define BA0_PCICFG28 0x00000328 | ||
62 | #define BA0_PCICFG2C 0x0000032C | ||
63 | #define BA0_PCICFG30 0x00000330 | ||
64 | #define BA0_PCICFG34 0x00000334 | ||
65 | #define BA0_PCICFG38 0x00000338 | ||
66 | #define BA0_PCICFG3C 0x0000033C | ||
67 | #define BA0_CLKCR1 0x00000400 | ||
68 | #define BA0_CLKCR2 0x00000404 | ||
69 | #define BA0_PLLM 0x00000408 | ||
70 | #define BA0_PLLCC 0x0000040C | ||
71 | #define BA0_FRR 0x00000410 | ||
72 | #define BA0_CFL1 0x00000414 | ||
73 | #define BA0_CFL2 0x00000418 | ||
74 | #define BA0_SERMC1 0x00000420 | ||
75 | #define BA0_SERMC2 0x00000424 | ||
76 | #define BA0_SERC1 0x00000428 | ||
77 | #define BA0_SERC2 0x0000042C | ||
78 | #define BA0_SERC3 0x00000430 | ||
79 | #define BA0_SERC4 0x00000434 | ||
80 | #define BA0_SERC5 0x00000438 | ||
81 | #define BA0_SERBSP 0x0000043C | ||
82 | #define BA0_SERBST 0x00000440 | ||
83 | #define BA0_SERBCM 0x00000444 | ||
84 | #define BA0_SERBAD 0x00000448 | ||
85 | #define BA0_SERBCF 0x0000044C | ||
86 | #define BA0_SERBWP 0x00000450 | ||
87 | #define BA0_SERBRP 0x00000454 | ||
88 | #ifndef NO_CS4612 | ||
89 | #define BA0_ASER_FADDR 0x00000458 | ||
90 | #endif | ||
91 | #define BA0_ACCTL 0x00000460 | ||
92 | #define BA0_ACSTS 0x00000464 | ||
93 | #define BA0_ACOSV 0x00000468 | ||
94 | #define BA0_ACCAD 0x0000046C | ||
95 | #define BA0_ACCDA 0x00000470 | ||
96 | #define BA0_ACISV 0x00000474 | ||
97 | #define BA0_ACSAD 0x00000478 | ||
98 | #define BA0_ACSDA 0x0000047C | ||
99 | #define BA0_JSPT 0x00000480 | ||
100 | #define BA0_JSCTL 0x00000484 | ||
101 | #define BA0_JSC1 0x00000488 | ||
102 | #define BA0_JSC2 0x0000048C | ||
103 | #define BA0_MIDCR 0x00000490 | ||
104 | #define BA0_MIDSR 0x00000494 | ||
105 | #define BA0_MIDWP 0x00000498 | ||
106 | #define BA0_MIDRP 0x0000049C | ||
107 | #define BA0_JSIO 0x000004A0 | ||
108 | #ifndef NO_CS4612 | ||
109 | #define BA0_ASER_MASTER 0x000004A4 | ||
110 | #endif | ||
111 | #define BA0_CFGI 0x000004B0 | ||
112 | #define BA0_SSVID 0x000004B4 | ||
113 | #define BA0_GPIOR 0x000004B8 | ||
114 | #ifndef NO_CS4612 | ||
115 | #define BA0_EGPIODR 0x000004BC | ||
116 | #define BA0_EGPIOPTR 0x000004C0 | ||
117 | #define BA0_EGPIOTR 0x000004C4 | ||
118 | #define BA0_EGPIOWR 0x000004C8 | ||
119 | #define BA0_EGPIOSR 0x000004CC | ||
120 | #define BA0_SERC6 0x000004D0 | ||
121 | #define BA0_SERC7 0x000004D4 | ||
122 | #define BA0_SERACC 0x000004D8 | ||
123 | #define BA0_ACCTL2 0x000004E0 | ||
124 | #define BA0_ACSTS2 0x000004E4 | ||
125 | #define BA0_ACOSV2 0x000004E8 | ||
126 | #define BA0_ACCAD2 0x000004EC | ||
127 | #define BA0_ACCDA2 0x000004F0 | ||
128 | #define BA0_ACISV2 0x000004F4 | ||
129 | #define BA0_ACSAD2 0x000004F8 | ||
130 | #define BA0_ACSDA2 0x000004FC | ||
131 | #define BA0_IOTAC0 0x00000500 | ||
132 | #define BA0_IOTAC1 0x00000504 | ||
133 | #define BA0_IOTAC2 0x00000508 | ||
134 | #define BA0_IOTAC3 0x0000050C | ||
135 | #define BA0_IOTAC4 0x00000510 | ||
136 | #define BA0_IOTAC5 0x00000514 | ||
137 | #define BA0_IOTAC6 0x00000518 | ||
138 | #define BA0_IOTAC7 0x0000051C | ||
139 | #define BA0_IOTAC8 0x00000520 | ||
140 | #define BA0_IOTAC9 0x00000524 | ||
141 | #define BA0_IOTAC10 0x00000528 | ||
142 | #define BA0_IOTAC11 0x0000052C | ||
143 | #define BA0_IOTFR0 0x00000540 | ||
144 | #define BA0_IOTFR1 0x00000544 | ||
145 | #define BA0_IOTFR2 0x00000548 | ||
146 | #define BA0_IOTFR3 0x0000054C | ||
147 | #define BA0_IOTFR4 0x00000550 | ||
148 | #define BA0_IOTFR5 0x00000554 | ||
149 | #define BA0_IOTFR6 0x00000558 | ||
150 | #define BA0_IOTFR7 0x0000055C | ||
151 | #define BA0_IOTFIFO 0x00000580 | ||
152 | #define BA0_IOTRRD 0x00000584 | ||
153 | #define BA0_IOTFP 0x00000588 | ||
154 | #define BA0_IOTCR 0x0000058C | ||
155 | #define BA0_DPCID 0x00000590 | ||
156 | #define BA0_DPCIA 0x00000594 | ||
157 | #define BA0_DPCIC 0x00000598 | ||
158 | #define BA0_PCPCIR 0x00000600 | ||
159 | #define BA0_PCPCIG 0x00000604 | ||
160 | #define BA0_PCPCIEN 0x00000608 | ||
161 | #define BA0_EPCIPMC 0x00000610 | ||
162 | #endif | ||
163 | |||
164 | /* | ||
165 | * The following define the offsets of the registers and memories accessed via | ||
166 | * base address register one on the CS46xx part. | ||
167 | */ | ||
168 | #define BA1_SP_DMEM0 0x00000000 | ||
169 | #define BA1_SP_DMEM1 0x00010000 | ||
170 | #define BA1_SP_PMEM 0x00020000 | ||
171 | #define BA1_SP_REG 0x00030000 | ||
172 | #define BA1_SPCR 0x00030000 | ||
173 | #define BA1_DREG 0x00030004 | ||
174 | #define BA1_DSRWP 0x00030008 | ||
175 | #define BA1_TWPR 0x0003000C | ||
176 | #define BA1_SPWR 0x00030010 | ||
177 | #define BA1_SPIR 0x00030014 | ||
178 | #define BA1_FGR1 0x00030020 | ||
179 | #define BA1_SPCS 0x00030028 | ||
180 | #define BA1_SDSR 0x0003002C | ||
181 | #define BA1_FRMT 0x00030030 | ||
182 | #define BA1_FRCC 0x00030034 | ||
183 | #define BA1_FRSC 0x00030038 | ||
184 | #define BA1_OMNI_MEM 0x000E0000 | ||
185 | |||
186 | |||
187 | /* | ||
188 | * The following defines are for the flags in the host interrupt status | ||
189 | * register. | ||
190 | */ | ||
191 | #define HISR_VC_MASK 0x0000FFFF | ||
192 | #define HISR_VC0 0x00000001 | ||
193 | #define HISR_VC1 0x00000002 | ||
194 | #define HISR_VC2 0x00000004 | ||
195 | #define HISR_VC3 0x00000008 | ||
196 | #define HISR_VC4 0x00000010 | ||
197 | #define HISR_VC5 0x00000020 | ||
198 | #define HISR_VC6 0x00000040 | ||
199 | #define HISR_VC7 0x00000080 | ||
200 | #define HISR_VC8 0x00000100 | ||
201 | #define HISR_VC9 0x00000200 | ||
202 | #define HISR_VC10 0x00000400 | ||
203 | #define HISR_VC11 0x00000800 | ||
204 | #define HISR_VC12 0x00001000 | ||
205 | #define HISR_VC13 0x00002000 | ||
206 | #define HISR_VC14 0x00004000 | ||
207 | #define HISR_VC15 0x00008000 | ||
208 | #define HISR_INT0 0x00010000 | ||
209 | #define HISR_INT1 0x00020000 | ||
210 | #define HISR_DMAI 0x00040000 | ||
211 | #define HISR_FROVR 0x00080000 | ||
212 | #define HISR_MIDI 0x00100000 | ||
213 | #ifdef NO_CS4612 | ||
214 | #define HISR_RESERVED 0x0FE00000 | ||
215 | #else | ||
216 | #define HISR_SBINT 0x00200000 | ||
217 | #define HISR_RESERVED 0x0FC00000 | ||
218 | #endif | ||
219 | #define HISR_H0P 0x40000000 | ||
220 | #define HISR_INTENA 0x80000000 | ||
221 | |||
222 | /* | ||
223 | * The following defines are for the flags in the host signal register 0. | ||
224 | */ | ||
225 | #define HSR0_VC_MASK 0xFFFFFFFF | ||
226 | #define HSR0_VC16 0x00000001 | ||
227 | #define HSR0_VC17 0x00000002 | ||
228 | #define HSR0_VC18 0x00000004 | ||
229 | #define HSR0_VC19 0x00000008 | ||
230 | #define HSR0_VC20 0x00000010 | ||
231 | #define HSR0_VC21 0x00000020 | ||
232 | #define HSR0_VC22 0x00000040 | ||
233 | #define HSR0_VC23 0x00000080 | ||
234 | #define HSR0_VC24 0x00000100 | ||
235 | #define HSR0_VC25 0x00000200 | ||
236 | #define HSR0_VC26 0x00000400 | ||
237 | #define HSR0_VC27 0x00000800 | ||
238 | #define HSR0_VC28 0x00001000 | ||
239 | #define HSR0_VC29 0x00002000 | ||
240 | #define HSR0_VC30 0x00004000 | ||
241 | #define HSR0_VC31 0x00008000 | ||
242 | #define HSR0_VC32 0x00010000 | ||
243 | #define HSR0_VC33 0x00020000 | ||
244 | #define HSR0_VC34 0x00040000 | ||
245 | #define HSR0_VC35 0x00080000 | ||
246 | #define HSR0_VC36 0x00100000 | ||
247 | #define HSR0_VC37 0x00200000 | ||
248 | #define HSR0_VC38 0x00400000 | ||
249 | #define HSR0_VC39 0x00800000 | ||
250 | #define HSR0_VC40 0x01000000 | ||
251 | #define HSR0_VC41 0x02000000 | ||
252 | #define HSR0_VC42 0x04000000 | ||
253 | #define HSR0_VC43 0x08000000 | ||
254 | #define HSR0_VC44 0x10000000 | ||
255 | #define HSR0_VC45 0x20000000 | ||
256 | #define HSR0_VC46 0x40000000 | ||
257 | #define HSR0_VC47 0x80000000 | ||
258 | |||
259 | /* | ||
260 | * The following defines are for the flags in the host interrupt control | ||
261 | * register. | ||
262 | */ | ||
263 | #define HICR_IEV 0x00000001 | ||
264 | #define HICR_CHGM 0x00000002 | ||
265 | |||
266 | /* | ||
267 | * The following defines are for the flags in the DMA status register. | ||
268 | */ | ||
269 | #define DMSR_HP 0x00000001 | ||
270 | #define DMSR_HR 0x00000002 | ||
271 | #define DMSR_SP 0x00000004 | ||
272 | #define DMSR_SR 0x00000008 | ||
273 | |||
274 | /* | ||
275 | * The following defines are for the flags in the host DMA source address | ||
276 | * register. | ||
277 | */ | ||
278 | #define HSAR_HOST_ADDR_MASK 0xFFFFFFFF | ||
279 | #define HSAR_DSP_ADDR_MASK 0x0000FFFF | ||
280 | #define HSAR_MEMID_MASK 0x000F0000 | ||
281 | #define HSAR_MEMID_SP_DMEM0 0x00000000 | ||
282 | #define HSAR_MEMID_SP_DMEM1 0x00010000 | ||
283 | #define HSAR_MEMID_SP_PMEM 0x00020000 | ||
284 | #define HSAR_MEMID_SP_DEBUG 0x00030000 | ||
285 | #define HSAR_MEMID_OMNI_MEM 0x000E0000 | ||
286 | #define HSAR_END 0x40000000 | ||
287 | #define HSAR_ERR 0x80000000 | ||
288 | |||
289 | /* | ||
290 | * The following defines are for the flags in the host DMA destination address | ||
291 | * register. | ||
292 | */ | ||
293 | #define HDAR_HOST_ADDR_MASK 0xFFFFFFFF | ||
294 | #define HDAR_DSP_ADDR_MASK 0x0000FFFF | ||
295 | #define HDAR_MEMID_MASK 0x000F0000 | ||
296 | #define HDAR_MEMID_SP_DMEM0 0x00000000 | ||
297 | #define HDAR_MEMID_SP_DMEM1 0x00010000 | ||
298 | #define HDAR_MEMID_SP_PMEM 0x00020000 | ||
299 | #define HDAR_MEMID_SP_DEBUG 0x00030000 | ||
300 | #define HDAR_MEMID_OMNI_MEM 0x000E0000 | ||
301 | #define HDAR_END 0x40000000 | ||
302 | #define HDAR_ERR 0x80000000 | ||
303 | |||
304 | /* | ||
305 | * The following defines are for the flags in the host DMA control register. | ||
306 | */ | ||
307 | #define HDMR_AC_MASK 0x0000F000 | ||
308 | #define HDMR_AC_8_16 0x00001000 | ||
309 | #define HDMR_AC_M_S 0x00002000 | ||
310 | #define HDMR_AC_B_L 0x00004000 | ||
311 | #define HDMR_AC_S_U 0x00008000 | ||
312 | |||
313 | /* | ||
314 | * The following defines are for the flags in the host DMA control register. | ||
315 | */ | ||
316 | #define HDCR_COUNT_MASK 0x000003FF | ||
317 | #define HDCR_DONE 0x00004000 | ||
318 | #define HDCR_OPT 0x00008000 | ||
319 | #define HDCR_WBD 0x00400000 | ||
320 | #define HDCR_WBS 0x00800000 | ||
321 | #define HDCR_DMS_MASK 0x07000000 | ||
322 | #define HDCR_DMS_LINEAR 0x00000000 | ||
323 | #define HDCR_DMS_16_DWORDS 0x01000000 | ||
324 | #define HDCR_DMS_32_DWORDS 0x02000000 | ||
325 | #define HDCR_DMS_64_DWORDS 0x03000000 | ||
326 | #define HDCR_DMS_128_DWORDS 0x04000000 | ||
327 | #define HDCR_DMS_256_DWORDS 0x05000000 | ||
328 | #define HDCR_DMS_512_DWORDS 0x06000000 | ||
329 | #define HDCR_DMS_1024_DWORDS 0x07000000 | ||
330 | #define HDCR_DH 0x08000000 | ||
331 | #define HDCR_SMS_MASK 0x70000000 | ||
332 | #define HDCR_SMS_LINEAR 0x00000000 | ||
333 | #define HDCR_SMS_16_DWORDS 0x10000000 | ||
334 | #define HDCR_SMS_32_DWORDS 0x20000000 | ||
335 | #define HDCR_SMS_64_DWORDS 0x30000000 | ||
336 | #define HDCR_SMS_128_DWORDS 0x40000000 | ||
337 | #define HDCR_SMS_256_DWORDS 0x50000000 | ||
338 | #define HDCR_SMS_512_DWORDS 0x60000000 | ||
339 | #define HDCR_SMS_1024_DWORDS 0x70000000 | ||
340 | #define HDCR_SH 0x80000000 | ||
341 | #define HDCR_COUNT_SHIFT 0 | ||
342 | |||
343 | /* | ||
344 | * The following defines are for the flags in the performance monitor control | ||
345 | * register. | ||
346 | */ | ||
347 | #define PFMC_C1SS_MASK 0x0000001F | ||
348 | #define PFMC_C1EV 0x00000020 | ||
349 | #define PFMC_C1RS 0x00008000 | ||
350 | #define PFMC_C2SS_MASK 0x001F0000 | ||
351 | #define PFMC_C2EV 0x00200000 | ||
352 | #define PFMC_C2RS 0x80000000 | ||
353 | #define PFMC_C1SS_SHIFT 0 | ||
354 | #define PFMC_C2SS_SHIFT 16 | ||
355 | #define PFMC_BUS_GRANT 0 | ||
356 | #define PFMC_GRANT_AFTER_REQ 1 | ||
357 | #define PFMC_TRANSACTION 2 | ||
358 | #define PFMC_DWORD_TRANSFER 3 | ||
359 | #define PFMC_SLAVE_READ 4 | ||
360 | #define PFMC_SLAVE_WRITE 5 | ||
361 | #define PFMC_PREEMPTION 6 | ||
362 | #define PFMC_DISCONNECT_RETRY 7 | ||
363 | #define PFMC_INTERRUPT 8 | ||
364 | #define PFMC_BUS_OWNERSHIP 9 | ||
365 | #define PFMC_TRANSACTION_LAG 10 | ||
366 | #define PFMC_PCI_CLOCK 11 | ||
367 | #define PFMC_SERIAL_CLOCK 12 | ||
368 | #define PFMC_SP_CLOCK 13 | ||
369 | |||
370 | /* | ||
371 | * The following defines are for the flags in the performance counter value 1 | ||
372 | * register. | ||
373 | */ | ||
374 | #define PFCV1_PC1V_MASK 0xFFFFFFFF | ||
375 | #define PFCV1_PC1V_SHIFT 0 | ||
376 | |||
377 | /* | ||
378 | * The following defines are for the flags in the performance counter value 2 | ||
379 | * register. | ||
380 | */ | ||
381 | #define PFCV2_PC2V_MASK 0xFFFFFFFF | ||
382 | #define PFCV2_PC2V_SHIFT 0 | ||
383 | |||
384 | /* | ||
385 | * The following defines are for the flags in the clock control register 1. | ||
386 | */ | ||
387 | #define CLKCR1_OSCS 0x00000001 | ||
388 | #define CLKCR1_OSCP 0x00000002 | ||
389 | #define CLKCR1_PLLSS_MASK 0x0000000C | ||
390 | #define CLKCR1_PLLSS_SERIAL 0x00000000 | ||
391 | #define CLKCR1_PLLSS_CRYSTAL 0x00000004 | ||
392 | #define CLKCR1_PLLSS_PCI 0x00000008 | ||
393 | #define CLKCR1_PLLSS_RESERVED 0x0000000C | ||
394 | #define CLKCR1_PLLP 0x00000010 | ||
395 | #define CLKCR1_SWCE 0x00000020 | ||
396 | #define CLKCR1_PLLOS 0x00000040 | ||
397 | |||
398 | /* | ||
399 | * The following defines are for the flags in the clock control register 2. | ||
400 | */ | ||
401 | #define CLKCR2_PDIVS_MASK 0x0000000F | ||
402 | #define CLKCR2_PDIVS_1 0x00000001 | ||
403 | #define CLKCR2_PDIVS_2 0x00000002 | ||
404 | #define CLKCR2_PDIVS_4 0x00000004 | ||
405 | #define CLKCR2_PDIVS_7 0x00000007 | ||
406 | #define CLKCR2_PDIVS_8 0x00000008 | ||
407 | #define CLKCR2_PDIVS_16 0x00000000 | ||
408 | |||
409 | /* | ||
410 | * The following defines are for the flags in the PLL multiplier register. | ||
411 | */ | ||
412 | #define PLLM_MASK 0x000000FF | ||
413 | #define PLLM_SHIFT 0 | ||
414 | |||
415 | /* | ||
416 | * The following defines are for the flags in the PLL capacitor coefficient | ||
417 | * register. | ||
418 | */ | ||
419 | #define PLLCC_CDR_MASK 0x00000007 | ||
420 | #ifndef NO_CS4610 | ||
421 | #define PLLCC_CDR_240_350_MHZ 0x00000000 | ||
422 | #define PLLCC_CDR_184_265_MHZ 0x00000001 | ||
423 | #define PLLCC_CDR_144_205_MHZ 0x00000002 | ||
424 | #define PLLCC_CDR_111_160_MHZ 0x00000003 | ||
425 | #define PLLCC_CDR_87_123_MHZ 0x00000004 | ||
426 | #define PLLCC_CDR_67_96_MHZ 0x00000005 | ||
427 | #define PLLCC_CDR_52_74_MHZ 0x00000006 | ||
428 | #define PLLCC_CDR_45_58_MHZ 0x00000007 | ||
429 | #endif | ||
430 | #ifndef NO_CS4612 | ||
431 | #define PLLCC_CDR_271_398_MHZ 0x00000000 | ||
432 | #define PLLCC_CDR_227_330_MHZ 0x00000001 | ||
433 | #define PLLCC_CDR_167_239_MHZ 0x00000002 | ||
434 | #define PLLCC_CDR_150_215_MHZ 0x00000003 | ||
435 | #define PLLCC_CDR_107_154_MHZ 0x00000004 | ||
436 | #define PLLCC_CDR_98_140_MHZ 0x00000005 | ||
437 | #define PLLCC_CDR_73_104_MHZ 0x00000006 | ||
438 | #define PLLCC_CDR_63_90_MHZ 0x00000007 | ||
439 | #endif | ||
440 | #define PLLCC_LPF_MASK 0x000000F8 | ||
441 | #ifndef NO_CS4610 | ||
442 | #define PLLCC_LPF_23850_60000_KHZ 0x00000000 | ||
443 | #define PLLCC_LPF_7960_26290_KHZ 0x00000008 | ||
444 | #define PLLCC_LPF_4160_10980_KHZ 0x00000018 | ||
445 | #define PLLCC_LPF_1740_4580_KHZ 0x00000038 | ||
446 | #define PLLCC_LPF_724_1910_KHZ 0x00000078 | ||
447 | #define PLLCC_LPF_317_798_KHZ 0x000000F8 | ||
448 | #endif | ||
449 | #ifndef NO_CS4612 | ||
450 | #define PLLCC_LPF_25580_64530_KHZ 0x00000000 | ||
451 | #define PLLCC_LPF_14360_37270_KHZ 0x00000008 | ||
452 | #define PLLCC_LPF_6100_16020_KHZ 0x00000018 | ||
453 | #define PLLCC_LPF_2540_6690_KHZ 0x00000038 | ||
454 | #define PLLCC_LPF_1050_2780_KHZ 0x00000078 | ||
455 | #define PLLCC_LPF_450_1160_KHZ 0x000000F8 | ||
456 | #endif | ||
457 | |||
458 | /* | ||
459 | * The following defines are for the flags in the feature reporting register. | ||
460 | */ | ||
461 | #define FRR_FAB_MASK 0x00000003 | ||
462 | #define FRR_MASK_MASK 0x0000001C | ||
463 | #ifdef NO_CS4612 | ||
464 | #define FRR_CFOP_MASK 0x000000E0 | ||
465 | #else | ||
466 | #define FRR_CFOP_MASK 0x00000FE0 | ||
467 | #endif | ||
468 | #define FRR_CFOP_NOT_DVD 0x00000020 | ||
469 | #define FRR_CFOP_A3D 0x00000040 | ||
470 | #define FRR_CFOP_128_PIN 0x00000080 | ||
471 | #ifndef NO_CS4612 | ||
472 | #define FRR_CFOP_CS4280 0x00000800 | ||
473 | #endif | ||
474 | #define FRR_FAB_SHIFT 0 | ||
475 | #define FRR_MASK_SHIFT 2 | ||
476 | #define FRR_CFOP_SHIFT 5 | ||
477 | |||
478 | /* | ||
479 | * The following defines are for the flags in the configuration load 1 | ||
480 | * register. | ||
481 | */ | ||
482 | #define CFL1_CLOCK_SOURCE_MASK 0x00000003 | ||
483 | #define CFL1_CLOCK_SOURCE_CS423X 0x00000000 | ||
484 | #define CFL1_CLOCK_SOURCE_AC97 0x00000001 | ||
485 | #define CFL1_CLOCK_SOURCE_CRYSTAL 0x00000002 | ||
486 | #define CFL1_CLOCK_SOURCE_DUAL_AC97 0x00000003 | ||
487 | #define CFL1_VALID_DATA_MASK 0x000000FF | ||
488 | |||
489 | /* | ||
490 | * The following defines are for the flags in the configuration load 2 | ||
491 | * register. | ||
492 | */ | ||
493 | #define CFL2_VALID_DATA_MASK 0x000000FF | ||
494 | |||
495 | /* | ||
496 | * The following defines are for the flags in the serial port master control | ||
497 | * register 1. | ||
498 | */ | ||
499 | #define SERMC1_MSPE 0x00000001 | ||
500 | #define SERMC1_PTC_MASK 0x0000000E | ||
501 | #define SERMC1_PTC_CS423X 0x00000000 | ||
502 | #define SERMC1_PTC_AC97 0x00000002 | ||
503 | #define SERMC1_PTC_DAC 0x00000004 | ||
504 | #define SERMC1_PLB 0x00000010 | ||
505 | #define SERMC1_XLB 0x00000020 | ||
506 | |||
507 | /* | ||
508 | * The following defines are for the flags in the serial port master control | ||
509 | * register 2. | ||
510 | */ | ||
511 | #define SERMC2_LROE 0x00000001 | ||
512 | #define SERMC2_MCOE 0x00000002 | ||
513 | #define SERMC2_MCDIV 0x00000004 | ||
514 | |||
515 | /* | ||
516 | * The following defines are for the flags in the serial port 1 configuration | ||
517 | * register. | ||
518 | */ | ||
519 | #define SERC1_SO1EN 0x00000001 | ||
520 | #define SERC1_SO1F_MASK 0x0000000E | ||
521 | #define SERC1_SO1F_CS423X 0x00000000 | ||
522 | #define SERC1_SO1F_AC97 0x00000002 | ||
523 | #define SERC1_SO1F_DAC 0x00000004 | ||
524 | #define SERC1_SO1F_SPDIF 0x00000006 | ||
525 | |||
526 | /* | ||
527 | * The following defines are for the flags in the serial port 2 configuration | ||
528 | * register. | ||
529 | */ | ||
530 | #define SERC2_SI1EN 0x00000001 | ||
531 | #define SERC2_SI1F_MASK 0x0000000E | ||
532 | #define SERC2_SI1F_CS423X 0x00000000 | ||
533 | #define SERC2_SI1F_AC97 0x00000002 | ||
534 | #define SERC2_SI1F_ADC 0x00000004 | ||
535 | #define SERC2_SI1F_SPDIF 0x00000006 | ||
536 | |||
537 | /* | ||
538 | * The following defines are for the flags in the serial port 3 configuration | ||
539 | * register. | ||
540 | */ | ||
541 | #define SERC3_SO2EN 0x00000001 | ||
542 | #define SERC3_SO2F_MASK 0x00000006 | ||
543 | #define SERC3_SO2F_DAC 0x00000000 | ||
544 | #define SERC3_SO2F_SPDIF 0x00000002 | ||
545 | |||
546 | /* | ||
547 | * The following defines are for the flags in the serial port 4 configuration | ||
548 | * register. | ||
549 | */ | ||
550 | #define SERC4_SO3EN 0x00000001 | ||
551 | #define SERC4_SO3F_MASK 0x00000006 | ||
552 | #define SERC4_SO3F_DAC 0x00000000 | ||
553 | #define SERC4_SO3F_SPDIF 0x00000002 | ||
554 | |||
555 | /* | ||
556 | * The following defines are for the flags in the serial port 5 configuration | ||
557 | * register. | ||
558 | */ | ||
559 | #define SERC5_SI2EN 0x00000001 | ||
560 | #define SERC5_SI2F_MASK 0x00000006 | ||
561 | #define SERC5_SI2F_ADC 0x00000000 | ||
562 | #define SERC5_SI2F_SPDIF 0x00000002 | ||
563 | |||
564 | /* | ||
565 | * The following defines are for the flags in the serial port backdoor sample | ||
566 | * pointer register. | ||
567 | */ | ||
568 | #define SERBSP_FSP_MASK 0x0000000F | ||
569 | #define SERBSP_FSP_SHIFT 0 | ||
570 | |||
571 | /* | ||
572 | * The following defines are for the flags in the serial port backdoor status | ||
573 | * register. | ||
574 | */ | ||
575 | #define SERBST_RRDY 0x00000001 | ||
576 | #define SERBST_WBSY 0x00000002 | ||
577 | |||
578 | /* | ||
579 | * The following defines are for the flags in the serial port backdoor command | ||
580 | * register. | ||
581 | */ | ||
582 | #define SERBCM_RDC 0x00000001 | ||
583 | #define SERBCM_WRC 0x00000002 | ||
584 | |||
585 | /* | ||
586 | * The following defines are for the flags in the serial port backdoor address | ||
587 | * register. | ||
588 | */ | ||
589 | #ifdef NO_CS4612 | ||
590 | #define SERBAD_FAD_MASK 0x000000FF | ||
591 | #else | ||
592 | #define SERBAD_FAD_MASK 0x000001FF | ||
593 | #endif | ||
594 | #define SERBAD_FAD_SHIFT 0 | ||
595 | |||
596 | /* | ||
597 | * The following defines are for the flags in the serial port backdoor | ||
598 | * configuration register. | ||
599 | */ | ||
600 | #define SERBCF_HBP 0x00000001 | ||
601 | |||
602 | /* | ||
603 | * The following defines are for the flags in the serial port backdoor write | ||
604 | * port register. | ||
605 | */ | ||
606 | #define SERBWP_FWD_MASK 0x000FFFFF | ||
607 | #define SERBWP_FWD_SHIFT 0 | ||
608 | |||
609 | /* | ||
610 | * The following defines are for the flags in the serial port backdoor read | ||
611 | * port register. | ||
612 | */ | ||
613 | #define SERBRP_FRD_MASK 0x000FFFFF | ||
614 | #define SERBRP_FRD_SHIFT 0 | ||
615 | |||
616 | /* | ||
617 | * The following defines are for the flags in the async FIFO address register. | ||
618 | */ | ||
619 | #ifndef NO_CS4612 | ||
620 | #define ASER_FADDR_A1_MASK 0x000001FF | ||
621 | #define ASER_FADDR_EN1 0x00008000 | ||
622 | #define ASER_FADDR_A2_MASK 0x01FF0000 | ||
623 | #define ASER_FADDR_EN2 0x80000000 | ||
624 | #define ASER_FADDR_A1_SHIFT 0 | ||
625 | #define ASER_FADDR_A2_SHIFT 16 | ||
626 | #endif | ||
627 | |||
628 | /* | ||
629 | * The following defines are for the flags in the AC97 control register. | ||
630 | */ | ||
631 | #define ACCTL_RSTN 0x00000001 | ||
632 | #define ACCTL_ESYN 0x00000002 | ||
633 | #define ACCTL_VFRM 0x00000004 | ||
634 | #define ACCTL_DCV 0x00000008 | ||
635 | #define ACCTL_CRW 0x00000010 | ||
636 | #define ACCTL_ASYN 0x00000020 | ||
637 | #ifndef NO_CS4612 | ||
638 | #define ACCTL_TC 0x00000040 | ||
639 | #endif | ||
640 | |||
641 | /* | ||
642 | * The following defines are for the flags in the AC97 status register. | ||
643 | */ | ||
644 | #define ACSTS_CRDY 0x00000001 | ||
645 | #define ACSTS_VSTS 0x00000002 | ||
646 | #ifndef NO_CS4612 | ||
647 | #define ACSTS_WKUP 0x00000004 | ||
648 | #endif | ||
649 | |||
650 | /* | ||
651 | * The following defines are for the flags in the AC97 output slot valid | ||
652 | * register. | ||
653 | */ | ||
654 | #define ACOSV_SLV3 0x00000001 | ||
655 | #define ACOSV_SLV4 0x00000002 | ||
656 | #define ACOSV_SLV5 0x00000004 | ||
657 | #define ACOSV_SLV6 0x00000008 | ||
658 | #define ACOSV_SLV7 0x00000010 | ||
659 | #define ACOSV_SLV8 0x00000020 | ||
660 | #define ACOSV_SLV9 0x00000040 | ||
661 | #define ACOSV_SLV10 0x00000080 | ||
662 | #define ACOSV_SLV11 0x00000100 | ||
663 | #define ACOSV_SLV12 0x00000200 | ||
664 | |||
665 | /* | ||
666 | * The following defines are for the flags in the AC97 command address | ||
667 | * register. | ||
668 | */ | ||
669 | #define ACCAD_CI_MASK 0x0000007F | ||
670 | #define ACCAD_CI_SHIFT 0 | ||
671 | |||
672 | /* | ||
673 | * The following defines are for the flags in the AC97 command data register. | ||
674 | */ | ||
675 | #define ACCDA_CD_MASK 0x0000FFFF | ||
676 | #define ACCDA_CD_SHIFT 0 | ||
677 | |||
678 | /* | ||
679 | * The following defines are for the flags in the AC97 input slot valid | ||
680 | * register. | ||
681 | */ | ||
682 | #define ACISV_ISV3 0x00000001 | ||
683 | #define ACISV_ISV4 0x00000002 | ||
684 | #define ACISV_ISV5 0x00000004 | ||
685 | #define ACISV_ISV6 0x00000008 | ||
686 | #define ACISV_ISV7 0x00000010 | ||
687 | #define ACISV_ISV8 0x00000020 | ||
688 | #define ACISV_ISV9 0x00000040 | ||
689 | #define ACISV_ISV10 0x00000080 | ||
690 | #define ACISV_ISV11 0x00000100 | ||
691 | #define ACISV_ISV12 0x00000200 | ||
692 | |||
693 | /* | ||
694 | * The following defines are for the flags in the AC97 status address | ||
695 | * register. | ||
696 | */ | ||
697 | #define ACSAD_SI_MASK 0x0000007F | ||
698 | #define ACSAD_SI_SHIFT 0 | ||
699 | |||
700 | /* | ||
701 | * The following defines are for the flags in the AC97 status data register. | ||
702 | */ | ||
703 | #define ACSDA_SD_MASK 0x0000FFFF | ||
704 | #define ACSDA_SD_SHIFT 0 | ||
705 | |||
706 | /* | ||
707 | * The following defines are for the flags in the joystick poll/trigger | ||
708 | * register. | ||
709 | */ | ||
710 | #define JSPT_CAX 0x00000001 | ||
711 | #define JSPT_CAY 0x00000002 | ||
712 | #define JSPT_CBX 0x00000004 | ||
713 | #define JSPT_CBY 0x00000008 | ||
714 | #define JSPT_BA1 0x00000010 | ||
715 | #define JSPT_BA2 0x00000020 | ||
716 | #define JSPT_BB1 0x00000040 | ||
717 | #define JSPT_BB2 0x00000080 | ||
718 | |||
719 | /* | ||
720 | * The following defines are for the flags in the joystick control register. | ||
721 | */ | ||
722 | #define JSCTL_SP_MASK 0x00000003 | ||
723 | #define JSCTL_SP_SLOW 0x00000000 | ||
724 | #define JSCTL_SP_MEDIUM_SLOW 0x00000001 | ||
725 | #define JSCTL_SP_MEDIUM_FAST 0x00000002 | ||
726 | #define JSCTL_SP_FAST 0x00000003 | ||
727 | #define JSCTL_ARE 0x00000004 | ||
728 | |||
729 | /* | ||
730 | * The following defines are for the flags in the joystick coordinate pair 1 | ||
731 | * readback register. | ||
732 | */ | ||
733 | #define JSC1_Y1V_MASK 0x0000FFFF | ||
734 | #define JSC1_X1V_MASK 0xFFFF0000 | ||
735 | #define JSC1_Y1V_SHIFT 0 | ||
736 | #define JSC1_X1V_SHIFT 16 | ||
737 | |||
738 | /* | ||
739 | * The following defines are for the flags in the joystick coordinate pair 2 | ||
740 | * readback register. | ||
741 | */ | ||
742 | #define JSC2_Y2V_MASK 0x0000FFFF | ||
743 | #define JSC2_X2V_MASK 0xFFFF0000 | ||
744 | #define JSC2_Y2V_SHIFT 0 | ||
745 | #define JSC2_X2V_SHIFT 16 | ||
746 | |||
747 | /* | ||
748 | * The following defines are for the flags in the MIDI control register. | ||
749 | */ | ||
750 | #define MIDCR_TXE 0x00000001 /* Enable transmitting. */ | ||
751 | #define MIDCR_RXE 0x00000002 /* Enable receiving. */ | ||
752 | #define MIDCR_RIE 0x00000004 /* Interrupt upon tx ready. */ | ||
753 | #define MIDCR_TIE 0x00000008 /* Interrupt upon rx ready. */ | ||
754 | #define MIDCR_MLB 0x00000010 /* Enable midi loopback. */ | ||
755 | #define MIDCR_MRST 0x00000020 /* Reset interface. */ | ||
756 | |||
757 | /* | ||
758 | * The following defines are for the flags in the MIDI status register. | ||
759 | */ | ||
760 | #define MIDSR_TBF 0x00000001 /* Tx FIFO is full. */ | ||
761 | #define MIDSR_RBE 0x00000002 /* Rx FIFO is empty. */ | ||
762 | |||
763 | /* | ||
764 | * The following defines are for the flags in the MIDI write port register. | ||
765 | */ | ||
766 | #define MIDWP_MWD_MASK 0x000000FF | ||
767 | #define MIDWP_MWD_SHIFT 0 | ||
768 | |||
769 | /* | ||
770 | * The following defines are for the flags in the MIDI read port register. | ||
771 | */ | ||
772 | #define MIDRP_MRD_MASK 0x000000FF | ||
773 | #define MIDRP_MRD_SHIFT 0 | ||
774 | |||
775 | /* | ||
776 | * The following defines are for the flags in the joystick GPIO register. | ||
777 | */ | ||
778 | #define JSIO_DAX 0x00000001 | ||
779 | #define JSIO_DAY 0x00000002 | ||
780 | #define JSIO_DBX 0x00000004 | ||
781 | #define JSIO_DBY 0x00000008 | ||
782 | #define JSIO_AXOE 0x00000010 | ||
783 | #define JSIO_AYOE 0x00000020 | ||
784 | #define JSIO_BXOE 0x00000040 | ||
785 | #define JSIO_BYOE 0x00000080 | ||
786 | |||
787 | /* | ||
788 | * The following defines are for the flags in the master async/sync serial | ||
789 | * port enable register. | ||
790 | */ | ||
791 | #ifndef NO_CS4612 | ||
792 | #define ASER_MASTER_ME 0x00000001 | ||
793 | #endif | ||
794 | |||
795 | /* | ||
796 | * The following defines are for the flags in the configuration interface | ||
797 | * register. | ||
798 | */ | ||
799 | #define CFGI_CLK 0x00000001 | ||
800 | #define CFGI_DOUT 0x00000002 | ||
801 | #define CFGI_DIN_EEN 0x00000004 | ||
802 | #define CFGI_EELD 0x00000008 | ||
803 | |||
804 | /* | ||
805 | * The following defines are for the flags in the subsystem ID and vendor ID | ||
806 | * register. | ||
807 | */ | ||
808 | #define SSVID_VID_MASK 0x0000FFFF | ||
809 | #define SSVID_SID_MASK 0xFFFF0000 | ||
810 | #define SSVID_VID_SHIFT 0 | ||
811 | #define SSVID_SID_SHIFT 16 | ||
812 | |||
813 | /* | ||
814 | * The following defines are for the flags in the GPIO pin interface register. | ||
815 | */ | ||
816 | #define GPIOR_VOLDN 0x00000001 | ||
817 | #define GPIOR_VOLUP 0x00000002 | ||
818 | #define GPIOR_SI2D 0x00000004 | ||
819 | #define GPIOR_SI2OE 0x00000008 | ||
820 | |||
821 | /* | ||
822 | * The following defines are for the flags in the extended GPIO pin direction | ||
823 | * register. | ||
824 | */ | ||
825 | #ifndef NO_CS4612 | ||
826 | #define EGPIODR_GPOE0 0x00000001 | ||
827 | #define EGPIODR_GPOE1 0x00000002 | ||
828 | #define EGPIODR_GPOE2 0x00000004 | ||
829 | #define EGPIODR_GPOE3 0x00000008 | ||
830 | #define EGPIODR_GPOE4 0x00000010 | ||
831 | #define EGPIODR_GPOE5 0x00000020 | ||
832 | #define EGPIODR_GPOE6 0x00000040 | ||
833 | #define EGPIODR_GPOE7 0x00000080 | ||
834 | #define EGPIODR_GPOE8 0x00000100 | ||
835 | #endif | ||
836 | |||
837 | /* | ||
838 | * The following defines are for the flags in the extended GPIO pin polarity/ | ||
839 | * type register. | ||
840 | */ | ||
841 | #ifndef NO_CS4612 | ||
842 | #define EGPIOPTR_GPPT0 0x00000001 | ||
843 | #define EGPIOPTR_GPPT1 0x00000002 | ||
844 | #define EGPIOPTR_GPPT2 0x00000004 | ||
845 | #define EGPIOPTR_GPPT3 0x00000008 | ||
846 | #define EGPIOPTR_GPPT4 0x00000010 | ||
847 | #define EGPIOPTR_GPPT5 0x00000020 | ||
848 | #define EGPIOPTR_GPPT6 0x00000040 | ||
849 | #define EGPIOPTR_GPPT7 0x00000080 | ||
850 | #define EGPIOPTR_GPPT8 0x00000100 | ||
851 | #endif | ||
852 | |||
853 | /* | ||
854 | * The following defines are for the flags in the extended GPIO pin sticky | ||
855 | * register. | ||
856 | */ | ||
857 | #ifndef NO_CS4612 | ||
858 | #define EGPIOTR_GPS0 0x00000001 | ||
859 | #define EGPIOTR_GPS1 0x00000002 | ||
860 | #define EGPIOTR_GPS2 0x00000004 | ||
861 | #define EGPIOTR_GPS3 0x00000008 | ||
862 | #define EGPIOTR_GPS4 0x00000010 | ||
863 | #define EGPIOTR_GPS5 0x00000020 | ||
864 | #define EGPIOTR_GPS6 0x00000040 | ||
865 | #define EGPIOTR_GPS7 0x00000080 | ||
866 | #define EGPIOTR_GPS8 0x00000100 | ||
867 | #endif | ||
868 | |||
869 | /* | ||
870 | * The following defines are for the flags in the extended GPIO ping wakeup | ||
871 | * register. | ||
872 | */ | ||
873 | #ifndef NO_CS4612 | ||
874 | #define EGPIOWR_GPW0 0x00000001 | ||
875 | #define EGPIOWR_GPW1 0x00000002 | ||
876 | #define EGPIOWR_GPW2 0x00000004 | ||
877 | #define EGPIOWR_GPW3 0x00000008 | ||
878 | #define EGPIOWR_GPW4 0x00000010 | ||
879 | #define EGPIOWR_GPW5 0x00000020 | ||
880 | #define EGPIOWR_GPW6 0x00000040 | ||
881 | #define EGPIOWR_GPW7 0x00000080 | ||
882 | #define EGPIOWR_GPW8 0x00000100 | ||
883 | #endif | ||
884 | |||
885 | /* | ||
886 | * The following defines are for the flags in the extended GPIO pin status | ||
887 | * register. | ||
888 | */ | ||
889 | #ifndef NO_CS4612 | ||
890 | #define EGPIOSR_GPS0 0x00000001 | ||
891 | #define EGPIOSR_GPS1 0x00000002 | ||
892 | #define EGPIOSR_GPS2 0x00000004 | ||
893 | #define EGPIOSR_GPS3 0x00000008 | ||
894 | #define EGPIOSR_GPS4 0x00000010 | ||
895 | #define EGPIOSR_GPS5 0x00000020 | ||
896 | #define EGPIOSR_GPS6 0x00000040 | ||
897 | #define EGPIOSR_GPS7 0x00000080 | ||
898 | #define EGPIOSR_GPS8 0x00000100 | ||
899 | #endif | ||
900 | |||
901 | /* | ||
902 | * The following defines are for the flags in the serial port 6 configuration | ||
903 | * register. | ||
904 | */ | ||
905 | #ifndef NO_CS4612 | ||
906 | #define SERC6_ASDO2EN 0x00000001 | ||
907 | #endif | ||
908 | |||
909 | /* | ||
910 | * The following defines are for the flags in the serial port 7 configuration | ||
911 | * register. | ||
912 | */ | ||
913 | #ifndef NO_CS4612 | ||
914 | #define SERC7_ASDI2EN 0x00000001 | ||
915 | #define SERC7_POSILB 0x00000002 | ||
916 | #define SERC7_SIPOLB 0x00000004 | ||
917 | #define SERC7_SOSILB 0x00000008 | ||
918 | #define SERC7_SISOLB 0x00000010 | ||
919 | #endif | ||
920 | |||
921 | /* | ||
922 | * The following defines are for the flags in the serial port AC link | ||
923 | * configuration register. | ||
924 | */ | ||
925 | #ifndef NO_CS4612 | ||
926 | #define SERACC_CHIP_TYPE_MASK 0x00000001 | ||
927 | #define SERACC_CHIP_TYPE_1_03 0x00000000 | ||
928 | #define SERACC_CHIP_TYPE_2_0 0x00000001 | ||
929 | #define SERACC_TWO_CODECS 0x00000002 | ||
930 | #define SERACC_MDM 0x00000004 | ||
931 | #define SERACC_HSP 0x00000008 | ||
932 | #define SERACC_ODT 0x00000010 /* only CS4630 */ | ||
933 | #endif | ||
934 | |||
935 | /* | ||
936 | * The following defines are for the flags in the AC97 control register 2. | ||
937 | */ | ||
938 | #ifndef NO_CS4612 | ||
939 | #define ACCTL2_RSTN 0x00000001 | ||
940 | #define ACCTL2_ESYN 0x00000002 | ||
941 | #define ACCTL2_VFRM 0x00000004 | ||
942 | #define ACCTL2_DCV 0x00000008 | ||
943 | #define ACCTL2_CRW 0x00000010 | ||
944 | #define ACCTL2_ASYN 0x00000020 | ||
945 | #endif | ||
946 | |||
947 | /* | ||
948 | * The following defines are for the flags in the AC97 status register 2. | ||
949 | */ | ||
950 | #ifndef NO_CS4612 | ||
951 | #define ACSTS2_CRDY 0x00000001 | ||
952 | #define ACSTS2_VSTS 0x00000002 | ||
953 | #endif | ||
954 | |||
955 | /* | ||
956 | * The following defines are for the flags in the AC97 output slot valid | ||
957 | * register 2. | ||
958 | */ | ||
959 | #ifndef NO_CS4612 | ||
960 | #define ACOSV2_SLV3 0x00000001 | ||
961 | #define ACOSV2_SLV4 0x00000002 | ||
962 | #define ACOSV2_SLV5 0x00000004 | ||
963 | #define ACOSV2_SLV6 0x00000008 | ||
964 | #define ACOSV2_SLV7 0x00000010 | ||
965 | #define ACOSV2_SLV8 0x00000020 | ||
966 | #define ACOSV2_SLV9 0x00000040 | ||
967 | #define ACOSV2_SLV10 0x00000080 | ||
968 | #define ACOSV2_SLV11 0x00000100 | ||
969 | #define ACOSV2_SLV12 0x00000200 | ||
970 | #endif | ||
971 | |||
972 | /* | ||
973 | * The following defines are for the flags in the AC97 command address | ||
974 | * register 2. | ||
975 | */ | ||
976 | #ifndef NO_CS4612 | ||
977 | #define ACCAD2_CI_MASK 0x0000007F | ||
978 | #define ACCAD2_CI_SHIFT 0 | ||
979 | #endif | ||
980 | |||
981 | /* | ||
982 | * The following defines are for the flags in the AC97 command data register | ||
983 | * 2. | ||
984 | */ | ||
985 | #ifndef NO_CS4612 | ||
986 | #define ACCDA2_CD_MASK 0x0000FFFF | ||
987 | #define ACCDA2_CD_SHIFT 0 | ||
988 | #endif | ||
989 | |||
990 | /* | ||
991 | * The following defines are for the flags in the AC97 input slot valid | ||
992 | * register 2. | ||
993 | */ | ||
994 | #ifndef NO_CS4612 | ||
995 | #define ACISV2_ISV3 0x00000001 | ||
996 | #define ACISV2_ISV4 0x00000002 | ||
997 | #define ACISV2_ISV5 0x00000004 | ||
998 | #define ACISV2_ISV6 0x00000008 | ||
999 | #define ACISV2_ISV7 0x00000010 | ||
1000 | #define ACISV2_ISV8 0x00000020 | ||
1001 | #define ACISV2_ISV9 0x00000040 | ||
1002 | #define ACISV2_ISV10 0x00000080 | ||
1003 | #define ACISV2_ISV11 0x00000100 | ||
1004 | #define ACISV2_ISV12 0x00000200 | ||
1005 | #endif | ||
1006 | |||
1007 | /* | ||
1008 | * The following defines are for the flags in the AC97 status address | ||
1009 | * register 2. | ||
1010 | */ | ||
1011 | #ifndef NO_CS4612 | ||
1012 | #define ACSAD2_SI_MASK 0x0000007F | ||
1013 | #define ACSAD2_SI_SHIFT 0 | ||
1014 | #endif | ||
1015 | |||
1016 | /* | ||
1017 | * The following defines are for the flags in the AC97 status data register 2. | ||
1018 | */ | ||
1019 | #ifndef NO_CS4612 | ||
1020 | #define ACSDA2_SD_MASK 0x0000FFFF | ||
1021 | #define ACSDA2_SD_SHIFT 0 | ||
1022 | #endif | ||
1023 | |||
1024 | /* | ||
1025 | * The following defines are for the flags in the I/O trap address and control | ||
1026 | * registers (all 12). | ||
1027 | */ | ||
1028 | #ifndef NO_CS4612 | ||
1029 | #define IOTAC_SA_MASK 0x0000FFFF | ||
1030 | #define IOTAC_MSK_MASK 0x000F0000 | ||
1031 | #define IOTAC_IODC_MASK 0x06000000 | ||
1032 | #define IOTAC_IODC_16_BIT 0x00000000 | ||
1033 | #define IOTAC_IODC_10_BIT 0x02000000 | ||
1034 | #define IOTAC_IODC_12_BIT 0x04000000 | ||
1035 | #define IOTAC_WSPI 0x08000000 | ||
1036 | #define IOTAC_RSPI 0x10000000 | ||
1037 | #define IOTAC_WSE 0x20000000 | ||
1038 | #define IOTAC_WE 0x40000000 | ||
1039 | #define IOTAC_RE 0x80000000 | ||
1040 | #define IOTAC_SA_SHIFT 0 | ||
1041 | #define IOTAC_MSK_SHIFT 16 | ||
1042 | #endif | ||
1043 | |||
1044 | /* | ||
1045 | * The following defines are for the flags in the I/O trap fast read registers | ||
1046 | * (all 8). | ||
1047 | */ | ||
1048 | #ifndef NO_CS4612 | ||
1049 | #define IOTFR_D_MASK 0x0000FFFF | ||
1050 | #define IOTFR_A_MASK 0x000F0000 | ||
1051 | #define IOTFR_R_MASK 0x0F000000 | ||
1052 | #define IOTFR_ALL 0x40000000 | ||
1053 | #define IOTFR_VL 0x80000000 | ||
1054 | #define IOTFR_D_SHIFT 0 | ||
1055 | #define IOTFR_A_SHIFT 16 | ||
1056 | #define IOTFR_R_SHIFT 24 | ||
1057 | #endif | ||
1058 | |||
1059 | /* | ||
1060 | * The following defines are for the flags in the I/O trap FIFO register. | ||
1061 | */ | ||
1062 | #ifndef NO_CS4612 | ||
1063 | #define IOTFIFO_BA_MASK 0x00003FFF | ||
1064 | #define IOTFIFO_S_MASK 0x00FF0000 | ||
1065 | #define IOTFIFO_OF 0x40000000 | ||
1066 | #define IOTFIFO_SPIOF 0x80000000 | ||
1067 | #define IOTFIFO_BA_SHIFT 0 | ||
1068 | #define IOTFIFO_S_SHIFT 16 | ||
1069 | #endif | ||
1070 | |||
1071 | /* | ||
1072 | * The following defines are for the flags in the I/O trap retry read data | ||
1073 | * register. | ||
1074 | */ | ||
1075 | #ifndef NO_CS4612 | ||
1076 | #define IOTRRD_D_MASK 0x0000FFFF | ||
1077 | #define IOTRRD_RDV 0x80000000 | ||
1078 | #define IOTRRD_D_SHIFT 0 | ||
1079 | #endif | ||
1080 | |||
1081 | /* | ||
1082 | * The following defines are for the flags in the I/O trap FIFO pointer | ||
1083 | * register. | ||
1084 | */ | ||
1085 | #ifndef NO_CS4612 | ||
1086 | #define IOTFP_CA_MASK 0x00003FFF | ||
1087 | #define IOTFP_PA_MASK 0x3FFF0000 | ||
1088 | #define IOTFP_CA_SHIFT 0 | ||
1089 | #define IOTFP_PA_SHIFT 16 | ||
1090 | #endif | ||
1091 | |||
1092 | /* | ||
1093 | * The following defines are for the flags in the I/O trap control register. | ||
1094 | */ | ||
1095 | #ifndef NO_CS4612 | ||
1096 | #define IOTCR_ITD 0x00000001 | ||
1097 | #define IOTCR_HRV 0x00000002 | ||
1098 | #define IOTCR_SRV 0x00000004 | ||
1099 | #define IOTCR_DTI 0x00000008 | ||
1100 | #define IOTCR_DFI 0x00000010 | ||
1101 | #define IOTCR_DDP 0x00000020 | ||
1102 | #define IOTCR_JTE 0x00000040 | ||
1103 | #define IOTCR_PPE 0x00000080 | ||
1104 | #endif | ||
1105 | |||
1106 | /* | ||
1107 | * The following defines are for the flags in the direct PCI data register. | ||
1108 | */ | ||
1109 | #ifndef NO_CS4612 | ||
1110 | #define DPCID_D_MASK 0xFFFFFFFF | ||
1111 | #define DPCID_D_SHIFT 0 | ||
1112 | #endif | ||
1113 | |||
1114 | /* | ||
1115 | * The following defines are for the flags in the direct PCI address register. | ||
1116 | */ | ||
1117 | #ifndef NO_CS4612 | ||
1118 | #define DPCIA_A_MASK 0xFFFFFFFF | ||
1119 | #define DPCIA_A_SHIFT 0 | ||
1120 | #endif | ||
1121 | |||
1122 | /* | ||
1123 | * The following defines are for the flags in the direct PCI command register. | ||
1124 | */ | ||
1125 | #ifndef NO_CS4612 | ||
1126 | #define DPCIC_C_MASK 0x0000000F | ||
1127 | #define DPCIC_C_IOREAD 0x00000002 | ||
1128 | #define DPCIC_C_IOWRITE 0x00000003 | ||
1129 | #define DPCIC_BE_MASK 0x000000F0 | ||
1130 | #endif | ||
1131 | |||
1132 | /* | ||
1133 | * The following defines are for the flags in the PC/PCI request register. | ||
1134 | */ | ||
1135 | #ifndef NO_CS4612 | ||
1136 | #define PCPCIR_RDC_MASK 0x00000007 | ||
1137 | #define PCPCIR_C_MASK 0x00007000 | ||
1138 | #define PCPCIR_REQ 0x00008000 | ||
1139 | #define PCPCIR_RDC_SHIFT 0 | ||
1140 | #define PCPCIR_C_SHIFT 12 | ||
1141 | #endif | ||
1142 | |||
1143 | /* | ||
1144 | * The following defines are for the flags in the PC/PCI grant register. | ||
1145 | */ | ||
1146 | #ifndef NO_CS4612 | ||
1147 | #define PCPCIG_GDC_MASK 0x00000007 | ||
1148 | #define PCPCIG_VL 0x00008000 | ||
1149 | #define PCPCIG_GDC_SHIFT 0 | ||
1150 | #endif | ||
1151 | |||
1152 | /* | ||
1153 | * The following defines are for the flags in the PC/PCI master enable | ||
1154 | * register. | ||
1155 | */ | ||
1156 | #ifndef NO_CS4612 | ||
1157 | #define PCPCIEN_EN 0x00000001 | ||
1158 | #endif | ||
1159 | |||
1160 | /* | ||
1161 | * The following defines are for the flags in the extended PCI power | ||
1162 | * management control register. | ||
1163 | */ | ||
1164 | #ifndef NO_CS4612 | ||
1165 | #define EPCIPMC_GWU 0x00000001 | ||
1166 | #define EPCIPMC_FSPC 0x00000002 | ||
1167 | #endif | ||
1168 | |||
1169 | /* | ||
1170 | * The following defines are for the flags in the SP control register. | ||
1171 | */ | ||
1172 | #define SPCR_RUN 0x00000001 | ||
1173 | #define SPCR_STPFR 0x00000002 | ||
1174 | #define SPCR_RUNFR 0x00000004 | ||
1175 | #define SPCR_TICK 0x00000008 | ||
1176 | #define SPCR_DRQEN 0x00000020 | ||
1177 | #define SPCR_RSTSP 0x00000040 | ||
1178 | #define SPCR_OREN 0x00000080 | ||
1179 | #ifndef NO_CS4612 | ||
1180 | #define SPCR_PCIINT 0x00000100 | ||
1181 | #define SPCR_OINTD 0x00000200 | ||
1182 | #define SPCR_CRE 0x00008000 | ||
1183 | #endif | ||
1184 | |||
1185 | /* | ||
1186 | * The following defines are for the flags in the debug index register. | ||
1187 | */ | ||
1188 | #define DREG_REGID_MASK 0x0000007F | ||
1189 | #define DREG_DEBUG 0x00000080 | ||
1190 | #define DREG_RGBK_MASK 0x00000700 | ||
1191 | #define DREG_TRAP 0x00000800 | ||
1192 | #if !defined(NO_CS4612) | ||
1193 | #if !defined(NO_CS4615) | ||
1194 | #define DREG_TRAPX 0x00001000 | ||
1195 | #endif | ||
1196 | #endif | ||
1197 | #define DREG_REGID_SHIFT 0 | ||
1198 | #define DREG_RGBK_SHIFT 8 | ||
1199 | #define DREG_RGBK_REGID_MASK 0x0000077F | ||
1200 | #define DREG_REGID_R0 0x00000010 | ||
1201 | #define DREG_REGID_R1 0x00000011 | ||
1202 | #define DREG_REGID_R2 0x00000012 | ||
1203 | #define DREG_REGID_R3 0x00000013 | ||
1204 | #define DREG_REGID_R4 0x00000014 | ||
1205 | #define DREG_REGID_R5 0x00000015 | ||
1206 | #define DREG_REGID_R6 0x00000016 | ||
1207 | #define DREG_REGID_R7 0x00000017 | ||
1208 | #define DREG_REGID_R8 0x00000018 | ||
1209 | #define DREG_REGID_R9 0x00000019 | ||
1210 | #define DREG_REGID_RA 0x0000001A | ||
1211 | #define DREG_REGID_RB 0x0000001B | ||
1212 | #define DREG_REGID_RC 0x0000001C | ||
1213 | #define DREG_REGID_RD 0x0000001D | ||
1214 | #define DREG_REGID_RE 0x0000001E | ||
1215 | #define DREG_REGID_RF 0x0000001F | ||
1216 | #define DREG_REGID_RA_BUS_LOW 0x00000020 | ||
1217 | #define DREG_REGID_RA_BUS_HIGH 0x00000038 | ||
1218 | #define DREG_REGID_YBUS_LOW 0x00000050 | ||
1219 | #define DREG_REGID_YBUS_HIGH 0x00000058 | ||
1220 | #define DREG_REGID_TRAP_0 0x00000100 | ||
1221 | #define DREG_REGID_TRAP_1 0x00000101 | ||
1222 | #define DREG_REGID_TRAP_2 0x00000102 | ||
1223 | #define DREG_REGID_TRAP_3 0x00000103 | ||
1224 | #define DREG_REGID_TRAP_4 0x00000104 | ||
1225 | #define DREG_REGID_TRAP_5 0x00000105 | ||
1226 | #define DREG_REGID_TRAP_6 0x00000106 | ||
1227 | #define DREG_REGID_TRAP_7 0x00000107 | ||
1228 | #define DREG_REGID_INDIRECT_ADDRESS 0x0000010E | ||
1229 | #define DREG_REGID_TOP_OF_STACK 0x0000010F | ||
1230 | #if !defined(NO_CS4612) | ||
1231 | #if !defined(NO_CS4615) | ||
1232 | #define DREG_REGID_TRAP_8 0x00000110 | ||
1233 | #define DREG_REGID_TRAP_9 0x00000111 | ||
1234 | #define DREG_REGID_TRAP_10 0x00000112 | ||
1235 | #define DREG_REGID_TRAP_11 0x00000113 | ||
1236 | #define DREG_REGID_TRAP_12 0x00000114 | ||
1237 | #define DREG_REGID_TRAP_13 0x00000115 | ||
1238 | #define DREG_REGID_TRAP_14 0x00000116 | ||
1239 | #define DREG_REGID_TRAP_15 0x00000117 | ||
1240 | #define DREG_REGID_TRAP_16 0x00000118 | ||
1241 | #define DREG_REGID_TRAP_17 0x00000119 | ||
1242 | #define DREG_REGID_TRAP_18 0x0000011A | ||
1243 | #define DREG_REGID_TRAP_19 0x0000011B | ||
1244 | #define DREG_REGID_TRAP_20 0x0000011C | ||
1245 | #define DREG_REGID_TRAP_21 0x0000011D | ||
1246 | #define DREG_REGID_TRAP_22 0x0000011E | ||
1247 | #define DREG_REGID_TRAP_23 0x0000011F | ||
1248 | #endif | ||
1249 | #endif | ||
1250 | #define DREG_REGID_RSA0_LOW 0x00000200 | ||
1251 | #define DREG_REGID_RSA0_HIGH 0x00000201 | ||
1252 | #define DREG_REGID_RSA1_LOW 0x00000202 | ||
1253 | #define DREG_REGID_RSA1_HIGH 0x00000203 | ||
1254 | #define DREG_REGID_RSA2 0x00000204 | ||
1255 | #define DREG_REGID_RSA3 0x00000205 | ||
1256 | #define DREG_REGID_RSI0_LOW 0x00000206 | ||
1257 | #define DREG_REGID_RSI0_HIGH 0x00000207 | ||
1258 | #define DREG_REGID_RSI1 0x00000208 | ||
1259 | #define DREG_REGID_RSI2 0x00000209 | ||
1260 | #define DREG_REGID_SAGUSTATUS 0x0000020A | ||
1261 | #define DREG_REGID_RSCONFIG01_LOW 0x0000020B | ||
1262 | #define DREG_REGID_RSCONFIG01_HIGH 0x0000020C | ||
1263 | #define DREG_REGID_RSCONFIG23_LOW 0x0000020D | ||
1264 | #define DREG_REGID_RSCONFIG23_HIGH 0x0000020E | ||
1265 | #define DREG_REGID_RSDMA01E 0x0000020F | ||
1266 | #define DREG_REGID_RSDMA23E 0x00000210 | ||
1267 | #define DREG_REGID_RSD0_LOW 0x00000211 | ||
1268 | #define DREG_REGID_RSD0_HIGH 0x00000212 | ||
1269 | #define DREG_REGID_RSD1_LOW 0x00000213 | ||
1270 | #define DREG_REGID_RSD1_HIGH 0x00000214 | ||
1271 | #define DREG_REGID_RSD2_LOW 0x00000215 | ||
1272 | #define DREG_REGID_RSD2_HIGH 0x00000216 | ||
1273 | #define DREG_REGID_RSD3_LOW 0x00000217 | ||
1274 | #define DREG_REGID_RSD3_HIGH 0x00000218 | ||
1275 | #define DREG_REGID_SRAR_HIGH 0x0000021A | ||
1276 | #define DREG_REGID_SRAR_LOW 0x0000021B | ||
1277 | #define DREG_REGID_DMA_STATE 0x0000021C | ||
1278 | #define DREG_REGID_CURRENT_DMA_STREAM 0x0000021D | ||
1279 | #define DREG_REGID_NEXT_DMA_STREAM 0x0000021E | ||
1280 | #define DREG_REGID_CPU_STATUS 0x00000300 | ||
1281 | #define DREG_REGID_MAC_MODE 0x00000301 | ||
1282 | #define DREG_REGID_STACK_AND_REPEAT 0x00000302 | ||
1283 | #define DREG_REGID_INDEX0 0x00000304 | ||
1284 | #define DREG_REGID_INDEX1 0x00000305 | ||
1285 | #define DREG_REGID_DMA_STATE_0_3 0x00000400 | ||
1286 | #define DREG_REGID_DMA_STATE_4_7 0x00000404 | ||
1287 | #define DREG_REGID_DMA_STATE_8_11 0x00000408 | ||
1288 | #define DREG_REGID_DMA_STATE_12_15 0x0000040C | ||
1289 | #define DREG_REGID_DMA_STATE_16_19 0x00000410 | ||
1290 | #define DREG_REGID_DMA_STATE_20_23 0x00000414 | ||
1291 | #define DREG_REGID_DMA_STATE_24_27 0x00000418 | ||
1292 | #define DREG_REGID_DMA_STATE_28_31 0x0000041C | ||
1293 | #define DREG_REGID_DMA_STATE_32_35 0x00000420 | ||
1294 | #define DREG_REGID_DMA_STATE_36_39 0x00000424 | ||
1295 | #define DREG_REGID_DMA_STATE_40_43 0x00000428 | ||
1296 | #define DREG_REGID_DMA_STATE_44_47 0x0000042C | ||
1297 | #define DREG_REGID_DMA_STATE_48_51 0x00000430 | ||
1298 | #define DREG_REGID_DMA_STATE_52_55 0x00000434 | ||
1299 | #define DREG_REGID_DMA_STATE_56_59 0x00000438 | ||
1300 | #define DREG_REGID_DMA_STATE_60_63 0x0000043C | ||
1301 | #define DREG_REGID_DMA_STATE_64_67 0x00000440 | ||
1302 | #define DREG_REGID_DMA_STATE_68_71 0x00000444 | ||
1303 | #define DREG_REGID_DMA_STATE_72_75 0x00000448 | ||
1304 | #define DREG_REGID_DMA_STATE_76_79 0x0000044C | ||
1305 | #define DREG_REGID_DMA_STATE_80_83 0x00000450 | ||
1306 | #define DREG_REGID_DMA_STATE_84_87 0x00000454 | ||
1307 | #define DREG_REGID_DMA_STATE_88_91 0x00000458 | ||
1308 | #define DREG_REGID_DMA_STATE_92_95 0x0000045C | ||
1309 | #define DREG_REGID_TRAP_SELECT 0x00000500 | ||
1310 | #define DREG_REGID_TRAP_WRITE_0 0x00000500 | ||
1311 | #define DREG_REGID_TRAP_WRITE_1 0x00000501 | ||
1312 | #define DREG_REGID_TRAP_WRITE_2 0x00000502 | ||
1313 | #define DREG_REGID_TRAP_WRITE_3 0x00000503 | ||
1314 | #define DREG_REGID_TRAP_WRITE_4 0x00000504 | ||
1315 | #define DREG_REGID_TRAP_WRITE_5 0x00000505 | ||
1316 | #define DREG_REGID_TRAP_WRITE_6 0x00000506 | ||
1317 | #define DREG_REGID_TRAP_WRITE_7 0x00000507 | ||
1318 | #if !defined(NO_CS4612) | ||
1319 | #if !defined(NO_CS4615) | ||
1320 | #define DREG_REGID_TRAP_WRITE_8 0x00000510 | ||
1321 | #define DREG_REGID_TRAP_WRITE_9 0x00000511 | ||
1322 | #define DREG_REGID_TRAP_WRITE_10 0x00000512 | ||
1323 | #define DREG_REGID_TRAP_WRITE_11 0x00000513 | ||
1324 | #define DREG_REGID_TRAP_WRITE_12 0x00000514 | ||
1325 | #define DREG_REGID_TRAP_WRITE_13 0x00000515 | ||
1326 | #define DREG_REGID_TRAP_WRITE_14 0x00000516 | ||
1327 | #define DREG_REGID_TRAP_WRITE_15 0x00000517 | ||
1328 | #define DREG_REGID_TRAP_WRITE_16 0x00000518 | ||
1329 | #define DREG_REGID_TRAP_WRITE_17 0x00000519 | ||
1330 | #define DREG_REGID_TRAP_WRITE_18 0x0000051A | ||
1331 | #define DREG_REGID_TRAP_WRITE_19 0x0000051B | ||
1332 | #define DREG_REGID_TRAP_WRITE_20 0x0000051C | ||
1333 | #define DREG_REGID_TRAP_WRITE_21 0x0000051D | ||
1334 | #define DREG_REGID_TRAP_WRITE_22 0x0000051E | ||
1335 | #define DREG_REGID_TRAP_WRITE_23 0x0000051F | ||
1336 | #endif | ||
1337 | #endif | ||
1338 | #define DREG_REGID_MAC0_ACC0_LOW 0x00000600 | ||
1339 | #define DREG_REGID_MAC0_ACC1_LOW 0x00000601 | ||
1340 | #define DREG_REGID_MAC0_ACC2_LOW 0x00000602 | ||
1341 | #define DREG_REGID_MAC0_ACC3_LOW 0x00000603 | ||
1342 | #define DREG_REGID_MAC1_ACC0_LOW 0x00000604 | ||
1343 | #define DREG_REGID_MAC1_ACC1_LOW 0x00000605 | ||
1344 | #define DREG_REGID_MAC1_ACC2_LOW 0x00000606 | ||
1345 | #define DREG_REGID_MAC1_ACC3_LOW 0x00000607 | ||
1346 | #define DREG_REGID_MAC0_ACC0_MID 0x00000608 | ||
1347 | #define DREG_REGID_MAC0_ACC1_MID 0x00000609 | ||
1348 | #define DREG_REGID_MAC0_ACC2_MID 0x0000060A | ||
1349 | #define DREG_REGID_MAC0_ACC3_MID 0x0000060B | ||
1350 | #define DREG_REGID_MAC1_ACC0_MID 0x0000060C | ||
1351 | #define DREG_REGID_MAC1_ACC1_MID 0x0000060D | ||
1352 | #define DREG_REGID_MAC1_ACC2_MID 0x0000060E | ||
1353 | #define DREG_REGID_MAC1_ACC3_MID 0x0000060F | ||
1354 | #define DREG_REGID_MAC0_ACC0_HIGH 0x00000610 | ||
1355 | #define DREG_REGID_MAC0_ACC1_HIGH 0x00000611 | ||
1356 | #define DREG_REGID_MAC0_ACC2_HIGH 0x00000612 | ||
1357 | #define DREG_REGID_MAC0_ACC3_HIGH 0x00000613 | ||
1358 | #define DREG_REGID_MAC1_ACC0_HIGH 0x00000614 | ||
1359 | #define DREG_REGID_MAC1_ACC1_HIGH 0x00000615 | ||
1360 | #define DREG_REGID_MAC1_ACC2_HIGH 0x00000616 | ||
1361 | #define DREG_REGID_MAC1_ACC3_HIGH 0x00000617 | ||
1362 | #define DREG_REGID_RSHOUT_LOW 0x00000620 | ||
1363 | #define DREG_REGID_RSHOUT_MID 0x00000628 | ||
1364 | #define DREG_REGID_RSHOUT_HIGH 0x00000630 | ||
1365 | |||
1366 | /* | ||
1367 | * The following defines are for the flags in the DMA stream requestor write | ||
1368 | */ | ||
1369 | #define DSRWP_DSR_MASK 0x0000000F | ||
1370 | #define DSRWP_DSR_BG_RQ 0x00000001 | ||
1371 | #define DSRWP_DSR_PRIORITY_MASK 0x00000006 | ||
1372 | #define DSRWP_DSR_PRIORITY_0 0x00000000 | ||
1373 | #define DSRWP_DSR_PRIORITY_1 0x00000002 | ||
1374 | #define DSRWP_DSR_PRIORITY_2 0x00000004 | ||
1375 | #define DSRWP_DSR_PRIORITY_3 0x00000006 | ||
1376 | #define DSRWP_DSR_RQ_PENDING 0x00000008 | ||
1377 | |||
1378 | /* | ||
1379 | * The following defines are for the flags in the trap write port register. | ||
1380 | */ | ||
1381 | #define TWPR_TW_MASK 0x0000FFFF | ||
1382 | #define TWPR_TW_SHIFT 0 | ||
1383 | |||
1384 | /* | ||
1385 | * The following defines are for the flags in the stack pointer write | ||
1386 | * register. | ||
1387 | */ | ||
1388 | #define SPWR_STKP_MASK 0x0000000F | ||
1389 | #define SPWR_STKP_SHIFT 0 | ||
1390 | |||
1391 | /* | ||
1392 | * The following defines are for the flags in the SP interrupt register. | ||
1393 | */ | ||
1394 | #define SPIR_FRI 0x00000001 | ||
1395 | #define SPIR_DOI 0x00000002 | ||
1396 | #define SPIR_GPI2 0x00000004 | ||
1397 | #define SPIR_GPI3 0x00000008 | ||
1398 | #define SPIR_IP0 0x00000010 | ||
1399 | #define SPIR_IP1 0x00000020 | ||
1400 | #define SPIR_IP2 0x00000040 | ||
1401 | #define SPIR_IP3 0x00000080 | ||
1402 | |||
1403 | /* | ||
1404 | * The following defines are for the flags in the functional group 1 register. | ||
1405 | */ | ||
1406 | #define FGR1_F1S_MASK 0x0000FFFF | ||
1407 | #define FGR1_F1S_SHIFT 0 | ||
1408 | |||
1409 | /* | ||
1410 | * The following defines are for the flags in the SP clock status register. | ||
1411 | */ | ||
1412 | #define SPCS_FRI 0x00000001 | ||
1413 | #define SPCS_DOI 0x00000002 | ||
1414 | #define SPCS_GPI2 0x00000004 | ||
1415 | #define SPCS_GPI3 0x00000008 | ||
1416 | #define SPCS_IP0 0x00000010 | ||
1417 | #define SPCS_IP1 0x00000020 | ||
1418 | #define SPCS_IP2 0x00000040 | ||
1419 | #define SPCS_IP3 0x00000080 | ||
1420 | #define SPCS_SPRUN 0x00000100 | ||
1421 | #define SPCS_SLEEP 0x00000200 | ||
1422 | #define SPCS_FG 0x00000400 | ||
1423 | #define SPCS_ORUN 0x00000800 | ||
1424 | #define SPCS_IRQ 0x00001000 | ||
1425 | #define SPCS_FGN_MASK 0x0000E000 | ||
1426 | #define SPCS_FGN_SHIFT 13 | ||
1427 | |||
1428 | /* | ||
1429 | * The following defines are for the flags in the SP DMA requestor status | ||
1430 | * register. | ||
1431 | */ | ||
1432 | #define SDSR_DCS_MASK 0x000000FF | ||
1433 | #define SDSR_DCS_SHIFT 0 | ||
1434 | #define SDSR_DCS_NONE 0x00000007 | ||
1435 | |||
1436 | /* | ||
1437 | * The following defines are for the flags in the frame timer register. | ||
1438 | */ | ||
1439 | #define FRMT_FTV_MASK 0x0000FFFF | ||
1440 | #define FRMT_FTV_SHIFT 0 | ||
1441 | |||
1442 | /* | ||
1443 | * The following defines are for the flags in the frame timer current count | ||
1444 | * register. | ||
1445 | */ | ||
1446 | #define FRCC_FCC_MASK 0x0000FFFF | ||
1447 | #define FRCC_FCC_SHIFT 0 | ||
1448 | |||
1449 | /* | ||
1450 | * The following defines are for the flags in the frame timer save count | ||
1451 | * register. | ||
1452 | */ | ||
1453 | #define FRSC_FCS_MASK 0x0000FFFF | ||
1454 | #define FRSC_FCS_SHIFT 0 | ||
1455 | |||
1456 | /* | ||
1457 | * The following define the various flags stored in the scatter/gather | ||
1458 | * descriptors. | ||
1459 | */ | ||
1460 | #define DMA_SG_NEXT_ENTRY_MASK 0x00000FF8 | ||
1461 | #define DMA_SG_SAMPLE_END_MASK 0x0FFF0000 | ||
1462 | #define DMA_SG_SAMPLE_END_FLAG 0x10000000 | ||
1463 | #define DMA_SG_LOOP_END_FLAG 0x20000000 | ||
1464 | #define DMA_SG_SIGNAL_END_FLAG 0x40000000 | ||
1465 | #define DMA_SG_SIGNAL_PAGE_FLAG 0x80000000 | ||
1466 | #define DMA_SG_NEXT_ENTRY_SHIFT 3 | ||
1467 | #define DMA_SG_SAMPLE_END_SHIFT 16 | ||
1468 | |||
1469 | /* | ||
1470 | * The following define the offsets of the fields within the on-chip generic | ||
1471 | * DMA requestor. | ||
1472 | */ | ||
1473 | #define DMA_RQ_CONTROL1 0x00000000 | ||
1474 | #define DMA_RQ_CONTROL2 0x00000004 | ||
1475 | #define DMA_RQ_SOURCE_ADDR 0x00000008 | ||
1476 | #define DMA_RQ_DESTINATION_ADDR 0x0000000C | ||
1477 | #define DMA_RQ_NEXT_PAGE_ADDR 0x00000010 | ||
1478 | #define DMA_RQ_NEXT_PAGE_SGDESC 0x00000014 | ||
1479 | #define DMA_RQ_LOOP_START_ADDR 0x00000018 | ||
1480 | #define DMA_RQ_POST_LOOP_ADDR 0x0000001C | ||
1481 | #define DMA_RQ_PAGE_MAP_ADDR 0x00000020 | ||
1482 | |||
1483 | /* | ||
1484 | * The following defines are for the flags in the first control word of the | ||
1485 | * on-chip generic DMA requestor. | ||
1486 | */ | ||
1487 | #define DMA_RQ_C1_COUNT_MASK 0x000003FF | ||
1488 | #define DMA_RQ_C1_DESTINATION_SCATTER 0x00001000 | ||
1489 | #define DMA_RQ_C1_SOURCE_GATHER 0x00002000 | ||
1490 | #define DMA_RQ_C1_DONE_FLAG 0x00004000 | ||
1491 | #define DMA_RQ_C1_OPTIMIZE_STATE 0x00008000 | ||
1492 | #define DMA_RQ_C1_SAMPLE_END_STATE_MASK 0x00030000 | ||
1493 | #define DMA_RQ_C1_FULL_PAGE 0x00000000 | ||
1494 | #define DMA_RQ_C1_BEFORE_SAMPLE_END 0x00010000 | ||
1495 | #define DMA_RQ_C1_PAGE_MAP_ERROR 0x00020000 | ||
1496 | #define DMA_RQ_C1_AT_SAMPLE_END 0x00030000 | ||
1497 | #define DMA_RQ_C1_LOOP_END_STATE_MASK 0x000C0000 | ||
1498 | #define DMA_RQ_C1_NOT_LOOP_END 0x00000000 | ||
1499 | #define DMA_RQ_C1_BEFORE_LOOP_END 0x00040000 | ||
1500 | #define DMA_RQ_C1_2PAGE_LOOP_BEGIN 0x00080000 | ||
1501 | #define DMA_RQ_C1_LOOP_BEGIN 0x000C0000 | ||
1502 | #define DMA_RQ_C1_PAGE_MAP_MASK 0x00300000 | ||
1503 | #define DMA_RQ_C1_PM_NONE_PENDING 0x00000000 | ||
1504 | #define DMA_RQ_C1_PM_NEXT_PENDING 0x00100000 | ||
1505 | #define DMA_RQ_C1_PM_RESERVED 0x00200000 | ||
1506 | #define DMA_RQ_C1_PM_LOOP_NEXT_PENDING 0x00300000 | ||
1507 | #define DMA_RQ_C1_WRITEBACK_DEST_FLAG 0x00400000 | ||
1508 | #define DMA_RQ_C1_WRITEBACK_SRC_FLAG 0x00800000 | ||
1509 | #define DMA_RQ_C1_DEST_SIZE_MASK 0x07000000 | ||
1510 | #define DMA_RQ_C1_DEST_LINEAR 0x00000000 | ||
1511 | #define DMA_RQ_C1_DEST_MOD16 0x01000000 | ||
1512 | #define DMA_RQ_C1_DEST_MOD32 0x02000000 | ||
1513 | #define DMA_RQ_C1_DEST_MOD64 0x03000000 | ||
1514 | #define DMA_RQ_C1_DEST_MOD128 0x04000000 | ||
1515 | #define DMA_RQ_C1_DEST_MOD256 0x05000000 | ||
1516 | #define DMA_RQ_C1_DEST_MOD512 0x06000000 | ||
1517 | #define DMA_RQ_C1_DEST_MOD1024 0x07000000 | ||
1518 | #define DMA_RQ_C1_DEST_ON_HOST 0x08000000 | ||
1519 | #define DMA_RQ_C1_SOURCE_SIZE_MASK 0x70000000 | ||
1520 | #define DMA_RQ_C1_SOURCE_LINEAR 0x00000000 | ||
1521 | #define DMA_RQ_C1_SOURCE_MOD16 0x10000000 | ||
1522 | #define DMA_RQ_C1_SOURCE_MOD32 0x20000000 | ||
1523 | #define DMA_RQ_C1_SOURCE_MOD64 0x30000000 | ||
1524 | #define DMA_RQ_C1_SOURCE_MOD128 0x40000000 | ||
1525 | #define DMA_RQ_C1_SOURCE_MOD256 0x50000000 | ||
1526 | #define DMA_RQ_C1_SOURCE_MOD512 0x60000000 | ||
1527 | #define DMA_RQ_C1_SOURCE_MOD1024 0x70000000 | ||
1528 | #define DMA_RQ_C1_SOURCE_ON_HOST 0x80000000 | ||
1529 | #define DMA_RQ_C1_COUNT_SHIFT 0 | ||
1530 | |||
1531 | /* | ||
1532 | * The following defines are for the flags in the second control word of the | ||
1533 | * on-chip generic DMA requestor. | ||
1534 | */ | ||
1535 | #define DMA_RQ_C2_VIRTUAL_CHANNEL_MASK 0x0000003F | ||
1536 | #define DMA_RQ_C2_VIRTUAL_SIGNAL_MASK 0x00000300 | ||
1537 | #define DMA_RQ_C2_NO_VIRTUAL_SIGNAL 0x00000000 | ||
1538 | #define DMA_RQ_C2_SIGNAL_EVERY_DMA 0x00000100 | ||
1539 | #define DMA_RQ_C2_SIGNAL_SOURCE_PINGPONG 0x00000200 | ||
1540 | #define DMA_RQ_C2_SIGNAL_DEST_PINGPONG 0x00000300 | ||
1541 | #define DMA_RQ_C2_AUDIO_CONVERT_MASK 0x0000F000 | ||
1542 | #define DMA_RQ_C2_AC_NONE 0x00000000 | ||
1543 | #define DMA_RQ_C2_AC_8_TO_16_BIT 0x00001000 | ||
1544 | #define DMA_RQ_C2_AC_MONO_TO_STEREO 0x00002000 | ||
1545 | #define DMA_RQ_C2_AC_ENDIAN_CONVERT 0x00004000 | ||
1546 | #define DMA_RQ_C2_AC_SIGNED_CONVERT 0x00008000 | ||
1547 | #define DMA_RQ_C2_LOOP_END_MASK 0x0FFF0000 | ||
1548 | #define DMA_RQ_C2_LOOP_MASK 0x30000000 | ||
1549 | #define DMA_RQ_C2_NO_LOOP 0x00000000 | ||
1550 | #define DMA_RQ_C2_ONE_PAGE_LOOP 0x10000000 | ||
1551 | #define DMA_RQ_C2_TWO_PAGE_LOOP 0x20000000 | ||
1552 | #define DMA_RQ_C2_MULTI_PAGE_LOOP 0x30000000 | ||
1553 | #define DMA_RQ_C2_SIGNAL_LOOP_BACK 0x40000000 | ||
1554 | #define DMA_RQ_C2_SIGNAL_POST_BEGIN_PAGE 0x80000000 | ||
1555 | #define DMA_RQ_C2_VIRTUAL_CHANNEL_SHIFT 0 | ||
1556 | #define DMA_RQ_C2_LOOP_END_SHIFT 16 | ||
1557 | |||
1558 | /* | ||
1559 | * The following defines are for the flags in the source and destination words | ||
1560 | * of the on-chip generic DMA requestor. | ||
1561 | */ | ||
1562 | #define DMA_RQ_SD_ADDRESS_MASK 0x0000FFFF | ||
1563 | #define DMA_RQ_SD_MEMORY_ID_MASK 0x000F0000 | ||
1564 | #define DMA_RQ_SD_SP_PARAM_ADDR 0x00000000 | ||
1565 | #define DMA_RQ_SD_SP_SAMPLE_ADDR 0x00010000 | ||
1566 | #define DMA_RQ_SD_SP_PROGRAM_ADDR 0x00020000 | ||
1567 | #define DMA_RQ_SD_SP_DEBUG_ADDR 0x00030000 | ||
1568 | #define DMA_RQ_SD_OMNIMEM_ADDR 0x000E0000 | ||
1569 | #define DMA_RQ_SD_END_FLAG 0x40000000 | ||
1570 | #define DMA_RQ_SD_ERROR_FLAG 0x80000000 | ||
1571 | #define DMA_RQ_SD_ADDRESS_SHIFT 0 | ||
1572 | |||
1573 | /* | ||
1574 | * The following defines are for the flags in the page map address word of the | ||
1575 | * on-chip generic DMA requestor. | ||
1576 | */ | ||
1577 | #define DMA_RQ_PMA_LOOP_THIRD_PAGE_ENTRY_MASK 0x00000FF8 | ||
1578 | #define DMA_RQ_PMA_PAGE_TABLE_MASK 0xFFFFF000 | ||
1579 | #define DMA_RQ_PMA_LOOP_THIRD_PAGE_ENTRY_SHIFT 3 | ||
1580 | #define DMA_RQ_PMA_PAGE_TABLE_SHIFT 12 | ||
1581 | |||
1582 | #define BA1_VARIDEC_BUF_1 0x000 | ||
1583 | |||
1584 | #define BA1_PDTC 0x0c0 /* BA1_PLAY_DMA_TRANSACTION_COUNT_REG */ | ||
1585 | #define BA1_PFIE 0x0c4 /* BA1_PLAY_FORMAT_&_INTERRUPT_ENABLE_REG */ | ||
1586 | #define BA1_PBA 0x0c8 /* BA1_PLAY_BUFFER_ADDRESS */ | ||
1587 | #define BA1_PVOL 0x0f8 /* BA1_PLAY_VOLUME_REG */ | ||
1588 | #define BA1_PSRC 0x288 /* BA1_PLAY_SAMPLE_RATE_CORRECTION_REG */ | ||
1589 | #define BA1_PCTL 0x2a4 /* BA1_PLAY_CONTROL_REG */ | ||
1590 | #define BA1_PPI 0x2b4 /* BA1_PLAY_PHASE_INCREMENT_REG */ | ||
1591 | |||
1592 | #define BA1_CCTL 0x064 /* BA1_CAPTURE_CONTROL_REG */ | ||
1593 | #define BA1_CIE 0x104 /* BA1_CAPTURE_INTERRUPT_ENABLE_REG */ | ||
1594 | #define BA1_CBA 0x10c /* BA1_CAPTURE_BUFFER_ADDRESS */ | ||
1595 | #define BA1_CSRC 0x2c8 /* BA1_CAPTURE_SAMPLE_RATE_CORRECTION_REG */ | ||
1596 | #define BA1_CCI 0x2d8 /* BA1_CAPTURE_COEFFICIENT_INCREMENT_REG */ | ||
1597 | #define BA1_CD 0x2e0 /* BA1_CAPTURE_DELAY_REG */ | ||
1598 | #define BA1_CPI 0x2f4 /* BA1_CAPTURE_PHASE_INCREMENT_REG */ | ||
1599 | #define BA1_CVOL 0x2f8 /* BA1_CAPTURE_VOLUME_REG */ | ||
1600 | |||
1601 | #define BA1_CFG1 0x134 /* BA1_CAPTURE_FRAME_GROUP_1_REG */ | ||
1602 | #define BA1_CFG2 0x138 /* BA1_CAPTURE_FRAME_GROUP_2_REG */ | ||
1603 | #define BA1_CCST 0x13c /* BA1_CAPTURE_CONSTANT_REG */ | ||
1604 | #define BA1_CSPB 0x340 /* BA1_CAPTURE_SPB_ADDRESS */ | ||
1605 | |||
1606 | /* | ||
1607 | * | ||
1608 | */ | ||
1609 | |||
1610 | #define CS46XX_MODE_OUTPUT (1<<0) /* MIDI UART - output */ | ||
1611 | #define CS46XX_MODE_INPUT (1<<1) /* MIDI UART - input */ | ||
1612 | |||
1613 | /* | ||
1614 | * | ||
1615 | */ | ||
1616 | |||
1617 | #define SAVE_REG_MAX 0x10 | ||
1618 | #define POWER_DOWN_ALL 0x7f0f | ||
1619 | |||
1620 | /* maxinum number of AC97 codecs connected, AC97 2.0 defined 4 */ | ||
1621 | #define MAX_NR_AC97 4 | ||
1622 | #define CS46XX_PRIMARY_CODEC_INDEX 0 | ||
1623 | #define CS46XX_SECONDARY_CODEC_INDEX 1 | ||
1624 | #define CS46XX_SECONDARY_CODEC_OFFSET 0x80 | ||
1625 | #define CS46XX_DSP_CAPTURE_CHANNEL 1 | ||
1626 | |||
1627 | /* capture */ | ||
1628 | #define CS46XX_DSP_CAPTURE_CHANNEL 1 | ||
1629 | |||
1630 | /* mixer */ | ||
1631 | #define CS46XX_MIXER_SPDIF_INPUT_ELEMENT 1 | ||
1632 | #define CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT 2 | ||
1633 | |||
1634 | |||
1635 | struct snd_cs46xx_pcm { | ||
1636 | struct snd_dma_buffer hw_buf; | ||
1637 | |||
1638 | unsigned int ctl; | ||
1639 | unsigned int shift; /* Shift count to trasform frames in bytes */ | ||
1640 | struct snd_pcm_indirect pcm_rec; | ||
1641 | struct snd_pcm_substream *substream; | ||
1642 | |||
1643 | struct dsp_pcm_channel_descriptor * pcm_channel; | ||
1644 | |||
1645 | int pcm_channel_id; /* Fron Rear, Center Lfe ... */ | ||
1646 | }; | ||
1647 | |||
1648 | struct snd_cs46xx_region { | ||
1649 | char name[24]; | ||
1650 | unsigned long base; | ||
1651 | void __iomem *remap_addr; | ||
1652 | unsigned long size; | ||
1653 | struct resource *resource; | ||
1654 | }; | ||
1655 | |||
1656 | struct snd_cs46xx { | ||
1657 | int irq; | ||
1658 | unsigned long ba0_addr; | ||
1659 | unsigned long ba1_addr; | ||
1660 | union { | ||
1661 | struct { | ||
1662 | struct snd_cs46xx_region ba0; | ||
1663 | struct snd_cs46xx_region data0; | ||
1664 | struct snd_cs46xx_region data1; | ||
1665 | struct snd_cs46xx_region pmem; | ||
1666 | struct snd_cs46xx_region reg; | ||
1667 | } name; | ||
1668 | struct snd_cs46xx_region idx[5]; | ||
1669 | } region; | ||
1670 | |||
1671 | unsigned int mode; | ||
1672 | |||
1673 | struct { | ||
1674 | struct snd_dma_buffer hw_buf; | ||
1675 | |||
1676 | unsigned int ctl; | ||
1677 | unsigned int shift; /* Shift count to trasform frames in bytes */ | ||
1678 | struct snd_pcm_indirect pcm_rec; | ||
1679 | struct snd_pcm_substream *substream; | ||
1680 | } capt; | ||
1681 | |||
1682 | |||
1683 | int nr_ac97_codecs; | ||
1684 | struct snd_ac97_bus *ac97_bus; | ||
1685 | struct snd_ac97 *ac97[MAX_NR_AC97]; | ||
1686 | |||
1687 | struct pci_dev *pci; | ||
1688 | struct snd_card *card; | ||
1689 | struct snd_pcm *pcm; | ||
1690 | |||
1691 | struct snd_rawmidi *rmidi; | ||
1692 | struct snd_rawmidi_substream *midi_input; | ||
1693 | struct snd_rawmidi_substream *midi_output; | ||
1694 | |||
1695 | spinlock_t reg_lock; | ||
1696 | unsigned int midcr; | ||
1697 | unsigned int uartm; | ||
1698 | |||
1699 | int amplifier; | ||
1700 | void (*amplifier_ctrl)(struct snd_cs46xx *, int); | ||
1701 | void (*active_ctrl)(struct snd_cs46xx *, int); | ||
1702 | void (*mixer_init)(struct snd_cs46xx *); | ||
1703 | |||
1704 | int acpi_port; | ||
1705 | struct snd_kcontrol *eapd_switch; /* for amplifier hack */ | ||
1706 | int accept_valid; /* accept mmap valid (for OSS) */ | ||
1707 | int in_suspend; | ||
1708 | |||
1709 | struct gameport *gameport; | ||
1710 | |||
1711 | #ifdef CONFIG_SND_CS46XX_NEW_DSP | ||
1712 | struct mutex spos_mutex; | ||
1713 | |||
1714 | struct dsp_spos_instance * dsp_spos_instance; | ||
1715 | |||
1716 | struct snd_pcm *pcm_rear; | ||
1717 | struct snd_pcm *pcm_center_lfe; | ||
1718 | struct snd_pcm *pcm_iec958; | ||
1719 | #else /* for compatibility */ | ||
1720 | struct snd_cs46xx_pcm *playback_pcm; | ||
1721 | unsigned int play_ctl; | ||
1722 | #endif | ||
1723 | |||
1724 | #ifdef CONFIG_PM | ||
1725 | u32 *saved_regs; | ||
1726 | #endif | ||
1727 | }; | ||
1728 | |||
1729 | int snd_cs46xx_create(struct snd_card *card, | ||
1730 | struct pci_dev *pci, | ||
1731 | int external_amp, int thinkpad, | ||
1732 | struct snd_cs46xx **rcodec); | ||
1733 | int snd_cs46xx_suspend(struct pci_dev *pci, pm_message_t state); | ||
1734 | int snd_cs46xx_resume(struct pci_dev *pci); | ||
1735 | |||
1736 | int snd_cs46xx_pcm(struct snd_cs46xx *chip, int device, struct snd_pcm **rpcm); | ||
1737 | int snd_cs46xx_pcm_rear(struct snd_cs46xx *chip, int device, struct snd_pcm **rpcm); | ||
1738 | int snd_cs46xx_pcm_iec958(struct snd_cs46xx *chip, int device, struct snd_pcm **rpcm); | ||
1739 | int snd_cs46xx_pcm_center_lfe(struct snd_cs46xx *chip, int device, struct snd_pcm **rpcm); | ||
1740 | int snd_cs46xx_mixer(struct snd_cs46xx *chip, int spdif_device); | ||
1741 | int snd_cs46xx_midi(struct snd_cs46xx *chip, int device, struct snd_rawmidi **rmidi); | ||
1742 | int snd_cs46xx_start_dsp(struct snd_cs46xx *chip); | ||
1743 | int snd_cs46xx_gameport(struct snd_cs46xx *chip); | ||
1744 | |||
1745 | #endif /* __SOUND_CS46XX_H */ | ||
diff --git a/include/sound/cs46xx_dsp_scb_types.h b/include/sound/cs46xx_dsp_scb_types.h deleted file mode 100644 index 080857ad0ca2..000000000000 --- a/include/sound/cs46xx_dsp_scb_types.h +++ /dev/null | |||
@@ -1,1213 +0,0 @@ | |||
1 | /* | ||
2 | * The driver for the Cirrus Logic's Sound Fusion CS46XX based soundcards | ||
3 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> | ||
4 | * | ||
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 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | * | ||
20 | * | ||
21 | * NOTE: comments are copy/paste from cwcemb80.lst | ||
22 | * provided by Tom Woller at Cirrus (my only | ||
23 | * documentation about the SP OS running inside | ||
24 | * the DSP) | ||
25 | */ | ||
26 | |||
27 | #ifndef __CS46XX_DSP_SCB_TYPES_H__ | ||
28 | #define __CS46XX_DSP_SCB_TYPES_H__ | ||
29 | |||
30 | #include <asm/byteorder.h> | ||
31 | |||
32 | #ifndef ___DSP_DUAL_16BIT_ALLOC | ||
33 | #if defined(__LITTLE_ENDIAN) | ||
34 | #define ___DSP_DUAL_16BIT_ALLOC(a,b) u16 a; u16 b; | ||
35 | #elif defined(__BIG_ENDIAN) | ||
36 | #define ___DSP_DUAL_16BIT_ALLOC(a,b) u16 b; u16 a; | ||
37 | #else | ||
38 | #error Not __LITTLE_ENDIAN and not __BIG_ENDIAN, then what ??? | ||
39 | #endif | ||
40 | #endif | ||
41 | |||
42 | /* This structs are used internally by the SP */ | ||
43 | |||
44 | struct dsp_basic_dma_req { | ||
45 | /* DMA Requestor Word 0 (DCW) fields: | ||
46 | |||
47 | 31 [30-28]27 [26:24] 23 22 21 20 [19:18] [17:16] 15 14 13 12 11 10 9 8 7 6 [5:0] | ||
48 | _______________________________________________________________________________________ | ||
49 | |S| SBT |D| DBT |wb|wb| | | LS | SS |Opt|Do|SSG|DSG| | | | | | | Dword | | ||
50 | |H|_____ |H|_________|S_|D |__|__|______|_______|___|ne|__ |__ |__|__|_|_|_|_|_Count -1| | ||
51 | */ | ||
52 | u32 dcw; /* DMA Control Word */ | ||
53 | u32 dmw; /* DMA Mode Word */ | ||
54 | u32 saw; /* Source Address Word */ | ||
55 | u32 daw; /* Destination Address Word */ | ||
56 | }; | ||
57 | |||
58 | struct dsp_scatter_gather_ext { | ||
59 | u32 npaw; /* Next-Page Address Word */ | ||
60 | |||
61 | /* DMA Requestor Word 5 (NPCW) fields: | ||
62 | |||
63 | 31-30 29 28 [27:16] [15:12] [11:3] [2:0] | ||
64 | _________________________________________________________________________________________ | ||
65 | |SV |LE|SE| Sample-end byte offset | | Page-map entry offset for next | | | ||
66 | |page|__|__| ___________________________|_________|__page, if !sample-end___________|____| | ||
67 | */ | ||
68 | u32 npcw; /* Next-Page Control Word */ | ||
69 | u32 lbaw; /* Loop-Begin Address Word */ | ||
70 | u32 nplbaw; /* Next-Page after Loop-Begin Address Word */ | ||
71 | u32 sgaw; /* Scatter/Gather Address Word */ | ||
72 | }; | ||
73 | |||
74 | struct dsp_volume_control { | ||
75 | ___DSP_DUAL_16BIT_ALLOC( | ||
76 | rightTarg, /* Target volume for left & right channels */ | ||
77 | leftTarg | ||
78 | ) | ||
79 | ___DSP_DUAL_16BIT_ALLOC( | ||
80 | rightVol, /* Current left & right channel volumes */ | ||
81 | leftVol | ||
82 | ) | ||
83 | }; | ||
84 | |||
85 | /* Generic stream control block (SCB) structure definition */ | ||
86 | struct dsp_generic_scb { | ||
87 | /* For streaming I/O, the DSP should never alter any words in the DMA | ||
88 | requestor or the scatter/gather extension. Only ad hoc DMA request | ||
89 | streams are free to alter the requestor (currently only occur in the | ||
90 | DOS-based MIDI controller and in debugger-inserted code). | ||
91 | |||
92 | If an SCB does not have any associated DMA requestor, these 9 ints | ||
93 | may be freed for use by other tasks, but the pointer to the SCB must | ||
94 | still be such that the insOrd:nextSCB appear at offset 9 from the | ||
95 | SCB pointer. | ||
96 | |||
97 | Basic (non scatter/gather) DMA requestor (4 ints) | ||
98 | */ | ||
99 | |||
100 | /* Initialized by the host, only modified by DMA | ||
101 | R/O for the DSP task */ | ||
102 | struct dsp_basic_dma_req basic_req; /* Optional */ | ||
103 | |||
104 | /* Scatter/gather DMA requestor extension (5 ints) | ||
105 | Initialized by the host, only modified by DMA | ||
106 | DSP task never needs to even read these. | ||
107 | */ | ||
108 | struct dsp_scatter_gather_ext sg_ext; /* Optional */ | ||
109 | |||
110 | /* Sublist pointer & next stream control block (SCB) link. | ||
111 | Initialized & modified by the host R/O for the DSP task | ||
112 | */ | ||
113 | ___DSP_DUAL_16BIT_ALLOC( | ||
114 | next_scb, /* REQUIRED */ | ||
115 | sub_list_ptr /* REQUIRED */ | ||
116 | ) | ||
117 | |||
118 | /* Pointer to this tasks parameter block & stream function pointer | ||
119 | Initialized by the host R/O for the DSP task */ | ||
120 | ___DSP_DUAL_16BIT_ALLOC( | ||
121 | entry_point, /* REQUIRED */ | ||
122 | this_spb /* REQUIRED */ | ||
123 | ) | ||
124 | |||
125 | /* rsConfig register for stream buffer (rsDMA reg. | ||
126 | is loaded from basicReq.daw for incoming streams, or | ||
127 | basicReq.saw, for outgoing streams) | ||
128 | |||
129 | 31 30 29 [28:24] [23:16] 15 14 13 12 11 10 9 8 7 6 5 4 [3:0] | ||
130 | ______________________________________________________________________________ | ||
131 | |DMA |D|maxDMAsize| streamNum|dir|p| | | | | | |ds |shr 1|rev Cy | mod | | ||
132 | |prio |_|__________|__________|___|_|__|__|__|__|_|_|___|_____|_______|_______| | ||
133 | 31 30 29 [28:24] [23:16] 15 14 13 12 11 10 9 8 7 6 5 4 [3:0] | ||
134 | |||
135 | |||
136 | Initialized by the host R/O for the DSP task | ||
137 | */ | ||
138 | u32 strm_rs_config; /* REQUIRED */ | ||
139 | // | ||
140 | /* On mixer input streams: indicates mixer input stream configuration | ||
141 | On Tees, this is copied from the stream being snooped | ||
142 | |||
143 | Stream sample pointer & MAC-unit mode for this stream | ||
144 | |||
145 | Initialized by the host Updated by the DSP task | ||
146 | */ | ||
147 | u32 strm_buf_ptr; /* REQUIRED */ | ||
148 | |||
149 | /* On mixer input streams: points to next mixer input and is updated by the | ||
150 | mixer subroutine in the "parent" DSP task | ||
151 | (least-significant 16 bits are preserved, unused) | ||
152 | |||
153 | On Tees, the pointer is copied from the stream being snooped on | ||
154 | initialization, and, subsequently, it is copied into the | ||
155 | stream being snooped. | ||
156 | |||
157 | On wavetable/3D voices: the strmBufPtr will use all 32 bits to allow for | ||
158 | fractional phase accumulation | ||
159 | |||
160 | Fractional increment per output sample in the input sample buffer | ||
161 | |||
162 | (Not used on mixer input streams & redefined on Tees) | ||
163 | On wavetable/3D voices: this 32-bit word specifies the integer.fractional | ||
164 | increment per output sample. | ||
165 | */ | ||
166 | u32 strmPhiIncr; | ||
167 | |||
168 | |||
169 | /* Standard stereo volume control | ||
170 | Initialized by the host (host updates target volumes) | ||
171 | |||
172 | Current volumes update by the DSP task | ||
173 | On mixer input streams: required & updated by the mixer subroutine in the | ||
174 | "parent" DSP task | ||
175 | |||
176 | On Tees, both current & target volumes are copied up on initialization, | ||
177 | and, subsequently, the target volume is copied up while the current | ||
178 | volume is copied down. | ||
179 | |||
180 | These two 32-bit words are redefined for wavetable & 3-D voices. | ||
181 | */ | ||
182 | struct dsp_volume_control vol_ctrl_t; /* Optional */ | ||
183 | }; | ||
184 | |||
185 | |||
186 | struct dsp_spos_control_block { | ||
187 | /* WARNING: Certain items in this structure are modified by the host | ||
188 | Any dword that can be modified by the host, must not be | ||
189 | modified by the SP as the host can only do atomic dword | ||
190 | writes, and to do otherwise, even a read modify write, | ||
191 | may lead to corrupted data on the SP. | ||
192 | |||
193 | This rule does not apply to one off boot time initialisation prior to starting the SP | ||
194 | */ | ||
195 | |||
196 | |||
197 | ___DSP_DUAL_16BIT_ALLOC( | ||
198 | /* First element on the Hyper forground task tree */ | ||
199 | hfg_tree_root_ptr, /* HOST */ | ||
200 | /* First 3 dwords are written by the host and read-only on the DSP */ | ||
201 | hfg_stack_base /* HOST */ | ||
202 | ) | ||
203 | |||
204 | ___DSP_DUAL_16BIT_ALLOC( | ||
205 | /* Point to this data structure to enable easy access */ | ||
206 | spos_cb_ptr, /* SP */ | ||
207 | prev_task_tree_ptr /* SP && HOST */ | ||
208 | ) | ||
209 | |||
210 | ___DSP_DUAL_16BIT_ALLOC( | ||
211 | /* Currently Unused */ | ||
212 | xxinterval_timer_period, | ||
213 | /* Enable extension of SPOS data structure */ | ||
214 | HFGSPB_ptr | ||
215 | ) | ||
216 | |||
217 | |||
218 | ___DSP_DUAL_16BIT_ALLOC( | ||
219 | xxnum_HFG_ticks_thisInterval, | ||
220 | /* Modified by the DSP */ | ||
221 | xxnum_tntervals | ||
222 | ) | ||
223 | |||
224 | |||
225 | /* Set by DSP upon encountering a trap (breakpoint) or a spurious | ||
226 | interrupt. The host must clear this dword after reading it | ||
227 | upon receiving spInt1. */ | ||
228 | ___DSP_DUAL_16BIT_ALLOC( | ||
229 | spurious_int_flag, /* (Host & SP) Nature of the spurious interrupt */ | ||
230 | trap_flag /* (Host & SP) Nature of detected Trap */ | ||
231 | ) | ||
232 | |||
233 | ___DSP_DUAL_16BIT_ALLOC( | ||
234 | unused2, | ||
235 | invalid_IP_flag /* (Host & SP ) Indicate detection of invalid instruction pointer */ | ||
236 | ) | ||
237 | |||
238 | ___DSP_DUAL_16BIT_ALLOC( | ||
239 | /* pointer to forground task tree header for use in next task search */ | ||
240 | fg_task_tree_hdr_ptr, /* HOST */ | ||
241 | /* Data structure for controlling synchronous link update */ | ||
242 | hfg_sync_update_ptr /* HOST */ | ||
243 | ) | ||
244 | |||
245 | ___DSP_DUAL_16BIT_ALLOC( | ||
246 | begin_foreground_FCNT, /* SP */ | ||
247 | /* Place holder for holding sleep timing */ | ||
248 | last_FCNT_before_sleep /* SP */ | ||
249 | ) | ||
250 | |||
251 | ___DSP_DUAL_16BIT_ALLOC( | ||
252 | unused7, /* SP */ | ||
253 | next_task_treePtr /* SP */ | ||
254 | ) | ||
255 | |||
256 | u32 unused5; | ||
257 | |||
258 | ___DSP_DUAL_16BIT_ALLOC( | ||
259 | active_flags, /* SP */ | ||
260 | /* State flags, used to assist control of execution of Hyper Forground */ | ||
261 | HFG_flags /* SP */ | ||
262 | ) | ||
263 | |||
264 | ___DSP_DUAL_16BIT_ALLOC( | ||
265 | unused9, | ||
266 | unused8 | ||
267 | ) | ||
268 | |||
269 | /* Space for saving enough context so that we can set up enough | ||
270 | to save some more context. | ||
271 | */ | ||
272 | u32 rFE_save_for_invalid_IP; | ||
273 | u32 r32_save_for_spurious_int; | ||
274 | u32 r32_save_for_trap; | ||
275 | u32 r32_save_for_HFG; | ||
276 | }; | ||
277 | |||
278 | /* SPB for MIX_TO_OSTREAM algorithm family */ | ||
279 | struct dsp_mix2_ostream_spb | ||
280 | { | ||
281 | /* 16b.16b integer.frac approximation to the | ||
282 | number of 3 sample triplets to output each | ||
283 | frame. (approximation must be floor, to | ||
284 | insure that the fractional error is always | ||
285 | positive) | ||
286 | */ | ||
287 | u32 outTripletsPerFrame; | ||
288 | |||
289 | /* 16b.16b integer.frac accumulated number of | ||
290 | output triplets since the start of group | ||
291 | */ | ||
292 | u32 accumOutTriplets; | ||
293 | }; | ||
294 | |||
295 | /* SCB for Timing master algorithm */ | ||
296 | struct dsp_timing_master_scb { | ||
297 | /* First 12 dwords from generic_scb_t */ | ||
298 | struct dsp_basic_dma_req basic_req; /* Optional */ | ||
299 | struct dsp_scatter_gather_ext sg_ext; /* Optional */ | ||
300 | ___DSP_DUAL_16BIT_ALLOC( | ||
301 | next_scb, /* REQUIRED */ | ||
302 | sub_list_ptr /* REQUIRED */ | ||
303 | ) | ||
304 | |||
305 | ___DSP_DUAL_16BIT_ALLOC( | ||
306 | entry_point, /* REQUIRED */ | ||
307 | this_spb /* REQUIRED */ | ||
308 | ) | ||
309 | |||
310 | ___DSP_DUAL_16BIT_ALLOC( | ||
311 | /* Initial values are 0000:xxxx */ | ||
312 | reserved, | ||
313 | extra_sample_accum | ||
314 | ) | ||
315 | |||
316 | |||
317 | /* Initial values are xxxx:0000 | ||
318 | hi: Current CODEC output FIFO pointer | ||
319 | (0 to 0x0f) | ||
320 | lo: Flag indicating that the CODEC | ||
321 | FIFO is sync'd (host clears to | ||
322 | resynchronize the FIFO pointer | ||
323 | upon start/restart) | ||
324 | */ | ||
325 | ___DSP_DUAL_16BIT_ALLOC( | ||
326 | codec_FIFO_syncd, | ||
327 | codec_FIFO_ptr | ||
328 | ) | ||
329 | |||
330 | /* Init. 8000:0005 for 44.1k | ||
331 | 8000:0001 for 48k | ||
332 | hi: Fractional sample accumulator 0.16b | ||
333 | lo: Number of frames remaining to be | ||
334 | processed in the current group of | ||
335 | frames | ||
336 | */ | ||
337 | ___DSP_DUAL_16BIT_ALLOC( | ||
338 | frac_samp_accum_qm1, | ||
339 | TM_frms_left_in_group | ||
340 | ) | ||
341 | |||
342 | /* Init. 0001:0005 for 44.1k | ||
343 | 0000:0001 for 48k | ||
344 | hi: Fractional sample correction factor 0.16b | ||
345 | to be added every frameGroupLength frames | ||
346 | to correct for truncation error in | ||
347 | nsamp_per_frm_q15 | ||
348 | lo: Number of frames in the group | ||
349 | */ | ||
350 | ___DSP_DUAL_16BIT_ALLOC( | ||
351 | frac_samp_correction_qm1, | ||
352 | TM_frm_group_length | ||
353 | ) | ||
354 | |||
355 | /* Init. 44.1k*65536/8k = 0x00058333 for 44.1k | ||
356 | 48k*65536/8k = 0x00060000 for 48k | ||
357 | 16b.16b integer.frac approximation to the | ||
358 | number of samples to output each frame. | ||
359 | (approximation must be floor, to insure */ | ||
360 | u32 nsamp_per_frm_q15; | ||
361 | }; | ||
362 | |||
363 | /* SCB for CODEC output algorithm */ | ||
364 | struct dsp_codec_output_scb { | ||
365 | /* First 13 dwords from generic_scb_t */ | ||
366 | struct dsp_basic_dma_req basic_req; /* Optional */ | ||
367 | struct dsp_scatter_gather_ext sg_ext; /* Optional */ | ||
368 | ___DSP_DUAL_16BIT_ALLOC( | ||
369 | next_scb, /* REQUIRED */ | ||
370 | sub_list_ptr /* REQUIRED */ | ||
371 | ) | ||
372 | |||
373 | ___DSP_DUAL_16BIT_ALLOC( | ||
374 | entry_point, /* REQUIRED */ | ||
375 | this_spb /* REQUIRED */ | ||
376 | ) | ||
377 | |||
378 | u32 strm_rs_config; /* REQUIRED */ | ||
379 | |||
380 | u32 strm_buf_ptr; /* REQUIRED */ | ||
381 | |||
382 | /* NOTE: The CODEC output task reads samples from the first task on its | ||
383 | sublist at the stream buffer pointer (init. to lag DMA destination | ||
384 | address word). After the required number of samples is transferred, | ||
385 | the CODEC output task advances sub_list_ptr->strm_buf_ptr past the samples | ||
386 | consumed. | ||
387 | */ | ||
388 | |||
389 | /* Init. 0000:0010 for SDout | ||
390 | 0060:0010 for SDout2 | ||
391 | 0080:0010 for SDout3 | ||
392 | hi: Base IO address of FIFO to which | ||
393 | the left-channel samples are to | ||
394 | be written. | ||
395 | lo: Displacement for the base IO | ||
396 | address for left-channel to obtain | ||
397 | the base IO address for the FIFO | ||
398 | to which the right-channel samples | ||
399 | are to be written. | ||
400 | */ | ||
401 | ___DSP_DUAL_16BIT_ALLOC( | ||
402 | left_chan_base_IO_addr, | ||
403 | right_chan_IO_disp | ||
404 | ) | ||
405 | |||
406 | |||
407 | /* Init: 0x0080:0004 for non-AC-97 | ||
408 | Init: 0x0080:0000 for AC-97 | ||
409 | hi: Exponential volume change rate | ||
410 | for input stream | ||
411 | lo: Positive shift count to shift the | ||
412 | 16-bit input sample to obtain the | ||
413 | 32-bit output word | ||
414 | */ | ||
415 | ___DSP_DUAL_16BIT_ALLOC( | ||
416 | CO_scale_shift_count, | ||
417 | CO_exp_vol_change_rate | ||
418 | ) | ||
419 | |||
420 | /* Pointer to SCB at end of input chain */ | ||
421 | ___DSP_DUAL_16BIT_ALLOC( | ||
422 | reserved, | ||
423 | last_sub_ptr | ||
424 | ) | ||
425 | }; | ||
426 | |||
427 | /* SCB for CODEC input algorithm */ | ||
428 | struct dsp_codec_input_scb { | ||
429 | /* First 13 dwords from generic_scb_t */ | ||
430 | struct dsp_basic_dma_req basic_req; /* Optional */ | ||
431 | struct dsp_scatter_gather_ext sg_ext; /* Optional */ | ||
432 | ___DSP_DUAL_16BIT_ALLOC( | ||
433 | next_scb, /* REQUIRED */ | ||
434 | sub_list_ptr /* REQUIRED */ | ||
435 | ) | ||
436 | |||
437 | ___DSP_DUAL_16BIT_ALLOC( | ||
438 | entry_point, /* REQUIRED */ | ||
439 | this_spb /* REQUIRED */ | ||
440 | ) | ||
441 | |||
442 | u32 strm_rs_config; /* REQUIRED */ | ||
443 | u32 strm_buf_ptr; /* REQUIRED */ | ||
444 | |||
445 | /* NOTE: The CODEC input task reads samples from the hardware FIFO | ||
446 | sublist at the DMA source address word (sub_list_ptr->basic_req.saw). | ||
447 | After the required number of samples is transferred, the CODEC | ||
448 | output task advances sub_list_ptr->basic_req.saw past the samples | ||
449 | consumed. SPuD must initialize the sub_list_ptr->basic_req.saw | ||
450 | to point half-way around from the initial sub_list_ptr->strm_nuf_ptr | ||
451 | to allow for lag/lead. | ||
452 | */ | ||
453 | |||
454 | /* Init. 0000:0010 for SDout | ||
455 | 0060:0010 for SDout2 | ||
456 | 0080:0010 for SDout3 | ||
457 | hi: Base IO address of FIFO to which | ||
458 | the left-channel samples are to | ||
459 | be written. | ||
460 | lo: Displacement for the base IO | ||
461 | address for left-channel to obtain | ||
462 | the base IO address for the FIFO | ||
463 | to which the right-channel samples | ||
464 | are to be written. | ||
465 | */ | ||
466 | ___DSP_DUAL_16BIT_ALLOC( | ||
467 | rightChanINdisp, | ||
468 | left_chan_base_IN_addr | ||
469 | ) | ||
470 | /* Init. ?:fffc | ||
471 | lo: Negative shift count to shift the | ||
472 | 32-bit input dword to obtain the | ||
473 | 16-bit sample msb-aligned (count | ||
474 | is negative to shift left) | ||
475 | */ | ||
476 | ___DSP_DUAL_16BIT_ALLOC( | ||
477 | scaleShiftCount, | ||
478 | reserver1 | ||
479 | ) | ||
480 | |||
481 | u32 reserved2; | ||
482 | }; | ||
483 | |||
484 | |||
485 | struct dsp_pcm_serial_input_scb { | ||
486 | /* First 13 dwords from generic_scb_t */ | ||
487 | struct dsp_basic_dma_req basic_req; /* Optional */ | ||
488 | struct dsp_scatter_gather_ext sg_ext; /* Optional */ | ||
489 | ___DSP_DUAL_16BIT_ALLOC( | ||
490 | next_scb, /* REQUIRED */ | ||
491 | sub_list_ptr /* REQUIRED */ | ||
492 | ) | ||
493 | |||
494 | ___DSP_DUAL_16BIT_ALLOC( | ||
495 | entry_point, /* REQUIRED */ | ||
496 | this_spb /* REQUIRED */ | ||
497 | ) | ||
498 | |||
499 | u32 strm_buf_ptr; /* REQUIRED */ | ||
500 | u32 strm_rs_config; /* REQUIRED */ | ||
501 | |||
502 | /* Init. Ptr to CODEC input SCB | ||
503 | hi: Pointer to the SCB containing the | ||
504 | input buffer to which CODEC input | ||
505 | samples are written | ||
506 | lo: Flag indicating the link to the CODEC | ||
507 | input task is to be initialized | ||
508 | */ | ||
509 | ___DSP_DUAL_16BIT_ALLOC( | ||
510 | init_codec_input_link, | ||
511 | codec_input_buf_scb | ||
512 | ) | ||
513 | |||
514 | /* Initialized by the host (host updates target volumes) */ | ||
515 | struct dsp_volume_control psi_vol_ctrl; | ||
516 | |||
517 | }; | ||
518 | |||
519 | struct dsp_src_task_scb { | ||
520 | ___DSP_DUAL_16BIT_ALLOC( | ||
521 | frames_left_in_gof, | ||
522 | gofs_left_in_sec | ||
523 | ) | ||
524 | |||
525 | ___DSP_DUAL_16BIT_ALLOC( | ||
526 | const2_thirds, | ||
527 | num_extra_tnput_samples | ||
528 | ) | ||
529 | |||
530 | ___DSP_DUAL_16BIT_ALLOC( | ||
531 | cor_per_gof, | ||
532 | correction_per_sec | ||
533 | ) | ||
534 | |||
535 | ___DSP_DUAL_16BIT_ALLOC( | ||
536 | output_buf_producer_ptr, | ||
537 | junk_DMA_MID | ||
538 | ) | ||
539 | |||
540 | ___DSP_DUAL_16BIT_ALLOC( | ||
541 | gof_length, | ||
542 | gofs_per_sec | ||
543 | ) | ||
544 | |||
545 | u32 input_buf_strm_config; | ||
546 | |||
547 | ___DSP_DUAL_16BIT_ALLOC( | ||
548 | reserved_for_SRC_use, | ||
549 | input_buf_consumer_ptr | ||
550 | ) | ||
551 | |||
552 | u32 accum_phi; | ||
553 | |||
554 | ___DSP_DUAL_16BIT_ALLOC( | ||
555 | exp_src_vol_change_rate, | ||
556 | input_buf_producer_ptr | ||
557 | ) | ||
558 | |||
559 | ___DSP_DUAL_16BIT_ALLOC( | ||
560 | src_next_scb, | ||
561 | src_sub_list_ptr | ||
562 | ) | ||
563 | |||
564 | ___DSP_DUAL_16BIT_ALLOC( | ||
565 | src_entry_point, | ||
566 | src_this_sbp | ||
567 | ) | ||
568 | |||
569 | u32 src_strm_rs_config; | ||
570 | u32 src_strm_buf_ptr; | ||
571 | |||
572 | u32 phiIncr6int_26frac; | ||
573 | |||
574 | struct dsp_volume_control src_vol_ctrl; | ||
575 | }; | ||
576 | |||
577 | struct dsp_decimate_by_pow2_scb { | ||
578 | /* decimationFactor = 2, 4, or 8 (larger factors waste too much memory | ||
579 | when compared to cascading decimators) | ||
580 | */ | ||
581 | ___DSP_DUAL_16BIT_ALLOC( | ||
582 | dec2_coef_base_ptr, | ||
583 | dec2_coef_increment | ||
584 | ) | ||
585 | |||
586 | /* coefIncrement = 128 / decimationFactor (for our ROM filter) | ||
587 | coefBasePtr = 0x8000 (for our ROM filter) | ||
588 | */ | ||
589 | ___DSP_DUAL_16BIT_ALLOC( | ||
590 | dec2_in_samples_per_out_triplet, | ||
591 | dec2_extra_in_samples | ||
592 | ) | ||
593 | /* extraInSamples: # of accumulated, unused input samples (init. to 0) | ||
594 | inSamplesPerOutTriplet = 3 * decimationFactor | ||
595 | */ | ||
596 | |||
597 | ___DSP_DUAL_16BIT_ALLOC( | ||
598 | dec2_const2_thirds, | ||
599 | dec2_half_num_taps_mp5 | ||
600 | ) | ||
601 | /* halfNumTapsM5: (1/2 number of taps in decimation filter) minus 5 | ||
602 | const2thirds: constant 2/3 in 16Q0 format (sign.15) | ||
603 | */ | ||
604 | |||
605 | ___DSP_DUAL_16BIT_ALLOC( | ||
606 | dec2_output_buf_producer_ptr, | ||
607 | dec2_junkdma_mid | ||
608 | ) | ||
609 | |||
610 | u32 dec2_reserved2; | ||
611 | |||
612 | u32 dec2_input_nuf_strm_config; | ||
613 | /* inputBufStrmConfig: rsConfig for the input buffer to the decimator | ||
614 | (buffer size = decimationFactor * 32 dwords) | ||
615 | */ | ||
616 | |||
617 | ___DSP_DUAL_16BIT_ALLOC( | ||
618 | dec2_phi_incr, | ||
619 | dec2_input_buf_consumer_ptr | ||
620 | ) | ||
621 | /* inputBufConsumerPtr: Input buffer read pointer (into SRC filter) | ||
622 | phiIncr = decimationFactor * 4 | ||
623 | */ | ||
624 | |||
625 | u32 dec2_reserved3; | ||
626 | |||
627 | ___DSP_DUAL_16BIT_ALLOC( | ||
628 | dec2_exp_vol_change_rate, | ||
629 | dec2_input_buf_producer_ptr | ||
630 | ) | ||
631 | /* inputBufProducerPtr: Input buffer write pointer | ||
632 | expVolChangeRate: Exponential volume change rate for possible | ||
633 | future mixer on input streams | ||
634 | */ | ||
635 | |||
636 | ___DSP_DUAL_16BIT_ALLOC( | ||
637 | dec2_next_scb, | ||
638 | dec2_sub_list_ptr | ||
639 | ) | ||
640 | |||
641 | ___DSP_DUAL_16BIT_ALLOC( | ||
642 | dec2_entry_point, | ||
643 | dec2_this_spb | ||
644 | ) | ||
645 | |||
646 | u32 dec2_strm_rs_config; | ||
647 | u32 dec2_strm_buf_ptr; | ||
648 | |||
649 | u32 dec2_reserved4; | ||
650 | |||
651 | struct dsp_volume_control dec2_vol_ctrl; /* Not used! */ | ||
652 | }; | ||
653 | |||
654 | struct dsp_vari_decimate_scb { | ||
655 | ___DSP_DUAL_16BIT_ALLOC( | ||
656 | vdec_frames_left_in_gof, | ||
657 | vdec_gofs_left_in_sec | ||
658 | ) | ||
659 | |||
660 | ___DSP_DUAL_16BIT_ALLOC( | ||
661 | vdec_const2_thirds, | ||
662 | vdec_extra_in_samples | ||
663 | ) | ||
664 | /* extraInSamples: # of accumulated, unused input samples (init. to 0) | ||
665 | const2thirds: constant 2/3 in 16Q0 format (sign.15) */ | ||
666 | |||
667 | ___DSP_DUAL_16BIT_ALLOC( | ||
668 | vdec_cor_per_gof, | ||
669 | vdec_correction_per_sec | ||
670 | ) | ||
671 | |||
672 | ___DSP_DUAL_16BIT_ALLOC( | ||
673 | vdec_output_buf_producer_ptr, | ||
674 | vdec_input_buf_consumer_ptr | ||
675 | ) | ||
676 | /* inputBufConsumerPtr: Input buffer read pointer (into SRC filter) */ | ||
677 | ___DSP_DUAL_16BIT_ALLOC( | ||
678 | vdec_gof_length, | ||
679 | vdec_gofs_per_sec | ||
680 | ) | ||
681 | |||
682 | u32 vdec_input_buf_strm_config; | ||
683 | /* inputBufStrmConfig: rsConfig for the input buffer to the decimator | ||
684 | (buffer size = 64 dwords) */ | ||
685 | u32 vdec_coef_increment; | ||
686 | /* coefIncrement = - 128.0 / decimationFactor (as a 32Q15 number) */ | ||
687 | |||
688 | u32 vdec_accumphi; | ||
689 | /* accumPhi: accumulated fractional phase increment (6.26) */ | ||
690 | |||
691 | ___DSP_DUAL_16BIT_ALLOC( | ||
692 | vdec_exp_vol_change_rate, | ||
693 | vdec_input_buf_producer_ptr | ||
694 | ) | ||
695 | /* inputBufProducerPtr: Input buffer write pointer | ||
696 | expVolChangeRate: Exponential volume change rate for possible | ||
697 | future mixer on input streams */ | ||
698 | |||
699 | ___DSP_DUAL_16BIT_ALLOC( | ||
700 | vdec_next_scb, | ||
701 | vdec_sub_list_ptr | ||
702 | ) | ||
703 | |||
704 | ___DSP_DUAL_16BIT_ALLOC( | ||
705 | vdec_entry_point, | ||
706 | vdec_this_spb | ||
707 | ) | ||
708 | |||
709 | u32 vdec_strm_rs_config; | ||
710 | u32 vdec_strm_buf_ptr; | ||
711 | |||
712 | u32 vdec_phi_incr_6int_26frac; | ||
713 | |||
714 | struct dsp_volume_control vdec_vol_ctrl; | ||
715 | }; | ||
716 | |||
717 | |||
718 | /* SCB for MIX_TO_OSTREAM algorithm family */ | ||
719 | struct dsp_mix2_ostream_scb { | ||
720 | /* First 13 dwords from generic_scb_t */ | ||
721 | struct dsp_basic_dma_req basic_req; /* Optional */ | ||
722 | struct dsp_scatter_gather_ext sg_ext; /* Optional */ | ||
723 | ___DSP_DUAL_16BIT_ALLOC( | ||
724 | next_scb, /* REQUIRED */ | ||
725 | sub_list_ptr /* REQUIRED */ | ||
726 | ) | ||
727 | |||
728 | ___DSP_DUAL_16BIT_ALLOC( | ||
729 | entry_point, /* REQUIRED */ | ||
730 | this_spb /* REQUIRED */ | ||
731 | ) | ||
732 | |||
733 | u32 strm_rs_config; /* REQUIRED */ | ||
734 | u32 strm_buf_ptr; /* REQUIRED */ | ||
735 | |||
736 | |||
737 | /* hi: Number of mixed-down input triplets | ||
738 | computed since start of group | ||
739 | lo: Number of frames remaining to be | ||
740 | processed in the current group of | ||
741 | frames | ||
742 | */ | ||
743 | ___DSP_DUAL_16BIT_ALLOC( | ||
744 | frames_left_in_group, | ||
745 | accum_input_triplets | ||
746 | ) | ||
747 | |||
748 | /* hi: Exponential volume change rate | ||
749 | for mixer on input streams | ||
750 | lo: Number of frames in the group | ||
751 | */ | ||
752 | ___DSP_DUAL_16BIT_ALLOC( | ||
753 | frame_group_length, | ||
754 | exp_vol_change_rate | ||
755 | ) | ||
756 | |||
757 | ___DSP_DUAL_16BIT_ALLOC( | ||
758 | const_FFFF, | ||
759 | const_zero | ||
760 | ) | ||
761 | }; | ||
762 | |||
763 | |||
764 | /* SCB for S16_MIX algorithm */ | ||
765 | struct dsp_mix_only_scb { | ||
766 | /* First 13 dwords from generic_scb_t */ | ||
767 | struct dsp_basic_dma_req basic_req; /* Optional */ | ||
768 | struct dsp_scatter_gather_ext sg_ext; /* Optional */ | ||
769 | ___DSP_DUAL_16BIT_ALLOC( | ||
770 | next_scb, /* REQUIRED */ | ||
771 | sub_list_ptr /* REQUIRED */ | ||
772 | ) | ||
773 | |||
774 | ___DSP_DUAL_16BIT_ALLOC( | ||
775 | entry_point, /* REQUIRED */ | ||
776 | this_spb /* REQUIRED */ | ||
777 | ) | ||
778 | |||
779 | u32 strm_rs_config; /* REQUIRED */ | ||
780 | u32 strm_buf_ptr; /* REQUIRED */ | ||
781 | |||
782 | u32 reserved; | ||
783 | struct dsp_volume_control vol_ctrl; | ||
784 | }; | ||
785 | |||
786 | /* SCB for the async. CODEC input algorithm */ | ||
787 | struct dsp_async_codec_input_scb { | ||
788 | u32 io_free2; | ||
789 | |||
790 | u32 io_current_total; | ||
791 | u32 io_previous_total; | ||
792 | |||
793 | u16 io_count; | ||
794 | u16 io_count_limit; | ||
795 | |||
796 | u16 o_fifo_base_addr; | ||
797 | u16 ost_mo_format; | ||
798 | /* 1 = stereo; 0 = mono | ||
799 | xxx for ASER 1 (not allowed); 118 for ASER2 */ | ||
800 | |||
801 | u32 ostrm_rs_config; | ||
802 | u32 ostrm_buf_ptr; | ||
803 | |||
804 | ___DSP_DUAL_16BIT_ALLOC( | ||
805 | io_sclks_per_lr_clk, | ||
806 | io_io_enable | ||
807 | ) | ||
808 | |||
809 | u32 io_free4; | ||
810 | |||
811 | ___DSP_DUAL_16BIT_ALLOC( | ||
812 | io_next_scb, | ||
813 | io_sub_list_ptr | ||
814 | ) | ||
815 | |||
816 | ___DSP_DUAL_16BIT_ALLOC( | ||
817 | io_entry_point, | ||
818 | io_this_spb | ||
819 | ) | ||
820 | |||
821 | u32 istrm_rs_config; | ||
822 | u32 istrm_buf_ptr; | ||
823 | |||
824 | /* Init. 0000:8042: for ASER1 | ||
825 | 0000:8044: for ASER2 */ | ||
826 | ___DSP_DUAL_16BIT_ALLOC( | ||
827 | io_stat_reg_addr, | ||
828 | iofifo_pointer | ||
829 | ) | ||
830 | |||
831 | /* Init 1 stero:100 ASER1 | ||
832 | Init 0 mono:110 ASER2 | ||
833 | */ | ||
834 | ___DSP_DUAL_16BIT_ALLOC( | ||
835 | ififo_base_addr, | ||
836 | ist_mo_format | ||
837 | ) | ||
838 | |||
839 | u32 i_free; | ||
840 | }; | ||
841 | |||
842 | |||
843 | /* SCB for the SP/DIF CODEC input and output */ | ||
844 | struct dsp_spdifiscb { | ||
845 | ___DSP_DUAL_16BIT_ALLOC( | ||
846 | status_ptr, | ||
847 | status_start_ptr | ||
848 | ) | ||
849 | |||
850 | u32 current_total; | ||
851 | u32 previous_total; | ||
852 | |||
853 | ___DSP_DUAL_16BIT_ALLOC( | ||
854 | count, | ||
855 | count_limit | ||
856 | ) | ||
857 | |||
858 | u32 status_data; | ||
859 | |||
860 | ___DSP_DUAL_16BIT_ALLOC( | ||
861 | status, | ||
862 | free4 | ||
863 | ) | ||
864 | |||
865 | u32 free3; | ||
866 | |||
867 | ___DSP_DUAL_16BIT_ALLOC( | ||
868 | free2, | ||
869 | bit_count | ||
870 | ) | ||
871 | |||
872 | u32 temp_status; | ||
873 | |||
874 | ___DSP_DUAL_16BIT_ALLOC( | ||
875 | next_SCB, | ||
876 | sub_list_ptr | ||
877 | ) | ||
878 | |||
879 | ___DSP_DUAL_16BIT_ALLOC( | ||
880 | entry_point, | ||
881 | this_spb | ||
882 | ) | ||
883 | |||
884 | u32 strm_rs_config; | ||
885 | u32 strm_buf_ptr; | ||
886 | |||
887 | ___DSP_DUAL_16BIT_ALLOC( | ||
888 | stat_reg_addr, | ||
889 | fifo_pointer | ||
890 | ) | ||
891 | |||
892 | ___DSP_DUAL_16BIT_ALLOC( | ||
893 | fifo_base_addr, | ||
894 | st_mo_format | ||
895 | ) | ||
896 | |||
897 | u32 free1; | ||
898 | }; | ||
899 | |||
900 | |||
901 | /* SCB for the SP/DIF CODEC input and output */ | ||
902 | struct dsp_spdifoscb { | ||
903 | |||
904 | u32 free2; | ||
905 | |||
906 | u32 free3[4]; | ||
907 | |||
908 | /* Need to be here for compatibility with AsynchFGTxCode */ | ||
909 | u32 strm_rs_config; | ||
910 | |||
911 | u32 strm_buf_ptr; | ||
912 | |||
913 | ___DSP_DUAL_16BIT_ALLOC( | ||
914 | status, | ||
915 | free5 | ||
916 | ) | ||
917 | |||
918 | u32 free4; | ||
919 | |||
920 | ___DSP_DUAL_16BIT_ALLOC( | ||
921 | next_scb, | ||
922 | sub_list_ptr | ||
923 | ) | ||
924 | |||
925 | ___DSP_DUAL_16BIT_ALLOC( | ||
926 | entry_point, | ||
927 | this_spb | ||
928 | ) | ||
929 | |||
930 | u32 free6[2]; | ||
931 | |||
932 | ___DSP_DUAL_16BIT_ALLOC( | ||
933 | stat_reg_addr, | ||
934 | fifo_pointer | ||
935 | ) | ||
936 | |||
937 | ___DSP_DUAL_16BIT_ALLOC( | ||
938 | fifo_base_addr, | ||
939 | st_mo_format | ||
940 | ) | ||
941 | |||
942 | u32 free1; | ||
943 | }; | ||
944 | |||
945 | |||
946 | struct dsp_asynch_fg_rx_scb { | ||
947 | ___DSP_DUAL_16BIT_ALLOC( | ||
948 | bot_buf_mask, | ||
949 | buf_Mask | ||
950 | ) | ||
951 | |||
952 | ___DSP_DUAL_16BIT_ALLOC( | ||
953 | max, | ||
954 | min | ||
955 | ) | ||
956 | |||
957 | ___DSP_DUAL_16BIT_ALLOC( | ||
958 | old_producer_pointer, | ||
959 | hfg_scb_ptr | ||
960 | ) | ||
961 | |||
962 | ___DSP_DUAL_16BIT_ALLOC( | ||
963 | delta, | ||
964 | adjust_count | ||
965 | ) | ||
966 | |||
967 | u32 unused2[5]; | ||
968 | |||
969 | ___DSP_DUAL_16BIT_ALLOC( | ||
970 | sibling_ptr, | ||
971 | child_ptr | ||
972 | ) | ||
973 | |||
974 | ___DSP_DUAL_16BIT_ALLOC( | ||
975 | code_ptr, | ||
976 | this_ptr | ||
977 | ) | ||
978 | |||
979 | u32 strm_rs_config; | ||
980 | |||
981 | u32 strm_buf_ptr; | ||
982 | |||
983 | u32 unused_phi_incr; | ||
984 | |||
985 | ___DSP_DUAL_16BIT_ALLOC( | ||
986 | right_targ, | ||
987 | left_targ | ||
988 | ) | ||
989 | |||
990 | ___DSP_DUAL_16BIT_ALLOC( | ||
991 | right_vol, | ||
992 | left_vol | ||
993 | ) | ||
994 | }; | ||
995 | |||
996 | |||
997 | struct dsp_asynch_fg_tx_scb { | ||
998 | ___DSP_DUAL_16BIT_ALLOC( | ||
999 | not_buf_mask, | ||
1000 | buf_mask | ||
1001 | ) | ||
1002 | |||
1003 | ___DSP_DUAL_16BIT_ALLOC( | ||
1004 | max, | ||
1005 | min | ||
1006 | ) | ||
1007 | |||
1008 | ___DSP_DUAL_16BIT_ALLOC( | ||
1009 | unused1, | ||
1010 | hfg_scb_ptr | ||
1011 | ) | ||
1012 | |||
1013 | ___DSP_DUAL_16BIT_ALLOC( | ||
1014 | delta, | ||
1015 | adjust_count | ||
1016 | ) | ||
1017 | |||
1018 | u32 accum_phi; | ||
1019 | |||
1020 | ___DSP_DUAL_16BIT_ALLOC( | ||
1021 | unused2, | ||
1022 | const_one_third | ||
1023 | ) | ||
1024 | |||
1025 | u32 unused3[3]; | ||
1026 | |||
1027 | ___DSP_DUAL_16BIT_ALLOC( | ||
1028 | sibling_ptr, | ||
1029 | child_ptr | ||
1030 | ) | ||
1031 | |||
1032 | ___DSP_DUAL_16BIT_ALLOC( | ||
1033 | codePtr, | ||
1034 | this_ptr | ||
1035 | ) | ||
1036 | |||
1037 | u32 strm_rs_config; | ||
1038 | |||
1039 | u32 strm_buf_ptr; | ||
1040 | |||
1041 | u32 phi_incr; | ||
1042 | |||
1043 | ___DSP_DUAL_16BIT_ALLOC( | ||
1044 | unused_right_targ, | ||
1045 | unused_left_targ | ||
1046 | ) | ||
1047 | |||
1048 | ___DSP_DUAL_16BIT_ALLOC( | ||
1049 | unused_right_vol, | ||
1050 | unused_left_vol | ||
1051 | ) | ||
1052 | }; | ||
1053 | |||
1054 | |||
1055 | struct dsp_output_snoop_scb { | ||
1056 | /* First 13 dwords from generic_scb_t */ | ||
1057 | struct dsp_basic_dma_req basic_req; /* Optional */ | ||
1058 | struct dsp_scatter_gather_ext sg_ext; /* Optional */ | ||
1059 | ___DSP_DUAL_16BIT_ALLOC( | ||
1060 | next_scb, /* REQUIRED */ | ||
1061 | sub_list_ptr /* REQUIRED */ | ||
1062 | ) | ||
1063 | |||
1064 | ___DSP_DUAL_16BIT_ALLOC( | ||
1065 | entry_point, /* REQUIRED */ | ||
1066 | this_spb /* REQUIRED */ | ||
1067 | ) | ||
1068 | |||
1069 | u32 strm_rs_config; /* REQUIRED */ | ||
1070 | u32 strm_buf_ptr; /* REQUIRED */ | ||
1071 | |||
1072 | ___DSP_DUAL_16BIT_ALLOC( | ||
1073 | init_snoop_input_link, | ||
1074 | snoop_child_input_scb | ||
1075 | ) | ||
1076 | |||
1077 | u32 snoop_input_buf_ptr; | ||
1078 | |||
1079 | ___DSP_DUAL_16BIT_ALLOC( | ||
1080 | reserved, | ||
1081 | input_scb | ||
1082 | ) | ||
1083 | }; | ||
1084 | |||
1085 | struct dsp_spio_write_scb { | ||
1086 | ___DSP_DUAL_16BIT_ALLOC( | ||
1087 | address1, | ||
1088 | address2 | ||
1089 | ) | ||
1090 | |||
1091 | u32 data1; | ||
1092 | |||
1093 | u32 data2; | ||
1094 | |||
1095 | ___DSP_DUAL_16BIT_ALLOC( | ||
1096 | address3, | ||
1097 | address4 | ||
1098 | ) | ||
1099 | |||
1100 | u32 data3; | ||
1101 | |||
1102 | u32 data4; | ||
1103 | |||
1104 | ___DSP_DUAL_16BIT_ALLOC( | ||
1105 | unused1, | ||
1106 | data_ptr | ||
1107 | ) | ||
1108 | |||
1109 | u32 unused2[2]; | ||
1110 | |||
1111 | ___DSP_DUAL_16BIT_ALLOC( | ||
1112 | sibling_ptr, | ||
1113 | child_ptr | ||
1114 | ) | ||
1115 | |||
1116 | ___DSP_DUAL_16BIT_ALLOC( | ||
1117 | entry_point, | ||
1118 | this_ptr | ||
1119 | ) | ||
1120 | |||
1121 | u32 unused3[5]; | ||
1122 | }; | ||
1123 | |||
1124 | struct dsp_magic_snoop_task { | ||
1125 | u32 i0; | ||
1126 | u32 i1; | ||
1127 | |||
1128 | u32 strm_buf_ptr1; | ||
1129 | |||
1130 | u16 i2; | ||
1131 | u16 snoop_scb; | ||
1132 | |||
1133 | u32 i3; | ||
1134 | u32 i4; | ||
1135 | u32 i5; | ||
1136 | u32 i6; | ||
1137 | |||
1138 | u32 i7; | ||
1139 | |||
1140 | ___DSP_DUAL_16BIT_ALLOC( | ||
1141 | next_scb, | ||
1142 | sub_list_ptr | ||
1143 | ) | ||
1144 | |||
1145 | ___DSP_DUAL_16BIT_ALLOC( | ||
1146 | entry_point, | ||
1147 | this_ptr | ||
1148 | ) | ||
1149 | |||
1150 | u32 strm_buf_config; | ||
1151 | u32 strm_buf_ptr2; | ||
1152 | |||
1153 | u32 i8; | ||
1154 | |||
1155 | struct dsp_volume_control vdec_vol_ctrl; | ||
1156 | }; | ||
1157 | |||
1158 | |||
1159 | struct dsp_filter_scb { | ||
1160 | ___DSP_DUAL_16BIT_ALLOC( | ||
1161 | a0_right, /* 0x00 */ | ||
1162 | a0_left | ||
1163 | ) | ||
1164 | ___DSP_DUAL_16BIT_ALLOC( | ||
1165 | a1_right, /* 0x01 */ | ||
1166 | a1_left | ||
1167 | ) | ||
1168 | ___DSP_DUAL_16BIT_ALLOC( | ||
1169 | a2_right, /* 0x02 */ | ||
1170 | a2_left | ||
1171 | ) | ||
1172 | ___DSP_DUAL_16BIT_ALLOC( | ||
1173 | output_buf_ptr, /* 0x03 */ | ||
1174 | init | ||
1175 | ) | ||
1176 | |||
1177 | ___DSP_DUAL_16BIT_ALLOC( | ||
1178 | filter_unused3, /* 0x04 */ | ||
1179 | filter_unused2 | ||
1180 | ) | ||
1181 | |||
1182 | u32 prev_sample_output1; /* 0x05 */ | ||
1183 | u32 prev_sample_output2; /* 0x06 */ | ||
1184 | u32 prev_sample_input1; /* 0x07 */ | ||
1185 | u32 prev_sample_input2; /* 0x08 */ | ||
1186 | |||
1187 | ___DSP_DUAL_16BIT_ALLOC( | ||
1188 | next_scb_ptr, /* 0x09 */ | ||
1189 | sub_list_ptr | ||
1190 | ) | ||
1191 | |||
1192 | ___DSP_DUAL_16BIT_ALLOC( | ||
1193 | entry_point, /* 0x0A */ | ||
1194 | spb_ptr | ||
1195 | ) | ||
1196 | |||
1197 | u32 strm_rs_config; /* 0x0B */ | ||
1198 | u32 strm_buf_ptr; /* 0x0C */ | ||
1199 | |||
1200 | ___DSP_DUAL_16BIT_ALLOC( | ||
1201 | b0_right, /* 0x0D */ | ||
1202 | b0_left | ||
1203 | ) | ||
1204 | ___DSP_DUAL_16BIT_ALLOC( | ||
1205 | b1_right, /* 0x0E */ | ||
1206 | b1_left | ||
1207 | ) | ||
1208 | ___DSP_DUAL_16BIT_ALLOC( | ||
1209 | b2_right, /* 0x0F */ | ||
1210 | b2_left | ||
1211 | ) | ||
1212 | }; | ||
1213 | #endif /* __DSP_SCB_TYPES_H__ */ | ||
diff --git a/include/sound/cs46xx_dsp_spos.h b/include/sound/cs46xx_dsp_spos.h deleted file mode 100644 index 8008c59288a6..000000000000 --- a/include/sound/cs46xx_dsp_spos.h +++ /dev/null | |||
@@ -1,234 +0,0 @@ | |||
1 | /* | ||
2 | * The driver for the Cirrus Logic's Sound Fusion CS46XX based soundcards | ||
3 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> | ||
4 | * | ||
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 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | * | ||
20 | */ | ||
21 | |||
22 | #ifndef __CS46XX_DSP_SPOS_H__ | ||
23 | #define __CS46XX_DSP_SPOS_H__ | ||
24 | |||
25 | #include "cs46xx_dsp_scb_types.h" | ||
26 | #include "cs46xx_dsp_task_types.h" | ||
27 | |||
28 | #define SYMBOL_CONSTANT 0x0 | ||
29 | #define SYMBOL_SAMPLE 0x1 | ||
30 | #define SYMBOL_PARAMETER 0x2 | ||
31 | #define SYMBOL_CODE 0x3 | ||
32 | |||
33 | #define SEGTYPE_SP_PROGRAM 0x00000001 | ||
34 | #define SEGTYPE_SP_PARAMETER 0x00000002 | ||
35 | #define SEGTYPE_SP_SAMPLE 0x00000003 | ||
36 | #define SEGTYPE_SP_COEFFICIENT 0x00000004 | ||
37 | |||
38 | #define DSP_SPOS_UU 0x0deadul /* unused */ | ||
39 | #define DSP_SPOS_DC 0x0badul /* don't care */ | ||
40 | #define DSP_SPOS_DC_DC 0x0bad0badul /* don't care */ | ||
41 | #define DSP_SPOS_UUUU 0xdeadc0edul /* unused */ | ||
42 | #define DSP_SPOS_UUHI 0xdeadul | ||
43 | #define DSP_SPOS_UULO 0xc0edul | ||
44 | #define DSP_SPOS_DCDC 0x0badf1d0ul /* don't care */ | ||
45 | #define DSP_SPOS_DCDCHI 0x0badul | ||
46 | #define DSP_SPOS_DCDCLO 0xf1d0ul | ||
47 | |||
48 | #define DSP_MAX_TASK_NAME 60 | ||
49 | #define DSP_MAX_SYMBOL_NAME 100 | ||
50 | #define DSP_MAX_SCB_NAME 60 | ||
51 | #define DSP_MAX_SCB_DESC 200 | ||
52 | #define DSP_MAX_TASK_DESC 50 | ||
53 | |||
54 | #define DSP_MAX_PCM_CHANNELS 32 | ||
55 | #define DSP_MAX_SRC_NR 14 | ||
56 | |||
57 | #define DSP_PCM_MAIN_CHANNEL 1 | ||
58 | #define DSP_PCM_REAR_CHANNEL 2 | ||
59 | #define DSP_PCM_CENTER_LFE_CHANNEL 3 | ||
60 | #define DSP_PCM_S71_CHANNEL 4 /* surround 7.1 */ | ||
61 | #define DSP_IEC958_CHANNEL 5 | ||
62 | |||
63 | #define DSP_SPDIF_STATUS_OUTPUT_ENABLED 1 | ||
64 | #define DSP_SPDIF_STATUS_PLAYBACK_OPEN 2 | ||
65 | #define DSP_SPDIF_STATUS_HW_ENABLED 4 | ||
66 | #define DSP_SPDIF_STATUS_INPUT_CTRL_ENABLED 8 | ||
67 | |||
68 | struct dsp_symbol_entry { | ||
69 | u32 address; | ||
70 | char symbol_name[DSP_MAX_SYMBOL_NAME]; | ||
71 | int symbol_type; | ||
72 | |||
73 | /* initialized by driver */ | ||
74 | struct dsp_module_desc * module; | ||
75 | int deleted; | ||
76 | }; | ||
77 | |||
78 | struct dsp_symbol_desc { | ||
79 | int nsymbols; | ||
80 | |||
81 | struct dsp_symbol_entry *symbols; | ||
82 | |||
83 | /* initialized by driver */ | ||
84 | int highest_frag_index; | ||
85 | }; | ||
86 | |||
87 | struct dsp_segment_desc { | ||
88 | int segment_type; | ||
89 | u32 offset; | ||
90 | u32 size; | ||
91 | u32 * data; | ||
92 | }; | ||
93 | |||
94 | struct dsp_module_desc { | ||
95 | char * module_name; | ||
96 | struct dsp_symbol_desc symbol_table; | ||
97 | int nsegments; | ||
98 | struct dsp_segment_desc * segments; | ||
99 | |||
100 | /* initialized by driver */ | ||
101 | u32 overlay_begin_address; | ||
102 | u32 load_address; | ||
103 | int nfixups; | ||
104 | }; | ||
105 | |||
106 | struct dsp_scb_descriptor { | ||
107 | char scb_name[DSP_MAX_SCB_NAME]; | ||
108 | u32 address; | ||
109 | int index; | ||
110 | u32 *data; | ||
111 | |||
112 | struct dsp_scb_descriptor * sub_list_ptr; | ||
113 | struct dsp_scb_descriptor * next_scb_ptr; | ||
114 | struct dsp_scb_descriptor * parent_scb_ptr; | ||
115 | |||
116 | struct dsp_symbol_entry * task_entry; | ||
117 | struct dsp_symbol_entry * scb_symbol; | ||
118 | |||
119 | struct snd_info_entry *proc_info; | ||
120 | int ref_count; | ||
121 | |||
122 | u16 volume[2]; | ||
123 | unsigned int deleted :1; | ||
124 | unsigned int updated :1; | ||
125 | unsigned int volume_set :1; | ||
126 | }; | ||
127 | |||
128 | struct dsp_task_descriptor { | ||
129 | char task_name[DSP_MAX_TASK_NAME]; | ||
130 | int size; | ||
131 | u32 address; | ||
132 | int index; | ||
133 | u32 *data; | ||
134 | }; | ||
135 | |||
136 | struct dsp_pcm_channel_descriptor { | ||
137 | int active; | ||
138 | int src_slot; | ||
139 | int pcm_slot; | ||
140 | u32 sample_rate; | ||
141 | u32 unlinked; | ||
142 | struct dsp_scb_descriptor * pcm_reader_scb; | ||
143 | struct dsp_scb_descriptor * src_scb; | ||
144 | struct dsp_scb_descriptor * mixer_scb; | ||
145 | |||
146 | void * private_data; | ||
147 | }; | ||
148 | |||
149 | struct dsp_spos_instance { | ||
150 | struct dsp_symbol_desc symbol_table; /* currently available loaded symbols in SP */ | ||
151 | |||
152 | int nmodules; | ||
153 | struct dsp_module_desc * modules; /* modules loaded into SP */ | ||
154 | |||
155 | struct dsp_segment_desc code; | ||
156 | |||
157 | /* Main PCM playback mixer */ | ||
158 | struct dsp_scb_descriptor * master_mix_scb; | ||
159 | u16 dac_volume_right; | ||
160 | u16 dac_volume_left; | ||
161 | |||
162 | /* Rear/surround PCM playback mixer */ | ||
163 | struct dsp_scb_descriptor * rear_mix_scb; | ||
164 | |||
165 | /* Center/LFE mixer */ | ||
166 | struct dsp_scb_descriptor * center_lfe_mix_scb; | ||
167 | |||
168 | int npcm_channels; | ||
169 | int nsrc_scb; | ||
170 | struct dsp_pcm_channel_descriptor pcm_channels[DSP_MAX_PCM_CHANNELS]; | ||
171 | int src_scb_slots[DSP_MAX_SRC_NR]; | ||
172 | |||
173 | /* cache this symbols */ | ||
174 | struct dsp_symbol_entry * null_algorithm; /* used by PCMreaderSCB's */ | ||
175 | struct dsp_symbol_entry * s16_up; /* used by SRCtaskSCB's */ | ||
176 | |||
177 | /* proc fs */ | ||
178 | struct snd_card *snd_card; | ||
179 | struct snd_info_entry * proc_dsp_dir; | ||
180 | struct snd_info_entry * proc_sym_info_entry; | ||
181 | struct snd_info_entry * proc_modules_info_entry; | ||
182 | struct snd_info_entry * proc_parameter_dump_info_entry; | ||
183 | struct snd_info_entry * proc_sample_dump_info_entry; | ||
184 | |||
185 | /* SCB's descriptors */ | ||
186 | int nscb; | ||
187 | int scb_highest_frag_index; | ||
188 | struct dsp_scb_descriptor scbs[DSP_MAX_SCB_DESC]; | ||
189 | struct snd_info_entry * proc_scb_info_entry; | ||
190 | struct dsp_scb_descriptor * the_null_scb; | ||
191 | |||
192 | /* Task's descriptors */ | ||
193 | int ntask; | ||
194 | struct dsp_task_descriptor tasks[DSP_MAX_TASK_DESC]; | ||
195 | struct snd_info_entry * proc_task_info_entry; | ||
196 | |||
197 | /* SPDIF status */ | ||
198 | int spdif_status_out; | ||
199 | int spdif_status_in; | ||
200 | u16 spdif_input_volume_right; | ||
201 | u16 spdif_input_volume_left; | ||
202 | /* spdif channel status, | ||
203 | left right and user validity bits */ | ||
204 | unsigned int spdif_csuv_default; | ||
205 | unsigned int spdif_csuv_stream; | ||
206 | |||
207 | /* SPDIF input sample rate converter */ | ||
208 | struct dsp_scb_descriptor * spdif_in_src; | ||
209 | /* SPDIF input asynch. receiver */ | ||
210 | struct dsp_scb_descriptor * asynch_rx_scb; | ||
211 | |||
212 | /* Capture record mixer SCB */ | ||
213 | struct dsp_scb_descriptor * record_mixer_scb; | ||
214 | |||
215 | /* CODEC input SCB */ | ||
216 | struct dsp_scb_descriptor * codec_in_scb; | ||
217 | |||
218 | /* reference snooper */ | ||
219 | struct dsp_scb_descriptor * ref_snoop_scb; | ||
220 | |||
221 | /* SPDIF output PCM reference */ | ||
222 | struct dsp_scb_descriptor * spdif_pcm_input_scb; | ||
223 | |||
224 | /* asynch TX task */ | ||
225 | struct dsp_scb_descriptor * asynch_tx_scb; | ||
226 | |||
227 | /* record sources */ | ||
228 | struct dsp_scb_descriptor * pcm_input; | ||
229 | struct dsp_scb_descriptor * adc_input; | ||
230 | |||
231 | int spdif_in_sample_rate; | ||
232 | }; | ||
233 | |||
234 | #endif /* __DSP_SPOS_H__ */ | ||
diff --git a/include/sound/cs46xx_dsp_task_types.h b/include/sound/cs46xx_dsp_task_types.h deleted file mode 100644 index 5cf920bfda27..000000000000 --- a/include/sound/cs46xx_dsp_task_types.h +++ /dev/null | |||
@@ -1,252 +0,0 @@ | |||
1 | /* | ||
2 | * The driver for the Cirrus Logic's Sound Fusion CS46XX based soundcards | ||
3 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> | ||
4 | * | ||
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 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | * | ||
20 | * | ||
21 | * NOTE: comments are copy/paste from cwcemb80.lst | ||
22 | * provided by Tom Woller at Cirrus (my only | ||
23 | * documentation about the SP OS running inside | ||
24 | * the DSP) | ||
25 | */ | ||
26 | |||
27 | #ifndef __CS46XX_DSP_TASK_TYPES_H__ | ||
28 | #define __CS46XX_DSP_TASK_TYPES_H__ | ||
29 | |||
30 | #include "cs46xx_dsp_scb_types.h" | ||
31 | |||
32 | /********************************************************************************************* | ||
33 | Example hierarchy of stream control blocks in the SP | ||
34 | |||
35 | hfgTree | ||
36 | Ptr____Call (c) | ||
37 | \ | ||
38 | -------+------ ------------- ------------- ------------- ----- | ||
39 | | SBlaster IF |______\| Foreground |___\| Middlegr'nd |___\| Background |___\| Nul | | ||
40 | | |Goto /| tree header |g /| tree header |g /| tree header |g /| SCB |r | ||
41 | -------------- (g) ------------- ------------- ------------- ----- | ||
42 | |c |c |c |c | ||
43 | | | | | | ||
44 | \/ ------------- ------------- ------------- | ||
45 | | Foreground |_\ | Middlegr'nd |_\ | Background |_\ | ||
46 | | tree |g/ | tree |g/ | tree |g/ | ||
47 | ------------- ------------- ------------- | ||
48 | |c |c |c | ||
49 | | | | | ||
50 | \/ \/ \/ | ||
51 | |||
52 | *********************************************************************************************/ | ||
53 | |||
54 | #define HFG_FIRST_EXECUTE_MODE 0x0001 | ||
55 | #define HFG_FIRST_EXECUTE_MODE_BIT 0 | ||
56 | #define HFG_CONTEXT_SWITCH_MODE 0x0002 | ||
57 | #define HFG_CONTEXT_SWITCH_MODE_BIT 1 | ||
58 | |||
59 | #define MAX_FG_STACK_SIZE 32 /* THESE NEED TO BE COMPUTED PROPERLY */ | ||
60 | #define MAX_MG_STACK_SIZE 16 | ||
61 | #define MAX_BG_STACK_SIZE 9 | ||
62 | #define MAX_HFG_STACK_SIZE 4 | ||
63 | |||
64 | #define SLEEP_ACTIVE_INCREMENT 0 /* Enable task tree thread to go to sleep | ||
65 | This should only ever be used on the Background thread */ | ||
66 | #define STANDARD_ACTIVE_INCREMENT 1 /* Task tree thread normal operation */ | ||
67 | #define SUSPEND_ACTIVE_INCREMENT 2 /* Cause execution to suspend in the task tree thread | ||
68 | This should only ever be used on the Background thread */ | ||
69 | |||
70 | #define HOSTFLAGS_DISABLE_BG_SLEEP 0 /* Host-controlled flag that determines whether we go to sleep | ||
71 | at the end of BG */ | ||
72 | |||
73 | /* Minimal context save area for Hyper Forground */ | ||
74 | struct dsp_hf_save_area { | ||
75 | u32 r10_save; | ||
76 | u32 r54_save; | ||
77 | u32 r98_save; | ||
78 | |||
79 | ___DSP_DUAL_16BIT_ALLOC( | ||
80 | status_save, | ||
81 | ind_save | ||
82 | ) | ||
83 | |||
84 | ___DSP_DUAL_16BIT_ALLOC( | ||
85 | rci1_save, | ||
86 | rci0_save | ||
87 | ) | ||
88 | |||
89 | u32 r32_save; | ||
90 | u32 r76_save; | ||
91 | u32 rsd2_save; | ||
92 | |||
93 | ___DSP_DUAL_16BIT_ALLOC( | ||
94 | rsi2_save, /* See TaskTreeParameterBlock for | ||
95 | remainder of registers */ | ||
96 | rsa2Save | ||
97 | ) | ||
98 | /* saved as part of HFG context */ | ||
99 | }; | ||
100 | |||
101 | |||
102 | /* Task link data structure */ | ||
103 | struct dsp_tree_link { | ||
104 | ___DSP_DUAL_16BIT_ALLOC( | ||
105 | /* Pointer to sibling task control block */ | ||
106 | next_scb, | ||
107 | /* Pointer to child task control block */ | ||
108 | sub_ptr | ||
109 | ) | ||
110 | |||
111 | ___DSP_DUAL_16BIT_ALLOC( | ||
112 | /* Pointer to code entry point */ | ||
113 | entry_point, | ||
114 | /* Pointer to local data */ | ||
115 | this_spb | ||
116 | ) | ||
117 | }; | ||
118 | |||
119 | |||
120 | struct dsp_task_tree_data { | ||
121 | ___DSP_DUAL_16BIT_ALLOC( | ||
122 | /* Initial tock count; controls task tree execution rate */ | ||
123 | tock_count_limit, | ||
124 | /* Tock down counter */ | ||
125 | tock_count | ||
126 | ) | ||
127 | |||
128 | /* Add to ActiveCount when TockCountLimit reached: | ||
129 | Subtract on task tree termination */ | ||
130 | ___DSP_DUAL_16BIT_ALLOC( | ||
131 | active_tncrement, | ||
132 | /* Number of pending activations for task tree */ | ||
133 | active_count | ||
134 | ) | ||
135 | |||
136 | ___DSP_DUAL_16BIT_ALLOC( | ||
137 | /* BitNumber to enable modification of correct bit in ActiveTaskFlags */ | ||
138 | active_bit, | ||
139 | /* Pointer to OS location for indicating current activity on task level */ | ||
140 | active_task_flags_ptr | ||
141 | ) | ||
142 | |||
143 | /* Data structure for controlling movement of memory blocks:- | ||
144 | currently unused */ | ||
145 | ___DSP_DUAL_16BIT_ALLOC( | ||
146 | mem_upd_ptr, | ||
147 | /* Data structure for controlling synchronous link update */ | ||
148 | link_upd_ptr | ||
149 | ) | ||
150 | |||
151 | ___DSP_DUAL_16BIT_ALLOC( | ||
152 | /* Save area for remainder of full context. */ | ||
153 | save_area, | ||
154 | /* Address of start of local stack for data storage */ | ||
155 | data_stack_base_ptr | ||
156 | ) | ||
157 | |||
158 | }; | ||
159 | |||
160 | |||
161 | struct dsp_interval_timer_data | ||
162 | { | ||
163 | /* These data items have the same relative locations to those */ | ||
164 | ___DSP_DUAL_16BIT_ALLOC( | ||
165 | interval_timer_period, | ||
166 | itd_unused | ||
167 | ) | ||
168 | |||
169 | /* used for this data in the SPOS control block for SPOS 1.0 */ | ||
170 | ___DSP_DUAL_16BIT_ALLOC( | ||
171 | num_FG_ticks_this_interval, | ||
172 | num_intervals | ||
173 | ) | ||
174 | }; | ||
175 | |||
176 | |||
177 | /* This structure contains extra storage for the task tree | ||
178 | Currently, this additional data is related only to a full context save */ | ||
179 | struct dsp_task_tree_context_block { | ||
180 | /* Up to 10 values are saved onto the stack. 8 for the task tree, 1 for | ||
181 | The access to the context switch (call or interrupt), and 1 spare that | ||
182 | users should never use. This last may be required by the system */ | ||
183 | ___DSP_DUAL_16BIT_ALLOC( | ||
184 | stack1, | ||
185 | stack0 | ||
186 | ) | ||
187 | ___DSP_DUAL_16BIT_ALLOC( | ||
188 | stack3, | ||
189 | stack2 | ||
190 | ) | ||
191 | ___DSP_DUAL_16BIT_ALLOC( | ||
192 | stack5, | ||
193 | stack4 | ||
194 | ) | ||
195 | ___DSP_DUAL_16BIT_ALLOC( | ||
196 | stack7, | ||
197 | stack6 | ||
198 | ) | ||
199 | ___DSP_DUAL_16BIT_ALLOC( | ||
200 | stack9, | ||
201 | stack8 | ||
202 | ) | ||
203 | |||
204 | u32 saverfe; | ||
205 | |||
206 | /* Value may be overwriten by stack save algorithm. | ||
207 | Retain the size of the stack data saved here if used */ | ||
208 | ___DSP_DUAL_16BIT_ALLOC( | ||
209 | reserved1, | ||
210 | stack_size | ||
211 | ) | ||
212 | u32 saverba; /* (HFG) */ | ||
213 | u32 saverdc; | ||
214 | u32 savers_config_23; /* (HFG) */ | ||
215 | u32 savers_DMA23; /* (HFG) */ | ||
216 | u32 saversa0; | ||
217 | u32 saversi0; | ||
218 | u32 saversa1; | ||
219 | u32 saversi1; | ||
220 | u32 saversa3; | ||
221 | u32 saversd0; | ||
222 | u32 saversd1; | ||
223 | u32 saversd3; | ||
224 | u32 savers_config01; | ||
225 | u32 savers_DMA01; | ||
226 | u32 saveacc0hl; | ||
227 | u32 saveacc1hl; | ||
228 | u32 saveacc0xacc1x; | ||
229 | u32 saveacc2hl; | ||
230 | u32 saveacc3hl; | ||
231 | u32 saveacc2xacc3x; | ||
232 | u32 saveaux0hl; | ||
233 | u32 saveaux1hl; | ||
234 | u32 saveaux0xaux1x; | ||
235 | u32 saveaux2hl; | ||
236 | u32 saveaux3hl; | ||
237 | u32 saveaux2xaux3x; | ||
238 | u32 savershouthl; | ||
239 | u32 savershoutxmacmode; | ||
240 | }; | ||
241 | |||
242 | |||
243 | struct dsp_task_tree_control_block { | ||
244 | struct dsp_hf_save_area context; | ||
245 | struct dsp_tree_link links; | ||
246 | struct dsp_task_tree_data data; | ||
247 | struct dsp_task_tree_context_block context_blk; | ||
248 | struct dsp_interval_timer_data int_timer; | ||
249 | }; | ||
250 | |||
251 | |||
252 | #endif /* __DSP_TASK_TYPES_H__ */ | ||
diff --git a/include/sound/designware_i2s.h b/include/sound/designware_i2s.h new file mode 100644 index 000000000000..26f406e0f673 --- /dev/null +++ b/include/sound/designware_i2s.h | |||
@@ -0,0 +1,69 @@ | |||
1 | /* | ||
2 | * Copyright (ST) 2012 Rajeev Kumar (rajeev-dlh.kumar@st.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 | * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
17 | * | ||
18 | */ | ||
19 | |||
20 | #ifndef __SOUND_DESIGNWARE_I2S_H | ||
21 | #define __SOUND_DESIGNWARE_I2S_H | ||
22 | |||
23 | #include <linux/dmaengine.h> | ||
24 | #include <linux/types.h> | ||
25 | |||
26 | /* | ||
27 | * struct i2s_clk_config_data - represent i2s clk configuration data | ||
28 | * @chan_nr: number of channel | ||
29 | * @data_width: number of bits per sample (8/16/24/32 bit) | ||
30 | * @sample_rate: sampling frequency (8Khz, 16Khz, 32Khz, 44Khz, 48Khz) | ||
31 | */ | ||
32 | struct i2s_clk_config_data { | ||
33 | int chan_nr; | ||
34 | u32 data_width; | ||
35 | u32 sample_rate; | ||
36 | }; | ||
37 | |||
38 | struct i2s_platform_data { | ||
39 | #define DWC_I2S_PLAY (1 << 0) | ||
40 | #define DWC_I2S_RECORD (1 << 1) | ||
41 | unsigned int cap; | ||
42 | int channel; | ||
43 | u32 snd_fmts; | ||
44 | u32 snd_rates; | ||
45 | |||
46 | void *play_dma_data; | ||
47 | void *capture_dma_data; | ||
48 | bool (*filter)(struct dma_chan *chan, void *slave); | ||
49 | int (*i2s_clk_cfg)(struct i2s_clk_config_data *config); | ||
50 | }; | ||
51 | |||
52 | struct i2s_dma_data { | ||
53 | void *data; | ||
54 | dma_addr_t addr; | ||
55 | u32 max_burst; | ||
56 | enum dma_slave_buswidth addr_width; | ||
57 | bool (*filter)(struct dma_chan *chan, void *slave); | ||
58 | }; | ||
59 | |||
60 | /* I2S DMA registers */ | ||
61 | #define I2S_RXDMA 0x01C0 | ||
62 | #define I2S_TXDMA 0x01C8 | ||
63 | |||
64 | #define TWO_CHANNEL_SUPPORT 2 /* up to 2.0 */ | ||
65 | #define FOUR_CHANNEL_SUPPORT 4 /* up to 3.1 */ | ||
66 | #define SIX_CHANNEL_SUPPORT 6 /* up to 5.1 */ | ||
67 | #define EIGHT_CHANNEL_SUPPORT 8 /* up to 7.1 */ | ||
68 | |||
69 | #endif /* __SOUND_DESIGNWARE_I2S_H */ | ||
diff --git a/include/sound/dmaengine_pcm.h b/include/sound/dmaengine_pcm.h index a8fcaa6d531f..b877334bbb0f 100644 --- a/include/sound/dmaengine_pcm.h +++ b/include/sound/dmaengine_pcm.h | |||
@@ -39,6 +39,7 @@ int snd_hwparams_to_dma_slave_config(const struct snd_pcm_substream *substream, | |||
39 | const struct snd_pcm_hw_params *params, struct dma_slave_config *slave_config); | 39 | const struct snd_pcm_hw_params *params, struct dma_slave_config *slave_config); |
40 | int snd_dmaengine_pcm_trigger(struct snd_pcm_substream *substream, int cmd); | 40 | int snd_dmaengine_pcm_trigger(struct snd_pcm_substream *substream, int cmd); |
41 | snd_pcm_uframes_t snd_dmaengine_pcm_pointer(struct snd_pcm_substream *substream); | 41 | snd_pcm_uframes_t snd_dmaengine_pcm_pointer(struct snd_pcm_substream *substream); |
42 | snd_pcm_uframes_t snd_dmaengine_pcm_pointer_no_residue(struct snd_pcm_substream *substream); | ||
42 | 43 | ||
43 | int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, | 44 | int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream, |
44 | dma_filter_fn filter_fn, void *filter_data); | 45 | dma_filter_fn filter_fn, void *filter_data); |
diff --git a/include/sound/pcm.h b/include/sound/pcm.h index 0d1112815be3..c75c0d1a85e2 100644 --- a/include/sound/pcm.h +++ b/include/sound/pcm.h | |||
@@ -810,7 +810,7 @@ int snd_pcm_hw_constraint_integer(struct snd_pcm_runtime *runtime, snd_pcm_hw_pa | |||
810 | int snd_pcm_hw_constraint_list(struct snd_pcm_runtime *runtime, | 810 | int snd_pcm_hw_constraint_list(struct snd_pcm_runtime *runtime, |
811 | unsigned int cond, | 811 | unsigned int cond, |
812 | snd_pcm_hw_param_t var, | 812 | snd_pcm_hw_param_t var, |
813 | struct snd_pcm_hw_constraint_list *l); | 813 | const struct snd_pcm_hw_constraint_list *l); |
814 | int snd_pcm_hw_constraint_ratnums(struct snd_pcm_runtime *runtime, | 814 | int snd_pcm_hw_constraint_ratnums(struct snd_pcm_runtime *runtime, |
815 | unsigned int cond, | 815 | unsigned int cond, |
816 | snd_pcm_hw_param_t var, | 816 | snd_pcm_hw_param_t var, |
@@ -893,6 +893,7 @@ extern const struct snd_pcm_hw_constraint_list snd_pcm_known_rates; | |||
893 | 893 | ||
894 | int snd_pcm_limit_hw_rates(struct snd_pcm_runtime *runtime); | 894 | int snd_pcm_limit_hw_rates(struct snd_pcm_runtime *runtime); |
895 | unsigned int snd_pcm_rate_to_rate_bit(unsigned int rate); | 895 | unsigned int snd_pcm_rate_to_rate_bit(unsigned int rate); |
896 | unsigned int snd_pcm_rate_bit_to_rate(unsigned int rate_bit); | ||
896 | 897 | ||
897 | static inline void snd_pcm_set_runtime_buffer(struct snd_pcm_substream *substream, | 898 | static inline void snd_pcm_set_runtime_buffer(struct snd_pcm_substream *substream, |
898 | struct snd_dma_buffer *bufp) | 899 | struct snd_dma_buffer *bufp) |
@@ -1073,4 +1074,15 @@ static inline void snd_pcm_limit_isa_dma_size(int dma, size_t *max) | |||
1073 | 1074 | ||
1074 | const char *snd_pcm_format_name(snd_pcm_format_t format); | 1075 | const char *snd_pcm_format_name(snd_pcm_format_t format); |
1075 | 1076 | ||
1077 | /** | ||
1078 | * Get a string naming the direction of a stream | ||
1079 | */ | ||
1080 | static inline const char *snd_pcm_stream_str(struct snd_pcm_substream *substream) | ||
1081 | { | ||
1082 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | ||
1083 | return "Playback"; | ||
1084 | else | ||
1085 | return "Capture"; | ||
1086 | } | ||
1087 | |||
1076 | #endif /* __SOUND_PCM_H */ | 1088 | #endif /* __SOUND_PCM_H */ |
diff --git a/include/sound/pcm_params.h b/include/sound/pcm_params.h index f494f1e3c900..37ae12e0ab06 100644 --- a/include/sound/pcm_params.h +++ b/include/sound/pcm_params.h | |||
@@ -22,6 +22,8 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include <sound/pcm.h> | ||
26 | |||
25 | int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm, | 27 | int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm, |
26 | struct snd_pcm_hw_params *params, | 28 | struct snd_pcm_hw_params *params, |
27 | snd_pcm_hw_param_t var, int *dir); | 29 | snd_pcm_hw_param_t var, int *dir); |
diff --git a/include/sound/soc-dapm.h b/include/sound/soc-dapm.h index e3833d9f1914..abe373d57adc 100644 --- a/include/sound/soc-dapm.h +++ b/include/sound/soc-dapm.h | |||
@@ -229,6 +229,10 @@ struct device; | |||
229 | { .id = snd_soc_dapm_adc, .name = wname, .sname = stname, .reg = wreg, \ | 229 | { .id = snd_soc_dapm_adc, .name = wname, .sname = stname, .reg = wreg, \ |
230 | .shift = wshift, .invert = winvert, \ | 230 | .shift = wshift, .invert = winvert, \ |
231 | .event = wevent, .event_flags = wflags} | 231 | .event = wevent, .event_flags = wflags} |
232 | #define SND_SOC_DAPM_CLOCK_SUPPLY(wname) \ | ||
233 | { .id = snd_soc_dapm_clock_supply, .name = wname, \ | ||
234 | .reg = SND_SOC_NOPM, .event = dapm_clock_event, \ | ||
235 | .event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD } | ||
232 | 236 | ||
233 | /* generic widgets */ | 237 | /* generic widgets */ |
234 | #define SND_SOC_DAPM_REG(wid, wname, wreg, wshift, wmask, won_val, woff_val) \ | 238 | #define SND_SOC_DAPM_REG(wid, wname, wreg, wshift, wmask, won_val, woff_val) \ |
@@ -245,6 +249,7 @@ struct device; | |||
245 | .reg = SND_SOC_NOPM, .shift = wdelay, .event = dapm_regulator_event, \ | 249 | .reg = SND_SOC_NOPM, .shift = wdelay, .event = dapm_regulator_event, \ |
246 | .event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD } | 250 | .event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD } |
247 | 251 | ||
252 | |||
248 | /* dapm kcontrol types */ | 253 | /* dapm kcontrol types */ |
249 | #define SOC_DAPM_SINGLE(xname, reg, shift, max, invert) \ | 254 | #define SOC_DAPM_SINGLE(xname, reg, shift, max, invert) \ |
250 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ | 255 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
@@ -327,6 +332,8 @@ int dapm_reg_event(struct snd_soc_dapm_widget *w, | |||
327 | struct snd_kcontrol *kcontrol, int event); | 332 | struct snd_kcontrol *kcontrol, int event); |
328 | int dapm_regulator_event(struct snd_soc_dapm_widget *w, | 333 | int dapm_regulator_event(struct snd_soc_dapm_widget *w, |
329 | struct snd_kcontrol *kcontrol, int event); | 334 | struct snd_kcontrol *kcontrol, int event); |
335 | int dapm_clock_event(struct snd_soc_dapm_widget *w, | ||
336 | struct snd_kcontrol *kcontrol, int event); | ||
330 | 337 | ||
331 | /* dapm controls */ | 338 | /* dapm controls */ |
332 | int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol, | 339 | int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol, |
@@ -367,6 +374,8 @@ int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm); | |||
367 | void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm); | 374 | void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm); |
368 | int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm, | 375 | int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm, |
369 | const struct snd_soc_dapm_route *route, int num); | 376 | const struct snd_soc_dapm_route *route, int num); |
377 | int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm, | ||
378 | const struct snd_soc_dapm_route *route, int num); | ||
370 | int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm, | 379 | int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm, |
371 | const struct snd_soc_dapm_route *route, int num); | 380 | const struct snd_soc_dapm_route *route, int num); |
372 | 381 | ||
@@ -432,6 +441,7 @@ enum snd_soc_dapm_type { | |||
432 | snd_soc_dapm_post, /* machine specific post widget - exec last */ | 441 | snd_soc_dapm_post, /* machine specific post widget - exec last */ |
433 | snd_soc_dapm_supply, /* power/clock supply */ | 442 | snd_soc_dapm_supply, /* power/clock supply */ |
434 | snd_soc_dapm_regulator_supply, /* external regulator */ | 443 | snd_soc_dapm_regulator_supply, /* external regulator */ |
444 | snd_soc_dapm_clock_supply, /* external clock */ | ||
435 | snd_soc_dapm_aif_in, /* audio interface input */ | 445 | snd_soc_dapm_aif_in, /* audio interface input */ |
436 | snd_soc_dapm_aif_out, /* audio interface output */ | 446 | snd_soc_dapm_aif_out, /* audio interface output */ |
437 | snd_soc_dapm_siggen, /* signal generator */ | 447 | snd_soc_dapm_siggen, /* signal generator */ |
@@ -537,6 +547,8 @@ struct snd_soc_dapm_widget { | |||
537 | struct list_head dirty; | 547 | struct list_head dirty; |
538 | int inputs; | 548 | int inputs; |
539 | int outputs; | 549 | int outputs; |
550 | |||
551 | struct clk *clk; | ||
540 | }; | 552 | }; |
541 | 553 | ||
542 | struct snd_soc_dapm_update { | 554 | struct snd_soc_dapm_update { |
diff --git a/include/sound/soc.h b/include/sound/soc.h index c703871f5f65..e063380f63a2 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h | |||
@@ -42,11 +42,22 @@ | |||
42 | ((unsigned long)&(struct soc_mixer_control) \ | 42 | ((unsigned long)&(struct soc_mixer_control) \ |
43 | {.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \ | 43 | {.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \ |
44 | .max = xmax, .platform_max = xmax, .invert = xinvert}) | 44 | .max = xmax, .platform_max = xmax, .invert = xinvert}) |
45 | #define SOC_DOUBLE_R_RANGE_VALUE(xlreg, xrreg, xshift, xmin, xmax, xinvert) \ | ||
46 | ((unsigned long)&(struct soc_mixer_control) \ | ||
47 | {.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \ | ||
48 | .min = xmin, .max = xmax, .platform_max = xmax, .invert = xinvert}) | ||
45 | #define SOC_SINGLE(xname, reg, shift, max, invert) \ | 49 | #define SOC_SINGLE(xname, reg, shift, max, invert) \ |
46 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ | 50 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
47 | .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\ | 51 | .info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\ |
48 | .put = snd_soc_put_volsw, \ | 52 | .put = snd_soc_put_volsw, \ |
49 | .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) } | 53 | .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) } |
54 | #define SOC_SINGLE_RANGE(xname, xreg, xshift, xmin, xmax, xinvert) \ | ||
55 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ | ||
56 | .info = snd_soc_info_volsw_range, .get = snd_soc_get_volsw_range, \ | ||
57 | .put = snd_soc_put_volsw_range, \ | ||
58 | .private_value = (unsigned long)&(struct soc_mixer_control) \ | ||
59 | {.reg = xreg, .shift = xshift, .min = xmin,\ | ||
60 | .max = xmax, .platform_max = xmax, .invert = xinvert} } | ||
50 | #define SOC_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \ | 61 | #define SOC_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \ |
51 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ | 62 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
52 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ | 63 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ |
@@ -67,6 +78,16 @@ | |||
67 | {.reg = xreg, .rreg = xreg, \ | 78 | {.reg = xreg, .rreg = xreg, \ |
68 | .shift = xshift, .rshift = xshift, \ | 79 | .shift = xshift, .rshift = xshift, \ |
69 | .max = xmax, .min = xmin} } | 80 | .max = xmax, .min = xmin} } |
81 | #define SOC_SINGLE_RANGE_TLV(xname, xreg, xshift, xmin, xmax, xinvert, tlv_array) \ | ||
82 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ | ||
83 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ | ||
84 | SNDRV_CTL_ELEM_ACCESS_READWRITE,\ | ||
85 | .tlv.p = (tlv_array), \ | ||
86 | .info = snd_soc_info_volsw_range, \ | ||
87 | .get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \ | ||
88 | .private_value = (unsigned long)&(struct soc_mixer_control) \ | ||
89 | {.reg = xreg, .shift = xshift, .min = xmin,\ | ||
90 | .max = xmax, .platform_max = xmax, .invert = xinvert} } | ||
70 | #define SOC_DOUBLE(xname, reg, shift_left, shift_right, max, invert) \ | 91 | #define SOC_DOUBLE(xname, reg, shift_left, shift_right, max, invert) \ |
71 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ | 92 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ |
72 | .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \ | 93 | .info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \ |
@@ -79,6 +100,13 @@ | |||
79 | .get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \ | 100 | .get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \ |
80 | .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \ | 101 | .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \ |
81 | xmax, xinvert) } | 102 | xmax, xinvert) } |
103 | #define SOC_DOUBLE_R_RANGE(xname, reg_left, reg_right, xshift, xmin, \ | ||
104 | xmax, xinvert) \ | ||
105 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ | ||
106 | .info = snd_soc_info_volsw_range, \ | ||
107 | .get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \ | ||
108 | .private_value = SOC_DOUBLE_R_RANGE_VALUE(reg_left, reg_right, \ | ||
109 | xshift, xmin, xmax, xinvert) } | ||
82 | #define SOC_DOUBLE_TLV(xname, reg, shift_left, shift_right, max, invert, tlv_array) \ | 110 | #define SOC_DOUBLE_TLV(xname, reg, shift_left, shift_right, max, invert, tlv_array) \ |
83 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ | 111 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ |
84 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ | 112 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ |
@@ -97,6 +125,16 @@ | |||
97 | .get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \ | 125 | .get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \ |
98 | .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \ | 126 | .private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \ |
99 | xmax, xinvert) } | 127 | xmax, xinvert) } |
128 | #define SOC_DOUBLE_R_RANGE_TLV(xname, reg_left, reg_right, xshift, xmin, \ | ||
129 | xmax, xinvert, tlv_array) \ | ||
130 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ | ||
131 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ | ||
132 | SNDRV_CTL_ELEM_ACCESS_READWRITE,\ | ||
133 | .tlv.p = (tlv_array), \ | ||
134 | .info = snd_soc_info_volsw_range, \ | ||
135 | .get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \ | ||
136 | .private_value = SOC_DOUBLE_R_RANGE_VALUE(reg_left, reg_right, \ | ||
137 | xshift, xmin, xmax, xinvert) } | ||
100 | #define SOC_DOUBLE_R_SX_TLV(xname, xreg, xrreg, xshift, xmin, xmax, tlv_array) \ | 138 | #define SOC_DOUBLE_R_SX_TLV(xname, xreg, xrreg, xshift, xmin, xmax, tlv_array) \ |
101 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ | 139 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ |
102 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ | 140 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ |
@@ -460,6 +498,12 @@ int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol, | |||
460 | struct snd_ctl_elem_value *ucontrol); | 498 | struct snd_ctl_elem_value *ucontrol); |
461 | int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol, | 499 | int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol, |
462 | struct snd_ctl_elem_value *ucontrol); | 500 | struct snd_ctl_elem_value *ucontrol); |
501 | int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol, | ||
502 | struct snd_ctl_elem_info *uinfo); | ||
503 | int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol, | ||
504 | struct snd_ctl_elem_value *ucontrol); | ||
505 | int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol, | ||
506 | struct snd_ctl_elem_value *ucontrol); | ||
463 | int snd_soc_limit_volume(struct snd_soc_codec *codec, | 507 | int snd_soc_limit_volume(struct snd_soc_codec *codec, |
464 | const char *name, int max); | 508 | const char *name, int max); |
465 | int snd_soc_bytes_info(struct snd_kcontrol *kcontrol, | 509 | int snd_soc_bytes_info(struct snd_kcontrol *kcontrol, |
@@ -785,13 +829,36 @@ struct snd_soc_dai_link { | |||
785 | /* config - must be set by machine driver */ | 829 | /* config - must be set by machine driver */ |
786 | const char *name; /* Codec name */ | 830 | const char *name; /* Codec name */ |
787 | const char *stream_name; /* Stream name */ | 831 | const char *stream_name; /* Stream name */ |
788 | const char *codec_name; /* for multi-codec */ | 832 | /* |
789 | const struct device_node *codec_of_node; | 833 | * You MAY specify the link's CPU-side device, either by device name, |
790 | const char *platform_name; /* for multi-platform */ | 834 | * or by DT/OF node, but not both. If this information is omitted, |
791 | const struct device_node *platform_of_node; | 835 | * the CPU-side DAI is matched using .cpu_dai_name only, which hence |
836 | * must be globally unique. These fields are currently typically used | ||
837 | * only for codec to codec links, or systems using device tree. | ||
838 | */ | ||
839 | const char *cpu_name; | ||
840 | const struct device_node *cpu_of_node; | ||
841 | /* | ||
842 | * You MAY specify the DAI name of the CPU DAI. If this information is | ||
843 | * omitted, the CPU-side DAI is matched using .cpu_name/.cpu_of_node | ||
844 | * only, which only works well when that device exposes a single DAI. | ||
845 | */ | ||
792 | const char *cpu_dai_name; | 846 | const char *cpu_dai_name; |
793 | const struct device_node *cpu_dai_of_node; | 847 | /* |
848 | * You MUST specify the link's codec, either by device name, or by | ||
849 | * DT/OF node, but not both. | ||
850 | */ | ||
851 | const char *codec_name; | ||
852 | const struct device_node *codec_of_node; | ||
853 | /* You MUST specify the DAI name within the codec */ | ||
794 | const char *codec_dai_name; | 854 | const char *codec_dai_name; |
855 | /* | ||
856 | * You MAY specify the link's platform/PCM/DMA driver, either by | ||
857 | * device name, or by DT/OF node, but not both. Some forms of link | ||
858 | * do not need a platform. | ||
859 | */ | ||
860 | const char *platform_name; | ||
861 | const struct device_node *platform_of_node; | ||
795 | int be_id; /* optional ID for machine driver BE identification */ | 862 | int be_id; /* optional ID for machine driver BE identification */ |
796 | 863 | ||
797 | const struct snd_soc_pcm_stream *params; | 864 | const struct snd_soc_pcm_stream *params; |
diff --git a/include/sound/spear_dma.h b/include/sound/spear_dma.h new file mode 100644 index 000000000000..1b365bfdfb37 --- /dev/null +++ b/include/sound/spear_dma.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /* | ||
2 | * linux/spear_dma.h | ||
3 | * | ||
4 | * Copyright (ST) 2012 Rajeev Kumar (rajeev-dlh.kumar@st.com) | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | * | ||
20 | */ | ||
21 | |||
22 | #ifndef SPEAR_DMA_H | ||
23 | #define SPEAR_DMA_H | ||
24 | |||
25 | #include <linux/dmaengine.h> | ||
26 | |||
27 | struct spear_dma_data { | ||
28 | void *data; | ||
29 | dma_addr_t addr; | ||
30 | u32 max_burst; | ||
31 | enum dma_slave_buswidth addr_width; | ||
32 | bool (*filter)(struct dma_chan *chan, void *slave); | ||
33 | }; | ||
34 | |||
35 | #endif /* SPEAR_DMA_H */ | ||
diff --git a/include/sound/spear_spdif.h b/include/sound/spear_spdif.h new file mode 100644 index 000000000000..a12f39695610 --- /dev/null +++ b/include/sound/spear_spdif.h | |||
@@ -0,0 +1,29 @@ | |||
1 | /* | ||
2 | * Copyright (ST) 2012 Vipin Kumar (vipin.kumar@st.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 | * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
17 | */ | ||
18 | |||
19 | #ifndef __SOUND_SPDIF_H | ||
20 | #define __SOUND_SPDIF_H | ||
21 | |||
22 | struct spear_spdif_platform_data { | ||
23 | /* DMA params */ | ||
24 | void *dma_params; | ||
25 | bool (*filter)(struct dma_chan *chan, void *slave); | ||
26 | void (*reset_perip)(void); | ||
27 | }; | ||
28 | |||
29 | #endif /* SOUND_SPDIF_H */ | ||
diff --git a/include/sound/tea575x-tuner.h b/include/sound/tea575x-tuner.h index ec3f910aa40b..0c3c2fb0f939 100644 --- a/include/sound/tea575x-tuner.h +++ b/include/sound/tea575x-tuner.h | |||
@@ -44,6 +44,7 @@ struct snd_tea575x_ops { | |||
44 | 44 | ||
45 | struct snd_tea575x { | 45 | struct snd_tea575x { |
46 | struct v4l2_device *v4l2_dev; | 46 | struct v4l2_device *v4l2_dev; |
47 | struct v4l2_file_operations fops; | ||
47 | struct video_device vd; /* video device */ | 48 | struct video_device vd; /* video device */ |
48 | int radio_nr; /* radio_nr */ | 49 | int radio_nr; /* radio_nr */ |
49 | bool tea5759; /* 5759 chip is present */ | 50 | bool tea5759; /* 5759 chip is present */ |
@@ -62,7 +63,7 @@ struct snd_tea575x { | |||
62 | int (*ext_init)(struct snd_tea575x *tea); | 63 | int (*ext_init)(struct snd_tea575x *tea); |
63 | }; | 64 | }; |
64 | 65 | ||
65 | int snd_tea575x_init(struct snd_tea575x *tea); | 66 | int snd_tea575x_init(struct snd_tea575x *tea, struct module *owner); |
66 | void snd_tea575x_exit(struct snd_tea575x *tea); | 67 | void snd_tea575x_exit(struct snd_tea575x *tea); |
67 | 68 | ||
68 | #endif /* __SOUND_TEA575X_TUNER_H */ | 69 | #endif /* __SOUND_TEA575X_TUNER_H */ |
diff --git a/include/sound/tlv.h b/include/sound/tlv.h index 7067e2dfb0b9..a64d8fe3f855 100644 --- a/include/sound/tlv.h +++ b/include/sound/tlv.h | |||
@@ -38,21 +38,31 @@ | |||
38 | #define SNDRV_CTL_TLVT_DB_MINMAX 4 /* dB scale with min/max */ | 38 | #define SNDRV_CTL_TLVT_DB_MINMAX 4 /* dB scale with min/max */ |
39 | #define SNDRV_CTL_TLVT_DB_MINMAX_MUTE 5 /* dB scale with min/max with mute */ | 39 | #define SNDRV_CTL_TLVT_DB_MINMAX_MUTE 5 /* dB scale with min/max with mute */ |
40 | 40 | ||
41 | #define TLV_ITEM(type, ...) \ | ||
42 | (type), TLV_LENGTH(__VA_ARGS__), __VA_ARGS__ | ||
43 | #define TLV_LENGTH(...) \ | ||
44 | ((unsigned int)sizeof((const unsigned int[]) { __VA_ARGS__ })) | ||
45 | |||
46 | #define TLV_CONTAINER_ITEM(...) \ | ||
47 | TLV_ITEM(SNDRV_CTL_TLVT_CONTAINER, __VA_ARGS__) | ||
48 | #define DECLARE_TLV_CONTAINER(name, ...) \ | ||
49 | unsigned int name[] = { TLV_CONTAINER_ITEM(__VA_ARGS__) } | ||
50 | |||
41 | #define TLV_DB_SCALE_MASK 0xffff | 51 | #define TLV_DB_SCALE_MASK 0xffff |
42 | #define TLV_DB_SCALE_MUTE 0x10000 | 52 | #define TLV_DB_SCALE_MUTE 0x10000 |
43 | #define TLV_DB_SCALE_ITEM(min, step, mute) \ | 53 | #define TLV_DB_SCALE_ITEM(min, step, mute) \ |
44 | SNDRV_CTL_TLVT_DB_SCALE, 2 * sizeof(unsigned int), \ | 54 | TLV_ITEM(SNDRV_CTL_TLVT_DB_SCALE, \ |
45 | (min), ((step) & TLV_DB_SCALE_MASK) | ((mute) ? TLV_DB_SCALE_MUTE : 0) | 55 | (min), \ |
56 | ((step) & TLV_DB_SCALE_MASK) | \ | ||
57 | ((mute) ? TLV_DB_SCALE_MUTE : 0)) | ||
46 | #define DECLARE_TLV_DB_SCALE(name, min, step, mute) \ | 58 | #define DECLARE_TLV_DB_SCALE(name, min, step, mute) \ |
47 | unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) } | 59 | unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) } |
48 | 60 | ||
49 | /* dB scale specified with min/max values instead of step */ | 61 | /* dB scale specified with min/max values instead of step */ |
50 | #define TLV_DB_MINMAX_ITEM(min_dB, max_dB) \ | 62 | #define TLV_DB_MINMAX_ITEM(min_dB, max_dB) \ |
51 | SNDRV_CTL_TLVT_DB_MINMAX, 2 * sizeof(unsigned int), \ | 63 | TLV_ITEM(SNDRV_CTL_TLVT_DB_MINMAX, (min_dB), (max_dB)) |
52 | (min_dB), (max_dB) | ||
53 | #define TLV_DB_MINMAX_MUTE_ITEM(min_dB, max_dB) \ | 64 | #define TLV_DB_MINMAX_MUTE_ITEM(min_dB, max_dB) \ |
54 | SNDRV_CTL_TLVT_DB_MINMAX_MUTE, 2 * sizeof(unsigned int), \ | 65 | TLV_ITEM(SNDRV_CTL_TLVT_DB_MINMAX_MUTE, (min_dB), (max_dB)) |
55 | (min_dB), (max_dB) | ||
56 | #define DECLARE_TLV_DB_MINMAX(name, min_dB, max_dB) \ | 66 | #define DECLARE_TLV_DB_MINMAX(name, min_dB, max_dB) \ |
57 | unsigned int name[] = { TLV_DB_MINMAX_ITEM(min_dB, max_dB) } | 67 | unsigned int name[] = { TLV_DB_MINMAX_ITEM(min_dB, max_dB) } |
58 | #define DECLARE_TLV_DB_MINMAX_MUTE(name, min_dB, max_dB) \ | 68 | #define DECLARE_TLV_DB_MINMAX_MUTE(name, min_dB, max_dB) \ |
@@ -60,13 +70,16 @@ | |||
60 | 70 | ||
61 | /* linear volume between min_dB and max_dB (.01dB unit) */ | 71 | /* linear volume between min_dB and max_dB (.01dB unit) */ |
62 | #define TLV_DB_LINEAR_ITEM(min_dB, max_dB) \ | 72 | #define TLV_DB_LINEAR_ITEM(min_dB, max_dB) \ |
63 | SNDRV_CTL_TLVT_DB_LINEAR, 2 * sizeof(unsigned int), \ | 73 | TLV_ITEM(SNDRV_CTL_TLVT_DB_LINEAR, (min_dB), (max_dB)) |
64 | (min_dB), (max_dB) | ||
65 | #define DECLARE_TLV_DB_LINEAR(name, min_dB, max_dB) \ | 74 | #define DECLARE_TLV_DB_LINEAR(name, min_dB, max_dB) \ |
66 | unsigned int name[] = { TLV_DB_LINEAR_ITEM(min_dB, max_dB) } | 75 | unsigned int name[] = { TLV_DB_LINEAR_ITEM(min_dB, max_dB) } |
67 | 76 | ||
68 | /* dB range container */ | 77 | /* dB range container */ |
69 | /* Each item is: <min> <max> <TLV> */ | 78 | /* Each item is: <min> <max> <TLV> */ |
79 | #define TLV_DB_RANGE_ITEM(...) \ | ||
80 | TLV_ITEM(SNDRV_CTL_TLVT_DB_RANGE, __VA_ARGS__) | ||
81 | #define DECLARE_TLV_DB_RANGE(name, ...) \ | ||
82 | unsigned int name[] = { TLV_DB_RANGE_ITEM(__VA_ARGS__) } | ||
70 | /* The below assumes that each item TLV is 4 words like DB_SCALE or LINEAR */ | 83 | /* The below assumes that each item TLV is 4 words like DB_SCALE or LINEAR */ |
71 | #define TLV_DB_RANGE_HEAD(num) \ | 84 | #define TLV_DB_RANGE_HEAD(num) \ |
72 | SNDRV_CTL_TLVT_DB_RANGE, 6 * (num) * sizeof(unsigned int) | 85 | SNDRV_CTL_TLVT_DB_RANGE, 6 * (num) * sizeof(unsigned int) |
diff --git a/include/sound/trident.h b/include/sound/trident.h deleted file mode 100644 index 9f191a0a1e19..000000000000 --- a/include/sound/trident.h +++ /dev/null | |||
@@ -1,445 +0,0 @@ | |||
1 | #ifndef __SOUND_TRIDENT_H | ||
2 | #define __SOUND_TRIDENT_H | ||
3 | |||
4 | /* | ||
5 | * audio@tridentmicro.com | ||
6 | * Fri Feb 19 15:55:28 MST 1999 | ||
7 | * Definitions for Trident 4DWave DX/NX chips | ||
8 | * | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License as published by | ||
12 | * the Free Software Foundation; either version 2 of the License, or | ||
13 | * (at your option) any later version. | ||
14 | * | ||
15 | * This program is distributed in the hope that it will be useful, | ||
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
18 | * GNU General Public License for more details. | ||
19 | * | ||
20 | * You should have received a copy of the GNU General Public License | ||
21 | * along with this program; if not, write to the Free Software | ||
22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
23 | * | ||
24 | */ | ||
25 | |||
26 | #include "pcm.h" | ||
27 | #include "mpu401.h" | ||
28 | #include "ac97_codec.h" | ||
29 | #include "util_mem.h" | ||
30 | |||
31 | #define TRIDENT_DEVICE_ID_DX ((PCI_VENDOR_ID_TRIDENT<<16)|PCI_DEVICE_ID_TRIDENT_4DWAVE_DX) | ||
32 | #define TRIDENT_DEVICE_ID_NX ((PCI_VENDOR_ID_TRIDENT<<16)|PCI_DEVICE_ID_TRIDENT_4DWAVE_NX) | ||
33 | #define TRIDENT_DEVICE_ID_SI7018 ((PCI_VENDOR_ID_SI<<16)|PCI_DEVICE_ID_SI_7018) | ||
34 | |||
35 | #define SNDRV_TRIDENT_VOICE_TYPE_PCM 0 | ||
36 | #define SNDRV_TRIDENT_VOICE_TYPE_SYNTH 1 | ||
37 | #define SNDRV_TRIDENT_VOICE_TYPE_MIDI 2 | ||
38 | |||
39 | #define SNDRV_TRIDENT_VFLG_RUNNING (1<<0) | ||
40 | |||
41 | /* TLB code constants */ | ||
42 | #define SNDRV_TRIDENT_PAGE_SIZE 4096 | ||
43 | #define SNDRV_TRIDENT_PAGE_SHIFT 12 | ||
44 | #define SNDRV_TRIDENT_PAGE_MASK ((1<<SNDRV_TRIDENT_PAGE_SHIFT)-1) | ||
45 | #define SNDRV_TRIDENT_MAX_PAGES 4096 | ||
46 | |||
47 | /* | ||
48 | * Direct registers | ||
49 | */ | ||
50 | |||
51 | #define TRID_REG(trident, x) ((trident)->port + (x)) | ||
52 | |||
53 | #define ID_4DWAVE_DX 0x2000 | ||
54 | #define ID_4DWAVE_NX 0x2001 | ||
55 | |||
56 | /* Bank definitions */ | ||
57 | |||
58 | #define T4D_BANK_A 0 | ||
59 | #define T4D_BANK_B 1 | ||
60 | #define T4D_NUM_BANKS 2 | ||
61 | |||
62 | /* Register definitions */ | ||
63 | |||
64 | /* Global registers */ | ||
65 | |||
66 | enum global_control_bits { | ||
67 | CHANNEL_IDX = 0x0000003f, | ||
68 | OVERRUN_IE = 0x00000400, /* interrupt enable: capture overrun */ | ||
69 | UNDERRUN_IE = 0x00000800, /* interrupt enable: playback underrun */ | ||
70 | ENDLP_IE = 0x00001000, /* interrupt enable: end of buffer */ | ||
71 | MIDLP_IE = 0x00002000, /* interrupt enable: middle buffer */ | ||
72 | ETOG_IE = 0x00004000, /* interrupt enable: envelope toggling */ | ||
73 | EDROP_IE = 0x00008000, /* interrupt enable: envelope drop */ | ||
74 | BANK_B_EN = 0x00010000, /* SiS: enable bank B (64 channels) */ | ||
75 | PCMIN_B_MIX = 0x00020000, /* SiS: PCM IN B mixing enable */ | ||
76 | I2S_OUT_ASSIGN = 0x00040000, /* SiS: I2S Out contains surround PCM */ | ||
77 | SPDIF_OUT_ASSIGN= 0x00080000, /* SiS: 0=S/PDIF L/R | 1=PCM Out FIFO */ | ||
78 | MAIN_OUT_ASSIGN = 0x00100000, /* SiS: 0=PCM Out FIFO | 1=MMC Out buffer */ | ||
79 | }; | ||
80 | |||
81 | enum miscint_bits { | ||
82 | PB_UNDERRUN_IRQ = 0x00000001, REC_OVERRUN_IRQ = 0x00000002, | ||
83 | SB_IRQ = 0x00000004, MPU401_IRQ = 0x00000008, | ||
84 | OPL3_IRQ = 0x00000010, ADDRESS_IRQ = 0x00000020, | ||
85 | ENVELOPE_IRQ = 0x00000040, PB_UNDERRUN = 0x00000100, | ||
86 | REC_OVERRUN = 0x00000200, MIXER_UNDERFLOW = 0x00000400, | ||
87 | MIXER_OVERFLOW = 0x00000800, NX_SB_IRQ_DISABLE = 0x00001000, | ||
88 | ST_TARGET_REACHED = 0x00008000, | ||
89 | PB_24K_MODE = 0x00010000, ST_IRQ_EN = 0x00800000, | ||
90 | ACGPIO_IRQ = 0x01000000 | ||
91 | }; | ||
92 | |||
93 | /* T2 legacy dma control registers. */ | ||
94 | #define LEGACY_DMAR0 0x00 // ADR0 | ||
95 | #define LEGACY_DMAR4 0x04 // CNT0 | ||
96 | #define LEGACY_DMAR6 0x06 // CNT0 - High bits | ||
97 | #define LEGACY_DMAR11 0x0b // MOD | ||
98 | #define LEGACY_DMAR15 0x0f // MMR | ||
99 | |||
100 | #define T4D_START_A 0x80 | ||
101 | #define T4D_STOP_A 0x84 | ||
102 | #define T4D_DLY_A 0x88 | ||
103 | #define T4D_SIGN_CSO_A 0x8c | ||
104 | #define T4D_CSPF_A 0x90 | ||
105 | #define T4D_CSPF_B 0xbc | ||
106 | #define T4D_CEBC_A 0x94 | ||
107 | #define T4D_AINT_A 0x98 | ||
108 | #define T4D_AINTEN_A 0x9c | ||
109 | #define T4D_LFO_GC_CIR 0xa0 | ||
110 | #define T4D_MUSICVOL_WAVEVOL 0xa8 | ||
111 | #define T4D_SBDELTA_DELTA_R 0xac | ||
112 | #define T4D_MISCINT 0xb0 | ||
113 | #define T4D_START_B 0xb4 | ||
114 | #define T4D_STOP_B 0xb8 | ||
115 | #define T4D_SBBL_SBCL 0xc0 | ||
116 | #define T4D_SBCTRL_SBE2R_SBDD 0xc4 | ||
117 | #define T4D_STIMER 0xc8 | ||
118 | #define T4D_AINT_B 0xd8 | ||
119 | #define T4D_AINTEN_B 0xdc | ||
120 | #define T4D_RCI 0x70 | ||
121 | |||
122 | /* MPU-401 UART */ | ||
123 | #define T4D_MPU401_BASE 0x20 | ||
124 | #define T4D_MPUR0 0x20 | ||
125 | #define T4D_MPUR1 0x21 | ||
126 | #define T4D_MPUR2 0x22 | ||
127 | #define T4D_MPUR3 0x23 | ||
128 | |||
129 | /* S/PDIF Registers */ | ||
130 | #define NX_SPCTRL_SPCSO 0x24 | ||
131 | #define NX_SPLBA 0x28 | ||
132 | #define NX_SPESO 0x2c | ||
133 | #define NX_SPCSTATUS 0x64 | ||
134 | |||
135 | /* Joystick */ | ||
136 | #define GAMEPORT_GCR 0x30 | ||
137 | #define GAMEPORT_MODE_ADC 0x80 | ||
138 | #define GAMEPORT_LEGACY 0x31 | ||
139 | #define GAMEPORT_AXES 0x34 | ||
140 | |||
141 | /* NX Specific Registers */ | ||
142 | #define NX_TLBC 0x6c | ||
143 | |||
144 | /* Channel Registers */ | ||
145 | |||
146 | #define CH_START 0xe0 | ||
147 | |||
148 | #define CH_DX_CSO_ALPHA_FMS 0xe0 | ||
149 | #define CH_DX_ESO_DELTA 0xe8 | ||
150 | #define CH_DX_FMC_RVOL_CVOL 0xec | ||
151 | |||
152 | #define CH_NX_DELTA_CSO 0xe0 | ||
153 | #define CH_NX_DELTA_ESO 0xe8 | ||
154 | #define CH_NX_ALPHA_FMS_FMC_RVOL_CVOL 0xec | ||
155 | |||
156 | #define CH_LBA 0xe4 | ||
157 | #define CH_GVSEL_PAN_VOL_CTRL_EC 0xf0 | ||
158 | #define CH_EBUF1 0xf4 | ||
159 | #define CH_EBUF2 0xf8 | ||
160 | |||
161 | /* AC-97 Registers */ | ||
162 | |||
163 | #define DX_ACR0_AC97_W 0x40 | ||
164 | #define DX_ACR1_AC97_R 0x44 | ||
165 | #define DX_ACR2_AC97_COM_STAT 0x48 | ||
166 | |||
167 | #define NX_ACR0_AC97_COM_STAT 0x40 | ||
168 | #define NX_ACR1_AC97_W 0x44 | ||
169 | #define NX_ACR2_AC97_R_PRIMARY 0x48 | ||
170 | #define NX_ACR3_AC97_R_SECONDARY 0x4c | ||
171 | |||
172 | #define SI_AC97_WRITE 0x40 | ||
173 | #define SI_AC97_READ 0x44 | ||
174 | #define SI_SERIAL_INTF_CTRL 0x48 | ||
175 | #define SI_AC97_GPIO 0x4c | ||
176 | #define SI_ASR0 0x50 | ||
177 | #define SI_SPDIF_CS 0x70 | ||
178 | #define SI_GPIO 0x7c | ||
179 | |||
180 | enum trident_nx_ac97_bits { | ||
181 | /* ACR1-3 */ | ||
182 | NX_AC97_BUSY_WRITE = 0x0800, | ||
183 | NX_AC97_BUSY_READ = 0x0800, | ||
184 | NX_AC97_BUSY_DATA = 0x0400, | ||
185 | NX_AC97_WRITE_SECONDARY = 0x0100, | ||
186 | /* ACR0 */ | ||
187 | NX_AC97_SECONDARY_READY = 0x0040, | ||
188 | NX_AC97_SECONDARY_RECORD = 0x0020, | ||
189 | NX_AC97_SURROUND_OUTPUT = 0x0010, | ||
190 | NX_AC97_PRIMARY_READY = 0x0008, | ||
191 | NX_AC97_PRIMARY_RECORD = 0x0004, | ||
192 | NX_AC97_PCM_OUTPUT = 0x0002, | ||
193 | NX_AC97_WARM_RESET = 0x0001 | ||
194 | }; | ||
195 | |||
196 | enum trident_dx_ac97_bits { | ||
197 | DX_AC97_BUSY_WRITE = 0x8000, | ||
198 | DX_AC97_BUSY_READ = 0x8000, | ||
199 | DX_AC97_READY = 0x0010, | ||
200 | DX_AC97_RECORD = 0x0008, | ||
201 | DX_AC97_PLAYBACK = 0x0002 | ||
202 | }; | ||
203 | |||
204 | enum sis7018_ac97_bits { | ||
205 | SI_AC97_BUSY_WRITE = 0x00008000, | ||
206 | SI_AC97_AUDIO_BUSY = 0x00004000, | ||
207 | SI_AC97_MODEM_BUSY = 0x00002000, | ||
208 | SI_AC97_BUSY_READ = 0x00008000, | ||
209 | SI_AC97_SECONDARY = 0x00000080, | ||
210 | }; | ||
211 | |||
212 | enum serial_intf_ctrl_bits { | ||
213 | WARM_RESET = 0x00000001, | ||
214 | COLD_RESET = 0x00000002, | ||
215 | I2S_CLOCK = 0x00000004, | ||
216 | PCM_SEC_AC97 = 0x00000008, | ||
217 | AC97_DBL_RATE = 0x00000010, | ||
218 | SPDIF_EN = 0x00000020, | ||
219 | I2S_OUTPUT_EN = 0x00000040, | ||
220 | I2S_INPUT_EN = 0x00000080, | ||
221 | PCMIN = 0x00000100, | ||
222 | LINE1IN = 0x00000200, | ||
223 | MICIN = 0x00000400, | ||
224 | LINE2IN = 0x00000800, | ||
225 | HEAD_SET_IN = 0x00001000, | ||
226 | GPIOIN = 0x00002000, | ||
227 | /* 7018 spec says id = 01 but the demo board routed to 10 | ||
228 | SECONDARY_ID= 0x00004000, */ | ||
229 | SECONDARY_ID = 0x00004000, | ||
230 | PCMOUT = 0x00010000, | ||
231 | SURROUT = 0x00020000, | ||
232 | CENTEROUT = 0x00040000, | ||
233 | LFEOUT = 0x00080000, | ||
234 | LINE1OUT = 0x00100000, | ||
235 | LINE2OUT = 0x00200000, | ||
236 | GPIOOUT = 0x00400000, | ||
237 | SI_AC97_PRIMARY_READY = 0x01000000, | ||
238 | SI_AC97_SECONDARY_READY = 0x02000000, | ||
239 | SI_AC97_POWERDOWN = 0x04000000, | ||
240 | }; | ||
241 | |||
242 | /* PCM defaults */ | ||
243 | |||
244 | #define T4D_DEFAULT_PCM_VOL 10 /* 0 - 255 */ | ||
245 | #define T4D_DEFAULT_PCM_PAN 0 /* 0 - 127 */ | ||
246 | #define T4D_DEFAULT_PCM_RVOL 127 /* 0 - 127 */ | ||
247 | #define T4D_DEFAULT_PCM_CVOL 127 /* 0 - 127 */ | ||
248 | |||
249 | struct snd_trident; | ||
250 | struct snd_trident_voice; | ||
251 | struct snd_trident_pcm_mixer; | ||
252 | |||
253 | struct snd_trident_port { | ||
254 | struct snd_midi_channel_set * chset; | ||
255 | struct snd_trident * trident; | ||
256 | int mode; /* operation mode */ | ||
257 | int client; /* sequencer client number */ | ||
258 | int port; /* sequencer port number */ | ||
259 | unsigned int midi_has_voices: 1; | ||
260 | }; | ||
261 | |||
262 | struct snd_trident_memblk_arg { | ||
263 | short first_page, last_page; | ||
264 | }; | ||
265 | |||
266 | struct snd_trident_tlb { | ||
267 | unsigned int * entries; /* 16k-aligned TLB table */ | ||
268 | dma_addr_t entries_dmaaddr; /* 16k-aligned PCI address to TLB table */ | ||
269 | unsigned long * shadow_entries; /* shadow entries with virtual addresses */ | ||
270 | struct snd_dma_buffer buffer; | ||
271 | struct snd_util_memhdr * memhdr; /* page allocation list */ | ||
272 | struct snd_dma_buffer silent_page; | ||
273 | }; | ||
274 | |||
275 | struct snd_trident_voice { | ||
276 | unsigned int number; | ||
277 | unsigned int use: 1, | ||
278 | pcm: 1, | ||
279 | synth:1, | ||
280 | midi: 1; | ||
281 | unsigned int flags; | ||
282 | unsigned char client; | ||
283 | unsigned char port; | ||
284 | unsigned char index; | ||
285 | |||
286 | struct snd_trident_sample_ops *sample_ops; | ||
287 | |||
288 | /* channel parameters */ | ||
289 | unsigned int CSO; /* 24 bits (16 on DX) */ | ||
290 | unsigned int ESO; /* 24 bits (16 on DX) */ | ||
291 | unsigned int LBA; /* 30 bits */ | ||
292 | unsigned short EC; /* 12 bits */ | ||
293 | unsigned short Alpha; /* 12 bits */ | ||
294 | unsigned short Delta; /* 16 bits */ | ||
295 | unsigned short Attribute; /* 16 bits - SiS 7018 */ | ||
296 | unsigned short Vol; /* 12 bits (6.6) */ | ||
297 | unsigned char Pan; /* 7 bits (1.4.2) */ | ||
298 | unsigned char GVSel; /* 1 bit */ | ||
299 | unsigned char RVol; /* 7 bits (5.2) */ | ||
300 | unsigned char CVol; /* 7 bits (5.2) */ | ||
301 | unsigned char FMC; /* 2 bits */ | ||
302 | unsigned char CTRL; /* 4 bits */ | ||
303 | unsigned char FMS; /* 4 bits */ | ||
304 | unsigned char LFO; /* 8 bits */ | ||
305 | |||
306 | unsigned int negCSO; /* nonzero - use negative CSO */ | ||
307 | |||
308 | struct snd_util_memblk *memblk; /* memory block if TLB enabled */ | ||
309 | |||
310 | /* PCM data */ | ||
311 | |||
312 | struct snd_trident *trident; | ||
313 | struct snd_pcm_substream *substream; | ||
314 | struct snd_trident_voice *extra; /* extra PCM voice (acts as interrupt generator) */ | ||
315 | unsigned int running: 1, | ||
316 | capture: 1, | ||
317 | spdif: 1, | ||
318 | foldback: 1, | ||
319 | isync: 1, | ||
320 | isync2: 1, | ||
321 | isync3: 1; | ||
322 | int foldback_chan; /* foldback subdevice number */ | ||
323 | unsigned int stimer; /* global sample timer (to detect spurious interrupts) */ | ||
324 | unsigned int spurious_threshold; /* spurious threshold */ | ||
325 | unsigned int isync_mark; | ||
326 | unsigned int isync_max; | ||
327 | unsigned int isync_ESO; | ||
328 | |||
329 | /* --- */ | ||
330 | |||
331 | void *private_data; | ||
332 | void (*private_free)(struct snd_trident_voice *voice); | ||
333 | }; | ||
334 | |||
335 | struct snd_4dwave { | ||
336 | int seq_client; | ||
337 | |||
338 | struct snd_trident_port seq_ports[4]; | ||
339 | struct snd_trident_voice voices[64]; | ||
340 | |||
341 | int ChanSynthCount; /* number of allocated synth channels */ | ||
342 | int max_size; /* maximum synth memory size in bytes */ | ||
343 | int current_size; /* current allocated synth mem in bytes */ | ||
344 | }; | ||
345 | |||
346 | struct snd_trident_pcm_mixer { | ||
347 | struct snd_trident_voice *voice; /* active voice */ | ||
348 | unsigned short vol; /* front volume */ | ||
349 | unsigned char pan; /* pan control */ | ||
350 | unsigned char rvol; /* rear volume */ | ||
351 | unsigned char cvol; /* center volume */ | ||
352 | unsigned char pad; | ||
353 | }; | ||
354 | |||
355 | struct snd_trident { | ||
356 | int irq; | ||
357 | |||
358 | unsigned int device; /* device ID */ | ||
359 | |||
360 | unsigned char bDMAStart; | ||
361 | |||
362 | unsigned long port; | ||
363 | unsigned long midi_port; | ||
364 | |||
365 | unsigned int spurious_irq_count; | ||
366 | unsigned int spurious_irq_max_delta; | ||
367 | |||
368 | struct snd_trident_tlb tlb; /* TLB entries for NX cards */ | ||
369 | |||
370 | unsigned char spdif_ctrl; | ||
371 | unsigned char spdif_pcm_ctrl; | ||
372 | unsigned int spdif_bits; | ||
373 | unsigned int spdif_pcm_bits; | ||
374 | struct snd_kcontrol *spdif_pcm_ctl; /* S/PDIF settings */ | ||
375 | unsigned int ac97_ctrl; | ||
376 | |||
377 | unsigned int ChanMap[2]; /* allocation map for hardware channels */ | ||
378 | |||
379 | int ChanPCM; /* max number of PCM channels */ | ||
380 | int ChanPCMcnt; /* actual number of PCM channels */ | ||
381 | |||
382 | unsigned int ac97_detect: 1; /* 1 = AC97 in detection phase */ | ||
383 | unsigned int in_suspend: 1; /* 1 during suspend/resume */ | ||
384 | |||
385 | struct snd_4dwave synth; /* synth specific variables */ | ||
386 | |||
387 | spinlock_t event_lock; | ||
388 | spinlock_t voice_alloc; | ||
389 | |||
390 | struct snd_dma_device dma_dev; | ||
391 | |||
392 | struct pci_dev *pci; | ||
393 | struct snd_card *card; | ||
394 | struct snd_pcm *pcm; /* ADC/DAC PCM */ | ||
395 | struct snd_pcm *foldback; /* Foldback PCM */ | ||
396 | struct snd_pcm *spdif; /* SPDIF PCM */ | ||
397 | struct snd_rawmidi *rmidi; | ||
398 | |||
399 | struct snd_ac97_bus *ac97_bus; | ||
400 | struct snd_ac97 *ac97; | ||
401 | struct snd_ac97 *ac97_sec; | ||
402 | |||
403 | unsigned int musicvol_wavevol; | ||
404 | struct snd_trident_pcm_mixer pcm_mixer[32]; | ||
405 | struct snd_kcontrol *ctl_vol; /* front volume */ | ||
406 | struct snd_kcontrol *ctl_pan; /* pan */ | ||
407 | struct snd_kcontrol *ctl_rvol; /* rear volume */ | ||
408 | struct snd_kcontrol *ctl_cvol; /* center volume */ | ||
409 | |||
410 | spinlock_t reg_lock; | ||
411 | |||
412 | struct gameport *gameport; | ||
413 | }; | ||
414 | |||
415 | int snd_trident_create(struct snd_card *card, | ||
416 | struct pci_dev *pci, | ||
417 | int pcm_streams, | ||
418 | int pcm_spdif_device, | ||
419 | int max_wavetable_size, | ||
420 | struct snd_trident ** rtrident); | ||
421 | int snd_trident_create_gameport(struct snd_trident *trident); | ||
422 | |||
423 | int snd_trident_pcm(struct snd_trident * trident, int device, struct snd_pcm **rpcm); | ||
424 | int snd_trident_foldback_pcm(struct snd_trident * trident, int device, struct snd_pcm **rpcm); | ||
425 | int snd_trident_spdif_pcm(struct snd_trident * trident, int device, struct snd_pcm **rpcm); | ||
426 | int snd_trident_attach_synthesizer(struct snd_trident * trident); | ||
427 | struct snd_trident_voice *snd_trident_alloc_voice(struct snd_trident * trident, int type, | ||
428 | int client, int port); | ||
429 | void snd_trident_free_voice(struct snd_trident * trident, struct snd_trident_voice *voice); | ||
430 | void snd_trident_start_voice(struct snd_trident * trident, unsigned int voice); | ||
431 | void snd_trident_stop_voice(struct snd_trident * trident, unsigned int voice); | ||
432 | void snd_trident_write_voice_regs(struct snd_trident * trident, struct snd_trident_voice *voice); | ||
433 | int snd_trident_suspend(struct pci_dev *pci, pm_message_t state); | ||
434 | int snd_trident_resume(struct pci_dev *pci); | ||
435 | |||
436 | /* TLB memory allocation */ | ||
437 | struct snd_util_memblk *snd_trident_alloc_pages(struct snd_trident *trident, | ||
438 | struct snd_pcm_substream *substream); | ||
439 | int snd_trident_free_pages(struct snd_trident *trident, struct snd_util_memblk *blk); | ||
440 | struct snd_util_memblk *snd_trident_synth_alloc(struct snd_trident *trident, unsigned int size); | ||
441 | int snd_trident_synth_free(struct snd_trident *trident, struct snd_util_memblk *blk); | ||
442 | int snd_trident_synth_copy_from_user(struct snd_trident *trident, struct snd_util_memblk *blk, | ||
443 | int offset, const char __user *data, int size); | ||
444 | |||
445 | #endif /* __SOUND_TRIDENT_H */ | ||
diff --git a/include/sound/vx_core.h b/include/sound/vx_core.h index 5456343ebe4c..4f67c762cd74 100644 --- a/include/sound/vx_core.h +++ b/include/sound/vx_core.h | |||
@@ -341,7 +341,7 @@ int vx_change_frequency(struct vx_core *chip); | |||
341 | /* | 341 | /* |
342 | * PM | 342 | * PM |
343 | */ | 343 | */ |
344 | int snd_vx_suspend(struct vx_core *card, pm_message_t state); | 344 | int snd_vx_suspend(struct vx_core *card); |
345 | int snd_vx_resume(struct vx_core *card); | 345 | int snd_vx_resume(struct vx_core *card); |
346 | 346 | ||
347 | /* | 347 | /* |
diff --git a/include/sound/ymfpci.h b/include/sound/ymfpci.h deleted file mode 100644 index 41199664666b..000000000000 --- a/include/sound/ymfpci.h +++ /dev/null | |||
@@ -1,390 +0,0 @@ | |||
1 | #ifndef __SOUND_YMFPCI_H | ||
2 | #define __SOUND_YMFPCI_H | ||
3 | |||
4 | /* | ||
5 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> | ||
6 | * Definitions for Yahama YMF724/740/744/754 chips | ||
7 | * | ||
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 as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
22 | * | ||
23 | */ | ||
24 | |||
25 | #include "pcm.h" | ||
26 | #include "rawmidi.h" | ||
27 | #include "ac97_codec.h" | ||
28 | #include "timer.h" | ||
29 | #include <linux/gameport.h> | ||
30 | |||
31 | /* | ||
32 | * Direct registers | ||
33 | */ | ||
34 | |||
35 | #define YMFREG(chip, reg) (chip->port + YDSXGR_##reg) | ||
36 | |||
37 | #define YDSXGR_INTFLAG 0x0004 | ||
38 | #define YDSXGR_ACTIVITY 0x0006 | ||
39 | #define YDSXGR_GLOBALCTRL 0x0008 | ||
40 | #define YDSXGR_ZVCTRL 0x000A | ||
41 | #define YDSXGR_TIMERCTRL 0x0010 | ||
42 | #define YDSXGR_TIMERCOUNT 0x0012 | ||
43 | #define YDSXGR_SPDIFOUTCTRL 0x0018 | ||
44 | #define YDSXGR_SPDIFOUTSTATUS 0x001C | ||
45 | #define YDSXGR_EEPROMCTRL 0x0020 | ||
46 | #define YDSXGR_SPDIFINCTRL 0x0034 | ||
47 | #define YDSXGR_SPDIFINSTATUS 0x0038 | ||
48 | #define YDSXGR_DSPPROGRAMDL 0x0048 | ||
49 | #define YDSXGR_DLCNTRL 0x004C | ||
50 | #define YDSXGR_GPIOININTFLAG 0x0050 | ||
51 | #define YDSXGR_GPIOININTENABLE 0x0052 | ||
52 | #define YDSXGR_GPIOINSTATUS 0x0054 | ||
53 | #define YDSXGR_GPIOOUTCTRL 0x0056 | ||
54 | #define YDSXGR_GPIOFUNCENABLE 0x0058 | ||
55 | #define YDSXGR_GPIOTYPECONFIG 0x005A | ||
56 | #define YDSXGR_AC97CMDDATA 0x0060 | ||
57 | #define YDSXGR_AC97CMDADR 0x0062 | ||
58 | #define YDSXGR_PRISTATUSDATA 0x0064 | ||
59 | #define YDSXGR_PRISTATUSADR 0x0066 | ||
60 | #define YDSXGR_SECSTATUSDATA 0x0068 | ||
61 | #define YDSXGR_SECSTATUSADR 0x006A | ||
62 | #define YDSXGR_SECCONFIG 0x0070 | ||
63 | #define YDSXGR_LEGACYOUTVOL 0x0080 | ||
64 | #define YDSXGR_LEGACYOUTVOLL 0x0080 | ||
65 | #define YDSXGR_LEGACYOUTVOLR 0x0082 | ||
66 | #define YDSXGR_NATIVEDACOUTVOL 0x0084 | ||
67 | #define YDSXGR_NATIVEDACOUTVOLL 0x0084 | ||
68 | #define YDSXGR_NATIVEDACOUTVOLR 0x0086 | ||
69 | #define YDSXGR_ZVOUTVOL 0x0088 | ||
70 | #define YDSXGR_ZVOUTVOLL 0x0088 | ||
71 | #define YDSXGR_ZVOUTVOLR 0x008A | ||
72 | #define YDSXGR_SECADCOUTVOL 0x008C | ||
73 | #define YDSXGR_SECADCOUTVOLL 0x008C | ||
74 | #define YDSXGR_SECADCOUTVOLR 0x008E | ||
75 | #define YDSXGR_PRIADCOUTVOL 0x0090 | ||
76 | #define YDSXGR_PRIADCOUTVOLL 0x0090 | ||
77 | #define YDSXGR_PRIADCOUTVOLR 0x0092 | ||
78 | #define YDSXGR_LEGACYLOOPVOL 0x0094 | ||
79 | #define YDSXGR_LEGACYLOOPVOLL 0x0094 | ||
80 | #define YDSXGR_LEGACYLOOPVOLR 0x0096 | ||
81 | #define YDSXGR_NATIVEDACLOOPVOL 0x0098 | ||
82 | #define YDSXGR_NATIVEDACLOOPVOLL 0x0098 | ||
83 | #define YDSXGR_NATIVEDACLOOPVOLR 0x009A | ||
84 | #define YDSXGR_ZVLOOPVOL 0x009C | ||
85 | #define YDSXGR_ZVLOOPVOLL 0x009E | ||
86 | #define YDSXGR_ZVLOOPVOLR 0x009E | ||
87 | #define YDSXGR_SECADCLOOPVOL 0x00A0 | ||
88 | #define YDSXGR_SECADCLOOPVOLL 0x00A0 | ||
89 | #define YDSXGR_SECADCLOOPVOLR 0x00A2 | ||
90 | #define YDSXGR_PRIADCLOOPVOL 0x00A4 | ||
91 | #define YDSXGR_PRIADCLOOPVOLL 0x00A4 | ||
92 | #define YDSXGR_PRIADCLOOPVOLR 0x00A6 | ||
93 | #define YDSXGR_NATIVEADCINVOL 0x00A8 | ||
94 | #define YDSXGR_NATIVEADCINVOLL 0x00A8 | ||
95 | #define YDSXGR_NATIVEADCINVOLR 0x00AA | ||
96 | #define YDSXGR_NATIVEDACINVOL 0x00AC | ||
97 | #define YDSXGR_NATIVEDACINVOLL 0x00AC | ||
98 | #define YDSXGR_NATIVEDACINVOLR 0x00AE | ||
99 | #define YDSXGR_BUF441OUTVOL 0x00B0 | ||
100 | #define YDSXGR_BUF441OUTVOLL 0x00B0 | ||
101 | #define YDSXGR_BUF441OUTVOLR 0x00B2 | ||
102 | #define YDSXGR_BUF441LOOPVOL 0x00B4 | ||
103 | #define YDSXGR_BUF441LOOPVOLL 0x00B4 | ||
104 | #define YDSXGR_BUF441LOOPVOLR 0x00B6 | ||
105 | #define YDSXGR_SPDIFOUTVOL 0x00B8 | ||
106 | #define YDSXGR_SPDIFOUTVOLL 0x00B8 | ||
107 | #define YDSXGR_SPDIFOUTVOLR 0x00BA | ||
108 | #define YDSXGR_SPDIFLOOPVOL 0x00BC | ||
109 | #define YDSXGR_SPDIFLOOPVOLL 0x00BC | ||
110 | #define YDSXGR_SPDIFLOOPVOLR 0x00BE | ||
111 | #define YDSXGR_ADCSLOTSR 0x00C0 | ||
112 | #define YDSXGR_RECSLOTSR 0x00C4 | ||
113 | #define YDSXGR_ADCFORMAT 0x00C8 | ||
114 | #define YDSXGR_RECFORMAT 0x00CC | ||
115 | #define YDSXGR_P44SLOTSR 0x00D0 | ||
116 | #define YDSXGR_STATUS 0x0100 | ||
117 | #define YDSXGR_CTRLSELECT 0x0104 | ||
118 | #define YDSXGR_MODE 0x0108 | ||
119 | #define YDSXGR_SAMPLECOUNT 0x010C | ||
120 | #define YDSXGR_NUMOFSAMPLES 0x0110 | ||
121 | #define YDSXGR_CONFIG 0x0114 | ||
122 | #define YDSXGR_PLAYCTRLSIZE 0x0140 | ||
123 | #define YDSXGR_RECCTRLSIZE 0x0144 | ||
124 | #define YDSXGR_EFFCTRLSIZE 0x0148 | ||
125 | #define YDSXGR_WORKSIZE 0x014C | ||
126 | #define YDSXGR_MAPOFREC 0x0150 | ||
127 | #define YDSXGR_MAPOFEFFECT 0x0154 | ||
128 | #define YDSXGR_PLAYCTRLBASE 0x0158 | ||
129 | #define YDSXGR_RECCTRLBASE 0x015C | ||
130 | #define YDSXGR_EFFCTRLBASE 0x0160 | ||
131 | #define YDSXGR_WORKBASE 0x0164 | ||
132 | #define YDSXGR_DSPINSTRAM 0x1000 | ||
133 | #define YDSXGR_CTRLINSTRAM 0x4000 | ||
134 | |||
135 | #define YDSXG_AC97READCMD 0x8000 | ||
136 | #define YDSXG_AC97WRITECMD 0x0000 | ||
137 | |||
138 | #define PCIR_DSXG_LEGACY 0x40 | ||
139 | #define PCIR_DSXG_ELEGACY 0x42 | ||
140 | #define PCIR_DSXG_CTRL 0x48 | ||
141 | #define PCIR_DSXG_PWRCTRL1 0x4a | ||
142 | #define PCIR_DSXG_PWRCTRL2 0x4e | ||
143 | #define PCIR_DSXG_FMBASE 0x60 | ||
144 | #define PCIR_DSXG_SBBASE 0x62 | ||
145 | #define PCIR_DSXG_MPU401BASE 0x64 | ||
146 | #define PCIR_DSXG_JOYBASE 0x66 | ||
147 | |||
148 | #define YDSXG_DSPLENGTH 0x0080 | ||
149 | #define YDSXG_CTRLLENGTH 0x3000 | ||
150 | |||
151 | #define YDSXG_DEFAULT_WORK_SIZE 0x0400 | ||
152 | |||
153 | #define YDSXG_PLAYBACK_VOICES 64 | ||
154 | #define YDSXG_CAPTURE_VOICES 2 | ||
155 | #define YDSXG_EFFECT_VOICES 5 | ||
156 | |||
157 | #define YMFPCI_LEGACY_SBEN (1 << 0) /* soundblaster enable */ | ||
158 | #define YMFPCI_LEGACY_FMEN (1 << 1) /* OPL3 enable */ | ||
159 | #define YMFPCI_LEGACY_JPEN (1 << 2) /* joystick enable */ | ||
160 | #define YMFPCI_LEGACY_MEN (1 << 3) /* MPU401 enable */ | ||
161 | #define YMFPCI_LEGACY_MIEN (1 << 4) /* MPU RX irq enable */ | ||
162 | #define YMFPCI_LEGACY_IOBITS (1 << 5) /* i/o bits range, 0 = 16bit, 1 =10bit */ | ||
163 | #define YMFPCI_LEGACY_SDMA (3 << 6) /* SB DMA select */ | ||
164 | #define YMFPCI_LEGACY_SBIRQ (7 << 8) /* SB IRQ select */ | ||
165 | #define YMFPCI_LEGACY_MPUIRQ (7 << 11) /* MPU IRQ select */ | ||
166 | #define YMFPCI_LEGACY_SIEN (1 << 14) /* serialized IRQ */ | ||
167 | #define YMFPCI_LEGACY_LAD (1 << 15) /* legacy audio disable */ | ||
168 | |||
169 | #define YMFPCI_LEGACY2_FMIO (3 << 0) /* OPL3 i/o address (724/740) */ | ||
170 | #define YMFPCI_LEGACY2_SBIO (3 << 2) /* SB i/o address (724/740) */ | ||
171 | #define YMFPCI_LEGACY2_MPUIO (3 << 4) /* MPU401 i/o address (724/740) */ | ||
172 | #define YMFPCI_LEGACY2_JSIO (3 << 6) /* joystick i/o address (724/740) */ | ||
173 | #define YMFPCI_LEGACY2_MAIM (1 << 8) /* MPU401 ack intr mask */ | ||
174 | #define YMFPCI_LEGACY2_SMOD (3 << 11) /* SB DMA mode */ | ||
175 | #define YMFPCI_LEGACY2_SBVER (3 << 13) /* SB version select */ | ||
176 | #define YMFPCI_LEGACY2_IMOD (1 << 15) /* legacy IRQ mode */ | ||
177 | /* SIEN:IMOD 0:0 = legacy irq, 0:1 = INTA, 1:0 = serialized IRQ */ | ||
178 | |||
179 | #if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE)) | ||
180 | #define SUPPORT_JOYSTICK | ||
181 | #endif | ||
182 | |||
183 | /* | ||
184 | * | ||
185 | */ | ||
186 | |||
187 | struct snd_ymfpci_playback_bank { | ||
188 | u32 format; | ||
189 | u32 loop_default; | ||
190 | u32 base; /* 32-bit address */ | ||
191 | u32 loop_start; /* 32-bit offset */ | ||
192 | u32 loop_end; /* 32-bit offset */ | ||
193 | u32 loop_frac; /* 8-bit fraction - loop_start */ | ||
194 | u32 delta_end; /* pitch delta end */ | ||
195 | u32 lpfK_end; | ||
196 | u32 eg_gain_end; | ||
197 | u32 left_gain_end; | ||
198 | u32 right_gain_end; | ||
199 | u32 eff1_gain_end; | ||
200 | u32 eff2_gain_end; | ||
201 | u32 eff3_gain_end; | ||
202 | u32 lpfQ; | ||
203 | u32 status; | ||
204 | u32 num_of_frames; | ||
205 | u32 loop_count; | ||
206 | u32 start; | ||
207 | u32 start_frac; | ||
208 | u32 delta; | ||
209 | u32 lpfK; | ||
210 | u32 eg_gain; | ||
211 | u32 left_gain; | ||
212 | u32 right_gain; | ||
213 | u32 eff1_gain; | ||
214 | u32 eff2_gain; | ||
215 | u32 eff3_gain; | ||
216 | u32 lpfD1; | ||
217 | u32 lpfD2; | ||
218 | }; | ||
219 | |||
220 | struct snd_ymfpci_capture_bank { | ||
221 | u32 base; /* 32-bit address */ | ||
222 | u32 loop_end; /* 32-bit offset */ | ||
223 | u32 start; /* 32-bit offset */ | ||
224 | u32 num_of_loops; /* counter */ | ||
225 | }; | ||
226 | |||
227 | struct snd_ymfpci_effect_bank { | ||
228 | u32 base; /* 32-bit address */ | ||
229 | u32 loop_end; /* 32-bit offset */ | ||
230 | u32 start; /* 32-bit offset */ | ||
231 | u32 temp; | ||
232 | }; | ||
233 | |||
234 | struct snd_ymfpci_pcm; | ||
235 | struct snd_ymfpci; | ||
236 | |||
237 | enum snd_ymfpci_voice_type { | ||
238 | YMFPCI_PCM, | ||
239 | YMFPCI_SYNTH, | ||
240 | YMFPCI_MIDI | ||
241 | }; | ||
242 | |||
243 | struct snd_ymfpci_voice { | ||
244 | struct snd_ymfpci *chip; | ||
245 | int number; | ||
246 | unsigned int use: 1, | ||
247 | pcm: 1, | ||
248 | synth: 1, | ||
249 | midi: 1; | ||
250 | struct snd_ymfpci_playback_bank *bank; | ||
251 | dma_addr_t bank_addr; | ||
252 | void (*interrupt)(struct snd_ymfpci *chip, struct snd_ymfpci_voice *voice); | ||
253 | struct snd_ymfpci_pcm *ypcm; | ||
254 | }; | ||
255 | |||
256 | enum snd_ymfpci_pcm_type { | ||
257 | PLAYBACK_VOICE, | ||
258 | CAPTURE_REC, | ||
259 | CAPTURE_AC97, | ||
260 | EFFECT_DRY_LEFT, | ||
261 | EFFECT_DRY_RIGHT, | ||
262 | EFFECT_EFF1, | ||
263 | EFFECT_EFF2, | ||
264 | EFFECT_EFF3 | ||
265 | }; | ||
266 | |||
267 | struct snd_ymfpci_pcm { | ||
268 | struct snd_ymfpci *chip; | ||
269 | enum snd_ymfpci_pcm_type type; | ||
270 | struct snd_pcm_substream *substream; | ||
271 | struct snd_ymfpci_voice *voices[2]; /* playback only */ | ||
272 | unsigned int running: 1, | ||
273 | use_441_slot: 1, | ||
274 | output_front: 1, | ||
275 | output_rear: 1, | ||
276 | swap_rear: 1; | ||
277 | unsigned int update_pcm_vol; | ||
278 | u32 period_size; /* cached from runtime->period_size */ | ||
279 | u32 buffer_size; /* cached from runtime->buffer_size */ | ||
280 | u32 period_pos; | ||
281 | u32 last_pos; | ||
282 | u32 capture_bank_number; | ||
283 | u32 shift; | ||
284 | }; | ||
285 | |||
286 | struct snd_ymfpci { | ||
287 | int irq; | ||
288 | |||
289 | unsigned int device_id; /* PCI device ID */ | ||
290 | unsigned char rev; /* PCI revision */ | ||
291 | unsigned long reg_area_phys; | ||
292 | void __iomem *reg_area_virt; | ||
293 | struct resource *res_reg_area; | ||
294 | struct resource *fm_res; | ||
295 | struct resource *mpu_res; | ||
296 | |||
297 | unsigned short old_legacy_ctrl; | ||
298 | #ifdef SUPPORT_JOYSTICK | ||
299 | struct gameport *gameport; | ||
300 | #endif | ||
301 | |||
302 | struct snd_dma_buffer work_ptr; | ||
303 | |||
304 | unsigned int bank_size_playback; | ||
305 | unsigned int bank_size_capture; | ||
306 | unsigned int bank_size_effect; | ||
307 | unsigned int work_size; | ||
308 | |||
309 | void *bank_base_playback; | ||
310 | void *bank_base_capture; | ||
311 | void *bank_base_effect; | ||
312 | void *work_base; | ||
313 | dma_addr_t bank_base_playback_addr; | ||
314 | dma_addr_t bank_base_capture_addr; | ||
315 | dma_addr_t bank_base_effect_addr; | ||
316 | dma_addr_t work_base_addr; | ||
317 | struct snd_dma_buffer ac3_tmp_base; | ||
318 | |||
319 | u32 *ctrl_playback; | ||
320 | struct snd_ymfpci_playback_bank *bank_playback[YDSXG_PLAYBACK_VOICES][2]; | ||
321 | struct snd_ymfpci_capture_bank *bank_capture[YDSXG_CAPTURE_VOICES][2]; | ||
322 | struct snd_ymfpci_effect_bank *bank_effect[YDSXG_EFFECT_VOICES][2]; | ||
323 | |||
324 | int start_count; | ||
325 | |||
326 | u32 active_bank; | ||
327 | struct snd_ymfpci_voice voices[64]; | ||
328 | int src441_used; | ||
329 | |||
330 | struct snd_ac97_bus *ac97_bus; | ||
331 | struct snd_ac97 *ac97; | ||
332 | struct snd_rawmidi *rawmidi; | ||
333 | struct snd_timer *timer; | ||
334 | unsigned int timer_ticks; | ||
335 | |||
336 | struct pci_dev *pci; | ||
337 | struct snd_card *card; | ||
338 | struct snd_pcm *pcm; | ||
339 | struct snd_pcm *pcm2; | ||
340 | struct snd_pcm *pcm_spdif; | ||
341 | struct snd_pcm *pcm_4ch; | ||
342 | struct snd_pcm_substream *capture_substream[YDSXG_CAPTURE_VOICES]; | ||
343 | struct snd_pcm_substream *effect_substream[YDSXG_EFFECT_VOICES]; | ||
344 | struct snd_kcontrol *ctl_vol_recsrc; | ||
345 | struct snd_kcontrol *ctl_vol_adcrec; | ||
346 | struct snd_kcontrol *ctl_vol_spdifrec; | ||
347 | unsigned short spdif_bits, spdif_pcm_bits; | ||
348 | struct snd_kcontrol *spdif_pcm_ctl; | ||
349 | int mode_dup4ch; | ||
350 | int rear_opened; | ||
351 | int spdif_opened; | ||
352 | struct snd_ymfpci_pcm_mixer { | ||
353 | u16 left; | ||
354 | u16 right; | ||
355 | struct snd_kcontrol *ctl; | ||
356 | } pcm_mixer[32]; | ||
357 | |||
358 | spinlock_t reg_lock; | ||
359 | spinlock_t voice_lock; | ||
360 | wait_queue_head_t interrupt_sleep; | ||
361 | atomic_t interrupt_sleep_count; | ||
362 | struct snd_info_entry *proc_entry; | ||
363 | const struct firmware *dsp_microcode; | ||
364 | const struct firmware *controller_microcode; | ||
365 | |||
366 | #ifdef CONFIG_PM | ||
367 | u32 *saved_regs; | ||
368 | u32 saved_ydsxgr_mode; | ||
369 | u16 saved_dsxg_legacy; | ||
370 | u16 saved_dsxg_elegacy; | ||
371 | #endif | ||
372 | }; | ||
373 | |||
374 | int snd_ymfpci_create(struct snd_card *card, | ||
375 | struct pci_dev *pci, | ||
376 | unsigned short old_legacy_ctrl, | ||
377 | struct snd_ymfpci ** rcodec); | ||
378 | void snd_ymfpci_free_gameport(struct snd_ymfpci *chip); | ||
379 | |||
380 | int snd_ymfpci_suspend(struct pci_dev *pci, pm_message_t state); | ||
381 | int snd_ymfpci_resume(struct pci_dev *pci); | ||
382 | |||
383 | int snd_ymfpci_pcm(struct snd_ymfpci *chip, int device, struct snd_pcm **rpcm); | ||
384 | int snd_ymfpci_pcm2(struct snd_ymfpci *chip, int device, struct snd_pcm **rpcm); | ||
385 | int snd_ymfpci_pcm_spdif(struct snd_ymfpci *chip, int device, struct snd_pcm **rpcm); | ||
386 | int snd_ymfpci_pcm_4ch(struct snd_ymfpci *chip, int device, struct snd_pcm **rpcm); | ||
387 | int snd_ymfpci_mixer(struct snd_ymfpci *chip, int rear_switch); | ||
388 | int snd_ymfpci_timer(struct snd_ymfpci *chip, int device); | ||
389 | |||
390 | #endif /* __SOUND_YMFPCI_H */ | ||
diff --git a/include/target/target_core_backend.h b/include/target/target_core_backend.h index 2d7db85e93ae..f1405d335a96 100644 --- a/include/target/target_core_backend.h +++ b/include/target/target_core_backend.h | |||
@@ -24,10 +24,8 @@ struct se_subsystem_api { | |||
24 | struct se_subsystem_dev *, void *); | 24 | struct se_subsystem_dev *, void *); |
25 | void (*free_device)(void *); | 25 | void (*free_device)(void *); |
26 | int (*transport_complete)(struct se_cmd *cmd, struct scatterlist *); | 26 | int (*transport_complete)(struct se_cmd *cmd, struct scatterlist *); |
27 | int (*execute_cmd)(struct se_cmd *, struct scatterlist *, u32, | 27 | |
28 | enum dma_data_direction); | 28 | int (*parse_cdb)(struct se_cmd *cmd); |
29 | int (*do_discard)(struct se_device *, sector_t, u32); | ||
30 | void (*do_sync_cache)(struct se_cmd *); | ||
31 | ssize_t (*check_configfs_dev_params)(struct se_hba *, | 29 | ssize_t (*check_configfs_dev_params)(struct se_hba *, |
32 | struct se_subsystem_dev *); | 30 | struct se_subsystem_dev *); |
33 | ssize_t (*set_configfs_dev_params)(struct se_hba *, | 31 | ssize_t (*set_configfs_dev_params)(struct se_hba *, |
@@ -40,6 +38,13 @@ struct se_subsystem_api { | |||
40 | unsigned char *(*get_sense_buffer)(struct se_cmd *); | 38 | unsigned char *(*get_sense_buffer)(struct se_cmd *); |
41 | }; | 39 | }; |
42 | 40 | ||
41 | struct spc_ops { | ||
42 | int (*execute_rw)(struct se_cmd *cmd); | ||
43 | int (*execute_sync_cache)(struct se_cmd *cmd); | ||
44 | int (*execute_write_same)(struct se_cmd *cmd); | ||
45 | int (*execute_unmap)(struct se_cmd *cmd); | ||
46 | }; | ||
47 | |||
43 | int transport_subsystem_register(struct se_subsystem_api *); | 48 | int transport_subsystem_register(struct se_subsystem_api *); |
44 | void transport_subsystem_release(struct se_subsystem_api *); | 49 | void transport_subsystem_release(struct se_subsystem_api *); |
45 | 50 | ||
@@ -49,6 +54,10 @@ struct se_device *transport_add_device_to_core_hba(struct se_hba *, | |||
49 | 54 | ||
50 | void target_complete_cmd(struct se_cmd *, u8); | 55 | void target_complete_cmd(struct se_cmd *, u8); |
51 | 56 | ||
57 | int sbc_parse_cdb(struct se_cmd *cmd, struct spc_ops *ops); | ||
58 | int spc_parse_cdb(struct se_cmd *cmd, unsigned int *size); | ||
59 | int spc_get_write_same_sectors(struct se_cmd *cmd); | ||
60 | |||
52 | void transport_set_vpd_proto_id(struct t10_vpd *, unsigned char *); | 61 | void transport_set_vpd_proto_id(struct t10_vpd *, unsigned char *); |
53 | int transport_set_vpd_assoc(struct t10_vpd *, unsigned char *); | 62 | int transport_set_vpd_assoc(struct t10_vpd *, unsigned char *); |
54 | int transport_set_vpd_ident_type(struct t10_vpd *, unsigned char *); | 63 | int transport_set_vpd_ident_type(struct t10_vpd *, unsigned char *); |
diff --git a/include/target/target_core_base.h b/include/target/target_core_base.h index dc35d8660aa6..128ce46fa48a 100644 --- a/include/target/target_core_base.h +++ b/include/target/target_core_base.h | |||
@@ -145,12 +145,9 @@ enum transport_state_table { | |||
145 | TRANSPORT_NO_STATE = 0, | 145 | TRANSPORT_NO_STATE = 0, |
146 | TRANSPORT_NEW_CMD = 1, | 146 | TRANSPORT_NEW_CMD = 1, |
147 | TRANSPORT_WRITE_PENDING = 3, | 147 | TRANSPORT_WRITE_PENDING = 3, |
148 | TRANSPORT_PROCESS_WRITE = 4, | ||
149 | TRANSPORT_PROCESSING = 5, | 148 | TRANSPORT_PROCESSING = 5, |
150 | TRANSPORT_COMPLETE = 6, | 149 | TRANSPORT_COMPLETE = 6, |
151 | TRANSPORT_PROCESS_TMR = 9, | ||
152 | TRANSPORT_ISTATE_PROCESSING = 11, | 150 | TRANSPORT_ISTATE_PROCESSING = 11, |
153 | TRANSPORT_NEW_CMD_MAP = 16, | ||
154 | TRANSPORT_COMPLETE_QF_WP = 18, | 151 | TRANSPORT_COMPLETE_QF_WP = 18, |
155 | TRANSPORT_COMPLETE_QF_OK = 19, | 152 | TRANSPORT_COMPLETE_QF_OK = 19, |
156 | }; | 153 | }; |
@@ -160,25 +157,20 @@ enum se_cmd_flags_table { | |||
160 | SCF_SUPPORTED_SAM_OPCODE = 0x00000001, | 157 | SCF_SUPPORTED_SAM_OPCODE = 0x00000001, |
161 | SCF_TRANSPORT_TASK_SENSE = 0x00000002, | 158 | SCF_TRANSPORT_TASK_SENSE = 0x00000002, |
162 | SCF_EMULATED_TASK_SENSE = 0x00000004, | 159 | SCF_EMULATED_TASK_SENSE = 0x00000004, |
163 | SCF_SCSI_DATA_SG_IO_CDB = 0x00000008, | 160 | SCF_SCSI_DATA_CDB = 0x00000008, |
164 | SCF_SCSI_CONTROL_SG_IO_CDB = 0x00000010, | 161 | SCF_SCSI_TMR_CDB = 0x00000010, |
165 | SCF_SCSI_NON_DATA_CDB = 0x00000020, | 162 | SCF_SCSI_CDB_EXCEPTION = 0x00000020, |
166 | SCF_SCSI_TMR_CDB = 0x00000040, | 163 | SCF_SCSI_RESERVATION_CONFLICT = 0x00000040, |
167 | SCF_SCSI_CDB_EXCEPTION = 0x00000080, | 164 | SCF_FUA = 0x00000080, |
168 | SCF_SCSI_RESERVATION_CONFLICT = 0x00000100, | 165 | SCF_SE_LUN_CMD = 0x00000100, |
169 | SCF_FUA = 0x00000200, | 166 | SCF_BIDI = 0x00000400, |
170 | SCF_SE_LUN_CMD = 0x00000800, | 167 | SCF_SENT_CHECK_CONDITION = 0x00000800, |
171 | SCF_SE_ALLOW_EOO = 0x00001000, | 168 | SCF_OVERFLOW_BIT = 0x00001000, |
172 | SCF_BIDI = 0x00002000, | 169 | SCF_UNDERFLOW_BIT = 0x00002000, |
173 | SCF_SENT_CHECK_CONDITION = 0x00004000, | 170 | SCF_SENT_DELAYED_TAS = 0x00004000, |
174 | SCF_OVERFLOW_BIT = 0x00008000, | 171 | SCF_ALUA_NON_OPTIMIZED = 0x00008000, |
175 | SCF_UNDERFLOW_BIT = 0x00010000, | 172 | SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC = 0x00020000, |
176 | SCF_SENT_DELAYED_TAS = 0x00020000, | 173 | SCF_ACK_KREF = 0x00040000, |
177 | SCF_ALUA_NON_OPTIMIZED = 0x00040000, | ||
178 | SCF_DELAYED_CMD_FROM_SAM_ATTR = 0x00080000, | ||
179 | SCF_UNUSED = 0x00100000, | ||
180 | SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC = 0x00200000, | ||
181 | SCF_ACK_KREF = 0x00400000, | ||
182 | }; | 174 | }; |
183 | 175 | ||
184 | /* struct se_dev_entry->lun_flags and struct se_lun->lun_access */ | 176 | /* struct se_dev_entry->lun_flags and struct se_lun->lun_access */ |
@@ -220,6 +212,7 @@ enum tcm_sense_reason_table { | |||
220 | TCM_CHECK_CONDITION_UNIT_ATTENTION = 0x0e, | 212 | TCM_CHECK_CONDITION_UNIT_ATTENTION = 0x0e, |
221 | TCM_CHECK_CONDITION_NOT_READY = 0x0f, | 213 | TCM_CHECK_CONDITION_NOT_READY = 0x0f, |
222 | TCM_RESERVATION_CONFLICT = 0x10, | 214 | TCM_RESERVATION_CONFLICT = 0x10, |
215 | TCM_ADDRESS_OUT_OF_RANGE = 0x11, | ||
223 | }; | 216 | }; |
224 | 217 | ||
225 | enum target_sc_flags_table { | 218 | enum target_sc_flags_table { |
@@ -471,13 +464,6 @@ struct t10_reservation { | |||
471 | struct t10_reservation_ops pr_ops; | 464 | struct t10_reservation_ops pr_ops; |
472 | }; | 465 | }; |
473 | 466 | ||
474 | struct se_queue_obj { | ||
475 | atomic_t queue_cnt; | ||
476 | spinlock_t cmd_queue_lock; | ||
477 | struct list_head qobj_list; | ||
478 | wait_queue_head_t thread_wq; | ||
479 | }; | ||
480 | |||
481 | struct se_tmr_req { | 467 | struct se_tmr_req { |
482 | /* Task Management function to be performed */ | 468 | /* Task Management function to be performed */ |
483 | u8 function; | 469 | u8 function; |
@@ -486,11 +472,8 @@ struct se_tmr_req { | |||
486 | int call_transport; | 472 | int call_transport; |
487 | /* Reference to ITT that Task Mgmt should be performed */ | 473 | /* Reference to ITT that Task Mgmt should be performed */ |
488 | u32 ref_task_tag; | 474 | u32 ref_task_tag; |
489 | /* 64-bit encoded SAM LUN from $FABRIC_MOD TMR header */ | ||
490 | u64 ref_task_lun; | ||
491 | void *fabric_tmr_ptr; | 475 | void *fabric_tmr_ptr; |
492 | struct se_cmd *task_cmd; | 476 | struct se_cmd *task_cmd; |
493 | struct se_cmd *ref_cmd; | ||
494 | struct se_device *tmr_dev; | 477 | struct se_device *tmr_dev; |
495 | struct se_lun *tmr_lun; | 478 | struct se_lun *tmr_lun; |
496 | struct list_head tmr_list; | 479 | struct list_head tmr_list; |
@@ -537,7 +520,6 @@ struct se_cmd { | |||
537 | /* Only used for internal passthrough and legacy TCM fabric modules */ | 520 | /* Only used for internal passthrough and legacy TCM fabric modules */ |
538 | struct se_session *se_sess; | 521 | struct se_session *se_sess; |
539 | struct se_tmr_req *se_tmr_req; | 522 | struct se_tmr_req *se_tmr_req; |
540 | struct list_head se_queue_node; | ||
541 | struct list_head se_cmd_list; | 523 | struct list_head se_cmd_list; |
542 | struct completion cmd_wait_comp; | 524 | struct completion cmd_wait_comp; |
543 | struct kref cmd_kref; | 525 | struct kref cmd_kref; |
@@ -575,7 +557,6 @@ struct se_cmd { | |||
575 | struct scatterlist *t_bidi_data_sg; | 557 | struct scatterlist *t_bidi_data_sg; |
576 | unsigned int t_bidi_data_nents; | 558 | unsigned int t_bidi_data_nents; |
577 | 559 | ||
578 | struct list_head execute_list; | ||
579 | struct list_head state_list; | 560 | struct list_head state_list; |
580 | bool state_active; | 561 | bool state_active; |
581 | 562 | ||
@@ -633,7 +614,6 @@ struct se_session { | |||
633 | struct list_head sess_list; | 614 | struct list_head sess_list; |
634 | struct list_head sess_acl_list; | 615 | struct list_head sess_acl_list; |
635 | struct list_head sess_cmd_list; | 616 | struct list_head sess_cmd_list; |
636 | struct list_head sess_wait_list; | ||
637 | spinlock_t sess_cmd_lock; | 617 | spinlock_t sess_cmd_lock; |
638 | struct kref sess_kref; | 618 | struct kref sess_kref; |
639 | }; | 619 | }; |
@@ -780,13 +760,11 @@ struct se_device { | |||
780 | /* Active commands on this virtual SE device */ | 760 | /* Active commands on this virtual SE device */ |
781 | atomic_t simple_cmds; | 761 | atomic_t simple_cmds; |
782 | atomic_t dev_ordered_id; | 762 | atomic_t dev_ordered_id; |
783 | atomic_t execute_tasks; | ||
784 | atomic_t dev_ordered_sync; | 763 | atomic_t dev_ordered_sync; |
785 | atomic_t dev_qf_count; | 764 | atomic_t dev_qf_count; |
786 | struct se_obj dev_obj; | 765 | struct se_obj dev_obj; |
787 | struct se_obj dev_access_obj; | 766 | struct se_obj dev_access_obj; |
788 | struct se_obj dev_export_obj; | 767 | struct se_obj dev_export_obj; |
789 | struct se_queue_obj dev_queue_obj; | ||
790 | spinlock_t delayed_cmd_lock; | 768 | spinlock_t delayed_cmd_lock; |
791 | spinlock_t execute_task_lock; | 769 | spinlock_t execute_task_lock; |
792 | spinlock_t dev_reservation_lock; | 770 | spinlock_t dev_reservation_lock; |
@@ -802,11 +780,9 @@ struct se_device { | |||
802 | struct t10_pr_registration *dev_pr_res_holder; | 780 | struct t10_pr_registration *dev_pr_res_holder; |
803 | struct list_head dev_sep_list; | 781 | struct list_head dev_sep_list; |
804 | struct list_head dev_tmr_list; | 782 | struct list_head dev_tmr_list; |
805 | /* Pointer to descriptor for processing thread */ | 783 | struct workqueue_struct *tmr_wq; |
806 | struct task_struct *process_thread; | ||
807 | struct work_struct qf_work_queue; | 784 | struct work_struct qf_work_queue; |
808 | struct list_head delayed_cmd_list; | 785 | struct list_head delayed_cmd_list; |
809 | struct list_head execute_list; | ||
810 | struct list_head state_list; | 786 | struct list_head state_list; |
811 | struct list_head qf_cmd_list; | 787 | struct list_head qf_cmd_list; |
812 | /* Pointer to associated SE HBA */ | 788 | /* Pointer to associated SE HBA */ |
diff --git a/include/target/target_core_fabric.h b/include/target/target_core_fabric.h index c78a23333c4f..69fb3cfd02d7 100644 --- a/include/target/target_core_fabric.h +++ b/include/target/target_core_fabric.h | |||
@@ -33,12 +33,6 @@ struct target_core_fabric_ops { | |||
33 | struct se_node_acl *); | 33 | struct se_node_acl *); |
34 | u32 (*tpg_get_inst_index)(struct se_portal_group *); | 34 | u32 (*tpg_get_inst_index)(struct se_portal_group *); |
35 | /* | 35 | /* |
36 | * Optional function pointer for TCM to perform command map | ||
37 | * from TCM processing thread context, for those struct se_cmd | ||
38 | * initially allocated in interrupt context. | ||
39 | */ | ||
40 | int (*new_cmd_map)(struct se_cmd *); | ||
41 | /* | ||
42 | * Optional to release struct se_cmd and fabric dependent allocated | 36 | * Optional to release struct se_cmd and fabric dependent allocated |
43 | * I/O descriptor in transport_cmd_check_stop(). | 37 | * I/O descriptor in transport_cmd_check_stop(). |
44 | * | 38 | * |
@@ -108,20 +102,18 @@ void transport_init_se_cmd(struct se_cmd *, struct target_core_fabric_ops *, | |||
108 | struct se_session *, u32, int, int, unsigned char *); | 102 | struct se_session *, u32, int, int, unsigned char *); |
109 | int transport_lookup_cmd_lun(struct se_cmd *, u32); | 103 | int transport_lookup_cmd_lun(struct se_cmd *, u32); |
110 | int target_setup_cmd_from_cdb(struct se_cmd *, unsigned char *); | 104 | int target_setup_cmd_from_cdb(struct se_cmd *, unsigned char *); |
111 | void target_submit_cmd(struct se_cmd *, struct se_session *, unsigned char *, | 105 | int target_submit_cmd(struct se_cmd *, struct se_session *, unsigned char *, |
112 | unsigned char *, u32, u32, int, int, int); | 106 | unsigned char *, u32, u32, int, int, int); |
113 | int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess, | 107 | int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess, |
114 | unsigned char *sense, u32 unpacked_lun, | 108 | unsigned char *sense, u32 unpacked_lun, |
115 | void *fabric_tmr_ptr, unsigned char tm_type, | 109 | void *fabric_tmr_ptr, unsigned char tm_type, |
116 | gfp_t, unsigned int, int); | 110 | gfp_t, unsigned int, int); |
117 | int transport_handle_cdb_direct(struct se_cmd *); | 111 | int transport_handle_cdb_direct(struct se_cmd *); |
118 | int transport_generic_handle_cdb_map(struct se_cmd *); | ||
119 | int transport_generic_handle_data(struct se_cmd *); | ||
120 | int transport_generic_map_mem_to_cmd(struct se_cmd *cmd, | 112 | int transport_generic_map_mem_to_cmd(struct se_cmd *cmd, |
121 | struct scatterlist *, u32, struct scatterlist *, u32); | 113 | struct scatterlist *, u32, struct scatterlist *, u32); |
122 | int transport_generic_new_cmd(struct se_cmd *); | 114 | int transport_generic_new_cmd(struct se_cmd *); |
123 | 115 | ||
124 | void transport_generic_process_write(struct se_cmd *); | 116 | void target_execute_cmd(struct se_cmd *cmd); |
125 | 117 | ||
126 | void transport_generic_free_cmd(struct se_cmd *, int); | 118 | void transport_generic_free_cmd(struct se_cmd *, int); |
127 | 119 | ||
@@ -129,9 +121,8 @@ bool transport_wait_for_tasks(struct se_cmd *); | |||
129 | int transport_check_aborted_status(struct se_cmd *, int); | 121 | int transport_check_aborted_status(struct se_cmd *, int); |
130 | int transport_send_check_condition_and_sense(struct se_cmd *, u8, int); | 122 | int transport_send_check_condition_and_sense(struct se_cmd *, u8, int); |
131 | 123 | ||
132 | void target_get_sess_cmd(struct se_session *, struct se_cmd *, bool); | ||
133 | int target_put_sess_cmd(struct se_session *, struct se_cmd *); | 124 | int target_put_sess_cmd(struct se_session *, struct se_cmd *); |
134 | void target_splice_sess_cmd_list(struct se_session *); | 125 | void target_sess_cmd_list_set_waiting(struct se_session *); |
135 | void target_wait_for_sess_cmds(struct se_session *, int); | 126 | void target_wait_for_sess_cmds(struct se_session *, int); |
136 | 127 | ||
137 | int core_alua_check_nonop_delay(struct se_cmd *); | 128 | int core_alua_check_nonop_delay(struct se_cmd *); |
diff --git a/include/trace/events/kvm.h b/include/trace/events/kvm.h index 46e3cd8e197a..7ef9e759f499 100644 --- a/include/trace/events/kvm.h +++ b/include/trace/events/kvm.h | |||
@@ -13,7 +13,8 @@ | |||
13 | ERSN(DEBUG), ERSN(HLT), ERSN(MMIO), ERSN(IRQ_WINDOW_OPEN), \ | 13 | ERSN(DEBUG), ERSN(HLT), ERSN(MMIO), ERSN(IRQ_WINDOW_OPEN), \ |
14 | ERSN(SHUTDOWN), ERSN(FAIL_ENTRY), ERSN(INTR), ERSN(SET_TPR), \ | 14 | ERSN(SHUTDOWN), ERSN(FAIL_ENTRY), ERSN(INTR), ERSN(SET_TPR), \ |
15 | ERSN(TPR_ACCESS), ERSN(S390_SIEIC), ERSN(S390_RESET), ERSN(DCR),\ | 15 | ERSN(TPR_ACCESS), ERSN(S390_SIEIC), ERSN(S390_RESET), ERSN(DCR),\ |
16 | ERSN(NMI), ERSN(INTERNAL_ERROR), ERSN(OSI) | 16 | ERSN(NMI), ERSN(INTERNAL_ERROR), ERSN(OSI), ERSN(PAPR_HCALL), \ |
17 | ERSN(S390_UCONTROL) | ||
17 | 18 | ||
18 | TRACE_EVENT(kvm_userspace_exit, | 19 | TRACE_EVENT(kvm_userspace_exit, |
19 | TP_PROTO(__u32 reason, int errno), | 20 | TP_PROTO(__u32 reason, int errno), |
@@ -36,7 +37,7 @@ TRACE_EVENT(kvm_userspace_exit, | |||
36 | __entry->errno < 0 ? -__entry->errno : __entry->reason) | 37 | __entry->errno < 0 ? -__entry->errno : __entry->reason) |
37 | ); | 38 | ); |
38 | 39 | ||
39 | #if defined(__KVM_HAVE_IOAPIC) | 40 | #if defined(__KVM_HAVE_IRQ_LINE) |
40 | TRACE_EVENT(kvm_set_irq, | 41 | TRACE_EVENT(kvm_set_irq, |
41 | TP_PROTO(unsigned int gsi, int level, int irq_source_id), | 42 | TP_PROTO(unsigned int gsi, int level, int irq_source_id), |
42 | TP_ARGS(gsi, level, irq_source_id), | 43 | TP_ARGS(gsi, level, irq_source_id), |
@@ -56,7 +57,9 @@ TRACE_EVENT(kvm_set_irq, | |||
56 | TP_printk("gsi %u level %d source %d", | 57 | TP_printk("gsi %u level %d source %d", |
57 | __entry->gsi, __entry->level, __entry->irq_source_id) | 58 | __entry->gsi, __entry->level, __entry->irq_source_id) |
58 | ); | 59 | ); |
60 | #endif | ||
59 | 61 | ||
62 | #if defined(__KVM_HAVE_IOAPIC) | ||
60 | #define kvm_deliver_mode \ | 63 | #define kvm_deliver_mode \ |
61 | {0x0, "Fixed"}, \ | 64 | {0x0, "Fixed"}, \ |
62 | {0x1, "LowPrio"}, \ | 65 | {0x1, "LowPrio"}, \ |
diff --git a/include/trace/events/rcu.h b/include/trace/events/rcu.h index d274734b2aa4..5bde94d8585b 100644 --- a/include/trace/events/rcu.h +++ b/include/trace/events/rcu.h | |||
@@ -541,6 +541,50 @@ TRACE_EVENT(rcu_torture_read, | |||
541 | __entry->rcutorturename, __entry->rhp) | 541 | __entry->rcutorturename, __entry->rhp) |
542 | ); | 542 | ); |
543 | 543 | ||
544 | /* | ||
545 | * Tracepoint for _rcu_barrier() execution. The string "s" describes | ||
546 | * the _rcu_barrier phase: | ||
547 | * "Begin": rcu_barrier_callback() started. | ||
548 | * "Check": rcu_barrier_callback() checking for piggybacking. | ||
549 | * "EarlyExit": rcu_barrier_callback() piggybacked, thus early exit. | ||
550 | * "Inc1": rcu_barrier_callback() piggyback check counter incremented. | ||
551 | * "Offline": rcu_barrier_callback() found offline CPU | ||
552 | * "OnlineQ": rcu_barrier_callback() found online CPU with callbacks. | ||
553 | * "OnlineNQ": rcu_barrier_callback() found online CPU, no callbacks. | ||
554 | * "IRQ": An rcu_barrier_callback() callback posted on remote CPU. | ||
555 | * "CB": An rcu_barrier_callback() invoked a callback, not the last. | ||
556 | * "LastCB": An rcu_barrier_callback() invoked the last callback. | ||
557 | * "Inc2": rcu_barrier_callback() piggyback check counter incremented. | ||
558 | * The "cpu" argument is the CPU or -1 if meaningless, the "cnt" argument | ||
559 | * is the count of remaining callbacks, and "done" is the piggybacking count. | ||
560 | */ | ||
561 | TRACE_EVENT(rcu_barrier, | ||
562 | |||
563 | TP_PROTO(char *rcuname, char *s, int cpu, int cnt, unsigned long done), | ||
564 | |||
565 | TP_ARGS(rcuname, s, cpu, cnt, done), | ||
566 | |||
567 | TP_STRUCT__entry( | ||
568 | __field(char *, rcuname) | ||
569 | __field(char *, s) | ||
570 | __field(int, cpu) | ||
571 | __field(int, cnt) | ||
572 | __field(unsigned long, done) | ||
573 | ), | ||
574 | |||
575 | TP_fast_assign( | ||
576 | __entry->rcuname = rcuname; | ||
577 | __entry->s = s; | ||
578 | __entry->cpu = cpu; | ||
579 | __entry->cnt = cnt; | ||
580 | __entry->done = done; | ||
581 | ), | ||
582 | |||
583 | TP_printk("%s %s cpu %d remaining %d # %lu", | ||
584 | __entry->rcuname, __entry->s, __entry->cpu, __entry->cnt, | ||
585 | __entry->done) | ||
586 | ); | ||
587 | |||
544 | #else /* #ifdef CONFIG_RCU_TRACE */ | 588 | #else /* #ifdef CONFIG_RCU_TRACE */ |
545 | 589 | ||
546 | #define trace_rcu_grace_period(rcuname, gpnum, gpevent) do { } while (0) | 590 | #define trace_rcu_grace_period(rcuname, gpnum, gpevent) do { } while (0) |
@@ -564,6 +608,7 @@ TRACE_EVENT(rcu_torture_read, | |||
564 | #define trace_rcu_batch_end(rcuname, callbacks_invoked, cb, nr, iit, risk) \ | 608 | #define trace_rcu_batch_end(rcuname, callbacks_invoked, cb, nr, iit, risk) \ |
565 | do { } while (0) | 609 | do { } while (0) |
566 | #define trace_rcu_torture_read(rcutorturename, rhp) do { } while (0) | 610 | #define trace_rcu_torture_read(rcutorturename, rhp) do { } while (0) |
611 | #define trace_rcu_barrier(name, s, cpu, cnt, done) do { } while (0) | ||
567 | 612 | ||
568 | #endif /* #else #ifdef CONFIG_RCU_TRACE */ | 613 | #endif /* #else #ifdef CONFIG_RCU_TRACE */ |
569 | 614 | ||
diff --git a/include/trace/events/workqueue.h b/include/trace/events/workqueue.h index 4018f5058f27..f28d1b65f178 100644 --- a/include/trace/events/workqueue.h +++ b/include/trace/events/workqueue.h | |||
@@ -54,7 +54,7 @@ TRACE_EVENT(workqueue_queue_work, | |||
54 | __entry->function = work->func; | 54 | __entry->function = work->func; |
55 | __entry->workqueue = cwq->wq; | 55 | __entry->workqueue = cwq->wq; |
56 | __entry->req_cpu = req_cpu; | 56 | __entry->req_cpu = req_cpu; |
57 | __entry->cpu = cwq->gcwq->cpu; | 57 | __entry->cpu = cwq->pool->gcwq->cpu; |
58 | ), | 58 | ), |
59 | 59 | ||
60 | TP_printk("work struct=%p function=%pf workqueue=%p req_cpu=%u cpu=%u", | 60 | TP_printk("work struct=%p function=%pf workqueue=%p req_cpu=%u cpu=%u", |
diff --git a/include/trace/events/xen.h b/include/trace/events/xen.h index 92f1a796829e..15ba03bdd7c6 100644 --- a/include/trace/events/xen.h +++ b/include/trace/events/xen.h | |||
@@ -397,18 +397,20 @@ TRACE_EVENT(xen_mmu_flush_tlb_single, | |||
397 | 397 | ||
398 | TRACE_EVENT(xen_mmu_flush_tlb_others, | 398 | TRACE_EVENT(xen_mmu_flush_tlb_others, |
399 | TP_PROTO(const struct cpumask *cpus, struct mm_struct *mm, | 399 | TP_PROTO(const struct cpumask *cpus, struct mm_struct *mm, |
400 | unsigned long addr), | 400 | unsigned long addr, unsigned long end), |
401 | TP_ARGS(cpus, mm, addr), | 401 | TP_ARGS(cpus, mm, addr, end), |
402 | TP_STRUCT__entry( | 402 | TP_STRUCT__entry( |
403 | __field(unsigned, ncpus) | 403 | __field(unsigned, ncpus) |
404 | __field(struct mm_struct *, mm) | 404 | __field(struct mm_struct *, mm) |
405 | __field(unsigned long, addr) | 405 | __field(unsigned long, addr) |
406 | __field(unsigned long, end) | ||
406 | ), | 407 | ), |
407 | TP_fast_assign(__entry->ncpus = cpumask_weight(cpus); | 408 | TP_fast_assign(__entry->ncpus = cpumask_weight(cpus); |
408 | __entry->mm = mm; | 409 | __entry->mm = mm; |
409 | __entry->addr = addr), | 410 | __entry->addr = addr, |
410 | TP_printk("ncpus %d mm %p addr %lx", | 411 | __entry->end = end), |
411 | __entry->ncpus, __entry->mm, __entry->addr) | 412 | TP_printk("ncpus %d mm %p addr %lx, end %lx", |
413 | __entry->ncpus, __entry->mm, __entry->addr, __entry->end) | ||
412 | ); | 414 | ); |
413 | 415 | ||
414 | TRACE_EVENT(xen_mmu_write_cr3, | 416 | TRACE_EVENT(xen_mmu_write_cr3, |
diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h index 769724944fc6..c6bc2faaf261 100644 --- a/include/trace/ftrace.h +++ b/include/trace/ftrace.h | |||
@@ -571,6 +571,7 @@ static inline void ftrace_test_probe_##call(void) \ | |||
571 | 571 | ||
572 | #undef __print_flags | 572 | #undef __print_flags |
573 | #undef __print_symbolic | 573 | #undef __print_symbolic |
574 | #undef __print_hex | ||
574 | #undef __get_dynamic_array | 575 | #undef __get_dynamic_array |
575 | #undef __get_str | 576 | #undef __get_str |
576 | 577 | ||
diff --git a/include/xen/events.h b/include/xen/events.h index 04399b28e821..9c641deb65d2 100644 --- a/include/xen/events.h +++ b/include/xen/events.h | |||
@@ -58,6 +58,8 @@ void notify_remote_via_irq(int irq); | |||
58 | 58 | ||
59 | void xen_irq_resume(void); | 59 | void xen_irq_resume(void); |
60 | 60 | ||
61 | void xen_hvm_prepare_kexec(struct shared_info *sip, unsigned long pfn); | ||
62 | |||
61 | /* Clear an irq's pending state, in preparation for polling on it */ | 63 | /* Clear an irq's pending state, in preparation for polling on it */ |
62 | void xen_clear_irq_pending(int irq); | 64 | void xen_clear_irq_pending(int irq); |
63 | void xen_set_irq_pending(int irq); | 65 | void xen_set_irq_pending(int irq); |
diff --git a/include/xen/interface/io/xs_wire.h b/include/xen/interface/io/xs_wire.h index 7cdfca24eafb..794deb07eb53 100644 --- a/include/xen/interface/io/xs_wire.h +++ b/include/xen/interface/io/xs_wire.h | |||
@@ -29,7 +29,8 @@ enum xsd_sockmsg_type | |||
29 | XS_IS_DOMAIN_INTRODUCED, | 29 | XS_IS_DOMAIN_INTRODUCED, |
30 | XS_RESUME, | 30 | XS_RESUME, |
31 | XS_SET_TARGET, | 31 | XS_SET_TARGET, |
32 | XS_RESTRICT | 32 | XS_RESTRICT, |
33 | XS_RESET_WATCHES, | ||
33 | }; | 34 | }; |
34 | 35 | ||
35 | #define XS_WRITE_NONE "NONE" | 36 | #define XS_WRITE_NONE "NONE" |
diff --git a/include/xen/interface/platform.h b/include/xen/interface/platform.h index 486653f0dd8f..61fa66160983 100644 --- a/include/xen/interface/platform.h +++ b/include/xen/interface/platform.h | |||
@@ -314,6 +314,13 @@ struct xenpf_pcpuinfo { | |||
314 | }; | 314 | }; |
315 | DEFINE_GUEST_HANDLE_STRUCT(xenpf_pcpuinfo); | 315 | DEFINE_GUEST_HANDLE_STRUCT(xenpf_pcpuinfo); |
316 | 316 | ||
317 | #define XENPF_cpu_online 56 | ||
318 | #define XENPF_cpu_offline 57 | ||
319 | struct xenpf_cpu_ol { | ||
320 | uint32_t cpuid; | ||
321 | }; | ||
322 | DEFINE_GUEST_HANDLE_STRUCT(xenpf_cpu_ol); | ||
323 | |||
317 | struct xen_platform_op { | 324 | struct xen_platform_op { |
318 | uint32_t cmd; | 325 | uint32_t cmd; |
319 | uint32_t interface_version; /* XENPF_INTERFACE_VERSION */ | 326 | uint32_t interface_version; /* XENPF_INTERFACE_VERSION */ |
@@ -330,6 +337,7 @@ struct xen_platform_op { | |||
330 | struct xenpf_getidletime getidletime; | 337 | struct xenpf_getidletime getidletime; |
331 | struct xenpf_set_processor_pminfo set_pminfo; | 338 | struct xenpf_set_processor_pminfo set_pminfo; |
332 | struct xenpf_pcpuinfo pcpu_info; | 339 | struct xenpf_pcpuinfo pcpu_info; |
340 | struct xenpf_cpu_ol cpu_ol; | ||
333 | uint8_t pad[128]; | 341 | uint8_t pad[128]; |
334 | } u; | 342 | } u; |
335 | }; | 343 | }; |
diff --git a/include/xen/interface/xen-mca.h b/include/xen/interface/xen-mca.h new file mode 100644 index 000000000000..73a4ea714d93 --- /dev/null +++ b/include/xen/interface/xen-mca.h | |||
@@ -0,0 +1,385 @@ | |||
1 | /****************************************************************************** | ||
2 | * arch-x86/mca.h | ||
3 | * Guest OS machine check interface to x86 Xen. | ||
4 | * | ||
5 | * Contributed by Advanced Micro Devices, Inc. | ||
6 | * Author: Christoph Egger <Christoph.Egger@amd.com> | ||
7 | * | ||
8 | * Updated by Intel Corporation | ||
9 | * Author: Liu, Jinsong <jinsong.liu@intel.com> | ||
10 | * | ||
11 | * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
12 | * of this software and associated documentation files (the "Software"), to | ||
13 | * deal in the Software without restriction, including without limitation the | ||
14 | * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
15 | * sell copies of the Software, and to permit persons to whom the Software is | ||
16 | * furnished to do so, subject to the following conditions: | ||
17 | * | ||
18 | * The above copyright notice and this permission notice shall be included in | ||
19 | * all copies or substantial portions of the Software. | ||
20 | * | ||
21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
24 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
26 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
27 | * DEALINGS IN THE SOFTWARE. | ||
28 | */ | ||
29 | |||
30 | #ifndef __XEN_PUBLIC_ARCH_X86_MCA_H__ | ||
31 | #define __XEN_PUBLIC_ARCH_X86_MCA_H__ | ||
32 | |||
33 | /* Hypercall */ | ||
34 | #define __HYPERVISOR_mca __HYPERVISOR_arch_0 | ||
35 | |||
36 | #define XEN_MCA_INTERFACE_VERSION 0x01ecc003 | ||
37 | |||
38 | /* IN: Dom0 calls hypercall to retrieve nonurgent error log entry */ | ||
39 | #define XEN_MC_NONURGENT 0x1 | ||
40 | /* IN: Dom0 calls hypercall to retrieve urgent error log entry */ | ||
41 | #define XEN_MC_URGENT 0x2 | ||
42 | /* IN: Dom0 acknowledges previosly-fetched error log entry */ | ||
43 | #define XEN_MC_ACK 0x4 | ||
44 | |||
45 | /* OUT: All is ok */ | ||
46 | #define XEN_MC_OK 0x0 | ||
47 | /* OUT: Domain could not fetch data. */ | ||
48 | #define XEN_MC_FETCHFAILED 0x1 | ||
49 | /* OUT: There was no machine check data to fetch. */ | ||
50 | #define XEN_MC_NODATA 0x2 | ||
51 | |||
52 | #ifndef __ASSEMBLY__ | ||
53 | /* vIRQ injected to Dom0 */ | ||
54 | #define VIRQ_MCA VIRQ_ARCH_0 | ||
55 | |||
56 | /* | ||
57 | * mc_info entry types | ||
58 | * mca machine check info are recorded in mc_info entries. | ||
59 | * when fetch mca info, it can use MC_TYPE_... to distinguish | ||
60 | * different mca info. | ||
61 | */ | ||
62 | #define MC_TYPE_GLOBAL 0 | ||
63 | #define MC_TYPE_BANK 1 | ||
64 | #define MC_TYPE_EXTENDED 2 | ||
65 | #define MC_TYPE_RECOVERY 3 | ||
66 | |||
67 | struct mcinfo_common { | ||
68 | uint16_t type; /* structure type */ | ||
69 | uint16_t size; /* size of this struct in bytes */ | ||
70 | }; | ||
71 | |||
72 | #define MC_FLAG_CORRECTABLE (1 << 0) | ||
73 | #define MC_FLAG_UNCORRECTABLE (1 << 1) | ||
74 | #define MC_FLAG_RECOVERABLE (1 << 2) | ||
75 | #define MC_FLAG_POLLED (1 << 3) | ||
76 | #define MC_FLAG_RESET (1 << 4) | ||
77 | #define MC_FLAG_CMCI (1 << 5) | ||
78 | #define MC_FLAG_MCE (1 << 6) | ||
79 | |||
80 | /* contains x86 global mc information */ | ||
81 | struct mcinfo_global { | ||
82 | struct mcinfo_common common; | ||
83 | |||
84 | uint16_t mc_domid; /* running domain at the time in error */ | ||
85 | uint16_t mc_vcpuid; /* virtual cpu scheduled for mc_domid */ | ||
86 | uint32_t mc_socketid; /* physical socket of the physical core */ | ||
87 | uint16_t mc_coreid; /* physical impacted core */ | ||
88 | uint16_t mc_core_threadid; /* core thread of physical core */ | ||
89 | uint32_t mc_apicid; | ||
90 | uint32_t mc_flags; | ||
91 | uint64_t mc_gstatus; /* global status */ | ||
92 | }; | ||
93 | |||
94 | /* contains x86 bank mc information */ | ||
95 | struct mcinfo_bank { | ||
96 | struct mcinfo_common common; | ||
97 | |||
98 | uint16_t mc_bank; /* bank nr */ | ||
99 | uint16_t mc_domid; /* domain referenced by mc_addr if valid */ | ||
100 | uint64_t mc_status; /* bank status */ | ||
101 | uint64_t mc_addr; /* bank address */ | ||
102 | uint64_t mc_misc; | ||
103 | uint64_t mc_ctrl2; | ||
104 | uint64_t mc_tsc; | ||
105 | }; | ||
106 | |||
107 | struct mcinfo_msr { | ||
108 | uint64_t reg; /* MSR */ | ||
109 | uint64_t value; /* MSR value */ | ||
110 | }; | ||
111 | |||
112 | /* contains mc information from other or additional mc MSRs */ | ||
113 | struct mcinfo_extended { | ||
114 | struct mcinfo_common common; | ||
115 | uint32_t mc_msrs; /* Number of msr with valid values. */ | ||
116 | /* | ||
117 | * Currently Intel extended MSR (32/64) include all gp registers | ||
118 | * and E(R)FLAGS, E(R)IP, E(R)MISC, up to 11/19 of them might be | ||
119 | * useful at present. So expand this array to 16/32 to leave room. | ||
120 | */ | ||
121 | struct mcinfo_msr mc_msr[sizeof(void *) * 4]; | ||
122 | }; | ||
123 | |||
124 | /* Recovery Action flags. Giving recovery result information to DOM0 */ | ||
125 | |||
126 | /* Xen takes successful recovery action, the error is recovered */ | ||
127 | #define REC_ACTION_RECOVERED (0x1 << 0) | ||
128 | /* No action is performed by XEN */ | ||
129 | #define REC_ACTION_NONE (0x1 << 1) | ||
130 | /* It's possible DOM0 might take action ownership in some case */ | ||
131 | #define REC_ACTION_NEED_RESET (0x1 << 2) | ||
132 | |||
133 | /* | ||
134 | * Different Recovery Action types, if the action is performed successfully, | ||
135 | * REC_ACTION_RECOVERED flag will be returned. | ||
136 | */ | ||
137 | |||
138 | /* Page Offline Action */ | ||
139 | #define MC_ACTION_PAGE_OFFLINE (0x1 << 0) | ||
140 | /* CPU offline Action */ | ||
141 | #define MC_ACTION_CPU_OFFLINE (0x1 << 1) | ||
142 | /* L3 cache disable Action */ | ||
143 | #define MC_ACTION_CACHE_SHRINK (0x1 << 2) | ||
144 | |||
145 | /* | ||
146 | * Below interface used between XEN/DOM0 for passing XEN's recovery action | ||
147 | * information to DOM0. | ||
148 | */ | ||
149 | struct page_offline_action { | ||
150 | /* Params for passing the offlined page number to DOM0 */ | ||
151 | uint64_t mfn; | ||
152 | uint64_t status; | ||
153 | }; | ||
154 | |||
155 | struct cpu_offline_action { | ||
156 | /* Params for passing the identity of the offlined CPU to DOM0 */ | ||
157 | uint32_t mc_socketid; | ||
158 | uint16_t mc_coreid; | ||
159 | uint16_t mc_core_threadid; | ||
160 | }; | ||
161 | |||
162 | #define MAX_UNION_SIZE 16 | ||
163 | struct mcinfo_recovery { | ||
164 | struct mcinfo_common common; | ||
165 | uint16_t mc_bank; /* bank nr */ | ||
166 | uint8_t action_flags; | ||
167 | uint8_t action_types; | ||
168 | union { | ||
169 | struct page_offline_action page_retire; | ||
170 | struct cpu_offline_action cpu_offline; | ||
171 | uint8_t pad[MAX_UNION_SIZE]; | ||
172 | } action_info; | ||
173 | }; | ||
174 | |||
175 | |||
176 | #define MCINFO_MAXSIZE 768 | ||
177 | struct mc_info { | ||
178 | /* Number of mcinfo_* entries in mi_data */ | ||
179 | uint32_t mi_nentries; | ||
180 | uint32_t flags; | ||
181 | uint64_t mi_data[(MCINFO_MAXSIZE - 1) / 8]; | ||
182 | }; | ||
183 | DEFINE_GUEST_HANDLE_STRUCT(mc_info); | ||
184 | |||
185 | #define __MC_MSR_ARRAYSIZE 8 | ||
186 | #define __MC_MSR_MCGCAP 0 | ||
187 | #define __MC_NMSRS 1 | ||
188 | #define MC_NCAPS 7 | ||
189 | struct mcinfo_logical_cpu { | ||
190 | uint32_t mc_cpunr; | ||
191 | uint32_t mc_chipid; | ||
192 | uint16_t mc_coreid; | ||
193 | uint16_t mc_threadid; | ||
194 | uint32_t mc_apicid; | ||
195 | uint32_t mc_clusterid; | ||
196 | uint32_t mc_ncores; | ||
197 | uint32_t mc_ncores_active; | ||
198 | uint32_t mc_nthreads; | ||
199 | uint32_t mc_cpuid_level; | ||
200 | uint32_t mc_family; | ||
201 | uint32_t mc_vendor; | ||
202 | uint32_t mc_model; | ||
203 | uint32_t mc_step; | ||
204 | char mc_vendorid[16]; | ||
205 | char mc_brandid[64]; | ||
206 | uint32_t mc_cpu_caps[MC_NCAPS]; | ||
207 | uint32_t mc_cache_size; | ||
208 | uint32_t mc_cache_alignment; | ||
209 | uint32_t mc_nmsrvals; | ||
210 | struct mcinfo_msr mc_msrvalues[__MC_MSR_ARRAYSIZE]; | ||
211 | }; | ||
212 | DEFINE_GUEST_HANDLE_STRUCT(mcinfo_logical_cpu); | ||
213 | |||
214 | /* | ||
215 | * Prototype: | ||
216 | * uint32_t x86_mcinfo_nentries(struct mc_info *mi); | ||
217 | */ | ||
218 | #define x86_mcinfo_nentries(_mi) \ | ||
219 | ((_mi)->mi_nentries) | ||
220 | /* | ||
221 | * Prototype: | ||
222 | * struct mcinfo_common *x86_mcinfo_first(struct mc_info *mi); | ||
223 | */ | ||
224 | #define x86_mcinfo_first(_mi) \ | ||
225 | ((struct mcinfo_common *)(_mi)->mi_data) | ||
226 | /* | ||
227 | * Prototype: | ||
228 | * struct mcinfo_common *x86_mcinfo_next(struct mcinfo_common *mic); | ||
229 | */ | ||
230 | #define x86_mcinfo_next(_mic) \ | ||
231 | ((struct mcinfo_common *)((uint8_t *)(_mic) + (_mic)->size)) | ||
232 | |||
233 | /* | ||
234 | * Prototype: | ||
235 | * void x86_mcinfo_lookup(void *ret, struct mc_info *mi, uint16_t type); | ||
236 | */ | ||
237 | static inline void x86_mcinfo_lookup(struct mcinfo_common **ret, | ||
238 | struct mc_info *mi, uint16_t type) | ||
239 | { | ||
240 | uint32_t i; | ||
241 | struct mcinfo_common *mic; | ||
242 | bool found = 0; | ||
243 | |||
244 | if (!ret || !mi) | ||
245 | return; | ||
246 | |||
247 | mic = x86_mcinfo_first(mi); | ||
248 | for (i = 0; i < x86_mcinfo_nentries(mi); i++) { | ||
249 | if (mic->type == type) { | ||
250 | found = 1; | ||
251 | break; | ||
252 | } | ||
253 | mic = x86_mcinfo_next(mic); | ||
254 | } | ||
255 | |||
256 | *ret = found ? mic : NULL; | ||
257 | } | ||
258 | |||
259 | /* | ||
260 | * Fetch machine check data from hypervisor. | ||
261 | */ | ||
262 | #define XEN_MC_fetch 1 | ||
263 | struct xen_mc_fetch { | ||
264 | /* | ||
265 | * IN: XEN_MC_NONURGENT, XEN_MC_URGENT, | ||
266 | * XEN_MC_ACK if ack'king an earlier fetch | ||
267 | * OUT: XEN_MC_OK, XEN_MC_FETCHAILED, XEN_MC_NODATA | ||
268 | */ | ||
269 | uint32_t flags; | ||
270 | uint32_t _pad0; | ||
271 | /* OUT: id for ack, IN: id we are ack'ing */ | ||
272 | uint64_t fetch_id; | ||
273 | |||
274 | /* OUT variables. */ | ||
275 | GUEST_HANDLE(mc_info) data; | ||
276 | }; | ||
277 | DEFINE_GUEST_HANDLE_STRUCT(xen_mc_fetch); | ||
278 | |||
279 | |||
280 | /* | ||
281 | * This tells the hypervisor to notify a DomU about the machine check error | ||
282 | */ | ||
283 | #define XEN_MC_notifydomain 2 | ||
284 | struct xen_mc_notifydomain { | ||
285 | /* IN variables */ | ||
286 | uint16_t mc_domid; /* The unprivileged domain to notify */ | ||
287 | uint16_t mc_vcpuid; /* The vcpu in mc_domid to notify */ | ||
288 | |||
289 | /* IN/OUT variables */ | ||
290 | uint32_t flags; | ||
291 | }; | ||
292 | DEFINE_GUEST_HANDLE_STRUCT(xen_mc_notifydomain); | ||
293 | |||
294 | #define XEN_MC_physcpuinfo 3 | ||
295 | struct xen_mc_physcpuinfo { | ||
296 | /* IN/OUT */ | ||
297 | uint32_t ncpus; | ||
298 | uint32_t _pad0; | ||
299 | /* OUT */ | ||
300 | GUEST_HANDLE(mcinfo_logical_cpu) info; | ||
301 | }; | ||
302 | |||
303 | #define XEN_MC_msrinject 4 | ||
304 | #define MC_MSRINJ_MAXMSRS 8 | ||
305 | struct xen_mc_msrinject { | ||
306 | /* IN */ | ||
307 | uint32_t mcinj_cpunr; /* target processor id */ | ||
308 | uint32_t mcinj_flags; /* see MC_MSRINJ_F_* below */ | ||
309 | uint32_t mcinj_count; /* 0 .. count-1 in array are valid */ | ||
310 | uint32_t _pad0; | ||
311 | struct mcinfo_msr mcinj_msr[MC_MSRINJ_MAXMSRS]; | ||
312 | }; | ||
313 | |||
314 | /* Flags for mcinj_flags above; bits 16-31 are reserved */ | ||
315 | #define MC_MSRINJ_F_INTERPOSE 0x1 | ||
316 | |||
317 | #define XEN_MC_mceinject 5 | ||
318 | struct xen_mc_mceinject { | ||
319 | unsigned int mceinj_cpunr; /* target processor id */ | ||
320 | }; | ||
321 | |||
322 | struct xen_mc { | ||
323 | uint32_t cmd; | ||
324 | uint32_t interface_version; /* XEN_MCA_INTERFACE_VERSION */ | ||
325 | union { | ||
326 | struct xen_mc_fetch mc_fetch; | ||
327 | struct xen_mc_notifydomain mc_notifydomain; | ||
328 | struct xen_mc_physcpuinfo mc_physcpuinfo; | ||
329 | struct xen_mc_msrinject mc_msrinject; | ||
330 | struct xen_mc_mceinject mc_mceinject; | ||
331 | } u; | ||
332 | }; | ||
333 | DEFINE_GUEST_HANDLE_STRUCT(xen_mc); | ||
334 | |||
335 | /* Fields are zero when not available */ | ||
336 | struct xen_mce { | ||
337 | __u64 status; | ||
338 | __u64 misc; | ||
339 | __u64 addr; | ||
340 | __u64 mcgstatus; | ||
341 | __u64 ip; | ||
342 | __u64 tsc; /* cpu time stamp counter */ | ||
343 | __u64 time; /* wall time_t when error was detected */ | ||
344 | __u8 cpuvendor; /* cpu vendor as encoded in system.h */ | ||
345 | __u8 inject_flags; /* software inject flags */ | ||
346 | __u16 pad; | ||
347 | __u32 cpuid; /* CPUID 1 EAX */ | ||
348 | __u8 cs; /* code segment */ | ||
349 | __u8 bank; /* machine check bank */ | ||
350 | __u8 cpu; /* cpu number; obsolete; use extcpu now */ | ||
351 | __u8 finished; /* entry is valid */ | ||
352 | __u32 extcpu; /* linux cpu number that detected the error */ | ||
353 | __u32 socketid; /* CPU socket ID */ | ||
354 | __u32 apicid; /* CPU initial apic ID */ | ||
355 | __u64 mcgcap; /* MCGCAP MSR: machine check capabilities of CPU */ | ||
356 | }; | ||
357 | |||
358 | /* | ||
359 | * This structure contains all data related to the MCE log. Also | ||
360 | * carries a signature to make it easier to find from external | ||
361 | * debugging tools. Each entry is only valid when its finished flag | ||
362 | * is set. | ||
363 | */ | ||
364 | |||
365 | #define XEN_MCE_LOG_LEN 32 | ||
366 | |||
367 | struct xen_mce_log { | ||
368 | char signature[12]; /* "MACHINECHECK" */ | ||
369 | unsigned len; /* = XEN_MCE_LOG_LEN */ | ||
370 | unsigned next; | ||
371 | unsigned flags; | ||
372 | unsigned recordlen; /* length of struct xen_mce */ | ||
373 | struct xen_mce entry[XEN_MCE_LOG_LEN]; | ||
374 | }; | ||
375 | |||
376 | #define XEN_MCE_OVERFLOW 0 /* bit 0 in flags means overflow */ | ||
377 | |||
378 | #define XEN_MCE_LOG_SIGNATURE "MACHINECHECK" | ||
379 | |||
380 | #define MCE_GET_RECORD_LEN _IOR('M', 1, int) | ||
381 | #define MCE_GET_LOG_LEN _IOR('M', 2, int) | ||
382 | #define MCE_GETCLEAR_FLAGS _IOR('M', 3, int) | ||
383 | |||
384 | #endif /* __ASSEMBLY__ */ | ||
385 | #endif /* __XEN_PUBLIC_ARCH_X86_MCA_H__ */ | ||
diff --git a/include/xen/interface/xen.h b/include/xen/interface/xen.h index a890804945e3..0801468f9abe 100644 --- a/include/xen/interface/xen.h +++ b/include/xen/interface/xen.h | |||
@@ -80,6 +80,7 @@ | |||
80 | #define VIRQ_CONSOLE 2 /* (DOM0) Bytes received on emergency console. */ | 80 | #define VIRQ_CONSOLE 2 /* (DOM0) Bytes received on emergency console. */ |
81 | #define VIRQ_DOM_EXC 3 /* (DOM0) Exceptional event for some domain. */ | 81 | #define VIRQ_DOM_EXC 3 /* (DOM0) Exceptional event for some domain. */ |
82 | #define VIRQ_DEBUGGER 6 /* (DOM0) A domain has paused for debugging. */ | 82 | #define VIRQ_DEBUGGER 6 /* (DOM0) A domain has paused for debugging. */ |
83 | #define VIRQ_PCPU_STATE 9 /* (DOM0) PCPU state changed */ | ||
83 | 84 | ||
84 | /* Architecture-specific VIRQ definitions. */ | 85 | /* Architecture-specific VIRQ definitions. */ |
85 | #define VIRQ_ARCH_0 16 | 86 | #define VIRQ_ARCH_0 16 |