diff options
Diffstat (limited to 'include')
252 files changed, 6936 insertions, 3050 deletions
diff --git a/include/asm-generic/ioctl.h b/include/asm-generic/ioctl.h index d17295b290fa..297fb0d7cd6c 100644 --- a/include/asm-generic/ioctl.h +++ b/include/asm-generic/ioctl.h | |||
| @@ -3,10 +3,15 @@ | |||
| 3 | 3 | ||
| 4 | #include <uapi/asm-generic/ioctl.h> | 4 | #include <uapi/asm-generic/ioctl.h> |
| 5 | 5 | ||
| 6 | #ifdef __CHECKER__ | ||
| 7 | #define _IOC_TYPECHECK(t) (sizeof(t)) | ||
| 8 | #else | ||
| 6 | /* provoke compile error for invalid uses of size argument */ | 9 | /* provoke compile error for invalid uses of size argument */ |
| 7 | extern unsigned int __invalid_size_argument_for_IOC; | 10 | extern unsigned int __invalid_size_argument_for_IOC; |
| 8 | #define _IOC_TYPECHECK(t) \ | 11 | #define _IOC_TYPECHECK(t) \ |
| 9 | ((sizeof(t) == sizeof(t[1]) && \ | 12 | ((sizeof(t) == sizeof(t[1]) && \ |
| 10 | sizeof(t) < (1 << _IOC_SIZEBITS)) ? \ | 13 | sizeof(t) < (1 << _IOC_SIZEBITS)) ? \ |
| 11 | sizeof(t) : __invalid_size_argument_for_IOC) | 14 | sizeof(t) : __invalid_size_argument_for_IOC) |
| 15 | #endif | ||
| 16 | |||
| 12 | #endif /* _ASM_GENERIC_IOCTL_H */ | 17 | #endif /* _ASM_GENERIC_IOCTL_H */ |
diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h index a8015a7a55bb..53b2acc38213 100644 --- a/include/asm-generic/pgtable.h +++ b/include/asm-generic/pgtable.h | |||
| @@ -233,6 +233,10 @@ static inline int pmd_same(pmd_t pmd_a, pmd_t pmd_b) | |||
| 233 | # define pte_accessible(mm, pte) ((void)(pte), 1) | 233 | # define pte_accessible(mm, pte) ((void)(pte), 1) |
| 234 | #endif | 234 | #endif |
| 235 | 235 | ||
| 236 | #ifndef pte_present_nonuma | ||
| 237 | #define pte_present_nonuma(pte) pte_present(pte) | ||
| 238 | #endif | ||
| 239 | |||
| 236 | #ifndef flush_tlb_fix_spurious_fault | 240 | #ifndef flush_tlb_fix_spurious_fault |
| 237 | #define flush_tlb_fix_spurious_fault(vma, address) flush_tlb_page(vma, address) | 241 | #define flush_tlb_fix_spurious_fault(vma, address) flush_tlb_page(vma, address) |
| 238 | #endif | 242 | #endif |
| @@ -670,7 +674,7 @@ static inline int pmd_trans_unstable(pmd_t *pmd) | |||
| 670 | static inline int pte_numa(pte_t pte) | 674 | static inline int pte_numa(pte_t pte) |
| 671 | { | 675 | { |
| 672 | return (pte_flags(pte) & | 676 | return (pte_flags(pte) & |
| 673 | (_PAGE_NUMA|_PAGE_PRESENT)) == _PAGE_NUMA; | 677 | (_PAGE_NUMA|_PAGE_PROTNONE|_PAGE_PRESENT)) == _PAGE_NUMA; |
| 674 | } | 678 | } |
| 675 | #endif | 679 | #endif |
| 676 | 680 | ||
| @@ -678,7 +682,7 @@ static inline int pte_numa(pte_t pte) | |||
| 678 | static inline int pmd_numa(pmd_t pmd) | 682 | static inline int pmd_numa(pmd_t pmd) |
| 679 | { | 683 | { |
| 680 | return (pmd_flags(pmd) & | 684 | return (pmd_flags(pmd) & |
| 681 | (_PAGE_NUMA|_PAGE_PRESENT)) == _PAGE_NUMA; | 685 | (_PAGE_NUMA|_PAGE_PROTNONE|_PAGE_PRESENT)) == _PAGE_NUMA; |
| 682 | } | 686 | } |
| 683 | #endif | 687 | #endif |
| 684 | 688 | ||
diff --git a/include/asm-generic/unaligned.h b/include/asm-generic/unaligned.h index 03cf5936bad6..1ac097279db1 100644 --- a/include/asm-generic/unaligned.h +++ b/include/asm-generic/unaligned.h | |||
| @@ -4,22 +4,27 @@ | |||
| 4 | /* | 4 | /* |
| 5 | * This is the most generic implementation of unaligned accesses | 5 | * This is the most generic implementation of unaligned accesses |
| 6 | * and should work almost anywhere. | 6 | * and should work almost anywhere. |
| 7 | * | ||
| 8 | * If an architecture can handle unaligned accesses in hardware, | ||
| 9 | * it may want to use the linux/unaligned/access_ok.h implementation | ||
| 10 | * instead. | ||
| 11 | */ | 7 | */ |
| 12 | #include <asm/byteorder.h> | 8 | #include <asm/byteorder.h> |
| 13 | 9 | ||
| 10 | /* Set by the arch if it can handle unaligned accesses in hardware. */ | ||
| 11 | #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS | ||
| 12 | # include <linux/unaligned/access_ok.h> | ||
| 13 | #endif | ||
| 14 | |||
| 14 | #if defined(__LITTLE_ENDIAN) | 15 | #if defined(__LITTLE_ENDIAN) |
| 15 | # include <linux/unaligned/le_struct.h> | 16 | # ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 16 | # include <linux/unaligned/be_byteshift.h> | 17 | # include <linux/unaligned/le_struct.h> |
| 18 | # include <linux/unaligned/be_byteshift.h> | ||
| 19 | # endif | ||
| 17 | # include <linux/unaligned/generic.h> | 20 | # include <linux/unaligned/generic.h> |
| 18 | # define get_unaligned __get_unaligned_le | 21 | # define get_unaligned __get_unaligned_le |
| 19 | # define put_unaligned __put_unaligned_le | 22 | # define put_unaligned __put_unaligned_le |
| 20 | #elif defined(__BIG_ENDIAN) | 23 | #elif defined(__BIG_ENDIAN) |
| 21 | # include <linux/unaligned/be_struct.h> | 24 | # ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 22 | # include <linux/unaligned/le_byteshift.h> | 25 | # include <linux/unaligned/be_struct.h> |
| 26 | # include <linux/unaligned/le_byteshift.h> | ||
| 27 | # endif | ||
| 23 | # include <linux/unaligned/generic.h> | 28 | # include <linux/unaligned/generic.h> |
| 24 | # define get_unaligned __get_unaligned_be | 29 | # define get_unaligned __get_unaligned_be |
| 25 | # define put_unaligned __put_unaligned_be | 30 | # define put_unaligned __put_unaligned_be |
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index 146e4fffd710..d647637cd699 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
| @@ -139,52 +139,23 @@ | |||
| 139 | #define TRACE_SYSCALLS() | 139 | #define TRACE_SYSCALLS() |
| 140 | #endif | 140 | #endif |
| 141 | 141 | ||
| 142 | #ifdef CONFIG_CLKSRC_OF | ||
| 143 | #define CLKSRC_OF_TABLES() . = ALIGN(8); \ | ||
| 144 | VMLINUX_SYMBOL(__clksrc_of_table) = .; \ | ||
| 145 | *(__clksrc_of_table) \ | ||
| 146 | *(__clksrc_of_table_end) | ||
| 147 | #else | ||
| 148 | #define CLKSRC_OF_TABLES() | ||
| 149 | #endif | ||
| 150 | 142 | ||
| 151 | #ifdef CONFIG_IRQCHIP | 143 | #define ___OF_TABLE(cfg, name) _OF_TABLE_##cfg(name) |
| 152 | #define IRQCHIP_OF_MATCH_TABLE() \ | 144 | #define __OF_TABLE(cfg, name) ___OF_TABLE(cfg, name) |
| 145 | #define OF_TABLE(cfg, name) __OF_TABLE(config_enabled(cfg), name) | ||
| 146 | #define _OF_TABLE_0(name) | ||
| 147 | #define _OF_TABLE_1(name) \ | ||
| 153 | . = ALIGN(8); \ | 148 | . = ALIGN(8); \ |
| 154 | VMLINUX_SYMBOL(__irqchip_begin) = .; \ | 149 | VMLINUX_SYMBOL(__##name##_of_table) = .; \ |
| 155 | *(__irqchip_of_table) \ | 150 | *(__##name##_of_table) \ |
| 156 | *(__irqchip_of_end) | 151 | *(__##name##_of_table_end) |
| 157 | #else | ||
| 158 | #define IRQCHIP_OF_MATCH_TABLE() | ||
| 159 | #endif | ||
| 160 | |||
| 161 | #ifdef CONFIG_COMMON_CLK | ||
| 162 | #define CLK_OF_TABLES() . = ALIGN(8); \ | ||
| 163 | VMLINUX_SYMBOL(__clk_of_table) = .; \ | ||
| 164 | *(__clk_of_table) \ | ||
| 165 | *(__clk_of_table_end) | ||
| 166 | #else | ||
| 167 | #define CLK_OF_TABLES() | ||
| 168 | #endif | ||
| 169 | |||
| 170 | #ifdef CONFIG_OF_RESERVED_MEM | ||
| 171 | #define RESERVEDMEM_OF_TABLES() \ | ||
| 172 | . = ALIGN(8); \ | ||
| 173 | VMLINUX_SYMBOL(__reservedmem_of_table) = .; \ | ||
| 174 | *(__reservedmem_of_table) \ | ||
| 175 | *(__reservedmem_of_table_end) | ||
| 176 | #else | ||
| 177 | #define RESERVEDMEM_OF_TABLES() | ||
| 178 | #endif | ||
| 179 | 152 | ||
| 180 | #ifdef CONFIG_SMP | 153 | #define CLKSRC_OF_TABLES() OF_TABLE(CONFIG_CLKSRC_OF, clksrc) |
| 181 | #define CPU_METHOD_OF_TABLES() . = ALIGN(8); \ | 154 | #define IRQCHIP_OF_MATCH_TABLE() OF_TABLE(CONFIG_IRQCHIP, irqchip) |
| 182 | VMLINUX_SYMBOL(__cpu_method_of_table_begin) = .; \ | 155 | #define CLK_OF_TABLES() OF_TABLE(CONFIG_COMMON_CLK, clk) |
| 183 | *(__cpu_method_of_table) \ | 156 | #define RESERVEDMEM_OF_TABLES() OF_TABLE(CONFIG_OF_RESERVED_MEM, reservedmem) |
| 184 | VMLINUX_SYMBOL(__cpu_method_of_table_end) = .; | 157 | #define CPU_METHOD_OF_TABLES() OF_TABLE(CONFIG_SMP, cpu_method) |
| 185 | #else | 158 | #define EARLYCON_OF_TABLES() OF_TABLE(CONFIG_SERIAL_EARLYCON, earlycon) |
| 186 | #define CPU_METHOD_OF_TABLES() | ||
| 187 | #endif | ||
| 188 | 159 | ||
| 189 | #define KERNEL_DTB() \ | 160 | #define KERNEL_DTB() \ |
| 190 | STRUCT_ALIGN(); \ | 161 | STRUCT_ALIGN(); \ |
| @@ -513,7 +484,8 @@ | |||
| 513 | CLKSRC_OF_TABLES() \ | 484 | CLKSRC_OF_TABLES() \ |
| 514 | CPU_METHOD_OF_TABLES() \ | 485 | CPU_METHOD_OF_TABLES() \ |
| 515 | KERNEL_DTB() \ | 486 | KERNEL_DTB() \ |
| 516 | IRQCHIP_OF_MATCH_TABLE() | 487 | IRQCHIP_OF_MATCH_TABLE() \ |
| 488 | EARLYCON_OF_TABLES() | ||
| 517 | 489 | ||
| 518 | #define INIT_TEXT \ | 490 | #define INIT_TEXT \ |
| 519 | *(.init.text) \ | 491 | *(.init.text) \ |
diff --git a/include/crypto/internal/hash.h b/include/crypto/internal/hash.h index 821eae8cbd8c..9b6f32a6cad1 100644 --- a/include/crypto/internal/hash.h +++ b/include/crypto/internal/hash.h | |||
| @@ -55,15 +55,28 @@ extern const struct crypto_type crypto_ahash_type; | |||
| 55 | int crypto_hash_walk_done(struct crypto_hash_walk *walk, int err); | 55 | int crypto_hash_walk_done(struct crypto_hash_walk *walk, int err); |
| 56 | int crypto_hash_walk_first(struct ahash_request *req, | 56 | int crypto_hash_walk_first(struct ahash_request *req, |
| 57 | struct crypto_hash_walk *walk); | 57 | struct crypto_hash_walk *walk); |
| 58 | int crypto_ahash_walk_first(struct ahash_request *req, | ||
| 59 | struct crypto_hash_walk *walk); | ||
| 58 | int crypto_hash_walk_first_compat(struct hash_desc *hdesc, | 60 | int crypto_hash_walk_first_compat(struct hash_desc *hdesc, |
| 59 | struct crypto_hash_walk *walk, | 61 | struct crypto_hash_walk *walk, |
| 60 | struct scatterlist *sg, unsigned int len); | 62 | struct scatterlist *sg, unsigned int len); |
| 61 | 63 | ||
| 64 | static inline int crypto_ahash_walk_done(struct crypto_hash_walk *walk, | ||
| 65 | int err) | ||
| 66 | { | ||
| 67 | return crypto_hash_walk_done(walk, err); | ||
| 68 | } | ||
| 69 | |||
| 62 | static inline int crypto_hash_walk_last(struct crypto_hash_walk *walk) | 70 | static inline int crypto_hash_walk_last(struct crypto_hash_walk *walk) |
| 63 | { | 71 | { |
| 64 | return !(walk->entrylen | walk->total); | 72 | return !(walk->entrylen | walk->total); |
| 65 | } | 73 | } |
| 66 | 74 | ||
| 75 | static inline int crypto_ahash_walk_last(struct crypto_hash_walk *walk) | ||
| 76 | { | ||
| 77 | return crypto_hash_walk_last(walk); | ||
| 78 | } | ||
| 79 | |||
| 67 | int crypto_register_ahash(struct ahash_alg *alg); | 80 | int crypto_register_ahash(struct ahash_alg *alg); |
| 68 | int crypto_unregister_ahash(struct ahash_alg *alg); | 81 | int crypto_unregister_ahash(struct ahash_alg *alg); |
| 69 | int ahash_register_instance(struct crypto_template *tmpl, | 82 | int ahash_register_instance(struct crypto_template *tmpl, |
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index a7c2a862b4f4..8af71a8e2c00 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h | |||
| @@ -143,11 +143,6 @@ int drm_err(const char *func, const char *format, ...); | |||
| 143 | #define DRIVER_PRIME 0x4000 | 143 | #define DRIVER_PRIME 0x4000 |
| 144 | #define DRIVER_RENDER 0x8000 | 144 | #define DRIVER_RENDER 0x8000 |
| 145 | 145 | ||
| 146 | #define DRIVER_BUS_PCI 0x1 | ||
| 147 | #define DRIVER_BUS_PLATFORM 0x2 | ||
| 148 | #define DRIVER_BUS_USB 0x3 | ||
| 149 | #define DRIVER_BUS_HOST1X 0x4 | ||
| 150 | |||
| 151 | /***********************************************************************/ | 146 | /***********************************************************************/ |
| 152 | /** \name Begin the DRM... */ | 147 | /** \name Begin the DRM... */ |
| 153 | /*@{*/ | 148 | /*@{*/ |
| @@ -239,8 +234,6 @@ int drm_err(const char *func, const char *format, ...); | |||
| 239 | /** \name Internal types and structures */ | 234 | /** \name Internal types and structures */ |
| 240 | /*@{*/ | 235 | /*@{*/ |
| 241 | 236 | ||
| 242 | #define DRM_ARRAY_SIZE(x) ARRAY_SIZE(x) | ||
| 243 | |||
| 244 | #define DRM_IF_VERSION(maj, min) (maj << 16 | min) | 237 | #define DRM_IF_VERSION(maj, min) (maj << 16 | min) |
| 245 | 238 | ||
| 246 | /** | 239 | /** |
| @@ -731,13 +724,7 @@ struct drm_master { | |||
| 731 | #define DRM_SCANOUTPOS_ACCURATE (1 << 2) | 724 | #define DRM_SCANOUTPOS_ACCURATE (1 << 2) |
| 732 | 725 | ||
| 733 | struct drm_bus { | 726 | struct drm_bus { |
| 734 | int bus_type; | ||
| 735 | int (*get_irq)(struct drm_device *dev); | ||
| 736 | const char *(*get_name)(struct drm_device *dev); | ||
| 737 | int (*set_busid)(struct drm_device *dev, struct drm_master *master); | 727 | int (*set_busid)(struct drm_device *dev, struct drm_master *master); |
| 738 | int (*set_unique)(struct drm_device *dev, struct drm_master *master, | ||
| 739 | struct drm_unique *unique); | ||
| 740 | int (*irq_by_busid)(struct drm_device *dev, struct drm_irq_busid *p); | ||
| 741 | }; | 728 | }; |
| 742 | 729 | ||
| 743 | /** | 730 | /** |
| @@ -974,11 +961,6 @@ struct drm_driver { | |||
| 974 | const struct drm_ioctl_desc *ioctls; | 961 | const struct drm_ioctl_desc *ioctls; |
| 975 | int num_ioctls; | 962 | int num_ioctls; |
| 976 | const struct file_operations *fops; | 963 | const struct file_operations *fops; |
| 977 | union { | ||
| 978 | struct pci_driver *pci; | ||
| 979 | struct platform_device *platform_device; | ||
| 980 | struct usb_driver *usb; | ||
| 981 | } kdriver; | ||
| 982 | struct drm_bus *bus; | 964 | struct drm_bus *bus; |
| 983 | 965 | ||
| 984 | /* List of devices hanging off this driver with stealth attach. */ | 966 | /* List of devices hanging off this driver with stealth attach. */ |
| @@ -1040,14 +1022,17 @@ struct drm_pending_vblank_event { | |||
| 1040 | }; | 1022 | }; |
| 1041 | 1023 | ||
| 1042 | struct drm_vblank_crtc { | 1024 | struct drm_vblank_crtc { |
| 1025 | struct drm_device *dev; /* pointer to the drm_device */ | ||
| 1043 | wait_queue_head_t queue; /**< VBLANK wait queue */ | 1026 | wait_queue_head_t queue; /**< VBLANK wait queue */ |
| 1044 | struct timeval time[DRM_VBLANKTIME_RBSIZE]; /**< timestamp of current count */ | 1027 | struct timeval time[DRM_VBLANKTIME_RBSIZE]; /**< timestamp of current count */ |
| 1028 | struct timer_list disable_timer; /* delayed disable timer */ | ||
| 1045 | atomic_t count; /**< number of VBLANK interrupts */ | 1029 | atomic_t count; /**< number of VBLANK interrupts */ |
| 1046 | atomic_t refcount; /* number of users of vblank interruptsper crtc */ | 1030 | atomic_t refcount; /* number of users of vblank interruptsper crtc */ |
| 1047 | u32 last; /* protected by dev->vbl_lock, used */ | 1031 | u32 last; /* protected by dev->vbl_lock, used */ |
| 1048 | /* for wraparound handling */ | 1032 | /* for wraparound handling */ |
| 1049 | u32 last_wait; /* Last vblank seqno waited per CRTC */ | 1033 | u32 last_wait; /* Last vblank seqno waited per CRTC */ |
| 1050 | unsigned int inmodeset; /* Display driver is setting mode */ | 1034 | unsigned int inmodeset; /* Display driver is setting mode */ |
| 1035 | int crtc; /* crtc index */ | ||
| 1051 | bool enabled; /* so we don't call enable more than | 1036 | bool enabled; /* so we don't call enable more than |
| 1052 | once per disable */ | 1037 | once per disable */ |
| 1053 | }; | 1038 | }; |
| @@ -1058,7 +1043,6 @@ struct drm_vblank_crtc { | |||
| 1058 | */ | 1043 | */ |
| 1059 | struct drm_device { | 1044 | struct drm_device { |
| 1060 | struct list_head legacy_dev_list;/**< list of devices per driver for stealth attach cleanup */ | 1045 | struct list_head legacy_dev_list;/**< list of devices per driver for stealth attach cleanup */ |
| 1061 | char *devname; /**< For /proc/interrupts */ | ||
| 1062 | int if_version; /**< Highest interface version set */ | 1046 | int if_version; /**< Highest interface version set */ |
| 1063 | 1047 | ||
| 1064 | /** \name Lifetime Management */ | 1048 | /** \name Lifetime Management */ |
| @@ -1072,18 +1056,19 @@ struct drm_device { | |||
| 1072 | struct drm_minor *render; /**< Render node */ | 1056 | struct drm_minor *render; /**< Render node */ |
| 1073 | atomic_t unplugged; /**< Flag whether dev is dead */ | 1057 | atomic_t unplugged; /**< Flag whether dev is dead */ |
| 1074 | struct inode *anon_inode; /**< inode for private address-space */ | 1058 | struct inode *anon_inode; /**< inode for private address-space */ |
| 1059 | char *unique; /**< unique name of the device */ | ||
| 1075 | /*@} */ | 1060 | /*@} */ |
| 1076 | 1061 | ||
| 1077 | /** \name Locks */ | 1062 | /** \name Locks */ |
| 1078 | /*@{ */ | 1063 | /*@{ */ |
| 1079 | spinlock_t count_lock; /**< For inuse, drm_device::open_count, drm_device::buf_use */ | ||
| 1080 | struct mutex struct_mutex; /**< For others */ | 1064 | struct mutex struct_mutex; /**< For others */ |
| 1081 | struct mutex master_mutex; /**< For drm_minor::master and drm_file::is_master */ | 1065 | struct mutex master_mutex; /**< For drm_minor::master and drm_file::is_master */ |
| 1082 | /*@} */ | 1066 | /*@} */ |
| 1083 | 1067 | ||
| 1084 | /** \name Usage Counters */ | 1068 | /** \name Usage Counters */ |
| 1085 | /*@{ */ | 1069 | /*@{ */ |
| 1086 | int open_count; /**< Outstanding files open */ | 1070 | int open_count; /**< Outstanding files open, protected by drm_global_mutex. */ |
| 1071 | spinlock_t buf_lock; /**< For drm_device::buf_use and a few other things. */ | ||
| 1087 | int buf_use; /**< Buffers in use -- cannot alloc */ | 1072 | int buf_use; /**< Buffers in use -- cannot alloc */ |
| 1088 | atomic_t buf_alloc; /**< Buffer allocation in progress */ | 1073 | atomic_t buf_alloc; /**< Buffer allocation in progress */ |
| 1089 | /*@} */ | 1074 | /*@} */ |
| @@ -1114,6 +1099,8 @@ struct drm_device { | |||
| 1114 | /** \name Context support */ | 1099 | /** \name Context support */ |
| 1115 | /*@{ */ | 1100 | /*@{ */ |
| 1116 | bool irq_enabled; /**< True if irq handler is enabled */ | 1101 | bool irq_enabled; /**< True if irq handler is enabled */ |
| 1102 | int irq; | ||
| 1103 | |||
| 1117 | __volatile__ long context_flag; /**< Context swapping flag */ | 1104 | __volatile__ long context_flag; /**< Context swapping flag */ |
| 1118 | int last_context; /**< Last current context */ | 1105 | int last_context; /**< Last current context */ |
| 1119 | /*@} */ | 1106 | /*@} */ |
| @@ -1134,7 +1121,6 @@ struct drm_device { | |||
| 1134 | 1121 | ||
| 1135 | spinlock_t vblank_time_lock; /**< Protects vblank count and time updates during vblank enable/disable */ | 1122 | spinlock_t vblank_time_lock; /**< Protects vblank count and time updates during vblank enable/disable */ |
| 1136 | spinlock_t vbl_lock; | 1123 | spinlock_t vbl_lock; |
| 1137 | struct timer_list vblank_disable_timer; | ||
| 1138 | 1124 | ||
| 1139 | u32 max_vblank_count; /**< size of vblank counter register */ | 1125 | u32 max_vblank_count; /**< size of vblank counter register */ |
| 1140 | 1126 | ||
| @@ -1186,11 +1172,6 @@ static __inline__ int drm_core_check_feature(struct drm_device *dev, | |||
| 1186 | return ((dev->driver->driver_features & feature) ? 1 : 0); | 1172 | return ((dev->driver->driver_features & feature) ? 1 : 0); |
| 1187 | } | 1173 | } |
| 1188 | 1174 | ||
| 1189 | static inline int drm_dev_to_irq(struct drm_device *dev) | ||
| 1190 | { | ||
| 1191 | return dev->driver->bus->get_irq(dev); | ||
| 1192 | } | ||
| 1193 | |||
| 1194 | static inline void drm_device_set_unplugged(struct drm_device *dev) | 1175 | static inline void drm_device_set_unplugged(struct drm_device *dev) |
| 1195 | { | 1176 | { |
| 1196 | smp_wmb(); | 1177 | smp_wmb(); |
| @@ -1204,11 +1185,6 @@ static inline int drm_device_is_unplugged(struct drm_device *dev) | |||
| 1204 | return ret; | 1185 | return ret; |
| 1205 | } | 1186 | } |
| 1206 | 1187 | ||
| 1207 | static inline bool drm_modeset_is_locked(struct drm_device *dev) | ||
| 1208 | { | ||
| 1209 | return mutex_is_locked(&dev->mode_config.mutex); | ||
| 1210 | } | ||
| 1211 | |||
| 1212 | static inline bool drm_is_render_client(const struct drm_file *file_priv) | 1188 | static inline bool drm_is_render_client(const struct drm_file *file_priv) |
| 1213 | { | 1189 | { |
| 1214 | return file_priv->minor->type == DRM_MINOR_RENDER; | 1190 | return file_priv->minor->type == DRM_MINOR_RENDER; |
| @@ -1310,7 +1286,7 @@ extern int drm_remove_magic(struct drm_master *master, drm_magic_t magic); | |||
| 1310 | /* Cache management (drm_cache.c) */ | 1286 | /* Cache management (drm_cache.c) */ |
| 1311 | void drm_clflush_pages(struct page *pages[], unsigned long num_pages); | 1287 | void drm_clflush_pages(struct page *pages[], unsigned long num_pages); |
| 1312 | void drm_clflush_sg(struct sg_table *st); | 1288 | void drm_clflush_sg(struct sg_table *st); |
| 1313 | void drm_clflush_virt_range(char *addr, unsigned long length); | 1289 | void drm_clflush_virt_range(void *addr, unsigned long length); |
| 1314 | 1290 | ||
| 1315 | /* Locking IOCTL support (drm_lock.h) */ | 1291 | /* Locking IOCTL support (drm_lock.h) */ |
| 1316 | extern int drm_lock(struct drm_device *dev, void *data, | 1292 | extern int drm_lock(struct drm_device *dev, void *data, |
| @@ -1363,7 +1339,7 @@ extern void drm_core_reclaim_buffers(struct drm_device *dev, | |||
| 1363 | /* IRQ support (drm_irq.h) */ | 1339 | /* IRQ support (drm_irq.h) */ |
| 1364 | extern int drm_control(struct drm_device *dev, void *data, | 1340 | extern int drm_control(struct drm_device *dev, void *data, |
| 1365 | struct drm_file *file_priv); | 1341 | struct drm_file *file_priv); |
| 1366 | extern int drm_irq_install(struct drm_device *dev); | 1342 | extern int drm_irq_install(struct drm_device *dev, int irq); |
| 1367 | extern int drm_irq_uninstall(struct drm_device *dev); | 1343 | extern int drm_irq_uninstall(struct drm_device *dev); |
| 1368 | 1344 | ||
| 1369 | extern int drm_vblank_init(struct drm_device *dev, int num_crtcs); | 1345 | extern int drm_vblank_init(struct drm_device *dev, int num_crtcs); |
| @@ -1377,8 +1353,14 @@ extern void drm_send_vblank_event(struct drm_device *dev, int crtc, | |||
| 1377 | extern bool drm_handle_vblank(struct drm_device *dev, int crtc); | 1353 | extern bool drm_handle_vblank(struct drm_device *dev, int crtc); |
| 1378 | extern int drm_vblank_get(struct drm_device *dev, int crtc); | 1354 | extern int drm_vblank_get(struct drm_device *dev, int crtc); |
| 1379 | extern void drm_vblank_put(struct drm_device *dev, int crtc); | 1355 | extern void drm_vblank_put(struct drm_device *dev, int crtc); |
| 1356 | extern int drm_crtc_vblank_get(struct drm_crtc *crtc); | ||
| 1357 | extern void drm_crtc_vblank_put(struct drm_crtc *crtc); | ||
| 1380 | extern void drm_vblank_off(struct drm_device *dev, int crtc); | 1358 | extern void drm_vblank_off(struct drm_device *dev, int crtc); |
| 1359 | extern void drm_vblank_on(struct drm_device *dev, int crtc); | ||
| 1360 | extern void drm_crtc_vblank_off(struct drm_crtc *crtc); | ||
| 1361 | extern void drm_crtc_vblank_on(struct drm_crtc *crtc); | ||
| 1381 | extern void drm_vblank_cleanup(struct drm_device *dev); | 1362 | extern void drm_vblank_cleanup(struct drm_device *dev); |
| 1363 | |||
| 1382 | extern u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc, | 1364 | extern u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc, |
| 1383 | struct timeval *tvblank, unsigned flags); | 1365 | struct timeval *tvblank, unsigned flags); |
| 1384 | extern int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, | 1366 | extern int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, |
| @@ -1522,6 +1504,9 @@ extern drm_dma_handle_t *drm_pci_alloc(struct drm_device *dev, size_t size, | |||
| 1522 | size_t align); | 1504 | size_t align); |
| 1523 | extern void __drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah); | 1505 | extern void __drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah); |
| 1524 | extern void drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah); | 1506 | extern void drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah); |
| 1507 | extern int drm_pci_set_unique(struct drm_device *dev, | ||
| 1508 | struct drm_master *master, | ||
| 1509 | struct drm_unique *u); | ||
| 1525 | 1510 | ||
| 1526 | /* sysfs support (drm_sysfs.c) */ | 1511 | /* sysfs support (drm_sysfs.c) */ |
| 1527 | struct drm_sysfs_class; | 1512 | struct drm_sysfs_class; |
| @@ -1631,6 +1616,7 @@ void drm_dev_ref(struct drm_device *dev); | |||
| 1631 | void drm_dev_unref(struct drm_device *dev); | 1616 | void drm_dev_unref(struct drm_device *dev); |
| 1632 | int drm_dev_register(struct drm_device *dev, unsigned long flags); | 1617 | int drm_dev_register(struct drm_device *dev, unsigned long flags); |
| 1633 | void drm_dev_unregister(struct drm_device *dev); | 1618 | void drm_dev_unregister(struct drm_device *dev); |
| 1619 | int drm_dev_set_unique(struct drm_device *dev, const char *fmt, ...); | ||
| 1634 | 1620 | ||
| 1635 | struct drm_minor *drm_minor_acquire(unsigned int minor_id); | 1621 | struct drm_minor *drm_minor_acquire(unsigned int minor_id); |
| 1636 | void drm_minor_release(struct drm_minor *minor); | 1622 | void drm_minor_release(struct drm_minor *minor); |
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index e55fccbe7c42..251b75e6bf7a 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include <linux/hdmi.h> | 33 | #include <linux/hdmi.h> |
| 34 | #include <drm/drm_mode.h> | 34 | #include <drm/drm_mode.h> |
| 35 | #include <drm/drm_fourcc.h> | 35 | #include <drm/drm_fourcc.h> |
| 36 | #include <drm/drm_modeset_lock.h> | ||
| 36 | 37 | ||
| 37 | struct drm_device; | 38 | struct drm_device; |
| 38 | struct drm_mode_set; | 39 | struct drm_mode_set; |
| @@ -50,6 +51,7 @@ struct drm_clip_rect; | |||
| 50 | #define DRM_MODE_OBJECT_BLOB 0xbbbbbbbb | 51 | #define DRM_MODE_OBJECT_BLOB 0xbbbbbbbb |
| 51 | #define DRM_MODE_OBJECT_PLANE 0xeeeeeeee | 52 | #define DRM_MODE_OBJECT_PLANE 0xeeeeeeee |
| 52 | #define DRM_MODE_OBJECT_BRIDGE 0xbdbdbdbd | 53 | #define DRM_MODE_OBJECT_BRIDGE 0xbdbdbdbd |
| 54 | #define DRM_MODE_OBJECT_ANY 0 | ||
| 53 | 55 | ||
| 54 | struct drm_mode_object { | 56 | struct drm_mode_object { |
| 55 | uint32_t id; | 57 | uint32_t id; |
| @@ -64,6 +66,15 @@ struct drm_object_properties { | |||
| 64 | uint64_t values[DRM_OBJECT_MAX_PROPERTY]; | 66 | uint64_t values[DRM_OBJECT_MAX_PROPERTY]; |
| 65 | }; | 67 | }; |
| 66 | 68 | ||
| 69 | static inline int64_t U642I64(uint64_t val) | ||
| 70 | { | ||
| 71 | return (int64_t)*((int64_t *)&val); | ||
| 72 | } | ||
| 73 | static inline uint64_t I642U64(int64_t val) | ||
| 74 | { | ||
| 75 | return (uint64_t)*((uint64_t *)&val); | ||
| 76 | } | ||
| 77 | |||
| 67 | enum drm_connector_force { | 78 | enum drm_connector_force { |
| 68 | DRM_FORCE_UNSPECIFIED, | 79 | DRM_FORCE_UNSPECIFIED, |
| 69 | DRM_FORCE_OFF, | 80 | DRM_FORCE_OFF, |
| @@ -110,6 +121,9 @@ struct drm_display_info { | |||
| 110 | enum subpixel_order subpixel_order; | 121 | enum subpixel_order subpixel_order; |
| 111 | u32 color_formats; | 122 | u32 color_formats; |
| 112 | 123 | ||
| 124 | /* Mask of supported hdmi deep color modes */ | ||
| 125 | u8 edid_hdmi_dc_modes; | ||
| 126 | |||
| 113 | u8 cea_rev; | 127 | u8 cea_rev; |
| 114 | }; | 128 | }; |
| 115 | 129 | ||
| @@ -190,10 +204,15 @@ struct drm_property { | |||
| 190 | char name[DRM_PROP_NAME_LEN]; | 204 | char name[DRM_PROP_NAME_LEN]; |
| 191 | uint32_t num_values; | 205 | uint32_t num_values; |
| 192 | uint64_t *values; | 206 | uint64_t *values; |
| 207 | struct drm_device *dev; | ||
| 193 | 208 | ||
| 194 | struct list_head enum_blob_list; | 209 | struct list_head enum_blob_list; |
| 195 | }; | 210 | }; |
| 196 | 211 | ||
| 212 | void drm_modeset_lock_all(struct drm_device *dev); | ||
| 213 | void drm_modeset_unlock_all(struct drm_device *dev); | ||
| 214 | void drm_warn_on_modeset_not_all_locked(struct drm_device *dev); | ||
| 215 | |||
| 197 | struct drm_crtc; | 216 | struct drm_crtc; |
| 198 | struct drm_connector; | 217 | struct drm_connector; |
| 199 | struct drm_encoder; | 218 | struct drm_encoder; |
| @@ -269,6 +288,7 @@ struct drm_crtc_funcs { | |||
| 269 | * drm_crtc - central CRTC control structure | 288 | * drm_crtc - central CRTC control structure |
| 270 | * @dev: parent DRM device | 289 | * @dev: parent DRM device |
| 271 | * @head: list management | 290 | * @head: list management |
| 291 | * @mutex: per-CRTC locking | ||
| 272 | * @base: base KMS object for ID tracking etc. | 292 | * @base: base KMS object for ID tracking etc. |
| 273 | * @primary: primary plane for this CRTC | 293 | * @primary: primary plane for this CRTC |
| 274 | * @cursor: cursor plane for this CRTC | 294 | * @cursor: cursor plane for this CRTC |
| @@ -303,7 +323,7 @@ struct drm_crtc { | |||
| 303 | * state, ...) and a write lock for everything which can be update | 323 | * state, ...) and a write lock for everything which can be update |
| 304 | * without a full modeset (fb, cursor data, ...) | 324 | * without a full modeset (fb, cursor data, ...) |
| 305 | */ | 325 | */ |
| 306 | struct mutex mutex; | 326 | struct drm_modeset_lock mutex; |
| 307 | 327 | ||
| 308 | struct drm_mode_object base; | 328 | struct drm_mode_object base; |
| 309 | 329 | ||
| @@ -400,6 +420,7 @@ struct drm_encoder_funcs { | |||
| 400 | * @dev: parent DRM device | 420 | * @dev: parent DRM device |
| 401 | * @head: list management | 421 | * @head: list management |
| 402 | * @base: base KMS object | 422 | * @base: base KMS object |
| 423 | * @name: encoder name | ||
| 403 | * @encoder_type: one of the %DRM_MODE_ENCODER_<foo> types in drm_mode.h | 424 | * @encoder_type: one of the %DRM_MODE_ENCODER_<foo> types in drm_mode.h |
| 404 | * @possible_crtcs: bitmask of potential CRTC bindings | 425 | * @possible_crtcs: bitmask of potential CRTC bindings |
| 405 | * @possible_clones: bitmask of potential sibling encoders for cloning | 426 | * @possible_clones: bitmask of potential sibling encoders for cloning |
| @@ -416,6 +437,7 @@ struct drm_encoder { | |||
| 416 | struct list_head head; | 437 | struct list_head head; |
| 417 | 438 | ||
| 418 | struct drm_mode_object base; | 439 | struct drm_mode_object base; |
| 440 | char *name; | ||
| 419 | int encoder_type; | 441 | int encoder_type; |
| 420 | uint32_t possible_crtcs; | 442 | uint32_t possible_crtcs; |
| 421 | uint32_t possible_clones; | 443 | uint32_t possible_clones; |
| @@ -444,6 +466,7 @@ struct drm_encoder { | |||
| 444 | * @attr: sysfs attributes | 466 | * @attr: sysfs attributes |
| 445 | * @head: list management | 467 | * @head: list management |
| 446 | * @base: base KMS object | 468 | * @base: base KMS object |
| 469 | * @name: connector name | ||
| 447 | * @connector_type: one of the %DRM_MODE_CONNECTOR_<foo> types from drm_mode.h | 470 | * @connector_type: one of the %DRM_MODE_CONNECTOR_<foo> types from drm_mode.h |
| 448 | * @connector_type_id: index into connector type enum | 471 | * @connector_type_id: index into connector type enum |
| 449 | * @interlace_allowed: can this connector handle interlaced modes? | 472 | * @interlace_allowed: can this connector handle interlaced modes? |
| @@ -482,6 +505,7 @@ struct drm_connector { | |||
| 482 | 505 | ||
| 483 | struct drm_mode_object base; | 506 | struct drm_mode_object base; |
| 484 | 507 | ||
| 508 | char *name; | ||
| 485 | int connector_type; | 509 | int connector_type; |
| 486 | int connector_type_id; | 510 | int connector_type_id; |
| 487 | bool interlace_allowed; | 511 | bool interlace_allowed; |
| @@ -723,6 +747,8 @@ struct drm_mode_group { | |||
| 723 | */ | 747 | */ |
| 724 | struct drm_mode_config { | 748 | struct drm_mode_config { |
| 725 | struct mutex mutex; /* protects configuration (mode lists etc.) */ | 749 | struct mutex mutex; /* protects configuration (mode lists etc.) */ |
| 750 | struct drm_modeset_lock connection_mutex; /* protects connector->encoder and encoder->crtc links */ | ||
| 751 | struct drm_modeset_acquire_ctx *acquire_ctx; /* for legacy _lock_all() / _unlock_all() */ | ||
| 726 | struct mutex idr_mutex; /* for IDR management */ | 752 | struct mutex idr_mutex; /* for IDR management */ |
| 727 | struct idr crtc_idr; /* use this idr for all IDs, fb, crtc, connector, modes - just makes life easier */ | 753 | struct idr crtc_idr; /* use this idr for all IDs, fb, crtc, connector, modes - just makes life easier */ |
| 728 | /* this is limited to one for now */ | 754 | /* this is limited to one for now */ |
| @@ -823,10 +849,6 @@ struct drm_prop_enum_list { | |||
| 823 | char *name; | 849 | char *name; |
| 824 | }; | 850 | }; |
| 825 | 851 | ||
| 826 | extern void drm_modeset_lock_all(struct drm_device *dev); | ||
| 827 | extern void drm_modeset_unlock_all(struct drm_device *dev); | ||
| 828 | extern void drm_warn_on_modeset_not_all_locked(struct drm_device *dev); | ||
| 829 | |||
| 830 | extern int drm_crtc_init_with_planes(struct drm_device *dev, | 852 | extern int drm_crtc_init_with_planes(struct drm_device *dev, |
| 831 | struct drm_crtc *crtc, | 853 | struct drm_crtc *crtc, |
| 832 | struct drm_plane *primary, | 854 | struct drm_plane *primary, |
| @@ -905,7 +927,6 @@ extern int drm_crtc_check_viewport(const struct drm_crtc *crtc, | |||
| 905 | 927 | ||
| 906 | extern void drm_encoder_cleanup(struct drm_encoder *encoder); | 928 | extern void drm_encoder_cleanup(struct drm_encoder *encoder); |
| 907 | 929 | ||
| 908 | extern const char *drm_get_connector_name(const struct drm_connector *connector); | ||
| 909 | extern const char *drm_get_connector_status_name(enum drm_connector_status status); | 930 | extern const char *drm_get_connector_status_name(enum drm_connector_status status); |
| 910 | extern const char *drm_get_subpixel_order_name(enum subpixel_order order); | 931 | extern const char *drm_get_subpixel_order_name(enum subpixel_order order); |
| 911 | extern const char *drm_get_dpms_name(int val); | 932 | extern const char *drm_get_dpms_name(int val); |
| @@ -915,6 +936,7 @@ extern const char *drm_get_tv_subconnector_name(int val); | |||
| 915 | extern const char *drm_get_tv_select_name(int val); | 936 | extern const char *drm_get_tv_select_name(int val); |
| 916 | extern void drm_fb_release(struct drm_file *file_priv); | 937 | extern void drm_fb_release(struct drm_file *file_priv); |
| 917 | extern int drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group); | 938 | extern int drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group); |
| 939 | extern void drm_mode_group_destroy(struct drm_mode_group *group); | ||
| 918 | extern bool drm_probe_ddc(struct i2c_adapter *adapter); | 940 | extern bool drm_probe_ddc(struct i2c_adapter *adapter); |
| 919 | extern struct edid *drm_get_edid(struct drm_connector *connector, | 941 | extern struct edid *drm_get_edid(struct drm_connector *connector, |
| 920 | struct i2c_adapter *adapter); | 942 | struct i2c_adapter *adapter); |
| @@ -926,6 +948,23 @@ extern void drm_mode_config_cleanup(struct drm_device *dev); | |||
| 926 | 948 | ||
| 927 | extern int drm_mode_connector_update_edid_property(struct drm_connector *connector, | 949 | extern int drm_mode_connector_update_edid_property(struct drm_connector *connector, |
| 928 | struct edid *edid); | 950 | struct edid *edid); |
| 951 | |||
| 952 | static inline bool drm_property_type_is(struct drm_property *property, | ||
| 953 | uint32_t type) | ||
| 954 | { | ||
| 955 | /* instanceof for props.. handles extended type vs original types: */ | ||
| 956 | if (property->flags & DRM_MODE_PROP_EXTENDED_TYPE) | ||
| 957 | return (property->flags & DRM_MODE_PROP_EXTENDED_TYPE) == type; | ||
| 958 | return property->flags & type; | ||
| 959 | } | ||
| 960 | |||
| 961 | static inline bool drm_property_type_valid(struct drm_property *property) | ||
| 962 | { | ||
| 963 | if (property->flags & DRM_MODE_PROP_EXTENDED_TYPE) | ||
| 964 | return !(property->flags & DRM_MODE_PROP_LEGACY_TYPE); | ||
| 965 | return !!(property->flags & DRM_MODE_PROP_LEGACY_TYPE); | ||
| 966 | } | ||
| 967 | |||
| 929 | extern int drm_object_property_set_value(struct drm_mode_object *obj, | 968 | extern int drm_object_property_set_value(struct drm_mode_object *obj, |
| 930 | struct drm_property *property, | 969 | struct drm_property *property, |
| 931 | uint64_t val); | 970 | uint64_t val); |
| @@ -959,6 +998,11 @@ struct drm_property *drm_property_create_bitmask(struct drm_device *dev, | |||
| 959 | struct drm_property *drm_property_create_range(struct drm_device *dev, int flags, | 998 | struct drm_property *drm_property_create_range(struct drm_device *dev, int flags, |
| 960 | const char *name, | 999 | const char *name, |
| 961 | uint64_t min, uint64_t max); | 1000 | uint64_t min, uint64_t max); |
| 1001 | struct drm_property *drm_property_create_signed_range(struct drm_device *dev, | ||
| 1002 | int flags, const char *name, | ||
| 1003 | int64_t min, int64_t max); | ||
| 1004 | struct drm_property *drm_property_create_object(struct drm_device *dev, | ||
| 1005 | int flags, const char *name, uint32_t type); | ||
| 962 | extern void drm_property_destroy(struct drm_device *dev, struct drm_property *property); | 1006 | extern void drm_property_destroy(struct drm_device *dev, struct drm_property *property); |
| 963 | extern int drm_property_add_enum(struct drm_property *property, int index, | 1007 | extern int drm_property_add_enum(struct drm_property *property, int index, |
| 964 | uint64_t value, const char *name); | 1008 | uint64_t value, const char *name); |
| @@ -967,7 +1011,6 @@ extern int drm_mode_create_tv_properties(struct drm_device *dev, int num_formats | |||
| 967 | char *formats[]); | 1011 | char *formats[]); |
| 968 | extern int drm_mode_create_scaling_mode_property(struct drm_device *dev); | 1012 | extern int drm_mode_create_scaling_mode_property(struct drm_device *dev); |
| 969 | extern int drm_mode_create_dirty_info_property(struct drm_device *dev); | 1013 | extern int drm_mode_create_dirty_info_property(struct drm_device *dev); |
| 970 | extern const char *drm_get_encoder_name(const struct drm_encoder *encoder); | ||
| 971 | 1014 | ||
| 972 | extern int drm_mode_connector_attach_encoder(struct drm_connector *connector, | 1015 | extern int drm_mode_connector_attach_encoder(struct drm_connector *connector, |
| 973 | struct drm_encoder *encoder); | 1016 | struct drm_encoder *encoder); |
| @@ -975,6 +1018,7 @@ extern int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc, | |||
| 975 | int gamma_size); | 1018 | int gamma_size); |
| 976 | extern struct drm_mode_object *drm_mode_object_find(struct drm_device *dev, | 1019 | extern struct drm_mode_object *drm_mode_object_find(struct drm_device *dev, |
| 977 | uint32_t id, uint32_t type); | 1020 | uint32_t id, uint32_t type); |
| 1021 | |||
| 978 | /* IOCTLs */ | 1022 | /* IOCTLs */ |
| 979 | extern int drm_mode_getresources(struct drm_device *dev, | 1023 | extern int drm_mode_getresources(struct drm_device *dev, |
| 980 | void *data, struct drm_file *file_priv); | 1024 | void *data, struct drm_file *file_priv); |
| @@ -1020,6 +1064,7 @@ extern int drm_mode_gamma_get_ioctl(struct drm_device *dev, | |||
| 1020 | extern int drm_mode_gamma_set_ioctl(struct drm_device *dev, | 1064 | extern int drm_mode_gamma_set_ioctl(struct drm_device *dev, |
| 1021 | void *data, struct drm_file *file_priv); | 1065 | void *data, struct drm_file *file_priv); |
| 1022 | extern u8 drm_match_cea_mode(const struct drm_display_mode *to_match); | 1066 | extern u8 drm_match_cea_mode(const struct drm_display_mode *to_match); |
| 1067 | extern enum hdmi_picture_aspect drm_get_cea_aspect_ratio(const u8 video_code); | ||
| 1023 | extern bool drm_detect_hdmi_monitor(struct edid *edid); | 1068 | extern bool drm_detect_hdmi_monitor(struct edid *edid); |
| 1024 | extern bool drm_detect_monitor_audio(struct edid *edid); | 1069 | extern bool drm_detect_monitor_audio(struct edid *edid); |
| 1025 | extern bool drm_rgb_quant_range_selectable(struct edid *edid); | 1070 | extern bool drm_rgb_quant_range_selectable(struct edid *edid); |
| @@ -1057,6 +1102,15 @@ extern int drm_format_vert_chroma_subsampling(uint32_t format); | |||
| 1057 | extern const char *drm_get_format_name(uint32_t format); | 1102 | extern const char *drm_get_format_name(uint32_t format); |
| 1058 | 1103 | ||
| 1059 | /* Helpers */ | 1104 | /* Helpers */ |
| 1105 | |||
| 1106 | static inline struct drm_plane *drm_plane_find(struct drm_device *dev, | ||
| 1107 | uint32_t id) | ||
| 1108 | { | ||
| 1109 | struct drm_mode_object *mo; | ||
| 1110 | mo = drm_mode_object_find(dev, id, DRM_MODE_OBJECT_PLANE); | ||
| 1111 | return mo ? obj_to_plane(mo) : NULL; | ||
| 1112 | } | ||
| 1113 | |||
| 1060 | static inline struct drm_crtc *drm_crtc_find(struct drm_device *dev, | 1114 | static inline struct drm_crtc *drm_crtc_find(struct drm_device *dev, |
| 1061 | uint32_t id) | 1115 | uint32_t id) |
| 1062 | { | 1116 | { |
| @@ -1073,6 +1127,30 @@ static inline struct drm_encoder *drm_encoder_find(struct drm_device *dev, | |||
| 1073 | return mo ? obj_to_encoder(mo) : NULL; | 1127 | return mo ? obj_to_encoder(mo) : NULL; |
| 1074 | } | 1128 | } |
| 1075 | 1129 | ||
| 1130 | static inline struct drm_connector *drm_connector_find(struct drm_device *dev, | ||
| 1131 | uint32_t id) | ||
| 1132 | { | ||
| 1133 | struct drm_mode_object *mo; | ||
| 1134 | mo = drm_mode_object_find(dev, id, DRM_MODE_OBJECT_CONNECTOR); | ||
| 1135 | return mo ? obj_to_connector(mo) : NULL; | ||
| 1136 | } | ||
| 1137 | |||
| 1138 | static inline struct drm_property *drm_property_find(struct drm_device *dev, | ||
| 1139 | uint32_t id) | ||
| 1140 | { | ||
| 1141 | struct drm_mode_object *mo; | ||
| 1142 | mo = drm_mode_object_find(dev, id, DRM_MODE_OBJECT_PROPERTY); | ||
| 1143 | return mo ? obj_to_property(mo) : NULL; | ||
| 1144 | } | ||
| 1145 | |||
| 1146 | static inline struct drm_property_blob * | ||
| 1147 | drm_property_blob_find(struct drm_device *dev, uint32_t id) | ||
| 1148 | { | ||
| 1149 | struct drm_mode_object *mo; | ||
| 1150 | mo = drm_mode_object_find(dev, id, DRM_MODE_OBJECT_BLOB); | ||
| 1151 | return mo ? obj_to_blob(mo) : NULL; | ||
| 1152 | } | ||
| 1153 | |||
| 1076 | /* Plane list iterator for legacy (overlay only) planes. */ | 1154 | /* Plane list iterator for legacy (overlay only) planes. */ |
| 1077 | #define drm_for_each_legacy_plane(plane, planelist) \ | 1155 | #define drm_for_each_legacy_plane(plane, planelist) \ |
| 1078 | list_for_each_entry(plane, planelist, head) \ | 1156 | list_for_each_entry(plane, planelist, head) \ |
diff --git a/include/drm/drm_crtc_helper.h b/include/drm/drm_crtc_helper.h index 36a5febac2a6..a3d75fefd010 100644 --- a/include/drm/drm_crtc_helper.h +++ b/include/drm/drm_crtc_helper.h | |||
| @@ -114,7 +114,7 @@ struct drm_encoder_helper_funcs { | |||
| 114 | /** | 114 | /** |
| 115 | * drm_connector_helper_funcs - helper operations for connectors | 115 | * drm_connector_helper_funcs - helper operations for connectors |
| 116 | * @get_modes: get mode list for this connector | 116 | * @get_modes: get mode list for this connector |
| 117 | * @mode_valid: is this mode valid on the given connector? | 117 | * @mode_valid (optional): is this mode valid on the given connector? |
| 118 | * | 118 | * |
| 119 | * The helper operations are called by the mid-layer CRTC helper. | 119 | * The helper operations are called by the mid-layer CRTC helper. |
| 120 | */ | 120 | */ |
| @@ -165,6 +165,10 @@ extern void drm_helper_resume_force_mode(struct drm_device *dev); | |||
| 165 | extern int drm_helper_probe_single_connector_modes(struct drm_connector | 165 | extern int drm_helper_probe_single_connector_modes(struct drm_connector |
| 166 | *connector, uint32_t maxX, | 166 | *connector, uint32_t maxX, |
| 167 | uint32_t maxY); | 167 | uint32_t maxY); |
| 168 | extern int drm_helper_probe_single_connector_modes_nomerge(struct drm_connector | ||
| 169 | *connector, | ||
| 170 | uint32_t maxX, | ||
| 171 | uint32_t maxY); | ||
| 168 | extern void drm_kms_helper_poll_init(struct drm_device *dev); | 172 | extern void drm_kms_helper_poll_init(struct drm_device *dev); |
| 169 | extern void drm_kms_helper_poll_fini(struct drm_device *dev); | 173 | extern void drm_kms_helper_poll_fini(struct drm_device *dev); |
| 170 | extern bool drm_helper_hpd_irq_event(struct drm_device *dev); | 174 | extern bool drm_helper_hpd_irq_event(struct drm_device *dev); |
diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h index cfcacec5b89d..a21568bf1514 100644 --- a/include/drm/drm_dp_helper.h +++ b/include/drm/drm_dp_helper.h | |||
| @@ -37,6 +37,7 @@ | |||
| 37 | * eDP: Embedded DisplayPort version 1 | 37 | * eDP: Embedded DisplayPort version 1 |
| 38 | * DPI: DisplayPort Interoperability Guideline v1.1a | 38 | * DPI: DisplayPort Interoperability Guideline v1.1a |
| 39 | * 1.2: DisplayPort 1.2 | 39 | * 1.2: DisplayPort 1.2 |
| 40 | * MST: Multistream Transport - part of DP 1.2a | ||
| 40 | * | 41 | * |
| 41 | * 1.2 formally includes both eDP and DPI definitions. | 42 | * 1.2 formally includes both eDP and DPI definitions. |
| 42 | */ | 43 | */ |
| @@ -103,9 +104,14 @@ | |||
| 103 | #define DP_TRAINING_AUX_RD_INTERVAL 0x00e /* XXX 1.2? */ | 104 | #define DP_TRAINING_AUX_RD_INTERVAL 0x00e /* XXX 1.2? */ |
| 104 | 105 | ||
| 105 | /* Multiple stream transport */ | 106 | /* Multiple stream transport */ |
| 107 | #define DP_FAUX_CAP 0x020 /* 1.2 */ | ||
| 108 | # define DP_FAUX_CAP_1 (1 << 0) | ||
| 109 | |||
| 106 | #define DP_MSTM_CAP 0x021 /* 1.2 */ | 110 | #define DP_MSTM_CAP 0x021 /* 1.2 */ |
| 107 | # define DP_MST_CAP (1 << 0) | 111 | # define DP_MST_CAP (1 << 0) |
| 108 | 112 | ||
| 113 | #define DP_GUID 0x030 /* 1.2 */ | ||
| 114 | |||
| 109 | #define DP_PSR_SUPPORT 0x070 /* XXX 1.2? */ | 115 | #define DP_PSR_SUPPORT 0x070 /* XXX 1.2? */ |
| 110 | # define DP_PSR_IS_SUPPORTED 1 | 116 | # define DP_PSR_IS_SUPPORTED 1 |
| 111 | #define DP_PSR_CAPS 0x071 /* XXX 1.2? */ | 117 | #define DP_PSR_CAPS 0x071 /* XXX 1.2? */ |
| @@ -221,6 +227,16 @@ | |||
| 221 | # define DP_PSR_CRC_VERIFICATION (1 << 2) | 227 | # define DP_PSR_CRC_VERIFICATION (1 << 2) |
| 222 | # define DP_PSR_FRAME_CAPTURE (1 << 3) | 228 | # define DP_PSR_FRAME_CAPTURE (1 << 3) |
| 223 | 229 | ||
| 230 | #define DP_ADAPTER_CTRL 0x1a0 | ||
| 231 | # define DP_ADAPTER_CTRL_FORCE_LOAD_SENSE (1 << 0) | ||
| 232 | |||
| 233 | #define DP_BRANCH_DEVICE_CTRL 0x1a1 | ||
| 234 | # define DP_BRANCH_DEVICE_IRQ_HPD (1 << 0) | ||
| 235 | |||
| 236 | #define DP_PAYLOAD_ALLOCATE_SET 0x1c0 | ||
| 237 | #define DP_PAYLOAD_ALLOCATE_START_TIME_SLOT 0x1c1 | ||
| 238 | #define DP_PAYLOAD_ALLOCATE_TIME_SLOT_COUNT 0x1c2 | ||
| 239 | |||
| 224 | #define DP_SINK_COUNT 0x200 | 240 | #define DP_SINK_COUNT 0x200 |
| 225 | /* prior to 1.2 bit 7 was reserved mbz */ | 241 | /* prior to 1.2 bit 7 was reserved mbz */ |
| 226 | # define DP_GET_SINK_COUNT(x) ((((x) & 0x80) >> 1) | ((x) & 0x3f)) | 242 | # define DP_GET_SINK_COUNT(x) ((((x) & 0x80) >> 1) | ((x) & 0x3f)) |
| @@ -230,6 +246,9 @@ | |||
| 230 | # define DP_REMOTE_CONTROL_COMMAND_PENDING (1 << 0) | 246 | # define DP_REMOTE_CONTROL_COMMAND_PENDING (1 << 0) |
| 231 | # define DP_AUTOMATED_TEST_REQUEST (1 << 1) | 247 | # define DP_AUTOMATED_TEST_REQUEST (1 << 1) |
| 232 | # define DP_CP_IRQ (1 << 2) | 248 | # define DP_CP_IRQ (1 << 2) |
| 249 | # define DP_MCCS_IRQ (1 << 3) | ||
| 250 | # define DP_DOWN_REP_MSG_RDY (1 << 4) /* 1.2 MST */ | ||
| 251 | # define DP_UP_REQ_MSG_RDY (1 << 5) /* 1.2 MST */ | ||
| 233 | # define DP_SINK_SPECIFIC_IRQ (1 << 6) | 252 | # define DP_SINK_SPECIFIC_IRQ (1 << 6) |
| 234 | 253 | ||
| 235 | #define DP_LANE0_1_STATUS 0x202 | 254 | #define DP_LANE0_1_STATUS 0x202 |
| @@ -291,9 +310,18 @@ | |||
| 291 | # define DP_TEST_NAK (1 << 1) | 310 | # define DP_TEST_NAK (1 << 1) |
| 292 | # define DP_TEST_EDID_CHECKSUM_WRITE (1 << 2) | 311 | # define DP_TEST_EDID_CHECKSUM_WRITE (1 << 2) |
| 293 | 312 | ||
| 313 | #define DP_TEST_EDID_CHECKSUM 0x261 | ||
| 314 | |||
| 294 | #define DP_TEST_SINK 0x270 | 315 | #define DP_TEST_SINK 0x270 |
| 295 | #define DP_TEST_SINK_START (1 << 0) | 316 | #define DP_TEST_SINK_START (1 << 0) |
| 296 | 317 | ||
| 318 | #define DP_PAYLOAD_TABLE_UPDATE_STATUS 0x2c0 /* 1.2 MST */ | ||
| 319 | # define DP_PAYLOAD_TABLE_UPDATED (1 << 0) | ||
| 320 | # define DP_PAYLOAD_ACT_HANDLED (1 << 1) | ||
| 321 | |||
| 322 | #define DP_VC_PAYLOAD_ID_SLOT_1 0x2c1 /* 1.2 MST */ | ||
| 323 | /* up to ID_SLOT_63 at 0x2ff */ | ||
| 324 | |||
| 297 | #define DP_SOURCE_OUI 0x300 | 325 | #define DP_SOURCE_OUI 0x300 |
| 298 | #define DP_SINK_OUI 0x400 | 326 | #define DP_SINK_OUI 0x400 |
| 299 | #define DP_BRANCH_OUI 0x500 | 327 | #define DP_BRANCH_OUI 0x500 |
| @@ -303,6 +331,21 @@ | |||
| 303 | # define DP_SET_POWER_D3 0x2 | 331 | # define DP_SET_POWER_D3 0x2 |
| 304 | # define DP_SET_POWER_MASK 0x3 | 332 | # define DP_SET_POWER_MASK 0x3 |
| 305 | 333 | ||
| 334 | #define DP_SIDEBAND_MSG_DOWN_REQ_BASE 0x1000 /* 1.2 MST */ | ||
| 335 | #define DP_SIDEBAND_MSG_UP_REP_BASE 0x1200 /* 1.2 MST */ | ||
| 336 | #define DP_SIDEBAND_MSG_DOWN_REP_BASE 0x1400 /* 1.2 MST */ | ||
| 337 | #define DP_SIDEBAND_MSG_UP_REQ_BASE 0x1600 /* 1.2 MST */ | ||
| 338 | |||
| 339 | #define DP_SINK_COUNT_ESI 0x2002 /* 1.2 */ | ||
| 340 | /* 0-5 sink count */ | ||
| 341 | # define DP_SINK_COUNT_CP_READY (1 << 6) | ||
| 342 | |||
| 343 | #define DP_DEVICE_SERVICE_IRQ_VECTOR_ESI0 0x2003 /* 1.2 */ | ||
| 344 | |||
| 345 | #define DP_DEVICE_SERVICE_IRQ_VECTOR_ESI1 0x2004 /* 1.2 */ | ||
| 346 | |||
| 347 | #define DP_LINK_SERVICE_IRQ_VECTOR_ESI0 0x2005 /* 1.2 */ | ||
| 348 | |||
| 306 | #define DP_PSR_ERROR_STATUS 0x2006 /* XXX 1.2? */ | 349 | #define DP_PSR_ERROR_STATUS 0x2006 /* XXX 1.2? */ |
| 307 | # define DP_PSR_LINK_CRC_ERROR (1 << 0) | 350 | # define DP_PSR_LINK_CRC_ERROR (1 << 0) |
| 308 | # define DP_PSR_RFB_STORAGE_ERROR (1 << 1) | 351 | # define DP_PSR_RFB_STORAGE_ERROR (1 << 1) |
| @@ -319,6 +362,43 @@ | |||
| 319 | # define DP_PSR_SINK_INTERNAL_ERROR 7 | 362 | # define DP_PSR_SINK_INTERNAL_ERROR 7 |
| 320 | # define DP_PSR_SINK_STATE_MASK 0x07 | 363 | # define DP_PSR_SINK_STATE_MASK 0x07 |
| 321 | 364 | ||
| 365 | /* DP 1.2 Sideband message defines */ | ||
| 366 | /* peer device type - DP 1.2a Table 2-92 */ | ||
| 367 | #define DP_PEER_DEVICE_NONE 0x0 | ||
| 368 | #define DP_PEER_DEVICE_SOURCE_OR_SST 0x1 | ||
| 369 | #define DP_PEER_DEVICE_MST_BRANCHING 0x2 | ||
| 370 | #define DP_PEER_DEVICE_SST_SINK 0x3 | ||
| 371 | #define DP_PEER_DEVICE_DP_LEGACY_CONV 0x4 | ||
| 372 | |||
| 373 | /* DP 1.2 MST sideband request names DP 1.2a Table 2-80 */ | ||
| 374 | #define DP_LINK_ADDRESS 0x01 | ||
| 375 | #define DP_CONNECTION_STATUS_NOTIFY 0x02 | ||
| 376 | #define DP_ENUM_PATH_RESOURCES 0x10 | ||
| 377 | #define DP_ALLOCATE_PAYLOAD 0x11 | ||
| 378 | #define DP_QUERY_PAYLOAD 0x12 | ||
| 379 | #define DP_RESOURCE_STATUS_NOTIFY 0x13 | ||
| 380 | #define DP_CLEAR_PAYLOAD_ID_TABLE 0x14 | ||
| 381 | #define DP_REMOTE_DPCD_READ 0x20 | ||
| 382 | #define DP_REMOTE_DPCD_WRITE 0x21 | ||
| 383 | #define DP_REMOTE_I2C_READ 0x22 | ||
| 384 | #define DP_REMOTE_I2C_WRITE 0x23 | ||
| 385 | #define DP_POWER_UP_PHY 0x24 | ||
| 386 | #define DP_POWER_DOWN_PHY 0x25 | ||
| 387 | #define DP_SINK_EVENT_NOTIFY 0x30 | ||
| 388 | #define DP_QUERY_STREAM_ENC_STATUS 0x38 | ||
| 389 | |||
| 390 | /* DP 1.2 MST sideband nak reasons - table 2.84 */ | ||
| 391 | #define DP_NAK_WRITE_FAILURE 0x01 | ||
| 392 | #define DP_NAK_INVALID_READ 0x02 | ||
| 393 | #define DP_NAK_CRC_FAILURE 0x03 | ||
| 394 | #define DP_NAK_BAD_PARAM 0x04 | ||
| 395 | #define DP_NAK_DEFER 0x05 | ||
| 396 | #define DP_NAK_LINK_FAILURE 0x06 | ||
| 397 | #define DP_NAK_NO_RESOURCES 0x07 | ||
| 398 | #define DP_NAK_DPCD_FAIL 0x08 | ||
| 399 | #define DP_NAK_I2C_NAK 0x09 | ||
| 400 | #define DP_NAK_ALLOCATE_FAIL 0x0a | ||
| 401 | |||
| 322 | #define MODE_I2C_START 1 | 402 | #define MODE_I2C_START 1 |
| 323 | #define MODE_I2C_WRITE 2 | 403 | #define MODE_I2C_WRITE 2 |
| 324 | #define MODE_I2C_READ 4 | 404 | #define MODE_I2C_READ 4 |
| @@ -431,8 +511,10 @@ struct drm_dp_aux_msg { | |||
| 431 | 511 | ||
| 432 | /** | 512 | /** |
| 433 | * struct drm_dp_aux - DisplayPort AUX channel | 513 | * struct drm_dp_aux - DisplayPort AUX channel |
| 514 | * @name: user-visible name of this AUX channel and the I2C-over-AUX adapter | ||
| 434 | * @ddc: I2C adapter that can be used for I2C-over-AUX communication | 515 | * @ddc: I2C adapter that can be used for I2C-over-AUX communication |
| 435 | * @dev: pointer to struct device that is the parent for this AUX channel | 516 | * @dev: pointer to struct device that is the parent for this AUX channel |
| 517 | * @hw_mutex: internal mutex used for locking transfers | ||
| 436 | * @transfer: transfers a message representing a single AUX transaction | 518 | * @transfer: transfers a message representing a single AUX transaction |
| 437 | * | 519 | * |
| 438 | * The .dev field should be set to a pointer to the device that implements | 520 | * The .dev field should be set to a pointer to the device that implements |
| @@ -465,7 +547,7 @@ struct drm_dp_aux { | |||
| 465 | const char *name; | 547 | const char *name; |
| 466 | struct i2c_adapter ddc; | 548 | struct i2c_adapter ddc; |
| 467 | struct device *dev; | 549 | struct device *dev; |
| 468 | 550 | struct mutex hw_mutex; | |
| 469 | ssize_t (*transfer)(struct drm_dp_aux *aux, | 551 | ssize_t (*transfer)(struct drm_dp_aux *aux, |
| 470 | struct drm_dp_aux_msg *msg); | 552 | struct drm_dp_aux_msg *msg); |
| 471 | }; | 553 | }; |
| @@ -524,7 +606,7 @@ int drm_dp_link_probe(struct drm_dp_aux *aux, struct drm_dp_link *link); | |||
| 524 | int drm_dp_link_power_up(struct drm_dp_aux *aux, struct drm_dp_link *link); | 606 | int drm_dp_link_power_up(struct drm_dp_aux *aux, struct drm_dp_link *link); |
| 525 | int drm_dp_link_configure(struct drm_dp_aux *aux, struct drm_dp_link *link); | 607 | int drm_dp_link_configure(struct drm_dp_aux *aux, struct drm_dp_link *link); |
| 526 | 608 | ||
| 527 | int drm_dp_aux_register_i2c_bus(struct drm_dp_aux *aux); | 609 | int drm_dp_aux_register(struct drm_dp_aux *aux); |
| 528 | void drm_dp_aux_unregister_i2c_bus(struct drm_dp_aux *aux); | 610 | void drm_dp_aux_unregister(struct drm_dp_aux *aux); |
| 529 | 611 | ||
| 530 | #endif /* _DRM_DP_HELPER_H_ */ | 612 | #endif /* _DRM_DP_HELPER_H_ */ |
diff --git a/include/drm/drm_edid.h b/include/drm/drm_edid.h index a1441c5ac63d..b96031d947a0 100644 --- a/include/drm/drm_edid.h +++ b/include/drm/drm_edid.h | |||
| @@ -202,6 +202,11 @@ struct detailed_timing { | |||
| 202 | #define DRM_EDID_FEATURE_PM_SUSPEND (1 << 6) | 202 | #define DRM_EDID_FEATURE_PM_SUSPEND (1 << 6) |
| 203 | #define DRM_EDID_FEATURE_PM_STANDBY (1 << 7) | 203 | #define DRM_EDID_FEATURE_PM_STANDBY (1 << 7) |
| 204 | 204 | ||
| 205 | #define DRM_EDID_HDMI_DC_48 (1 << 6) | ||
| 206 | #define DRM_EDID_HDMI_DC_36 (1 << 5) | ||
| 207 | #define DRM_EDID_HDMI_DC_30 (1 << 4) | ||
| 208 | #define DRM_EDID_HDMI_DC_Y444 (1 << 3) | ||
| 209 | |||
| 205 | struct edid { | 210 | struct edid { |
| 206 | u8 header[8]; | 211 | u8 header[8]; |
| 207 | /* Vendor & product info */ | 212 | /* Vendor & product info */ |
diff --git a/include/drm/drm_fb_helper.h b/include/drm/drm_fb_helper.h index 6e622f7d481d..7997246d4039 100644 --- a/include/drm/drm_fb_helper.h +++ b/include/drm/drm_fb_helper.h | |||
| @@ -108,7 +108,7 @@ int drm_fb_helper_set_par(struct fb_info *info); | |||
| 108 | int drm_fb_helper_check_var(struct fb_var_screeninfo *var, | 108 | int drm_fb_helper_check_var(struct fb_var_screeninfo *var, |
| 109 | struct fb_info *info); | 109 | struct fb_info *info); |
| 110 | 110 | ||
| 111 | bool drm_fb_helper_restore_fbdev_mode(struct drm_fb_helper *fb_helper); | 111 | bool drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper); |
| 112 | void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper, | 112 | void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper, |
| 113 | uint32_t fb_width, uint32_t fb_height); | 113 | uint32_t fb_width, uint32_t fb_height); |
| 114 | void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch, | 114 | void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch, |
diff --git a/include/drm/drm_flip_work.h b/include/drm/drm_flip_work.h index 35c776ae7d3b..9eed34dcd6af 100644 --- a/include/drm/drm_flip_work.h +++ b/include/drm/drm_flip_work.h | |||
| @@ -57,6 +57,7 @@ typedef void (*drm_flip_func_t)(struct drm_flip_work *work, void *val); | |||
| 57 | * @count: number of committed items | 57 | * @count: number of committed items |
| 58 | * @func: callback fxn called for each committed item | 58 | * @func: callback fxn called for each committed item |
| 59 | * @worker: worker which calls @func | 59 | * @worker: worker which calls @func |
| 60 | * @fifo: queue of committed items | ||
| 60 | */ | 61 | */ |
| 61 | struct drm_flip_work { | 62 | struct drm_flip_work { |
| 62 | const char *name; | 63 | const char *name; |
diff --git a/include/drm/drm_mipi_dsi.h b/include/drm/drm_mipi_dsi.h index 7209df15a3cd..944f33f8ba38 100644 --- a/include/drm/drm_mipi_dsi.h +++ b/include/drm/drm_mipi_dsi.h | |||
| @@ -135,11 +135,13 @@ ssize_t mipi_dsi_dcs_read(struct mipi_dsi_device *dsi, unsigned int channel, | |||
| 135 | * @driver: device driver model driver | 135 | * @driver: device driver model driver |
| 136 | * @probe: callback for device binding | 136 | * @probe: callback for device binding |
| 137 | * @remove: callback for device unbinding | 137 | * @remove: callback for device unbinding |
| 138 | * @shutdown: called at shutdown time to quiesce the device | ||
| 138 | */ | 139 | */ |
| 139 | struct mipi_dsi_driver { | 140 | struct mipi_dsi_driver { |
| 140 | struct device_driver driver; | 141 | struct device_driver driver; |
| 141 | int(*probe)(struct mipi_dsi_device *dsi); | 142 | int(*probe)(struct mipi_dsi_device *dsi); |
| 142 | int(*remove)(struct mipi_dsi_device *dsi); | 143 | int(*remove)(struct mipi_dsi_device *dsi); |
| 144 | void (*shutdown)(struct mipi_dsi_device *dsi); | ||
| 143 | }; | 145 | }; |
| 144 | 146 | ||
| 145 | #define to_mipi_dsi_driver(d) container_of(d, struct mipi_dsi_driver, driver) | 147 | #define to_mipi_dsi_driver(d) container_of(d, struct mipi_dsi_driver, driver) |
diff --git a/include/drm/drm_modes.h b/include/drm/drm_modes.h index 2dbbf9976669..91d0582f924e 100644 --- a/include/drm/drm_modes.h +++ b/include/drm/drm_modes.h | |||
| @@ -223,7 +223,7 @@ void drm_mode_validate_size(struct drm_device *dev, | |||
| 223 | void drm_mode_prune_invalid(struct drm_device *dev, | 223 | void drm_mode_prune_invalid(struct drm_device *dev, |
| 224 | struct list_head *mode_list, bool verbose); | 224 | struct list_head *mode_list, bool verbose); |
| 225 | void drm_mode_sort(struct list_head *mode_list); | 225 | void drm_mode_sort(struct list_head *mode_list); |
| 226 | void drm_mode_connector_list_update(struct drm_connector *connector); | 226 | void drm_mode_connector_list_update(struct drm_connector *connector, bool merge_type_bits); |
| 227 | 227 | ||
| 228 | /* parsing cmdline modes */ | 228 | /* parsing cmdline modes */ |
| 229 | bool | 229 | bool |
diff --git a/include/drm/drm_modeset_lock.h b/include/drm/drm_modeset_lock.h new file mode 100644 index 000000000000..402aa7a6a058 --- /dev/null +++ b/include/drm/drm_modeset_lock.h | |||
| @@ -0,0 +1,126 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2014 Red Hat | ||
| 3 | * Author: Rob Clark <robdclark@gmail.com> | ||
| 4 | * | ||
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
| 6 | * copy of this software and associated documentation files (the "Software"), | ||
| 7 | * to deal in the Software without restriction, including without limitation | ||
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
| 9 | * and/or sell copies of the Software, and to permit persons to whom the | ||
| 10 | * Software is furnished to do so, subject to the following conditions: | ||
| 11 | * | ||
| 12 | * The above copyright notice and this permission notice shall be included in | ||
| 13 | * all copies or substantial portions of the Software. | ||
| 14 | * | ||
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
| 18 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
| 19 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
| 20 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
| 21 | * OTHER DEALINGS IN THE SOFTWARE. | ||
| 22 | */ | ||
| 23 | |||
| 24 | #ifndef DRM_MODESET_LOCK_H_ | ||
| 25 | #define DRM_MODESET_LOCK_H_ | ||
| 26 | |||
| 27 | #include <linux/ww_mutex.h> | ||
| 28 | |||
| 29 | struct drm_modeset_lock; | ||
| 30 | |||
| 31 | /** | ||
| 32 | * drm_modeset_acquire_ctx - locking context (see ww_acquire_ctx) | ||
| 33 | * @ww_ctx: base acquire ctx | ||
| 34 | * @contended: used internally for -EDEADLK handling | ||
| 35 | * @locked: list of held locks | ||
| 36 | * | ||
| 37 | * Each thread competing for a set of locks must use one acquire | ||
| 38 | * ctx. And if any lock fxn returns -EDEADLK, it must backoff and | ||
| 39 | * retry. | ||
| 40 | */ | ||
| 41 | struct drm_modeset_acquire_ctx { | ||
| 42 | |||
| 43 | struct ww_acquire_ctx ww_ctx; | ||
| 44 | |||
| 45 | /** | ||
| 46 | * Contended lock: if a lock is contended you should only call | ||
| 47 | * drm_modeset_backoff() which drops locks and slow-locks the | ||
| 48 | * contended lock. | ||
| 49 | */ | ||
| 50 | struct drm_modeset_lock *contended; | ||
| 51 | |||
| 52 | /** | ||
| 53 | * list of held locks (drm_modeset_lock) | ||
| 54 | */ | ||
| 55 | struct list_head locked; | ||
| 56 | }; | ||
| 57 | |||
| 58 | /** | ||
| 59 | * drm_modeset_lock - used for locking modeset resources. | ||
| 60 | * @mutex: resource locking | ||
| 61 | * @head: used to hold it's place on state->locked list when | ||
| 62 | * part of an atomic update | ||
| 63 | * | ||
| 64 | * Used for locking CRTCs and other modeset resources. | ||
| 65 | */ | ||
| 66 | struct drm_modeset_lock { | ||
| 67 | /** | ||
| 68 | * modeset lock | ||
| 69 | */ | ||
| 70 | struct ww_mutex mutex; | ||
| 71 | |||
| 72 | /** | ||
| 73 | * Resources that are locked as part of an atomic update are added | ||
| 74 | * to a list (so we know what to unlock at the end). | ||
| 75 | */ | ||
| 76 | struct list_head head; | ||
| 77 | }; | ||
| 78 | |||
| 79 | extern struct ww_class crtc_ww_class; | ||
| 80 | |||
| 81 | void drm_modeset_acquire_init(struct drm_modeset_acquire_ctx *ctx, | ||
| 82 | uint32_t flags); | ||
| 83 | void drm_modeset_acquire_fini(struct drm_modeset_acquire_ctx *ctx); | ||
| 84 | void drm_modeset_drop_locks(struct drm_modeset_acquire_ctx *ctx); | ||
| 85 | void drm_modeset_backoff(struct drm_modeset_acquire_ctx *ctx); | ||
| 86 | int drm_modeset_backoff_interruptible(struct drm_modeset_acquire_ctx *ctx); | ||
| 87 | |||
| 88 | /** | ||
| 89 | * drm_modeset_lock_init - initialize lock | ||
| 90 | * @lock: lock to init | ||
| 91 | */ | ||
| 92 | static inline void drm_modeset_lock_init(struct drm_modeset_lock *lock) | ||
| 93 | { | ||
| 94 | ww_mutex_init(&lock->mutex, &crtc_ww_class); | ||
| 95 | INIT_LIST_HEAD(&lock->head); | ||
| 96 | } | ||
| 97 | |||
| 98 | /** | ||
| 99 | * drm_modeset_lock_fini - cleanup lock | ||
| 100 | * @lock: lock to cleanup | ||
| 101 | */ | ||
| 102 | static inline void drm_modeset_lock_fini(struct drm_modeset_lock *lock) | ||
| 103 | { | ||
| 104 | WARN_ON(!list_empty(&lock->head)); | ||
| 105 | } | ||
| 106 | |||
| 107 | /** | ||
| 108 | * drm_modeset_is_locked - equivalent to mutex_is_locked() | ||
| 109 | * @lock: lock to check | ||
| 110 | */ | ||
| 111 | static inline bool drm_modeset_is_locked(struct drm_modeset_lock *lock) | ||
| 112 | { | ||
| 113 | return ww_mutex_is_locked(&lock->mutex); | ||
| 114 | } | ||
| 115 | |||
| 116 | int drm_modeset_lock(struct drm_modeset_lock *lock, | ||
| 117 | struct drm_modeset_acquire_ctx *ctx); | ||
| 118 | int drm_modeset_lock_interruptible(struct drm_modeset_lock *lock, | ||
| 119 | struct drm_modeset_acquire_ctx *ctx); | ||
| 120 | void drm_modeset_unlock(struct drm_modeset_lock *lock); | ||
| 121 | |||
| 122 | struct drm_device; | ||
| 123 | int drm_modeset_lock_all_crtcs(struct drm_device *dev, | ||
| 124 | struct drm_modeset_acquire_ctx *ctx); | ||
| 125 | |||
| 126 | #endif /* DRM_MODESET_LOCK_H_ */ | ||
diff --git a/include/drm/drm_plane_helper.h b/include/drm/drm_plane_helper.h index 09824becee3e..52e6870534b2 100644 --- a/include/drm/drm_plane_helper.h +++ b/include/drm/drm_plane_helper.h | |||
| @@ -24,6 +24,17 @@ | |||
| 24 | #ifndef DRM_PLANE_HELPER_H | 24 | #ifndef DRM_PLANE_HELPER_H |
| 25 | #define DRM_PLANE_HELPER_H | 25 | #define DRM_PLANE_HELPER_H |
| 26 | 26 | ||
| 27 | #include <drm/drm_rect.h> | ||
| 28 | |||
| 29 | /* | ||
| 30 | * Drivers that don't allow primary plane scaling may pass this macro in place | ||
| 31 | * of the min/max scale parameters of the update checker function. | ||
| 32 | * | ||
| 33 | * Due to src being in 16.16 fixed point and dest being in integer pixels, | ||
| 34 | * 1<<16 represents no scaling. | ||
| 35 | */ | ||
| 36 | #define DRM_PLANE_HELPER_NO_SCALING (1<<16) | ||
| 37 | |||
| 27 | /** | 38 | /** |
| 28 | * DOC: plane helpers | 39 | * DOC: plane helpers |
| 29 | * | 40 | * |
| @@ -31,6 +42,17 @@ | |||
| 31 | * planes. | 42 | * planes. |
| 32 | */ | 43 | */ |
| 33 | 44 | ||
| 45 | extern int drm_plane_helper_check_update(struct drm_plane *plane, | ||
| 46 | struct drm_crtc *crtc, | ||
| 47 | struct drm_framebuffer *fb, | ||
| 48 | struct drm_rect *src, | ||
| 49 | struct drm_rect *dest, | ||
| 50 | const struct drm_rect *clip, | ||
| 51 | int min_scale, | ||
| 52 | int max_scale, | ||
| 53 | bool can_position, | ||
| 54 | bool can_update_disabled, | ||
| 55 | bool *visible); | ||
| 34 | extern int drm_primary_helper_update(struct drm_plane *plane, | 56 | extern int drm_primary_helper_update(struct drm_plane *plane, |
| 35 | struct drm_crtc *crtc, | 57 | struct drm_crtc *crtc, |
| 36 | struct drm_framebuffer *fb, | 58 | struct drm_framebuffer *fb, |
| @@ -42,7 +64,7 @@ extern int drm_primary_helper_disable(struct drm_plane *plane); | |||
| 42 | extern void drm_primary_helper_destroy(struct drm_plane *plane); | 64 | extern void drm_primary_helper_destroy(struct drm_plane *plane); |
| 43 | extern const struct drm_plane_funcs drm_primary_helper_funcs; | 65 | extern const struct drm_plane_funcs drm_primary_helper_funcs; |
| 44 | extern struct drm_plane *drm_primary_helper_create_plane(struct drm_device *dev, | 66 | extern struct drm_plane *drm_primary_helper_create_plane(struct drm_device *dev, |
| 45 | uint32_t *formats, | 67 | const uint32_t *formats, |
| 46 | int num_formats); | 68 | int num_formats); |
| 47 | 69 | ||
| 48 | 70 | ||
diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h index 012d58fa8ff0..0572035673f3 100644 --- a/include/drm/i915_pciids.h +++ b/include/drm/i915_pciids.h | |||
| @@ -223,14 +223,32 @@ | |||
| 223 | _INTEL_BDW_D(gt, 0x160A, info), /* Server */ \ | 223 | _INTEL_BDW_D(gt, 0x160A, info), /* Server */ \ |
| 224 | _INTEL_BDW_D(gt, 0x160D, info) /* Workstation */ | 224 | _INTEL_BDW_D(gt, 0x160D, info) /* Workstation */ |
| 225 | 225 | ||
| 226 | #define INTEL_BDW_M_IDS(info) \ | 226 | #define INTEL_BDW_GT12M_IDS(info) \ |
| 227 | _INTEL_BDW_M_IDS(1, info), \ | 227 | _INTEL_BDW_M_IDS(1, info), \ |
| 228 | _INTEL_BDW_M_IDS(2, info), \ | 228 | _INTEL_BDW_M_IDS(2, info) |
| 229 | _INTEL_BDW_M_IDS(3, info) | ||
| 230 | 229 | ||
| 231 | #define INTEL_BDW_D_IDS(info) \ | 230 | #define INTEL_BDW_GT12D_IDS(info) \ |
| 232 | _INTEL_BDW_D_IDS(1, info), \ | 231 | _INTEL_BDW_D_IDS(1, info), \ |
| 233 | _INTEL_BDW_D_IDS(2, info), \ | 232 | _INTEL_BDW_D_IDS(2, info) |
| 233 | |||
| 234 | #define INTEL_BDW_GT3M_IDS(info) \ | ||
| 235 | _INTEL_BDW_M_IDS(3, info) | ||
| 236 | |||
| 237 | #define INTEL_BDW_GT3D_IDS(info) \ | ||
| 234 | _INTEL_BDW_D_IDS(3, info) | 238 | _INTEL_BDW_D_IDS(3, info) |
| 235 | 239 | ||
| 240 | #define INTEL_BDW_M_IDS(info) \ | ||
| 241 | INTEL_BDW_GT12M_IDS(info), \ | ||
| 242 | INTEL_BDW_GT3M_IDS(info) | ||
| 243 | |||
| 244 | #define INTEL_BDW_D_IDS(info) \ | ||
| 245 | INTEL_BDW_GT12D_IDS(info), \ | ||
| 246 | INTEL_BDW_GT3D_IDS(info) | ||
| 247 | |||
| 248 | #define INTEL_CHV_IDS(info) \ | ||
| 249 | INTEL_VGA_DEVICE(0x22b0, info), \ | ||
| 250 | INTEL_VGA_DEVICE(0x22b1, info), \ | ||
| 251 | INTEL_VGA_DEVICE(0x22b2, info), \ | ||
| 252 | INTEL_VGA_DEVICE(0x22b3, info) | ||
| 253 | |||
| 236 | #endif /* _I915_PCIIDS_H */ | 254 | #endif /* _I915_PCIIDS_H */ |
diff --git a/include/drm/ttm/ttm_bo_api.h b/include/drm/ttm/ttm_bo_api.h index ee127ec33c60..7526c5bf5610 100644 --- a/include/drm/ttm/ttm_bo_api.h +++ b/include/drm/ttm/ttm_bo_api.h | |||
| @@ -485,13 +485,12 @@ extern int ttm_bo_init(struct ttm_bo_device *bdev, | |||
| 485 | void (*destroy) (struct ttm_buffer_object *)); | 485 | void (*destroy) (struct ttm_buffer_object *)); |
| 486 | 486 | ||
| 487 | /** | 487 | /** |
| 488 | * ttm_bo_synccpu_object_init | 488 | * ttm_bo_create |
| 489 | * | 489 | * |
| 490 | * @bdev: Pointer to a ttm_bo_device struct. | 490 | * @bdev: Pointer to a ttm_bo_device struct. |
| 491 | * @bo: Pointer to a ttm_buffer_object to be initialized. | ||
| 492 | * @size: Requested size of buffer object. | 491 | * @size: Requested size of buffer object. |
| 493 | * @type: Requested type of buffer object. | 492 | * @type: Requested type of buffer object. |
| 494 | * @flags: Initial placement flags. | 493 | * @placement: Initial placement. |
| 495 | * @page_alignment: Data alignment in pages. | 494 | * @page_alignment: Data alignment in pages. |
| 496 | * @interruptible: If needing to sleep while waiting for GPU resources, | 495 | * @interruptible: If needing to sleep while waiting for GPU resources, |
| 497 | * sleep interruptible. | 496 | * sleep interruptible. |
diff --git a/include/dt-bindings/clock/bcm21664.h b/include/dt-bindings/clock/bcm21664.h new file mode 100644 index 000000000000..5a7f0e4750a8 --- /dev/null +++ b/include/dt-bindings/clock/bcm21664.h | |||
| @@ -0,0 +1,62 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2013 Broadcom Corporation | ||
| 3 | * Copyright 2013 Linaro Limited | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or | ||
| 6 | * modify it under the terms of the GNU General Public License as | ||
| 7 | * published by the Free Software Foundation version 2. | ||
| 8 | * | ||
| 9 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any | ||
| 10 | * kind, whether express or implied; without even the implied warranty | ||
| 11 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | */ | ||
| 14 | |||
| 15 | #ifndef _CLOCK_BCM21664_H | ||
| 16 | #define _CLOCK_BCM21664_H | ||
| 17 | |||
| 18 | /* | ||
| 19 | * This file defines the values used to specify clocks provided by | ||
| 20 | * the clock control units (CCUs) on Broadcom BCM21664 family SoCs. | ||
| 21 | */ | ||
| 22 | |||
| 23 | /* bcm21664 CCU device tree "compatible" strings */ | ||
| 24 | #define BCM21664_DT_ROOT_CCU_COMPAT "brcm,bcm21664-root-ccu" | ||
| 25 | #define BCM21664_DT_AON_CCU_COMPAT "brcm,bcm21664-aon-ccu" | ||
| 26 | #define BCM21664_DT_MASTER_CCU_COMPAT "brcm,bcm21664-master-ccu" | ||
| 27 | #define BCM21664_DT_SLAVE_CCU_COMPAT "brcm,bcm21664-slave-ccu" | ||
| 28 | |||
| 29 | /* root CCU clock ids */ | ||
| 30 | |||
| 31 | #define BCM21664_ROOT_CCU_FRAC_1M 0 | ||
| 32 | #define BCM21664_ROOT_CCU_CLOCK_COUNT 1 | ||
| 33 | |||
| 34 | /* aon CCU clock ids */ | ||
| 35 | |||
| 36 | #define BCM21664_AON_CCU_HUB_TIMER 0 | ||
| 37 | #define BCM21664_AON_CCU_CLOCK_COUNT 1 | ||
| 38 | |||
| 39 | /* master CCU clock ids */ | ||
| 40 | |||
| 41 | #define BCM21664_MASTER_CCU_SDIO1 0 | ||
| 42 | #define BCM21664_MASTER_CCU_SDIO2 1 | ||
| 43 | #define BCM21664_MASTER_CCU_SDIO3 2 | ||
| 44 | #define BCM21664_MASTER_CCU_SDIO4 3 | ||
| 45 | #define BCM21664_MASTER_CCU_SDIO1_SLEEP 4 | ||
| 46 | #define BCM21664_MASTER_CCU_SDIO2_SLEEP 5 | ||
| 47 | #define BCM21664_MASTER_CCU_SDIO3_SLEEP 6 | ||
| 48 | #define BCM21664_MASTER_CCU_SDIO4_SLEEP 7 | ||
| 49 | #define BCM21664_MASTER_CCU_CLOCK_COUNT 8 | ||
| 50 | |||
| 51 | /* slave CCU clock ids */ | ||
| 52 | |||
| 53 | #define BCM21664_SLAVE_CCU_UARTB 0 | ||
| 54 | #define BCM21664_SLAVE_CCU_UARTB2 1 | ||
| 55 | #define BCM21664_SLAVE_CCU_UARTB3 2 | ||
| 56 | #define BCM21664_SLAVE_CCU_BSC1 3 | ||
| 57 | #define BCM21664_SLAVE_CCU_BSC2 4 | ||
| 58 | #define BCM21664_SLAVE_CCU_BSC3 5 | ||
| 59 | #define BCM21664_SLAVE_CCU_BSC4 6 | ||
| 60 | #define BCM21664_SLAVE_CCU_CLOCK_COUNT 7 | ||
| 61 | |||
| 62 | #endif /* _CLOCK_BCM21664_H */ | ||
diff --git a/include/dt-bindings/clock/bcm281xx.h b/include/dt-bindings/clock/bcm281xx.h index e0096940886d..a763460cf1af 100644 --- a/include/dt-bindings/clock/bcm281xx.h +++ b/include/dt-bindings/clock/bcm281xx.h | |||
| @@ -20,6 +20,18 @@ | |||
| 20 | * the clock control units (CCUs) on Broadcom BCM281XX family SoCs. | 20 | * the clock control units (CCUs) on Broadcom BCM281XX family SoCs. |
| 21 | */ | 21 | */ |
| 22 | 22 | ||
| 23 | /* | ||
| 24 | * These are the bcm281xx CCU device tree "compatible" strings. | ||
| 25 | * We're stuck with using "bcm11351" in the string because wild | ||
| 26 | * cards aren't allowed, and that name was the first one defined | ||
| 27 | * in this family of devices. | ||
| 28 | */ | ||
| 29 | #define BCM281XX_DT_ROOT_CCU_COMPAT "brcm,bcm11351-root-ccu" | ||
| 30 | #define BCM281XX_DT_AON_CCU_COMPAT "brcm,bcm11351-aon-ccu" | ||
| 31 | #define BCM281XX_DT_HUB_CCU_COMPAT "brcm,bcm11351-hub-ccu" | ||
| 32 | #define BCM281XX_DT_MASTER_CCU_COMPAT "brcm,bcm11351-master-ccu" | ||
| 33 | #define BCM281XX_DT_SLAVE_CCU_COMPAT "brcm,bcm11351-slave-ccu" | ||
| 34 | |||
| 23 | /* root CCU clock ids */ | 35 | /* root CCU clock ids */ |
| 24 | 36 | ||
| 25 | #define BCM281XX_ROOT_CCU_FRAC_1M 0 | 37 | #define BCM281XX_ROOT_CCU_FRAC_1M 0 |
diff --git a/include/dt-bindings/clock/hix5hd2-clock.h b/include/dt-bindings/clock/hix5hd2-clock.h new file mode 100644 index 000000000000..aad579a75802 --- /dev/null +++ b/include/dt-bindings/clock/hix5hd2-clock.h | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2014 Linaro Ltd. | ||
| 3 | * Copyright (c) 2014 Hisilicon Limited. | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify it | ||
| 6 | * under the terms and conditions of the GNU General Public License, | ||
| 7 | * version 2, as published by the Free Software Foundation. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __DTS_HIX5HD2_CLOCK_H | ||
| 11 | #define __DTS_HIX5HD2_CLOCK_H | ||
| 12 | |||
| 13 | /* fixed rate */ | ||
| 14 | #define HIX5HD2_FIXED_1200M 1 | ||
| 15 | #define HIX5HD2_FIXED_400M 2 | ||
| 16 | #define HIX5HD2_FIXED_48M 3 | ||
| 17 | #define HIX5HD2_FIXED_24M 4 | ||
| 18 | #define HIX5HD2_FIXED_600M 5 | ||
| 19 | #define HIX5HD2_FIXED_300M 6 | ||
| 20 | #define HIX5HD2_FIXED_75M 7 | ||
| 21 | #define HIX5HD2_FIXED_200M 8 | ||
| 22 | #define HIX5HD2_FIXED_100M 9 | ||
| 23 | #define HIX5HD2_FIXED_40M 10 | ||
| 24 | #define HIX5HD2_FIXED_150M 11 | ||
| 25 | #define HIX5HD2_FIXED_1728M 12 | ||
| 26 | #define HIX5HD2_FIXED_28P8M 13 | ||
| 27 | #define HIX5HD2_FIXED_432M 14 | ||
| 28 | #define HIX5HD2_FIXED_345P6M 15 | ||
| 29 | #define HIX5HD2_FIXED_288M 16 | ||
| 30 | #define HIX5HD2_FIXED_60M 17 | ||
| 31 | #define HIX5HD2_FIXED_750M 18 | ||
| 32 | #define HIX5HD2_FIXED_500M 19 | ||
| 33 | #define HIX5HD2_FIXED_54M 20 | ||
| 34 | #define HIX5HD2_FIXED_27M 21 | ||
| 35 | #define HIX5HD2_FIXED_1500M 22 | ||
| 36 | #define HIX5HD2_FIXED_375M 23 | ||
| 37 | #define HIX5HD2_FIXED_187M 24 | ||
| 38 | #define HIX5HD2_FIXED_250M 25 | ||
| 39 | #define HIX5HD2_FIXED_125M 26 | ||
| 40 | #define HIX5HD2_FIXED_2P02M 27 | ||
| 41 | #define HIX5HD2_FIXED_50M 28 | ||
| 42 | #define HIX5HD2_FIXED_25M 29 | ||
| 43 | #define HIX5HD2_FIXED_83M 30 | ||
| 44 | |||
| 45 | /* mux clocks */ | ||
| 46 | #define HIX5HD2_SFC_MUX 64 | ||
| 47 | #define HIX5HD2_MMC_MUX 65 | ||
| 48 | #define HIX5HD2_FEPHY_MUX 66 | ||
| 49 | |||
| 50 | /* gate clocks */ | ||
| 51 | #define HIX5HD2_SFC_RST 128 | ||
| 52 | #define HIX5HD2_SFC_CLK 129 | ||
| 53 | #define HIX5HD2_MMC_CIU_CLK 130 | ||
| 54 | #define HIX5HD2_MMC_BIU_CLK 131 | ||
| 55 | #define HIX5HD2_MMC_CIU_RST 132 | ||
| 56 | |||
| 57 | #define HIX5HD2_NR_CLKS 256 | ||
| 58 | #endif /* __DTS_HIX5HD2_CLOCK_H */ | ||
diff --git a/include/dt-bindings/clock/qcom,gcc-msm8960.h b/include/dt-bindings/clock/qcom,gcc-msm8960.h index 03bbf49d43b7..f9f547146a15 100644 --- a/include/dt-bindings/clock/qcom,gcc-msm8960.h +++ b/include/dt-bindings/clock/qcom,gcc-msm8960.h | |||
| @@ -51,7 +51,7 @@ | |||
| 51 | #define QDSS_TSCTR_CLK 34 | 51 | #define QDSS_TSCTR_CLK 34 |
| 52 | #define SFAB_ADM0_M0_A_CLK 35 | 52 | #define SFAB_ADM0_M0_A_CLK 35 |
| 53 | #define SFAB_ADM0_M1_A_CLK 36 | 53 | #define SFAB_ADM0_M1_A_CLK 36 |
| 54 | #define SFAB_ADM0_M2_A_CLK 37 | 54 | #define SFAB_ADM0_M2_H_CLK 37 |
| 55 | #define ADM0_CLK 38 | 55 | #define ADM0_CLK 38 |
| 56 | #define ADM0_PBUS_CLK 39 | 56 | #define ADM0_PBUS_CLK 39 |
| 57 | #define MSS_XPU_CLK 40 | 57 | #define MSS_XPU_CLK 40 |
| @@ -99,7 +99,7 @@ | |||
| 99 | #define CFPB2_H_CLK 82 | 99 | #define CFPB2_H_CLK 82 |
| 100 | #define SFAB_CFPB_M_H_CLK 83 | 100 | #define SFAB_CFPB_M_H_CLK 83 |
| 101 | #define CFPB_MASTER_H_CLK 84 | 101 | #define CFPB_MASTER_H_CLK 84 |
| 102 | #define SFAB_CFPB_S_HCLK 85 | 102 | #define SFAB_CFPB_S_H_CLK 85 |
| 103 | #define CFPB_SPLITTER_H_CLK 86 | 103 | #define CFPB_SPLITTER_H_CLK 86 |
| 104 | #define TSIF_H_CLK 87 | 104 | #define TSIF_H_CLK 87 |
| 105 | #define TSIF_INACTIVITY_TIMERS_CLK 88 | 105 | #define TSIF_INACTIVITY_TIMERS_CLK 88 |
| @@ -110,7 +110,6 @@ | |||
| 110 | #define CE1_SLEEP_CLK 93 | 110 | #define CE1_SLEEP_CLK 93 |
| 111 | #define CE2_H_CLK 94 | 111 | #define CE2_H_CLK 94 |
| 112 | #define CE2_CORE_CLK 95 | 112 | #define CE2_CORE_CLK 95 |
| 113 | #define CE2_SLEEP_CLK 96 | ||
| 114 | #define SFPB_H_CLK_SRC 97 | 113 | #define SFPB_H_CLK_SRC 97 |
| 115 | #define SFPB_H_CLK 98 | 114 | #define SFPB_H_CLK 98 |
| 116 | #define SFAB_SFPB_M_H_CLK 99 | 115 | #define SFAB_SFPB_M_H_CLK 99 |
| @@ -252,7 +251,7 @@ | |||
| 252 | #define MSS_S_H_CLK 235 | 251 | #define MSS_S_H_CLK 235 |
| 253 | #define MSS_CXO_SRC_CLK 236 | 252 | #define MSS_CXO_SRC_CLK 236 |
| 254 | #define SATA_H_CLK 237 | 253 | #define SATA_H_CLK 237 |
| 255 | #define SATA_SRC_CLK 238 | 254 | #define SATA_CLK_SRC 238 |
| 256 | #define SATA_RXOOB_CLK 239 | 255 | #define SATA_RXOOB_CLK 239 |
| 257 | #define SATA_PMALIVE_CLK 240 | 256 | #define SATA_PMALIVE_CLK 240 |
| 258 | #define SATA_PHY_REF_CLK 241 | 257 | #define SATA_PHY_REF_CLK 241 |
diff --git a/include/dt-bindings/clock/qcom,gcc-msm8974.h b/include/dt-bindings/clock/qcom,gcc-msm8974.h index 223ca174d9d3..51e51c860fe6 100644 --- a/include/dt-bindings/clock/qcom,gcc-msm8974.h +++ b/include/dt-bindings/clock/qcom,gcc-msm8974.h | |||
| @@ -316,5 +316,9 @@ | |||
| 316 | #define GCC_CE2_CLK_SLEEP_ENA 299 | 316 | #define GCC_CE2_CLK_SLEEP_ENA 299 |
| 317 | #define GCC_CE2_AXI_CLK_SLEEP_ENA 300 | 317 | #define GCC_CE2_AXI_CLK_SLEEP_ENA 300 |
| 318 | #define GCC_CE2_AHB_CLK_SLEEP_ENA 301 | 318 | #define GCC_CE2_AHB_CLK_SLEEP_ENA 301 |
| 319 | #define GPLL4 302 | ||
| 320 | #define GPLL4_VOTE 303 | ||
| 321 | #define GCC_SDCC1_CDCCAL_SLEEP_CLK 304 | ||
| 322 | #define GCC_SDCC1_CDCCAL_FF_CLK 305 | ||
| 319 | 323 | ||
| 320 | #endif | 324 | #endif |
diff --git a/include/dt-bindings/clock/r8a7779-clock.h b/include/dt-bindings/clock/r8a7779-clock.h new file mode 100644 index 000000000000..381a6114237a --- /dev/null +++ b/include/dt-bindings/clock/r8a7779-clock.h | |||
| @@ -0,0 +1,64 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2013 Horms Solutions Ltd. | ||
| 3 | * | ||
| 4 | * Contact: Simon Horman <horms@verge.net.au> | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef __DT_BINDINGS_CLOCK_R8A7779_H__ | ||
| 13 | #define __DT_BINDINGS_CLOCK_R8A7779_H__ | ||
| 14 | |||
| 15 | /* CPG */ | ||
| 16 | #define R8A7779_CLK_PLLA 0 | ||
| 17 | #define R8A7779_CLK_Z 1 | ||
| 18 | #define R8A7779_CLK_ZS 2 | ||
| 19 | #define R8A7779_CLK_S 3 | ||
| 20 | #define R8A7779_CLK_S1 4 | ||
| 21 | #define R8A7779_CLK_P 5 | ||
| 22 | #define R8A7779_CLK_B 6 | ||
| 23 | #define R8A7779_CLK_OUT 7 | ||
| 24 | |||
| 25 | /* MSTP 0 */ | ||
| 26 | #define R8A7779_CLK_HSPI 7 | ||
| 27 | #define R8A7779_CLK_TMU2 14 | ||
| 28 | #define R8A7779_CLK_TMU1 15 | ||
| 29 | #define R8A7779_CLK_TMU0 16 | ||
| 30 | #define R8A7779_CLK_HSCIF1 18 | ||
| 31 | #define R8A7779_CLK_HSCIF0 19 | ||
| 32 | #define R8A7779_CLK_SCIF5 21 | ||
| 33 | #define R8A7779_CLK_SCIF4 22 | ||
| 34 | #define R8A7779_CLK_SCIF3 23 | ||
| 35 | #define R8A7779_CLK_SCIF2 24 | ||
| 36 | #define R8A7779_CLK_SCIF1 25 | ||
| 37 | #define R8A7779_CLK_SCIF0 26 | ||
| 38 | #define R8A7779_CLK_I2C3 27 | ||
| 39 | #define R8A7779_CLK_I2C2 28 | ||
| 40 | #define R8A7779_CLK_I2C1 29 | ||
| 41 | #define R8A7779_CLK_I2C0 30 | ||
| 42 | |||
| 43 | /* MSTP 1 */ | ||
| 44 | #define R8A7779_CLK_USB01 0 | ||
| 45 | #define R8A7779_CLK_USB2 1 | ||
| 46 | #define R8A7779_CLK_DU 3 | ||
| 47 | #define R8A7779_CLK_VIN2 8 | ||
| 48 | #define R8A7779_CLK_VIN1 9 | ||
| 49 | #define R8A7779_CLK_VIN0 10 | ||
| 50 | #define R8A7779_CLK_ETHER 14 | ||
| 51 | #define R8A7779_CLK_SATA 15 | ||
| 52 | #define R8A7779_CLK_PCIE 16 | ||
| 53 | #define R8A7779_CLK_VIN3 20 | ||
| 54 | |||
| 55 | /* MSTP 3 */ | ||
| 56 | #define R8A7779_CLK_SDHI3 20 | ||
| 57 | #define R8A7779_CLK_SDHI2 21 | ||
| 58 | #define R8A7779_CLK_SDHI1 22 | ||
| 59 | #define R8A7779_CLK_SDHI0 23 | ||
| 60 | #define R8A7779_CLK_MMC1 30 | ||
| 61 | #define R8A7779_CLK_MMC0 31 | ||
| 62 | |||
| 63 | |||
| 64 | #endif /* __DT_BINDINGS_CLOCK_R8A7779_H__ */ | ||
diff --git a/include/dt-bindings/clock/tegra114-car.h b/include/dt-bindings/clock/tegra114-car.h index 6d0d8d8ef31e..fc12621fb432 100644 --- a/include/dt-bindings/clock/tegra114-car.h +++ b/include/dt-bindings/clock/tegra114-car.h | |||
| @@ -337,6 +337,7 @@ | |||
| 337 | #define TEGRA114_CLK_CLK_OUT_3_MUX 308 | 337 | #define TEGRA114_CLK_CLK_OUT_3_MUX 308 |
| 338 | #define TEGRA114_CLK_DSIA_MUX 309 | 338 | #define TEGRA114_CLK_DSIA_MUX 309 |
| 339 | #define TEGRA114_CLK_DSIB_MUX 310 | 339 | #define TEGRA114_CLK_DSIB_MUX 310 |
| 340 | #define TEGRA114_CLK_CLK_MAX 311 | 340 | #define TEGRA114_CLK_XUSB_SS_DIV2 311 |
| 341 | #define TEGRA114_CLK_CLK_MAX 312 | ||
| 341 | 342 | ||
| 342 | #endif /* _DT_BINDINGS_CLOCK_TEGRA114_CAR_H */ | 343 | #endif /* _DT_BINDINGS_CLOCK_TEGRA114_CAR_H */ |
diff --git a/include/dt-bindings/clock/tegra124-car.h b/include/dt-bindings/clock/tegra124-car.h index 433528ab5161..8a4c5892890f 100644 --- a/include/dt-bindings/clock/tegra124-car.h +++ b/include/dt-bindings/clock/tegra124-car.h | |||
| @@ -336,6 +336,7 @@ | |||
| 336 | #define TEGRA124_CLK_DSIA_MUX 309 | 336 | #define TEGRA124_CLK_DSIA_MUX 309 |
| 337 | #define TEGRA124_CLK_DSIB_MUX 310 | 337 | #define TEGRA124_CLK_DSIB_MUX 310 |
| 338 | #define TEGRA124_CLK_SOR0_LVDS 311 | 338 | #define TEGRA124_CLK_SOR0_LVDS 311 |
| 339 | #define TEGRA124_CLK_CLK_MAX 312 | 339 | #define TEGRA124_CLK_XUSB_SS_DIV2 312 |
| 340 | #define TEGRA124_CLK_CLK_MAX 313 | ||
| 340 | 341 | ||
| 341 | #endif /* _DT_BINDINGS_CLOCK_TEGRA124_CAR_H */ | 342 | #endif /* _DT_BINDINGS_CLOCK_TEGRA124_CAR_H */ |
diff --git a/include/dt-bindings/reset/qcom,gcc-msm8960.h b/include/dt-bindings/reset/qcom,gcc-msm8960.h index a840e680323c..07edd0e65eed 100644 --- a/include/dt-bindings/reset/qcom,gcc-msm8960.h +++ b/include/dt-bindings/reset/qcom,gcc-msm8960.h | |||
| @@ -58,7 +58,7 @@ | |||
| 58 | #define PPSS_PROC_RESET 41 | 58 | #define PPSS_PROC_RESET 41 |
| 59 | #define PPSS_RESET 42 | 59 | #define PPSS_RESET 42 |
| 60 | #define DMA_BAM_RESET 43 | 60 | #define DMA_BAM_RESET 43 |
| 61 | #define SIC_TIC_RESET 44 | 61 | #define SPS_TIC_H_RESET 44 |
| 62 | #define SLIMBUS_H_RESET 45 | 62 | #define SLIMBUS_H_RESET 45 |
| 63 | #define SFAB_CFPB_M_RESET 46 | 63 | #define SFAB_CFPB_M_RESET 46 |
| 64 | #define SFAB_CFPB_S_RESET 47 | 64 | #define SFAB_CFPB_S_RESET 47 |
diff --git a/include/linux/ahci_platform.h b/include/linux/ahci_platform.h index 1f16d502600c..6dfd51a04d77 100644 --- a/include/linux/ahci_platform.h +++ b/include/linux/ahci_platform.h | |||
| @@ -44,6 +44,7 @@ struct ahci_host_priv *ahci_platform_get_resources( | |||
| 44 | int ahci_platform_init_host(struct platform_device *pdev, | 44 | int ahci_platform_init_host(struct platform_device *pdev, |
| 45 | struct ahci_host_priv *hpriv, | 45 | struct ahci_host_priv *hpriv, |
| 46 | const struct ata_port_info *pi_template, | 46 | const struct ata_port_info *pi_template, |
| 47 | unsigned long host_flags, | ||
| 47 | unsigned int force_port_map, | 48 | unsigned int force_port_map, |
| 48 | unsigned int mask_port_map); | 49 | unsigned int mask_port_map); |
| 49 | 50 | ||
diff --git a/include/linux/amba/xilinx_dma.h b/include/linux/amba/xilinx_dma.h new file mode 100644 index 000000000000..34b98f276ed0 --- /dev/null +++ b/include/linux/amba/xilinx_dma.h | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | /* | ||
| 2 | * Xilinx DMA Engine drivers support header file | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010-2014 Xilinx, Inc. All rights reserved. | ||
| 5 | * | ||
| 6 | * This is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef __DMA_XILINX_DMA_H | ||
| 13 | #define __DMA_XILINX_DMA_H | ||
| 14 | |||
| 15 | #include <linux/dma-mapping.h> | ||
| 16 | #include <linux/dmaengine.h> | ||
| 17 | |||
| 18 | /** | ||
| 19 | * struct xilinx_vdma_config - VDMA Configuration structure | ||
| 20 | * @frm_dly: Frame delay | ||
| 21 | * @gen_lock: Whether in gen-lock mode | ||
| 22 | * @master: Master that it syncs to | ||
| 23 | * @frm_cnt_en: Enable frame count enable | ||
| 24 | * @park: Whether wants to park | ||
| 25 | * @park_frm: Frame to park on | ||
| 26 | * @coalesc: Interrupt coalescing threshold | ||
| 27 | * @delay: Delay counter | ||
| 28 | * @reset: Reset Channel | ||
| 29 | * @ext_fsync: External Frame Sync source | ||
| 30 | */ | ||
| 31 | struct xilinx_vdma_config { | ||
| 32 | int frm_dly; | ||
| 33 | int gen_lock; | ||
| 34 | int master; | ||
| 35 | int frm_cnt_en; | ||
| 36 | int park; | ||
| 37 | int park_frm; | ||
| 38 | int coalesc; | ||
| 39 | int delay; | ||
| 40 | int reset; | ||
| 41 | int ext_fsync; | ||
| 42 | }; | ||
| 43 | |||
| 44 | int xilinx_vdma_channel_set_config(struct dma_chan *dchan, | ||
| 45 | struct xilinx_vdma_config *cfg); | ||
| 46 | |||
| 47 | #endif | ||
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h index c15128833100..a002cf191427 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h | |||
| @@ -135,7 +135,7 @@ enum { | |||
| 135 | BLK_MQ_S_STOPPED = 0, | 135 | BLK_MQ_S_STOPPED = 0, |
| 136 | BLK_MQ_S_TAG_ACTIVE = 1, | 136 | BLK_MQ_S_TAG_ACTIVE = 1, |
| 137 | 137 | ||
| 138 | BLK_MQ_MAX_DEPTH = 2048, | 138 | BLK_MQ_MAX_DEPTH = 10240, |
| 139 | 139 | ||
| 140 | BLK_MQ_CPU_WORK_BATCH = 8, | 140 | BLK_MQ_CPU_WORK_BATCH = 8, |
| 141 | }; | 141 | }; |
| @@ -155,7 +155,7 @@ void blk_mq_free_request(struct request *rq); | |||
| 155 | bool blk_mq_can_queue(struct blk_mq_hw_ctx *); | 155 | bool blk_mq_can_queue(struct blk_mq_hw_ctx *); |
| 156 | struct request *blk_mq_alloc_request(struct request_queue *q, int rw, | 156 | struct request *blk_mq_alloc_request(struct request_queue *q, int rw, |
| 157 | gfp_t gfp, bool reserved); | 157 | gfp_t gfp, bool reserved); |
| 158 | struct request *blk_mq_tag_to_rq(struct blk_mq_hw_ctx *hctx, unsigned int tag); | 158 | struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag); |
| 159 | 159 | ||
| 160 | struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *, const int ctx_index); | 160 | struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *, const int ctx_index); |
| 161 | struct blk_mq_hw_ctx *blk_mq_alloc_single_hw_queue(struct blk_mq_tag_set *, unsigned int, int); | 161 | struct blk_mq_hw_ctx *blk_mq_alloc_single_hw_queue(struct blk_mq_tag_set *, unsigned int, int); |
diff --git a/include/linux/blk_types.h b/include/linux/blk_types.h index d8e4cea23a25..66c2167f04a9 100644 --- a/include/linux/blk_types.h +++ b/include/linux/blk_types.h | |||
| @@ -5,8 +5,6 @@ | |||
| 5 | #ifndef __LINUX_BLK_TYPES_H | 5 | #ifndef __LINUX_BLK_TYPES_H |
| 6 | #define __LINUX_BLK_TYPES_H | 6 | #define __LINUX_BLK_TYPES_H |
| 7 | 7 | ||
| 8 | #ifdef CONFIG_BLOCK | ||
| 9 | |||
| 10 | #include <linux/types.h> | 8 | #include <linux/types.h> |
| 11 | 9 | ||
| 12 | struct bio_set; | 10 | struct bio_set; |
| @@ -28,6 +26,8 @@ struct bio_vec { | |||
| 28 | unsigned int bv_offset; | 26 | unsigned int bv_offset; |
| 29 | }; | 27 | }; |
| 30 | 28 | ||
| 29 | #ifdef CONFIG_BLOCK | ||
| 30 | |||
| 31 | struct bvec_iter { | 31 | struct bvec_iter { |
| 32 | sector_t bi_sector; /* device address in 512 byte | 32 | sector_t bi_sector; /* device address in 512 byte |
| 33 | sectors */ | 33 | sectors */ |
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 8aba35f46f87..31e11051f1ba 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
| @@ -280,6 +280,7 @@ struct queue_limits { | |||
| 280 | unsigned long seg_boundary_mask; | 280 | unsigned long seg_boundary_mask; |
| 281 | 281 | ||
| 282 | unsigned int max_hw_sectors; | 282 | unsigned int max_hw_sectors; |
| 283 | unsigned int chunk_sectors; | ||
| 283 | unsigned int max_sectors; | 284 | unsigned int max_sectors; |
| 284 | unsigned int max_segment_size; | 285 | unsigned int max_segment_size; |
| 285 | unsigned int physical_block_size; | 286 | unsigned int physical_block_size; |
| @@ -335,7 +336,7 @@ struct request_queue { | |||
| 335 | unsigned int *mq_map; | 336 | unsigned int *mq_map; |
| 336 | 337 | ||
| 337 | /* sw queues */ | 338 | /* sw queues */ |
| 338 | struct blk_mq_ctx *queue_ctx; | 339 | struct blk_mq_ctx __percpu *queue_ctx; |
| 339 | unsigned int nr_queues; | 340 | unsigned int nr_queues; |
| 340 | 341 | ||
| 341 | /* hw dispatch queues */ | 342 | /* hw dispatch queues */ |
| @@ -795,6 +796,7 @@ extern void __blk_put_request(struct request_queue *, struct request *); | |||
| 795 | extern struct request *blk_get_request(struct request_queue *, int, gfp_t); | 796 | extern struct request *blk_get_request(struct request_queue *, int, gfp_t); |
| 796 | extern struct request *blk_make_request(struct request_queue *, struct bio *, | 797 | extern struct request *blk_make_request(struct request_queue *, struct bio *, |
| 797 | gfp_t); | 798 | gfp_t); |
| 799 | extern void blk_rq_set_block_pc(struct request *); | ||
| 798 | extern void blk_requeue_request(struct request_queue *, struct request *); | 800 | extern void blk_requeue_request(struct request_queue *, struct request *); |
| 799 | extern void blk_add_request_payload(struct request *rq, struct page *page, | 801 | extern void blk_add_request_payload(struct request *rq, struct page *page, |
| 800 | unsigned int len); | 802 | unsigned int len); |
| @@ -910,6 +912,20 @@ static inline unsigned int blk_queue_get_max_sectors(struct request_queue *q, | |||
| 910 | return q->limits.max_sectors; | 912 | return q->limits.max_sectors; |
| 911 | } | 913 | } |
| 912 | 914 | ||
| 915 | /* | ||
| 916 | * Return maximum size of a request at given offset. Only valid for | ||
| 917 | * file system requests. | ||
| 918 | */ | ||
| 919 | static inline unsigned int blk_max_size_offset(struct request_queue *q, | ||
| 920 | sector_t offset) | ||
| 921 | { | ||
| 922 | if (!q->limits.chunk_sectors) | ||
| 923 | return q->limits.max_hw_sectors; | ||
| 924 | |||
| 925 | return q->limits.chunk_sectors - | ||
| 926 | (offset & (q->limits.chunk_sectors - 1)); | ||
| 927 | } | ||
| 928 | |||
| 913 | static inline unsigned int blk_rq_get_max_sectors(struct request *rq) | 929 | static inline unsigned int blk_rq_get_max_sectors(struct request *rq) |
| 914 | { | 930 | { |
| 915 | struct request_queue *q = rq->q; | 931 | struct request_queue *q = rq->q; |
| @@ -917,7 +933,11 @@ static inline unsigned int blk_rq_get_max_sectors(struct request *rq) | |||
| 917 | if (unlikely(rq->cmd_type == REQ_TYPE_BLOCK_PC)) | 933 | if (unlikely(rq->cmd_type == REQ_TYPE_BLOCK_PC)) |
| 918 | return q->limits.max_hw_sectors; | 934 | return q->limits.max_hw_sectors; |
| 919 | 935 | ||
| 920 | return blk_queue_get_max_sectors(q, rq->cmd_flags); | 936 | if (!q->limits.chunk_sectors) |
| 937 | return blk_queue_get_max_sectors(q, rq->cmd_flags); | ||
| 938 | |||
| 939 | return min(blk_max_size_offset(q, blk_rq_pos(rq)), | ||
| 940 | blk_queue_get_max_sectors(q, rq->cmd_flags)); | ||
| 921 | } | 941 | } |
| 922 | 942 | ||
| 923 | static inline unsigned int blk_rq_count_bios(struct request *rq) | 943 | static inline unsigned int blk_rq_count_bios(struct request *rq) |
| @@ -983,6 +1003,7 @@ extern void blk_queue_make_request(struct request_queue *, make_request_fn *); | |||
| 983 | extern void blk_queue_bounce_limit(struct request_queue *, u64); | 1003 | extern void blk_queue_bounce_limit(struct request_queue *, u64); |
| 984 | extern void blk_limits_max_hw_sectors(struct queue_limits *, unsigned int); | 1004 | extern void blk_limits_max_hw_sectors(struct queue_limits *, unsigned int); |
| 985 | extern void blk_queue_max_hw_sectors(struct request_queue *, unsigned int); | 1005 | extern void blk_queue_max_hw_sectors(struct request_queue *, unsigned int); |
| 1006 | extern void blk_queue_chunk_sectors(struct request_queue *, unsigned int); | ||
| 986 | extern void blk_queue_max_segments(struct request_queue *, unsigned short); | 1007 | extern void blk_queue_max_segments(struct request_queue *, unsigned short); |
| 987 | extern void blk_queue_max_segment_size(struct request_queue *, unsigned int); | 1008 | extern void blk_queue_max_segment_size(struct request_queue *, unsigned int); |
| 988 | extern void blk_queue_max_discard_sectors(struct request_queue *q, | 1009 | extern void blk_queue_max_discard_sectors(struct request_queue *q, |
| @@ -1588,6 +1609,7 @@ static inline bool blk_integrity_is_initialized(struct gendisk *g) | |||
| 1588 | struct block_device_operations { | 1609 | struct block_device_operations { |
| 1589 | int (*open) (struct block_device *, fmode_t); | 1610 | int (*open) (struct block_device *, fmode_t); |
| 1590 | void (*release) (struct gendisk *, fmode_t); | 1611 | void (*release) (struct gendisk *, fmode_t); |
| 1612 | int (*rw_page)(struct block_device *, sector_t, struct page *, int rw); | ||
| 1591 | int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); | 1613 | int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); |
| 1592 | int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); | 1614 | int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); |
| 1593 | int (*direct_access) (struct block_device *, sector_t, | 1615 | int (*direct_access) (struct block_device *, sector_t, |
| @@ -1606,7 +1628,13 @@ struct block_device_operations { | |||
| 1606 | 1628 | ||
| 1607 | extern int __blkdev_driver_ioctl(struct block_device *, fmode_t, unsigned int, | 1629 | extern int __blkdev_driver_ioctl(struct block_device *, fmode_t, unsigned int, |
| 1608 | unsigned long); | 1630 | unsigned long); |
| 1631 | extern int bdev_read_page(struct block_device *, sector_t, struct page *); | ||
| 1632 | extern int bdev_write_page(struct block_device *, sector_t, struct page *, | ||
| 1633 | struct writeback_control *); | ||
| 1609 | #else /* CONFIG_BLOCK */ | 1634 | #else /* CONFIG_BLOCK */ |
| 1635 | |||
| 1636 | struct block_device; | ||
| 1637 | |||
| 1610 | /* | 1638 | /* |
| 1611 | * stubs for when the block layer is configured out | 1639 | * stubs for when the block layer is configured out |
| 1612 | */ | 1640 | */ |
| @@ -1642,6 +1670,12 @@ static inline bool blk_needs_flush_plug(struct task_struct *tsk) | |||
| 1642 | return false; | 1670 | return false; |
| 1643 | } | 1671 | } |
| 1644 | 1672 | ||
| 1673 | static inline int blkdev_issue_flush(struct block_device *bdev, gfp_t gfp_mask, | ||
| 1674 | sector_t *error_sector) | ||
| 1675 | { | ||
| 1676 | return 0; | ||
| 1677 | } | ||
| 1678 | |||
| 1645 | #endif /* CONFIG_BLOCK */ | 1679 | #endif /* CONFIG_BLOCK */ |
| 1646 | 1680 | ||
| 1647 | #endif | 1681 | #endif |
diff --git a/include/linux/bootmem.h b/include/linux/bootmem.h index db51fe4fe317..4e2bd4c95b66 100644 --- a/include/linux/bootmem.h +++ b/include/linux/bootmem.h | |||
| @@ -58,9 +58,9 @@ extern void free_bootmem_late(unsigned long physaddr, unsigned long size); | |||
| 58 | * Flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE, | 58 | * Flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE, |
| 59 | * the architecture-specific code should honor this). | 59 | * the architecture-specific code should honor this). |
| 60 | * | 60 | * |
| 61 | * If flags is 0, then the return value is always 0 (success). If | 61 | * If flags is BOOTMEM_DEFAULT, then the return value is always 0 (success). |
| 62 | * flags contains BOOTMEM_EXCLUSIVE, then -EBUSY is returned if the | 62 | * If flags contains BOOTMEM_EXCLUSIVE, then -EBUSY is returned if the memory |
| 63 | * memory already was reserved. | 63 | * already was reserved. |
| 64 | */ | 64 | */ |
| 65 | #define BOOTMEM_DEFAULT 0 | 65 | #define BOOTMEM_DEFAULT 0 |
| 66 | #define BOOTMEM_EXCLUSIVE (1<<0) | 66 | #define BOOTMEM_EXCLUSIVE (1<<0) |
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 7cbf837a279c..324329ceea1e 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h | |||
| @@ -207,8 +207,6 @@ void block_invalidatepage(struct page *page, unsigned int offset, | |||
| 207 | unsigned int length); | 207 | unsigned int length); |
| 208 | int block_write_full_page(struct page *page, get_block_t *get_block, | 208 | int block_write_full_page(struct page *page, get_block_t *get_block, |
| 209 | struct writeback_control *wbc); | 209 | struct writeback_control *wbc); |
| 210 | int block_write_full_page_endio(struct page *page, get_block_t *get_block, | ||
| 211 | struct writeback_control *wbc, bh_end_io_t *handler); | ||
| 212 | int block_read_full_page(struct page*, get_block_t*); | 210 | int block_read_full_page(struct page*, get_block_t*); |
| 213 | int block_is_partially_uptodate(struct page *page, unsigned long from, | 211 | int block_is_partially_uptodate(struct page *page, unsigned long from, |
| 214 | unsigned long count); | 212 | unsigned long count); |
diff --git a/include/linux/capability.h b/include/linux/capability.h index a6ee1f9a5018..84b13ad67c1c 100644 --- a/include/linux/capability.h +++ b/include/linux/capability.h | |||
| @@ -210,7 +210,7 @@ extern bool has_ns_capability_noaudit(struct task_struct *t, | |||
| 210 | struct user_namespace *ns, int cap); | 210 | struct user_namespace *ns, int cap); |
| 211 | extern bool capable(int cap); | 211 | extern bool capable(int cap); |
| 212 | extern bool ns_capable(struct user_namespace *ns, int cap); | 212 | extern bool ns_capable(struct user_namespace *ns, int cap); |
| 213 | extern bool inode_capable(const struct inode *inode, int cap); | 213 | extern bool capable_wrt_inode_uidgid(const struct inode *inode, int cap); |
| 214 | extern bool file_ns_capable(const struct file *file, struct user_namespace *ns, int cap); | 214 | extern bool file_ns_capable(const struct file *file, struct user_namespace *ns, int cap); |
| 215 | 215 | ||
| 216 | /* audit system wants to get cap info from files as well */ | 216 | /* audit system wants to get cap info from files as well */ |
diff --git a/include/linux/ceph/libceph.h b/include/linux/ceph/libceph.h index 2f49aa4c4f7f..279b0afac1c1 100644 --- a/include/linux/ceph/libceph.h +++ b/include/linux/ceph/libceph.h | |||
| @@ -222,8 +222,6 @@ extern void ceph_copy_to_page_vector(struct page **pages, | |||
| 222 | extern void ceph_copy_from_page_vector(struct page **pages, | 222 | extern void ceph_copy_from_page_vector(struct page **pages, |
| 223 | void *data, | 223 | void *data, |
| 224 | loff_t off, size_t len); | 224 | loff_t off, size_t len); |
| 225 | extern int ceph_copy_page_vector_to_user(struct page **pages, void __user *data, | ||
| 226 | loff_t off, size_t len); | ||
| 227 | extern void ceph_zero_page_vector_range(int off, int len, struct page **pages); | 225 | extern void ceph_zero_page_vector_range(int off, int len, struct page **pages); |
| 228 | 226 | ||
| 229 | 227 | ||
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index d60904b9e505..8a111dd42d7a 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | #include <linux/percpu-refcount.h> | 21 | #include <linux/percpu-refcount.h> |
| 22 | #include <linux/seq_file.h> | 22 | #include <linux/seq_file.h> |
| 23 | #include <linux/kernfs.h> | 23 | #include <linux/kernfs.h> |
| 24 | #include <linux/wait.h> | ||
| 24 | 25 | ||
| 25 | #ifdef CONFIG_CGROUPS | 26 | #ifdef CONFIG_CGROUPS |
| 26 | 27 | ||
| @@ -47,21 +48,45 @@ enum cgroup_subsys_id { | |||
| 47 | }; | 48 | }; |
| 48 | #undef SUBSYS | 49 | #undef SUBSYS |
| 49 | 50 | ||
| 50 | /* Per-subsystem/per-cgroup state maintained by the system. */ | 51 | /* |
| 52 | * Per-subsystem/per-cgroup state maintained by the system. This is the | ||
| 53 | * fundamental structural building block that controllers deal with. | ||
| 54 | * | ||
| 55 | * Fields marked with "PI:" are public and immutable and may be accessed | ||
| 56 | * directly without synchronization. | ||
| 57 | */ | ||
| 51 | struct cgroup_subsys_state { | 58 | struct cgroup_subsys_state { |
| 52 | /* the cgroup that this css is attached to */ | 59 | /* PI: the cgroup that this css is attached to */ |
| 53 | struct cgroup *cgroup; | 60 | struct cgroup *cgroup; |
| 54 | 61 | ||
| 55 | /* the cgroup subsystem that this css is attached to */ | 62 | /* PI: the cgroup subsystem that this css is attached to */ |
| 56 | struct cgroup_subsys *ss; | 63 | struct cgroup_subsys *ss; |
| 57 | 64 | ||
| 58 | /* reference count - access via css_[try]get() and css_put() */ | 65 | /* reference count - access via css_[try]get() and css_put() */ |
| 59 | struct percpu_ref refcnt; | 66 | struct percpu_ref refcnt; |
| 60 | 67 | ||
| 61 | /* the parent css */ | 68 | /* PI: the parent css */ |
| 62 | struct cgroup_subsys_state *parent; | 69 | struct cgroup_subsys_state *parent; |
| 63 | 70 | ||
| 64 | unsigned long flags; | 71 | /* siblings list anchored at the parent's ->children */ |
| 72 | struct list_head sibling; | ||
| 73 | struct list_head children; | ||
| 74 | |||
| 75 | /* | ||
| 76 | * PI: Subsys-unique ID. 0 is unused and root is always 1. The | ||
| 77 | * matching css can be looked up using css_from_id(). | ||
| 78 | */ | ||
| 79 | int id; | ||
| 80 | |||
| 81 | unsigned int flags; | ||
| 82 | |||
| 83 | /* | ||
| 84 | * Monotonically increasing unique serial number which defines a | ||
| 85 | * uniform order among all csses. It's guaranteed that all | ||
| 86 | * ->children lists are in the ascending order of ->serial_nr and | ||
| 87 | * used to allow interrupting and resuming iterations. | ||
| 88 | */ | ||
| 89 | u64 serial_nr; | ||
| 65 | 90 | ||
| 66 | /* percpu_ref killing and RCU release */ | 91 | /* percpu_ref killing and RCU release */ |
| 67 | struct rcu_head rcu_head; | 92 | struct rcu_head rcu_head; |
| @@ -70,8 +95,9 @@ struct cgroup_subsys_state { | |||
| 70 | 95 | ||
| 71 | /* bits in struct cgroup_subsys_state flags field */ | 96 | /* bits in struct cgroup_subsys_state flags field */ |
| 72 | enum { | 97 | enum { |
| 73 | CSS_ROOT = (1 << 0), /* this CSS is the root of the subsystem */ | 98 | CSS_NO_REF = (1 << 0), /* no reference counting for this css */ |
| 74 | CSS_ONLINE = (1 << 1), /* between ->css_online() and ->css_offline() */ | 99 | CSS_ONLINE = (1 << 1), /* between ->css_online() and ->css_offline() */ |
| 100 | CSS_RELEASED = (1 << 2), /* refcnt reached zero, released */ | ||
| 75 | }; | 101 | }; |
| 76 | 102 | ||
| 77 | /** | 103 | /** |
| @@ -82,8 +108,7 @@ enum { | |||
| 82 | */ | 108 | */ |
| 83 | static inline void css_get(struct cgroup_subsys_state *css) | 109 | static inline void css_get(struct cgroup_subsys_state *css) |
| 84 | { | 110 | { |
| 85 | /* We don't need to reference count the root state */ | 111 | if (!(css->flags & CSS_NO_REF)) |
| 86 | if (!(css->flags & CSS_ROOT)) | ||
| 87 | percpu_ref_get(&css->refcnt); | 112 | percpu_ref_get(&css->refcnt); |
| 88 | } | 113 | } |
| 89 | 114 | ||
| @@ -91,35 +116,51 @@ static inline void css_get(struct cgroup_subsys_state *css) | |||
| 91 | * css_tryget - try to obtain a reference on the specified css | 116 | * css_tryget - try to obtain a reference on the specified css |
| 92 | * @css: target css | 117 | * @css: target css |
| 93 | * | 118 | * |
| 94 | * Obtain a reference on @css if it's alive. The caller naturally needs to | 119 | * Obtain a reference on @css unless it already has reached zero and is |
| 95 | * ensure that @css is accessible but doesn't have to be holding a | 120 | * being released. This function doesn't care whether @css is on or |
| 121 | * offline. The caller naturally needs to ensure that @css is accessible | ||
| 122 | * but doesn't have to be holding a reference on it - IOW, RCU protected | ||
| 123 | * access is good enough for this function. Returns %true if a reference | ||
| 124 | * count was successfully obtained; %false otherwise. | ||
| 125 | */ | ||
| 126 | static inline bool css_tryget(struct cgroup_subsys_state *css) | ||
| 127 | { | ||
| 128 | if (!(css->flags & CSS_NO_REF)) | ||
| 129 | return percpu_ref_tryget(&css->refcnt); | ||
| 130 | return true; | ||
| 131 | } | ||
| 132 | |||
| 133 | /** | ||
| 134 | * css_tryget_online - try to obtain a reference on the specified css if online | ||
| 135 | * @css: target css | ||
| 136 | * | ||
| 137 | * Obtain a reference on @css if it's online. The caller naturally needs | ||
| 138 | * to ensure that @css is accessible but doesn't have to be holding a | ||
| 96 | * reference on it - IOW, RCU protected access is good enough for this | 139 | * reference on it - IOW, RCU protected access is good enough for this |
| 97 | * function. Returns %true if a reference count was successfully obtained; | 140 | * function. Returns %true if a reference count was successfully obtained; |
| 98 | * %false otherwise. | 141 | * %false otherwise. |
| 99 | */ | 142 | */ |
| 100 | static inline bool css_tryget(struct cgroup_subsys_state *css) | 143 | static inline bool css_tryget_online(struct cgroup_subsys_state *css) |
| 101 | { | 144 | { |
| 102 | if (css->flags & CSS_ROOT) | 145 | if (!(css->flags & CSS_NO_REF)) |
| 103 | return true; | 146 | return percpu_ref_tryget_live(&css->refcnt); |
| 104 | return percpu_ref_tryget(&css->refcnt); | 147 | return true; |
| 105 | } | 148 | } |
| 106 | 149 | ||
| 107 | /** | 150 | /** |
| 108 | * css_put - put a css reference | 151 | * css_put - put a css reference |
| 109 | * @css: target css | 152 | * @css: target css |
| 110 | * | 153 | * |
| 111 | * Put a reference obtained via css_get() and css_tryget(). | 154 | * Put a reference obtained via css_get() and css_tryget_online(). |
| 112 | */ | 155 | */ |
| 113 | static inline void css_put(struct cgroup_subsys_state *css) | 156 | static inline void css_put(struct cgroup_subsys_state *css) |
| 114 | { | 157 | { |
| 115 | if (!(css->flags & CSS_ROOT)) | 158 | if (!(css->flags & CSS_NO_REF)) |
| 116 | percpu_ref_put(&css->refcnt); | 159 | percpu_ref_put(&css->refcnt); |
| 117 | } | 160 | } |
| 118 | 161 | ||
| 119 | /* bits in struct cgroup flags field */ | 162 | /* bits in struct cgroup flags field */ |
| 120 | enum { | 163 | enum { |
| 121 | /* Control Group is dead */ | ||
| 122 | CGRP_DEAD, | ||
| 123 | /* | 164 | /* |
| 124 | * Control Group has previously had a child cgroup or a task, | 165 | * Control Group has previously had a child cgroup or a task, |
| 125 | * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set) | 166 | * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set) |
| @@ -133,48 +174,37 @@ enum { | |||
| 133 | * specified at mount time and thus is implemented here. | 174 | * specified at mount time and thus is implemented here. |
| 134 | */ | 175 | */ |
| 135 | CGRP_CPUSET_CLONE_CHILDREN, | 176 | CGRP_CPUSET_CLONE_CHILDREN, |
| 136 | /* see the comment above CGRP_ROOT_SANE_BEHAVIOR for details */ | ||
| 137 | CGRP_SANE_BEHAVIOR, | ||
| 138 | }; | 177 | }; |
| 139 | 178 | ||
| 140 | struct cgroup { | 179 | struct cgroup { |
| 180 | /* self css with NULL ->ss, points back to this cgroup */ | ||
| 181 | struct cgroup_subsys_state self; | ||
| 182 | |||
| 141 | unsigned long flags; /* "unsigned long" so bitops work */ | 183 | unsigned long flags; /* "unsigned long" so bitops work */ |
| 142 | 184 | ||
| 143 | /* | 185 | /* |
| 144 | * idr allocated in-hierarchy ID. | 186 | * idr allocated in-hierarchy ID. |
| 145 | * | 187 | * |
| 146 | * The ID of the root cgroup is always 0, and a new cgroup | 188 | * ID 0 is not used, the ID of the root cgroup is always 1, and a |
| 147 | * will be assigned with a smallest available ID. | 189 | * new cgroup will be assigned with a smallest available ID. |
| 148 | * | 190 | * |
| 149 | * Allocating/Removing ID must be protected by cgroup_mutex. | 191 | * Allocating/Removing ID must be protected by cgroup_mutex. |
| 150 | */ | 192 | */ |
| 151 | int id; | 193 | int id; |
| 152 | 194 | ||
| 153 | /* the number of attached css's */ | ||
| 154 | int nr_css; | ||
| 155 | |||
| 156 | atomic_t refcnt; | ||
| 157 | |||
| 158 | /* | 195 | /* |
| 159 | * We link our 'sibling' struct into our parent's 'children'. | 196 | * If this cgroup contains any tasks, it contributes one to |
| 160 | * Our children link their 'sibling' into our 'children'. | 197 | * populated_cnt. All children with non-zero popuplated_cnt of |
| 198 | * their own contribute one. The count is zero iff there's no task | ||
| 199 | * in this cgroup or its subtree. | ||
| 161 | */ | 200 | */ |
| 162 | struct list_head sibling; /* my parent's children */ | 201 | int populated_cnt; |
| 163 | struct list_head children; /* my children */ | ||
| 164 | 202 | ||
| 165 | struct cgroup *parent; /* my parent */ | ||
| 166 | struct kernfs_node *kn; /* cgroup kernfs entry */ | 203 | struct kernfs_node *kn; /* cgroup kernfs entry */ |
| 204 | struct kernfs_node *populated_kn; /* kn for "cgroup.subtree_populated" */ | ||
| 167 | 205 | ||
| 168 | /* | 206 | /* the bitmask of subsystems enabled on the child cgroups */ |
| 169 | * Monotonically increasing unique serial number which defines a | 207 | unsigned int child_subsys_mask; |
| 170 | * uniform order among all cgroups. It's guaranteed that all | ||
| 171 | * ->children lists are in the ascending order of ->serial_nr. | ||
| 172 | * It's used to allow interrupting and resuming iterations. | ||
| 173 | */ | ||
| 174 | u64 serial_nr; | ||
| 175 | |||
| 176 | /* The bitmask of subsystems attached to this cgroup */ | ||
| 177 | unsigned long subsys_mask; | ||
| 178 | 208 | ||
| 179 | /* Private pointers for each registered subsystem */ | 209 | /* Private pointers for each registered subsystem */ |
| 180 | struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT]; | 210 | struct cgroup_subsys_state __rcu *subsys[CGROUP_SUBSYS_COUNT]; |
| @@ -188,6 +218,15 @@ struct cgroup { | |||
| 188 | struct list_head cset_links; | 218 | struct list_head cset_links; |
| 189 | 219 | ||
| 190 | /* | 220 | /* |
| 221 | * On the default hierarchy, a css_set for a cgroup with some | ||
| 222 | * susbsys disabled will point to css's which are associated with | ||
| 223 | * the closest ancestor which has the subsys enabled. The | ||
| 224 | * following lists all css_sets which point to this cgroup's css | ||
| 225 | * for the given subsystem. | ||
| 226 | */ | ||
| 227 | struct list_head e_csets[CGROUP_SUBSYS_COUNT]; | ||
| 228 | |||
| 229 | /* | ||
| 191 | * Linked list running through all cgroups that can | 230 | * Linked list running through all cgroups that can |
| 192 | * potentially be reaped by the release agent. Protected by | 231 | * potentially be reaped by the release agent. Protected by |
| 193 | * release_list_lock | 232 | * release_list_lock |
| @@ -201,12 +240,8 @@ struct cgroup { | |||
| 201 | struct list_head pidlists; | 240 | struct list_head pidlists; |
| 202 | struct mutex pidlist_mutex; | 241 | struct mutex pidlist_mutex; |
| 203 | 242 | ||
| 204 | /* dummy css with NULL ->ss, points back to this cgroup */ | 243 | /* used to wait for offlining of csses */ |
| 205 | struct cgroup_subsys_state dummy_css; | 244 | wait_queue_head_t offline_waitq; |
| 206 | |||
| 207 | /* For css percpu_ref killing and RCU-protected deletion */ | ||
| 208 | struct rcu_head rcu_head; | ||
| 209 | struct work_struct destroy_work; | ||
| 210 | }; | 245 | }; |
| 211 | 246 | ||
| 212 | #define MAX_CGROUP_ROOT_NAMELEN 64 | 247 | #define MAX_CGROUP_ROOT_NAMELEN 64 |
| @@ -250,6 +285,12 @@ enum { | |||
| 250 | * | 285 | * |
| 251 | * - "cgroup.clone_children" is removed. | 286 | * - "cgroup.clone_children" is removed. |
| 252 | * | 287 | * |
| 288 | * - "cgroup.subtree_populated" is available. Its value is 0 if | ||
| 289 | * the cgroup and its descendants contain no task; otherwise, 1. | ||
| 290 | * The file also generates kernfs notification which can be | ||
| 291 | * monitored through poll and [di]notify when the value of the | ||
| 292 | * file changes. | ||
| 293 | * | ||
| 253 | * - If mount is requested with sane_behavior but without any | 294 | * - If mount is requested with sane_behavior but without any |
| 254 | * subsystem, the default unified hierarchy is mounted. | 295 | * subsystem, the default unified hierarchy is mounted. |
| 255 | * | 296 | * |
| @@ -264,6 +305,8 @@ enum { | |||
| 264 | * the flag is not created. | 305 | * the flag is not created. |
| 265 | * | 306 | * |
| 266 | * - blkcg: blk-throttle becomes properly hierarchical. | 307 | * - blkcg: blk-throttle becomes properly hierarchical. |
| 308 | * | ||
| 309 | * - debug: disallowed on the default hierarchy. | ||
| 267 | */ | 310 | */ |
| 268 | CGRP_ROOT_SANE_BEHAVIOR = (1 << 0), | 311 | CGRP_ROOT_SANE_BEHAVIOR = (1 << 0), |
| 269 | 312 | ||
| @@ -282,6 +325,9 @@ enum { | |||
| 282 | struct cgroup_root { | 325 | struct cgroup_root { |
| 283 | struct kernfs_root *kf_root; | 326 | struct kernfs_root *kf_root; |
| 284 | 327 | ||
| 328 | /* The bitmask of subsystems attached to this hierarchy */ | ||
| 329 | unsigned int subsys_mask; | ||
| 330 | |||
| 285 | /* Unique id for this hierarchy. */ | 331 | /* Unique id for this hierarchy. */ |
| 286 | int hierarchy_id; | 332 | int hierarchy_id; |
| 287 | 333 | ||
| @@ -295,7 +341,7 @@ struct cgroup_root { | |||
| 295 | struct list_head root_list; | 341 | struct list_head root_list; |
| 296 | 342 | ||
| 297 | /* Hierarchy-specific flags */ | 343 | /* Hierarchy-specific flags */ |
| 298 | unsigned long flags; | 344 | unsigned int flags; |
| 299 | 345 | ||
| 300 | /* IDs for cgroups in this hierarchy */ | 346 | /* IDs for cgroups in this hierarchy */ |
| 301 | struct idr cgroup_idr; | 347 | struct idr cgroup_idr; |
| @@ -342,6 +388,9 @@ struct css_set { | |||
| 342 | */ | 388 | */ |
| 343 | struct list_head cgrp_links; | 389 | struct list_head cgrp_links; |
| 344 | 390 | ||
| 391 | /* the default cgroup associated with this css_set */ | ||
| 392 | struct cgroup *dfl_cgrp; | ||
| 393 | |||
| 345 | /* | 394 | /* |
| 346 | * Set of subsystem states, one for each subsystem. This array is | 395 | * Set of subsystem states, one for each subsystem. This array is |
| 347 | * immutable after creation apart from the init_css_set during | 396 | * immutable after creation apart from the init_css_set during |
| @@ -366,6 +415,15 @@ struct css_set { | |||
| 366 | struct cgroup *mg_src_cgrp; | 415 | struct cgroup *mg_src_cgrp; |
| 367 | struct css_set *mg_dst_cset; | 416 | struct css_set *mg_dst_cset; |
| 368 | 417 | ||
| 418 | /* | ||
| 419 | * On the default hierarhcy, ->subsys[ssid] may point to a css | ||
| 420 | * attached to an ancestor instead of the cgroup this css_set is | ||
| 421 | * associated with. The following node is anchored at | ||
| 422 | * ->subsys[ssid]->cgroup->e_csets[ssid] and provides a way to | ||
| 423 | * iterate through all css's attached to a given cgroup. | ||
| 424 | */ | ||
| 425 | struct list_head e_cset_node[CGROUP_SUBSYS_COUNT]; | ||
| 426 | |||
| 369 | /* For RCU-protected deletion */ | 427 | /* For RCU-protected deletion */ |
| 370 | struct rcu_head rcu_head; | 428 | struct rcu_head rcu_head; |
| 371 | }; | 429 | }; |
| @@ -405,8 +463,7 @@ struct cftype { | |||
| 405 | 463 | ||
| 406 | /* | 464 | /* |
| 407 | * The maximum length of string, excluding trailing nul, that can | 465 | * The maximum length of string, excluding trailing nul, that can |
| 408 | * be passed to write_string. If < PAGE_SIZE-1, PAGE_SIZE-1 is | 466 | * be passed to write. If < PAGE_SIZE-1, PAGE_SIZE-1 is assumed. |
| 409 | * assumed. | ||
| 410 | */ | 467 | */ |
| 411 | size_t max_write_len; | 468 | size_t max_write_len; |
| 412 | 469 | ||
| @@ -453,19 +510,13 @@ struct cftype { | |||
| 453 | s64 val); | 510 | s64 val); |
| 454 | 511 | ||
| 455 | /* | 512 | /* |
| 456 | * write_string() is passed a nul-terminated kernelspace | 513 | * write() is the generic write callback which maps directly to |
| 457 | * buffer of maximum length determined by max_write_len. | 514 | * kernfs write operation and overrides all other operations. |
| 458 | * Returns 0 or -ve error code. | 515 | * Maximum write size is determined by ->max_write_len. Use |
| 459 | */ | 516 | * of_css/cft() to access the associated css and cft. |
| 460 | int (*write_string)(struct cgroup_subsys_state *css, struct cftype *cft, | ||
| 461 | char *buffer); | ||
| 462 | /* | ||
| 463 | * trigger() callback can be used to get some kick from the | ||
| 464 | * userspace, when the actual string written is not important | ||
| 465 | * at all. The private field can be used to determine the | ||
| 466 | * kick type for multiplexing. | ||
| 467 | */ | 517 | */ |
| 468 | int (*trigger)(struct cgroup_subsys_state *css, unsigned int event); | 518 | ssize_t (*write)(struct kernfs_open_file *of, |
| 519 | char *buf, size_t nbytes, loff_t off); | ||
| 469 | 520 | ||
| 470 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 521 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 471 | struct lock_class_key lockdep_key; | 522 | struct lock_class_key lockdep_key; |
| @@ -504,14 +555,24 @@ static inline ino_t cgroup_ino(struct cgroup *cgrp) | |||
| 504 | return 0; | 555 | return 0; |
| 505 | } | 556 | } |
| 506 | 557 | ||
| 507 | static inline struct cftype *seq_cft(struct seq_file *seq) | 558 | /* cft/css accessors for cftype->write() operation */ |
| 559 | static inline struct cftype *of_cft(struct kernfs_open_file *of) | ||
| 508 | { | 560 | { |
| 509 | struct kernfs_open_file *of = seq->private; | ||
| 510 | |||
| 511 | return of->kn->priv; | 561 | return of->kn->priv; |
| 512 | } | 562 | } |
| 513 | 563 | ||
| 514 | struct cgroup_subsys_state *seq_css(struct seq_file *seq); | 564 | struct cgroup_subsys_state *of_css(struct kernfs_open_file *of); |
| 565 | |||
| 566 | /* cft/css accessors for cftype->seq_*() operations */ | ||
| 567 | static inline struct cftype *seq_cft(struct seq_file *seq) | ||
| 568 | { | ||
| 569 | return of_cft(seq->private); | ||
| 570 | } | ||
| 571 | |||
| 572 | static inline struct cgroup_subsys_state *seq_css(struct seq_file *seq) | ||
| 573 | { | ||
| 574 | return of_css(seq->private); | ||
| 575 | } | ||
| 515 | 576 | ||
| 516 | /* | 577 | /* |
| 517 | * Name / path handling functions. All are thin wrappers around the kernfs | 578 | * Name / path handling functions. All are thin wrappers around the kernfs |
| @@ -612,6 +673,9 @@ struct cgroup_subsys { | |||
| 612 | /* link to parent, protected by cgroup_lock() */ | 673 | /* link to parent, protected by cgroup_lock() */ |
| 613 | struct cgroup_root *root; | 674 | struct cgroup_root *root; |
| 614 | 675 | ||
| 676 | /* idr for css->id */ | ||
| 677 | struct idr css_idr; | ||
| 678 | |||
| 615 | /* | 679 | /* |
| 616 | * List of cftypes. Each entry is the first entry of an array | 680 | * List of cftypes. Each entry is the first entry of an array |
| 617 | * terminated by zero length name. | 681 | * terminated by zero length name. |
| @@ -627,19 +691,6 @@ struct cgroup_subsys { | |||
| 627 | #undef SUBSYS | 691 | #undef SUBSYS |
| 628 | 692 | ||
| 629 | /** | 693 | /** |
| 630 | * css_parent - find the parent css | ||
| 631 | * @css: the target cgroup_subsys_state | ||
| 632 | * | ||
| 633 | * Return the parent css of @css. This function is guaranteed to return | ||
| 634 | * non-NULL parent as long as @css isn't the root. | ||
| 635 | */ | ||
| 636 | static inline | ||
| 637 | struct cgroup_subsys_state *css_parent(struct cgroup_subsys_state *css) | ||
| 638 | { | ||
| 639 | return css->parent; | ||
| 640 | } | ||
| 641 | |||
| 642 | /** | ||
| 643 | * task_css_set_check - obtain a task's css_set with extra access conditions | 694 | * task_css_set_check - obtain a task's css_set with extra access conditions |
| 644 | * @task: the task to obtain css_set for | 695 | * @task: the task to obtain css_set for |
| 645 | * @__c: extra condition expression to be passed to rcu_dereference_check() | 696 | * @__c: extra condition expression to be passed to rcu_dereference_check() |
| @@ -731,14 +782,14 @@ struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss); | |||
| 731 | * @pos: the css * to use as the loop cursor | 782 | * @pos: the css * to use as the loop cursor |
| 732 | * @parent: css whose children to walk | 783 | * @parent: css whose children to walk |
| 733 | * | 784 | * |
| 734 | * Walk @parent's children. Must be called under rcu_read_lock(). A child | 785 | * Walk @parent's children. Must be called under rcu_read_lock(). |
| 735 | * css which hasn't finished ->css_online() or already has finished | ||
| 736 | * ->css_offline() may show up during traversal and it's each subsystem's | ||
| 737 | * responsibility to verify that each @pos is alive. | ||
| 738 | * | 786 | * |
| 739 | * If a subsystem synchronizes against the parent in its ->css_online() and | 787 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 740 | * before starting iterating, a css which finished ->css_online() is | 788 | * css which finished ->css_online() is guaranteed to be visible in the |
| 741 | * guaranteed to be visible in the future iterations. | 789 | * future iterations and will stay visible until the last reference is put. |
| 790 | * A css which hasn't finished ->css_online() or already finished | ||
| 791 | * ->css_offline() may show up during traversal. It's each subsystem's | ||
| 792 | * responsibility to synchronize against on/offlining. | ||
| 742 | * | 793 | * |
| 743 | * It is allowed to temporarily drop RCU read lock during iteration. The | 794 | * It is allowed to temporarily drop RCU read lock during iteration. The |
| 744 | * caller is responsible for ensuring that @pos remains accessible until | 795 | * caller is responsible for ensuring that @pos remains accessible until |
| @@ -761,17 +812,16 @@ css_rightmost_descendant(struct cgroup_subsys_state *pos); | |||
| 761 | * @root: css whose descendants to walk | 812 | * @root: css whose descendants to walk |
| 762 | * | 813 | * |
| 763 | * Walk @root's descendants. @root is included in the iteration and the | 814 | * Walk @root's descendants. @root is included in the iteration and the |
| 764 | * first node to be visited. Must be called under rcu_read_lock(). A | 815 | * first node to be visited. Must be called under rcu_read_lock(). |
| 765 | * descendant css which hasn't finished ->css_online() or already has | ||
| 766 | * finished ->css_offline() may show up during traversal and it's each | ||
| 767 | * subsystem's responsibility to verify that each @pos is alive. | ||
| 768 | * | 816 | * |
| 769 | * If a subsystem synchronizes against the parent in its ->css_online() and | 817 | * If a subsystem synchronizes ->css_online() and the start of iteration, a |
| 770 | * before starting iterating, and synchronizes against @pos on each | 818 | * css which finished ->css_online() is guaranteed to be visible in the |
| 771 | * iteration, any descendant css which finished ->css_online() is | 819 | * future iterations and will stay visible until the last reference is put. |
| 772 | * guaranteed to be visible in the future iterations. | 820 | * A css which hasn't finished ->css_online() or already finished |
| 821 | * ->css_offline() may show up during traversal. It's each subsystem's | ||
| 822 | * responsibility to synchronize against on/offlining. | ||
| 773 | * | 823 | * |
| 774 | * In other words, the following guarantees that a descendant can't escape | 824 | * For example, the following guarantees that a descendant can't escape |
| 775 | * state updates of its ancestors. | 825 | * state updates of its ancestors. |
| 776 | * | 826 | * |
| 777 | * my_online(@css) | 827 | * my_online(@css) |
| @@ -827,18 +877,34 @@ css_next_descendant_post(struct cgroup_subsys_state *pos, | |||
| 827 | * | 877 | * |
| 828 | * Similar to css_for_each_descendant_pre() but performs post-order | 878 | * Similar to css_for_each_descendant_pre() but performs post-order |
| 829 | * traversal instead. @root is included in the iteration and the last | 879 | * traversal instead. @root is included in the iteration and the last |
| 830 | * node to be visited. Note that the walk visibility guarantee described | 880 | * node to be visited. |
| 831 | * in pre-order walk doesn't apply the same to post-order walks. | 881 | * |
| 882 | * If a subsystem synchronizes ->css_online() and the start of iteration, a | ||
| 883 | * css which finished ->css_online() is guaranteed to be visible in the | ||
| 884 | * future iterations and will stay visible until the last reference is put. | ||
| 885 | * A css which hasn't finished ->css_online() or already finished | ||
| 886 | * ->css_offline() may show up during traversal. It's each subsystem's | ||
| 887 | * responsibility to synchronize against on/offlining. | ||
| 888 | * | ||
| 889 | * Note that the walk visibility guarantee example described in pre-order | ||
| 890 | * walk doesn't apply the same to post-order walks. | ||
| 832 | */ | 891 | */ |
| 833 | #define css_for_each_descendant_post(pos, css) \ | 892 | #define css_for_each_descendant_post(pos, css) \ |
| 834 | for ((pos) = css_next_descendant_post(NULL, (css)); (pos); \ | 893 | for ((pos) = css_next_descendant_post(NULL, (css)); (pos); \ |
| 835 | (pos) = css_next_descendant_post((pos), (css))) | 894 | (pos) = css_next_descendant_post((pos), (css))) |
| 836 | 895 | ||
| 896 | bool css_has_online_children(struct cgroup_subsys_state *css); | ||
| 897 | |||
| 837 | /* A css_task_iter should be treated as an opaque object */ | 898 | /* A css_task_iter should be treated as an opaque object */ |
| 838 | struct css_task_iter { | 899 | struct css_task_iter { |
| 839 | struct cgroup_subsys_state *origin_css; | 900 | struct cgroup_subsys *ss; |
| 840 | struct list_head *cset_link; | 901 | |
| 841 | struct list_head *task; | 902 | struct list_head *cset_pos; |
| 903 | struct list_head *cset_head; | ||
| 904 | |||
| 905 | struct list_head *task_pos; | ||
| 906 | struct list_head *tasks_head; | ||
| 907 | struct list_head *mg_tasks_head; | ||
| 842 | }; | 908 | }; |
| 843 | 909 | ||
| 844 | void css_task_iter_start(struct cgroup_subsys_state *css, | 910 | void css_task_iter_start(struct cgroup_subsys_state *css, |
| @@ -849,8 +915,8 @@ void css_task_iter_end(struct css_task_iter *it); | |||
| 849 | int cgroup_attach_task_all(struct task_struct *from, struct task_struct *); | 915 | int cgroup_attach_task_all(struct task_struct *from, struct task_struct *); |
| 850 | int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from); | 916 | int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from); |
| 851 | 917 | ||
| 852 | struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry, | 918 | struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry, |
| 853 | struct cgroup_subsys *ss); | 919 | struct cgroup_subsys *ss); |
| 854 | 920 | ||
| 855 | #else /* !CONFIG_CGROUPS */ | 921 | #else /* !CONFIG_CGROUPS */ |
| 856 | 922 | ||
diff --git a/include/linux/cgroup_subsys.h b/include/linux/cgroup_subsys.h index 768fe44e19f0..98c4f9b12b03 100644 --- a/include/linux/cgroup_subsys.h +++ b/include/linux/cgroup_subsys.h | |||
| @@ -7,10 +7,6 @@ | |||
| 7 | SUBSYS(cpuset) | 7 | SUBSYS(cpuset) |
| 8 | #endif | 8 | #endif |
| 9 | 9 | ||
| 10 | #if IS_ENABLED(CONFIG_CGROUP_DEBUG) | ||
| 11 | SUBSYS(debug) | ||
| 12 | #endif | ||
| 13 | |||
| 14 | #if IS_ENABLED(CONFIG_CGROUP_SCHED) | 10 | #if IS_ENABLED(CONFIG_CGROUP_SCHED) |
| 15 | SUBSYS(cpu) | 11 | SUBSYS(cpu) |
| 16 | #endif | 12 | #endif |
| @@ -50,6 +46,13 @@ SUBSYS(net_prio) | |||
| 50 | #if IS_ENABLED(CONFIG_CGROUP_HUGETLB) | 46 | #if IS_ENABLED(CONFIG_CGROUP_HUGETLB) |
| 51 | SUBSYS(hugetlb) | 47 | SUBSYS(hugetlb) |
| 52 | #endif | 48 | #endif |
| 49 | |||
| 50 | /* | ||
| 51 | * The following subsystems are not supported on the default hierarchy. | ||
| 52 | */ | ||
| 53 | #if IS_ENABLED(CONFIG_CGROUP_DEBUG) | ||
| 54 | SUBSYS(debug) | ||
| 55 | #endif | ||
| 53 | /* | 56 | /* |
| 54 | * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS. | 57 | * DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS. |
| 55 | */ | 58 | */ |
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index fb4eca6907cd..0c287dbbb144 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h | |||
| @@ -40,14 +40,14 @@ struct dentry; | |||
| 40 | * through the clk_* api. | 40 | * through the clk_* api. |
| 41 | * | 41 | * |
| 42 | * @prepare: Prepare the clock for enabling. This must not return until | 42 | * @prepare: Prepare the clock for enabling. This must not return until |
| 43 | * the clock is fully prepared, and it's safe to call clk_enable. | 43 | * the clock is fully prepared, and it's safe to call clk_enable. |
| 44 | * This callback is intended to allow clock implementations to | 44 | * This callback is intended to allow clock implementations to |
| 45 | * do any initialisation that may sleep. Called with | 45 | * do any initialisation that may sleep. Called with |
| 46 | * prepare_lock held. | 46 | * prepare_lock held. |
| 47 | * | 47 | * |
| 48 | * @unprepare: Release the clock from its prepared state. This will typically | 48 | * @unprepare: Release the clock from its prepared state. This will typically |
| 49 | * undo any work done in the @prepare callback. Called with | 49 | * undo any work done in the @prepare callback. Called with |
| 50 | * prepare_lock held. | 50 | * prepare_lock held. |
| 51 | * | 51 | * |
| 52 | * @is_prepared: Queries the hardware to determine if the clock is prepared. | 52 | * @is_prepared: Queries the hardware to determine if the clock is prepared. |
| 53 | * This function is allowed to sleep. Optional, if this op is not | 53 | * This function is allowed to sleep. Optional, if this op is not |
| @@ -58,16 +58,16 @@ struct dentry; | |||
| 58 | * Called with prepare mutex held. This function may sleep. | 58 | * Called with prepare mutex held. This function may sleep. |
| 59 | * | 59 | * |
| 60 | * @enable: Enable the clock atomically. This must not return until the | 60 | * @enable: Enable the clock atomically. This must not return until the |
| 61 | * clock is generating a valid clock signal, usable by consumer | 61 | * clock is generating a valid clock signal, usable by consumer |
| 62 | * devices. Called with enable_lock held. This function must not | 62 | * devices. Called with enable_lock held. This function must not |
| 63 | * sleep. | 63 | * sleep. |
| 64 | * | 64 | * |
| 65 | * @disable: Disable the clock atomically. Called with enable_lock held. | 65 | * @disable: Disable the clock atomically. Called with enable_lock held. |
| 66 | * This function must not sleep. | 66 | * This function must not sleep. |
| 67 | * | 67 | * |
| 68 | * @is_enabled: Queries the hardware to determine if the clock is enabled. | 68 | * @is_enabled: Queries the hardware to determine if the clock is enabled. |
| 69 | * This function must not sleep. Optional, if this op is not | 69 | * This function must not sleep. Optional, if this op is not |
| 70 | * set then the enable count will be used. | 70 | * set then the enable count will be used. |
| 71 | * | 71 | * |
| 72 | * @disable_unused: Disable the clock atomically. Only called from | 72 | * @disable_unused: Disable the clock atomically. Only called from |
| 73 | * clk_disable_unused for gate clocks with special needs. | 73 | * clk_disable_unused for gate clocks with special needs. |
| @@ -75,34 +75,35 @@ struct dentry; | |||
| 75 | * sleep. | 75 | * sleep. |
| 76 | * | 76 | * |
| 77 | * @recalc_rate Recalculate the rate of this clock, by querying hardware. The | 77 | * @recalc_rate Recalculate the rate of this clock, by querying hardware. The |
| 78 | * parent rate is an input parameter. It is up to the caller to | 78 | * parent rate is an input parameter. It is up to the caller to |
| 79 | * ensure that the prepare_mutex is held across this call. | 79 | * ensure that the prepare_mutex is held across this call. |
| 80 | * Returns the calculated rate. Optional, but recommended - if | 80 | * Returns the calculated rate. Optional, but recommended - if |
| 81 | * this op is not set then clock rate will be initialized to 0. | 81 | * this op is not set then clock rate will be initialized to 0. |
| 82 | * | 82 | * |
| 83 | * @round_rate: Given a target rate as input, returns the closest rate actually | 83 | * @round_rate: Given a target rate as input, returns the closest rate actually |
| 84 | * supported by the clock. | 84 | * supported by the clock. The parent rate is an input/output |
| 85 | * parameter. | ||
| 85 | * | 86 | * |
| 86 | * @determine_rate: Given a target rate as input, returns the closest rate | 87 | * @determine_rate: Given a target rate as input, returns the closest rate |
| 87 | * actually supported by the clock, and optionally the parent clock | 88 | * actually supported by the clock, and optionally the parent clock |
| 88 | * that should be used to provide the clock rate. | 89 | * that should be used to provide the clock rate. |
| 89 | * | 90 | * |
| 90 | * @get_parent: Queries the hardware to determine the parent of a clock. The | ||
| 91 | * return value is a u8 which specifies the index corresponding to | ||
| 92 | * the parent clock. This index can be applied to either the | ||
| 93 | * .parent_names or .parents arrays. In short, this function | ||
| 94 | * translates the parent value read from hardware into an array | ||
| 95 | * index. Currently only called when the clock is initialized by | ||
| 96 | * __clk_init. This callback is mandatory for clocks with | ||
| 97 | * multiple parents. It is optional (and unnecessary) for clocks | ||
| 98 | * with 0 or 1 parents. | ||
| 99 | * | ||
| 100 | * @set_parent: Change the input source of this clock; for clocks with multiple | 91 | * @set_parent: Change the input source of this clock; for clocks with multiple |
| 101 | * possible parents specify a new parent by passing in the index | 92 | * possible parents specify a new parent by passing in the index |
| 102 | * as a u8 corresponding to the parent in either the .parent_names | 93 | * as a u8 corresponding to the parent in either the .parent_names |
| 103 | * or .parents arrays. This function in affect translates an | 94 | * or .parents arrays. This function in affect translates an |
| 104 | * array index into the value programmed into the hardware. | 95 | * array index into the value programmed into the hardware. |
| 105 | * Returns 0 on success, -EERROR otherwise. | 96 | * Returns 0 on success, -EERROR otherwise. |
| 97 | * | ||
| 98 | * @get_parent: Queries the hardware to determine the parent of a clock. The | ||
| 99 | * return value is a u8 which specifies the index corresponding to | ||
| 100 | * the parent clock. This index can be applied to either the | ||
| 101 | * .parent_names or .parents arrays. In short, this function | ||
| 102 | * translates the parent value read from hardware into an array | ||
| 103 | * index. Currently only called when the clock is initialized by | ||
| 104 | * __clk_init. This callback is mandatory for clocks with | ||
| 105 | * multiple parents. It is optional (and unnecessary) for clocks | ||
| 106 | * with 0 or 1 parents. | ||
| 106 | * | 107 | * |
| 107 | * @set_rate: Change the rate of this clock. The requested rate is specified | 108 | * @set_rate: Change the rate of this clock. The requested rate is specified |
| 108 | * by the second argument, which should typically be the return | 109 | * by the second argument, which should typically be the return |
| @@ -110,13 +111,6 @@ struct dentry; | |||
| 110 | * which is likely helpful for most .set_rate implementation. | 111 | * which is likely helpful for most .set_rate implementation. |
| 111 | * Returns 0 on success, -EERROR otherwise. | 112 | * Returns 0 on success, -EERROR otherwise. |
| 112 | * | 113 | * |
| 113 | * @recalc_accuracy: Recalculate the accuracy of this clock. The clock accuracy | ||
| 114 | * is expressed in ppb (parts per billion). The parent accuracy is | ||
| 115 | * an input parameter. | ||
| 116 | * Returns the calculated accuracy. Optional - if this op is not | ||
| 117 | * set then clock accuracy will be initialized to parent accuracy | ||
| 118 | * or 0 (perfect clock) if clock has no parent. | ||
| 119 | * | ||
| 120 | * @set_rate_and_parent: Change the rate and the parent of this clock. The | 114 | * @set_rate_and_parent: Change the rate and the parent of this clock. The |
| 121 | * requested rate is specified by the second argument, which | 115 | * requested rate is specified by the second argument, which |
| 122 | * should typically be the return of .round_rate call. The | 116 | * should typically be the return of .round_rate call. The |
| @@ -128,6 +122,18 @@ struct dentry; | |||
| 128 | * separately via calls to .set_parent and .set_rate. | 122 | * separately via calls to .set_parent and .set_rate. |
| 129 | * Returns 0 on success, -EERROR otherwise. | 123 | * Returns 0 on success, -EERROR otherwise. |
| 130 | * | 124 | * |
| 125 | * @recalc_accuracy: Recalculate the accuracy of this clock. The clock accuracy | ||
| 126 | * is expressed in ppb (parts per billion). The parent accuracy is | ||
| 127 | * an input parameter. | ||
| 128 | * Returns the calculated accuracy. Optional - if this op is not | ||
| 129 | * set then clock accuracy will be initialized to parent accuracy | ||
| 130 | * or 0 (perfect clock) if clock has no parent. | ||
| 131 | * | ||
| 132 | * @init: Perform platform-specific initialization magic. | ||
| 133 | * This is not not used by any of the basic clock types. | ||
| 134 | * Please consider other ways of solving initialization problems | ||
| 135 | * before using this callback, as its use is discouraged. | ||
| 136 | * | ||
| 131 | * @debug_init: Set up type-specific debugfs entries for this clock. This | 137 | * @debug_init: Set up type-specific debugfs entries for this clock. This |
| 132 | * is called once, after the debugfs directory entry for this | 138 | * is called once, after the debugfs directory entry for this |
| 133 | * clock has been created. The dentry pointer representing that | 139 | * clock has been created. The dentry pointer representing that |
| @@ -157,15 +163,15 @@ struct clk_ops { | |||
| 157 | void (*disable_unused)(struct clk_hw *hw); | 163 | void (*disable_unused)(struct clk_hw *hw); |
| 158 | unsigned long (*recalc_rate)(struct clk_hw *hw, | 164 | unsigned long (*recalc_rate)(struct clk_hw *hw, |
| 159 | unsigned long parent_rate); | 165 | unsigned long parent_rate); |
| 160 | long (*round_rate)(struct clk_hw *hw, unsigned long, | 166 | long (*round_rate)(struct clk_hw *hw, unsigned long rate, |
| 161 | unsigned long *); | 167 | unsigned long *parent_rate); |
| 162 | long (*determine_rate)(struct clk_hw *hw, unsigned long rate, | 168 | long (*determine_rate)(struct clk_hw *hw, unsigned long rate, |
| 163 | unsigned long *best_parent_rate, | 169 | unsigned long *best_parent_rate, |
| 164 | struct clk **best_parent_clk); | 170 | struct clk **best_parent_clk); |
| 165 | int (*set_parent)(struct clk_hw *hw, u8 index); | 171 | int (*set_parent)(struct clk_hw *hw, u8 index); |
| 166 | u8 (*get_parent)(struct clk_hw *hw); | 172 | u8 (*get_parent)(struct clk_hw *hw); |
| 167 | int (*set_rate)(struct clk_hw *hw, unsigned long, | 173 | int (*set_rate)(struct clk_hw *hw, unsigned long rate, |
| 168 | unsigned long); | 174 | unsigned long parent_rate); |
| 169 | int (*set_rate_and_parent)(struct clk_hw *hw, | 175 | int (*set_rate_and_parent)(struct clk_hw *hw, |
| 170 | unsigned long rate, | 176 | unsigned long rate, |
| 171 | unsigned long parent_rate, u8 index); | 177 | unsigned long parent_rate, u8 index); |
| @@ -254,12 +260,12 @@ void of_fixed_clk_setup(struct device_node *np); | |||
| 254 | * | 260 | * |
| 255 | * Flags: | 261 | * Flags: |
| 256 | * CLK_GATE_SET_TO_DISABLE - by default this clock sets the bit at bit_idx to | 262 | * CLK_GATE_SET_TO_DISABLE - by default this clock sets the bit at bit_idx to |
| 257 | * enable the clock. Setting this flag does the opposite: setting the bit | 263 | * enable the clock. Setting this flag does the opposite: setting the bit |
| 258 | * disable the clock and clearing it enables the clock | 264 | * disable the clock and clearing it enables the clock |
| 259 | * CLK_GATE_HIWORD_MASK - The gate settings are only in lower 16-bit | 265 | * CLK_GATE_HIWORD_MASK - The gate settings are only in lower 16-bit |
| 260 | * of this register, and mask of gate bits are in higher 16-bit of this | 266 | * of this register, and mask of gate bits are in higher 16-bit of this |
| 261 | * register. While setting the gate bits, higher 16-bit should also be | 267 | * register. While setting the gate bits, higher 16-bit should also be |
| 262 | * updated to indicate changing gate bits. | 268 | * updated to indicate changing gate bits. |
| 263 | */ | 269 | */ |
| 264 | struct clk_gate { | 270 | struct clk_gate { |
| 265 | struct clk_hw hw; | 271 | struct clk_hw hw; |
| @@ -298,20 +304,24 @@ struct clk_div_table { | |||
| 298 | * | 304 | * |
| 299 | * Flags: | 305 | * Flags: |
| 300 | * CLK_DIVIDER_ONE_BASED - by default the divisor is the value read from the | 306 | * CLK_DIVIDER_ONE_BASED - by default the divisor is the value read from the |
| 301 | * register plus one. If CLK_DIVIDER_ONE_BASED is set then the divider is | 307 | * register plus one. If CLK_DIVIDER_ONE_BASED is set then the divider is |
| 302 | * the raw value read from the register, with the value of zero considered | 308 | * the raw value read from the register, with the value of zero considered |
| 303 | * invalid, unless CLK_DIVIDER_ALLOW_ZERO is set. | 309 | * invalid, unless CLK_DIVIDER_ALLOW_ZERO is set. |
| 304 | * CLK_DIVIDER_POWER_OF_TWO - clock divisor is 2 raised to the value read from | 310 | * CLK_DIVIDER_POWER_OF_TWO - clock divisor is 2 raised to the value read from |
| 305 | * the hardware register | 311 | * the hardware register |
| 306 | * CLK_DIVIDER_ALLOW_ZERO - Allow zero divisors. For dividers which have | 312 | * CLK_DIVIDER_ALLOW_ZERO - Allow zero divisors. For dividers which have |
| 307 | * CLK_DIVIDER_ONE_BASED set, it is possible to end up with a zero divisor. | 313 | * CLK_DIVIDER_ONE_BASED set, it is possible to end up with a zero divisor. |
| 308 | * Some hardware implementations gracefully handle this case and allow a | 314 | * Some hardware implementations gracefully handle this case and allow a |
| 309 | * zero divisor by not modifying their input clock | 315 | * zero divisor by not modifying their input clock |
| 310 | * (divide by one / bypass). | 316 | * (divide by one / bypass). |
| 311 | * CLK_DIVIDER_HIWORD_MASK - The divider settings are only in lower 16-bit | 317 | * CLK_DIVIDER_HIWORD_MASK - The divider settings are only in lower 16-bit |
| 312 | * of this register, and mask of divider bits are in higher 16-bit of this | 318 | * of this register, and mask of divider bits are in higher 16-bit of this |
| 313 | * register. While setting the divider bits, higher 16-bit should also be | 319 | * register. While setting the divider bits, higher 16-bit should also be |
| 314 | * updated to indicate changing divider bits. | 320 | * updated to indicate changing divider bits. |
| 321 | * CLK_DIVIDER_ROUND_CLOSEST - Makes the best calculated divider to be rounded | ||
| 322 | * to the closest integer instead of the up one. | ||
| 323 | * CLK_DIVIDER_READ_ONLY - The divider settings are preconfigured and should | ||
| 324 | * not be changed by the clock framework. | ||
| 315 | */ | 325 | */ |
| 316 | struct clk_divider { | 326 | struct clk_divider { |
| 317 | struct clk_hw hw; | 327 | struct clk_hw hw; |
| @@ -327,8 +337,11 @@ struct clk_divider { | |||
| 327 | #define CLK_DIVIDER_POWER_OF_TWO BIT(1) | 337 | #define CLK_DIVIDER_POWER_OF_TWO BIT(1) |
| 328 | #define CLK_DIVIDER_ALLOW_ZERO BIT(2) | 338 | #define CLK_DIVIDER_ALLOW_ZERO BIT(2) |
| 329 | #define CLK_DIVIDER_HIWORD_MASK BIT(3) | 339 | #define CLK_DIVIDER_HIWORD_MASK BIT(3) |
| 340 | #define CLK_DIVIDER_ROUND_CLOSEST BIT(4) | ||
| 341 | #define CLK_DIVIDER_READ_ONLY BIT(5) | ||
| 330 | 342 | ||
| 331 | extern const struct clk_ops clk_divider_ops; | 343 | extern const struct clk_ops clk_divider_ops; |
| 344 | extern const struct clk_ops clk_divider_ro_ops; | ||
| 332 | struct clk *clk_register_divider(struct device *dev, const char *name, | 345 | struct clk *clk_register_divider(struct device *dev, const char *name, |
| 333 | const char *parent_name, unsigned long flags, | 346 | const char *parent_name, unsigned long flags, |
| 334 | void __iomem *reg, u8 shift, u8 width, | 347 | void __iomem *reg, u8 shift, u8 width, |
| @@ -356,9 +369,9 @@ struct clk *clk_register_divider_table(struct device *dev, const char *name, | |||
| 356 | * CLK_MUX_INDEX_ONE - register index starts at 1, not 0 | 369 | * CLK_MUX_INDEX_ONE - register index starts at 1, not 0 |
| 357 | * CLK_MUX_INDEX_BIT - register index is a single bit (power of two) | 370 | * CLK_MUX_INDEX_BIT - register index is a single bit (power of two) |
| 358 | * CLK_MUX_HIWORD_MASK - The mux settings are only in lower 16-bit of this | 371 | * CLK_MUX_HIWORD_MASK - The mux settings are only in lower 16-bit of this |
| 359 | * register, and mask of mux bits are in higher 16-bit of this register. | 372 | * register, and mask of mux bits are in higher 16-bit of this register. |
| 360 | * While setting the mux bits, higher 16-bit should also be updated to | 373 | * While setting the mux bits, higher 16-bit should also be updated to |
| 361 | * indicate changing mux bits. | 374 | * indicate changing mux bits. |
| 362 | */ | 375 | */ |
| 363 | struct clk_mux { | 376 | struct clk_mux { |
| 364 | struct clk_hw hw; | 377 | struct clk_hw hw; |
| @@ -529,10 +542,7 @@ struct clk_onecell_data { | |||
| 529 | 542 | ||
| 530 | extern struct of_device_id __clk_of_table; | 543 | extern struct of_device_id __clk_of_table; |
| 531 | 544 | ||
| 532 | #define CLK_OF_DECLARE(name, compat, fn) \ | 545 | #define CLK_OF_DECLARE(name, compat, fn) OF_DECLARE_1(clk, name, compat, fn) |
| 533 | static const struct of_device_id __clk_of_table_##name \ | ||
| 534 | __used __section(__clk_of_table) \ | ||
| 535 | = { .compatible = compat, .data = fn }; | ||
| 536 | 546 | ||
| 537 | #ifdef CONFIG_OF | 547 | #ifdef CONFIG_OF |
| 538 | int of_clk_add_provider(struct device_node *np, | 548 | int of_clk_add_provider(struct device_node *np, |
diff --git a/include/linux/clk/shmobile.h b/include/linux/clk/shmobile.h index f9bf080a1123..9f8a14041dd5 100644 --- a/include/linux/clk/shmobile.h +++ b/include/linux/clk/shmobile.h | |||
| @@ -1,7 +1,9 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright 2013 Ideas On Board SPRL | 2 | * Copyright 2013 Ideas On Board SPRL |
| 3 | * Copyright 2013, 2014 Horms Solutions Ltd. | ||
| 3 | * | 4 | * |
| 4 | * Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 5 | * Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 6 | * Contact: Simon Horman <horms@verge.net.au> | ||
| 5 | * | 7 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 8 | * 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 | 9 | * it under the terms of the GNU General Public License as published by |
| @@ -14,6 +16,7 @@ | |||
| 14 | 16 | ||
| 15 | #include <linux/types.h> | 17 | #include <linux/types.h> |
| 16 | 18 | ||
| 19 | void r8a7779_clocks_init(u32 mode); | ||
| 17 | void rcar_gen2_clocks_init(u32 mode); | 20 | void rcar_gen2_clocks_init(u32 mode); |
| 18 | 21 | ||
| 19 | #endif | 22 | #endif |
diff --git a/include/linux/clk/sunxi.h b/include/linux/clk/sunxi.h new file mode 100644 index 000000000000..aed28c4451d9 --- /dev/null +++ b/include/linux/clk/sunxi.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* | ||
| 2 | * Copyright 2013 - Hans de Goede <hdegoede@redhat.com> | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | */ | ||
| 14 | |||
| 15 | #ifndef __LINUX_CLK_SUNXI_H_ | ||
| 16 | #define __LINUX_CLK_SUNXI_H_ | ||
| 17 | |||
| 18 | #include <linux/clk.h> | ||
| 19 | |||
| 20 | void clk_sunxi_mmc_phase_control(struct clk *clk, u8 sample, u8 output); | ||
| 21 | |||
| 22 | #endif | ||
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h index 67301a405712..a16b497d5159 100644 --- a/include/linux/clocksource.h +++ b/include/linux/clocksource.h | |||
| @@ -339,23 +339,13 @@ extern int clocksource_mmio_init(void __iomem *, const char *, | |||
| 339 | 339 | ||
| 340 | extern int clocksource_i8253_init(void); | 340 | extern int clocksource_i8253_init(void); |
| 341 | 341 | ||
| 342 | struct device_node; | 342 | #define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \ |
| 343 | typedef void(*clocksource_of_init_fn)(struct device_node *); | 343 | OF_DECLARE_1(clksrc, name, compat, fn) |
| 344 | |||
| 344 | #ifdef CONFIG_CLKSRC_OF | 345 | #ifdef CONFIG_CLKSRC_OF |
| 345 | extern void clocksource_of_init(void); | 346 | extern void clocksource_of_init(void); |
| 346 | |||
| 347 | #define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \ | ||
| 348 | static const struct of_device_id __clksrc_of_table_##name \ | ||
| 349 | __used __section(__clksrc_of_table) \ | ||
| 350 | = { .compatible = compat, \ | ||
| 351 | .data = (fn == (clocksource_of_init_fn)NULL) ? fn : fn } | ||
| 352 | #else | 347 | #else |
| 353 | static inline void clocksource_of_init(void) {} | 348 | static inline void clocksource_of_init(void) {} |
| 354 | #define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \ | ||
| 355 | static const struct of_device_id __clksrc_of_table_##name \ | ||
| 356 | __attribute__((unused)) \ | ||
| 357 | = { .compatible = compat, \ | ||
| 358 | .data = (fn == (clocksource_of_init_fn)NULL) ? fn : fn } | ||
| 359 | #endif | 349 | #endif |
| 360 | 350 | ||
| 361 | #endif /* _LINUX_CLOCKSOURCE_H */ | 351 | #endif /* _LINUX_CLOCKSOURCE_H */ |
diff --git a/include/linux/compaction.h b/include/linux/compaction.h index 7e1c76e3cd68..01e3132820da 100644 --- a/include/linux/compaction.h +++ b/include/linux/compaction.h | |||
| @@ -22,7 +22,7 @@ extern int sysctl_extfrag_handler(struct ctl_table *table, int write, | |||
| 22 | extern int fragmentation_index(struct zone *zone, unsigned int order); | 22 | extern int fragmentation_index(struct zone *zone, unsigned int order); |
| 23 | extern unsigned long try_to_compact_pages(struct zonelist *zonelist, | 23 | extern unsigned long try_to_compact_pages(struct zonelist *zonelist, |
| 24 | int order, gfp_t gfp_mask, nodemask_t *mask, | 24 | int order, gfp_t gfp_mask, nodemask_t *mask, |
| 25 | bool sync, bool *contended); | 25 | enum migrate_mode mode, bool *contended); |
| 26 | extern void compact_pgdat(pg_data_t *pgdat, int order); | 26 | extern void compact_pgdat(pg_data_t *pgdat, int order); |
| 27 | extern void reset_isolation_suitable(pg_data_t *pgdat); | 27 | extern void reset_isolation_suitable(pg_data_t *pgdat); |
| 28 | extern unsigned long compaction_suitable(struct zone *zone, int order); | 28 | extern unsigned long compaction_suitable(struct zone *zone, int order); |
| @@ -91,7 +91,7 @@ static inline bool compaction_restarting(struct zone *zone, int order) | |||
| 91 | #else | 91 | #else |
| 92 | static inline unsigned long try_to_compact_pages(struct zonelist *zonelist, | 92 | static inline unsigned long try_to_compact_pages(struct zonelist *zonelist, |
| 93 | int order, gfp_t gfp_mask, nodemask_t *nodemask, | 93 | int order, gfp_t gfp_mask, nodemask_t *nodemask, |
| 94 | bool sync, bool *contended) | 94 | enum migrate_mode mode, bool *contended) |
| 95 | { | 95 | { |
| 96 | return COMPACT_CONTINUE; | 96 | return COMPACT_CONTINUE; |
| 97 | } | 97 | } |
diff --git a/include/linux/compiler.h b/include/linux/compiler.h index ee7239ea1583..64fdfe1cfcf0 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h | |||
| @@ -323,9 +323,18 @@ void ftrace_likely_update(struct ftrace_branch_data *f, int val, int expect); | |||
| 323 | #endif | 323 | #endif |
| 324 | #ifndef __compiletime_error | 324 | #ifndef __compiletime_error |
| 325 | # define __compiletime_error(message) | 325 | # define __compiletime_error(message) |
| 326 | # define __compiletime_error_fallback(condition) \ | 326 | /* |
| 327 | * Sparse complains of variable sized arrays due to the temporary variable in | ||
| 328 | * __compiletime_assert. Unfortunately we can't just expand it out to make | ||
| 329 | * sparse see a constant array size without breaking compiletime_assert on old | ||
| 330 | * versions of GCC (e.g. 4.2.4), so hide the array from sparse altogether. | ||
| 331 | */ | ||
| 332 | # ifndef __CHECKER__ | ||
| 333 | # define __compiletime_error_fallback(condition) \ | ||
| 327 | do { ((void)sizeof(char[1 - 2 * condition])); } while (0) | 334 | do { ((void)sizeof(char[1 - 2 * condition])); } while (0) |
| 328 | #else | 335 | # endif |
| 336 | #endif | ||
| 337 | #ifndef __compiletime_error_fallback | ||
| 329 | # define __compiletime_error_fallback(condition) do { } while (0) | 338 | # define __compiletime_error_fallback(condition) do { } while (0) |
| 330 | #endif | 339 | #endif |
| 331 | 340 | ||
diff --git a/include/linux/cpu.h b/include/linux/cpu.h index 81887120395c..95978ad7fcdd 100644 --- a/include/linux/cpu.h +++ b/include/linux/cpu.h | |||
| @@ -256,7 +256,6 @@ enum cpuhp_state { | |||
| 256 | }; | 256 | }; |
| 257 | 257 | ||
| 258 | void cpu_startup_entry(enum cpuhp_state state); | 258 | void cpu_startup_entry(enum cpuhp_state state); |
| 259 | void cpu_idle(void); | ||
| 260 | 259 | ||
| 261 | void cpu_idle_poll_ctrl(bool enable); | 260 | void cpu_idle_poll_ctrl(bool enable); |
| 262 | 261 | ||
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index c51a436135c4..25e0df6155a4 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
| @@ -84,6 +84,7 @@ struct cpuidle_device { | |||
| 84 | }; | 84 | }; |
| 85 | 85 | ||
| 86 | DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices); | 86 | DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices); |
| 87 | DECLARE_PER_CPU(struct cpuidle_device, cpuidle_dev); | ||
| 87 | 88 | ||
| 88 | /** | 89 | /** |
| 89 | * cpuidle_get_last_residency - retrieves the last state's residency time | 90 | * cpuidle_get_last_residency - retrieves the last state's residency time |
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index d08e4d2a9b92..3557ea7b2049 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
| @@ -600,7 +600,7 @@ static inline int cpulist_scnprintf(char *buf, int len, | |||
| 600 | static inline int cpumask_parse(const char *buf, struct cpumask *dstp) | 600 | static inline int cpumask_parse(const char *buf, struct cpumask *dstp) |
| 601 | { | 601 | { |
| 602 | char *nl = strchr(buf, '\n'); | 602 | char *nl = strchr(buf, '\n'); |
| 603 | int len = nl ? nl - buf : strlen(buf); | 603 | unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf); |
| 604 | 604 | ||
| 605 | return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpumask_bits); | 605 | return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpumask_bits); |
| 606 | } | 606 | } |
diff --git a/include/linux/cpuset.h b/include/linux/cpuset.h index b19d3dc2e651..ade2390ffe92 100644 --- a/include/linux/cpuset.h +++ b/include/linux/cpuset.h | |||
| @@ -12,10 +12,31 @@ | |||
| 12 | #include <linux/cpumask.h> | 12 | #include <linux/cpumask.h> |
| 13 | #include <linux/nodemask.h> | 13 | #include <linux/nodemask.h> |
| 14 | #include <linux/mm.h> | 14 | #include <linux/mm.h> |
| 15 | #include <linux/jump_label.h> | ||
| 15 | 16 | ||
| 16 | #ifdef CONFIG_CPUSETS | 17 | #ifdef CONFIG_CPUSETS |
| 17 | 18 | ||
| 18 | extern int number_of_cpusets; /* How many cpusets are defined in system? */ | 19 | extern struct static_key cpusets_enabled_key; |
| 20 | static inline bool cpusets_enabled(void) | ||
| 21 | { | ||
| 22 | return static_key_false(&cpusets_enabled_key); | ||
| 23 | } | ||
| 24 | |||
| 25 | static inline int nr_cpusets(void) | ||
| 26 | { | ||
| 27 | /* jump label reference count + the top-level cpuset */ | ||
| 28 | return static_key_count(&cpusets_enabled_key) + 1; | ||
| 29 | } | ||
| 30 | |||
| 31 | static inline void cpuset_inc(void) | ||
| 32 | { | ||
| 33 | static_key_slow_inc(&cpusets_enabled_key); | ||
| 34 | } | ||
| 35 | |||
| 36 | static inline void cpuset_dec(void) | ||
| 37 | { | ||
| 38 | static_key_slow_dec(&cpusets_enabled_key); | ||
| 39 | } | ||
| 19 | 40 | ||
| 20 | extern int cpuset_init(void); | 41 | extern int cpuset_init(void); |
| 21 | extern void cpuset_init_smp(void); | 42 | extern void cpuset_init_smp(void); |
| @@ -32,13 +53,13 @@ extern int __cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask); | |||
| 32 | 53 | ||
| 33 | static inline int cpuset_node_allowed_softwall(int node, gfp_t gfp_mask) | 54 | static inline int cpuset_node_allowed_softwall(int node, gfp_t gfp_mask) |
| 34 | { | 55 | { |
| 35 | return number_of_cpusets <= 1 || | 56 | return nr_cpusets() <= 1 || |
| 36 | __cpuset_node_allowed_softwall(node, gfp_mask); | 57 | __cpuset_node_allowed_softwall(node, gfp_mask); |
| 37 | } | 58 | } |
| 38 | 59 | ||
| 39 | static inline int cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask) | 60 | static inline int cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask) |
| 40 | { | 61 | { |
| 41 | return number_of_cpusets <= 1 || | 62 | return nr_cpusets() <= 1 || |
| 42 | __cpuset_node_allowed_hardwall(node, gfp_mask); | 63 | __cpuset_node_allowed_hardwall(node, gfp_mask); |
| 43 | } | 64 | } |
| 44 | 65 | ||
| @@ -124,6 +145,8 @@ static inline void set_mems_allowed(nodemask_t nodemask) | |||
| 124 | 145 | ||
| 125 | #else /* !CONFIG_CPUSETS */ | 146 | #else /* !CONFIG_CPUSETS */ |
| 126 | 147 | ||
| 148 | static inline bool cpusets_enabled(void) { return false; } | ||
| 149 | |||
| 127 | static inline int cpuset_init(void) { return 0; } | 150 | static inline int cpuset_init(void) { return 0; } |
| 128 | static inline void cpuset_init_smp(void) {} | 151 | static inline void cpuset_init_smp(void) {} |
| 129 | 152 | ||
diff --git a/include/linux/dell-led.h b/include/linux/dell-led.h new file mode 100644 index 000000000000..7009b8bec77b --- /dev/null +++ b/include/linux/dell-led.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #ifndef __DELL_LED_H__ | ||
| 2 | #define __DELL_LED_H__ | ||
| 3 | |||
| 4 | enum { | ||
| 5 | DELL_LED_MICMUTE, | ||
| 6 | }; | ||
| 7 | |||
| 8 | int dell_app_wmi_led_set(int whichled, int on); | ||
| 9 | |||
| 10 | #endif | ||
diff --git a/include/linux/device.h b/include/linux/device.h index 580e3eed4b78..af424acd393d 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
| @@ -692,6 +692,7 @@ struct acpi_dev_node { | |||
| 692 | * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all | 692 | * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all |
| 693 | * hardware supports 64-bit addresses for consistent allocations | 693 | * hardware supports 64-bit addresses for consistent allocations |
| 694 | * such descriptors. | 694 | * such descriptors. |
| 695 | * @dma_pfn_offset: offset of DMA memory range relatively of RAM | ||
| 695 | * @dma_parms: A low level driver may set these to teach IOMMU code about | 696 | * @dma_parms: A low level driver may set these to teach IOMMU code about |
| 696 | * segment limitations. | 697 | * segment limitations. |
| 697 | * @dma_pools: Dma pools (if dma'ble device). | 698 | * @dma_pools: Dma pools (if dma'ble device). |
| @@ -759,6 +760,7 @@ struct device { | |||
| 759 | not all hardware supports | 760 | not all hardware supports |
| 760 | 64 bit addresses for consistent | 761 | 64 bit addresses for consistent |
| 761 | allocations such descriptors. */ | 762 | allocations such descriptors. */ |
| 763 | unsigned long dma_pfn_offset; | ||
| 762 | 764 | ||
| 763 | struct device_dma_parameters *dma_parms; | 765 | struct device_dma_parameters *dma_parms; |
| 764 | 766 | ||
diff --git a/include/linux/dma-contiguous.h b/include/linux/dma-contiguous.h index 3b28f937d959..772eab5d524a 100644 --- a/include/linux/dma-contiguous.h +++ b/include/linux/dma-contiguous.h | |||
| @@ -88,7 +88,8 @@ static inline void dma_contiguous_set_default(struct cma *cma) | |||
| 88 | void dma_contiguous_reserve(phys_addr_t addr_limit); | 88 | void dma_contiguous_reserve(phys_addr_t addr_limit); |
| 89 | 89 | ||
| 90 | int __init dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base, | 90 | int __init dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base, |
| 91 | phys_addr_t limit, struct cma **res_cma); | 91 | phys_addr_t limit, struct cma **res_cma, |
| 92 | bool fixed); | ||
| 92 | 93 | ||
| 93 | /** | 94 | /** |
| 94 | * dma_declare_contiguous() - reserve area for contiguous memory handling | 95 | * dma_declare_contiguous() - reserve area for contiguous memory handling |
| @@ -108,7 +109,7 @@ static inline int dma_declare_contiguous(struct device *dev, phys_addr_t size, | |||
| 108 | { | 109 | { |
| 109 | struct cma *cma; | 110 | struct cma *cma; |
| 110 | int ret; | 111 | int ret; |
| 111 | ret = dma_contiguous_reserve_area(size, base, limit, &cma); | 112 | ret = dma_contiguous_reserve_area(size, base, limit, &cma, true); |
| 112 | if (ret == 0) | 113 | if (ret == 0) |
| 113 | dev_set_cma_area(dev, cma); | 114 | dev_set_cma_area(dev, cma); |
| 114 | 115 | ||
| @@ -136,7 +137,9 @@ static inline void dma_contiguous_set_default(struct cma *cma) { } | |||
| 136 | static inline void dma_contiguous_reserve(phys_addr_t limit) { } | 137 | static inline void dma_contiguous_reserve(phys_addr_t limit) { } |
| 137 | 138 | ||
| 138 | static inline int dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base, | 139 | static inline int dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base, |
| 139 | phys_addr_t limit, struct cma **res_cma) { | 140 | phys_addr_t limit, struct cma **res_cma, |
| 141 | bool fixed) | ||
| 142 | { | ||
| 140 | return -ENOSYS; | 143 | return -ENOSYS; |
| 141 | } | 144 | } |
| 142 | 145 | ||
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h index 0c3eab1e39ac..931b70986272 100644 --- a/include/linux/dma-mapping.h +++ b/include/linux/dma-mapping.h | |||
| @@ -129,6 +129,13 @@ static inline int dma_coerce_mask_and_coherent(struct device *dev, u64 mask) | |||
| 129 | 129 | ||
| 130 | extern u64 dma_get_required_mask(struct device *dev); | 130 | extern u64 dma_get_required_mask(struct device *dev); |
| 131 | 131 | ||
| 132 | #ifndef set_arch_dma_coherent_ops | ||
| 133 | static inline int set_arch_dma_coherent_ops(struct device *dev) | ||
| 134 | { | ||
| 135 | return 0; | ||
| 136 | } | ||
| 137 | #endif | ||
| 138 | |||
| 132 | static inline unsigned int dma_get_max_seg_size(struct device *dev) | 139 | static inline unsigned int dma_get_max_seg_size(struct device *dev) |
| 133 | { | 140 | { |
| 134 | return dev->dma_parms ? dev->dma_parms->max_segment_size : 65536; | 141 | return dev->dma_parms ? dev->dma_parms->max_segment_size : 65536; |
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 72cb0ddb9678..d2c5cc7c583c 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h | |||
| @@ -292,7 +292,7 @@ struct dma_chan_dev { | |||
| 292 | }; | 292 | }; |
| 293 | 293 | ||
| 294 | /** | 294 | /** |
| 295 | * enum dma_slave_buswidth - defines bus with of the DMA slave | 295 | * enum dma_slave_buswidth - defines bus width of the DMA slave |
| 296 | * device, source or target buses | 296 | * device, source or target buses |
| 297 | */ | 297 | */ |
| 298 | enum dma_slave_buswidth { | 298 | enum dma_slave_buswidth { |
diff --git a/include/linux/efi.h b/include/linux/efi.h index 6c100ff0cae4..41bbf8ba4ba8 100644 --- a/include/linux/efi.h +++ b/include/linux/efi.h | |||
| @@ -575,6 +575,9 @@ typedef efi_status_t efi_query_variable_store_t(u32 attributes, unsigned long si | |||
| 575 | #define EFI_FILE_SYSTEM_GUID \ | 575 | #define EFI_FILE_SYSTEM_GUID \ |
| 576 | EFI_GUID( 0x964e5b22, 0x6459, 0x11d2, 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b ) | 576 | EFI_GUID( 0x964e5b22, 0x6459, 0x11d2, 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b ) |
| 577 | 577 | ||
| 578 | #define DEVICE_TREE_GUID \ | ||
| 579 | EFI_GUID( 0xb1b621d5, 0xf19c, 0x41a5, 0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0 ) | ||
| 580 | |||
| 578 | typedef struct { | 581 | typedef struct { |
| 579 | efi_guid_t guid; | 582 | efi_guid_t guid; |
| 580 | u64 table; | 583 | u64 table; |
| @@ -664,6 +667,14 @@ struct efi_memory_map { | |||
| 664 | unsigned long desc_size; | 667 | unsigned long desc_size; |
| 665 | }; | 668 | }; |
| 666 | 669 | ||
| 670 | struct efi_fdt_params { | ||
| 671 | u64 system_table; | ||
| 672 | u64 mmap; | ||
| 673 | u32 mmap_size; | ||
| 674 | u32 desc_size; | ||
| 675 | u32 desc_ver; | ||
| 676 | }; | ||
| 677 | |||
| 667 | typedef struct { | 678 | typedef struct { |
| 668 | u32 revision; | 679 | u32 revision; |
| 669 | u32 parent_handle; | 680 | u32 parent_handle; |
| @@ -861,8 +872,15 @@ extern void efi_initialize_iomem_resources(struct resource *code_resource, | |||
| 861 | extern void efi_get_time(struct timespec *now); | 872 | extern void efi_get_time(struct timespec *now); |
| 862 | extern int efi_set_rtc_mmss(const struct timespec *now); | 873 | extern int efi_set_rtc_mmss(const struct timespec *now); |
| 863 | extern void efi_reserve_boot_services(void); | 874 | extern void efi_reserve_boot_services(void); |
| 875 | extern int efi_get_fdt_params(struct efi_fdt_params *params, int verbose); | ||
| 864 | extern struct efi_memory_map memmap; | 876 | extern struct efi_memory_map memmap; |
| 865 | 877 | ||
| 878 | /* Iterate through an efi_memory_map */ | ||
| 879 | #define for_each_efi_memory_desc(m, md) \ | ||
| 880 | for ((md) = (m)->map; \ | ||
| 881 | (md) <= (efi_memory_desc_t *)((m)->map_end - (m)->desc_size); \ | ||
| 882 | (md) = (void *)(md) + (m)->desc_size) | ||
| 883 | |||
| 866 | /** | 884 | /** |
| 867 | * efi_range_is_wc - check the WC bit on an address range | 885 | * efi_range_is_wc - check the WC bit on an address range |
| 868 | * @start: starting kvirt address | 886 | * @start: starting kvirt address |
| @@ -1033,8 +1051,10 @@ struct efivars { | |||
| 1033 | * and we use a page for reading/writing. | 1051 | * and we use a page for reading/writing. |
| 1034 | */ | 1052 | */ |
| 1035 | 1053 | ||
| 1054 | #define EFI_VAR_NAME_LEN 1024 | ||
| 1055 | |||
| 1036 | struct efi_variable { | 1056 | struct efi_variable { |
| 1037 | efi_char16_t VariableName[1024/sizeof(efi_char16_t)]; | 1057 | efi_char16_t VariableName[EFI_VAR_NAME_LEN/sizeof(efi_char16_t)]; |
| 1038 | efi_guid_t VendorGuid; | 1058 | efi_guid_t VendorGuid; |
| 1039 | unsigned long DataSize; | 1059 | unsigned long DataSize; |
| 1040 | __u8 Data[1024]; | 1060 | __u8 Data[1024]; |
| @@ -1116,7 +1136,7 @@ int efivar_entry_iter(int (*func)(struct efivar_entry *, void *), | |||
| 1116 | struct efivar_entry *efivar_entry_find(efi_char16_t *name, efi_guid_t guid, | 1136 | struct efivar_entry *efivar_entry_find(efi_char16_t *name, efi_guid_t guid, |
| 1117 | struct list_head *head, bool remove); | 1137 | struct list_head *head, bool remove); |
| 1118 | 1138 | ||
| 1119 | bool efivar_validate(struct efi_variable *var, u8 *data, unsigned long len); | 1139 | bool efivar_validate(efi_char16_t *var_name, u8 *data, unsigned long len); |
| 1120 | 1140 | ||
| 1121 | extern struct work_struct efivar_work; | 1141 | extern struct work_struct efivar_work; |
| 1122 | void efivar_run_worker(void); | 1142 | void efivar_run_worker(void); |
diff --git a/include/linux/elevator.h b/include/linux/elevator.h index df63bd3a8cf1..4ff262e2bf37 100644 --- a/include/linux/elevator.h +++ b/include/linux/elevator.h | |||
| @@ -144,7 +144,7 @@ extern void elv_drain_elevator(struct request_queue *); | |||
| 144 | * io scheduler registration | 144 | * io scheduler registration |
| 145 | */ | 145 | */ |
| 146 | extern void __init load_default_elevator_module(void); | 146 | extern void __init load_default_elevator_module(void); |
| 147 | extern int elv_register(struct elevator_type *); | 147 | extern int __init elv_register(struct elevator_type *); |
| 148 | extern void elv_unregister(struct elevator_type *); | 148 | extern void elv_unregister(struct elevator_type *); |
| 149 | 149 | ||
| 150 | /* | 150 | /* |
diff --git a/include/linux/f2fs_fs.h b/include/linux/f2fs_fs.h index df53e1753a76..6ff0b0b42d47 100644 --- a/include/linux/f2fs_fs.h +++ b/include/linux/f2fs_fs.h | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #define F2FS_LOG_SECTORS_PER_BLOCK 3 /* 4KB: F2FS_BLKSIZE */ | 19 | #define F2FS_LOG_SECTORS_PER_BLOCK 3 /* 4KB: F2FS_BLKSIZE */ |
| 20 | #define F2FS_BLKSIZE 4096 /* support only 4KB block */ | 20 | #define F2FS_BLKSIZE 4096 /* support only 4KB block */ |
| 21 | #define F2FS_MAX_EXTENSION 64 /* # of extension entries */ | 21 | #define F2FS_MAX_EXTENSION 64 /* # of extension entries */ |
| 22 | #define F2FS_BLK_ALIGN(x) (((x) + F2FS_BLKSIZE - 1) / F2FS_BLKSIZE) | ||
| 22 | 23 | ||
| 23 | #define NULL_ADDR ((block_t)0) /* used as block_t addresses */ | 24 | #define NULL_ADDR ((block_t)0) /* used as block_t addresses */ |
| 24 | #define NEW_ADDR ((block_t)-1) /* used as block_t addresses */ | 25 | #define NEW_ADDR ((block_t)-1) /* used as block_t addresses */ |
| @@ -75,6 +76,7 @@ struct f2fs_super_block { | |||
| 75 | __le16 volume_name[512]; /* volume name */ | 76 | __le16 volume_name[512]; /* volume name */ |
| 76 | __le32 extension_count; /* # of extensions below */ | 77 | __le32 extension_count; /* # of extensions below */ |
| 77 | __u8 extension_list[F2FS_MAX_EXTENSION][8]; /* extension array */ | 78 | __u8 extension_list[F2FS_MAX_EXTENSION][8]; /* extension array */ |
| 79 | __le32 cp_payload; | ||
| 78 | } __packed; | 80 | } __packed; |
| 79 | 81 | ||
| 80 | /* | 82 | /* |
| @@ -146,6 +148,9 @@ struct f2fs_extent { | |||
| 146 | #define ADDRS_PER_BLOCK 1018 /* Address Pointers in a Direct Block */ | 148 | #define ADDRS_PER_BLOCK 1018 /* Address Pointers in a Direct Block */ |
| 147 | #define NIDS_PER_BLOCK 1018 /* Node IDs in an Indirect Block */ | 149 | #define NIDS_PER_BLOCK 1018 /* Node IDs in an Indirect Block */ |
| 148 | 150 | ||
| 151 | #define ADDRS_PER_PAGE(page, fi) \ | ||
| 152 | (IS_INODE(page) ? ADDRS_PER_INODE(fi) : ADDRS_PER_BLOCK) | ||
| 153 | |||
| 149 | #define NODE_DIR1_BLOCK (DEF_ADDRS_PER_INODE + 1) | 154 | #define NODE_DIR1_BLOCK (DEF_ADDRS_PER_INODE + 1) |
| 150 | #define NODE_DIR2_BLOCK (DEF_ADDRS_PER_INODE + 2) | 155 | #define NODE_DIR2_BLOCK (DEF_ADDRS_PER_INODE + 2) |
| 151 | #define NODE_IND1_BLOCK (DEF_ADDRS_PER_INODE + 3) | 156 | #define NODE_IND1_BLOCK (DEF_ADDRS_PER_INODE + 3) |
| @@ -391,6 +396,9 @@ typedef __le32 f2fs_hash_t; | |||
| 391 | /* MAX level for dir lookup */ | 396 | /* MAX level for dir lookup */ |
| 392 | #define MAX_DIR_HASH_DEPTH 63 | 397 | #define MAX_DIR_HASH_DEPTH 63 |
| 393 | 398 | ||
| 399 | /* MAX buckets in one level of dir */ | ||
| 400 | #define MAX_DIR_BUCKETS (1 << ((MAX_DIR_HASH_DEPTH / 2) - 1)) | ||
| 401 | |||
| 394 | #define SIZE_OF_DIR_ENTRY 11 /* by byte */ | 402 | #define SIZE_OF_DIR_ENTRY 11 /* by byte */ |
| 395 | #define SIZE_OF_DENTRY_BITMAP ((NR_DENTRY_IN_BLOCK + BITS_PER_BYTE - 1) / \ | 403 | #define SIZE_OF_DENTRY_BITMAP ((NR_DENTRY_IN_BLOCK + BITS_PER_BYTE - 1) / \ |
| 396 | BITS_PER_BYTE) | 404 | BITS_PER_BYTE) |
diff --git a/include/linux/fb.h b/include/linux/fb.h index fe6ac956550e..b6bfda99add3 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h | |||
| @@ -47,6 +47,7 @@ struct device_node; | |||
| 47 | 47 | ||
| 48 | #define FB_MISC_PRIM_COLOR 1 | 48 | #define FB_MISC_PRIM_COLOR 1 |
| 49 | #define FB_MISC_1ST_DETAIL 2 /* First Detailed Timing is preferred */ | 49 | #define FB_MISC_1ST_DETAIL 2 /* First Detailed Timing is preferred */ |
| 50 | #define FB_MISC_HDMI 4 | ||
| 50 | struct fb_chroma { | 51 | struct fb_chroma { |
| 51 | __u32 redx; /* in fraction of 1024 */ | 52 | __u32 redx; /* in fraction of 1024 */ |
| 52 | __u32 greenx; | 53 | __u32 greenx; |
| @@ -641,7 +642,7 @@ static inline void unlock_fb_info(struct fb_info *info) | |||
| 641 | static inline void __fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, | 642 | static inline void __fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, |
| 642 | u8 *src, u32 s_pitch, u32 height) | 643 | u8 *src, u32 s_pitch, u32 height) |
| 643 | { | 644 | { |
| 644 | int i, j; | 645 | u32 i, j; |
| 645 | 646 | ||
| 646 | d_pitch -= s_pitch; | 647 | d_pitch -= s_pitch; |
| 647 | 648 | ||
diff --git a/include/linux/firewire.h b/include/linux/firewire.h index c3683bdf28fe..d4b7683c722d 100644 --- a/include/linux/firewire.h +++ b/include/linux/firewire.h | |||
| @@ -367,6 +367,9 @@ static inline int fw_stream_packet_destination_id(int tag, int channel, int sy) | |||
| 367 | return tag << 14 | channel << 8 | sy; | 367 | return tag << 14 | channel << 8 | sy; |
| 368 | } | 368 | } |
| 369 | 369 | ||
| 370 | void fw_schedule_bus_reset(struct fw_card *card, bool delayed, | ||
| 371 | bool short_reset); | ||
| 372 | |||
| 370 | struct fw_descriptor { | 373 | struct fw_descriptor { |
| 371 | struct list_head link; | 374 | struct list_head link; |
| 372 | size_t length; | 375 | size_t length; |
diff --git a/include/linux/fs.h b/include/linux/fs.h index 878031227c57..338e6f758c6d 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -128,6 +128,10 @@ typedef void (dio_iodone_t)(struct kiocb *iocb, loff_t offset, | |||
| 128 | #define FMODE_ATOMIC_POS ((__force fmode_t)0x8000) | 128 | #define FMODE_ATOMIC_POS ((__force fmode_t)0x8000) |
| 129 | /* Write access to underlying fs */ | 129 | /* Write access to underlying fs */ |
| 130 | #define FMODE_WRITER ((__force fmode_t)0x10000) | 130 | #define FMODE_WRITER ((__force fmode_t)0x10000) |
| 131 | /* Has read method(s) */ | ||
| 132 | #define FMODE_CAN_READ ((__force fmode_t)0x20000) | ||
| 133 | /* Has write method(s) */ | ||
| 134 | #define FMODE_CAN_WRITE ((__force fmode_t)0x40000) | ||
| 131 | 135 | ||
| 132 | /* File was opened by fanotify and shouldn't generate fanotify events */ | 136 | /* File was opened by fanotify and shouldn't generate fanotify events */ |
| 133 | #define FMODE_NONOTIFY ((__force fmode_t)0x1000000) | 137 | #define FMODE_NONOTIFY ((__force fmode_t)0x1000000) |
| @@ -343,8 +347,7 @@ struct address_space_operations { | |||
| 343 | void (*invalidatepage) (struct page *, unsigned int, unsigned int); | 347 | void (*invalidatepage) (struct page *, unsigned int, unsigned int); |
| 344 | int (*releasepage) (struct page *, gfp_t); | 348 | int (*releasepage) (struct page *, gfp_t); |
| 345 | void (*freepage)(struct page *); | 349 | void (*freepage)(struct page *); |
| 346 | ssize_t (*direct_IO)(int, struct kiocb *, const struct iovec *iov, | 350 | ssize_t (*direct_IO)(int, struct kiocb *, struct iov_iter *iter, loff_t offset); |
| 347 | loff_t offset, unsigned long nr_segs); | ||
| 348 | int (*get_xip_mem)(struct address_space *, pgoff_t, int, | 351 | int (*get_xip_mem)(struct address_space *, pgoff_t, int, |
| 349 | void **, unsigned long *); | 352 | void **, unsigned long *); |
| 350 | /* | 353 | /* |
| @@ -1448,6 +1451,8 @@ struct block_device_operations; | |||
| 1448 | #define HAVE_COMPAT_IOCTL 1 | 1451 | #define HAVE_COMPAT_IOCTL 1 |
| 1449 | #define HAVE_UNLOCKED_IOCTL 1 | 1452 | #define HAVE_UNLOCKED_IOCTL 1 |
| 1450 | 1453 | ||
| 1454 | struct iov_iter; | ||
| 1455 | |||
| 1451 | struct file_operations { | 1456 | struct file_operations { |
| 1452 | struct module *owner; | 1457 | struct module *owner; |
| 1453 | loff_t (*llseek) (struct file *, loff_t, int); | 1458 | loff_t (*llseek) (struct file *, loff_t, int); |
| @@ -1455,6 +1460,8 @@ struct file_operations { | |||
| 1455 | ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *); | 1460 | ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *); |
| 1456 | ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t); | 1461 | ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t); |
| 1457 | ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t); | 1462 | ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t); |
| 1463 | ssize_t (*read_iter) (struct kiocb *, struct iov_iter *); | ||
| 1464 | ssize_t (*write_iter) (struct kiocb *, struct iov_iter *); | ||
| 1458 | int (*iterate) (struct file *, struct dir_context *); | 1465 | int (*iterate) (struct file *, struct dir_context *); |
| 1459 | unsigned int (*poll) (struct file *, struct poll_table_struct *); | 1466 | unsigned int (*poll) (struct file *, struct poll_table_struct *); |
| 1460 | long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long); | 1467 | long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long); |
| @@ -2404,20 +2411,18 @@ extern int generic_file_readonly_mmap(struct file *, struct vm_area_struct *); | |||
| 2404 | extern int generic_file_remap_pages(struct vm_area_struct *, unsigned long addr, | 2411 | extern int generic_file_remap_pages(struct vm_area_struct *, unsigned long addr, |
| 2405 | unsigned long size, pgoff_t pgoff); | 2412 | unsigned long size, pgoff_t pgoff); |
| 2406 | int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk); | 2413 | int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk); |
| 2407 | extern ssize_t generic_file_aio_read(struct kiocb *, const struct iovec *, unsigned long, loff_t); | 2414 | extern ssize_t generic_file_read_iter(struct kiocb *, struct iov_iter *); |
| 2408 | extern ssize_t __generic_file_aio_write(struct kiocb *, const struct iovec *, unsigned long); | 2415 | extern ssize_t __generic_file_write_iter(struct kiocb *, struct iov_iter *); |
| 2409 | extern ssize_t generic_file_aio_write(struct kiocb *, const struct iovec *, unsigned long, loff_t); | 2416 | extern ssize_t generic_file_write_iter(struct kiocb *, struct iov_iter *); |
| 2410 | extern ssize_t generic_file_direct_write(struct kiocb *, const struct iovec *, | 2417 | extern ssize_t generic_file_direct_write(struct kiocb *, struct iov_iter *, loff_t); |
| 2411 | unsigned long *, loff_t, size_t, size_t); | ||
| 2412 | extern ssize_t generic_perform_write(struct file *, struct iov_iter *, loff_t); | 2418 | extern ssize_t generic_perform_write(struct file *, struct iov_iter *, loff_t); |
| 2413 | extern ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos); | 2419 | extern ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos); |
| 2414 | extern ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos); | 2420 | extern ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos); |
| 2415 | extern int generic_segment_checks(const struct iovec *iov, | 2421 | extern ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos); |
| 2416 | unsigned long *nr_segs, size_t *count, int access_flags); | 2422 | extern ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos); |
| 2417 | 2423 | ||
| 2418 | /* fs/block_dev.c */ | 2424 | /* fs/block_dev.c */ |
| 2419 | extern ssize_t blkdev_aio_write(struct kiocb *iocb, const struct iovec *iov, | 2425 | extern ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from); |
| 2420 | unsigned long nr_segs, loff_t pos); | ||
| 2421 | extern int blkdev_fsync(struct file *filp, loff_t start, loff_t end, | 2426 | extern int blkdev_fsync(struct file *filp, loff_t start, loff_t end, |
| 2422 | int datasync); | 2427 | int datasync); |
| 2423 | extern void block_sync_page(struct page *page); | 2428 | extern void block_sync_page(struct page *page); |
| @@ -2427,7 +2432,7 @@ extern ssize_t generic_file_splice_read(struct file *, loff_t *, | |||
| 2427 | struct pipe_inode_info *, size_t, unsigned int); | 2432 | struct pipe_inode_info *, size_t, unsigned int); |
| 2428 | extern ssize_t default_file_splice_read(struct file *, loff_t *, | 2433 | extern ssize_t default_file_splice_read(struct file *, loff_t *, |
| 2429 | struct pipe_inode_info *, size_t, unsigned int); | 2434 | struct pipe_inode_info *, size_t, unsigned int); |
| 2430 | extern ssize_t generic_file_splice_write(struct pipe_inode_info *, | 2435 | extern ssize_t iter_file_splice_write(struct pipe_inode_info *, |
| 2431 | struct file *, loff_t *, size_t, unsigned int); | 2436 | struct file *, loff_t *, size_t, unsigned int); |
| 2432 | extern ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, | 2437 | extern ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, |
| 2433 | struct file *out, loff_t *, size_t len, unsigned int flags); | 2438 | struct file *out, loff_t *, size_t len, unsigned int flags); |
| @@ -2477,16 +2482,16 @@ enum { | |||
| 2477 | void dio_end_io(struct bio *bio, int error); | 2482 | void dio_end_io(struct bio *bio, int error); |
| 2478 | 2483 | ||
| 2479 | ssize_t __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode, | 2484 | ssize_t __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode, |
| 2480 | struct block_device *bdev, const struct iovec *iov, loff_t offset, | 2485 | struct block_device *bdev, struct iov_iter *iter, loff_t offset, |
| 2481 | unsigned long nr_segs, get_block_t get_block, dio_iodone_t end_io, | 2486 | get_block_t get_block, dio_iodone_t end_io, |
| 2482 | dio_submit_t submit_io, int flags); | 2487 | dio_submit_t submit_io, int flags); |
| 2483 | 2488 | ||
| 2484 | static inline ssize_t blockdev_direct_IO(int rw, struct kiocb *iocb, | 2489 | static inline ssize_t blockdev_direct_IO(int rw, struct kiocb *iocb, |
| 2485 | struct inode *inode, const struct iovec *iov, loff_t offset, | 2490 | struct inode *inode, struct iov_iter *iter, loff_t offset, |
| 2486 | unsigned long nr_segs, get_block_t get_block) | 2491 | get_block_t get_block) |
| 2487 | { | 2492 | { |
| 2488 | return __blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov, | 2493 | return __blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iter, |
| 2489 | offset, nr_segs, get_block, NULL, NULL, | 2494 | offset, get_block, NULL, NULL, |
| 2490 | DIO_LOCKING | DIO_SKIP_HOLES); | 2495 | DIO_LOCKING | DIO_SKIP_HOLES); |
| 2491 | } | 2496 | } |
| 2492 | #endif | 2497 | #endif |
| @@ -2590,6 +2595,7 @@ extern ssize_t simple_read_from_buffer(void __user *to, size_t count, | |||
| 2590 | extern ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos, | 2595 | extern ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos, |
| 2591 | const void __user *from, size_t count); | 2596 | const void __user *from, size_t count); |
| 2592 | 2597 | ||
| 2598 | extern int __generic_file_fsync(struct file *, loff_t, loff_t, int); | ||
| 2593 | extern int generic_file_fsync(struct file *, loff_t, loff_t, int); | 2599 | extern int generic_file_fsync(struct file *, loff_t, loff_t, int); |
| 2594 | 2600 | ||
| 2595 | extern int generic_check_addressable(unsigned, u64); | 2601 | extern int generic_check_addressable(unsigned, u64); |
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index ae9504b4b67d..404a686a3644 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
| @@ -62,9 +62,6 @@ typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip, | |||
| 62 | * set in the flags member. | 62 | * set in the flags member. |
| 63 | * | 63 | * |
| 64 | * ENABLED - set/unset when ftrace_ops is registered/unregistered | 64 | * ENABLED - set/unset when ftrace_ops is registered/unregistered |
| 65 | * GLOBAL - set manualy by ftrace_ops user to denote the ftrace_ops | ||
| 66 | * is part of the global tracers sharing the same filter | ||
| 67 | * via set_ftrace_* debugfs files. | ||
| 68 | * DYNAMIC - set when ftrace_ops is registered to denote dynamically | 65 | * DYNAMIC - set when ftrace_ops is registered to denote dynamically |
| 69 | * allocated ftrace_ops which need special care | 66 | * allocated ftrace_ops which need special care |
| 70 | * CONTROL - set manualy by ftrace_ops user to denote the ftrace_ops | 67 | * CONTROL - set manualy by ftrace_ops user to denote the ftrace_ops |
| @@ -96,15 +93,14 @@ typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip, | |||
| 96 | */ | 93 | */ |
| 97 | enum { | 94 | enum { |
| 98 | FTRACE_OPS_FL_ENABLED = 1 << 0, | 95 | FTRACE_OPS_FL_ENABLED = 1 << 0, |
| 99 | FTRACE_OPS_FL_GLOBAL = 1 << 1, | 96 | FTRACE_OPS_FL_DYNAMIC = 1 << 1, |
| 100 | FTRACE_OPS_FL_DYNAMIC = 1 << 2, | 97 | FTRACE_OPS_FL_CONTROL = 1 << 2, |
| 101 | FTRACE_OPS_FL_CONTROL = 1 << 3, | 98 | FTRACE_OPS_FL_SAVE_REGS = 1 << 3, |
| 102 | FTRACE_OPS_FL_SAVE_REGS = 1 << 4, | 99 | FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED = 1 << 4, |
| 103 | FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED = 1 << 5, | 100 | FTRACE_OPS_FL_RECURSION_SAFE = 1 << 5, |
| 104 | FTRACE_OPS_FL_RECURSION_SAFE = 1 << 6, | 101 | FTRACE_OPS_FL_STUB = 1 << 6, |
| 105 | FTRACE_OPS_FL_STUB = 1 << 7, | 102 | FTRACE_OPS_FL_INITIALIZED = 1 << 7, |
| 106 | FTRACE_OPS_FL_INITIALIZED = 1 << 8, | 103 | FTRACE_OPS_FL_DELETED = 1 << 8, |
| 107 | FTRACE_OPS_FL_DELETED = 1 << 9, | ||
| 108 | }; | 104 | }; |
| 109 | 105 | ||
| 110 | /* | 106 | /* |
| @@ -366,14 +362,12 @@ enum { | |||
| 366 | * IGNORE - The function is already what we want it to be | 362 | * IGNORE - The function is already what we want it to be |
| 367 | * MAKE_CALL - Start tracing the function | 363 | * MAKE_CALL - Start tracing the function |
| 368 | * MODIFY_CALL - Stop saving regs for the function | 364 | * MODIFY_CALL - Stop saving regs for the function |
| 369 | * MODIFY_CALL_REGS - Start saving regs for the function | ||
| 370 | * MAKE_NOP - Stop tracing the function | 365 | * MAKE_NOP - Stop tracing the function |
| 371 | */ | 366 | */ |
| 372 | enum { | 367 | enum { |
| 373 | FTRACE_UPDATE_IGNORE, | 368 | FTRACE_UPDATE_IGNORE, |
| 374 | FTRACE_UPDATE_MAKE_CALL, | 369 | FTRACE_UPDATE_MAKE_CALL, |
| 375 | FTRACE_UPDATE_MODIFY_CALL, | 370 | FTRACE_UPDATE_MODIFY_CALL, |
| 376 | FTRACE_UPDATE_MODIFY_CALL_REGS, | ||
| 377 | FTRACE_UPDATE_MAKE_NOP, | 371 | FTRACE_UPDATE_MAKE_NOP, |
| 378 | }; | 372 | }; |
| 379 | 373 | ||
| @@ -404,6 +398,8 @@ int ftrace_update_record(struct dyn_ftrace *rec, int enable); | |||
| 404 | int ftrace_test_record(struct dyn_ftrace *rec, int enable); | 398 | int ftrace_test_record(struct dyn_ftrace *rec, int enable); |
| 405 | void ftrace_run_stop_machine(int command); | 399 | void ftrace_run_stop_machine(int command); |
| 406 | unsigned long ftrace_location(unsigned long ip); | 400 | unsigned long ftrace_location(unsigned long ip); |
| 401 | unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec); | ||
| 402 | unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec); | ||
| 407 | 403 | ||
| 408 | extern ftrace_func_t ftrace_trace_function; | 404 | extern ftrace_func_t ftrace_trace_function; |
| 409 | 405 | ||
| @@ -616,25 +612,27 @@ static inline void __ftrace_enabled_restore(int enabled) | |||
| 616 | #endif | 612 | #endif |
| 617 | } | 613 | } |
| 618 | 614 | ||
| 619 | #ifndef HAVE_ARCH_CALLER_ADDR | 615 | /* All archs should have this, but we define it for consistency */ |
| 616 | #ifndef ftrace_return_address0 | ||
| 617 | # define ftrace_return_address0 __builtin_return_address(0) | ||
| 618 | #endif | ||
| 619 | |||
| 620 | /* Archs may use other ways for ADDR1 and beyond */ | ||
| 621 | #ifndef ftrace_return_address | ||
| 620 | # ifdef CONFIG_FRAME_POINTER | 622 | # ifdef CONFIG_FRAME_POINTER |
| 621 | # define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0)) | 623 | # define ftrace_return_address(n) __builtin_return_address(n) |
| 622 | # define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1)) | ||
| 623 | # define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2)) | ||
| 624 | # define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3)) | ||
| 625 | # define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4)) | ||
| 626 | # define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5)) | ||
| 627 | # define CALLER_ADDR6 ((unsigned long)__builtin_return_address(6)) | ||
| 628 | # else | 624 | # else |
| 629 | # define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0)) | 625 | # define ftrace_return_address(n) 0UL |
| 630 | # define CALLER_ADDR1 0UL | ||
| 631 | # define CALLER_ADDR2 0UL | ||
| 632 | # define CALLER_ADDR3 0UL | ||
| 633 | # define CALLER_ADDR4 0UL | ||
| 634 | # define CALLER_ADDR5 0UL | ||
| 635 | # define CALLER_ADDR6 0UL | ||
| 636 | # endif | 626 | # endif |
| 637 | #endif /* ifndef HAVE_ARCH_CALLER_ADDR */ | 627 | #endif |
| 628 | |||
| 629 | #define CALLER_ADDR0 ((unsigned long)ftrace_return_address0) | ||
| 630 | #define CALLER_ADDR1 ((unsigned long)ftrace_return_address(1)) | ||
| 631 | #define CALLER_ADDR2 ((unsigned long)ftrace_return_address(2)) | ||
| 632 | #define CALLER_ADDR3 ((unsigned long)ftrace_return_address(3)) | ||
| 633 | #define CALLER_ADDR4 ((unsigned long)ftrace_return_address(4)) | ||
| 634 | #define CALLER_ADDR5 ((unsigned long)ftrace_return_address(5)) | ||
| 635 | #define CALLER_ADDR6 ((unsigned long)ftrace_return_address(6)) | ||
| 638 | 636 | ||
| 639 | #ifdef CONFIG_IRQSOFF_TRACER | 637 | #ifdef CONFIG_IRQSOFF_TRACER |
| 640 | extern void time_hardirqs_on(unsigned long a0, unsigned long a1); | 638 | extern void time_hardirqs_on(unsigned long a0, unsigned long a1); |
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index d16da3e53bc7..cff3106ffe2c 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h | |||
| @@ -38,6 +38,9 @@ const char *ftrace_print_symbols_seq_u64(struct trace_seq *p, | |||
| 38 | *symbol_array); | 38 | *symbol_array); |
| 39 | #endif | 39 | #endif |
| 40 | 40 | ||
| 41 | const char *ftrace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr, | ||
| 42 | unsigned int bitmask_size); | ||
| 43 | |||
| 41 | const char *ftrace_print_hex_seq(struct trace_seq *p, | 44 | const char *ftrace_print_hex_seq(struct trace_seq *p, |
| 42 | const unsigned char *buf, int len); | 45 | const unsigned char *buf, int len); |
| 43 | 46 | ||
diff --git a/include/linux/gfp.h b/include/linux/gfp.h index 39b81dc7d01a..6eb1fb37de9a 100644 --- a/include/linux/gfp.h +++ b/include/linux/gfp.h | |||
| @@ -6,7 +6,6 @@ | |||
| 6 | #include <linux/stddef.h> | 6 | #include <linux/stddef.h> |
| 7 | #include <linux/linkage.h> | 7 | #include <linux/linkage.h> |
| 8 | #include <linux/topology.h> | 8 | #include <linux/topology.h> |
| 9 | #include <linux/mmdebug.h> | ||
| 10 | 9 | ||
| 11 | struct vm_area_struct; | 10 | struct vm_area_struct; |
| 12 | 11 | ||
| @@ -31,7 +30,6 @@ struct vm_area_struct; | |||
| 31 | #define ___GFP_HARDWALL 0x20000u | 30 | #define ___GFP_HARDWALL 0x20000u |
| 32 | #define ___GFP_THISNODE 0x40000u | 31 | #define ___GFP_THISNODE 0x40000u |
| 33 | #define ___GFP_RECLAIMABLE 0x80000u | 32 | #define ___GFP_RECLAIMABLE 0x80000u |
| 34 | #define ___GFP_KMEMCG 0x100000u | ||
| 35 | #define ___GFP_NOTRACK 0x200000u | 33 | #define ___GFP_NOTRACK 0x200000u |
| 36 | #define ___GFP_NO_KSWAPD 0x400000u | 34 | #define ___GFP_NO_KSWAPD 0x400000u |
| 37 | #define ___GFP_OTHER_NODE 0x800000u | 35 | #define ___GFP_OTHER_NODE 0x800000u |
| @@ -91,7 +89,6 @@ struct vm_area_struct; | |||
| 91 | 89 | ||
| 92 | #define __GFP_NO_KSWAPD ((__force gfp_t)___GFP_NO_KSWAPD) | 90 | #define __GFP_NO_KSWAPD ((__force gfp_t)___GFP_NO_KSWAPD) |
| 93 | #define __GFP_OTHER_NODE ((__force gfp_t)___GFP_OTHER_NODE) /* On behalf of other node */ | 91 | #define __GFP_OTHER_NODE ((__force gfp_t)___GFP_OTHER_NODE) /* On behalf of other node */ |
| 94 | #define __GFP_KMEMCG ((__force gfp_t)___GFP_KMEMCG) /* Allocation comes from a memcg-accounted resource */ | ||
| 95 | #define __GFP_WRITE ((__force gfp_t)___GFP_WRITE) /* Allocator intends to dirty page */ | 92 | #define __GFP_WRITE ((__force gfp_t)___GFP_WRITE) /* Allocator intends to dirty page */ |
| 96 | 93 | ||
| 97 | /* | 94 | /* |
| @@ -353,6 +350,10 @@ extern struct page *alloc_pages_vma(gfp_t gfp_mask, int order, | |||
| 353 | #define alloc_page_vma_node(gfp_mask, vma, addr, node) \ | 350 | #define alloc_page_vma_node(gfp_mask, vma, addr, node) \ |
| 354 | alloc_pages_vma(gfp_mask, 0, vma, addr, node) | 351 | alloc_pages_vma(gfp_mask, 0, vma, addr, node) |
| 355 | 352 | ||
| 353 | extern struct page *alloc_kmem_pages(gfp_t gfp_mask, unsigned int order); | ||
| 354 | extern struct page *alloc_kmem_pages_node(int nid, gfp_t gfp_mask, | ||
| 355 | unsigned int order); | ||
| 356 | |||
| 356 | extern unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order); | 357 | extern unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order); |
| 357 | extern unsigned long get_zeroed_page(gfp_t gfp_mask); | 358 | extern unsigned long get_zeroed_page(gfp_t gfp_mask); |
| 358 | 359 | ||
| @@ -369,11 +370,11 @@ void *alloc_pages_exact_nid(int nid, size_t size, gfp_t gfp_mask); | |||
| 369 | 370 | ||
| 370 | extern void __free_pages(struct page *page, unsigned int order); | 371 | extern void __free_pages(struct page *page, unsigned int order); |
| 371 | extern void free_pages(unsigned long addr, unsigned int order); | 372 | extern void free_pages(unsigned long addr, unsigned int order); |
| 372 | extern void free_hot_cold_page(struct page *page, int cold); | 373 | extern void free_hot_cold_page(struct page *page, bool cold); |
| 373 | extern void free_hot_cold_page_list(struct list_head *list, int cold); | 374 | extern void free_hot_cold_page_list(struct list_head *list, bool cold); |
| 374 | 375 | ||
| 375 | extern void __free_memcg_kmem_pages(struct page *page, unsigned int order); | 376 | extern void __free_kmem_pages(struct page *page, unsigned int order); |
| 376 | extern void free_memcg_kmem_pages(unsigned long addr, unsigned int order); | 377 | extern void free_kmem_pages(unsigned long addr, unsigned int order); |
| 377 | 378 | ||
| 378 | #define __free_page(page) __free_pages((page), 0) | 379 | #define __free_page(page) __free_pages((page), 0) |
| 379 | #define free_page(addr) free_pages((addr), 0) | 380 | #define free_page(addr) free_pages((addr), 0) |
diff --git a/include/linux/gpio_keys.h b/include/linux/gpio_keys.h index a7e977ff4abf..8b622468952c 100644 --- a/include/linux/gpio_keys.h +++ b/include/linux/gpio_keys.h | |||
| @@ -3,29 +3,53 @@ | |||
| 3 | 3 | ||
| 4 | struct device; | 4 | struct device; |
| 5 | 5 | ||
| 6 | /** | ||
| 7 | * struct gpio_keys_button - configuration parameters | ||
| 8 | * @code: input event code (KEY_*, SW_*) | ||
| 9 | * @gpio: %-1 if this key does not support gpio | ||
| 10 | * @active_low: %true indicates that button is considered | ||
| 11 | * depressed when gpio is low | ||
| 12 | * @desc: label that will be attached to button's gpio | ||
| 13 | * @type: input event type (%EV_KEY, %EV_SW, %EV_ABS) | ||
| 14 | * @wakeup: configure the button as a wake-up source | ||
| 15 | * @debounce_interval: debounce ticks interval in msecs | ||
| 16 | * @can_disable: %true indicates that userspace is allowed to | ||
| 17 | * disable button via sysfs | ||
| 18 | * @value: axis value for %EV_ABS | ||
| 19 | * @irq: Irq number in case of interrupt keys | ||
| 20 | */ | ||
| 6 | struct gpio_keys_button { | 21 | struct gpio_keys_button { |
| 7 | /* Configuration parameters */ | 22 | unsigned int code; |
| 8 | unsigned int code; /* input event code (KEY_*, SW_*) */ | 23 | int gpio; |
| 9 | int gpio; /* -1 if this key does not support gpio */ | ||
| 10 | int active_low; | 24 | int active_low; |
| 11 | const char *desc; | 25 | const char *desc; |
| 12 | unsigned int type; /* input event type (EV_KEY, EV_SW, EV_ABS) */ | 26 | unsigned int type; |
| 13 | int wakeup; /* configure the button as a wake-up source */ | 27 | int wakeup; |
| 14 | int debounce_interval; /* debounce ticks interval in msecs */ | 28 | int debounce_interval; |
| 15 | bool can_disable; | 29 | bool can_disable; |
| 16 | int value; /* axis value for EV_ABS */ | 30 | int value; |
| 17 | unsigned int irq; /* Irq number in case of interrupt keys */ | 31 | unsigned int irq; |
| 18 | }; | 32 | }; |
| 19 | 33 | ||
| 34 | /** | ||
| 35 | * struct gpio_keys_platform_data - platform data for gpio_keys driver | ||
| 36 | * @buttons: pointer to array of &gpio_keys_button structures | ||
| 37 | * describing buttons attached to the device | ||
| 38 | * @nbuttons: number of elements in @buttons array | ||
| 39 | * @poll_interval: polling interval in msecs - for polling driver only | ||
| 40 | * @rep: enable input subsystem auto repeat | ||
| 41 | * @enable: platform hook for enabling the device | ||
| 42 | * @disable: platform hook for disabling the device | ||
| 43 | * @name: input device name | ||
| 44 | */ | ||
| 20 | struct gpio_keys_platform_data { | 45 | struct gpio_keys_platform_data { |
| 21 | struct gpio_keys_button *buttons; | 46 | struct gpio_keys_button *buttons; |
| 22 | int nbuttons; | 47 | int nbuttons; |
| 23 | unsigned int poll_interval; /* polling interval in msecs - | 48 | unsigned int poll_interval; |
| 24 | for polling driver only */ | 49 | unsigned int rep:1; |
| 25 | unsigned int rep:1; /* enable input subsystem auto repeat */ | ||
| 26 | int (*enable)(struct device *dev); | 50 | int (*enable)(struct device *dev); |
| 27 | void (*disable)(struct device *dev); | 51 | void (*disable)(struct device *dev); |
| 28 | const char *name; /* input device name */ | 52 | const char *name; |
| 29 | }; | 53 | }; |
| 30 | 54 | ||
| 31 | #endif | 55 | #endif |
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index b65166de1d9d..255cd5cc0754 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h | |||
| @@ -343,6 +343,11 @@ static inline unsigned huge_page_shift(struct hstate *h) | |||
| 343 | return h->order + PAGE_SHIFT; | 343 | return h->order + PAGE_SHIFT; |
| 344 | } | 344 | } |
| 345 | 345 | ||
| 346 | static inline bool hstate_is_gigantic(struct hstate *h) | ||
| 347 | { | ||
| 348 | return huge_page_order(h) >= MAX_ORDER; | ||
| 349 | } | ||
| 350 | |||
| 346 | static inline unsigned int pages_per_huge_page(struct hstate *h) | 351 | static inline unsigned int pages_per_huge_page(struct hstate *h) |
| 347 | { | 352 | { |
| 348 | return 1 << h->order; | 353 | return 1 << h->order; |
| @@ -392,15 +397,13 @@ static inline pgoff_t basepage_index(struct page *page) | |||
| 392 | 397 | ||
| 393 | extern void dissolve_free_huge_pages(unsigned long start_pfn, | 398 | extern void dissolve_free_huge_pages(unsigned long start_pfn, |
| 394 | unsigned long end_pfn); | 399 | unsigned long end_pfn); |
| 395 | int pmd_huge_support(void); | 400 | static inline int hugepage_migration_supported(struct hstate *h) |
| 396 | /* | ||
| 397 | * Currently hugepage migration is enabled only for pmd-based hugepage. | ||
| 398 | * This function will be updated when hugepage migration is more widely | ||
| 399 | * supported. | ||
| 400 | */ | ||
| 401 | static inline int hugepage_migration_support(struct hstate *h) | ||
| 402 | { | 401 | { |
| 403 | return pmd_huge_support() && (huge_page_shift(h) == PMD_SHIFT); | 402 | #ifdef CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION |
| 403 | return huge_page_shift(h) == PMD_SHIFT; | ||
| 404 | #else | ||
| 405 | return 0; | ||
| 406 | #endif | ||
| 404 | } | 407 | } |
| 405 | 408 | ||
| 406 | static inline spinlock_t *huge_pte_lockptr(struct hstate *h, | 409 | static inline spinlock_t *huge_pte_lockptr(struct hstate *h, |
| @@ -450,8 +453,7 @@ static inline pgoff_t basepage_index(struct page *page) | |||
| 450 | return page->index; | 453 | return page->index; |
| 451 | } | 454 | } |
| 452 | #define dissolve_free_huge_pages(s, e) do {} while (0) | 455 | #define dissolve_free_huge_pages(s, e) do {} while (0) |
| 453 | #define pmd_huge_support() 0 | 456 | #define hugepage_migration_supported(h) 0 |
| 454 | #define hugepage_migration_support(h) 0 | ||
| 455 | 457 | ||
| 456 | static inline spinlock_t *huge_pte_lockptr(struct hstate *h, | 458 | static inline spinlock_t *huge_pte_lockptr(struct hstate *h, |
| 457 | struct mm_struct *mm, pte_t *pte) | 459 | struct mm_struct *mm, pte_t *pte) |
diff --git a/include/linux/i2c/atmel_mxt_ts.h b/include/linux/i2c/atmel_mxt_ts.h index 99e379b74398..3891dc1de21c 100644 --- a/include/linux/i2c/atmel_mxt_ts.h +++ b/include/linux/i2c/atmel_mxt_ts.h | |||
| @@ -15,35 +15,14 @@ | |||
| 15 | 15 | ||
| 16 | #include <linux/types.h> | 16 | #include <linux/types.h> |
| 17 | 17 | ||
| 18 | /* For key_map array */ | ||
| 19 | #define MXT_NUM_GPIO 4 | ||
| 20 | |||
| 21 | /* Orient */ | ||
| 22 | #define MXT_NORMAL 0x0 | ||
| 23 | #define MXT_DIAGONAL 0x1 | ||
| 24 | #define MXT_HORIZONTAL_FLIP 0x2 | ||
| 25 | #define MXT_ROTATED_90_COUNTER 0x3 | ||
| 26 | #define MXT_VERTICAL_FLIP 0x4 | ||
| 27 | #define MXT_ROTATED_90 0x5 | ||
| 28 | #define MXT_ROTATED_180 0x6 | ||
| 29 | #define MXT_DIAGONAL_COUNTER 0x7 | ||
| 30 | |||
| 31 | /* The platform data for the Atmel maXTouch touchscreen driver */ | 18 | /* The platform data for the Atmel maXTouch touchscreen driver */ |
| 32 | struct mxt_platform_data { | 19 | struct mxt_platform_data { |
| 33 | const u8 *config; | 20 | const u8 *config; |
| 34 | size_t config_length; | 21 | size_t config_length; |
| 35 | 22 | u32 config_crc; | |
| 36 | unsigned int x_line; | ||
| 37 | unsigned int y_line; | ||
| 38 | unsigned int x_size; | ||
| 39 | unsigned int y_size; | ||
| 40 | unsigned int blen; | ||
| 41 | unsigned int threshold; | ||
| 42 | unsigned int voltage; | ||
| 43 | unsigned char orient; | ||
| 44 | unsigned long irqflags; | 23 | unsigned long irqflags; |
| 45 | bool is_tp; | 24 | u8 t19_num_keys; |
| 46 | const unsigned int key_map[MXT_NUM_GPIO]; | 25 | const unsigned int *t19_keymap; |
| 47 | }; | 26 | }; |
| 48 | 27 | ||
| 49 | #endif /* __LINUX_ATMEL_MXT_TS_H */ | 28 | #endif /* __LINUX_ATMEL_MXT_TS_H */ |
diff --git a/include/linux/i2c/twl.h b/include/linux/i2c/twl.h index d2b16704624c..8cfb50f38529 100644 --- a/include/linux/i2c/twl.h +++ b/include/linux/i2c/twl.h | |||
| @@ -498,7 +498,10 @@ static inline int twl6030_mmc_card_detect(struct device *dev, int slot) | |||
| 498 | #define RES_GRP_ALL 0x7 /* All resource groups */ | 498 | #define RES_GRP_ALL 0x7 /* All resource groups */ |
| 499 | 499 | ||
| 500 | #define RES_TYPE2_R0 0x0 | 500 | #define RES_TYPE2_R0 0x0 |
| 501 | #define RES_TYPE2_R1 0x1 | ||
| 502 | #define RES_TYPE2_R2 0x2 | ||
| 501 | 503 | ||
| 504 | #define RES_TYPE_R0 0x0 | ||
| 502 | #define RES_TYPE_ALL 0x7 | 505 | #define RES_TYPE_ALL 0x7 |
| 503 | 506 | ||
| 504 | /* Resource states */ | 507 | /* Resource states */ |
| @@ -671,6 +674,7 @@ struct twl4030_power_data { | |||
| 671 | struct twl4030_script **scripts; | 674 | struct twl4030_script **scripts; |
| 672 | unsigned num; | 675 | unsigned num; |
| 673 | struct twl4030_resconfig *resource_config; | 676 | struct twl4030_resconfig *resource_config; |
| 677 | struct twl4030_resconfig *board_config; | ||
| 674 | #define TWL4030_RESCONFIG_UNDEF ((u8)-1) | 678 | #define TWL4030_RESCONFIG_UNDEF ((u8)-1) |
| 675 | bool use_poweroff; /* Board is wired for TWL poweroff */ | 679 | bool use_poweroff; /* Board is wired for TWL poweroff */ |
| 676 | }; | 680 | }; |
diff --git a/include/linux/idr.h b/include/linux/idr.h index 6af3400b9b2f..013fd9bc4cb6 100644 --- a/include/linux/idr.h +++ b/include/linux/idr.h | |||
| @@ -29,21 +29,24 @@ | |||
| 29 | 29 | ||
| 30 | struct idr_layer { | 30 | struct idr_layer { |
| 31 | int prefix; /* the ID prefix of this idr_layer */ | 31 | int prefix; /* the ID prefix of this idr_layer */ |
| 32 | DECLARE_BITMAP(bitmap, IDR_SIZE); /* A zero bit means "space here" */ | 32 | int layer; /* distance from leaf */ |
| 33 | struct idr_layer __rcu *ary[1<<IDR_BITS]; | 33 | struct idr_layer __rcu *ary[1<<IDR_BITS]; |
| 34 | int count; /* When zero, we can release it */ | 34 | int count; /* When zero, we can release it */ |
| 35 | int layer; /* distance from leaf */ | 35 | union { |
| 36 | struct rcu_head rcu_head; | 36 | /* A zero bit means "space here" */ |
| 37 | DECLARE_BITMAP(bitmap, IDR_SIZE); | ||
| 38 | struct rcu_head rcu_head; | ||
| 39 | }; | ||
| 37 | }; | 40 | }; |
| 38 | 41 | ||
| 39 | struct idr { | 42 | struct idr { |
| 40 | struct idr_layer __rcu *hint; /* the last layer allocated from */ | 43 | struct idr_layer __rcu *hint; /* the last layer allocated from */ |
| 41 | struct idr_layer __rcu *top; | 44 | struct idr_layer __rcu *top; |
| 42 | struct idr_layer *id_free; | ||
| 43 | int layers; /* only valid w/o concurrent changes */ | 45 | int layers; /* only valid w/o concurrent changes */ |
| 44 | int id_free_cnt; | ||
| 45 | int cur; /* current pos for cyclic allocation */ | 46 | int cur; /* current pos for cyclic allocation */ |
| 46 | spinlock_t lock; | 47 | spinlock_t lock; |
| 48 | int id_free_cnt; | ||
| 49 | struct idr_layer *id_free; | ||
| 47 | }; | 50 | }; |
| 48 | 51 | ||
| 49 | #define IDR_INIT(name) \ | 52 | #define IDR_INIT(name) \ |
diff --git a/include/linux/if_team.h b/include/linux/if_team.h index a899dc24be15..a6aa970758a2 100644 --- a/include/linux/if_team.h +++ b/include/linux/if_team.h | |||
| @@ -194,6 +194,7 @@ struct team { | |||
| 194 | bool user_carrier_enabled; | 194 | bool user_carrier_enabled; |
| 195 | bool queue_override_enabled; | 195 | bool queue_override_enabled; |
| 196 | struct list_head *qom_lists; /* array of queue override mapping lists */ | 196 | struct list_head *qom_lists; /* array of queue override mapping lists */ |
| 197 | bool port_mtu_change_allowed; | ||
| 197 | struct { | 198 | struct { |
| 198 | unsigned int count; | 199 | unsigned int count; |
| 199 | unsigned int interval; /* in ms */ | 200 | unsigned int interval; /* in ms */ |
diff --git a/include/linux/input-polldev.h b/include/linux/input-polldev.h index ce0b72464eb8..2465182670db 100644 --- a/include/linux/input-polldev.h +++ b/include/linux/input-polldev.h | |||
| @@ -48,9 +48,12 @@ struct input_polled_dev { | |||
| 48 | 48 | ||
| 49 | /* private: */ | 49 | /* private: */ |
| 50 | struct delayed_work work; | 50 | struct delayed_work work; |
| 51 | |||
| 52 | bool devres_managed; | ||
| 51 | }; | 53 | }; |
| 52 | 54 | ||
| 53 | struct input_polled_dev *input_allocate_polled_device(void); | 55 | struct input_polled_dev *input_allocate_polled_device(void); |
| 56 | struct input_polled_dev *devm_input_allocate_polled_device(struct device *dev); | ||
| 54 | void input_free_polled_device(struct input_polled_dev *dev); | 57 | void input_free_polled_device(struct input_polled_dev *dev); |
| 55 | int input_register_polled_device(struct input_polled_dev *dev); | 58 | int input_register_polled_device(struct input_polled_dev *dev); |
| 56 | void input_unregister_polled_device(struct input_polled_dev *dev); | 59 | void input_unregister_polled_device(struct input_polled_dev *dev); |
diff --git a/include/linux/input/pixcir_ts.h b/include/linux/input/pixcir_ts.h index 7163d91c0373..160cf353aa39 100644 --- a/include/linux/input/pixcir_ts.h +++ b/include/linux/input/pixcir_ts.h | |||
| @@ -1,10 +1,52 @@ | |||
| 1 | #ifndef _PIXCIR_I2C_TS_H | 1 | #ifndef _PIXCIR_I2C_TS_H |
| 2 | #define _PIXCIR_I2C_TS_H | 2 | #define _PIXCIR_I2C_TS_H |
| 3 | 3 | ||
| 4 | /* | ||
| 5 | * Register map | ||
| 6 | */ | ||
| 7 | #define PIXCIR_REG_POWER_MODE 51 | ||
| 8 | #define PIXCIR_REG_INT_MODE 52 | ||
| 9 | |||
| 10 | /* | ||
| 11 | * Power modes: | ||
| 12 | * active: max scan speed | ||
| 13 | * idle: lower scan speed with automatic transition to active on touch | ||
| 14 | * halt: datasheet says sleep but this is more like halt as the chip | ||
| 15 | * clocks are cut and it can only be brought out of this mode | ||
| 16 | * using the RESET pin. | ||
| 17 | */ | ||
| 18 | enum pixcir_power_mode { | ||
| 19 | PIXCIR_POWER_ACTIVE, | ||
| 20 | PIXCIR_POWER_IDLE, | ||
| 21 | PIXCIR_POWER_HALT, | ||
| 22 | }; | ||
| 23 | |||
| 24 | #define PIXCIR_POWER_MODE_MASK 0x03 | ||
| 25 | #define PIXCIR_POWER_ALLOW_IDLE (1UL << 2) | ||
| 26 | |||
| 27 | /* | ||
| 28 | * Interrupt modes: | ||
| 29 | * periodical: interrupt is asserted periodicaly | ||
| 30 | * diff coordinates: interrupt is asserted when coordinates change | ||
| 31 | * level on touch: interrupt level asserted during touch | ||
| 32 | * pulse on touch: interrupt pulse asserted druing touch | ||
| 33 | * | ||
| 34 | */ | ||
| 35 | enum pixcir_int_mode { | ||
| 36 | PIXCIR_INT_PERIODICAL, | ||
| 37 | PIXCIR_INT_DIFF_COORD, | ||
| 38 | PIXCIR_INT_LEVEL_TOUCH, | ||
| 39 | PIXCIR_INT_PULSE_TOUCH, | ||
| 40 | }; | ||
| 41 | |||
| 42 | #define PIXCIR_INT_MODE_MASK 0x03 | ||
| 43 | #define PIXCIR_INT_ENABLE (1UL << 3) | ||
| 44 | #define PIXCIR_INT_POL_HIGH (1UL << 2) | ||
| 45 | |||
| 4 | struct pixcir_ts_platform_data { | 46 | struct pixcir_ts_platform_data { |
| 5 | int (*attb_read_val)(void); | ||
| 6 | int x_max; | 47 | int x_max; |
| 7 | int y_max; | 48 | int y_max; |
| 49 | int gpio_attb; /* GPIO connected to ATTB line */ | ||
| 8 | }; | 50 | }; |
| 9 | 51 | ||
| 10 | #endif | 52 | #endif |
diff --git a/include/linux/input/touchscreen.h b/include/linux/input/touchscreen.h new file mode 100644 index 000000000000..08a5ef6e8f25 --- /dev/null +++ b/include/linux/input/touchscreen.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2014 Sebastian Reichel <sre@kernel.org> | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify it | ||
| 5 | * under the terms of the GNU General Public License version 2 as published by | ||
| 6 | * the Free Software Foundation. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #ifndef _TOUCHSCREEN_H | ||
| 10 | #define _TOUCHSCREEN_H | ||
| 11 | |||
| 12 | #include <linux/input.h> | ||
| 13 | |||
| 14 | #ifdef CONFIG_OF | ||
| 15 | void touchscreen_parse_of_params(struct input_dev *dev); | ||
| 16 | #else | ||
| 17 | static inline void touchscreen_parse_of_params(struct input_dev *dev) | ||
| 18 | { | ||
| 19 | } | ||
| 20 | #endif | ||
| 21 | |||
| 22 | #endif | ||
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index cb19f09d7e3e..698ad053d064 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
| @@ -199,6 +199,26 @@ extern int check_wakeup_irqs(void); | |||
| 199 | static inline int check_wakeup_irqs(void) { return 0; } | 199 | static inline int check_wakeup_irqs(void) { return 0; } |
| 200 | #endif | 200 | #endif |
| 201 | 201 | ||
| 202 | /** | ||
| 203 | * struct irq_affinity_notify - context for notification of IRQ affinity changes | ||
| 204 | * @irq: Interrupt to which notification applies | ||
| 205 | * @kref: Reference count, for internal use | ||
| 206 | * @work: Work item, for internal use | ||
| 207 | * @notify: Function to be called on change. This will be | ||
| 208 | * called in process context. | ||
| 209 | * @release: Function to be called on release. This will be | ||
| 210 | * called in process context. Once registered, the | ||
| 211 | * structure must only be freed when this function is | ||
| 212 | * called or later. | ||
| 213 | */ | ||
| 214 | struct irq_affinity_notify { | ||
| 215 | unsigned int irq; | ||
| 216 | struct kref kref; | ||
| 217 | struct work_struct work; | ||
| 218 | void (*notify)(struct irq_affinity_notify *, const cpumask_t *mask); | ||
| 219 | void (*release)(struct kref *ref); | ||
| 220 | }; | ||
| 221 | |||
| 202 | #if defined(CONFIG_SMP) | 222 | #if defined(CONFIG_SMP) |
| 203 | 223 | ||
| 204 | extern cpumask_var_t irq_default_affinity; | 224 | extern cpumask_var_t irq_default_affinity; |
| @@ -242,26 +262,6 @@ extern int irq_select_affinity(unsigned int irq); | |||
| 242 | 262 | ||
| 243 | extern int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m); | 263 | extern int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m); |
| 244 | 264 | ||
| 245 | /** | ||
| 246 | * struct irq_affinity_notify - context for notification of IRQ affinity changes | ||
| 247 | * @irq: Interrupt to which notification applies | ||
| 248 | * @kref: Reference count, for internal use | ||
| 249 | * @work: Work item, for internal use | ||
| 250 | * @notify: Function to be called on change. This will be | ||
| 251 | * called in process context. | ||
| 252 | * @release: Function to be called on release. This will be | ||
| 253 | * called in process context. Once registered, the | ||
| 254 | * structure must only be freed when this function is | ||
| 255 | * called or later. | ||
| 256 | */ | ||
| 257 | struct irq_affinity_notify { | ||
| 258 | unsigned int irq; | ||
| 259 | struct kref kref; | ||
| 260 | struct work_struct work; | ||
| 261 | void (*notify)(struct irq_affinity_notify *, const cpumask_t *mask); | ||
| 262 | void (*release)(struct kref *ref); | ||
| 263 | }; | ||
| 264 | |||
| 265 | extern int | 265 | extern int |
| 266 | irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify); | 266 | irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify); |
| 267 | 267 | ||
| @@ -289,6 +289,12 @@ static inline int irq_set_affinity_hint(unsigned int irq, | |||
| 289 | { | 289 | { |
| 290 | return -EINVAL; | 290 | return -EINVAL; |
| 291 | } | 291 | } |
| 292 | |||
| 293 | static inline int | ||
| 294 | irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify) | ||
| 295 | { | ||
| 296 | return 0; | ||
| 297 | } | ||
| 292 | #endif /* CONFIG_SMP */ | 298 | #endif /* CONFIG_SMP */ |
| 293 | 299 | ||
| 294 | /* | 300 | /* |
diff --git a/include/linux/irq.h b/include/linux/irq.h index 5c57efb863d0..0d998d8b01d8 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
| @@ -525,24 +525,6 @@ static inline void irq_set_percpu_devid_flags(unsigned int irq) | |||
| 525 | IRQ_NOPROBE | IRQ_PER_CPU_DEVID); | 525 | IRQ_NOPROBE | IRQ_PER_CPU_DEVID); |
| 526 | } | 526 | } |
| 527 | 527 | ||
| 528 | /* Handle dynamic irq creation and destruction */ | ||
| 529 | extern unsigned int create_irq_nr(unsigned int irq_want, int node); | ||
| 530 | extern unsigned int __create_irqs(unsigned int from, unsigned int count, | ||
| 531 | int node); | ||
| 532 | extern int create_irq(void); | ||
| 533 | extern void destroy_irq(unsigned int irq); | ||
| 534 | extern void destroy_irqs(unsigned int irq, unsigned int count); | ||
| 535 | |||
| 536 | /* | ||
| 537 | * Dynamic irq helper functions. Obsolete. Use irq_alloc_desc* and | ||
| 538 | * irq_free_desc instead. | ||
| 539 | */ | ||
| 540 | extern void dynamic_irq_cleanup(unsigned int irq); | ||
| 541 | static inline void dynamic_irq_init(unsigned int irq) | ||
| 542 | { | ||
| 543 | dynamic_irq_cleanup(irq); | ||
| 544 | } | ||
| 545 | |||
| 546 | /* Set/get chip/data for an IRQ: */ | 528 | /* Set/get chip/data for an IRQ: */ |
| 547 | extern int irq_set_chip(unsigned int irq, struct irq_chip *chip); | 529 | extern int irq_set_chip(unsigned int irq, struct irq_chip *chip); |
| 548 | extern int irq_set_handler_data(unsigned int irq, void *data); | 530 | extern int irq_set_handler_data(unsigned int irq, void *data); |
| @@ -625,17 +607,29 @@ int __irq_alloc_descs(int irq, unsigned int from, unsigned int cnt, int node, | |||
| 625 | irq_alloc_descs(-1, from, cnt, node) | 607 | irq_alloc_descs(-1, from, cnt, node) |
| 626 | 608 | ||
| 627 | void irq_free_descs(unsigned int irq, unsigned int cnt); | 609 | void irq_free_descs(unsigned int irq, unsigned int cnt); |
| 628 | int irq_reserve_irqs(unsigned int from, unsigned int cnt); | ||
| 629 | |||
| 630 | static inline void irq_free_desc(unsigned int irq) | 610 | static inline void irq_free_desc(unsigned int irq) |
| 631 | { | 611 | { |
| 632 | irq_free_descs(irq, 1); | 612 | irq_free_descs(irq, 1); |
| 633 | } | 613 | } |
| 634 | 614 | ||
| 635 | static inline int irq_reserve_irq(unsigned int irq) | 615 | #ifdef CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ |
| 616 | unsigned int irq_alloc_hwirqs(int cnt, int node); | ||
| 617 | static inline unsigned int irq_alloc_hwirq(int node) | ||
| 618 | { | ||
| 619 | return irq_alloc_hwirqs(1, node); | ||
| 620 | } | ||
| 621 | void irq_free_hwirqs(unsigned int from, int cnt); | ||
| 622 | static inline void irq_free_hwirq(unsigned int irq) | ||
| 636 | { | 623 | { |
| 637 | return irq_reserve_irqs(irq, 1); | 624 | return irq_free_hwirqs(irq, 1); |
| 638 | } | 625 | } |
| 626 | int arch_setup_hwirq(unsigned int irq, int node); | ||
| 627 | void arch_teardown_hwirq(unsigned int irq); | ||
| 628 | #endif | ||
| 629 | |||
| 630 | #ifdef CONFIG_GENERIC_IRQ_LEGACY | ||
| 631 | void irq_init_desc(unsigned int irq); | ||
| 632 | #endif | ||
| 639 | 633 | ||
| 640 | #ifndef irq_reg_writel | 634 | #ifndef irq_reg_writel |
| 641 | # define irq_reg_writel(val, addr) writel(val, addr) | 635 | # define irq_reg_writel(val, addr) writel(val, addr) |
diff --git a/include/linux/irqchip/arm-gic.h b/include/linux/irqchip/arm-gic.h index 7ed92d0560d5..45e2d8c15bd2 100644 --- a/include/linux/irqchip/arm-gic.h +++ b/include/linux/irqchip/arm-gic.h | |||
| @@ -21,6 +21,8 @@ | |||
| 21 | #define GIC_CPU_ACTIVEPRIO 0xd0 | 21 | #define GIC_CPU_ACTIVEPRIO 0xd0 |
| 22 | #define GIC_CPU_IDENT 0xfc | 22 | #define GIC_CPU_IDENT 0xfc |
| 23 | 23 | ||
| 24 | #define GICC_IAR_INT_ID_MASK 0x3ff | ||
| 25 | |||
| 24 | #define GIC_DIST_CTRL 0x000 | 26 | #define GIC_DIST_CTRL 0x000 |
| 25 | #define GIC_DIST_CTR 0x004 | 27 | #define GIC_DIST_CTR 0x004 |
| 26 | #define GIC_DIST_IGROUP 0x080 | 28 | #define GIC_DIST_IGROUP 0x080 |
diff --git a/include/linux/irqdesc.h b/include/linux/irqdesc.h index 26e2661d3935..472c021a2d4f 100644 --- a/include/linux/irqdesc.h +++ b/include/linux/irqdesc.h | |||
| @@ -27,6 +27,8 @@ struct irq_desc; | |||
| 27 | * @irq_count: stats field to detect stalled irqs | 27 | * @irq_count: stats field to detect stalled irqs |
| 28 | * @last_unhandled: aging timer for unhandled count | 28 | * @last_unhandled: aging timer for unhandled count |
| 29 | * @irqs_unhandled: stats field for spurious unhandled interrupts | 29 | * @irqs_unhandled: stats field for spurious unhandled interrupts |
| 30 | * @threads_handled: stats field for deferred spurious detection of threaded handlers | ||
| 31 | * @threads_handled_last: comparator field for deferred spurious detection of theraded handlers | ||
| 30 | * @lock: locking for SMP | 32 | * @lock: locking for SMP |
| 31 | * @affinity_hint: hint to user space for preferred irq affinity | 33 | * @affinity_hint: hint to user space for preferred irq affinity |
| 32 | * @affinity_notify: context for notification of affinity changes | 34 | * @affinity_notify: context for notification of affinity changes |
| @@ -52,6 +54,8 @@ struct irq_desc { | |||
| 52 | unsigned int irq_count; /* For detecting broken IRQs */ | 54 | unsigned int irq_count; /* For detecting broken IRQs */ |
| 53 | unsigned long last_unhandled; /* Aging timer for unhandled count */ | 55 | unsigned long last_unhandled; /* Aging timer for unhandled count */ |
| 54 | unsigned int irqs_unhandled; | 56 | unsigned int irqs_unhandled; |
| 57 | atomic_t threads_handled; | ||
| 58 | int threads_handled_last; | ||
| 55 | raw_spinlock_t lock; | 59 | raw_spinlock_t lock; |
| 56 | struct cpumask *percpu_enabled; | 60 | struct cpumask *percpu_enabled; |
| 57 | #ifdef CONFIG_SMP | 61 | #ifdef CONFIG_SMP |
diff --git a/include/linux/jump_label.h b/include/linux/jump_label.h index 5c1dfb2a9e73..784304b222b3 100644 --- a/include/linux/jump_label.h +++ b/include/linux/jump_label.h | |||
| @@ -69,6 +69,10 @@ struct static_key { | |||
| 69 | 69 | ||
| 70 | # include <asm/jump_label.h> | 70 | # include <asm/jump_label.h> |
| 71 | # define HAVE_JUMP_LABEL | 71 | # define HAVE_JUMP_LABEL |
| 72 | #else | ||
| 73 | struct static_key { | ||
| 74 | atomic_t enabled; | ||
| 75 | }; | ||
| 72 | #endif /* CC_HAVE_ASM_GOTO && CONFIG_JUMP_LABEL */ | 76 | #endif /* CC_HAVE_ASM_GOTO && CONFIG_JUMP_LABEL */ |
| 73 | 77 | ||
| 74 | enum jump_label_type { | 78 | enum jump_label_type { |
| @@ -79,6 +83,12 @@ enum jump_label_type { | |||
| 79 | struct module; | 83 | struct module; |
| 80 | 84 | ||
| 81 | #include <linux/atomic.h> | 85 | #include <linux/atomic.h> |
| 86 | |||
| 87 | static inline int static_key_count(struct static_key *key) | ||
| 88 | { | ||
| 89 | return atomic_read(&key->enabled); | ||
| 90 | } | ||
| 91 | |||
| 82 | #ifdef HAVE_JUMP_LABEL | 92 | #ifdef HAVE_JUMP_LABEL |
| 83 | 93 | ||
| 84 | #define JUMP_LABEL_TYPE_FALSE_BRANCH 0UL | 94 | #define JUMP_LABEL_TYPE_FALSE_BRANCH 0UL |
| @@ -134,10 +144,6 @@ extern void jump_label_apply_nops(struct module *mod); | |||
| 134 | 144 | ||
| 135 | #else /* !HAVE_JUMP_LABEL */ | 145 | #else /* !HAVE_JUMP_LABEL */ |
| 136 | 146 | ||
| 137 | struct static_key { | ||
| 138 | atomic_t enabled; | ||
| 139 | }; | ||
| 140 | |||
| 141 | static __always_inline void jump_label_init(void) | 147 | static __always_inline void jump_label_init(void) |
| 142 | { | 148 | { |
| 143 | static_key_initialized = true; | 149 | static_key_initialized = true; |
| @@ -145,14 +151,14 @@ static __always_inline void jump_label_init(void) | |||
| 145 | 151 | ||
| 146 | static __always_inline bool static_key_false(struct static_key *key) | 152 | static __always_inline bool static_key_false(struct static_key *key) |
| 147 | { | 153 | { |
| 148 | if (unlikely(atomic_read(&key->enabled) > 0)) | 154 | if (unlikely(static_key_count(key) > 0)) |
| 149 | return true; | 155 | return true; |
| 150 | return false; | 156 | return false; |
| 151 | } | 157 | } |
| 152 | 158 | ||
| 153 | static __always_inline bool static_key_true(struct static_key *key) | 159 | static __always_inline bool static_key_true(struct static_key *key) |
| 154 | { | 160 | { |
| 155 | if (likely(atomic_read(&key->enabled) > 0)) | 161 | if (likely(static_key_count(key) > 0)) |
| 156 | return true; | 162 | return true; |
| 157 | return false; | 163 | return false; |
| 158 | } | 164 | } |
| @@ -194,7 +200,7 @@ static inline int jump_label_apply_nops(struct module *mod) | |||
| 194 | 200 | ||
| 195 | static inline bool static_key_enabled(struct static_key *key) | 201 | static inline bool static_key_enabled(struct static_key *key) |
| 196 | { | 202 | { |
| 197 | return (atomic_read(&key->enabled) > 0); | 203 | return static_key_count(key) > 0; |
| 198 | } | 204 | } |
| 199 | 205 | ||
| 200 | #endif /* _LINUX_JUMP_LABEL_H */ | 206 | #endif /* _LINUX_JUMP_LABEL_H */ |
diff --git a/include/linux/key.h b/include/linux/key.h index 80d677483e31..017b0826642f 100644 --- a/include/linux/key.h +++ b/include/linux/key.h | |||
| @@ -309,6 +309,17 @@ static inline key_serial_t key_serial(const struct key *key) | |||
| 309 | 309 | ||
| 310 | extern void key_set_timeout(struct key *, unsigned); | 310 | extern void key_set_timeout(struct key *, unsigned); |
| 311 | 311 | ||
| 312 | /* | ||
| 313 | * The permissions required on a key that we're looking up. | ||
| 314 | */ | ||
| 315 | #define KEY_NEED_VIEW 0x01 /* Require permission to view attributes */ | ||
| 316 | #define KEY_NEED_READ 0x02 /* Require permission to read content */ | ||
| 317 | #define KEY_NEED_WRITE 0x04 /* Require permission to update / modify */ | ||
| 318 | #define KEY_NEED_SEARCH 0x08 /* Require permission to search (keyring) or find (key) */ | ||
| 319 | #define KEY_NEED_LINK 0x10 /* Require permission to link */ | ||
| 320 | #define KEY_NEED_SETATTR 0x20 /* Require permission to change attributes */ | ||
| 321 | #define KEY_NEED_ALL 0x3f /* All the above permissions */ | ||
| 322 | |||
| 312 | /** | 323 | /** |
| 313 | * key_is_instantiated - Determine if a key has been positively instantiated | 324 | * key_is_instantiated - Determine if a key has been positively instantiated |
| 314 | * @key: The key to check. | 325 | * @key: The key to check. |
| @@ -332,7 +343,7 @@ do { \ | |||
| 332 | } while (0) | 343 | } while (0) |
| 333 | 344 | ||
| 334 | #ifdef CONFIG_SYSCTL | 345 | #ifdef CONFIG_SYSCTL |
| 335 | extern ctl_table key_sysctls[]; | 346 | extern struct ctl_table key_sysctls[]; |
| 336 | #endif | 347 | #endif |
| 337 | /* | 348 | /* |
| 338 | * the userspace interface | 349 | * the userspace interface |
diff --git a/include/linux/kmemleak.h b/include/linux/kmemleak.h index 5bb424659c04..057e95971014 100644 --- a/include/linux/kmemleak.h +++ b/include/linux/kmemleak.h | |||
| @@ -30,6 +30,7 @@ extern void kmemleak_alloc_percpu(const void __percpu *ptr, size_t size) __ref; | |||
| 30 | extern void kmemleak_free(const void *ptr) __ref; | 30 | extern void kmemleak_free(const void *ptr) __ref; |
| 31 | extern void kmemleak_free_part(const void *ptr, size_t size) __ref; | 31 | extern void kmemleak_free_part(const void *ptr, size_t size) __ref; |
| 32 | extern void kmemleak_free_percpu(const void __percpu *ptr) __ref; | 32 | extern void kmemleak_free_percpu(const void __percpu *ptr) __ref; |
| 33 | extern void kmemleak_update_trace(const void *ptr) __ref; | ||
| 33 | extern void kmemleak_not_leak(const void *ptr) __ref; | 34 | extern void kmemleak_not_leak(const void *ptr) __ref; |
| 34 | extern void kmemleak_ignore(const void *ptr) __ref; | 35 | extern void kmemleak_ignore(const void *ptr) __ref; |
| 35 | extern void kmemleak_scan_area(const void *ptr, size_t size, gfp_t gfp) __ref; | 36 | extern void kmemleak_scan_area(const void *ptr, size_t size, gfp_t gfp) __ref; |
| @@ -83,6 +84,9 @@ static inline void kmemleak_free_recursive(const void *ptr, unsigned long flags) | |||
| 83 | static inline void kmemleak_free_percpu(const void __percpu *ptr) | 84 | static inline void kmemleak_free_percpu(const void __percpu *ptr) |
| 84 | { | 85 | { |
| 85 | } | 86 | } |
| 87 | static inline void kmemleak_update_trace(const void *ptr) | ||
| 88 | { | ||
| 89 | } | ||
| 86 | static inline void kmemleak_not_leak(const void *ptr) | 90 | static inline void kmemleak_not_leak(const void *ptr) |
| 87 | { | 91 | { |
| 88 | } | 92 | } |
diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h index 925eaf28fca9..7bd2ad01e39c 100644 --- a/include/linux/kprobes.h +++ b/include/linux/kprobes.h | |||
| @@ -355,7 +355,7 @@ static inline void reset_current_kprobe(void) | |||
| 355 | 355 | ||
| 356 | static inline struct kprobe_ctlblk *get_kprobe_ctlblk(void) | 356 | static inline struct kprobe_ctlblk *get_kprobe_ctlblk(void) |
| 357 | { | 357 | { |
| 358 | return (&__get_cpu_var(kprobe_ctlblk)); | 358 | return this_cpu_ptr(&kprobe_ctlblk); |
| 359 | } | 359 | } |
| 360 | 360 | ||
| 361 | int register_kprobe(struct kprobe *p); | 361 | int register_kprobe(struct kprobe *p); |
diff --git a/include/linux/lockd/lockd.h b/include/linux/lockd/lockd.h index dcaad79f54ed..219d79627c05 100644 --- a/include/linux/lockd/lockd.h +++ b/include/linux/lockd/lockd.h | |||
| @@ -17,13 +17,13 @@ | |||
| 17 | #include <linux/fs.h> | 17 | #include <linux/fs.h> |
| 18 | #include <linux/kref.h> | 18 | #include <linux/kref.h> |
| 19 | #include <linux/utsname.h> | 19 | #include <linux/utsname.h> |
| 20 | #include <linux/nfsd/nfsfh.h> | ||
| 21 | #include <linux/lockd/bind.h> | 20 | #include <linux/lockd/bind.h> |
| 22 | #include <linux/lockd/xdr.h> | 21 | #include <linux/lockd/xdr.h> |
| 23 | #ifdef CONFIG_LOCKD_V4 | 22 | #ifdef CONFIG_LOCKD_V4 |
| 24 | #include <linux/lockd/xdr4.h> | 23 | #include <linux/lockd/xdr4.h> |
| 25 | #endif | 24 | #endif |
| 26 | #include <linux/lockd/debug.h> | 25 | #include <linux/lockd/debug.h> |
| 26 | #include <linux/sunrpc/svc.h> | ||
| 27 | 27 | ||
| 28 | /* | 28 | /* |
| 29 | * Version string | 29 | * Version string |
diff --git a/include/linux/mc146818rtc.h b/include/linux/mc146818rtc.h index 2f4e957af656..433e0c74d643 100644 --- a/include/linux/mc146818rtc.h +++ b/include/linux/mc146818rtc.h | |||
| @@ -31,6 +31,10 @@ struct cmos_rtc_board_info { | |||
| 31 | void (*wake_on)(struct device *dev); | 31 | void (*wake_on)(struct device *dev); |
| 32 | void (*wake_off)(struct device *dev); | 32 | void (*wake_off)(struct device *dev); |
| 33 | 33 | ||
| 34 | u32 flags; | ||
| 35 | #define CMOS_RTC_FLAGS_NOFREQ (1 << 0) | ||
| 36 | int address_space; | ||
| 37 | |||
| 34 | u8 rtc_day_alarm; /* zero, or register index */ | 38 | u8 rtc_day_alarm; /* zero, or register index */ |
| 35 | u8 rtc_mon_alarm; /* zero, or register index */ | 39 | u8 rtc_mon_alarm; /* zero, or register index */ |
| 36 | u8 rtc_century; /* zero, or register index */ | 40 | u8 rtc_century; /* zero, or register index */ |
diff --git a/include/linux/memblock.h b/include/linux/memblock.h index 73dc382e72d8..b660e05b63d4 100644 --- a/include/linux/memblock.h +++ b/include/linux/memblock.h | |||
| @@ -272,6 +272,8 @@ static inline bool memblock_bottom_up(void) { return false; } | |||
| 272 | #define MEMBLOCK_ALLOC_ANYWHERE (~(phys_addr_t)0) | 272 | #define MEMBLOCK_ALLOC_ANYWHERE (~(phys_addr_t)0) |
| 273 | #define MEMBLOCK_ALLOC_ACCESSIBLE 0 | 273 | #define MEMBLOCK_ALLOC_ACCESSIBLE 0 |
| 274 | 274 | ||
| 275 | phys_addr_t __init memblock_alloc_range(phys_addr_t size, phys_addr_t align, | ||
| 276 | phys_addr_t start, phys_addr_t end); | ||
| 275 | phys_addr_t memblock_alloc_base(phys_addr_t size, phys_addr_t align, | 277 | phys_addr_t memblock_alloc_base(phys_addr_t size, phys_addr_t align, |
| 276 | phys_addr_t max_addr); | 278 | phys_addr_t max_addr); |
| 277 | phys_addr_t __memblock_alloc_base(phys_addr_t size, phys_addr_t align, | 279 | phys_addr_t __memblock_alloc_base(phys_addr_t size, phys_addr_t align, |
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index b569b8be5c5a..eb65d29516ca 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h | |||
| @@ -492,13 +492,9 @@ void __memcg_kmem_uncharge_pages(struct page *page, int order); | |||
| 492 | 492 | ||
| 493 | int memcg_cache_id(struct mem_cgroup *memcg); | 493 | int memcg_cache_id(struct mem_cgroup *memcg); |
| 494 | 494 | ||
| 495 | char *memcg_create_cache_name(struct mem_cgroup *memcg, | ||
| 496 | struct kmem_cache *root_cache); | ||
| 497 | int memcg_alloc_cache_params(struct mem_cgroup *memcg, struct kmem_cache *s, | 495 | int memcg_alloc_cache_params(struct mem_cgroup *memcg, struct kmem_cache *s, |
| 498 | struct kmem_cache *root_cache); | 496 | struct kmem_cache *root_cache); |
| 499 | void memcg_free_cache_params(struct kmem_cache *s); | 497 | void memcg_free_cache_params(struct kmem_cache *s); |
| 500 | void memcg_register_cache(struct kmem_cache *s); | ||
| 501 | void memcg_unregister_cache(struct kmem_cache *s); | ||
| 502 | 498 | ||
| 503 | int memcg_update_cache_size(struct kmem_cache *s, int num_groups); | 499 | int memcg_update_cache_size(struct kmem_cache *s, int num_groups); |
| 504 | void memcg_update_array_size(int num_groups); | 500 | void memcg_update_array_size(int num_groups); |
| @@ -506,8 +502,10 @@ void memcg_update_array_size(int num_groups); | |||
| 506 | struct kmem_cache * | 502 | struct kmem_cache * |
| 507 | __memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp); | 503 | __memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp); |
| 508 | 504 | ||
| 509 | void mem_cgroup_destroy_cache(struct kmem_cache *cachep); | 505 | int __memcg_charge_slab(struct kmem_cache *cachep, gfp_t gfp, int order); |
| 510 | int __kmem_cache_destroy_memcg_children(struct kmem_cache *s); | 506 | void __memcg_uncharge_slab(struct kmem_cache *cachep, int order); |
| 507 | |||
| 508 | int __memcg_cleanup_cache_params(struct kmem_cache *s); | ||
| 511 | 509 | ||
| 512 | /** | 510 | /** |
| 513 | * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed. | 511 | * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed. |
| @@ -534,7 +532,7 @@ memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order) | |||
| 534 | * res_counter_charge_nofail, but we hope those allocations are rare, | 532 | * res_counter_charge_nofail, but we hope those allocations are rare, |
| 535 | * and won't be worth the trouble. | 533 | * and won't be worth the trouble. |
| 536 | */ | 534 | */ |
| 537 | if (!(gfp & __GFP_KMEMCG) || (gfp & __GFP_NOFAIL)) | 535 | if (gfp & __GFP_NOFAIL) |
| 538 | return true; | 536 | return true; |
| 539 | if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD)) | 537 | if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD)) |
| 540 | return true; | 538 | return true; |
| @@ -583,17 +581,7 @@ memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order) | |||
| 583 | * @cachep: the original global kmem cache | 581 | * @cachep: the original global kmem cache |
| 584 | * @gfp: allocation flags. | 582 | * @gfp: allocation flags. |
| 585 | * | 583 | * |
| 586 | * This function assumes that the task allocating, which determines the memcg | 584 | * All memory allocated from a per-memcg cache is charged to the owner memcg. |
| 587 | * in the page allocator, belongs to the same cgroup throughout the whole | ||
| 588 | * process. Misacounting can happen if the task calls memcg_kmem_get_cache() | ||
| 589 | * while belonging to a cgroup, and later on changes. This is considered | ||
| 590 | * acceptable, and should only happen upon task migration. | ||
| 591 | * | ||
| 592 | * Before the cache is created by the memcg core, there is also a possible | ||
| 593 | * imbalance: the task belongs to a memcg, but the cache being allocated from | ||
| 594 | * is the global cache, since the child cache is not yet guaranteed to be | ||
| 595 | * ready. This case is also fine, since in this case the GFP_KMEMCG will not be | ||
| 596 | * passed and the page allocator will not attempt any cgroup accounting. | ||
| 597 | */ | 585 | */ |
| 598 | static __always_inline struct kmem_cache * | 586 | static __always_inline struct kmem_cache * |
| 599 | memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) | 587 | memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) |
| @@ -648,14 +636,6 @@ static inline void memcg_free_cache_params(struct kmem_cache *s) | |||
| 648 | { | 636 | { |
| 649 | } | 637 | } |
| 650 | 638 | ||
| 651 | static inline void memcg_register_cache(struct kmem_cache *s) | ||
| 652 | { | ||
| 653 | } | ||
| 654 | |||
| 655 | static inline void memcg_unregister_cache(struct kmem_cache *s) | ||
| 656 | { | ||
| 657 | } | ||
| 658 | |||
| 659 | static inline struct kmem_cache * | 639 | static inline struct kmem_cache * |
| 660 | memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) | 640 | memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) |
| 661 | { | 641 | { |
diff --git a/include/linux/memory_hotplug.h b/include/linux/memory_hotplug.h index 4ca3d951fe91..010d125bffbf 100644 --- a/include/linux/memory_hotplug.h +++ b/include/linux/memory_hotplug.h | |||
| @@ -187,14 +187,8 @@ extern void put_page_bootmem(struct page *page); | |||
| 187 | extern void get_page_bootmem(unsigned long ingo, struct page *page, | 187 | extern void get_page_bootmem(unsigned long ingo, struct page *page, |
| 188 | unsigned long type); | 188 | unsigned long type); |
| 189 | 189 | ||
| 190 | /* | 190 | void get_online_mems(void); |
| 191 | * Lock for memory hotplug guarantees 1) all callbacks for memory hotplug | 191 | void put_online_mems(void); |
| 192 | * notifier will be called under this. 2) offline/online/add/remove memory | ||
| 193 | * will not run simultaneously. | ||
| 194 | */ | ||
| 195 | |||
| 196 | void lock_memory_hotplug(void); | ||
| 197 | void unlock_memory_hotplug(void); | ||
| 198 | 192 | ||
| 199 | #else /* ! CONFIG_MEMORY_HOTPLUG */ | 193 | #else /* ! CONFIG_MEMORY_HOTPLUG */ |
| 200 | /* | 194 | /* |
| @@ -232,8 +226,8 @@ static inline int try_online_node(int nid) | |||
| 232 | return 0; | 226 | return 0; |
| 233 | } | 227 | } |
| 234 | 228 | ||
| 235 | static inline void lock_memory_hotplug(void) {} | 229 | static inline void get_online_mems(void) {} |
| 236 | static inline void unlock_memory_hotplug(void) {} | 230 | static inline void put_online_mems(void) {} |
| 237 | 231 | ||
| 238 | #endif /* ! CONFIG_MEMORY_HOTPLUG */ | 232 | #endif /* ! CONFIG_MEMORY_HOTPLUG */ |
| 239 | 233 | ||
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 3c1b968da0ca..f230a978e6ba 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h | |||
| @@ -175,6 +175,12 @@ static inline int vma_migratable(struct vm_area_struct *vma) | |||
| 175 | { | 175 | { |
| 176 | if (vma->vm_flags & (VM_IO | VM_PFNMAP)) | 176 | if (vma->vm_flags & (VM_IO | VM_PFNMAP)) |
| 177 | return 0; | 177 | return 0; |
| 178 | |||
| 179 | #ifndef CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION | ||
| 180 | if (vma->vm_flags & VM_HUGETLB) | ||
| 181 | return 0; | ||
| 182 | #endif | ||
| 183 | |||
| 178 | /* | 184 | /* |
| 179 | * Migration allocates pages in the highest zone. If we cannot | 185 | * Migration allocates pages in the highest zone. If we cannot |
| 180 | * do so then migration (at least from node to node) is not | 186 | * do so then migration (at least from node to node) is not |
diff --git a/include/linux/mfd/abx500.h b/include/linux/mfd/abx500.h index 3301b2031c8d..552cc1d61cc7 100644 --- a/include/linux/mfd/abx500.h +++ b/include/linux/mfd/abx500.h | |||
| @@ -330,7 +330,6 @@ int abx500_mask_and_set_register_interruptible(struct device *dev, u8 bank, | |||
| 330 | int abx500_get_chip_id(struct device *dev); | 330 | int abx500_get_chip_id(struct device *dev); |
| 331 | int abx500_event_registers_startup_state_get(struct device *dev, u8 *event); | 331 | int abx500_event_registers_startup_state_get(struct device *dev, u8 *event); |
| 332 | int abx500_startup_irq_enabled(struct device *dev, unsigned int irq); | 332 | int abx500_startup_irq_enabled(struct device *dev, unsigned int irq); |
| 333 | void abx500_dump_all_banks(void); | ||
| 334 | 333 | ||
| 335 | struct abx500_ops { | 334 | struct abx500_ops { |
| 336 | int (*get_chip_id) (struct device *); | 335 | int (*get_chip_id) (struct device *); |
diff --git a/include/linux/mfd/arizona/registers.h b/include/linux/mfd/arizona/registers.h index 7b35c21170d5..7204d8138b24 100644 --- a/include/linux/mfd/arizona/registers.h +++ b/include/linux/mfd/arizona/registers.h | |||
| @@ -42,12 +42,14 @@ | |||
| 42 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_2 0x62 | 42 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_2 0x62 |
| 43 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_3 0x63 | 43 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_3 0x63 |
| 44 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_4 0x64 | 44 | #define ARIZONA_SAMPLE_RATE_SEQUENCE_SELECT_4 0x64 |
| 45 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_1 0x68 | 45 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_1 0x66 |
| 46 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_2 0x69 | 46 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_2 0x67 |
| 47 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_3 0x6A | 47 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_3 0x68 |
| 48 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_4 0x6B | 48 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_4 0x69 |
| 49 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_5 0x6C | 49 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_5 0x6A |
| 50 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_6 0x6D | 50 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_6 0x6B |
| 51 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_7 0x6C | ||
| 52 | #define ARIZONA_ALWAYS_ON_TRIGGERS_SEQUENCE_SELECT_8 0x6D | ||
| 51 | #define ARIZONA_COMFORT_NOISE_GENERATOR 0x70 | 53 | #define ARIZONA_COMFORT_NOISE_GENERATOR 0x70 |
| 52 | #define ARIZONA_HAPTICS_CONTROL_1 0x90 | 54 | #define ARIZONA_HAPTICS_CONTROL_1 0x90 |
| 53 | #define ARIZONA_HAPTICS_CONTROL_2 0x91 | 55 | #define ARIZONA_HAPTICS_CONTROL_2 0x91 |
diff --git a/include/linux/mfd/axp20x.h b/include/linux/mfd/axp20x.h new file mode 100644 index 000000000000..d0e31a2287ac --- /dev/null +++ b/include/linux/mfd/axp20x.h | |||
| @@ -0,0 +1,180 @@ | |||
| 1 | /* | ||
| 2 | * Functions and registers to access AXP20X power management chip. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2013, Carlo Caione <carlo@caione.org> | ||
| 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_AXP20X_H | ||
| 12 | #define __LINUX_MFD_AXP20X_H | ||
| 13 | |||
| 14 | enum { | ||
| 15 | AXP202_ID = 0, | ||
| 16 | AXP209_ID, | ||
| 17 | }; | ||
| 18 | |||
| 19 | #define AXP20X_DATACACHE(m) (0x04 + (m)) | ||
| 20 | |||
| 21 | /* Power supply */ | ||
| 22 | #define AXP20X_PWR_INPUT_STATUS 0x00 | ||
| 23 | #define AXP20X_PWR_OP_MODE 0x01 | ||
| 24 | #define AXP20X_USB_OTG_STATUS 0x02 | ||
| 25 | #define AXP20X_PWR_OUT_CTRL 0x12 | ||
| 26 | #define AXP20X_DCDC2_V_OUT 0x23 | ||
| 27 | #define AXP20X_DCDC2_LDO3_V_SCAL 0x25 | ||
| 28 | #define AXP20X_DCDC3_V_OUT 0x27 | ||
| 29 | #define AXP20X_LDO24_V_OUT 0x28 | ||
| 30 | #define AXP20X_LDO3_V_OUT 0x29 | ||
| 31 | #define AXP20X_VBUS_IPSOUT_MGMT 0x30 | ||
| 32 | #define AXP20X_V_OFF 0x31 | ||
| 33 | #define AXP20X_OFF_CTRL 0x32 | ||
| 34 | #define AXP20X_CHRG_CTRL1 0x33 | ||
| 35 | #define AXP20X_CHRG_CTRL2 0x34 | ||
| 36 | #define AXP20X_CHRG_BAK_CTRL 0x35 | ||
| 37 | #define AXP20X_PEK_KEY 0x36 | ||
| 38 | #define AXP20X_DCDC_FREQ 0x37 | ||
| 39 | #define AXP20X_V_LTF_CHRG 0x38 | ||
| 40 | #define AXP20X_V_HTF_CHRG 0x39 | ||
| 41 | #define AXP20X_APS_WARN_L1 0x3a | ||
| 42 | #define AXP20X_APS_WARN_L2 0x3b | ||
| 43 | #define AXP20X_V_LTF_DISCHRG 0x3c | ||
| 44 | #define AXP20X_V_HTF_DISCHRG 0x3d | ||
| 45 | |||
| 46 | /* Interrupt */ | ||
| 47 | #define AXP20X_IRQ1_EN 0x40 | ||
| 48 | #define AXP20X_IRQ2_EN 0x41 | ||
| 49 | #define AXP20X_IRQ3_EN 0x42 | ||
| 50 | #define AXP20X_IRQ4_EN 0x43 | ||
| 51 | #define AXP20X_IRQ5_EN 0x44 | ||
| 52 | #define AXP20X_IRQ1_STATE 0x48 | ||
| 53 | #define AXP20X_IRQ2_STATE 0x49 | ||
| 54 | #define AXP20X_IRQ3_STATE 0x4a | ||
| 55 | #define AXP20X_IRQ4_STATE 0x4b | ||
| 56 | #define AXP20X_IRQ5_STATE 0x4c | ||
| 57 | |||
| 58 | /* ADC */ | ||
| 59 | #define AXP20X_ACIN_V_ADC_H 0x56 | ||
| 60 | #define AXP20X_ACIN_V_ADC_L 0x57 | ||
| 61 | #define AXP20X_ACIN_I_ADC_H 0x58 | ||
| 62 | #define AXP20X_ACIN_I_ADC_L 0x59 | ||
| 63 | #define AXP20X_VBUS_V_ADC_H 0x5a | ||
| 64 | #define AXP20X_VBUS_V_ADC_L 0x5b | ||
| 65 | #define AXP20X_VBUS_I_ADC_H 0x5c | ||
| 66 | #define AXP20X_VBUS_I_ADC_L 0x5d | ||
| 67 | #define AXP20X_TEMP_ADC_H 0x5e | ||
| 68 | #define AXP20X_TEMP_ADC_L 0x5f | ||
| 69 | #define AXP20X_TS_IN_H 0x62 | ||
| 70 | #define AXP20X_TS_IN_L 0x63 | ||
| 71 | #define AXP20X_GPIO0_V_ADC_H 0x64 | ||
| 72 | #define AXP20X_GPIO0_V_ADC_L 0x65 | ||
| 73 | #define AXP20X_GPIO1_V_ADC_H 0x66 | ||
| 74 | #define AXP20X_GPIO1_V_ADC_L 0x67 | ||
| 75 | #define AXP20X_PWR_BATT_H 0x70 | ||
| 76 | #define AXP20X_PWR_BATT_M 0x71 | ||
| 77 | #define AXP20X_PWR_BATT_L 0x72 | ||
| 78 | #define AXP20X_BATT_V_H 0x78 | ||
| 79 | #define AXP20X_BATT_V_L 0x79 | ||
| 80 | #define AXP20X_BATT_CHRG_I_H 0x7a | ||
| 81 | #define AXP20X_BATT_CHRG_I_L 0x7b | ||
| 82 | #define AXP20X_BATT_DISCHRG_I_H 0x7c | ||
| 83 | #define AXP20X_BATT_DISCHRG_I_L 0x7d | ||
| 84 | #define AXP20X_IPSOUT_V_HIGH_H 0x7e | ||
| 85 | #define AXP20X_IPSOUT_V_HIGH_L 0x7f | ||
| 86 | |||
| 87 | /* Power supply */ | ||
| 88 | #define AXP20X_DCDC_MODE 0x80 | ||
| 89 | #define AXP20X_ADC_EN1 0x82 | ||
| 90 | #define AXP20X_ADC_EN2 0x83 | ||
| 91 | #define AXP20X_ADC_RATE 0x84 | ||
| 92 | #define AXP20X_GPIO10_IN_RANGE 0x85 | ||
| 93 | #define AXP20X_GPIO1_ADC_IRQ_RIS 0x86 | ||
| 94 | #define AXP20X_GPIO1_ADC_IRQ_FAL 0x87 | ||
| 95 | #define AXP20X_TIMER_CTRL 0x8a | ||
| 96 | #define AXP20X_VBUS_MON 0x8b | ||
| 97 | #define AXP20X_OVER_TMP 0x8f | ||
| 98 | |||
| 99 | /* GPIO */ | ||
| 100 | #define AXP20X_GPIO0_CTRL 0x90 | ||
| 101 | #define AXP20X_LDO5_V_OUT 0x91 | ||
| 102 | #define AXP20X_GPIO1_CTRL 0x92 | ||
| 103 | #define AXP20X_GPIO2_CTRL 0x93 | ||
| 104 | #define AXP20X_GPIO20_SS 0x94 | ||
| 105 | #define AXP20X_GPIO3_CTRL 0x95 | ||
| 106 | |||
| 107 | /* Battery */ | ||
| 108 | #define AXP20X_CHRG_CC_31_24 0xb0 | ||
| 109 | #define AXP20X_CHRG_CC_23_16 0xb1 | ||
| 110 | #define AXP20X_CHRG_CC_15_8 0xb2 | ||
| 111 | #define AXP20X_CHRG_CC_7_0 0xb3 | ||
| 112 | #define AXP20X_DISCHRG_CC_31_24 0xb4 | ||
| 113 | #define AXP20X_DISCHRG_CC_23_16 0xb5 | ||
| 114 | #define AXP20X_DISCHRG_CC_15_8 0xb6 | ||
| 115 | #define AXP20X_DISCHRG_CC_7_0 0xb7 | ||
| 116 | #define AXP20X_CC_CTRL 0xb8 | ||
| 117 | #define AXP20X_FG_RES 0xb9 | ||
| 118 | |||
| 119 | /* Regulators IDs */ | ||
| 120 | enum { | ||
| 121 | AXP20X_LDO1 = 0, | ||
| 122 | AXP20X_LDO2, | ||
| 123 | AXP20X_LDO3, | ||
| 124 | AXP20X_LDO4, | ||
| 125 | AXP20X_LDO5, | ||
| 126 | AXP20X_DCDC2, | ||
| 127 | AXP20X_DCDC3, | ||
| 128 | AXP20X_REG_ID_MAX, | ||
| 129 | }; | ||
| 130 | |||
| 131 | /* IRQs */ | ||
| 132 | enum { | ||
| 133 | AXP20X_IRQ_ACIN_OVER_V = 1, | ||
| 134 | AXP20X_IRQ_ACIN_PLUGIN, | ||
| 135 | AXP20X_IRQ_ACIN_REMOVAL, | ||
| 136 | AXP20X_IRQ_VBUS_OVER_V, | ||
| 137 | AXP20X_IRQ_VBUS_PLUGIN, | ||
| 138 | AXP20X_IRQ_VBUS_REMOVAL, | ||
| 139 | AXP20X_IRQ_VBUS_V_LOW, | ||
| 140 | AXP20X_IRQ_BATT_PLUGIN, | ||
| 141 | AXP20X_IRQ_BATT_REMOVAL, | ||
| 142 | AXP20X_IRQ_BATT_ENT_ACT_MODE, | ||
| 143 | AXP20X_IRQ_BATT_EXIT_ACT_MODE, | ||
| 144 | AXP20X_IRQ_CHARG, | ||
| 145 | AXP20X_IRQ_CHARG_DONE, | ||
| 146 | AXP20X_IRQ_BATT_TEMP_HIGH, | ||
| 147 | AXP20X_IRQ_BATT_TEMP_LOW, | ||
| 148 | AXP20X_IRQ_DIE_TEMP_HIGH, | ||
| 149 | AXP20X_IRQ_CHARG_I_LOW, | ||
| 150 | AXP20X_IRQ_DCDC1_V_LONG, | ||
| 151 | AXP20X_IRQ_DCDC2_V_LONG, | ||
| 152 | AXP20X_IRQ_DCDC3_V_LONG, | ||
| 153 | AXP20X_IRQ_PEK_SHORT = 22, | ||
| 154 | AXP20X_IRQ_PEK_LONG, | ||
| 155 | AXP20X_IRQ_N_OE_PWR_ON, | ||
| 156 | AXP20X_IRQ_N_OE_PWR_OFF, | ||
| 157 | AXP20X_IRQ_VBUS_VALID, | ||
| 158 | AXP20X_IRQ_VBUS_NOT_VALID, | ||
| 159 | AXP20X_IRQ_VBUS_SESS_VALID, | ||
| 160 | AXP20X_IRQ_VBUS_SESS_END, | ||
| 161 | AXP20X_IRQ_LOW_PWR_LVL1, | ||
| 162 | AXP20X_IRQ_LOW_PWR_LVL2, | ||
| 163 | AXP20X_IRQ_TIMER, | ||
| 164 | AXP20X_IRQ_PEK_RIS_EDGE, | ||
| 165 | AXP20X_IRQ_PEK_FAL_EDGE, | ||
| 166 | AXP20X_IRQ_GPIO3_INPUT, | ||
| 167 | AXP20X_IRQ_GPIO2_INPUT, | ||
| 168 | AXP20X_IRQ_GPIO1_INPUT, | ||
| 169 | AXP20X_IRQ_GPIO0_INPUT, | ||
| 170 | }; | ||
| 171 | |||
| 172 | struct axp20x_dev { | ||
| 173 | struct device *dev; | ||
| 174 | struct i2c_client *i2c_client; | ||
| 175 | struct regmap *regmap; | ||
| 176 | struct regmap_irq_chip_data *regmap_irqc; | ||
| 177 | long variant; | ||
| 178 | }; | ||
| 179 | |||
| 180 | #endif /* __LINUX_MFD_AXP20X_H */ | ||
diff --git a/include/linux/mfd/cros_ec.h b/include/linux/mfd/cros_ec.h index 032af7fc5b2e..887ef4f7bef7 100644 --- a/include/linux/mfd/cros_ec.h +++ b/include/linux/mfd/cros_ec.h | |||
| @@ -29,8 +29,8 @@ enum { | |||
| 29 | EC_MSG_RX_PROTO_BYTES = 3, | 29 | EC_MSG_RX_PROTO_BYTES = 3, |
| 30 | 30 | ||
| 31 | /* Max length of messages */ | 31 | /* Max length of messages */ |
| 32 | EC_MSG_BYTES = EC_HOST_PARAM_SIZE + EC_MSG_TX_PROTO_BYTES, | 32 | EC_MSG_BYTES = EC_PROTO2_MAX_PARAM_SIZE + |
| 33 | 33 | EC_MSG_TX_PROTO_BYTES, | |
| 34 | }; | 34 | }; |
| 35 | 35 | ||
| 36 | /** | 36 | /** |
diff --git a/include/linux/mfd/cros_ec_commands.h b/include/linux/mfd/cros_ec_commands.h index 86fd06953bcd..7853a6410d14 100644 --- a/include/linux/mfd/cros_ec_commands.h +++ b/include/linux/mfd/cros_ec_commands.h | |||
| @@ -24,25 +24,12 @@ | |||
| 24 | #define __CROS_EC_COMMANDS_H | 24 | #define __CROS_EC_COMMANDS_H |
| 25 | 25 | ||
| 26 | /* | 26 | /* |
| 27 | * Protocol overview | 27 | * Current version of this protocol |
| 28 | * | 28 | * |
| 29 | * request: CMD [ P0 P1 P2 ... Pn S ] | 29 | * TODO(crosbug.com/p/11223): This is effectively useless; protocol is |
| 30 | * response: ERR [ P0 P1 P2 ... Pn S ] | 30 | * determined in other ways. Remove this once the kernel code no longer |
| 31 | * | 31 | * depends on it. |
| 32 | * where the bytes are defined as follow : | ||
| 33 | * - CMD is the command code. (defined by EC_CMD_ constants) | ||
| 34 | * - ERR is the error code. (defined by EC_RES_ constants) | ||
| 35 | * - Px is the optional payload. | ||
| 36 | * it is not sent if the error code is not success. | ||
| 37 | * (defined by ec_params_ and ec_response_ structures) | ||
| 38 | * - S is the checksum which is the sum of all payload bytes. | ||
| 39 | * | ||
| 40 | * On LPC, CMD and ERR are sent/received at EC_LPC_ADDR_KERNEL|USER_CMD | ||
| 41 | * and the payloads are sent/received at EC_LPC_ADDR_KERNEL|USER_PARAM. | ||
| 42 | * On I2C, all bytes are sent serially in the same message. | ||
| 43 | */ | 32 | */ |
| 44 | |||
| 45 | /* Current version of this protocol */ | ||
| 46 | #define EC_PROTO_VERSION 0x00000002 | 33 | #define EC_PROTO_VERSION 0x00000002 |
| 47 | 34 | ||
| 48 | /* Command version mask */ | 35 | /* Command version mask */ |
| @@ -57,13 +44,19 @@ | |||
| 57 | #define EC_LPC_ADDR_HOST_CMD 0x204 | 44 | #define EC_LPC_ADDR_HOST_CMD 0x204 |
| 58 | 45 | ||
| 59 | /* I/O addresses for host command args and params */ | 46 | /* I/O addresses for host command args and params */ |
| 60 | #define EC_LPC_ADDR_HOST_ARGS 0x800 | 47 | /* Protocol version 2 */ |
| 61 | #define EC_LPC_ADDR_HOST_PARAM 0x804 | 48 | #define EC_LPC_ADDR_HOST_ARGS 0x800 /* And 0x801, 0x802, 0x803 */ |
| 62 | #define EC_HOST_PARAM_SIZE 0x0fc /* Size of param area in bytes */ | 49 | #define EC_LPC_ADDR_HOST_PARAM 0x804 /* For version 2 params; size is |
| 63 | 50 | * EC_PROTO2_MAX_PARAM_SIZE */ | |
| 64 | /* I/O addresses for host command params, old interface */ | 51 | /* Protocol version 3 */ |
| 65 | #define EC_LPC_ADDR_OLD_PARAM 0x880 | 52 | #define EC_LPC_ADDR_HOST_PACKET 0x800 /* Offset of version 3 packet */ |
| 66 | #define EC_OLD_PARAM_SIZE 0x080 /* Size of param area in bytes */ | 53 | #define EC_LPC_HOST_PACKET_SIZE 0x100 /* Max size of version 3 packet */ |
| 54 | |||
| 55 | /* The actual block is 0x800-0x8ff, but some BIOSes think it's 0x880-0x8ff | ||
| 56 | * and they tell the kernel that so we have to think of it as two parts. */ | ||
| 57 | #define EC_HOST_CMD_REGION0 0x800 | ||
| 58 | #define EC_HOST_CMD_REGION1 0x880 | ||
| 59 | #define EC_HOST_CMD_REGION_SIZE 0x80 | ||
| 67 | 60 | ||
| 68 | /* EC command register bit functions */ | 61 | /* EC command register bit functions */ |
| 69 | #define EC_LPC_CMDR_DATA (1 << 0) /* Data ready for host to read */ | 62 | #define EC_LPC_CMDR_DATA (1 << 0) /* Data ready for host to read */ |
| @@ -79,18 +72,22 @@ | |||
| 79 | #define EC_MEMMAP_TEXT_MAX 8 /* Size of a string in the memory map */ | 72 | #define EC_MEMMAP_TEXT_MAX 8 /* Size of a string in the memory map */ |
| 80 | 73 | ||
| 81 | /* The offset address of each type of data in mapped memory. */ | 74 | /* The offset address of each type of data in mapped memory. */ |
| 82 | #define EC_MEMMAP_TEMP_SENSOR 0x00 /* Temp sensors */ | 75 | #define EC_MEMMAP_TEMP_SENSOR 0x00 /* Temp sensors 0x00 - 0x0f */ |
| 83 | #define EC_MEMMAP_FAN 0x10 /* Fan speeds */ | 76 | #define EC_MEMMAP_FAN 0x10 /* Fan speeds 0x10 - 0x17 */ |
| 84 | #define EC_MEMMAP_TEMP_SENSOR_B 0x18 /* Temp sensors (second set) */ | 77 | #define EC_MEMMAP_TEMP_SENSOR_B 0x18 /* More temp sensors 0x18 - 0x1f */ |
| 85 | #define EC_MEMMAP_ID 0x20 /* 'E' 'C' */ | 78 | #define EC_MEMMAP_ID 0x20 /* 0x20 == 'E', 0x21 == 'C' */ |
| 86 | #define EC_MEMMAP_ID_VERSION 0x22 /* Version of data in 0x20 - 0x2f */ | 79 | #define EC_MEMMAP_ID_VERSION 0x22 /* Version of data in 0x20 - 0x2f */ |
| 87 | #define EC_MEMMAP_THERMAL_VERSION 0x23 /* Version of data in 0x00 - 0x1f */ | 80 | #define EC_MEMMAP_THERMAL_VERSION 0x23 /* Version of data in 0x00 - 0x1f */ |
| 88 | #define EC_MEMMAP_BATTERY_VERSION 0x24 /* Version of data in 0x40 - 0x7f */ | 81 | #define EC_MEMMAP_BATTERY_VERSION 0x24 /* Version of data in 0x40 - 0x7f */ |
| 89 | #define EC_MEMMAP_SWITCHES_VERSION 0x25 /* Version of data in 0x30 - 0x33 */ | 82 | #define EC_MEMMAP_SWITCHES_VERSION 0x25 /* Version of data in 0x30 - 0x33 */ |
| 90 | #define EC_MEMMAP_EVENTS_VERSION 0x26 /* Version of data in 0x34 - 0x3f */ | 83 | #define EC_MEMMAP_EVENTS_VERSION 0x26 /* Version of data in 0x34 - 0x3f */ |
| 91 | #define EC_MEMMAP_HOST_CMD_FLAGS 0x27 /* Host command interface flags */ | 84 | #define EC_MEMMAP_HOST_CMD_FLAGS 0x27 /* Host cmd interface flags (8 bits) */ |
| 92 | #define EC_MEMMAP_SWITCHES 0x30 | 85 | /* Unused 0x28 - 0x2f */ |
| 93 | #define EC_MEMMAP_HOST_EVENTS 0x34 | 86 | #define EC_MEMMAP_SWITCHES 0x30 /* 8 bits */ |
| 87 | /* Unused 0x31 - 0x33 */ | ||
| 88 | #define EC_MEMMAP_HOST_EVENTS 0x34 /* 32 bits */ | ||
| 89 | /* Reserve 0x38 - 0x3f for additional host event-related stuff */ | ||
| 90 | /* Battery values are all 32 bits */ | ||
| 94 | #define EC_MEMMAP_BATT_VOLT 0x40 /* Battery Present Voltage */ | 91 | #define EC_MEMMAP_BATT_VOLT 0x40 /* Battery Present Voltage */ |
| 95 | #define EC_MEMMAP_BATT_RATE 0x44 /* Battery Present Rate */ | 92 | #define EC_MEMMAP_BATT_RATE 0x44 /* Battery Present Rate */ |
| 96 | #define EC_MEMMAP_BATT_CAP 0x48 /* Battery Remaining Capacity */ | 93 | #define EC_MEMMAP_BATT_CAP 0x48 /* Battery Remaining Capacity */ |
| @@ -99,10 +96,24 @@ | |||
| 99 | #define EC_MEMMAP_BATT_DVLT 0x54 /* Battery Design Voltage */ | 96 | #define EC_MEMMAP_BATT_DVLT 0x54 /* Battery Design Voltage */ |
| 100 | #define EC_MEMMAP_BATT_LFCC 0x58 /* Battery Last Full Charge Capacity */ | 97 | #define EC_MEMMAP_BATT_LFCC 0x58 /* Battery Last Full Charge Capacity */ |
| 101 | #define EC_MEMMAP_BATT_CCNT 0x5c /* Battery Cycle Count */ | 98 | #define EC_MEMMAP_BATT_CCNT 0x5c /* Battery Cycle Count */ |
| 99 | /* Strings are all 8 bytes (EC_MEMMAP_TEXT_MAX) */ | ||
| 102 | #define EC_MEMMAP_BATT_MFGR 0x60 /* Battery Manufacturer String */ | 100 | #define EC_MEMMAP_BATT_MFGR 0x60 /* Battery Manufacturer String */ |
| 103 | #define EC_MEMMAP_BATT_MODEL 0x68 /* Battery Model Number String */ | 101 | #define EC_MEMMAP_BATT_MODEL 0x68 /* Battery Model Number String */ |
| 104 | #define EC_MEMMAP_BATT_SERIAL 0x70 /* Battery Serial Number String */ | 102 | #define EC_MEMMAP_BATT_SERIAL 0x70 /* Battery Serial Number String */ |
| 105 | #define EC_MEMMAP_BATT_TYPE 0x78 /* Battery Type String */ | 103 | #define EC_MEMMAP_BATT_TYPE 0x78 /* Battery Type String */ |
| 104 | #define EC_MEMMAP_ALS 0x80 /* ALS readings in lux (2 X 16 bits) */ | ||
| 105 | /* Unused 0x84 - 0x8f */ | ||
| 106 | #define EC_MEMMAP_ACC_STATUS 0x90 /* Accelerometer status (8 bits )*/ | ||
| 107 | /* Unused 0x91 */ | ||
| 108 | #define EC_MEMMAP_ACC_DATA 0x92 /* Accelerometer data 0x92 - 0x9f */ | ||
| 109 | #define EC_MEMMAP_GYRO_DATA 0xa0 /* Gyroscope data 0xa0 - 0xa5 */ | ||
| 110 | /* Unused 0xa6 - 0xfe (remember, 0xff is NOT part of the memmap region) */ | ||
| 111 | |||
| 112 | |||
| 113 | /* Define the format of the accelerometer mapped memory status byte. */ | ||
| 114 | #define EC_MEMMAP_ACC_STATUS_SAMPLE_ID_MASK 0x0f | ||
| 115 | #define EC_MEMMAP_ACC_STATUS_BUSY_BIT (1 << 4) | ||
| 116 | #define EC_MEMMAP_ACC_STATUS_PRESENCE_BIT (1 << 7) | ||
| 106 | 117 | ||
| 107 | /* Number of temp sensors at EC_MEMMAP_TEMP_SENSOR */ | 118 | /* Number of temp sensors at EC_MEMMAP_TEMP_SENSOR */ |
| 108 | #define EC_TEMP_SENSOR_ENTRIES 16 | 119 | #define EC_TEMP_SENSOR_ENTRIES 16 |
| @@ -112,6 +123,8 @@ | |||
| 112 | * Valid only if EC_MEMMAP_THERMAL_VERSION returns >= 2. | 123 | * Valid only if EC_MEMMAP_THERMAL_VERSION returns >= 2. |
| 113 | */ | 124 | */ |
| 114 | #define EC_TEMP_SENSOR_B_ENTRIES 8 | 125 | #define EC_TEMP_SENSOR_B_ENTRIES 8 |
| 126 | |||
| 127 | /* Special values for mapped temperature sensors */ | ||
| 115 | #define EC_TEMP_SENSOR_NOT_PRESENT 0xff | 128 | #define EC_TEMP_SENSOR_NOT_PRESENT 0xff |
| 116 | #define EC_TEMP_SENSOR_ERROR 0xfe | 129 | #define EC_TEMP_SENSOR_ERROR 0xfe |
| 117 | #define EC_TEMP_SENSOR_NOT_POWERED 0xfd | 130 | #define EC_TEMP_SENSOR_NOT_POWERED 0xfd |
| @@ -122,6 +135,18 @@ | |||
| 122 | */ | 135 | */ |
| 123 | #define EC_TEMP_SENSOR_OFFSET 200 | 136 | #define EC_TEMP_SENSOR_OFFSET 200 |
| 124 | 137 | ||
| 138 | /* | ||
| 139 | * Number of ALS readings at EC_MEMMAP_ALS | ||
| 140 | */ | ||
| 141 | #define EC_ALS_ENTRIES 2 | ||
| 142 | |||
| 143 | /* | ||
| 144 | * The default value a temperature sensor will return when it is present but | ||
| 145 | * has not been read this boot. This is a reasonable number to avoid | ||
| 146 | * triggering alarms on the host. | ||
| 147 | */ | ||
| 148 | #define EC_TEMP_SENSOR_DEFAULT (296 - EC_TEMP_SENSOR_OFFSET) | ||
| 149 | |||
| 125 | #define EC_FAN_SPEED_ENTRIES 4 /* Number of fans at EC_MEMMAP_FAN */ | 150 | #define EC_FAN_SPEED_ENTRIES 4 /* Number of fans at EC_MEMMAP_FAN */ |
| 126 | #define EC_FAN_SPEED_NOT_PRESENT 0xffff /* Entry not present */ | 151 | #define EC_FAN_SPEED_NOT_PRESENT 0xffff /* Entry not present */ |
| 127 | #define EC_FAN_SPEED_STALLED 0xfffe /* Fan stalled */ | 152 | #define EC_FAN_SPEED_STALLED 0xfffe /* Fan stalled */ |
| @@ -137,8 +162,8 @@ | |||
| 137 | #define EC_SWITCH_LID_OPEN 0x01 | 162 | #define EC_SWITCH_LID_OPEN 0x01 |
| 138 | #define EC_SWITCH_POWER_BUTTON_PRESSED 0x02 | 163 | #define EC_SWITCH_POWER_BUTTON_PRESSED 0x02 |
| 139 | #define EC_SWITCH_WRITE_PROTECT_DISABLED 0x04 | 164 | #define EC_SWITCH_WRITE_PROTECT_DISABLED 0x04 |
| 140 | /* Recovery requested via keyboard */ | 165 | /* Was recovery requested via keyboard; now unused. */ |
| 141 | #define EC_SWITCH_KEYBOARD_RECOVERY 0x08 | 166 | #define EC_SWITCH_IGNORE1 0x08 |
| 142 | /* Recovery requested via dedicated signal (from servo board) */ | 167 | /* Recovery requested via dedicated signal (from servo board) */ |
| 143 | #define EC_SWITCH_DEDICATED_RECOVERY 0x10 | 168 | #define EC_SWITCH_DEDICATED_RECOVERY 0x10 |
| 144 | /* Was fake developer mode switch; now unused. Remove in next refactor. */ | 169 | /* Was fake developer mode switch; now unused. Remove in next refactor. */ |
| @@ -147,10 +172,15 @@ | |||
| 147 | /* Host command interface flags */ | 172 | /* Host command interface flags */ |
| 148 | /* Host command interface supports LPC args (LPC interface only) */ | 173 | /* Host command interface supports LPC args (LPC interface only) */ |
| 149 | #define EC_HOST_CMD_FLAG_LPC_ARGS_SUPPORTED 0x01 | 174 | #define EC_HOST_CMD_FLAG_LPC_ARGS_SUPPORTED 0x01 |
| 175 | /* Host command interface supports version 3 protocol */ | ||
| 176 | #define EC_HOST_CMD_FLAG_VERSION_3 0x02 | ||
| 150 | 177 | ||
| 151 | /* Wireless switch flags */ | 178 | /* Wireless switch flags */ |
| 152 | #define EC_WIRELESS_SWITCH_WLAN 0x01 | 179 | #define EC_WIRELESS_SWITCH_ALL ~0x00 /* All flags */ |
| 153 | #define EC_WIRELESS_SWITCH_BLUETOOTH 0x02 | 180 | #define EC_WIRELESS_SWITCH_WLAN 0x01 /* WLAN radio */ |
| 181 | #define EC_WIRELESS_SWITCH_BLUETOOTH 0x02 /* Bluetooth radio */ | ||
| 182 | #define EC_WIRELESS_SWITCH_WWAN 0x04 /* WWAN power */ | ||
| 183 | #define EC_WIRELESS_SWITCH_WLAN_POWER 0x08 /* WLAN power */ | ||
| 154 | 184 | ||
| 155 | /* | 185 | /* |
| 156 | * This header file is used in coreboot both in C and ACPI code. The ACPI code | 186 | * This header file is used in coreboot both in C and ACPI code. The ACPI code |
| @@ -159,6 +189,14 @@ | |||
| 159 | */ | 189 | */ |
| 160 | #ifndef __ACPI__ | 190 | #ifndef __ACPI__ |
| 161 | 191 | ||
| 192 | /* | ||
| 193 | * Define __packed if someone hasn't beat us to it. Linux kernel style | ||
| 194 | * checking prefers __packed over __attribute__((packed)). | ||
| 195 | */ | ||
| 196 | #ifndef __packed | ||
| 197 | #define __packed __attribute__((packed)) | ||
| 198 | #endif | ||
| 199 | |||
| 162 | /* LPC command status byte masks */ | 200 | /* LPC command status byte masks */ |
| 163 | /* EC has written a byte in the data register and host hasn't read it yet */ | 201 | /* EC has written a byte in the data register and host hasn't read it yet */ |
| 164 | #define EC_LPC_STATUS_TO_HOST 0x01 | 202 | #define EC_LPC_STATUS_TO_HOST 0x01 |
| @@ -198,6 +236,9 @@ enum ec_status { | |||
| 198 | EC_RES_UNAVAILABLE = 9, /* No response available */ | 236 | EC_RES_UNAVAILABLE = 9, /* No response available */ |
| 199 | EC_RES_TIMEOUT = 10, /* We got a timeout */ | 237 | EC_RES_TIMEOUT = 10, /* We got a timeout */ |
| 200 | EC_RES_OVERFLOW = 11, /* Table / data overflow */ | 238 | EC_RES_OVERFLOW = 11, /* Table / data overflow */ |
| 239 | EC_RES_INVALID_HEADER = 12, /* Header contains invalid data */ | ||
| 240 | EC_RES_REQUEST_TRUNCATED = 13, /* Didn't get the entire request */ | ||
| 241 | EC_RES_RESPONSE_TOO_BIG = 14 /* Response was too big to handle */ | ||
| 201 | }; | 242 | }; |
| 202 | 243 | ||
| 203 | /* | 244 | /* |
| @@ -235,6 +276,16 @@ enum host_event_code { | |||
| 235 | /* Shutdown due to battery level too low */ | 276 | /* Shutdown due to battery level too low */ |
| 236 | EC_HOST_EVENT_BATTERY_SHUTDOWN = 17, | 277 | EC_HOST_EVENT_BATTERY_SHUTDOWN = 17, |
| 237 | 278 | ||
| 279 | /* Suggest that the AP throttle itself */ | ||
| 280 | EC_HOST_EVENT_THROTTLE_START = 18, | ||
| 281 | /* Suggest that the AP resume normal speed */ | ||
| 282 | EC_HOST_EVENT_THROTTLE_STOP = 19, | ||
| 283 | |||
| 284 | /* Hang detect logic detected a hang and host event timeout expired */ | ||
| 285 | EC_HOST_EVENT_HANG_DETECT = 20, | ||
| 286 | /* Hang detect logic detected a hang and warm rebooted the AP */ | ||
| 287 | EC_HOST_EVENT_HANG_REBOOT = 21, | ||
| 288 | |||
| 238 | /* | 289 | /* |
| 239 | * The high bit of the event mask is not used as a host event code. If | 290 | * The high bit of the event mask is not used as a host event code. If |
| 240 | * it reads back as set, then the entire event mask should be | 291 | * it reads back as set, then the entire event mask should be |
| @@ -279,6 +330,188 @@ struct ec_lpc_host_args { | |||
| 279 | */ | 330 | */ |
| 280 | #define EC_HOST_ARGS_FLAG_TO_HOST 0x02 | 331 | #define EC_HOST_ARGS_FLAG_TO_HOST 0x02 |
| 281 | 332 | ||
| 333 | /*****************************************************************************/ | ||
| 334 | /* | ||
| 335 | * Byte codes returned by EC over SPI interface. | ||
| 336 | * | ||
| 337 | * These can be used by the AP to debug the EC interface, and to determine | ||
| 338 | * when the EC is not in a state where it will ever get around to responding | ||
| 339 | * to the AP. | ||
| 340 | * | ||
| 341 | * Example of sequence of bytes read from EC for a current good transfer: | ||
| 342 | * 1. - - AP asserts chip select (CS#) | ||
| 343 | * 2. EC_SPI_OLD_READY - AP sends first byte(s) of request | ||
| 344 | * 3. - - EC starts handling CS# interrupt | ||
| 345 | * 4. EC_SPI_RECEIVING - AP sends remaining byte(s) of request | ||
| 346 | * 5. EC_SPI_PROCESSING - EC starts processing request; AP is clocking in | ||
| 347 | * bytes looking for EC_SPI_FRAME_START | ||
| 348 | * 6. - - EC finishes processing and sets up response | ||
| 349 | * 7. EC_SPI_FRAME_START - AP reads frame byte | ||
| 350 | * 8. (response packet) - AP reads response packet | ||
| 351 | * 9. EC_SPI_PAST_END - Any additional bytes read by AP | ||
| 352 | * 10 - - AP deasserts chip select | ||
| 353 | * 11 - - EC processes CS# interrupt and sets up DMA for | ||
| 354 | * next request | ||
| 355 | * | ||
| 356 | * If the AP is waiting for EC_SPI_FRAME_START and sees any value other than | ||
| 357 | * the following byte values: | ||
| 358 | * EC_SPI_OLD_READY | ||
| 359 | * EC_SPI_RX_READY | ||
| 360 | * EC_SPI_RECEIVING | ||
| 361 | * EC_SPI_PROCESSING | ||
| 362 | * | ||
| 363 | * Then the EC found an error in the request, or was not ready for the request | ||
| 364 | * and lost data. The AP should give up waiting for EC_SPI_FRAME_START, | ||
| 365 | * because the EC is unable to tell when the AP is done sending its request. | ||
| 366 | */ | ||
| 367 | |||
| 368 | /* | ||
| 369 | * Framing byte which precedes a response packet from the EC. After sending a | ||
| 370 | * request, the AP will clock in bytes until it sees the framing byte, then | ||
| 371 | * clock in the response packet. | ||
| 372 | */ | ||
| 373 | #define EC_SPI_FRAME_START 0xec | ||
| 374 | |||
| 375 | /* | ||
| 376 | * Padding bytes which are clocked out after the end of a response packet. | ||
| 377 | */ | ||
| 378 | #define EC_SPI_PAST_END 0xed | ||
| 379 | |||
| 380 | /* | ||
| 381 | * EC is ready to receive, and has ignored the byte sent by the AP. EC expects | ||
| 382 | * that the AP will send a valid packet header (starting with | ||
| 383 | * EC_COMMAND_PROTOCOL_3) in the next 32 bytes. | ||
| 384 | */ | ||
| 385 | #define EC_SPI_RX_READY 0xf8 | ||
| 386 | |||
| 387 | /* | ||
| 388 | * EC has started receiving the request from the AP, but hasn't started | ||
| 389 | * processing it yet. | ||
| 390 | */ | ||
| 391 | #define EC_SPI_RECEIVING 0xf9 | ||
| 392 | |||
| 393 | /* EC has received the entire request from the AP and is processing it. */ | ||
| 394 | #define EC_SPI_PROCESSING 0xfa | ||
| 395 | |||
| 396 | /* | ||
| 397 | * EC received bad data from the AP, such as a packet header with an invalid | ||
| 398 | * length. EC will ignore all data until chip select deasserts. | ||
| 399 | */ | ||
| 400 | #define EC_SPI_RX_BAD_DATA 0xfb | ||
| 401 | |||
| 402 | /* | ||
| 403 | * EC received data from the AP before it was ready. That is, the AP asserted | ||
| 404 | * chip select and started clocking data before the EC was ready to receive it. | ||
| 405 | * EC will ignore all data until chip select deasserts. | ||
| 406 | */ | ||
| 407 | #define EC_SPI_NOT_READY 0xfc | ||
| 408 | |||
| 409 | /* | ||
| 410 | * EC was ready to receive a request from the AP. EC has treated the byte sent | ||
| 411 | * by the AP as part of a request packet, or (for old-style ECs) is processing | ||
| 412 | * a fully received packet but is not ready to respond yet. | ||
| 413 | */ | ||
| 414 | #define EC_SPI_OLD_READY 0xfd | ||
| 415 | |||
| 416 | /*****************************************************************************/ | ||
| 417 | |||
| 418 | /* | ||
| 419 | * Protocol version 2 for I2C and SPI send a request this way: | ||
| 420 | * | ||
| 421 | * 0 EC_CMD_VERSION0 + (command version) | ||
| 422 | * 1 Command number | ||
| 423 | * 2 Length of params = N | ||
| 424 | * 3..N+2 Params, if any | ||
| 425 | * N+3 8-bit checksum of bytes 0..N+2 | ||
| 426 | * | ||
| 427 | * The corresponding response is: | ||
| 428 | * | ||
| 429 | * 0 Result code (EC_RES_*) | ||
| 430 | * 1 Length of params = M | ||
| 431 | * 2..M+1 Params, if any | ||
| 432 | * M+2 8-bit checksum of bytes 0..M+1 | ||
| 433 | */ | ||
| 434 | #define EC_PROTO2_REQUEST_HEADER_BYTES 3 | ||
| 435 | #define EC_PROTO2_REQUEST_TRAILER_BYTES 1 | ||
| 436 | #define EC_PROTO2_REQUEST_OVERHEAD (EC_PROTO2_REQUEST_HEADER_BYTES + \ | ||
| 437 | EC_PROTO2_REQUEST_TRAILER_BYTES) | ||
| 438 | |||
| 439 | #define EC_PROTO2_RESPONSE_HEADER_BYTES 2 | ||
| 440 | #define EC_PROTO2_RESPONSE_TRAILER_BYTES 1 | ||
| 441 | #define EC_PROTO2_RESPONSE_OVERHEAD (EC_PROTO2_RESPONSE_HEADER_BYTES + \ | ||
| 442 | EC_PROTO2_RESPONSE_TRAILER_BYTES) | ||
| 443 | |||
| 444 | /* Parameter length was limited by the LPC interface */ | ||
| 445 | #define EC_PROTO2_MAX_PARAM_SIZE 0xfc | ||
| 446 | |||
| 447 | /* Maximum request and response packet sizes for protocol version 2 */ | ||
| 448 | #define EC_PROTO2_MAX_REQUEST_SIZE (EC_PROTO2_REQUEST_OVERHEAD + \ | ||
| 449 | EC_PROTO2_MAX_PARAM_SIZE) | ||
| 450 | #define EC_PROTO2_MAX_RESPONSE_SIZE (EC_PROTO2_RESPONSE_OVERHEAD + \ | ||
| 451 | EC_PROTO2_MAX_PARAM_SIZE) | ||
| 452 | |||
| 453 | /*****************************************************************************/ | ||
| 454 | |||
| 455 | /* | ||
| 456 | * Value written to legacy command port / prefix byte to indicate protocol | ||
| 457 | * 3+ structs are being used. Usage is bus-dependent. | ||
| 458 | */ | ||
| 459 | #define EC_COMMAND_PROTOCOL_3 0xda | ||
| 460 | |||
| 461 | #define EC_HOST_REQUEST_VERSION 3 | ||
| 462 | |||
| 463 | /* Version 3 request from host */ | ||
| 464 | struct ec_host_request { | ||
| 465 | /* Struct version (=3) | ||
| 466 | * | ||
| 467 | * EC will return EC_RES_INVALID_HEADER if it receives a header with a | ||
| 468 | * version it doesn't know how to parse. | ||
| 469 | */ | ||
| 470 | uint8_t struct_version; | ||
| 471 | |||
| 472 | /* | ||
| 473 | * Checksum of request and data; sum of all bytes including checksum | ||
| 474 | * should total to 0. | ||
| 475 | */ | ||
| 476 | uint8_t checksum; | ||
| 477 | |||
| 478 | /* Command code */ | ||
| 479 | uint16_t command; | ||
| 480 | |||
| 481 | /* Command version */ | ||
| 482 | uint8_t command_version; | ||
| 483 | |||
| 484 | /* Unused byte in current protocol version; set to 0 */ | ||
| 485 | uint8_t reserved; | ||
| 486 | |||
| 487 | /* Length of data which follows this header */ | ||
| 488 | uint16_t data_len; | ||
| 489 | } __packed; | ||
| 490 | |||
| 491 | #define EC_HOST_RESPONSE_VERSION 3 | ||
| 492 | |||
| 493 | /* Version 3 response from EC */ | ||
| 494 | struct ec_host_response { | ||
| 495 | /* Struct version (=3) */ | ||
| 496 | uint8_t struct_version; | ||
| 497 | |||
| 498 | /* | ||
| 499 | * Checksum of response and data; sum of all bytes including checksum | ||
| 500 | * should total to 0. | ||
| 501 | */ | ||
| 502 | uint8_t checksum; | ||
| 503 | |||
| 504 | /* Result code (EC_RES_*) */ | ||
| 505 | uint16_t result; | ||
| 506 | |||
| 507 | /* Length of data which follows this header */ | ||
| 508 | uint16_t data_len; | ||
| 509 | |||
| 510 | /* Unused bytes in current protocol version; set to 0 */ | ||
| 511 | uint16_t reserved; | ||
| 512 | } __packed; | ||
| 513 | |||
| 514 | /*****************************************************************************/ | ||
| 282 | /* | 515 | /* |
| 283 | * Notes on commands: | 516 | * Notes on commands: |
| 284 | * | 517 | * |
| @@ -418,6 +651,68 @@ struct ec_response_get_comms_status { | |||
| 418 | uint32_t flags; /* Mask of enum ec_comms_status */ | 651 | uint32_t flags; /* Mask of enum ec_comms_status */ |
| 419 | } __packed; | 652 | } __packed; |
| 420 | 653 | ||
| 654 | /* Fake a variety of responses, purely for testing purposes. */ | ||
| 655 | #define EC_CMD_TEST_PROTOCOL 0x0a | ||
| 656 | |||
| 657 | /* Tell the EC what to send back to us. */ | ||
| 658 | struct ec_params_test_protocol { | ||
| 659 | uint32_t ec_result; | ||
| 660 | uint32_t ret_len; | ||
| 661 | uint8_t buf[32]; | ||
| 662 | } __packed; | ||
| 663 | |||
| 664 | /* Here it comes... */ | ||
| 665 | struct ec_response_test_protocol { | ||
| 666 | uint8_t buf[32]; | ||
| 667 | } __packed; | ||
| 668 | |||
| 669 | /* Get prococol information */ | ||
| 670 | #define EC_CMD_GET_PROTOCOL_INFO 0x0b | ||
| 671 | |||
| 672 | /* Flags for ec_response_get_protocol_info.flags */ | ||
| 673 | /* EC_RES_IN_PROGRESS may be returned if a command is slow */ | ||
| 674 | #define EC_PROTOCOL_INFO_IN_PROGRESS_SUPPORTED (1 << 0) | ||
| 675 | |||
| 676 | struct ec_response_get_protocol_info { | ||
| 677 | /* Fields which exist if at least protocol version 3 supported */ | ||
| 678 | |||
| 679 | /* Bitmask of protocol versions supported (1 << n means version n)*/ | ||
| 680 | uint32_t protocol_versions; | ||
| 681 | |||
| 682 | /* Maximum request packet size, in bytes */ | ||
| 683 | uint16_t max_request_packet_size; | ||
| 684 | |||
| 685 | /* Maximum response packet size, in bytes */ | ||
| 686 | uint16_t max_response_packet_size; | ||
| 687 | |||
| 688 | /* Flags; see EC_PROTOCOL_INFO_* */ | ||
| 689 | uint32_t flags; | ||
| 690 | } __packed; | ||
| 691 | |||
| 692 | |||
| 693 | /*****************************************************************************/ | ||
| 694 | /* Get/Set miscellaneous values */ | ||
| 695 | |||
| 696 | /* The upper byte of .flags tells what to do (nothing means "get") */ | ||
| 697 | #define EC_GSV_SET 0x80000000 | ||
| 698 | |||
| 699 | /* The lower three bytes of .flags identifies the parameter, if that has | ||
| 700 | meaning for an individual command. */ | ||
| 701 | #define EC_GSV_PARAM_MASK 0x00ffffff | ||
| 702 | |||
| 703 | struct ec_params_get_set_value { | ||
| 704 | uint32_t flags; | ||
| 705 | uint32_t value; | ||
| 706 | } __packed; | ||
| 707 | |||
| 708 | struct ec_response_get_set_value { | ||
| 709 | uint32_t flags; | ||
| 710 | uint32_t value; | ||
| 711 | } __packed; | ||
| 712 | |||
| 713 | /* More than one command can use these structs to get/set paramters. */ | ||
| 714 | #define EC_CMD_GSV_PAUSE_IN_S5 0x0c | ||
| 715 | |||
| 421 | 716 | ||
| 422 | /*****************************************************************************/ | 717 | /*****************************************************************************/ |
| 423 | /* Flash commands */ | 718 | /* Flash commands */ |
| @@ -425,6 +720,7 @@ struct ec_response_get_comms_status { | |||
| 425 | /* Get flash info */ | 720 | /* Get flash info */ |
| 426 | #define EC_CMD_FLASH_INFO 0x10 | 721 | #define EC_CMD_FLASH_INFO 0x10 |
| 427 | 722 | ||
| 723 | /* Version 0 returns these fields */ | ||
| 428 | struct ec_response_flash_info { | 724 | struct ec_response_flash_info { |
| 429 | /* Usable flash size, in bytes */ | 725 | /* Usable flash size, in bytes */ |
| 430 | uint32_t flash_size; | 726 | uint32_t flash_size; |
| @@ -445,6 +741,37 @@ struct ec_response_flash_info { | |||
| 445 | uint32_t protect_block_size; | 741 | uint32_t protect_block_size; |
| 446 | } __packed; | 742 | } __packed; |
| 447 | 743 | ||
| 744 | /* Flags for version 1+ flash info command */ | ||
| 745 | /* EC flash erases bits to 0 instead of 1 */ | ||
| 746 | #define EC_FLASH_INFO_ERASE_TO_0 (1 << 0) | ||
| 747 | |||
| 748 | /* | ||
| 749 | * Version 1 returns the same initial fields as version 0, with additional | ||
| 750 | * fields following. | ||
| 751 | * | ||
| 752 | * gcc anonymous structs don't seem to get along with the __packed directive; | ||
| 753 | * if they did we'd define the version 0 struct as a sub-struct of this one. | ||
| 754 | */ | ||
| 755 | struct ec_response_flash_info_1 { | ||
| 756 | /* Version 0 fields; see above for description */ | ||
| 757 | uint32_t flash_size; | ||
| 758 | uint32_t write_block_size; | ||
| 759 | uint32_t erase_block_size; | ||
| 760 | uint32_t protect_block_size; | ||
| 761 | |||
| 762 | /* Version 1 adds these fields: */ | ||
| 763 | /* | ||
| 764 | * Ideal write size in bytes. Writes will be fastest if size is | ||
| 765 | * exactly this and offset is a multiple of this. For example, an EC | ||
| 766 | * may have a write buffer which can do half-page operations if data is | ||
| 767 | * aligned, and a slower word-at-a-time write mode. | ||
| 768 | */ | ||
| 769 | uint32_t write_ideal_size; | ||
| 770 | |||
| 771 | /* Flags; see EC_FLASH_INFO_* */ | ||
| 772 | uint32_t flags; | ||
| 773 | } __packed; | ||
| 774 | |||
| 448 | /* | 775 | /* |
| 449 | * Read flash | 776 | * Read flash |
| 450 | * | 777 | * |
| @@ -459,15 +786,15 @@ struct ec_params_flash_read { | |||
| 459 | 786 | ||
| 460 | /* Write flash */ | 787 | /* Write flash */ |
| 461 | #define EC_CMD_FLASH_WRITE 0x12 | 788 | #define EC_CMD_FLASH_WRITE 0x12 |
| 789 | #define EC_VER_FLASH_WRITE 1 | ||
| 790 | |||
| 791 | /* Version 0 of the flash command supported only 64 bytes of data */ | ||
| 792 | #define EC_FLASH_WRITE_VER0_SIZE 64 | ||
| 462 | 793 | ||
| 463 | struct ec_params_flash_write { | 794 | struct ec_params_flash_write { |
| 464 | uint32_t offset; /* Byte offset to write */ | 795 | uint32_t offset; /* Byte offset to write */ |
| 465 | uint32_t size; /* Size to write in bytes */ | 796 | uint32_t size; /* Size to write in bytes */ |
| 466 | /* | 797 | /* Followed by data to write */ |
| 467 | * Data to write. Could really use EC_PARAM_SIZE - 8, but tidiest to | ||
| 468 | * use a power of 2 so writes stay aligned. | ||
| 469 | */ | ||
| 470 | uint8_t data[64]; | ||
| 471 | } __packed; | 798 | } __packed; |
| 472 | 799 | ||
| 473 | /* Erase flash */ | 800 | /* Erase flash */ |
| @@ -543,7 +870,7 @@ struct ec_response_flash_protect { | |||
| 543 | 870 | ||
| 544 | enum ec_flash_region { | 871 | enum ec_flash_region { |
| 545 | /* Region which holds read-only EC image */ | 872 | /* Region which holds read-only EC image */ |
| 546 | EC_FLASH_REGION_RO, | 873 | EC_FLASH_REGION_RO = 0, |
| 547 | /* Region which holds rewritable EC image */ | 874 | /* Region which holds rewritable EC image */ |
| 548 | EC_FLASH_REGION_RW, | 875 | EC_FLASH_REGION_RW, |
| 549 | /* | 876 | /* |
| @@ -551,6 +878,8 @@ enum ec_flash_region { | |||
| 551 | * EC_FLASH_REGION_RO) | 878 | * EC_FLASH_REGION_RO) |
| 552 | */ | 879 | */ |
| 553 | EC_FLASH_REGION_WP_RO, | 880 | EC_FLASH_REGION_WP_RO, |
| 881 | /* Number of regions */ | ||
| 882 | EC_FLASH_REGION_COUNT, | ||
| 554 | }; | 883 | }; |
| 555 | 884 | ||
| 556 | struct ec_params_flash_region_info { | 885 | struct ec_params_flash_region_info { |
| @@ -639,15 +968,15 @@ struct rgb_s { | |||
| 639 | */ | 968 | */ |
| 640 | struct lightbar_params { | 969 | struct lightbar_params { |
| 641 | /* Timing */ | 970 | /* Timing */ |
| 642 | int google_ramp_up; | 971 | int32_t google_ramp_up; |
| 643 | int google_ramp_down; | 972 | int32_t google_ramp_down; |
| 644 | int s3s0_ramp_up; | 973 | int32_t s3s0_ramp_up; |
| 645 | int s0_tick_delay[2]; /* AC=0/1 */ | 974 | int32_t s0_tick_delay[2]; /* AC=0/1 */ |
| 646 | int s0a_tick_delay[2]; /* AC=0/1 */ | 975 | int32_t s0a_tick_delay[2]; /* AC=0/1 */ |
| 647 | int s0s3_ramp_down; | 976 | int32_t s0s3_ramp_down; |
| 648 | int s3_sleep_for; | 977 | int32_t s3_sleep_for; |
| 649 | int s3_ramp_up; | 978 | int32_t s3_ramp_up; |
| 650 | int s3_ramp_down; | 979 | int32_t s3_ramp_down; |
| 651 | 980 | ||
| 652 | /* Oscillation */ | 981 | /* Oscillation */ |
| 653 | uint8_t new_s0; | 982 | uint8_t new_s0; |
| @@ -676,7 +1005,7 @@ struct ec_params_lightbar { | |||
| 676 | union { | 1005 | union { |
| 677 | struct { | 1006 | struct { |
| 678 | /* no args */ | 1007 | /* no args */ |
| 679 | } dump, off, on, init, get_seq, get_params; | 1008 | } dump, off, on, init, get_seq, get_params, version; |
| 680 | 1009 | ||
| 681 | struct num { | 1010 | struct num { |
| 682 | uint8_t num; | 1011 | uint8_t num; |
| @@ -710,6 +1039,11 @@ struct ec_response_lightbar { | |||
| 710 | 1039 | ||
| 711 | struct lightbar_params get_params; | 1040 | struct lightbar_params get_params; |
| 712 | 1041 | ||
| 1042 | struct version { | ||
| 1043 | uint32_t num; | ||
| 1044 | uint32_t flags; | ||
| 1045 | } version; | ||
| 1046 | |||
| 713 | struct { | 1047 | struct { |
| 714 | /* no return params */ | 1048 | /* no return params */ |
| 715 | } off, on, init, brightness, seq, reg, rgb, demo, set_params; | 1049 | } off, on, init, brightness, seq, reg, rgb, demo, set_params; |
| @@ -730,10 +1064,62 @@ enum lightbar_command { | |||
| 730 | LIGHTBAR_CMD_DEMO = 9, | 1064 | LIGHTBAR_CMD_DEMO = 9, |
| 731 | LIGHTBAR_CMD_GET_PARAMS = 10, | 1065 | LIGHTBAR_CMD_GET_PARAMS = 10, |
| 732 | LIGHTBAR_CMD_SET_PARAMS = 11, | 1066 | LIGHTBAR_CMD_SET_PARAMS = 11, |
| 1067 | LIGHTBAR_CMD_VERSION = 12, | ||
| 733 | LIGHTBAR_NUM_CMDS | 1068 | LIGHTBAR_NUM_CMDS |
| 734 | }; | 1069 | }; |
| 735 | 1070 | ||
| 736 | /*****************************************************************************/ | 1071 | /*****************************************************************************/ |
| 1072 | /* LED control commands */ | ||
| 1073 | |||
| 1074 | #define EC_CMD_LED_CONTROL 0x29 | ||
| 1075 | |||
| 1076 | enum ec_led_id { | ||
| 1077 | /* LED to indicate battery state of charge */ | ||
| 1078 | EC_LED_ID_BATTERY_LED = 0, | ||
| 1079 | /* | ||
| 1080 | * LED to indicate system power state (on or in suspend). | ||
| 1081 | * May be on power button or on C-panel. | ||
| 1082 | */ | ||
| 1083 | EC_LED_ID_POWER_LED, | ||
| 1084 | /* LED on power adapter or its plug */ | ||
| 1085 | EC_LED_ID_ADAPTER_LED, | ||
| 1086 | |||
| 1087 | EC_LED_ID_COUNT | ||
| 1088 | }; | ||
| 1089 | |||
| 1090 | /* LED control flags */ | ||
| 1091 | #define EC_LED_FLAGS_QUERY (1 << 0) /* Query LED capability only */ | ||
| 1092 | #define EC_LED_FLAGS_AUTO (1 << 1) /* Switch LED back to automatic control */ | ||
| 1093 | |||
| 1094 | enum ec_led_colors { | ||
| 1095 | EC_LED_COLOR_RED = 0, | ||
| 1096 | EC_LED_COLOR_GREEN, | ||
| 1097 | EC_LED_COLOR_BLUE, | ||
| 1098 | EC_LED_COLOR_YELLOW, | ||
| 1099 | EC_LED_COLOR_WHITE, | ||
| 1100 | |||
| 1101 | EC_LED_COLOR_COUNT | ||
| 1102 | }; | ||
| 1103 | |||
| 1104 | struct ec_params_led_control { | ||
| 1105 | uint8_t led_id; /* Which LED to control */ | ||
| 1106 | uint8_t flags; /* Control flags */ | ||
| 1107 | |||
| 1108 | uint8_t brightness[EC_LED_COLOR_COUNT]; | ||
| 1109 | } __packed; | ||
| 1110 | |||
| 1111 | struct ec_response_led_control { | ||
| 1112 | /* | ||
| 1113 | * Available brightness value range. | ||
| 1114 | * | ||
| 1115 | * Range 0 means color channel not present. | ||
| 1116 | * Range 1 means on/off control. | ||
| 1117 | * Other values means the LED is control by PWM. | ||
| 1118 | */ | ||
| 1119 | uint8_t brightness_range[EC_LED_COLOR_COUNT]; | ||
| 1120 | } __packed; | ||
| 1121 | |||
| 1122 | /*****************************************************************************/ | ||
| 737 | /* Verified boot commands */ | 1123 | /* Verified boot commands */ |
| 738 | 1124 | ||
| 739 | /* | 1125 | /* |
| @@ -790,6 +1176,181 @@ enum ec_vboot_hash_status { | |||
| 790 | #define EC_VBOOT_HASH_OFFSET_RW 0xfffffffd | 1176 | #define EC_VBOOT_HASH_OFFSET_RW 0xfffffffd |
| 791 | 1177 | ||
| 792 | /*****************************************************************************/ | 1178 | /*****************************************************************************/ |
| 1179 | /* | ||
| 1180 | * Motion sense commands. We'll make separate structs for sub-commands with | ||
| 1181 | * different input args, so that we know how much to expect. | ||
| 1182 | */ | ||
| 1183 | #define EC_CMD_MOTION_SENSE_CMD 0x2B | ||
| 1184 | |||
| 1185 | /* Motion sense commands */ | ||
| 1186 | enum motionsense_command { | ||
| 1187 | /* | ||
| 1188 | * Dump command returns all motion sensor data including motion sense | ||
| 1189 | * module flags and individual sensor flags. | ||
| 1190 | */ | ||
| 1191 | MOTIONSENSE_CMD_DUMP = 0, | ||
| 1192 | |||
| 1193 | /* | ||
| 1194 | * Info command returns data describing the details of a given sensor, | ||
| 1195 | * including enum motionsensor_type, enum motionsensor_location, and | ||
| 1196 | * enum motionsensor_chip. | ||
| 1197 | */ | ||
| 1198 | MOTIONSENSE_CMD_INFO = 1, | ||
| 1199 | |||
| 1200 | /* | ||
| 1201 | * EC Rate command is a setter/getter command for the EC sampling rate | ||
| 1202 | * of all motion sensors in milliseconds. | ||
| 1203 | */ | ||
| 1204 | MOTIONSENSE_CMD_EC_RATE = 2, | ||
| 1205 | |||
| 1206 | /* | ||
| 1207 | * Sensor ODR command is a setter/getter command for the output data | ||
| 1208 | * rate of a specific motion sensor in millihertz. | ||
| 1209 | */ | ||
| 1210 | MOTIONSENSE_CMD_SENSOR_ODR = 3, | ||
| 1211 | |||
| 1212 | /* | ||
| 1213 | * Sensor range command is a setter/getter command for the range of | ||
| 1214 | * a specified motion sensor in +/-G's or +/- deg/s. | ||
| 1215 | */ | ||
| 1216 | MOTIONSENSE_CMD_SENSOR_RANGE = 4, | ||
| 1217 | |||
| 1218 | /* | ||
| 1219 | * Setter/getter command for the keyboard wake angle. When the lid | ||
| 1220 | * angle is greater than this value, keyboard wake is disabled in S3, | ||
| 1221 | * and when the lid angle goes less than this value, keyboard wake is | ||
| 1222 | * enabled. Note, the lid angle measurement is an approximate, | ||
| 1223 | * un-calibrated value, hence the wake angle isn't exact. | ||
| 1224 | */ | ||
| 1225 | MOTIONSENSE_CMD_KB_WAKE_ANGLE = 5, | ||
| 1226 | |||
| 1227 | /* Number of motionsense sub-commands. */ | ||
| 1228 | MOTIONSENSE_NUM_CMDS | ||
| 1229 | }; | ||
| 1230 | |||
| 1231 | enum motionsensor_id { | ||
| 1232 | EC_MOTION_SENSOR_ACCEL_BASE = 0, | ||
| 1233 | EC_MOTION_SENSOR_ACCEL_LID = 1, | ||
| 1234 | EC_MOTION_SENSOR_GYRO = 2, | ||
| 1235 | |||
| 1236 | /* | ||
| 1237 | * Note, if more sensors are added and this count changes, the padding | ||
| 1238 | * in ec_response_motion_sense dump command must be modified. | ||
| 1239 | */ | ||
| 1240 | EC_MOTION_SENSOR_COUNT = 3 | ||
| 1241 | }; | ||
| 1242 | |||
| 1243 | /* List of motion sensor types. */ | ||
| 1244 | enum motionsensor_type { | ||
| 1245 | MOTIONSENSE_TYPE_ACCEL = 0, | ||
| 1246 | MOTIONSENSE_TYPE_GYRO = 1, | ||
| 1247 | }; | ||
| 1248 | |||
| 1249 | /* List of motion sensor locations. */ | ||
| 1250 | enum motionsensor_location { | ||
| 1251 | MOTIONSENSE_LOC_BASE = 0, | ||
| 1252 | MOTIONSENSE_LOC_LID = 1, | ||
| 1253 | }; | ||
| 1254 | |||
| 1255 | /* List of motion sensor chips. */ | ||
| 1256 | enum motionsensor_chip { | ||
| 1257 | MOTIONSENSE_CHIP_KXCJ9 = 0, | ||
| 1258 | }; | ||
| 1259 | |||
| 1260 | /* Module flag masks used for the dump sub-command. */ | ||
| 1261 | #define MOTIONSENSE_MODULE_FLAG_ACTIVE (1<<0) | ||
| 1262 | |||
| 1263 | /* Sensor flag masks used for the dump sub-command. */ | ||
| 1264 | #define MOTIONSENSE_SENSOR_FLAG_PRESENT (1<<0) | ||
| 1265 | |||
| 1266 | /* | ||
| 1267 | * Send this value for the data element to only perform a read. If you | ||
| 1268 | * send any other value, the EC will interpret it as data to set and will | ||
| 1269 | * return the actual value set. | ||
| 1270 | */ | ||
| 1271 | #define EC_MOTION_SENSE_NO_VALUE -1 | ||
| 1272 | |||
| 1273 | struct ec_params_motion_sense { | ||
| 1274 | uint8_t cmd; | ||
| 1275 | union { | ||
| 1276 | /* Used for MOTIONSENSE_CMD_DUMP. */ | ||
| 1277 | struct { | ||
| 1278 | /* no args */ | ||
| 1279 | } dump; | ||
| 1280 | |||
| 1281 | /* | ||
| 1282 | * Used for MOTIONSENSE_CMD_EC_RATE and | ||
| 1283 | * MOTIONSENSE_CMD_KB_WAKE_ANGLE. | ||
| 1284 | */ | ||
| 1285 | struct { | ||
| 1286 | /* Data to set or EC_MOTION_SENSE_NO_VALUE to read. */ | ||
| 1287 | int16_t data; | ||
| 1288 | } ec_rate, kb_wake_angle; | ||
| 1289 | |||
| 1290 | /* Used for MOTIONSENSE_CMD_INFO. */ | ||
| 1291 | struct { | ||
| 1292 | /* Should be element of enum motionsensor_id. */ | ||
| 1293 | uint8_t sensor_num; | ||
| 1294 | } info; | ||
| 1295 | |||
| 1296 | /* | ||
| 1297 | * Used for MOTIONSENSE_CMD_SENSOR_ODR and | ||
| 1298 | * MOTIONSENSE_CMD_SENSOR_RANGE. | ||
| 1299 | */ | ||
| 1300 | struct { | ||
| 1301 | /* Should be element of enum motionsensor_id. */ | ||
| 1302 | uint8_t sensor_num; | ||
| 1303 | |||
| 1304 | /* Rounding flag, true for round-up, false for down. */ | ||
| 1305 | uint8_t roundup; | ||
| 1306 | |||
| 1307 | uint16_t reserved; | ||
| 1308 | |||
| 1309 | /* Data to set or EC_MOTION_SENSE_NO_VALUE to read. */ | ||
| 1310 | int32_t data; | ||
| 1311 | } sensor_odr, sensor_range; | ||
| 1312 | }; | ||
| 1313 | } __packed; | ||
| 1314 | |||
| 1315 | struct ec_response_motion_sense { | ||
| 1316 | union { | ||
| 1317 | /* Used for MOTIONSENSE_CMD_DUMP. */ | ||
| 1318 | struct { | ||
| 1319 | /* Flags representing the motion sensor module. */ | ||
| 1320 | uint8_t module_flags; | ||
| 1321 | |||
| 1322 | /* Flags for each sensor in enum motionsensor_id. */ | ||
| 1323 | uint8_t sensor_flags[EC_MOTION_SENSOR_COUNT]; | ||
| 1324 | |||
| 1325 | /* Array of all sensor data. Each sensor is 3-axis. */ | ||
| 1326 | int16_t data[3*EC_MOTION_SENSOR_COUNT]; | ||
| 1327 | } dump; | ||
| 1328 | |||
| 1329 | /* Used for MOTIONSENSE_CMD_INFO. */ | ||
| 1330 | struct { | ||
| 1331 | /* Should be element of enum motionsensor_type. */ | ||
| 1332 | uint8_t type; | ||
| 1333 | |||
| 1334 | /* Should be element of enum motionsensor_location. */ | ||
| 1335 | uint8_t location; | ||
| 1336 | |||
| 1337 | /* Should be element of enum motionsensor_chip. */ | ||
| 1338 | uint8_t chip; | ||
| 1339 | } info; | ||
| 1340 | |||
| 1341 | /* | ||
| 1342 | * Used for MOTIONSENSE_CMD_EC_RATE, MOTIONSENSE_CMD_SENSOR_ODR, | ||
| 1343 | * MOTIONSENSE_CMD_SENSOR_RANGE, and | ||
| 1344 | * MOTIONSENSE_CMD_KB_WAKE_ANGLE. | ||
| 1345 | */ | ||
| 1346 | struct { | ||
| 1347 | /* Current value of the parameter queried. */ | ||
| 1348 | int32_t ret; | ||
| 1349 | } ec_rate, sensor_odr, sensor_range, kb_wake_angle; | ||
| 1350 | }; | ||
| 1351 | } __packed; | ||
| 1352 | |||
| 1353 | /*****************************************************************************/ | ||
| 793 | /* USB charging control commands */ | 1354 | /* USB charging control commands */ |
| 794 | 1355 | ||
| 795 | /* Set USB port charging mode */ | 1356 | /* Set USB port charging mode */ |
| @@ -868,20 +1429,27 @@ struct ec_response_port80_last_boot { | |||
| 868 | } __packed; | 1429 | } __packed; |
| 869 | 1430 | ||
| 870 | /*****************************************************************************/ | 1431 | /*****************************************************************************/ |
| 871 | /* Thermal engine commands */ | 1432 | /* Thermal engine commands. Note that there are two implementations. We'll |
| 1433 | * reuse the command number, but the data and behavior is incompatible. | ||
| 1434 | * Version 0 is what originally shipped on Link. | ||
| 1435 | * Version 1 separates the CPU thermal limits from the fan control. | ||
| 1436 | */ | ||
| 872 | 1437 | ||
| 873 | /* Set thershold value */ | ||
| 874 | #define EC_CMD_THERMAL_SET_THRESHOLD 0x50 | 1438 | #define EC_CMD_THERMAL_SET_THRESHOLD 0x50 |
| 1439 | #define EC_CMD_THERMAL_GET_THRESHOLD 0x51 | ||
| 1440 | |||
| 1441 | /* The version 0 structs are opaque. You have to know what they are for | ||
| 1442 | * the get/set commands to make any sense. | ||
| 1443 | */ | ||
| 875 | 1444 | ||
| 1445 | /* Version 0 - set */ | ||
| 876 | struct ec_params_thermal_set_threshold { | 1446 | struct ec_params_thermal_set_threshold { |
| 877 | uint8_t sensor_type; | 1447 | uint8_t sensor_type; |
| 878 | uint8_t threshold_id; | 1448 | uint8_t threshold_id; |
| 879 | uint16_t value; | 1449 | uint16_t value; |
| 880 | } __packed; | 1450 | } __packed; |
| 881 | 1451 | ||
| 882 | /* Get threshold value */ | 1452 | /* Version 0 - get */ |
| 883 | #define EC_CMD_THERMAL_GET_THRESHOLD 0x51 | ||
| 884 | |||
| 885 | struct ec_params_thermal_get_threshold { | 1453 | struct ec_params_thermal_get_threshold { |
| 886 | uint8_t sensor_type; | 1454 | uint8_t sensor_type; |
| 887 | uint8_t threshold_id; | 1455 | uint8_t threshold_id; |
| @@ -891,6 +1459,41 @@ struct ec_response_thermal_get_threshold { | |||
| 891 | uint16_t value; | 1459 | uint16_t value; |
| 892 | } __packed; | 1460 | } __packed; |
| 893 | 1461 | ||
| 1462 | |||
| 1463 | /* The version 1 structs are visible. */ | ||
| 1464 | enum ec_temp_thresholds { | ||
| 1465 | EC_TEMP_THRESH_WARN = 0, | ||
| 1466 | EC_TEMP_THRESH_HIGH, | ||
| 1467 | EC_TEMP_THRESH_HALT, | ||
| 1468 | |||
| 1469 | EC_TEMP_THRESH_COUNT | ||
| 1470 | }; | ||
| 1471 | |||
| 1472 | /* Thermal configuration for one temperature sensor. Temps are in degrees K. | ||
| 1473 | * Zero values will be silently ignored by the thermal task. | ||
| 1474 | */ | ||
| 1475 | struct ec_thermal_config { | ||
| 1476 | uint32_t temp_host[EC_TEMP_THRESH_COUNT]; /* levels of hotness */ | ||
| 1477 | uint32_t temp_fan_off; /* no active cooling needed */ | ||
| 1478 | uint32_t temp_fan_max; /* max active cooling needed */ | ||
| 1479 | } __packed; | ||
| 1480 | |||
| 1481 | /* Version 1 - get config for one sensor. */ | ||
| 1482 | struct ec_params_thermal_get_threshold_v1 { | ||
| 1483 | uint32_t sensor_num; | ||
| 1484 | } __packed; | ||
| 1485 | /* This returns a struct ec_thermal_config */ | ||
| 1486 | |||
| 1487 | /* Version 1 - set config for one sensor. | ||
| 1488 | * Use read-modify-write for best results! */ | ||
| 1489 | struct ec_params_thermal_set_threshold_v1 { | ||
| 1490 | uint32_t sensor_num; | ||
| 1491 | struct ec_thermal_config cfg; | ||
| 1492 | } __packed; | ||
| 1493 | /* This returns no data */ | ||
| 1494 | |||
| 1495 | /****************************************************************************/ | ||
| 1496 | |||
| 894 | /* Toggle automatic fan control */ | 1497 | /* Toggle automatic fan control */ |
| 895 | #define EC_CMD_THERMAL_AUTO_FAN_CTRL 0x52 | 1498 | #define EC_CMD_THERMAL_AUTO_FAN_CTRL 0x52 |
| 896 | 1499 | ||
| @@ -920,6 +1523,18 @@ struct ec_params_tmp006_set_calibration { | |||
| 920 | float b2; | 1523 | float b2; |
| 921 | } __packed; | 1524 | } __packed; |
| 922 | 1525 | ||
| 1526 | /* Read raw TMP006 data */ | ||
| 1527 | #define EC_CMD_TMP006_GET_RAW 0x55 | ||
| 1528 | |||
| 1529 | struct ec_params_tmp006_get_raw { | ||
| 1530 | uint8_t index; | ||
| 1531 | } __packed; | ||
| 1532 | |||
| 1533 | struct ec_response_tmp006_get_raw { | ||
| 1534 | int32_t t; /* In 1/100 K */ | ||
| 1535 | int32_t v; /* In nV */ | ||
| 1536 | }; | ||
| 1537 | |||
| 923 | /*****************************************************************************/ | 1538 | /*****************************************************************************/ |
| 924 | /* MKBP - Matrix KeyBoard Protocol */ | 1539 | /* MKBP - Matrix KeyBoard Protocol */ |
| 925 | 1540 | ||
| @@ -1118,11 +1733,41 @@ struct ec_params_switch_enable_backlight { | |||
| 1118 | 1733 | ||
| 1119 | /* Enable/disable WLAN/Bluetooth */ | 1734 | /* Enable/disable WLAN/Bluetooth */ |
| 1120 | #define EC_CMD_SWITCH_ENABLE_WIRELESS 0x91 | 1735 | #define EC_CMD_SWITCH_ENABLE_WIRELESS 0x91 |
| 1736 | #define EC_VER_SWITCH_ENABLE_WIRELESS 1 | ||
| 1121 | 1737 | ||
| 1122 | struct ec_params_switch_enable_wireless { | 1738 | /* Version 0 params; no response */ |
| 1739 | struct ec_params_switch_enable_wireless_v0 { | ||
| 1123 | uint8_t enabled; | 1740 | uint8_t enabled; |
| 1124 | } __packed; | 1741 | } __packed; |
| 1125 | 1742 | ||
| 1743 | /* Version 1 params */ | ||
| 1744 | struct ec_params_switch_enable_wireless_v1 { | ||
| 1745 | /* Flags to enable now */ | ||
| 1746 | uint8_t now_flags; | ||
| 1747 | |||
| 1748 | /* Which flags to copy from now_flags */ | ||
| 1749 | uint8_t now_mask; | ||
| 1750 | |||
| 1751 | /* | ||
| 1752 | * Flags to leave enabled in S3, if they're on at the S0->S3 | ||
| 1753 | * transition. (Other flags will be disabled by the S0->S3 | ||
| 1754 | * transition.) | ||
| 1755 | */ | ||
| 1756 | uint8_t suspend_flags; | ||
| 1757 | |||
| 1758 | /* Which flags to copy from suspend_flags */ | ||
| 1759 | uint8_t suspend_mask; | ||
| 1760 | } __packed; | ||
| 1761 | |||
| 1762 | /* Version 1 response */ | ||
| 1763 | struct ec_response_switch_enable_wireless_v1 { | ||
| 1764 | /* Flags to enable now */ | ||
| 1765 | uint8_t now_flags; | ||
| 1766 | |||
| 1767 | /* Flags to leave enabled in S3 */ | ||
| 1768 | uint8_t suspend_flags; | ||
| 1769 | } __packed; | ||
| 1770 | |||
| 1126 | /*****************************************************************************/ | 1771 | /*****************************************************************************/ |
| 1127 | /* GPIO commands. Only available on EC if write protect has been disabled. */ | 1772 | /* GPIO commands. Only available on EC if write protect has been disabled. */ |
| 1128 | 1773 | ||
| @@ -1147,11 +1792,16 @@ struct ec_response_gpio_get { | |||
| 1147 | /*****************************************************************************/ | 1792 | /*****************************************************************************/ |
| 1148 | /* I2C commands. Only available when flash write protect is unlocked. */ | 1793 | /* I2C commands. Only available when flash write protect is unlocked. */ |
| 1149 | 1794 | ||
| 1795 | /* | ||
| 1796 | * TODO(crosbug.com/p/23570): These commands are deprecated, and will be | ||
| 1797 | * removed soon. Use EC_CMD_I2C_XFER instead. | ||
| 1798 | */ | ||
| 1799 | |||
| 1150 | /* Read I2C bus */ | 1800 | /* Read I2C bus */ |
| 1151 | #define EC_CMD_I2C_READ 0x94 | 1801 | #define EC_CMD_I2C_READ 0x94 |
| 1152 | 1802 | ||
| 1153 | struct ec_params_i2c_read { | 1803 | struct ec_params_i2c_read { |
| 1154 | uint16_t addr; | 1804 | uint16_t addr; /* 8-bit address (7-bit shifted << 1) */ |
| 1155 | uint8_t read_size; /* Either 8 or 16. */ | 1805 | uint8_t read_size; /* Either 8 or 16. */ |
| 1156 | uint8_t port; | 1806 | uint8_t port; |
| 1157 | uint8_t offset; | 1807 | uint8_t offset; |
| @@ -1165,7 +1815,7 @@ struct ec_response_i2c_read { | |||
| 1165 | 1815 | ||
| 1166 | struct ec_params_i2c_write { | 1816 | struct ec_params_i2c_write { |
| 1167 | uint16_t data; | 1817 | uint16_t data; |
| 1168 | uint16_t addr; | 1818 | uint16_t addr; /* 8-bit address (7-bit shifted << 1) */ |
| 1169 | uint8_t write_size; /* Either 8 or 16. */ | 1819 | uint8_t write_size; /* Either 8 or 16. */ |
| 1170 | uint8_t port; | 1820 | uint8_t port; |
| 1171 | uint8_t offset; | 1821 | uint8_t offset; |
| @@ -1174,11 +1824,20 @@ struct ec_params_i2c_write { | |||
| 1174 | /*****************************************************************************/ | 1824 | /*****************************************************************************/ |
| 1175 | /* Charge state commands. Only available when flash write protect unlocked. */ | 1825 | /* Charge state commands. Only available when flash write protect unlocked. */ |
| 1176 | 1826 | ||
| 1177 | /* Force charge state machine to stop in idle mode */ | 1827 | /* Force charge state machine to stop charging the battery or force it to |
| 1178 | #define EC_CMD_CHARGE_FORCE_IDLE 0x96 | 1828 | * discharge the battery. |
| 1829 | */ | ||
| 1830 | #define EC_CMD_CHARGE_CONTROL 0x96 | ||
| 1831 | #define EC_VER_CHARGE_CONTROL 1 | ||
| 1179 | 1832 | ||
| 1180 | struct ec_params_force_idle { | 1833 | enum ec_charge_control_mode { |
| 1181 | uint8_t enabled; | 1834 | CHARGE_CONTROL_NORMAL = 0, |
| 1835 | CHARGE_CONTROL_IDLE, | ||
| 1836 | CHARGE_CONTROL_DISCHARGE, | ||
| 1837 | }; | ||
| 1838 | |||
| 1839 | struct ec_params_charge_control { | ||
| 1840 | uint32_t mode; /* enum charge_control_mode */ | ||
| 1182 | } __packed; | 1841 | } __packed; |
| 1183 | 1842 | ||
| 1184 | /*****************************************************************************/ | 1843 | /*****************************************************************************/ |
| @@ -1206,14 +1865,231 @@ struct ec_params_force_idle { | |||
| 1206 | #define EC_CMD_BATTERY_CUT_OFF 0x99 | 1865 | #define EC_CMD_BATTERY_CUT_OFF 0x99 |
| 1207 | 1866 | ||
| 1208 | /*****************************************************************************/ | 1867 | /*****************************************************************************/ |
| 1209 | /* Temporary debug commands. TODO: remove this crosbug.com/p/13849 */ | 1868 | /* USB port mux control. */ |
| 1210 | 1869 | ||
| 1211 | /* | 1870 | /* |
| 1212 | * Dump charge state machine context. | 1871 | * Switch USB mux or return to automatic switching. |
| 1213 | * | 1872 | */ |
| 1214 | * Response is a binary dump of charge state machine context. | 1873 | #define EC_CMD_USB_MUX 0x9a |
| 1874 | |||
| 1875 | struct ec_params_usb_mux { | ||
| 1876 | uint8_t mux; | ||
| 1877 | } __packed; | ||
| 1878 | |||
| 1879 | /*****************************************************************************/ | ||
| 1880 | /* LDOs / FETs control. */ | ||
| 1881 | |||
| 1882 | enum ec_ldo_state { | ||
| 1883 | EC_LDO_STATE_OFF = 0, /* the LDO / FET is shut down */ | ||
| 1884 | EC_LDO_STATE_ON = 1, /* the LDO / FET is ON / providing power */ | ||
| 1885 | }; | ||
| 1886 | |||
| 1887 | /* | ||
| 1888 | * Switch on/off a LDO. | ||
| 1889 | */ | ||
| 1890 | #define EC_CMD_LDO_SET 0x9b | ||
| 1891 | |||
| 1892 | struct ec_params_ldo_set { | ||
| 1893 | uint8_t index; | ||
| 1894 | uint8_t state; | ||
| 1895 | } __packed; | ||
| 1896 | |||
| 1897 | /* | ||
| 1898 | * Get LDO state. | ||
| 1899 | */ | ||
| 1900 | #define EC_CMD_LDO_GET 0x9c | ||
| 1901 | |||
| 1902 | struct ec_params_ldo_get { | ||
| 1903 | uint8_t index; | ||
| 1904 | } __packed; | ||
| 1905 | |||
| 1906 | struct ec_response_ldo_get { | ||
| 1907 | uint8_t state; | ||
| 1908 | } __packed; | ||
| 1909 | |||
| 1910 | /*****************************************************************************/ | ||
| 1911 | /* Power info. */ | ||
| 1912 | |||
| 1913 | /* | ||
| 1914 | * Get power info. | ||
| 1915 | */ | ||
| 1916 | #define EC_CMD_POWER_INFO 0x9d | ||
| 1917 | |||
| 1918 | struct ec_response_power_info { | ||
| 1919 | uint32_t usb_dev_type; | ||
| 1920 | uint16_t voltage_ac; | ||
| 1921 | uint16_t voltage_system; | ||
| 1922 | uint16_t current_system; | ||
| 1923 | uint16_t usb_current_limit; | ||
| 1924 | } __packed; | ||
| 1925 | |||
| 1926 | /*****************************************************************************/ | ||
| 1927 | /* I2C passthru command */ | ||
| 1928 | |||
| 1929 | #define EC_CMD_I2C_PASSTHRU 0x9e | ||
| 1930 | |||
| 1931 | /* Slave address is 10 (not 7) bit */ | ||
| 1932 | #define EC_I2C_FLAG_10BIT (1 << 16) | ||
| 1933 | |||
| 1934 | /* Read data; if not present, message is a write */ | ||
| 1935 | #define EC_I2C_FLAG_READ (1 << 15) | ||
| 1936 | |||
| 1937 | /* Mask for address */ | ||
| 1938 | #define EC_I2C_ADDR_MASK 0x3ff | ||
| 1939 | |||
| 1940 | #define EC_I2C_STATUS_NAK (1 << 0) /* Transfer was not acknowledged */ | ||
| 1941 | #define EC_I2C_STATUS_TIMEOUT (1 << 1) /* Timeout during transfer */ | ||
| 1942 | |||
| 1943 | /* Any error */ | ||
| 1944 | #define EC_I2C_STATUS_ERROR (EC_I2C_STATUS_NAK | EC_I2C_STATUS_TIMEOUT) | ||
| 1945 | |||
| 1946 | struct ec_params_i2c_passthru_msg { | ||
| 1947 | uint16_t addr_flags; /* I2C slave address (7 or 10 bits) and flags */ | ||
| 1948 | uint16_t len; /* Number of bytes to read or write */ | ||
| 1949 | } __packed; | ||
| 1950 | |||
| 1951 | struct ec_params_i2c_passthru { | ||
| 1952 | uint8_t port; /* I2C port number */ | ||
| 1953 | uint8_t num_msgs; /* Number of messages */ | ||
| 1954 | struct ec_params_i2c_passthru_msg msg[]; | ||
| 1955 | /* Data to write for all messages is concatenated here */ | ||
| 1956 | } __packed; | ||
| 1957 | |||
| 1958 | struct ec_response_i2c_passthru { | ||
| 1959 | uint8_t i2c_status; /* Status flags (EC_I2C_STATUS_...) */ | ||
| 1960 | uint8_t num_msgs; /* Number of messages processed */ | ||
| 1961 | uint8_t data[]; /* Data read by messages concatenated here */ | ||
| 1962 | } __packed; | ||
| 1963 | |||
| 1964 | /*****************************************************************************/ | ||
| 1965 | /* Power button hang detect */ | ||
| 1966 | |||
| 1967 | #define EC_CMD_HANG_DETECT 0x9f | ||
| 1968 | |||
| 1969 | /* Reasons to start hang detection timer */ | ||
| 1970 | /* Power button pressed */ | ||
| 1971 | #define EC_HANG_START_ON_POWER_PRESS (1 << 0) | ||
| 1972 | |||
| 1973 | /* Lid closed */ | ||
| 1974 | #define EC_HANG_START_ON_LID_CLOSE (1 << 1) | ||
| 1975 | |||
| 1976 | /* Lid opened */ | ||
| 1977 | #define EC_HANG_START_ON_LID_OPEN (1 << 2) | ||
| 1978 | |||
| 1979 | /* Start of AP S3->S0 transition (booting or resuming from suspend) */ | ||
| 1980 | #define EC_HANG_START_ON_RESUME (1 << 3) | ||
| 1981 | |||
| 1982 | /* Reasons to cancel hang detection */ | ||
| 1983 | |||
| 1984 | /* Power button released */ | ||
| 1985 | #define EC_HANG_STOP_ON_POWER_RELEASE (1 << 8) | ||
| 1986 | |||
| 1987 | /* Any host command from AP received */ | ||
| 1988 | #define EC_HANG_STOP_ON_HOST_COMMAND (1 << 9) | ||
| 1989 | |||
| 1990 | /* Stop on end of AP S0->S3 transition (suspending or shutting down) */ | ||
| 1991 | #define EC_HANG_STOP_ON_SUSPEND (1 << 10) | ||
| 1992 | |||
| 1993 | /* | ||
| 1994 | * If this flag is set, all the other fields are ignored, and the hang detect | ||
| 1995 | * timer is started. This provides the AP a way to start the hang timer | ||
| 1996 | * without reconfiguring any of the other hang detect settings. Note that | ||
| 1997 | * you must previously have configured the timeouts. | ||
| 1998 | */ | ||
| 1999 | #define EC_HANG_START_NOW (1 << 30) | ||
| 2000 | |||
| 2001 | /* | ||
| 2002 | * If this flag is set, all the other fields are ignored (including | ||
| 2003 | * EC_HANG_START_NOW). This provides the AP a way to stop the hang timer | ||
| 2004 | * without reconfiguring any of the other hang detect settings. | ||
| 1215 | */ | 2005 | */ |
| 1216 | #define EC_CMD_CHARGE_DUMP 0xa0 | 2006 | #define EC_HANG_STOP_NOW (1 << 31) |
| 2007 | |||
| 2008 | struct ec_params_hang_detect { | ||
| 2009 | /* Flags; see EC_HANG_* */ | ||
| 2010 | uint32_t flags; | ||
| 2011 | |||
| 2012 | /* Timeout in msec before generating host event, if enabled */ | ||
| 2013 | uint16_t host_event_timeout_msec; | ||
| 2014 | |||
| 2015 | /* Timeout in msec before generating warm reboot, if enabled */ | ||
| 2016 | uint16_t warm_reboot_timeout_msec; | ||
| 2017 | } __packed; | ||
| 2018 | |||
| 2019 | /*****************************************************************************/ | ||
| 2020 | /* Commands for battery charging */ | ||
| 2021 | |||
| 2022 | /* | ||
| 2023 | * This is the single catch-all host command to exchange data regarding the | ||
| 2024 | * charge state machine (v2 and up). | ||
| 2025 | */ | ||
| 2026 | #define EC_CMD_CHARGE_STATE 0xa0 | ||
| 2027 | |||
| 2028 | /* Subcommands for this host command */ | ||
| 2029 | enum charge_state_command { | ||
| 2030 | CHARGE_STATE_CMD_GET_STATE, | ||
| 2031 | CHARGE_STATE_CMD_GET_PARAM, | ||
| 2032 | CHARGE_STATE_CMD_SET_PARAM, | ||
| 2033 | CHARGE_STATE_NUM_CMDS | ||
| 2034 | }; | ||
| 2035 | |||
| 2036 | /* | ||
| 2037 | * Known param numbers are defined here. Ranges are reserved for board-specific | ||
| 2038 | * params, which are handled by the particular implementations. | ||
| 2039 | */ | ||
| 2040 | enum charge_state_params { | ||
| 2041 | CS_PARAM_CHG_VOLTAGE, /* charger voltage limit */ | ||
| 2042 | CS_PARAM_CHG_CURRENT, /* charger current limit */ | ||
| 2043 | CS_PARAM_CHG_INPUT_CURRENT, /* charger input current limit */ | ||
| 2044 | CS_PARAM_CHG_STATUS, /* charger-specific status */ | ||
| 2045 | CS_PARAM_CHG_OPTION, /* charger-specific options */ | ||
| 2046 | /* How many so far? */ | ||
| 2047 | CS_NUM_BASE_PARAMS, | ||
| 2048 | |||
| 2049 | /* Range for CONFIG_CHARGER_PROFILE_OVERRIDE params */ | ||
| 2050 | CS_PARAM_CUSTOM_PROFILE_MIN = 0x10000, | ||
| 2051 | CS_PARAM_CUSTOM_PROFILE_MAX = 0x1ffff, | ||
| 2052 | |||
| 2053 | /* Other custom param ranges go here... */ | ||
| 2054 | }; | ||
| 2055 | |||
| 2056 | struct ec_params_charge_state { | ||
| 2057 | uint8_t cmd; /* enum charge_state_command */ | ||
| 2058 | union { | ||
| 2059 | struct { | ||
| 2060 | /* no args */ | ||
| 2061 | } get_state; | ||
| 2062 | |||
| 2063 | struct { | ||
| 2064 | uint32_t param; /* enum charge_state_param */ | ||
| 2065 | } get_param; | ||
| 2066 | |||
| 2067 | struct { | ||
| 2068 | uint32_t param; /* param to set */ | ||
| 2069 | uint32_t value; /* value to set */ | ||
| 2070 | } set_param; | ||
| 2071 | }; | ||
| 2072 | } __packed; | ||
| 2073 | |||
| 2074 | struct ec_response_charge_state { | ||
| 2075 | union { | ||
| 2076 | struct { | ||
| 2077 | int ac; | ||
| 2078 | int chg_voltage; | ||
| 2079 | int chg_current; | ||
| 2080 | int chg_input_current; | ||
| 2081 | int batt_state_of_charge; | ||
| 2082 | } get_state; | ||
| 2083 | |||
| 2084 | struct { | ||
| 2085 | uint32_t value; | ||
| 2086 | } get_param; | ||
| 2087 | struct { | ||
| 2088 | /* no return values */ | ||
| 2089 | } set_param; | ||
| 2090 | }; | ||
| 2091 | } __packed; | ||
| 2092 | |||
| 1217 | 2093 | ||
| 1218 | /* | 2094 | /* |
| 1219 | * Set maximum battery charging current. | 2095 | * Set maximum battery charging current. |
| @@ -1221,15 +2097,59 @@ struct ec_params_force_idle { | |||
| 1221 | #define EC_CMD_CHARGE_CURRENT_LIMIT 0xa1 | 2097 | #define EC_CMD_CHARGE_CURRENT_LIMIT 0xa1 |
| 1222 | 2098 | ||
| 1223 | struct ec_params_current_limit { | 2099 | struct ec_params_current_limit { |
| 1224 | uint32_t limit; | 2100 | uint32_t limit; /* in mA */ |
| 2101 | } __packed; | ||
| 2102 | |||
| 2103 | /* | ||
| 2104 | * Set maximum external power current. | ||
| 2105 | */ | ||
| 2106 | #define EC_CMD_EXT_POWER_CURRENT_LIMIT 0xa2 | ||
| 2107 | |||
| 2108 | struct ec_params_ext_power_current_limit { | ||
| 2109 | uint32_t limit; /* in mA */ | ||
| 2110 | } __packed; | ||
| 2111 | |||
| 2112 | /*****************************************************************************/ | ||
| 2113 | /* Smart battery pass-through */ | ||
| 2114 | |||
| 2115 | /* Get / Set 16-bit smart battery registers */ | ||
| 2116 | #define EC_CMD_SB_READ_WORD 0xb0 | ||
| 2117 | #define EC_CMD_SB_WRITE_WORD 0xb1 | ||
| 2118 | |||
| 2119 | /* Get / Set string smart battery parameters | ||
| 2120 | * formatted as SMBUS "block". | ||
| 2121 | */ | ||
| 2122 | #define EC_CMD_SB_READ_BLOCK 0xb2 | ||
| 2123 | #define EC_CMD_SB_WRITE_BLOCK 0xb3 | ||
| 2124 | |||
| 2125 | struct ec_params_sb_rd { | ||
| 2126 | uint8_t reg; | ||
| 2127 | } __packed; | ||
| 2128 | |||
| 2129 | struct ec_response_sb_rd_word { | ||
| 2130 | uint16_t value; | ||
| 2131 | } __packed; | ||
| 2132 | |||
| 2133 | struct ec_params_sb_wr_word { | ||
| 2134 | uint8_t reg; | ||
| 2135 | uint16_t value; | ||
| 2136 | } __packed; | ||
| 2137 | |||
| 2138 | struct ec_response_sb_rd_block { | ||
| 2139 | uint8_t data[32]; | ||
| 2140 | } __packed; | ||
| 2141 | |||
| 2142 | struct ec_params_sb_wr_block { | ||
| 2143 | uint8_t reg; | ||
| 2144 | uint16_t data[32]; | ||
| 1225 | } __packed; | 2145 | } __packed; |
| 1226 | 2146 | ||
| 1227 | /*****************************************************************************/ | 2147 | /*****************************************************************************/ |
| 1228 | /* System commands */ | 2148 | /* System commands */ |
| 1229 | 2149 | ||
| 1230 | /* | 2150 | /* |
| 1231 | * TODO: this is a confusing name, since it doesn't necessarily reboot the EC. | 2151 | * TODO(crosbug.com/p/23747): This is a confusing name, since it doesn't |
| 1232 | * Rename to "set image" or something similar. | 2152 | * necessarily reboot the EC. Rename to "image" or something similar? |
| 1233 | */ | 2153 | */ |
| 1234 | #define EC_CMD_REBOOT_EC 0xd2 | 2154 | #define EC_CMD_REBOOT_EC 0xd2 |
| 1235 | 2155 | ||
| @@ -1308,6 +2228,7 @@ struct ec_params_reboot_ec { | |||
| 1308 | #define EC_CMD_ACPI_QUERY_EVENT 0x84 | 2228 | #define EC_CMD_ACPI_QUERY_EVENT 0x84 |
| 1309 | 2229 | ||
| 1310 | /* Valid addresses in ACPI memory space, for read/write commands */ | 2230 | /* Valid addresses in ACPI memory space, for read/write commands */ |
| 2231 | |||
| 1311 | /* Memory space version; set to EC_ACPI_MEM_VERSION_CURRENT */ | 2232 | /* Memory space version; set to EC_ACPI_MEM_VERSION_CURRENT */ |
| 1312 | #define EC_ACPI_MEM_VERSION 0x00 | 2233 | #define EC_ACPI_MEM_VERSION 0x00 |
| 1313 | /* | 2234 | /* |
| @@ -1317,8 +2238,60 @@ struct ec_params_reboot_ec { | |||
| 1317 | #define EC_ACPI_MEM_TEST 0x01 | 2238 | #define EC_ACPI_MEM_TEST 0x01 |
| 1318 | /* Test compliment; writes here are ignored. */ | 2239 | /* Test compliment; writes here are ignored. */ |
| 1319 | #define EC_ACPI_MEM_TEST_COMPLIMENT 0x02 | 2240 | #define EC_ACPI_MEM_TEST_COMPLIMENT 0x02 |
| 2241 | |||
| 1320 | /* Keyboard backlight brightness percent (0 - 100) */ | 2242 | /* Keyboard backlight brightness percent (0 - 100) */ |
| 1321 | #define EC_ACPI_MEM_KEYBOARD_BACKLIGHT 0x03 | 2243 | #define EC_ACPI_MEM_KEYBOARD_BACKLIGHT 0x03 |
| 2244 | /* DPTF Target Fan Duty (0-100, 0xff for auto/none) */ | ||
| 2245 | #define EC_ACPI_MEM_FAN_DUTY 0x04 | ||
| 2246 | |||
| 2247 | /* | ||
| 2248 | * DPTF temp thresholds. Any of the EC's temp sensors can have up to two | ||
| 2249 | * independent thresholds attached to them. The current value of the ID | ||
| 2250 | * register determines which sensor is affected by the THRESHOLD and COMMIT | ||
| 2251 | * registers. The THRESHOLD register uses the same EC_TEMP_SENSOR_OFFSET scheme | ||
| 2252 | * as the memory-mapped sensors. The COMMIT register applies those settings. | ||
| 2253 | * | ||
| 2254 | * The spec does not mandate any way to read back the threshold settings | ||
| 2255 | * themselves, but when a threshold is crossed the AP needs a way to determine | ||
| 2256 | * which sensor(s) are responsible. Each reading of the ID register clears and | ||
| 2257 | * returns one sensor ID that has crossed one of its threshold (in either | ||
| 2258 | * direction) since the last read. A value of 0xFF means "no new thresholds | ||
| 2259 | * have tripped". Setting or enabling the thresholds for a sensor will clear | ||
| 2260 | * the unread event count for that sensor. | ||
| 2261 | */ | ||
| 2262 | #define EC_ACPI_MEM_TEMP_ID 0x05 | ||
| 2263 | #define EC_ACPI_MEM_TEMP_THRESHOLD 0x06 | ||
| 2264 | #define EC_ACPI_MEM_TEMP_COMMIT 0x07 | ||
| 2265 | /* | ||
| 2266 | * Here are the bits for the COMMIT register: | ||
| 2267 | * bit 0 selects the threshold index for the chosen sensor (0/1) | ||
| 2268 | * bit 1 enables/disables the selected threshold (0 = off, 1 = on) | ||
| 2269 | * Each write to the commit register affects one threshold. | ||
| 2270 | */ | ||
| 2271 | #define EC_ACPI_MEM_TEMP_COMMIT_SELECT_MASK (1 << 0) | ||
| 2272 | #define EC_ACPI_MEM_TEMP_COMMIT_ENABLE_MASK (1 << 1) | ||
| 2273 | /* | ||
| 2274 | * Example: | ||
| 2275 | * | ||
| 2276 | * Set the thresholds for sensor 2 to 50 C and 60 C: | ||
| 2277 | * write 2 to [0x05] -- select temp sensor 2 | ||
| 2278 | * write 0x7b to [0x06] -- C_TO_K(50) - EC_TEMP_SENSOR_OFFSET | ||
| 2279 | * write 0x2 to [0x07] -- enable threshold 0 with this value | ||
| 2280 | * write 0x85 to [0x06] -- C_TO_K(60) - EC_TEMP_SENSOR_OFFSET | ||
| 2281 | * write 0x3 to [0x07] -- enable threshold 1 with this value | ||
| 2282 | * | ||
| 2283 | * Disable the 60 C threshold, leaving the 50 C threshold unchanged: | ||
| 2284 | * write 2 to [0x05] -- select temp sensor 2 | ||
| 2285 | * write 0x1 to [0x07] -- disable threshold 1 | ||
| 2286 | */ | ||
| 2287 | |||
| 2288 | /* DPTF battery charging current limit */ | ||
| 2289 | #define EC_ACPI_MEM_CHARGING_LIMIT 0x08 | ||
| 2290 | |||
| 2291 | /* Charging limit is specified in 64 mA steps */ | ||
| 2292 | #define EC_ACPI_MEM_CHARGING_LIMIT_STEP_MA 64 | ||
| 2293 | /* Value to disable DPTF battery charging limit */ | ||
| 2294 | #define EC_ACPI_MEM_CHARGING_LIMIT_DISABLED 0xff | ||
| 1322 | 2295 | ||
| 1323 | /* Current version of ACPI memory address space */ | 2296 | /* Current version of ACPI memory address space */ |
| 1324 | #define EC_ACPI_MEM_VERSION_CURRENT 1 | 2297 | #define EC_ACPI_MEM_VERSION_CURRENT 1 |
| @@ -1360,10 +2333,21 @@ struct ec_params_reboot_ec { | |||
| 1360 | * Header bytes greater than this indicate a later version. For example, | 2333 | * Header bytes greater than this indicate a later version. For example, |
| 1361 | * EC_CMD_VERSION0 + 1 means we are using version 1. | 2334 | * EC_CMD_VERSION0 + 1 means we are using version 1. |
| 1362 | * | 2335 | * |
| 1363 | * The old EC interface must not use commands 0dc or higher. | 2336 | * The old EC interface must not use commands 0xdc or higher. |
| 1364 | */ | 2337 | */ |
| 1365 | #define EC_CMD_VERSION0 0xdc | 2338 | #define EC_CMD_VERSION0 0xdc |
| 1366 | 2339 | ||
| 1367 | #endif /* !__ACPI__ */ | 2340 | #endif /* !__ACPI__ */ |
| 1368 | 2341 | ||
| 2342 | /*****************************************************************************/ | ||
| 2343 | /* | ||
| 2344 | * Deprecated constants. These constants have been renamed for clarity. The | ||
| 2345 | * meaning and size has not changed. Programs that use the old names should | ||
| 2346 | * switch to the new names soon, as the old names may not be carried forward | ||
| 2347 | * forever. | ||
| 2348 | */ | ||
| 2349 | #define EC_HOST_PARAM_SIZE EC_PROTO2_MAX_PARAM_SIZE | ||
| 2350 | #define EC_LPC_ADDR_OLD_PARAM EC_HOST_CMD_REGION1 | ||
| 2351 | #define EC_OLD_PARAM_SIZE EC_HOST_CMD_REGION_SIZE | ||
| 2352 | |||
| 1369 | #endif /* __CROS_EC_COMMANDS_H */ | 2353 | #endif /* __CROS_EC_COMMANDS_H */ |
diff --git a/include/linux/mfd/ipaq-micro.h b/include/linux/mfd/ipaq-micro.h new file mode 100644 index 000000000000..5c4d29f6674f --- /dev/null +++ b/include/linux/mfd/ipaq-micro.h | |||
| @@ -0,0 +1,148 @@ | |||
| 1 | /* | ||
| 2 | * Header file for the compaq Micro MFD | ||
| 3 | */ | ||
| 4 | |||
| 5 | #ifndef _MFD_IPAQ_MICRO_H_ | ||
| 6 | #define _MFD_IPAQ_MICRO_H_ | ||
| 7 | |||
| 8 | #include <linux/spinlock.h> | ||
| 9 | #include <linux/completion.h> | ||
| 10 | #include <linux/list.h> | ||
| 11 | |||
| 12 | #define TX_BUF_SIZE 32 | ||
| 13 | #define RX_BUF_SIZE 16 | ||
| 14 | #define CHAR_SOF 0x02 | ||
| 15 | |||
| 16 | /* | ||
| 17 | * These are the different messages that can be sent to the microcontroller | ||
| 18 | * to control various aspects. | ||
| 19 | */ | ||
| 20 | #define MSG_VERSION 0x0 | ||
| 21 | #define MSG_KEYBOARD 0x2 | ||
| 22 | #define MSG_TOUCHSCREEN 0x3 | ||
| 23 | #define MSG_EEPROM_READ 0x4 | ||
| 24 | #define MSG_EEPROM_WRITE 0x5 | ||
| 25 | #define MSG_THERMAL_SENSOR 0x6 | ||
| 26 | #define MSG_NOTIFY_LED 0x8 | ||
| 27 | #define MSG_BATTERY 0x9 | ||
| 28 | #define MSG_SPI_READ 0xb | ||
| 29 | #define MSG_SPI_WRITE 0xc | ||
| 30 | #define MSG_BACKLIGHT 0xd /* H3600 only */ | ||
| 31 | #define MSG_CODEC_CTRL 0xe /* H3100 only */ | ||
| 32 | #define MSG_DISPLAY_CTRL 0xf /* H3100 only */ | ||
| 33 | |||
| 34 | /* state of receiver parser */ | ||
| 35 | enum rx_state { | ||
| 36 | STATE_SOF = 0, /* Next byte should be start of frame */ | ||
| 37 | STATE_ID, /* Next byte is ID & message length */ | ||
| 38 | STATE_DATA, /* Next byte is a data byte */ | ||
| 39 | STATE_CHKSUM /* Next byte should be checksum */ | ||
| 40 | }; | ||
| 41 | |||
| 42 | /** | ||
| 43 | * struct ipaq_micro_txdev - TX state | ||
| 44 | * @len: length of message in TX buffer | ||
| 45 | * @index: current index into TX buffer | ||
| 46 | * @buf: TX buffer | ||
| 47 | */ | ||
| 48 | struct ipaq_micro_txdev { | ||
| 49 | u8 len; | ||
| 50 | u8 index; | ||
| 51 | u8 buf[TX_BUF_SIZE]; | ||
| 52 | }; | ||
| 53 | |||
| 54 | /** | ||
| 55 | * struct ipaq_micro_rxdev - RX state | ||
| 56 | * @state: context of RX state machine | ||
| 57 | * @chksum: calculated checksum | ||
| 58 | * @id: message ID from packet | ||
| 59 | * @len: RX buffer length | ||
| 60 | * @index: RX buffer index | ||
| 61 | * @buf: RX buffer | ||
| 62 | */ | ||
| 63 | struct ipaq_micro_rxdev { | ||
| 64 | enum rx_state state; | ||
| 65 | unsigned char chksum; | ||
| 66 | u8 id; | ||
| 67 | unsigned int len; | ||
| 68 | unsigned int index; | ||
| 69 | u8 buf[RX_BUF_SIZE]; | ||
| 70 | }; | ||
| 71 | |||
| 72 | /** | ||
| 73 | * struct ipaq_micro_msg - message to the iPAQ microcontroller | ||
| 74 | * @id: 4-bit ID of the message | ||
| 75 | * @tx_len: length of TX data | ||
| 76 | * @tx_data: TX data to send | ||
| 77 | * @rx_len: length of receieved RX data | ||
| 78 | * @rx_data: RX data to recieve | ||
| 79 | * @ack: a completion that will be completed when RX is complete | ||
| 80 | * @node: list node if message gets queued | ||
| 81 | */ | ||
| 82 | struct ipaq_micro_msg { | ||
| 83 | u8 id; | ||
| 84 | u8 tx_len; | ||
| 85 | u8 tx_data[TX_BUF_SIZE]; | ||
| 86 | u8 rx_len; | ||
| 87 | u8 rx_data[RX_BUF_SIZE]; | ||
| 88 | struct completion ack; | ||
| 89 | struct list_head node; | ||
| 90 | }; | ||
| 91 | |||
| 92 | /** | ||
| 93 | * struct ipaq_micro - iPAQ microcontroller state | ||
| 94 | * @dev: corresponding platform device | ||
| 95 | * @base: virtual memory base for underlying serial device | ||
| 96 | * @sdlc: virtual memory base for Synchronous Data Link Controller | ||
| 97 | * @version: version string | ||
| 98 | * @tx: TX state | ||
| 99 | * @rx: RX state | ||
| 100 | * @lock: lock for this state container | ||
| 101 | * @msg: current message | ||
| 102 | * @queue: message queue | ||
| 103 | * @key: callback for asynchronous key events | ||
| 104 | * @key_data: data to pass along with key events | ||
| 105 | * @ts: callback for asynchronous touchscreen events | ||
| 106 | * @ts_data: data to pass along with key events | ||
| 107 | */ | ||
| 108 | struct ipaq_micro { | ||
| 109 | struct device *dev; | ||
| 110 | void __iomem *base; | ||
| 111 | void __iomem *sdlc; | ||
| 112 | char version[5]; | ||
| 113 | struct ipaq_micro_txdev tx; /* transmit ISR state */ | ||
| 114 | struct ipaq_micro_rxdev rx; /* receive ISR state */ | ||
| 115 | spinlock_t lock; | ||
| 116 | struct ipaq_micro_msg *msg; | ||
| 117 | struct list_head queue; | ||
| 118 | void (*key) (void *data, int len, unsigned char *rxdata); | ||
| 119 | void *key_data; | ||
| 120 | void (*ts) (void *data, int len, unsigned char *rxdata); | ||
| 121 | void *ts_data; | ||
| 122 | }; | ||
| 123 | |||
| 124 | extern int | ||
| 125 | ipaq_micro_tx_msg(struct ipaq_micro *micro, struct ipaq_micro_msg *msg); | ||
| 126 | |||
| 127 | static inline int | ||
| 128 | ipaq_micro_tx_msg_sync(struct ipaq_micro *micro, | ||
| 129 | struct ipaq_micro_msg *msg) | ||
| 130 | { | ||
| 131 | int ret; | ||
| 132 | |||
| 133 | init_completion(&msg->ack); | ||
| 134 | ret = ipaq_micro_tx_msg(micro, msg); | ||
| 135 | wait_for_completion(&msg->ack); | ||
| 136 | |||
| 137 | return ret; | ||
| 138 | } | ||
| 139 | |||
| 140 | static inline int | ||
| 141 | ipaq_micro_tx_msg_async(struct ipaq_micro *micro, | ||
| 142 | struct ipaq_micro_msg *msg) | ||
| 143 | { | ||
| 144 | init_completion(&msg->ack); | ||
| 145 | return ipaq_micro_tx_msg(micro, msg); | ||
| 146 | } | ||
| 147 | |||
| 148 | #endif /* _MFD_IPAQ_MICRO_H_ */ | ||
diff --git a/include/linux/mfd/kempld.h b/include/linux/mfd/kempld.h index b911ef3add03..26e0b469e567 100644 --- a/include/linux/mfd/kempld.h +++ b/include/linux/mfd/kempld.h | |||
| @@ -51,6 +51,8 @@ | |||
| 51 | #define KEMPLD_TYPE_DEBUG 0x1 | 51 | #define KEMPLD_TYPE_DEBUG 0x1 |
| 52 | #define KEMPLD_TYPE_CUSTOM 0x2 | 52 | #define KEMPLD_TYPE_CUSTOM 0x2 |
| 53 | 53 | ||
| 54 | #define KEMPLD_VERSION_LEN 10 | ||
| 55 | |||
| 54 | /** | 56 | /** |
| 55 | * struct kempld_info - PLD device information structure | 57 | * struct kempld_info - PLD device information structure |
| 56 | * @major: PLD major revision | 58 | * @major: PLD major revision |
| @@ -60,6 +62,7 @@ | |||
| 60 | * @type: PLD type | 62 | * @type: PLD type |
| 61 | * @spec_major: PLD FW specification major revision | 63 | * @spec_major: PLD FW specification major revision |
| 62 | * @spec_minor: PLD FW specification minor revision | 64 | * @spec_minor: PLD FW specification minor revision |
| 65 | * @version: PLD version string | ||
| 63 | */ | 66 | */ |
| 64 | struct kempld_info { | 67 | struct kempld_info { |
| 65 | unsigned int major; | 68 | unsigned int major; |
| @@ -69,6 +72,7 @@ struct kempld_info { | |||
| 69 | unsigned int type; | 72 | unsigned int type; |
| 70 | unsigned int spec_major; | 73 | unsigned int spec_major; |
| 71 | unsigned int spec_minor; | 74 | unsigned int spec_minor; |
| 75 | char version[KEMPLD_VERSION_LEN]; | ||
| 72 | }; | 76 | }; |
| 73 | 77 | ||
| 74 | /** | 78 | /** |
diff --git a/include/linux/mfd/mc13xxx.h b/include/linux/mfd/mc13xxx.h index a326c850f046..d63b1d309106 100644 --- a/include/linux/mfd/mc13xxx.h +++ b/include/linux/mfd/mc13xxx.h | |||
| @@ -117,10 +117,6 @@ struct mc13xxx_led_platform_data { | |||
| 117 | 117 | ||
| 118 | #define MAX_LED_CONTROL_REGS 6 | 118 | #define MAX_LED_CONTROL_REGS 6 |
| 119 | 119 | ||
| 120 | struct mc13xxx_leds_platform_data { | ||
| 121 | struct mc13xxx_led_platform_data *led; | ||
| 122 | int num_leds; | ||
| 123 | |||
| 124 | /* MC13783 LED Control 0 */ | 120 | /* MC13783 LED Control 0 */ |
| 125 | #define MC13783_LED_C0_ENABLE (1 << 0) | 121 | #define MC13783_LED_C0_ENABLE (1 << 0) |
| 126 | #define MC13783_LED_C0_TRIODE_MD (1 << 7) | 122 | #define MC13783_LED_C0_TRIODE_MD (1 << 7) |
| @@ -169,10 +165,13 @@ struct mc13xxx_leds_platform_data { | |||
| 169 | /* MC34708 LED Control 0 */ | 165 | /* MC34708 LED Control 0 */ |
| 170 | #define MC34708_LED_C0_CURRENT_R(x) (((x) & 0x3) << 9) | 166 | #define MC34708_LED_C0_CURRENT_R(x) (((x) & 0x3) << 9) |
| 171 | #define MC34708_LED_C0_CURRENT_G(x) (((x) & 0x3) << 21) | 167 | #define MC34708_LED_C0_CURRENT_G(x) (((x) & 0x3) << 21) |
| 168 | |||
| 169 | struct mc13xxx_leds_platform_data { | ||
| 170 | struct mc13xxx_led_platform_data *led; | ||
| 171 | int num_leds; | ||
| 172 | u32 led_control[MAX_LED_CONTROL_REGS]; | 172 | u32 led_control[MAX_LED_CONTROL_REGS]; |
| 173 | }; | 173 | }; |
| 174 | 174 | ||
| 175 | struct mc13xxx_buttons_platform_data { | ||
| 176 | #define MC13783_BUTTON_DBNC_0MS 0 | 175 | #define MC13783_BUTTON_DBNC_0MS 0 |
| 177 | #define MC13783_BUTTON_DBNC_30MS 1 | 176 | #define MC13783_BUTTON_DBNC_30MS 1 |
| 178 | #define MC13783_BUTTON_DBNC_150MS 2 | 177 | #define MC13783_BUTTON_DBNC_150MS 2 |
| @@ -180,6 +179,8 @@ struct mc13xxx_buttons_platform_data { | |||
| 180 | #define MC13783_BUTTON_ENABLE (1 << 2) | 179 | #define MC13783_BUTTON_ENABLE (1 << 2) |
| 181 | #define MC13783_BUTTON_POL_INVERT (1 << 3) | 180 | #define MC13783_BUTTON_POL_INVERT (1 << 3) |
| 182 | #define MC13783_BUTTON_RESET_EN (1 << 4) | 181 | #define MC13783_BUTTON_RESET_EN (1 << 4) |
| 182 | |||
| 183 | struct mc13xxx_buttons_platform_data { | ||
| 183 | int b1on_flags; | 184 | int b1on_flags; |
| 184 | unsigned short b1on_key; | 185 | unsigned short b1on_key; |
| 185 | int b2on_flags; | 186 | int b2on_flags; |
| @@ -188,14 +189,14 @@ struct mc13xxx_buttons_platform_data { | |||
| 188 | unsigned short b3on_key; | 189 | unsigned short b3on_key; |
| 189 | }; | 190 | }; |
| 190 | 191 | ||
| 192 | #define MC13783_TS_ATO_FIRST false | ||
| 193 | #define MC13783_TS_ATO_EACH true | ||
| 194 | |||
| 191 | struct mc13xxx_ts_platform_data { | 195 | struct mc13xxx_ts_platform_data { |
| 192 | /* Delay between Touchscreen polarization and ADC Conversion. | 196 | /* Delay between Touchscreen polarization and ADC Conversion. |
| 193 | * Given in clock ticks of a 32 kHz clock which gives a granularity of | 197 | * Given in clock ticks of a 32 kHz clock which gives a granularity of |
| 194 | * about 30.5ms */ | 198 | * about 30.5ms */ |
| 195 | u8 ato; | 199 | u8 ato; |
| 196 | |||
| 197 | #define MC13783_TS_ATO_FIRST false | ||
| 198 | #define MC13783_TS_ATO_EACH true | ||
| 199 | /* Use the ATO delay only for the first conversion or for each one */ | 200 | /* Use the ATO delay only for the first conversion or for each one */ |
| 200 | bool atox; | 201 | bool atox; |
| 201 | }; | 202 | }; |
| @@ -210,11 +211,12 @@ struct mc13xxx_codec_platform_data { | |||
| 210 | enum mc13783_ssi_port dac_ssi_port; | 211 | enum mc13783_ssi_port dac_ssi_port; |
| 211 | }; | 212 | }; |
| 212 | 213 | ||
| 213 | struct mc13xxx_platform_data { | 214 | #define MC13XXX_USE_TOUCHSCREEN (1 << 0) |
| 214 | #define MC13XXX_USE_TOUCHSCREEN (1 << 0) | ||
| 215 | #define MC13XXX_USE_CODEC (1 << 1) | 215 | #define MC13XXX_USE_CODEC (1 << 1) |
| 216 | #define MC13XXX_USE_ADC (1 << 2) | 216 | #define MC13XXX_USE_ADC (1 << 2) |
| 217 | #define MC13XXX_USE_RTC (1 << 3) | 217 | #define MC13XXX_USE_RTC (1 << 3) |
| 218 | |||
| 219 | struct mc13xxx_platform_data { | ||
| 218 | unsigned int flags; | 220 | unsigned int flags; |
| 219 | 221 | ||
| 220 | struct mc13xxx_regulator_platform_data regulators; | 222 | struct mc13xxx_regulator_platform_data regulators; |
diff --git a/include/linux/mfd/palmas.h b/include/linux/mfd/palmas.h index b8f87b704409..3420e09e2e20 100644 --- a/include/linux/mfd/palmas.h +++ b/include/linux/mfd/palmas.h | |||
| @@ -482,10 +482,10 @@ enum usb_irq_events { | |||
| 482 | 482 | ||
| 483 | /* helper macro to get correct slave number */ | 483 | /* helper macro to get correct slave number */ |
| 484 | #define PALMAS_BASE_TO_SLAVE(x) ((x >> 8) - 1) | 484 | #define PALMAS_BASE_TO_SLAVE(x) ((x >> 8) - 1) |
| 485 | #define PALMAS_BASE_TO_REG(x, y) ((x & 0xff) + y) | 485 | #define PALMAS_BASE_TO_REG(x, y) ((x & 0xFF) + y) |
| 486 | 486 | ||
| 487 | /* Base addresses of IP blocks in Palmas */ | 487 | /* Base addresses of IP blocks in Palmas */ |
| 488 | #define PALMAS_SMPS_DVS_BASE 0x20 | 488 | #define PALMAS_SMPS_DVS_BASE 0x020 |
| 489 | #define PALMAS_RTC_BASE 0x100 | 489 | #define PALMAS_RTC_BASE 0x100 |
| 490 | #define PALMAS_VALIDITY_BASE 0x118 | 490 | #define PALMAS_VALIDITY_BASE 0x118 |
| 491 | #define PALMAS_SMPS_BASE 0x120 | 491 | #define PALMAS_SMPS_BASE 0x120 |
| @@ -504,19 +504,19 @@ enum usb_irq_events { | |||
| 504 | #define PALMAS_TRIM_GPADC_BASE 0x3CD | 504 | #define PALMAS_TRIM_GPADC_BASE 0x3CD |
| 505 | 505 | ||
| 506 | /* Registers for function RTC */ | 506 | /* Registers for function RTC */ |
| 507 | #define PALMAS_SECONDS_REG 0x0 | 507 | #define PALMAS_SECONDS_REG 0x00 |
| 508 | #define PALMAS_MINUTES_REG 0x1 | 508 | #define PALMAS_MINUTES_REG 0x01 |
| 509 | #define PALMAS_HOURS_REG 0x2 | 509 | #define PALMAS_HOURS_REG 0x02 |
| 510 | #define PALMAS_DAYS_REG 0x3 | 510 | #define PALMAS_DAYS_REG 0x03 |
| 511 | #define PALMAS_MONTHS_REG 0x4 | 511 | #define PALMAS_MONTHS_REG 0x04 |
| 512 | #define PALMAS_YEARS_REG 0x5 | 512 | #define PALMAS_YEARS_REG 0x05 |
| 513 | #define PALMAS_WEEKS_REG 0x6 | 513 | #define PALMAS_WEEKS_REG 0x06 |
| 514 | #define PALMAS_ALARM_SECONDS_REG 0x8 | 514 | #define PALMAS_ALARM_SECONDS_REG 0x08 |
| 515 | #define PALMAS_ALARM_MINUTES_REG 0x9 | 515 | #define PALMAS_ALARM_MINUTES_REG 0x09 |
| 516 | #define PALMAS_ALARM_HOURS_REG 0xA | 516 | #define PALMAS_ALARM_HOURS_REG 0x0A |
| 517 | #define PALMAS_ALARM_DAYS_REG 0xB | 517 | #define PALMAS_ALARM_DAYS_REG 0x0B |
| 518 | #define PALMAS_ALARM_MONTHS_REG 0xC | 518 | #define PALMAS_ALARM_MONTHS_REG 0x0C |
| 519 | #define PALMAS_ALARM_YEARS_REG 0xD | 519 | #define PALMAS_ALARM_YEARS_REG 0x0D |
| 520 | #define PALMAS_RTC_CTRL_REG 0x10 | 520 | #define PALMAS_RTC_CTRL_REG 0x10 |
| 521 | #define PALMAS_RTC_STATUS_REG 0x11 | 521 | #define PALMAS_RTC_STATUS_REG 0x11 |
| 522 | #define PALMAS_RTC_INTERRUPTS_REG 0x12 | 522 | #define PALMAS_RTC_INTERRUPTS_REG 0x12 |
| @@ -527,201 +527,201 @@ enum usb_irq_events { | |||
| 527 | 527 | ||
| 528 | /* Bit definitions for SECONDS_REG */ | 528 | /* Bit definitions for SECONDS_REG */ |
| 529 | #define PALMAS_SECONDS_REG_SEC1_MASK 0x70 | 529 | #define PALMAS_SECONDS_REG_SEC1_MASK 0x70 |
| 530 | #define PALMAS_SECONDS_REG_SEC1_SHIFT 4 | 530 | #define PALMAS_SECONDS_REG_SEC1_SHIFT 0x04 |
| 531 | #define PALMAS_SECONDS_REG_SEC0_MASK 0x0f | 531 | #define PALMAS_SECONDS_REG_SEC0_MASK 0x0F |
| 532 | #define PALMAS_SECONDS_REG_SEC0_SHIFT 0 | 532 | #define PALMAS_SECONDS_REG_SEC0_SHIFT 0x00 |
| 533 | 533 | ||
| 534 | /* Bit definitions for MINUTES_REG */ | 534 | /* Bit definitions for MINUTES_REG */ |
| 535 | #define PALMAS_MINUTES_REG_MIN1_MASK 0x70 | 535 | #define PALMAS_MINUTES_REG_MIN1_MASK 0x70 |
| 536 | #define PALMAS_MINUTES_REG_MIN1_SHIFT 4 | 536 | #define PALMAS_MINUTES_REG_MIN1_SHIFT 0x04 |
| 537 | #define PALMAS_MINUTES_REG_MIN0_MASK 0x0f | 537 | #define PALMAS_MINUTES_REG_MIN0_MASK 0x0F |
| 538 | #define PALMAS_MINUTES_REG_MIN0_SHIFT 0 | 538 | #define PALMAS_MINUTES_REG_MIN0_SHIFT 0x00 |
| 539 | 539 | ||
| 540 | /* Bit definitions for HOURS_REG */ | 540 | /* Bit definitions for HOURS_REG */ |
| 541 | #define PALMAS_HOURS_REG_PM_NAM 0x80 | 541 | #define PALMAS_HOURS_REG_PM_NAM 0x80 |
| 542 | #define PALMAS_HOURS_REG_PM_NAM_SHIFT 7 | 542 | #define PALMAS_HOURS_REG_PM_NAM_SHIFT 0x07 |
| 543 | #define PALMAS_HOURS_REG_HOUR1_MASK 0x30 | 543 | #define PALMAS_HOURS_REG_HOUR1_MASK 0x30 |
| 544 | #define PALMAS_HOURS_REG_HOUR1_SHIFT 4 | 544 | #define PALMAS_HOURS_REG_HOUR1_SHIFT 0x04 |
| 545 | #define PALMAS_HOURS_REG_HOUR0_MASK 0x0f | 545 | #define PALMAS_HOURS_REG_HOUR0_MASK 0x0F |
| 546 | #define PALMAS_HOURS_REG_HOUR0_SHIFT 0 | 546 | #define PALMAS_HOURS_REG_HOUR0_SHIFT 0x00 |
| 547 | 547 | ||
| 548 | /* Bit definitions for DAYS_REG */ | 548 | /* Bit definitions for DAYS_REG */ |
| 549 | #define PALMAS_DAYS_REG_DAY1_MASK 0x30 | 549 | #define PALMAS_DAYS_REG_DAY1_MASK 0x30 |
| 550 | #define PALMAS_DAYS_REG_DAY1_SHIFT 4 | 550 | #define PALMAS_DAYS_REG_DAY1_SHIFT 0x04 |
| 551 | #define PALMAS_DAYS_REG_DAY0_MASK 0x0f | 551 | #define PALMAS_DAYS_REG_DAY0_MASK 0x0F |
| 552 | #define PALMAS_DAYS_REG_DAY0_SHIFT 0 | 552 | #define PALMAS_DAYS_REG_DAY0_SHIFT 0x00 |
| 553 | 553 | ||
| 554 | /* Bit definitions for MONTHS_REG */ | 554 | /* Bit definitions for MONTHS_REG */ |
| 555 | #define PALMAS_MONTHS_REG_MONTH1 0x10 | 555 | #define PALMAS_MONTHS_REG_MONTH1 0x10 |
| 556 | #define PALMAS_MONTHS_REG_MONTH1_SHIFT 4 | 556 | #define PALMAS_MONTHS_REG_MONTH1_SHIFT 0x04 |
| 557 | #define PALMAS_MONTHS_REG_MONTH0_MASK 0x0f | 557 | #define PALMAS_MONTHS_REG_MONTH0_MASK 0x0F |
| 558 | #define PALMAS_MONTHS_REG_MONTH0_SHIFT 0 | 558 | #define PALMAS_MONTHS_REG_MONTH0_SHIFT 0x00 |
| 559 | 559 | ||
| 560 | /* Bit definitions for YEARS_REG */ | 560 | /* Bit definitions for YEARS_REG */ |
| 561 | #define PALMAS_YEARS_REG_YEAR1_MASK 0xf0 | 561 | #define PALMAS_YEARS_REG_YEAR1_MASK 0xf0 |
| 562 | #define PALMAS_YEARS_REG_YEAR1_SHIFT 4 | 562 | #define PALMAS_YEARS_REG_YEAR1_SHIFT 0x04 |
| 563 | #define PALMAS_YEARS_REG_YEAR0_MASK 0x0f | 563 | #define PALMAS_YEARS_REG_YEAR0_MASK 0x0F |
| 564 | #define PALMAS_YEARS_REG_YEAR0_SHIFT 0 | 564 | #define PALMAS_YEARS_REG_YEAR0_SHIFT 0x00 |
| 565 | 565 | ||
| 566 | /* Bit definitions for WEEKS_REG */ | 566 | /* Bit definitions for WEEKS_REG */ |
| 567 | #define PALMAS_WEEKS_REG_WEEK_MASK 0x07 | 567 | #define PALMAS_WEEKS_REG_WEEK_MASK 0x07 |
| 568 | #define PALMAS_WEEKS_REG_WEEK_SHIFT 0 | 568 | #define PALMAS_WEEKS_REG_WEEK_SHIFT 0x00 |
| 569 | 569 | ||
| 570 | /* Bit definitions for ALARM_SECONDS_REG */ | 570 | /* Bit definitions for ALARM_SECONDS_REG */ |
| 571 | #define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_MASK 0x70 | 571 | #define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_MASK 0x70 |
| 572 | #define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_SHIFT 4 | 572 | #define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_SHIFT 0x04 |
| 573 | #define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_MASK 0x0f | 573 | #define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_MASK 0x0F |
| 574 | #define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_SHIFT 0 | 574 | #define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_SHIFT 0x00 |
| 575 | 575 | ||
| 576 | /* Bit definitions for ALARM_MINUTES_REG */ | 576 | /* Bit definitions for ALARM_MINUTES_REG */ |
| 577 | #define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_MASK 0x70 | 577 | #define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_MASK 0x70 |
| 578 | #define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_SHIFT 4 | 578 | #define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_SHIFT 0x04 |
| 579 | #define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_MASK 0x0f | 579 | #define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_MASK 0x0F |
| 580 | #define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_SHIFT 0 | 580 | #define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_SHIFT 0x00 |
| 581 | 581 | ||
| 582 | /* Bit definitions for ALARM_HOURS_REG */ | 582 | /* Bit definitions for ALARM_HOURS_REG */ |
| 583 | #define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM 0x80 | 583 | #define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM 0x80 |
| 584 | #define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM_SHIFT 7 | 584 | #define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM_SHIFT 0x07 |
| 585 | #define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_MASK 0x30 | 585 | #define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_MASK 0x30 |
| 586 | #define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_SHIFT 4 | 586 | #define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_SHIFT 0x04 |
| 587 | #define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_MASK 0x0f | 587 | #define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_MASK 0x0F |
| 588 | #define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_SHIFT 0 | 588 | #define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_SHIFT 0x00 |
| 589 | 589 | ||
| 590 | /* Bit definitions for ALARM_DAYS_REG */ | 590 | /* Bit definitions for ALARM_DAYS_REG */ |
| 591 | #define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_MASK 0x30 | 591 | #define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_MASK 0x30 |
| 592 | #define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_SHIFT 4 | 592 | #define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_SHIFT 0x04 |
| 593 | #define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_MASK 0x0f | 593 | #define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_MASK 0x0F |
| 594 | #define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_SHIFT 0 | 594 | #define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_SHIFT 0x00 |
| 595 | 595 | ||
| 596 | /* Bit definitions for ALARM_MONTHS_REG */ | 596 | /* Bit definitions for ALARM_MONTHS_REG */ |
| 597 | #define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1 0x10 | 597 | #define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1 0x10 |
| 598 | #define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1_SHIFT 4 | 598 | #define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1_SHIFT 0x04 |
| 599 | #define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_MASK 0x0f | 599 | #define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_MASK 0x0F |
| 600 | #define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_SHIFT 0 | 600 | #define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_SHIFT 0x00 |
| 601 | 601 | ||
| 602 | /* Bit definitions for ALARM_YEARS_REG */ | 602 | /* Bit definitions for ALARM_YEARS_REG */ |
| 603 | #define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_MASK 0xf0 | 603 | #define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_MASK 0xf0 |
| 604 | #define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_SHIFT 4 | 604 | #define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_SHIFT 0x04 |
| 605 | #define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_MASK 0x0f | 605 | #define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_MASK 0x0F |
| 606 | #define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_SHIFT 0 | 606 | #define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_SHIFT 0x00 |
| 607 | 607 | ||
| 608 | /* Bit definitions for RTC_CTRL_REG */ | 608 | /* Bit definitions for RTC_CTRL_REG */ |
| 609 | #define PALMAS_RTC_CTRL_REG_RTC_V_OPT 0x80 | 609 | #define PALMAS_RTC_CTRL_REG_RTC_V_OPT 0x80 |
| 610 | #define PALMAS_RTC_CTRL_REG_RTC_V_OPT_SHIFT 7 | 610 | #define PALMAS_RTC_CTRL_REG_RTC_V_OPT_SHIFT 0x07 |
| 611 | #define PALMAS_RTC_CTRL_REG_GET_TIME 0x40 | 611 | #define PALMAS_RTC_CTRL_REG_GET_TIME 0x40 |
| 612 | #define PALMAS_RTC_CTRL_REG_GET_TIME_SHIFT 6 | 612 | #define PALMAS_RTC_CTRL_REG_GET_TIME_SHIFT 0x06 |
| 613 | #define PALMAS_RTC_CTRL_REG_SET_32_COUNTER 0x20 | 613 | #define PALMAS_RTC_CTRL_REG_SET_32_COUNTER 0x20 |
| 614 | #define PALMAS_RTC_CTRL_REG_SET_32_COUNTER_SHIFT 5 | 614 | #define PALMAS_RTC_CTRL_REG_SET_32_COUNTER_SHIFT 0x05 |
| 615 | #define PALMAS_RTC_CTRL_REG_TEST_MODE 0x10 | 615 | #define PALMAS_RTC_CTRL_REG_TEST_MODE 0x10 |
| 616 | #define PALMAS_RTC_CTRL_REG_TEST_MODE_SHIFT 4 | 616 | #define PALMAS_RTC_CTRL_REG_TEST_MODE_SHIFT 0x04 |
| 617 | #define PALMAS_RTC_CTRL_REG_MODE_12_24 0x08 | 617 | #define PALMAS_RTC_CTRL_REG_MODE_12_24 0x08 |
| 618 | #define PALMAS_RTC_CTRL_REG_MODE_12_24_SHIFT 3 | 618 | #define PALMAS_RTC_CTRL_REG_MODE_12_24_SHIFT 0x03 |
| 619 | #define PALMAS_RTC_CTRL_REG_AUTO_COMP 0x04 | 619 | #define PALMAS_RTC_CTRL_REG_AUTO_COMP 0x04 |
| 620 | #define PALMAS_RTC_CTRL_REG_AUTO_COMP_SHIFT 2 | 620 | #define PALMAS_RTC_CTRL_REG_AUTO_COMP_SHIFT 0x02 |
| 621 | #define PALMAS_RTC_CTRL_REG_ROUND_30S 0x02 | 621 | #define PALMAS_RTC_CTRL_REG_ROUND_30S 0x02 |
| 622 | #define PALMAS_RTC_CTRL_REG_ROUND_30S_SHIFT 1 | 622 | #define PALMAS_RTC_CTRL_REG_ROUND_30S_SHIFT 0x01 |
| 623 | #define PALMAS_RTC_CTRL_REG_STOP_RTC 0x01 | 623 | #define PALMAS_RTC_CTRL_REG_STOP_RTC 0x01 |
| 624 | #define PALMAS_RTC_CTRL_REG_STOP_RTC_SHIFT 0 | 624 | #define PALMAS_RTC_CTRL_REG_STOP_RTC_SHIFT 0x00 |
| 625 | 625 | ||
| 626 | /* Bit definitions for RTC_STATUS_REG */ | 626 | /* Bit definitions for RTC_STATUS_REG */ |
| 627 | #define PALMAS_RTC_STATUS_REG_POWER_UP 0x80 | 627 | #define PALMAS_RTC_STATUS_REG_POWER_UP 0x80 |
| 628 | #define PALMAS_RTC_STATUS_REG_POWER_UP_SHIFT 7 | 628 | #define PALMAS_RTC_STATUS_REG_POWER_UP_SHIFT 0x07 |
| 629 | #define PALMAS_RTC_STATUS_REG_ALARM 0x40 | 629 | #define PALMAS_RTC_STATUS_REG_ALARM 0x40 |
| 630 | #define PALMAS_RTC_STATUS_REG_ALARM_SHIFT 6 | 630 | #define PALMAS_RTC_STATUS_REG_ALARM_SHIFT 0x06 |
| 631 | #define PALMAS_RTC_STATUS_REG_EVENT_1D 0x20 | 631 | #define PALMAS_RTC_STATUS_REG_EVENT_1D 0x20 |
| 632 | #define PALMAS_RTC_STATUS_REG_EVENT_1D_SHIFT 5 | 632 | #define PALMAS_RTC_STATUS_REG_EVENT_1D_SHIFT 0x05 |
| 633 | #define PALMAS_RTC_STATUS_REG_EVENT_1H 0x10 | 633 | #define PALMAS_RTC_STATUS_REG_EVENT_1H 0x10 |
| 634 | #define PALMAS_RTC_STATUS_REG_EVENT_1H_SHIFT 4 | 634 | #define PALMAS_RTC_STATUS_REG_EVENT_1H_SHIFT 0x04 |
| 635 | #define PALMAS_RTC_STATUS_REG_EVENT_1M 0x08 | 635 | #define PALMAS_RTC_STATUS_REG_EVENT_1M 0x08 |
| 636 | #define PALMAS_RTC_STATUS_REG_EVENT_1M_SHIFT 3 | 636 | #define PALMAS_RTC_STATUS_REG_EVENT_1M_SHIFT 0x03 |
| 637 | #define PALMAS_RTC_STATUS_REG_EVENT_1S 0x04 | 637 | #define PALMAS_RTC_STATUS_REG_EVENT_1S 0x04 |
| 638 | #define PALMAS_RTC_STATUS_REG_EVENT_1S_SHIFT 2 | 638 | #define PALMAS_RTC_STATUS_REG_EVENT_1S_SHIFT 0x02 |
| 639 | #define PALMAS_RTC_STATUS_REG_RUN 0x02 | 639 | #define PALMAS_RTC_STATUS_REG_RUN 0x02 |
| 640 | #define PALMAS_RTC_STATUS_REG_RUN_SHIFT 1 | 640 | #define PALMAS_RTC_STATUS_REG_RUN_SHIFT 0x01 |
| 641 | 641 | ||
| 642 | /* Bit definitions for RTC_INTERRUPTS_REG */ | 642 | /* Bit definitions for RTC_INTERRUPTS_REG */ |
| 643 | #define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN 0x10 | 643 | #define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN 0x10 |
| 644 | #define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN_SHIFT 4 | 644 | #define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN_SHIFT 0x04 |
| 645 | #define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM 0x08 | 645 | #define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM 0x08 |
| 646 | #define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM_SHIFT 3 | 646 | #define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM_SHIFT 0x03 |
| 647 | #define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER 0x04 | 647 | #define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER 0x04 |
| 648 | #define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER_SHIFT 2 | 648 | #define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER_SHIFT 0x02 |
| 649 | #define PALMAS_RTC_INTERRUPTS_REG_EVERY_MASK 0x03 | 649 | #define PALMAS_RTC_INTERRUPTS_REG_EVERY_MASK 0x03 |
| 650 | #define PALMAS_RTC_INTERRUPTS_REG_EVERY_SHIFT 0 | 650 | #define PALMAS_RTC_INTERRUPTS_REG_EVERY_SHIFT 0x00 |
| 651 | 651 | ||
| 652 | /* Bit definitions for RTC_COMP_LSB_REG */ | 652 | /* Bit definitions for RTC_COMP_LSB_REG */ |
| 653 | #define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_MASK 0xff | 653 | #define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_MASK 0xFF |
| 654 | #define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_SHIFT 0 | 654 | #define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_SHIFT 0x00 |
| 655 | 655 | ||
| 656 | /* Bit definitions for RTC_COMP_MSB_REG */ | 656 | /* Bit definitions for RTC_COMP_MSB_REG */ |
| 657 | #define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_MASK 0xff | 657 | #define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_MASK 0xFF |
| 658 | #define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_SHIFT 0 | 658 | #define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_SHIFT 0x00 |
| 659 | 659 | ||
| 660 | /* Bit definitions for RTC_RES_PROG_REG */ | 660 | /* Bit definitions for RTC_RES_PROG_REG */ |
| 661 | #define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_MASK 0x3f | 661 | #define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_MASK 0x3F |
| 662 | #define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_SHIFT 0 | 662 | #define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_SHIFT 0x00 |
| 663 | 663 | ||
| 664 | /* Bit definitions for RTC_RESET_STATUS_REG */ | 664 | /* Bit definitions for RTC_RESET_STATUS_REG */ |
| 665 | #define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS 0x01 | 665 | #define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS 0x01 |
| 666 | #define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS_SHIFT 0 | 666 | #define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS_SHIFT 0x00 |
| 667 | 667 | ||
| 668 | /* Registers for function BACKUP */ | 668 | /* Registers for function BACKUP */ |
| 669 | #define PALMAS_BACKUP0 0x0 | 669 | #define PALMAS_BACKUP0 0x00 |
| 670 | #define PALMAS_BACKUP1 0x1 | 670 | #define PALMAS_BACKUP1 0x01 |
| 671 | #define PALMAS_BACKUP2 0x2 | 671 | #define PALMAS_BACKUP2 0x02 |
| 672 | #define PALMAS_BACKUP3 0x3 | 672 | #define PALMAS_BACKUP3 0x03 |
| 673 | #define PALMAS_BACKUP4 0x4 | 673 | #define PALMAS_BACKUP4 0x04 |
| 674 | #define PALMAS_BACKUP5 0x5 | 674 | #define PALMAS_BACKUP5 0x05 |
| 675 | #define PALMAS_BACKUP6 0x6 | 675 | #define PALMAS_BACKUP6 0x06 |
| 676 | #define PALMAS_BACKUP7 0x7 | 676 | #define PALMAS_BACKUP7 0x07 |
| 677 | 677 | ||
| 678 | /* Bit definitions for BACKUP0 */ | 678 | /* Bit definitions for BACKUP0 */ |
| 679 | #define PALMAS_BACKUP0_BACKUP_MASK 0xff | 679 | #define PALMAS_BACKUP0_BACKUP_MASK 0xFF |
| 680 | #define PALMAS_BACKUP0_BACKUP_SHIFT 0 | 680 | #define PALMAS_BACKUP0_BACKUP_SHIFT 0x00 |
| 681 | 681 | ||
| 682 | /* Bit definitions for BACKUP1 */ | 682 | /* Bit definitions for BACKUP1 */ |
| 683 | #define PALMAS_BACKUP1_BACKUP_MASK 0xff | 683 | #define PALMAS_BACKUP1_BACKUP_MASK 0xFF |
| 684 | #define PALMAS_BACKUP1_BACKUP_SHIFT 0 | 684 | #define PALMAS_BACKUP1_BACKUP_SHIFT 0x00 |
| 685 | 685 | ||
| 686 | /* Bit definitions for BACKUP2 */ | 686 | /* Bit definitions for BACKUP2 */ |
| 687 | #define PALMAS_BACKUP2_BACKUP_MASK 0xff | 687 | #define PALMAS_BACKUP2_BACKUP_MASK 0xFF |
| 688 | #define PALMAS_BACKUP2_BACKUP_SHIFT 0 | 688 | #define PALMAS_BACKUP2_BACKUP_SHIFT 0x00 |
| 689 | 689 | ||
| 690 | /* Bit definitions for BACKUP3 */ | 690 | /* Bit definitions for BACKUP3 */ |
| 691 | #define PALMAS_BACKUP3_BACKUP_MASK 0xff | 691 | #define PALMAS_BACKUP3_BACKUP_MASK 0xFF |
| 692 | #define PALMAS_BACKUP3_BACKUP_SHIFT 0 | 692 | #define PALMAS_BACKUP3_BACKUP_SHIFT 0x00 |
| 693 | 693 | ||
| 694 | /* Bit definitions for BACKUP4 */ | 694 | /* Bit definitions for BACKUP4 */ |
| 695 | #define PALMAS_BACKUP4_BACKUP_MASK 0xff | 695 | #define PALMAS_BACKUP4_BACKUP_MASK 0xFF |
| 696 | #define PALMAS_BACKUP4_BACKUP_SHIFT 0 | 696 | #define PALMAS_BACKUP4_BACKUP_SHIFT 0x00 |
| 697 | 697 | ||
| 698 | /* Bit definitions for BACKUP5 */ | 698 | /* Bit definitions for BACKUP5 */ |
| 699 | #define PALMAS_BACKUP5_BACKUP_MASK 0xff | 699 | #define PALMAS_BACKUP5_BACKUP_MASK 0xFF |
| 700 | #define PALMAS_BACKUP5_BACKUP_SHIFT 0 | 700 | #define PALMAS_BACKUP5_BACKUP_SHIFT 0x00 |
| 701 | 701 | ||
| 702 | /* Bit definitions for BACKUP6 */ | 702 | /* Bit definitions for BACKUP6 */ |
| 703 | #define PALMAS_BACKUP6_BACKUP_MASK 0xff | 703 | #define PALMAS_BACKUP6_BACKUP_MASK 0xFF |
| 704 | #define PALMAS_BACKUP6_BACKUP_SHIFT 0 | 704 | #define PALMAS_BACKUP6_BACKUP_SHIFT 0x00 |
| 705 | 705 | ||
| 706 | /* Bit definitions for BACKUP7 */ | 706 | /* Bit definitions for BACKUP7 */ |
| 707 | #define PALMAS_BACKUP7_BACKUP_MASK 0xff | 707 | #define PALMAS_BACKUP7_BACKUP_MASK 0xFF |
| 708 | #define PALMAS_BACKUP7_BACKUP_SHIFT 0 | 708 | #define PALMAS_BACKUP7_BACKUP_SHIFT 0x00 |
| 709 | 709 | ||
| 710 | /* Registers for function SMPS */ | 710 | /* Registers for function SMPS */ |
| 711 | #define PALMAS_SMPS12_CTRL 0x0 | 711 | #define PALMAS_SMPS12_CTRL 0x00 |
| 712 | #define PALMAS_SMPS12_TSTEP 0x1 | 712 | #define PALMAS_SMPS12_TSTEP 0x01 |
| 713 | #define PALMAS_SMPS12_FORCE 0x2 | 713 | #define PALMAS_SMPS12_FORCE 0x02 |
| 714 | #define PALMAS_SMPS12_VOLTAGE 0x3 | 714 | #define PALMAS_SMPS12_VOLTAGE 0x03 |
| 715 | #define PALMAS_SMPS3_CTRL 0x4 | 715 | #define PALMAS_SMPS3_CTRL 0x04 |
| 716 | #define PALMAS_SMPS3_VOLTAGE 0x7 | 716 | #define PALMAS_SMPS3_VOLTAGE 0x07 |
| 717 | #define PALMAS_SMPS45_CTRL 0x8 | 717 | #define PALMAS_SMPS45_CTRL 0x08 |
| 718 | #define PALMAS_SMPS45_TSTEP 0x9 | 718 | #define PALMAS_SMPS45_TSTEP 0x09 |
| 719 | #define PALMAS_SMPS45_FORCE 0xA | 719 | #define PALMAS_SMPS45_FORCE 0x0A |
| 720 | #define PALMAS_SMPS45_VOLTAGE 0xB | 720 | #define PALMAS_SMPS45_VOLTAGE 0x0B |
| 721 | #define PALMAS_SMPS6_CTRL 0xC | 721 | #define PALMAS_SMPS6_CTRL 0x0C |
| 722 | #define PALMAS_SMPS6_TSTEP 0xD | 722 | #define PALMAS_SMPS6_TSTEP 0x0D |
| 723 | #define PALMAS_SMPS6_FORCE 0xE | 723 | #define PALMAS_SMPS6_FORCE 0x0E |
| 724 | #define PALMAS_SMPS6_VOLTAGE 0xF | 724 | #define PALMAS_SMPS6_VOLTAGE 0x0F |
| 725 | #define PALMAS_SMPS7_CTRL 0x10 | 725 | #define PALMAS_SMPS7_CTRL 0x10 |
| 726 | #define PALMAS_SMPS7_VOLTAGE 0x13 | 726 | #define PALMAS_SMPS7_VOLTAGE 0x13 |
| 727 | #define PALMAS_SMPS8_CTRL 0x14 | 727 | #define PALMAS_SMPS8_CTRL 0x14 |
| @@ -744,303 +744,303 @@ enum usb_irq_events { | |||
| 744 | 744 | ||
| 745 | /* Bit definitions for SMPS12_CTRL */ | 745 | /* Bit definitions for SMPS12_CTRL */ |
| 746 | #define PALMAS_SMPS12_CTRL_WR_S 0x80 | 746 | #define PALMAS_SMPS12_CTRL_WR_S 0x80 |
| 747 | #define PALMAS_SMPS12_CTRL_WR_S_SHIFT 7 | 747 | #define PALMAS_SMPS12_CTRL_WR_S_SHIFT 0x07 |
| 748 | #define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN 0x40 | 748 | #define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN 0x40 |
| 749 | #define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN_SHIFT 6 | 749 | #define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN_SHIFT 0x06 |
| 750 | #define PALMAS_SMPS12_CTRL_STATUS_MASK 0x30 | 750 | #define PALMAS_SMPS12_CTRL_STATUS_MASK 0x30 |
| 751 | #define PALMAS_SMPS12_CTRL_STATUS_SHIFT 4 | 751 | #define PALMAS_SMPS12_CTRL_STATUS_SHIFT 0x04 |
| 752 | #define PALMAS_SMPS12_CTRL_MODE_SLEEP_MASK 0x0c | 752 | #define PALMAS_SMPS12_CTRL_MODE_SLEEP_MASK 0x0c |
| 753 | #define PALMAS_SMPS12_CTRL_MODE_SLEEP_SHIFT 2 | 753 | #define PALMAS_SMPS12_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 754 | #define PALMAS_SMPS12_CTRL_MODE_ACTIVE_MASK 0x03 | 754 | #define PALMAS_SMPS12_CTRL_MODE_ACTIVE_MASK 0x03 |
| 755 | #define PALMAS_SMPS12_CTRL_MODE_ACTIVE_SHIFT 0 | 755 | #define PALMAS_SMPS12_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 756 | 756 | ||
| 757 | /* Bit definitions for SMPS12_TSTEP */ | 757 | /* Bit definitions for SMPS12_TSTEP */ |
| 758 | #define PALMAS_SMPS12_TSTEP_TSTEP_MASK 0x03 | 758 | #define PALMAS_SMPS12_TSTEP_TSTEP_MASK 0x03 |
| 759 | #define PALMAS_SMPS12_TSTEP_TSTEP_SHIFT 0 | 759 | #define PALMAS_SMPS12_TSTEP_TSTEP_SHIFT 0x00 |
| 760 | 760 | ||
| 761 | /* Bit definitions for SMPS12_FORCE */ | 761 | /* Bit definitions for SMPS12_FORCE */ |
| 762 | #define PALMAS_SMPS12_FORCE_CMD 0x80 | 762 | #define PALMAS_SMPS12_FORCE_CMD 0x80 |
| 763 | #define PALMAS_SMPS12_FORCE_CMD_SHIFT 7 | 763 | #define PALMAS_SMPS12_FORCE_CMD_SHIFT 0x07 |
| 764 | #define PALMAS_SMPS12_FORCE_VSEL_MASK 0x7f | 764 | #define PALMAS_SMPS12_FORCE_VSEL_MASK 0x7F |
| 765 | #define PALMAS_SMPS12_FORCE_VSEL_SHIFT 0 | 765 | #define PALMAS_SMPS12_FORCE_VSEL_SHIFT 0x00 |
| 766 | 766 | ||
| 767 | /* Bit definitions for SMPS12_VOLTAGE */ | 767 | /* Bit definitions for SMPS12_VOLTAGE */ |
| 768 | #define PALMAS_SMPS12_VOLTAGE_RANGE 0x80 | 768 | #define PALMAS_SMPS12_VOLTAGE_RANGE 0x80 |
| 769 | #define PALMAS_SMPS12_VOLTAGE_RANGE_SHIFT 7 | 769 | #define PALMAS_SMPS12_VOLTAGE_RANGE_SHIFT 0x07 |
| 770 | #define PALMAS_SMPS12_VOLTAGE_VSEL_MASK 0x7f | 770 | #define PALMAS_SMPS12_VOLTAGE_VSEL_MASK 0x7F |
| 771 | #define PALMAS_SMPS12_VOLTAGE_VSEL_SHIFT 0 | 771 | #define PALMAS_SMPS12_VOLTAGE_VSEL_SHIFT 0x00 |
| 772 | 772 | ||
| 773 | /* Bit definitions for SMPS3_CTRL */ | 773 | /* Bit definitions for SMPS3_CTRL */ |
| 774 | #define PALMAS_SMPS3_CTRL_WR_S 0x80 | 774 | #define PALMAS_SMPS3_CTRL_WR_S 0x80 |
| 775 | #define PALMAS_SMPS3_CTRL_WR_S_SHIFT 7 | 775 | #define PALMAS_SMPS3_CTRL_WR_S_SHIFT 0x07 |
| 776 | #define PALMAS_SMPS3_CTRL_STATUS_MASK 0x30 | 776 | #define PALMAS_SMPS3_CTRL_STATUS_MASK 0x30 |
| 777 | #define PALMAS_SMPS3_CTRL_STATUS_SHIFT 4 | 777 | #define PALMAS_SMPS3_CTRL_STATUS_SHIFT 0x04 |
| 778 | #define PALMAS_SMPS3_CTRL_MODE_SLEEP_MASK 0x0c | 778 | #define PALMAS_SMPS3_CTRL_MODE_SLEEP_MASK 0x0c |
| 779 | #define PALMAS_SMPS3_CTRL_MODE_SLEEP_SHIFT 2 | 779 | #define PALMAS_SMPS3_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 780 | #define PALMAS_SMPS3_CTRL_MODE_ACTIVE_MASK 0x03 | 780 | #define PALMAS_SMPS3_CTRL_MODE_ACTIVE_MASK 0x03 |
| 781 | #define PALMAS_SMPS3_CTRL_MODE_ACTIVE_SHIFT 0 | 781 | #define PALMAS_SMPS3_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 782 | 782 | ||
| 783 | /* Bit definitions for SMPS3_VOLTAGE */ | 783 | /* Bit definitions for SMPS3_VOLTAGE */ |
| 784 | #define PALMAS_SMPS3_VOLTAGE_RANGE 0x80 | 784 | #define PALMAS_SMPS3_VOLTAGE_RANGE 0x80 |
| 785 | #define PALMAS_SMPS3_VOLTAGE_RANGE_SHIFT 7 | 785 | #define PALMAS_SMPS3_VOLTAGE_RANGE_SHIFT 0x07 |
| 786 | #define PALMAS_SMPS3_VOLTAGE_VSEL_MASK 0x7f | 786 | #define PALMAS_SMPS3_VOLTAGE_VSEL_MASK 0x7F |
| 787 | #define PALMAS_SMPS3_VOLTAGE_VSEL_SHIFT 0 | 787 | #define PALMAS_SMPS3_VOLTAGE_VSEL_SHIFT 0x00 |
| 788 | 788 | ||
| 789 | /* Bit definitions for SMPS45_CTRL */ | 789 | /* Bit definitions for SMPS45_CTRL */ |
| 790 | #define PALMAS_SMPS45_CTRL_WR_S 0x80 | 790 | #define PALMAS_SMPS45_CTRL_WR_S 0x80 |
| 791 | #define PALMAS_SMPS45_CTRL_WR_S_SHIFT 7 | 791 | #define PALMAS_SMPS45_CTRL_WR_S_SHIFT 0x07 |
| 792 | #define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN 0x40 | 792 | #define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN 0x40 |
| 793 | #define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN_SHIFT 6 | 793 | #define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN_SHIFT 0x06 |
| 794 | #define PALMAS_SMPS45_CTRL_STATUS_MASK 0x30 | 794 | #define PALMAS_SMPS45_CTRL_STATUS_MASK 0x30 |
| 795 | #define PALMAS_SMPS45_CTRL_STATUS_SHIFT 4 | 795 | #define PALMAS_SMPS45_CTRL_STATUS_SHIFT 0x04 |
| 796 | #define PALMAS_SMPS45_CTRL_MODE_SLEEP_MASK 0x0c | 796 | #define PALMAS_SMPS45_CTRL_MODE_SLEEP_MASK 0x0c |
| 797 | #define PALMAS_SMPS45_CTRL_MODE_SLEEP_SHIFT 2 | 797 | #define PALMAS_SMPS45_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 798 | #define PALMAS_SMPS45_CTRL_MODE_ACTIVE_MASK 0x03 | 798 | #define PALMAS_SMPS45_CTRL_MODE_ACTIVE_MASK 0x03 |
| 799 | #define PALMAS_SMPS45_CTRL_MODE_ACTIVE_SHIFT 0 | 799 | #define PALMAS_SMPS45_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 800 | 800 | ||
| 801 | /* Bit definitions for SMPS45_TSTEP */ | 801 | /* Bit definitions for SMPS45_TSTEP */ |
| 802 | #define PALMAS_SMPS45_TSTEP_TSTEP_MASK 0x03 | 802 | #define PALMAS_SMPS45_TSTEP_TSTEP_MASK 0x03 |
| 803 | #define PALMAS_SMPS45_TSTEP_TSTEP_SHIFT 0 | 803 | #define PALMAS_SMPS45_TSTEP_TSTEP_SHIFT 0x00 |
| 804 | 804 | ||
| 805 | /* Bit definitions for SMPS45_FORCE */ | 805 | /* Bit definitions for SMPS45_FORCE */ |
| 806 | #define PALMAS_SMPS45_FORCE_CMD 0x80 | 806 | #define PALMAS_SMPS45_FORCE_CMD 0x80 |
| 807 | #define PALMAS_SMPS45_FORCE_CMD_SHIFT 7 | 807 | #define PALMAS_SMPS45_FORCE_CMD_SHIFT 0x07 |
| 808 | #define PALMAS_SMPS45_FORCE_VSEL_MASK 0x7f | 808 | #define PALMAS_SMPS45_FORCE_VSEL_MASK 0x7F |
| 809 | #define PALMAS_SMPS45_FORCE_VSEL_SHIFT 0 | 809 | #define PALMAS_SMPS45_FORCE_VSEL_SHIFT 0x00 |
| 810 | 810 | ||
| 811 | /* Bit definitions for SMPS45_VOLTAGE */ | 811 | /* Bit definitions for SMPS45_VOLTAGE */ |
| 812 | #define PALMAS_SMPS45_VOLTAGE_RANGE 0x80 | 812 | #define PALMAS_SMPS45_VOLTAGE_RANGE 0x80 |
| 813 | #define PALMAS_SMPS45_VOLTAGE_RANGE_SHIFT 7 | 813 | #define PALMAS_SMPS45_VOLTAGE_RANGE_SHIFT 0x07 |
| 814 | #define PALMAS_SMPS45_VOLTAGE_VSEL_MASK 0x7f | 814 | #define PALMAS_SMPS45_VOLTAGE_VSEL_MASK 0x7F |
| 815 | #define PALMAS_SMPS45_VOLTAGE_VSEL_SHIFT 0 | 815 | #define PALMAS_SMPS45_VOLTAGE_VSEL_SHIFT 0x00 |
| 816 | 816 | ||
| 817 | /* Bit definitions for SMPS6_CTRL */ | 817 | /* Bit definitions for SMPS6_CTRL */ |
| 818 | #define PALMAS_SMPS6_CTRL_WR_S 0x80 | 818 | #define PALMAS_SMPS6_CTRL_WR_S 0x80 |
| 819 | #define PALMAS_SMPS6_CTRL_WR_S_SHIFT 7 | 819 | #define PALMAS_SMPS6_CTRL_WR_S_SHIFT 0x07 |
| 820 | #define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN 0x40 | 820 | #define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN 0x40 |
| 821 | #define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN_SHIFT 6 | 821 | #define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN_SHIFT 0x06 |
| 822 | #define PALMAS_SMPS6_CTRL_STATUS_MASK 0x30 | 822 | #define PALMAS_SMPS6_CTRL_STATUS_MASK 0x30 |
| 823 | #define PALMAS_SMPS6_CTRL_STATUS_SHIFT 4 | 823 | #define PALMAS_SMPS6_CTRL_STATUS_SHIFT 0x04 |
| 824 | #define PALMAS_SMPS6_CTRL_MODE_SLEEP_MASK 0x0c | 824 | #define PALMAS_SMPS6_CTRL_MODE_SLEEP_MASK 0x0c |
| 825 | #define PALMAS_SMPS6_CTRL_MODE_SLEEP_SHIFT 2 | 825 | #define PALMAS_SMPS6_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 826 | #define PALMAS_SMPS6_CTRL_MODE_ACTIVE_MASK 0x03 | 826 | #define PALMAS_SMPS6_CTRL_MODE_ACTIVE_MASK 0x03 |
| 827 | #define PALMAS_SMPS6_CTRL_MODE_ACTIVE_SHIFT 0 | 827 | #define PALMAS_SMPS6_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 828 | 828 | ||
| 829 | /* Bit definitions for SMPS6_TSTEP */ | 829 | /* Bit definitions for SMPS6_TSTEP */ |
| 830 | #define PALMAS_SMPS6_TSTEP_TSTEP_MASK 0x03 | 830 | #define PALMAS_SMPS6_TSTEP_TSTEP_MASK 0x03 |
| 831 | #define PALMAS_SMPS6_TSTEP_TSTEP_SHIFT 0 | 831 | #define PALMAS_SMPS6_TSTEP_TSTEP_SHIFT 0x00 |
| 832 | 832 | ||
| 833 | /* Bit definitions for SMPS6_FORCE */ | 833 | /* Bit definitions for SMPS6_FORCE */ |
| 834 | #define PALMAS_SMPS6_FORCE_CMD 0x80 | 834 | #define PALMAS_SMPS6_FORCE_CMD 0x80 |
| 835 | #define PALMAS_SMPS6_FORCE_CMD_SHIFT 7 | 835 | #define PALMAS_SMPS6_FORCE_CMD_SHIFT 0x07 |
| 836 | #define PALMAS_SMPS6_FORCE_VSEL_MASK 0x7f | 836 | #define PALMAS_SMPS6_FORCE_VSEL_MASK 0x7F |
| 837 | #define PALMAS_SMPS6_FORCE_VSEL_SHIFT 0 | 837 | #define PALMAS_SMPS6_FORCE_VSEL_SHIFT 0x00 |
| 838 | 838 | ||
| 839 | /* Bit definitions for SMPS6_VOLTAGE */ | 839 | /* Bit definitions for SMPS6_VOLTAGE */ |
| 840 | #define PALMAS_SMPS6_VOLTAGE_RANGE 0x80 | 840 | #define PALMAS_SMPS6_VOLTAGE_RANGE 0x80 |
| 841 | #define PALMAS_SMPS6_VOLTAGE_RANGE_SHIFT 7 | 841 | #define PALMAS_SMPS6_VOLTAGE_RANGE_SHIFT 0x07 |
| 842 | #define PALMAS_SMPS6_VOLTAGE_VSEL_MASK 0x7f | 842 | #define PALMAS_SMPS6_VOLTAGE_VSEL_MASK 0x7F |
| 843 | #define PALMAS_SMPS6_VOLTAGE_VSEL_SHIFT 0 | 843 | #define PALMAS_SMPS6_VOLTAGE_VSEL_SHIFT 0x00 |
| 844 | 844 | ||
| 845 | /* Bit definitions for SMPS7_CTRL */ | 845 | /* Bit definitions for SMPS7_CTRL */ |
| 846 | #define PALMAS_SMPS7_CTRL_WR_S 0x80 | 846 | #define PALMAS_SMPS7_CTRL_WR_S 0x80 |
| 847 | #define PALMAS_SMPS7_CTRL_WR_S_SHIFT 7 | 847 | #define PALMAS_SMPS7_CTRL_WR_S_SHIFT 0x07 |
| 848 | #define PALMAS_SMPS7_CTRL_STATUS_MASK 0x30 | 848 | #define PALMAS_SMPS7_CTRL_STATUS_MASK 0x30 |
| 849 | #define PALMAS_SMPS7_CTRL_STATUS_SHIFT 4 | 849 | #define PALMAS_SMPS7_CTRL_STATUS_SHIFT 0x04 |
| 850 | #define PALMAS_SMPS7_CTRL_MODE_SLEEP_MASK 0x0c | 850 | #define PALMAS_SMPS7_CTRL_MODE_SLEEP_MASK 0x0c |
| 851 | #define PALMAS_SMPS7_CTRL_MODE_SLEEP_SHIFT 2 | 851 | #define PALMAS_SMPS7_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 852 | #define PALMAS_SMPS7_CTRL_MODE_ACTIVE_MASK 0x03 | 852 | #define PALMAS_SMPS7_CTRL_MODE_ACTIVE_MASK 0x03 |
| 853 | #define PALMAS_SMPS7_CTRL_MODE_ACTIVE_SHIFT 0 | 853 | #define PALMAS_SMPS7_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 854 | 854 | ||
| 855 | /* Bit definitions for SMPS7_VOLTAGE */ | 855 | /* Bit definitions for SMPS7_VOLTAGE */ |
| 856 | #define PALMAS_SMPS7_VOLTAGE_RANGE 0x80 | 856 | #define PALMAS_SMPS7_VOLTAGE_RANGE 0x80 |
| 857 | #define PALMAS_SMPS7_VOLTAGE_RANGE_SHIFT 7 | 857 | #define PALMAS_SMPS7_VOLTAGE_RANGE_SHIFT 0x07 |
| 858 | #define PALMAS_SMPS7_VOLTAGE_VSEL_MASK 0x7f | 858 | #define PALMAS_SMPS7_VOLTAGE_VSEL_MASK 0x7F |
| 859 | #define PALMAS_SMPS7_VOLTAGE_VSEL_SHIFT 0 | 859 | #define PALMAS_SMPS7_VOLTAGE_VSEL_SHIFT 0x00 |
| 860 | 860 | ||
| 861 | /* Bit definitions for SMPS8_CTRL */ | 861 | /* Bit definitions for SMPS8_CTRL */ |
| 862 | #define PALMAS_SMPS8_CTRL_WR_S 0x80 | 862 | #define PALMAS_SMPS8_CTRL_WR_S 0x80 |
| 863 | #define PALMAS_SMPS8_CTRL_WR_S_SHIFT 7 | 863 | #define PALMAS_SMPS8_CTRL_WR_S_SHIFT 0x07 |
| 864 | #define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN 0x40 | 864 | #define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN 0x40 |
| 865 | #define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN_SHIFT 6 | 865 | #define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN_SHIFT 0x06 |
| 866 | #define PALMAS_SMPS8_CTRL_STATUS_MASK 0x30 | 866 | #define PALMAS_SMPS8_CTRL_STATUS_MASK 0x30 |
| 867 | #define PALMAS_SMPS8_CTRL_STATUS_SHIFT 4 | 867 | #define PALMAS_SMPS8_CTRL_STATUS_SHIFT 0x04 |
| 868 | #define PALMAS_SMPS8_CTRL_MODE_SLEEP_MASK 0x0c | 868 | #define PALMAS_SMPS8_CTRL_MODE_SLEEP_MASK 0x0c |
| 869 | #define PALMAS_SMPS8_CTRL_MODE_SLEEP_SHIFT 2 | 869 | #define PALMAS_SMPS8_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 870 | #define PALMAS_SMPS8_CTRL_MODE_ACTIVE_MASK 0x03 | 870 | #define PALMAS_SMPS8_CTRL_MODE_ACTIVE_MASK 0x03 |
| 871 | #define PALMAS_SMPS8_CTRL_MODE_ACTIVE_SHIFT 0 | 871 | #define PALMAS_SMPS8_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 872 | 872 | ||
| 873 | /* Bit definitions for SMPS8_TSTEP */ | 873 | /* Bit definitions for SMPS8_TSTEP */ |
| 874 | #define PALMAS_SMPS8_TSTEP_TSTEP_MASK 0x03 | 874 | #define PALMAS_SMPS8_TSTEP_TSTEP_MASK 0x03 |
| 875 | #define PALMAS_SMPS8_TSTEP_TSTEP_SHIFT 0 | 875 | #define PALMAS_SMPS8_TSTEP_TSTEP_SHIFT 0x00 |
| 876 | 876 | ||
| 877 | /* Bit definitions for SMPS8_FORCE */ | 877 | /* Bit definitions for SMPS8_FORCE */ |
| 878 | #define PALMAS_SMPS8_FORCE_CMD 0x80 | 878 | #define PALMAS_SMPS8_FORCE_CMD 0x80 |
| 879 | #define PALMAS_SMPS8_FORCE_CMD_SHIFT 7 | 879 | #define PALMAS_SMPS8_FORCE_CMD_SHIFT 0x07 |
| 880 | #define PALMAS_SMPS8_FORCE_VSEL_MASK 0x7f | 880 | #define PALMAS_SMPS8_FORCE_VSEL_MASK 0x7F |
| 881 | #define PALMAS_SMPS8_FORCE_VSEL_SHIFT 0 | 881 | #define PALMAS_SMPS8_FORCE_VSEL_SHIFT 0x00 |
| 882 | 882 | ||
| 883 | /* Bit definitions for SMPS8_VOLTAGE */ | 883 | /* Bit definitions for SMPS8_VOLTAGE */ |
| 884 | #define PALMAS_SMPS8_VOLTAGE_RANGE 0x80 | 884 | #define PALMAS_SMPS8_VOLTAGE_RANGE 0x80 |
| 885 | #define PALMAS_SMPS8_VOLTAGE_RANGE_SHIFT 7 | 885 | #define PALMAS_SMPS8_VOLTAGE_RANGE_SHIFT 0x07 |
| 886 | #define PALMAS_SMPS8_VOLTAGE_VSEL_MASK 0x7f | 886 | #define PALMAS_SMPS8_VOLTAGE_VSEL_MASK 0x7F |
| 887 | #define PALMAS_SMPS8_VOLTAGE_VSEL_SHIFT 0 | 887 | #define PALMAS_SMPS8_VOLTAGE_VSEL_SHIFT 0x00 |
| 888 | 888 | ||
| 889 | /* Bit definitions for SMPS9_CTRL */ | 889 | /* Bit definitions for SMPS9_CTRL */ |
| 890 | #define PALMAS_SMPS9_CTRL_WR_S 0x80 | 890 | #define PALMAS_SMPS9_CTRL_WR_S 0x80 |
| 891 | #define PALMAS_SMPS9_CTRL_WR_S_SHIFT 7 | 891 | #define PALMAS_SMPS9_CTRL_WR_S_SHIFT 0x07 |
| 892 | #define PALMAS_SMPS9_CTRL_STATUS_MASK 0x30 | 892 | #define PALMAS_SMPS9_CTRL_STATUS_MASK 0x30 |
| 893 | #define PALMAS_SMPS9_CTRL_STATUS_SHIFT 4 | 893 | #define PALMAS_SMPS9_CTRL_STATUS_SHIFT 0x04 |
| 894 | #define PALMAS_SMPS9_CTRL_MODE_SLEEP_MASK 0x0c | 894 | #define PALMAS_SMPS9_CTRL_MODE_SLEEP_MASK 0x0c |
| 895 | #define PALMAS_SMPS9_CTRL_MODE_SLEEP_SHIFT 2 | 895 | #define PALMAS_SMPS9_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 896 | #define PALMAS_SMPS9_CTRL_MODE_ACTIVE_MASK 0x03 | 896 | #define PALMAS_SMPS9_CTRL_MODE_ACTIVE_MASK 0x03 |
| 897 | #define PALMAS_SMPS9_CTRL_MODE_ACTIVE_SHIFT 0 | 897 | #define PALMAS_SMPS9_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 898 | 898 | ||
| 899 | /* Bit definitions for SMPS9_VOLTAGE */ | 899 | /* Bit definitions for SMPS9_VOLTAGE */ |
| 900 | #define PALMAS_SMPS9_VOLTAGE_RANGE 0x80 | 900 | #define PALMAS_SMPS9_VOLTAGE_RANGE 0x80 |
| 901 | #define PALMAS_SMPS9_VOLTAGE_RANGE_SHIFT 7 | 901 | #define PALMAS_SMPS9_VOLTAGE_RANGE_SHIFT 0x07 |
| 902 | #define PALMAS_SMPS9_VOLTAGE_VSEL_MASK 0x7f | 902 | #define PALMAS_SMPS9_VOLTAGE_VSEL_MASK 0x7F |
| 903 | #define PALMAS_SMPS9_VOLTAGE_VSEL_SHIFT 0 | 903 | #define PALMAS_SMPS9_VOLTAGE_VSEL_SHIFT 0x00 |
| 904 | 904 | ||
| 905 | /* Bit definitions for SMPS10_CTRL */ | 905 | /* Bit definitions for SMPS10_CTRL */ |
| 906 | #define PALMAS_SMPS10_CTRL_MODE_SLEEP_MASK 0xf0 | 906 | #define PALMAS_SMPS10_CTRL_MODE_SLEEP_MASK 0xf0 |
| 907 | #define PALMAS_SMPS10_CTRL_MODE_SLEEP_SHIFT 4 | 907 | #define PALMAS_SMPS10_CTRL_MODE_SLEEP_SHIFT 0x04 |
| 908 | #define PALMAS_SMPS10_CTRL_MODE_ACTIVE_MASK 0x0f | 908 | #define PALMAS_SMPS10_CTRL_MODE_ACTIVE_MASK 0x0F |
| 909 | #define PALMAS_SMPS10_CTRL_MODE_ACTIVE_SHIFT 0 | 909 | #define PALMAS_SMPS10_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 910 | 910 | ||
| 911 | /* Bit definitions for SMPS10_STATUS */ | 911 | /* Bit definitions for SMPS10_STATUS */ |
| 912 | #define PALMAS_SMPS10_STATUS_STATUS_MASK 0x0f | 912 | #define PALMAS_SMPS10_STATUS_STATUS_MASK 0x0F |
| 913 | #define PALMAS_SMPS10_STATUS_STATUS_SHIFT 0 | 913 | #define PALMAS_SMPS10_STATUS_STATUS_SHIFT 0x00 |
| 914 | 914 | ||
| 915 | /* Bit definitions for SMPS_CTRL */ | 915 | /* Bit definitions for SMPS_CTRL */ |
| 916 | #define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN 0x20 | 916 | #define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN 0x20 |
| 917 | #define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN_SHIFT 5 | 917 | #define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN_SHIFT 0x05 |
| 918 | #define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN 0x10 | 918 | #define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN 0x10 |
| 919 | #define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN_SHIFT 4 | 919 | #define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN_SHIFT 0x04 |
| 920 | #define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_MASK 0x0c | 920 | #define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_MASK 0x0c |
| 921 | #define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_SHIFT 2 | 921 | #define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_SHIFT 0x02 |
| 922 | #define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_MASK 0x03 | 922 | #define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_MASK 0x03 |
| 923 | #define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_SHIFT 0 | 923 | #define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_SHIFT 0x00 |
| 924 | 924 | ||
| 925 | /* Bit definitions for SMPS_PD_CTRL */ | 925 | /* Bit definitions for SMPS_PD_CTRL */ |
| 926 | #define PALMAS_SMPS_PD_CTRL_SMPS9 0x40 | 926 | #define PALMAS_SMPS_PD_CTRL_SMPS9 0x40 |
| 927 | #define PALMAS_SMPS_PD_CTRL_SMPS9_SHIFT 6 | 927 | #define PALMAS_SMPS_PD_CTRL_SMPS9_SHIFT 0x06 |
| 928 | #define PALMAS_SMPS_PD_CTRL_SMPS8 0x20 | 928 | #define PALMAS_SMPS_PD_CTRL_SMPS8 0x20 |
| 929 | #define PALMAS_SMPS_PD_CTRL_SMPS8_SHIFT 5 | 929 | #define PALMAS_SMPS_PD_CTRL_SMPS8_SHIFT 0x05 |
| 930 | #define PALMAS_SMPS_PD_CTRL_SMPS7 0x10 | 930 | #define PALMAS_SMPS_PD_CTRL_SMPS7 0x10 |
| 931 | #define PALMAS_SMPS_PD_CTRL_SMPS7_SHIFT 4 | 931 | #define PALMAS_SMPS_PD_CTRL_SMPS7_SHIFT 0x04 |
| 932 | #define PALMAS_SMPS_PD_CTRL_SMPS6 0x08 | 932 | #define PALMAS_SMPS_PD_CTRL_SMPS6 0x08 |
| 933 | #define PALMAS_SMPS_PD_CTRL_SMPS6_SHIFT 3 | 933 | #define PALMAS_SMPS_PD_CTRL_SMPS6_SHIFT 0x03 |
| 934 | #define PALMAS_SMPS_PD_CTRL_SMPS45 0x04 | 934 | #define PALMAS_SMPS_PD_CTRL_SMPS45 0x04 |
| 935 | #define PALMAS_SMPS_PD_CTRL_SMPS45_SHIFT 2 | 935 | #define PALMAS_SMPS_PD_CTRL_SMPS45_SHIFT 0x02 |
| 936 | #define PALMAS_SMPS_PD_CTRL_SMPS3 0x02 | 936 | #define PALMAS_SMPS_PD_CTRL_SMPS3 0x02 |
| 937 | #define PALMAS_SMPS_PD_CTRL_SMPS3_SHIFT 1 | 937 | #define PALMAS_SMPS_PD_CTRL_SMPS3_SHIFT 0x01 |
| 938 | #define PALMAS_SMPS_PD_CTRL_SMPS12 0x01 | 938 | #define PALMAS_SMPS_PD_CTRL_SMPS12 0x01 |
| 939 | #define PALMAS_SMPS_PD_CTRL_SMPS12_SHIFT 0 | 939 | #define PALMAS_SMPS_PD_CTRL_SMPS12_SHIFT 0x00 |
| 940 | 940 | ||
| 941 | /* Bit definitions for SMPS_THERMAL_EN */ | 941 | /* Bit definitions for SMPS_THERMAL_EN */ |
| 942 | #define PALMAS_SMPS_THERMAL_EN_SMPS9 0x40 | 942 | #define PALMAS_SMPS_THERMAL_EN_SMPS9 0x40 |
| 943 | #define PALMAS_SMPS_THERMAL_EN_SMPS9_SHIFT 6 | 943 | #define PALMAS_SMPS_THERMAL_EN_SMPS9_SHIFT 0x06 |
| 944 | #define PALMAS_SMPS_THERMAL_EN_SMPS8 0x20 | 944 | #define PALMAS_SMPS_THERMAL_EN_SMPS8 0x20 |
| 945 | #define PALMAS_SMPS_THERMAL_EN_SMPS8_SHIFT 5 | 945 | #define PALMAS_SMPS_THERMAL_EN_SMPS8_SHIFT 0x05 |
| 946 | #define PALMAS_SMPS_THERMAL_EN_SMPS6 0x08 | 946 | #define PALMAS_SMPS_THERMAL_EN_SMPS6 0x08 |
| 947 | #define PALMAS_SMPS_THERMAL_EN_SMPS6_SHIFT 3 | 947 | #define PALMAS_SMPS_THERMAL_EN_SMPS6_SHIFT 0x03 |
| 948 | #define PALMAS_SMPS_THERMAL_EN_SMPS457 0x04 | 948 | #define PALMAS_SMPS_THERMAL_EN_SMPS457 0x04 |
| 949 | #define PALMAS_SMPS_THERMAL_EN_SMPS457_SHIFT 2 | 949 | #define PALMAS_SMPS_THERMAL_EN_SMPS457_SHIFT 0x02 |
| 950 | #define PALMAS_SMPS_THERMAL_EN_SMPS123 0x01 | 950 | #define PALMAS_SMPS_THERMAL_EN_SMPS123 0x01 |
| 951 | #define PALMAS_SMPS_THERMAL_EN_SMPS123_SHIFT 0 | 951 | #define PALMAS_SMPS_THERMAL_EN_SMPS123_SHIFT 0x00 |
| 952 | 952 | ||
| 953 | /* Bit definitions for SMPS_THERMAL_STATUS */ | 953 | /* Bit definitions for SMPS_THERMAL_STATUS */ |
| 954 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS9 0x40 | 954 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS9 0x40 |
| 955 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS9_SHIFT 6 | 955 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS9_SHIFT 0x06 |
| 956 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS8 0x20 | 956 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS8 0x20 |
| 957 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS8_SHIFT 5 | 957 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS8_SHIFT 0x05 |
| 958 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS6 0x08 | 958 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS6 0x08 |
| 959 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS6_SHIFT 3 | 959 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS6_SHIFT 0x03 |
| 960 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS457 0x04 | 960 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS457 0x04 |
| 961 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS457_SHIFT 2 | 961 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS457_SHIFT 0x02 |
| 962 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS123 0x01 | 962 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS123 0x01 |
| 963 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS123_SHIFT 0 | 963 | #define PALMAS_SMPS_THERMAL_STATUS_SMPS123_SHIFT 0x00 |
| 964 | 964 | ||
| 965 | /* Bit definitions for SMPS_SHORT_STATUS */ | 965 | /* Bit definitions for SMPS_SHORT_STATUS */ |
| 966 | #define PALMAS_SMPS_SHORT_STATUS_SMPS10 0x80 | 966 | #define PALMAS_SMPS_SHORT_STATUS_SMPS10 0x80 |
| 967 | #define PALMAS_SMPS_SHORT_STATUS_SMPS10_SHIFT 7 | 967 | #define PALMAS_SMPS_SHORT_STATUS_SMPS10_SHIFT 0x07 |
| 968 | #define PALMAS_SMPS_SHORT_STATUS_SMPS9 0x40 | 968 | #define PALMAS_SMPS_SHORT_STATUS_SMPS9 0x40 |
| 969 | #define PALMAS_SMPS_SHORT_STATUS_SMPS9_SHIFT 6 | 969 | #define PALMAS_SMPS_SHORT_STATUS_SMPS9_SHIFT 0x06 |
| 970 | #define PALMAS_SMPS_SHORT_STATUS_SMPS8 0x20 | 970 | #define PALMAS_SMPS_SHORT_STATUS_SMPS8 0x20 |
| 971 | #define PALMAS_SMPS_SHORT_STATUS_SMPS8_SHIFT 5 | 971 | #define PALMAS_SMPS_SHORT_STATUS_SMPS8_SHIFT 0x05 |
| 972 | #define PALMAS_SMPS_SHORT_STATUS_SMPS7 0x10 | 972 | #define PALMAS_SMPS_SHORT_STATUS_SMPS7 0x10 |
| 973 | #define PALMAS_SMPS_SHORT_STATUS_SMPS7_SHIFT 4 | 973 | #define PALMAS_SMPS_SHORT_STATUS_SMPS7_SHIFT 0x04 |
| 974 | #define PALMAS_SMPS_SHORT_STATUS_SMPS6 0x08 | 974 | #define PALMAS_SMPS_SHORT_STATUS_SMPS6 0x08 |
| 975 | #define PALMAS_SMPS_SHORT_STATUS_SMPS6_SHIFT 3 | 975 | #define PALMAS_SMPS_SHORT_STATUS_SMPS6_SHIFT 0x03 |
| 976 | #define PALMAS_SMPS_SHORT_STATUS_SMPS45 0x04 | 976 | #define PALMAS_SMPS_SHORT_STATUS_SMPS45 0x04 |
| 977 | #define PALMAS_SMPS_SHORT_STATUS_SMPS45_SHIFT 2 | 977 | #define PALMAS_SMPS_SHORT_STATUS_SMPS45_SHIFT 0x02 |
| 978 | #define PALMAS_SMPS_SHORT_STATUS_SMPS3 0x02 | 978 | #define PALMAS_SMPS_SHORT_STATUS_SMPS3 0x02 |
| 979 | #define PALMAS_SMPS_SHORT_STATUS_SMPS3_SHIFT 1 | 979 | #define PALMAS_SMPS_SHORT_STATUS_SMPS3_SHIFT 0x01 |
| 980 | #define PALMAS_SMPS_SHORT_STATUS_SMPS12 0x01 | 980 | #define PALMAS_SMPS_SHORT_STATUS_SMPS12 0x01 |
| 981 | #define PALMAS_SMPS_SHORT_STATUS_SMPS12_SHIFT 0 | 981 | #define PALMAS_SMPS_SHORT_STATUS_SMPS12_SHIFT 0x00 |
| 982 | 982 | ||
| 983 | /* Bit definitions for SMPS_NEGATIVE_CURRENT_LIMIT_EN */ | 983 | /* Bit definitions for SMPS_NEGATIVE_CURRENT_LIMIT_EN */ |
| 984 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9 0x40 | 984 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9 0x40 |
| 985 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9_SHIFT 6 | 985 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9_SHIFT 0x06 |
| 986 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8 0x20 | 986 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8 0x20 |
| 987 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8_SHIFT 5 | 987 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8_SHIFT 0x05 |
| 988 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7 0x10 | 988 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7 0x10 |
| 989 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7_SHIFT 4 | 989 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7_SHIFT 0x04 |
| 990 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6 0x08 | 990 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6 0x08 |
| 991 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6_SHIFT 3 | 991 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6_SHIFT 0x03 |
| 992 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45 0x04 | 992 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45 0x04 |
| 993 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45_SHIFT 2 | 993 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45_SHIFT 0x02 |
| 994 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3 0x02 | 994 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3 0x02 |
| 995 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3_SHIFT 1 | 995 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3_SHIFT 0x01 |
| 996 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12 0x01 | 996 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12 0x01 |
| 997 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12_SHIFT 0 | 997 | #define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12_SHIFT 0x00 |
| 998 | 998 | ||
| 999 | /* Bit definitions for SMPS_POWERGOOD_MASK1 */ | 999 | /* Bit definitions for SMPS_POWERGOOD_MASK1 */ |
| 1000 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10 0x80 | 1000 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10 0x80 |
| 1001 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10_SHIFT 7 | 1001 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10_SHIFT 0x07 |
| 1002 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9 0x40 | 1002 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9 0x40 |
| 1003 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9_SHIFT 6 | 1003 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9_SHIFT 0x06 |
| 1004 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8 0x20 | 1004 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8 0x20 |
| 1005 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8_SHIFT 5 | 1005 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8_SHIFT 0x05 |
| 1006 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7 0x10 | 1006 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7 0x10 |
| 1007 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7_SHIFT 4 | 1007 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7_SHIFT 0x04 |
| 1008 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6 0x08 | 1008 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6 0x08 |
| 1009 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6_SHIFT 3 | 1009 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6_SHIFT 0x03 |
| 1010 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45 0x04 | 1010 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45 0x04 |
| 1011 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45_SHIFT 2 | 1011 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45_SHIFT 0x02 |
| 1012 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3 0x02 | 1012 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3 0x02 |
| 1013 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3_SHIFT 1 | 1013 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3_SHIFT 0x01 |
| 1014 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12 0x01 | 1014 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12 0x01 |
| 1015 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12_SHIFT 0 | 1015 | #define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12_SHIFT 0x00 |
| 1016 | 1016 | ||
| 1017 | /* Bit definitions for SMPS_POWERGOOD_MASK2 */ | 1017 | /* Bit definitions for SMPS_POWERGOOD_MASK2 */ |
| 1018 | #define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT 0x80 | 1018 | #define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT 0x80 |
| 1019 | #define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT_SHIFT 7 | 1019 | #define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT_SHIFT 0x07 |
| 1020 | #define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7 0x04 | 1020 | #define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7 0x04 |
| 1021 | #define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7_SHIFT 2 | 1021 | #define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7_SHIFT 0x02 |
| 1022 | #define PALMAS_SMPS_POWERGOOD_MASK2_VBUS 0x02 | 1022 | #define PALMAS_SMPS_POWERGOOD_MASK2_VBUS 0x02 |
| 1023 | #define PALMAS_SMPS_POWERGOOD_MASK2_VBUS_SHIFT 1 | 1023 | #define PALMAS_SMPS_POWERGOOD_MASK2_VBUS_SHIFT 0x01 |
| 1024 | #define PALMAS_SMPS_POWERGOOD_MASK2_ACOK 0x01 | 1024 | #define PALMAS_SMPS_POWERGOOD_MASK2_ACOK 0x01 |
| 1025 | #define PALMAS_SMPS_POWERGOOD_MASK2_ACOK_SHIFT 0 | 1025 | #define PALMAS_SMPS_POWERGOOD_MASK2_ACOK_SHIFT 0x00 |
| 1026 | 1026 | ||
| 1027 | /* Registers for function LDO */ | 1027 | /* Registers for function LDO */ |
| 1028 | #define PALMAS_LDO1_CTRL 0x0 | 1028 | #define PALMAS_LDO1_CTRL 0x00 |
| 1029 | #define PALMAS_LDO1_VOLTAGE 0x1 | 1029 | #define PALMAS_LDO1_VOLTAGE 0x01 |
| 1030 | #define PALMAS_LDO2_CTRL 0x2 | 1030 | #define PALMAS_LDO2_CTRL 0x02 |
| 1031 | #define PALMAS_LDO2_VOLTAGE 0x3 | 1031 | #define PALMAS_LDO2_VOLTAGE 0x03 |
| 1032 | #define PALMAS_LDO3_CTRL 0x4 | 1032 | #define PALMAS_LDO3_CTRL 0x04 |
| 1033 | #define PALMAS_LDO3_VOLTAGE 0x5 | 1033 | #define PALMAS_LDO3_VOLTAGE 0x05 |
| 1034 | #define PALMAS_LDO4_CTRL 0x6 | 1034 | #define PALMAS_LDO4_CTRL 0x06 |
| 1035 | #define PALMAS_LDO4_VOLTAGE 0x7 | 1035 | #define PALMAS_LDO4_VOLTAGE 0x07 |
| 1036 | #define PALMAS_LDO5_CTRL 0x8 | 1036 | #define PALMAS_LDO5_CTRL 0x08 |
| 1037 | #define PALMAS_LDO5_VOLTAGE 0x9 | 1037 | #define PALMAS_LDO5_VOLTAGE 0x09 |
| 1038 | #define PALMAS_LDO6_CTRL 0xA | 1038 | #define PALMAS_LDO6_CTRL 0x0A |
| 1039 | #define PALMAS_LDO6_VOLTAGE 0xB | 1039 | #define PALMAS_LDO6_VOLTAGE 0x0B |
| 1040 | #define PALMAS_LDO7_CTRL 0xC | 1040 | #define PALMAS_LDO7_CTRL 0x0C |
| 1041 | #define PALMAS_LDO7_VOLTAGE 0xD | 1041 | #define PALMAS_LDO7_VOLTAGE 0x0D |
| 1042 | #define PALMAS_LDO8_CTRL 0xE | 1042 | #define PALMAS_LDO8_CTRL 0x0E |
| 1043 | #define PALMAS_LDO8_VOLTAGE 0xF | 1043 | #define PALMAS_LDO8_VOLTAGE 0x0F |
| 1044 | #define PALMAS_LDO9_CTRL 0x10 | 1044 | #define PALMAS_LDO9_CTRL 0x10 |
| 1045 | #define PALMAS_LDO9_VOLTAGE 0x11 | 1045 | #define PALMAS_LDO9_VOLTAGE 0x11 |
| 1046 | #define PALMAS_LDOLN_CTRL 0x12 | 1046 | #define PALMAS_LDOLN_CTRL 0x12 |
| @@ -1055,236 +1055,236 @@ enum usb_irq_events { | |||
| 1055 | 1055 | ||
| 1056 | /* Bit definitions for LDO1_CTRL */ | 1056 | /* Bit definitions for LDO1_CTRL */ |
| 1057 | #define PALMAS_LDO1_CTRL_WR_S 0x80 | 1057 | #define PALMAS_LDO1_CTRL_WR_S 0x80 |
| 1058 | #define PALMAS_LDO1_CTRL_WR_S_SHIFT 7 | 1058 | #define PALMAS_LDO1_CTRL_WR_S_SHIFT 0x07 |
| 1059 | #define PALMAS_LDO1_CTRL_STATUS 0x10 | 1059 | #define PALMAS_LDO1_CTRL_STATUS 0x10 |
| 1060 | #define PALMAS_LDO1_CTRL_STATUS_SHIFT 4 | 1060 | #define PALMAS_LDO1_CTRL_STATUS_SHIFT 0x04 |
| 1061 | #define PALMAS_LDO1_CTRL_MODE_SLEEP 0x04 | 1061 | #define PALMAS_LDO1_CTRL_MODE_SLEEP 0x04 |
| 1062 | #define PALMAS_LDO1_CTRL_MODE_SLEEP_SHIFT 2 | 1062 | #define PALMAS_LDO1_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1063 | #define PALMAS_LDO1_CTRL_MODE_ACTIVE 0x01 | 1063 | #define PALMAS_LDO1_CTRL_MODE_ACTIVE 0x01 |
| 1064 | #define PALMAS_LDO1_CTRL_MODE_ACTIVE_SHIFT 0 | 1064 | #define PALMAS_LDO1_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1065 | 1065 | ||
| 1066 | /* Bit definitions for LDO1_VOLTAGE */ | 1066 | /* Bit definitions for LDO1_VOLTAGE */ |
| 1067 | #define PALMAS_LDO1_VOLTAGE_VSEL_MASK 0x3f | 1067 | #define PALMAS_LDO1_VOLTAGE_VSEL_MASK 0x3F |
| 1068 | #define PALMAS_LDO1_VOLTAGE_VSEL_SHIFT 0 | 1068 | #define PALMAS_LDO1_VOLTAGE_VSEL_SHIFT 0x00 |
| 1069 | 1069 | ||
| 1070 | /* Bit definitions for LDO2_CTRL */ | 1070 | /* Bit definitions for LDO2_CTRL */ |
| 1071 | #define PALMAS_LDO2_CTRL_WR_S 0x80 | 1071 | #define PALMAS_LDO2_CTRL_WR_S 0x80 |
| 1072 | #define PALMAS_LDO2_CTRL_WR_S_SHIFT 7 | 1072 | #define PALMAS_LDO2_CTRL_WR_S_SHIFT 0x07 |
| 1073 | #define PALMAS_LDO2_CTRL_STATUS 0x10 | 1073 | #define PALMAS_LDO2_CTRL_STATUS 0x10 |
| 1074 | #define PALMAS_LDO2_CTRL_STATUS_SHIFT 4 | 1074 | #define PALMAS_LDO2_CTRL_STATUS_SHIFT 0x04 |
| 1075 | #define PALMAS_LDO2_CTRL_MODE_SLEEP 0x04 | 1075 | #define PALMAS_LDO2_CTRL_MODE_SLEEP 0x04 |
| 1076 | #define PALMAS_LDO2_CTRL_MODE_SLEEP_SHIFT 2 | 1076 | #define PALMAS_LDO2_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1077 | #define PALMAS_LDO2_CTRL_MODE_ACTIVE 0x01 | 1077 | #define PALMAS_LDO2_CTRL_MODE_ACTIVE 0x01 |
| 1078 | #define PALMAS_LDO2_CTRL_MODE_ACTIVE_SHIFT 0 | 1078 | #define PALMAS_LDO2_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1079 | 1079 | ||
| 1080 | /* Bit definitions for LDO2_VOLTAGE */ | 1080 | /* Bit definitions for LDO2_VOLTAGE */ |
| 1081 | #define PALMAS_LDO2_VOLTAGE_VSEL_MASK 0x3f | 1081 | #define PALMAS_LDO2_VOLTAGE_VSEL_MASK 0x3F |
| 1082 | #define PALMAS_LDO2_VOLTAGE_VSEL_SHIFT 0 | 1082 | #define PALMAS_LDO2_VOLTAGE_VSEL_SHIFT 0x00 |
| 1083 | 1083 | ||
| 1084 | /* Bit definitions for LDO3_CTRL */ | 1084 | /* Bit definitions for LDO3_CTRL */ |
| 1085 | #define PALMAS_LDO3_CTRL_WR_S 0x80 | 1085 | #define PALMAS_LDO3_CTRL_WR_S 0x80 |
| 1086 | #define PALMAS_LDO3_CTRL_WR_S_SHIFT 7 | 1086 | #define PALMAS_LDO3_CTRL_WR_S_SHIFT 0x07 |
| 1087 | #define PALMAS_LDO3_CTRL_STATUS 0x10 | 1087 | #define PALMAS_LDO3_CTRL_STATUS 0x10 |
| 1088 | #define PALMAS_LDO3_CTRL_STATUS_SHIFT 4 | 1088 | #define PALMAS_LDO3_CTRL_STATUS_SHIFT 0x04 |
| 1089 | #define PALMAS_LDO3_CTRL_MODE_SLEEP 0x04 | 1089 | #define PALMAS_LDO3_CTRL_MODE_SLEEP 0x04 |
| 1090 | #define PALMAS_LDO3_CTRL_MODE_SLEEP_SHIFT 2 | 1090 | #define PALMAS_LDO3_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1091 | #define PALMAS_LDO3_CTRL_MODE_ACTIVE 0x01 | 1091 | #define PALMAS_LDO3_CTRL_MODE_ACTIVE 0x01 |
| 1092 | #define PALMAS_LDO3_CTRL_MODE_ACTIVE_SHIFT 0 | 1092 | #define PALMAS_LDO3_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1093 | 1093 | ||
| 1094 | /* Bit definitions for LDO3_VOLTAGE */ | 1094 | /* Bit definitions for LDO3_VOLTAGE */ |
| 1095 | #define PALMAS_LDO3_VOLTAGE_VSEL_MASK 0x3f | 1095 | #define PALMAS_LDO3_VOLTAGE_VSEL_MASK 0x3F |
| 1096 | #define PALMAS_LDO3_VOLTAGE_VSEL_SHIFT 0 | 1096 | #define PALMAS_LDO3_VOLTAGE_VSEL_SHIFT 0x00 |
| 1097 | 1097 | ||
| 1098 | /* Bit definitions for LDO4_CTRL */ | 1098 | /* Bit definitions for LDO4_CTRL */ |
| 1099 | #define PALMAS_LDO4_CTRL_WR_S 0x80 | 1099 | #define PALMAS_LDO4_CTRL_WR_S 0x80 |
| 1100 | #define PALMAS_LDO4_CTRL_WR_S_SHIFT 7 | 1100 | #define PALMAS_LDO4_CTRL_WR_S_SHIFT 0x07 |
| 1101 | #define PALMAS_LDO4_CTRL_STATUS 0x10 | 1101 | #define PALMAS_LDO4_CTRL_STATUS 0x10 |
| 1102 | #define PALMAS_LDO4_CTRL_STATUS_SHIFT 4 | 1102 | #define PALMAS_LDO4_CTRL_STATUS_SHIFT 0x04 |
| 1103 | #define PALMAS_LDO4_CTRL_MODE_SLEEP 0x04 | 1103 | #define PALMAS_LDO4_CTRL_MODE_SLEEP 0x04 |
| 1104 | #define PALMAS_LDO4_CTRL_MODE_SLEEP_SHIFT 2 | 1104 | #define PALMAS_LDO4_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1105 | #define PALMAS_LDO4_CTRL_MODE_ACTIVE 0x01 | 1105 | #define PALMAS_LDO4_CTRL_MODE_ACTIVE 0x01 |
| 1106 | #define PALMAS_LDO4_CTRL_MODE_ACTIVE_SHIFT 0 | 1106 | #define PALMAS_LDO4_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1107 | 1107 | ||
| 1108 | /* Bit definitions for LDO4_VOLTAGE */ | 1108 | /* Bit definitions for LDO4_VOLTAGE */ |
| 1109 | #define PALMAS_LDO4_VOLTAGE_VSEL_MASK 0x3f | 1109 | #define PALMAS_LDO4_VOLTAGE_VSEL_MASK 0x3F |
| 1110 | #define PALMAS_LDO4_VOLTAGE_VSEL_SHIFT 0 | 1110 | #define PALMAS_LDO4_VOLTAGE_VSEL_SHIFT 0x00 |
| 1111 | 1111 | ||
| 1112 | /* Bit definitions for LDO5_CTRL */ | 1112 | /* Bit definitions for LDO5_CTRL */ |
| 1113 | #define PALMAS_LDO5_CTRL_WR_S 0x80 | 1113 | #define PALMAS_LDO5_CTRL_WR_S 0x80 |
| 1114 | #define PALMAS_LDO5_CTRL_WR_S_SHIFT 7 | 1114 | #define PALMAS_LDO5_CTRL_WR_S_SHIFT 0x07 |
| 1115 | #define PALMAS_LDO5_CTRL_STATUS 0x10 | 1115 | #define PALMAS_LDO5_CTRL_STATUS 0x10 |
| 1116 | #define PALMAS_LDO5_CTRL_STATUS_SHIFT 4 | 1116 | #define PALMAS_LDO5_CTRL_STATUS_SHIFT 0x04 |
| 1117 | #define PALMAS_LDO5_CTRL_MODE_SLEEP 0x04 | 1117 | #define PALMAS_LDO5_CTRL_MODE_SLEEP 0x04 |
| 1118 | #define PALMAS_LDO5_CTRL_MODE_SLEEP_SHIFT 2 | 1118 | #define PALMAS_LDO5_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1119 | #define PALMAS_LDO5_CTRL_MODE_ACTIVE 0x01 | 1119 | #define PALMAS_LDO5_CTRL_MODE_ACTIVE 0x01 |
| 1120 | #define PALMAS_LDO5_CTRL_MODE_ACTIVE_SHIFT 0 | 1120 | #define PALMAS_LDO5_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1121 | 1121 | ||
| 1122 | /* Bit definitions for LDO5_VOLTAGE */ | 1122 | /* Bit definitions for LDO5_VOLTAGE */ |
| 1123 | #define PALMAS_LDO5_VOLTAGE_VSEL_MASK 0x3f | 1123 | #define PALMAS_LDO5_VOLTAGE_VSEL_MASK 0x3F |
| 1124 | #define PALMAS_LDO5_VOLTAGE_VSEL_SHIFT 0 | 1124 | #define PALMAS_LDO5_VOLTAGE_VSEL_SHIFT 0x00 |
| 1125 | 1125 | ||
| 1126 | /* Bit definitions for LDO6_CTRL */ | 1126 | /* Bit definitions for LDO6_CTRL */ |
| 1127 | #define PALMAS_LDO6_CTRL_WR_S 0x80 | 1127 | #define PALMAS_LDO6_CTRL_WR_S 0x80 |
| 1128 | #define PALMAS_LDO6_CTRL_WR_S_SHIFT 7 | 1128 | #define PALMAS_LDO6_CTRL_WR_S_SHIFT 0x07 |
| 1129 | #define PALMAS_LDO6_CTRL_LDO_VIB_EN 0x40 | 1129 | #define PALMAS_LDO6_CTRL_LDO_VIB_EN 0x40 |
| 1130 | #define PALMAS_LDO6_CTRL_LDO_VIB_EN_SHIFT 6 | 1130 | #define PALMAS_LDO6_CTRL_LDO_VIB_EN_SHIFT 0x06 |
| 1131 | #define PALMAS_LDO6_CTRL_STATUS 0x10 | 1131 | #define PALMAS_LDO6_CTRL_STATUS 0x10 |
| 1132 | #define PALMAS_LDO6_CTRL_STATUS_SHIFT 4 | 1132 | #define PALMAS_LDO6_CTRL_STATUS_SHIFT 0x04 |
| 1133 | #define PALMAS_LDO6_CTRL_MODE_SLEEP 0x04 | 1133 | #define PALMAS_LDO6_CTRL_MODE_SLEEP 0x04 |
| 1134 | #define PALMAS_LDO6_CTRL_MODE_SLEEP_SHIFT 2 | 1134 | #define PALMAS_LDO6_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1135 | #define PALMAS_LDO6_CTRL_MODE_ACTIVE 0x01 | 1135 | #define PALMAS_LDO6_CTRL_MODE_ACTIVE 0x01 |
| 1136 | #define PALMAS_LDO6_CTRL_MODE_ACTIVE_SHIFT 0 | 1136 | #define PALMAS_LDO6_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1137 | 1137 | ||
| 1138 | /* Bit definitions for LDO6_VOLTAGE */ | 1138 | /* Bit definitions for LDO6_VOLTAGE */ |
| 1139 | #define PALMAS_LDO6_VOLTAGE_VSEL_MASK 0x3f | 1139 | #define PALMAS_LDO6_VOLTAGE_VSEL_MASK 0x3F |
| 1140 | #define PALMAS_LDO6_VOLTAGE_VSEL_SHIFT 0 | 1140 | #define PALMAS_LDO6_VOLTAGE_VSEL_SHIFT 0x00 |
| 1141 | 1141 | ||
| 1142 | /* Bit definitions for LDO7_CTRL */ | 1142 | /* Bit definitions for LDO7_CTRL */ |
| 1143 | #define PALMAS_LDO7_CTRL_WR_S 0x80 | 1143 | #define PALMAS_LDO7_CTRL_WR_S 0x80 |
| 1144 | #define PALMAS_LDO7_CTRL_WR_S_SHIFT 7 | 1144 | #define PALMAS_LDO7_CTRL_WR_S_SHIFT 0x07 |
| 1145 | #define PALMAS_LDO7_CTRL_STATUS 0x10 | 1145 | #define PALMAS_LDO7_CTRL_STATUS 0x10 |
| 1146 | #define PALMAS_LDO7_CTRL_STATUS_SHIFT 4 | 1146 | #define PALMAS_LDO7_CTRL_STATUS_SHIFT 0x04 |
| 1147 | #define PALMAS_LDO7_CTRL_MODE_SLEEP 0x04 | 1147 | #define PALMAS_LDO7_CTRL_MODE_SLEEP 0x04 |
| 1148 | #define PALMAS_LDO7_CTRL_MODE_SLEEP_SHIFT 2 | 1148 | #define PALMAS_LDO7_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1149 | #define PALMAS_LDO7_CTRL_MODE_ACTIVE 0x01 | 1149 | #define PALMAS_LDO7_CTRL_MODE_ACTIVE 0x01 |
| 1150 | #define PALMAS_LDO7_CTRL_MODE_ACTIVE_SHIFT 0 | 1150 | #define PALMAS_LDO7_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1151 | 1151 | ||
| 1152 | /* Bit definitions for LDO7_VOLTAGE */ | 1152 | /* Bit definitions for LDO7_VOLTAGE */ |
| 1153 | #define PALMAS_LDO7_VOLTAGE_VSEL_MASK 0x3f | 1153 | #define PALMAS_LDO7_VOLTAGE_VSEL_MASK 0x3F |
| 1154 | #define PALMAS_LDO7_VOLTAGE_VSEL_SHIFT 0 | 1154 | #define PALMAS_LDO7_VOLTAGE_VSEL_SHIFT 0x00 |
| 1155 | 1155 | ||
| 1156 | /* Bit definitions for LDO8_CTRL */ | 1156 | /* Bit definitions for LDO8_CTRL */ |
| 1157 | #define PALMAS_LDO8_CTRL_WR_S 0x80 | 1157 | #define PALMAS_LDO8_CTRL_WR_S 0x80 |
| 1158 | #define PALMAS_LDO8_CTRL_WR_S_SHIFT 7 | 1158 | #define PALMAS_LDO8_CTRL_WR_S_SHIFT 0x07 |
| 1159 | #define PALMAS_LDO8_CTRL_LDO_TRACKING_EN 0x40 | 1159 | #define PALMAS_LDO8_CTRL_LDO_TRACKING_EN 0x40 |
| 1160 | #define PALMAS_LDO8_CTRL_LDO_TRACKING_EN_SHIFT 6 | 1160 | #define PALMAS_LDO8_CTRL_LDO_TRACKING_EN_SHIFT 0x06 |
| 1161 | #define PALMAS_LDO8_CTRL_STATUS 0x10 | 1161 | #define PALMAS_LDO8_CTRL_STATUS 0x10 |
| 1162 | #define PALMAS_LDO8_CTRL_STATUS_SHIFT 4 | 1162 | #define PALMAS_LDO8_CTRL_STATUS_SHIFT 0x04 |
| 1163 | #define PALMAS_LDO8_CTRL_MODE_SLEEP 0x04 | 1163 | #define PALMAS_LDO8_CTRL_MODE_SLEEP 0x04 |
| 1164 | #define PALMAS_LDO8_CTRL_MODE_SLEEP_SHIFT 2 | 1164 | #define PALMAS_LDO8_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1165 | #define PALMAS_LDO8_CTRL_MODE_ACTIVE 0x01 | 1165 | #define PALMAS_LDO8_CTRL_MODE_ACTIVE 0x01 |
| 1166 | #define PALMAS_LDO8_CTRL_MODE_ACTIVE_SHIFT 0 | 1166 | #define PALMAS_LDO8_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1167 | 1167 | ||
| 1168 | /* Bit definitions for LDO8_VOLTAGE */ | 1168 | /* Bit definitions for LDO8_VOLTAGE */ |
| 1169 | #define PALMAS_LDO8_VOLTAGE_VSEL_MASK 0x3f | 1169 | #define PALMAS_LDO8_VOLTAGE_VSEL_MASK 0x3F |
| 1170 | #define PALMAS_LDO8_VOLTAGE_VSEL_SHIFT 0 | 1170 | #define PALMAS_LDO8_VOLTAGE_VSEL_SHIFT 0x00 |
| 1171 | 1171 | ||
| 1172 | /* Bit definitions for LDO9_CTRL */ | 1172 | /* Bit definitions for LDO9_CTRL */ |
| 1173 | #define PALMAS_LDO9_CTRL_WR_S 0x80 | 1173 | #define PALMAS_LDO9_CTRL_WR_S 0x80 |
| 1174 | #define PALMAS_LDO9_CTRL_WR_S_SHIFT 7 | 1174 | #define PALMAS_LDO9_CTRL_WR_S_SHIFT 0x07 |
| 1175 | #define PALMAS_LDO9_CTRL_LDO_BYPASS_EN 0x40 | 1175 | #define PALMAS_LDO9_CTRL_LDO_BYPASS_EN 0x40 |
| 1176 | #define PALMAS_LDO9_CTRL_LDO_BYPASS_EN_SHIFT 6 | 1176 | #define PALMAS_LDO9_CTRL_LDO_BYPASS_EN_SHIFT 0x06 |
| 1177 | #define PALMAS_LDO9_CTRL_STATUS 0x10 | 1177 | #define PALMAS_LDO9_CTRL_STATUS 0x10 |
| 1178 | #define PALMAS_LDO9_CTRL_STATUS_SHIFT 4 | 1178 | #define PALMAS_LDO9_CTRL_STATUS_SHIFT 0x04 |
| 1179 | #define PALMAS_LDO9_CTRL_MODE_SLEEP 0x04 | 1179 | #define PALMAS_LDO9_CTRL_MODE_SLEEP 0x04 |
| 1180 | #define PALMAS_LDO9_CTRL_MODE_SLEEP_SHIFT 2 | 1180 | #define PALMAS_LDO9_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1181 | #define PALMAS_LDO9_CTRL_MODE_ACTIVE 0x01 | 1181 | #define PALMAS_LDO9_CTRL_MODE_ACTIVE 0x01 |
| 1182 | #define PALMAS_LDO9_CTRL_MODE_ACTIVE_SHIFT 0 | 1182 | #define PALMAS_LDO9_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1183 | 1183 | ||
| 1184 | /* Bit definitions for LDO9_VOLTAGE */ | 1184 | /* Bit definitions for LDO9_VOLTAGE */ |
| 1185 | #define PALMAS_LDO9_VOLTAGE_VSEL_MASK 0x3f | 1185 | #define PALMAS_LDO9_VOLTAGE_VSEL_MASK 0x3F |
| 1186 | #define PALMAS_LDO9_VOLTAGE_VSEL_SHIFT 0 | 1186 | #define PALMAS_LDO9_VOLTAGE_VSEL_SHIFT 0x00 |
| 1187 | 1187 | ||
| 1188 | /* Bit definitions for LDOLN_CTRL */ | 1188 | /* Bit definitions for LDOLN_CTRL */ |
| 1189 | #define PALMAS_LDOLN_CTRL_WR_S 0x80 | 1189 | #define PALMAS_LDOLN_CTRL_WR_S 0x80 |
| 1190 | #define PALMAS_LDOLN_CTRL_WR_S_SHIFT 7 | 1190 | #define PALMAS_LDOLN_CTRL_WR_S_SHIFT 0x07 |
| 1191 | #define PALMAS_LDOLN_CTRL_STATUS 0x10 | 1191 | #define PALMAS_LDOLN_CTRL_STATUS 0x10 |
| 1192 | #define PALMAS_LDOLN_CTRL_STATUS_SHIFT 4 | 1192 | #define PALMAS_LDOLN_CTRL_STATUS_SHIFT 0x04 |
| 1193 | #define PALMAS_LDOLN_CTRL_MODE_SLEEP 0x04 | 1193 | #define PALMAS_LDOLN_CTRL_MODE_SLEEP 0x04 |
| 1194 | #define PALMAS_LDOLN_CTRL_MODE_SLEEP_SHIFT 2 | 1194 | #define PALMAS_LDOLN_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1195 | #define PALMAS_LDOLN_CTRL_MODE_ACTIVE 0x01 | 1195 | #define PALMAS_LDOLN_CTRL_MODE_ACTIVE 0x01 |
| 1196 | #define PALMAS_LDOLN_CTRL_MODE_ACTIVE_SHIFT 0 | 1196 | #define PALMAS_LDOLN_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1197 | 1197 | ||
| 1198 | /* Bit definitions for LDOLN_VOLTAGE */ | 1198 | /* Bit definitions for LDOLN_VOLTAGE */ |
| 1199 | #define PALMAS_LDOLN_VOLTAGE_VSEL_MASK 0x3f | 1199 | #define PALMAS_LDOLN_VOLTAGE_VSEL_MASK 0x3F |
| 1200 | #define PALMAS_LDOLN_VOLTAGE_VSEL_SHIFT 0 | 1200 | #define PALMAS_LDOLN_VOLTAGE_VSEL_SHIFT 0x00 |
| 1201 | 1201 | ||
| 1202 | /* Bit definitions for LDOUSB_CTRL */ | 1202 | /* Bit definitions for LDOUSB_CTRL */ |
| 1203 | #define PALMAS_LDOUSB_CTRL_WR_S 0x80 | 1203 | #define PALMAS_LDOUSB_CTRL_WR_S 0x80 |
| 1204 | #define PALMAS_LDOUSB_CTRL_WR_S_SHIFT 7 | 1204 | #define PALMAS_LDOUSB_CTRL_WR_S_SHIFT 0x07 |
| 1205 | #define PALMAS_LDOUSB_CTRL_STATUS 0x10 | 1205 | #define PALMAS_LDOUSB_CTRL_STATUS 0x10 |
| 1206 | #define PALMAS_LDOUSB_CTRL_STATUS_SHIFT 4 | 1206 | #define PALMAS_LDOUSB_CTRL_STATUS_SHIFT 0x04 |
| 1207 | #define PALMAS_LDOUSB_CTRL_MODE_SLEEP 0x04 | 1207 | #define PALMAS_LDOUSB_CTRL_MODE_SLEEP 0x04 |
| 1208 | #define PALMAS_LDOUSB_CTRL_MODE_SLEEP_SHIFT 2 | 1208 | #define PALMAS_LDOUSB_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1209 | #define PALMAS_LDOUSB_CTRL_MODE_ACTIVE 0x01 | 1209 | #define PALMAS_LDOUSB_CTRL_MODE_ACTIVE 0x01 |
| 1210 | #define PALMAS_LDOUSB_CTRL_MODE_ACTIVE_SHIFT 0 | 1210 | #define PALMAS_LDOUSB_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1211 | 1211 | ||
| 1212 | /* Bit definitions for LDOUSB_VOLTAGE */ | 1212 | /* Bit definitions for LDOUSB_VOLTAGE */ |
| 1213 | #define PALMAS_LDOUSB_VOLTAGE_VSEL_MASK 0x3f | 1213 | #define PALMAS_LDOUSB_VOLTAGE_VSEL_MASK 0x3F |
| 1214 | #define PALMAS_LDOUSB_VOLTAGE_VSEL_SHIFT 0 | 1214 | #define PALMAS_LDOUSB_VOLTAGE_VSEL_SHIFT 0x00 |
| 1215 | 1215 | ||
| 1216 | /* Bit definitions for LDO_CTRL */ | 1216 | /* Bit definitions for LDO_CTRL */ |
| 1217 | #define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS 0x01 | 1217 | #define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS 0x01 |
| 1218 | #define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS_SHIFT 0 | 1218 | #define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS_SHIFT 0x00 |
| 1219 | 1219 | ||
| 1220 | /* Bit definitions for LDO_PD_CTRL1 */ | 1220 | /* Bit definitions for LDO_PD_CTRL1 */ |
| 1221 | #define PALMAS_LDO_PD_CTRL1_LDO8 0x80 | 1221 | #define PALMAS_LDO_PD_CTRL1_LDO8 0x80 |
| 1222 | #define PALMAS_LDO_PD_CTRL1_LDO8_SHIFT 7 | 1222 | #define PALMAS_LDO_PD_CTRL1_LDO8_SHIFT 0x07 |
| 1223 | #define PALMAS_LDO_PD_CTRL1_LDO7 0x40 | 1223 | #define PALMAS_LDO_PD_CTRL1_LDO7 0x40 |
| 1224 | #define PALMAS_LDO_PD_CTRL1_LDO7_SHIFT 6 | 1224 | #define PALMAS_LDO_PD_CTRL1_LDO7_SHIFT 0x06 |
| 1225 | #define PALMAS_LDO_PD_CTRL1_LDO6 0x20 | 1225 | #define PALMAS_LDO_PD_CTRL1_LDO6 0x20 |
| 1226 | #define PALMAS_LDO_PD_CTRL1_LDO6_SHIFT 5 | 1226 | #define PALMAS_LDO_PD_CTRL1_LDO6_SHIFT 0x05 |
| 1227 | #define PALMAS_LDO_PD_CTRL1_LDO5 0x10 | 1227 | #define PALMAS_LDO_PD_CTRL1_LDO5 0x10 |
| 1228 | #define PALMAS_LDO_PD_CTRL1_LDO5_SHIFT 4 | 1228 | #define PALMAS_LDO_PD_CTRL1_LDO5_SHIFT 0x04 |
| 1229 | #define PALMAS_LDO_PD_CTRL1_LDO4 0x08 | 1229 | #define PALMAS_LDO_PD_CTRL1_LDO4 0x08 |
| 1230 | #define PALMAS_LDO_PD_CTRL1_LDO4_SHIFT 3 | 1230 | #define PALMAS_LDO_PD_CTRL1_LDO4_SHIFT 0x03 |
| 1231 | #define PALMAS_LDO_PD_CTRL1_LDO3 0x04 | 1231 | #define PALMAS_LDO_PD_CTRL1_LDO3 0x04 |
| 1232 | #define PALMAS_LDO_PD_CTRL1_LDO3_SHIFT 2 | 1232 | #define PALMAS_LDO_PD_CTRL1_LDO3_SHIFT 0x02 |
| 1233 | #define PALMAS_LDO_PD_CTRL1_LDO2 0x02 | 1233 | #define PALMAS_LDO_PD_CTRL1_LDO2 0x02 |
| 1234 | #define PALMAS_LDO_PD_CTRL1_LDO2_SHIFT 1 | 1234 | #define PALMAS_LDO_PD_CTRL1_LDO2_SHIFT 0x01 |
| 1235 | #define PALMAS_LDO_PD_CTRL1_LDO1 0x01 | 1235 | #define PALMAS_LDO_PD_CTRL1_LDO1 0x01 |
| 1236 | #define PALMAS_LDO_PD_CTRL1_LDO1_SHIFT 0 | 1236 | #define PALMAS_LDO_PD_CTRL1_LDO1_SHIFT 0x00 |
| 1237 | 1237 | ||
| 1238 | /* Bit definitions for LDO_PD_CTRL2 */ | 1238 | /* Bit definitions for LDO_PD_CTRL2 */ |
| 1239 | #define PALMAS_LDO_PD_CTRL2_LDOUSB 0x04 | 1239 | #define PALMAS_LDO_PD_CTRL2_LDOUSB 0x04 |
| 1240 | #define PALMAS_LDO_PD_CTRL2_LDOUSB_SHIFT 2 | 1240 | #define PALMAS_LDO_PD_CTRL2_LDOUSB_SHIFT 0x02 |
| 1241 | #define PALMAS_LDO_PD_CTRL2_LDOLN 0x02 | 1241 | #define PALMAS_LDO_PD_CTRL2_LDOLN 0x02 |
| 1242 | #define PALMAS_LDO_PD_CTRL2_LDOLN_SHIFT 1 | 1242 | #define PALMAS_LDO_PD_CTRL2_LDOLN_SHIFT 0x01 |
| 1243 | #define PALMAS_LDO_PD_CTRL2_LDO9 0x01 | 1243 | #define PALMAS_LDO_PD_CTRL2_LDO9 0x01 |
| 1244 | #define PALMAS_LDO_PD_CTRL2_LDO9_SHIFT 0 | 1244 | #define PALMAS_LDO_PD_CTRL2_LDO9_SHIFT 0x00 |
| 1245 | 1245 | ||
| 1246 | /* Bit definitions for LDO_SHORT_STATUS1 */ | 1246 | /* Bit definitions for LDO_SHORT_STATUS1 */ |
| 1247 | #define PALMAS_LDO_SHORT_STATUS1_LDO8 0x80 | 1247 | #define PALMAS_LDO_SHORT_STATUS1_LDO8 0x80 |
| 1248 | #define PALMAS_LDO_SHORT_STATUS1_LDO8_SHIFT 7 | 1248 | #define PALMAS_LDO_SHORT_STATUS1_LDO8_SHIFT 0x07 |
| 1249 | #define PALMAS_LDO_SHORT_STATUS1_LDO7 0x40 | 1249 | #define PALMAS_LDO_SHORT_STATUS1_LDO7 0x40 |
| 1250 | #define PALMAS_LDO_SHORT_STATUS1_LDO7_SHIFT 6 | 1250 | #define PALMAS_LDO_SHORT_STATUS1_LDO7_SHIFT 0x06 |
| 1251 | #define PALMAS_LDO_SHORT_STATUS1_LDO6 0x20 | 1251 | #define PALMAS_LDO_SHORT_STATUS1_LDO6 0x20 |
| 1252 | #define PALMAS_LDO_SHORT_STATUS1_LDO6_SHIFT 5 | 1252 | #define PALMAS_LDO_SHORT_STATUS1_LDO6_SHIFT 0x05 |
| 1253 | #define PALMAS_LDO_SHORT_STATUS1_LDO5 0x10 | 1253 | #define PALMAS_LDO_SHORT_STATUS1_LDO5 0x10 |
| 1254 | #define PALMAS_LDO_SHORT_STATUS1_LDO5_SHIFT 4 | 1254 | #define PALMAS_LDO_SHORT_STATUS1_LDO5_SHIFT 0x04 |
| 1255 | #define PALMAS_LDO_SHORT_STATUS1_LDO4 0x08 | 1255 | #define PALMAS_LDO_SHORT_STATUS1_LDO4 0x08 |
| 1256 | #define PALMAS_LDO_SHORT_STATUS1_LDO4_SHIFT 3 | 1256 | #define PALMAS_LDO_SHORT_STATUS1_LDO4_SHIFT 0x03 |
| 1257 | #define PALMAS_LDO_SHORT_STATUS1_LDO3 0x04 | 1257 | #define PALMAS_LDO_SHORT_STATUS1_LDO3 0x04 |
| 1258 | #define PALMAS_LDO_SHORT_STATUS1_LDO3_SHIFT 2 | 1258 | #define PALMAS_LDO_SHORT_STATUS1_LDO3_SHIFT 0x02 |
| 1259 | #define PALMAS_LDO_SHORT_STATUS1_LDO2 0x02 | 1259 | #define PALMAS_LDO_SHORT_STATUS1_LDO2 0x02 |
| 1260 | #define PALMAS_LDO_SHORT_STATUS1_LDO2_SHIFT 1 | 1260 | #define PALMAS_LDO_SHORT_STATUS1_LDO2_SHIFT 0x01 |
| 1261 | #define PALMAS_LDO_SHORT_STATUS1_LDO1 0x01 | 1261 | #define PALMAS_LDO_SHORT_STATUS1_LDO1 0x01 |
| 1262 | #define PALMAS_LDO_SHORT_STATUS1_LDO1_SHIFT 0 | 1262 | #define PALMAS_LDO_SHORT_STATUS1_LDO1_SHIFT 0x00 |
| 1263 | 1263 | ||
| 1264 | /* Bit definitions for LDO_SHORT_STATUS2 */ | 1264 | /* Bit definitions for LDO_SHORT_STATUS2 */ |
| 1265 | #define PALMAS_LDO_SHORT_STATUS2_LDOVANA 0x08 | 1265 | #define PALMAS_LDO_SHORT_STATUS2_LDOVANA 0x08 |
| 1266 | #define PALMAS_LDO_SHORT_STATUS2_LDOVANA_SHIFT 3 | 1266 | #define PALMAS_LDO_SHORT_STATUS2_LDOVANA_SHIFT 0x03 |
| 1267 | #define PALMAS_LDO_SHORT_STATUS2_LDOUSB 0x04 | 1267 | #define PALMAS_LDO_SHORT_STATUS2_LDOUSB 0x04 |
| 1268 | #define PALMAS_LDO_SHORT_STATUS2_LDOUSB_SHIFT 2 | 1268 | #define PALMAS_LDO_SHORT_STATUS2_LDOUSB_SHIFT 0x02 |
| 1269 | #define PALMAS_LDO_SHORT_STATUS2_LDOLN 0x02 | 1269 | #define PALMAS_LDO_SHORT_STATUS2_LDOLN 0x02 |
| 1270 | #define PALMAS_LDO_SHORT_STATUS2_LDOLN_SHIFT 1 | 1270 | #define PALMAS_LDO_SHORT_STATUS2_LDOLN_SHIFT 0x01 |
| 1271 | #define PALMAS_LDO_SHORT_STATUS2_LDO9 0x01 | 1271 | #define PALMAS_LDO_SHORT_STATUS2_LDO9 0x01 |
| 1272 | #define PALMAS_LDO_SHORT_STATUS2_LDO9_SHIFT 0 | 1272 | #define PALMAS_LDO_SHORT_STATUS2_LDO9_SHIFT 0x00 |
| 1273 | 1273 | ||
| 1274 | /* Registers for function PMU_CONTROL */ | 1274 | /* Registers for function PMU_CONTROL */ |
| 1275 | #define PALMAS_DEV_CTRL 0x0 | 1275 | #define PALMAS_DEV_CTRL 0x00 |
| 1276 | #define PALMAS_POWER_CTRL 0x1 | 1276 | #define PALMAS_POWER_CTRL 0x01 |
| 1277 | #define PALMAS_VSYS_LO 0x2 | 1277 | #define PALMAS_VSYS_LO 0x02 |
| 1278 | #define PALMAS_VSYS_MON 0x3 | 1278 | #define PALMAS_VSYS_MON 0x03 |
| 1279 | #define PALMAS_VBAT_MON 0x4 | 1279 | #define PALMAS_VBAT_MON 0x04 |
| 1280 | #define PALMAS_WATCHDOG 0x5 | 1280 | #define PALMAS_WATCHDOG 0x05 |
| 1281 | #define PALMAS_BOOT_STATUS 0x6 | 1281 | #define PALMAS_BOOT_STATUS 0x06 |
| 1282 | #define PALMAS_BATTERY_BOUNCE 0x7 | 1282 | #define PALMAS_BATTERY_BOUNCE 0x07 |
| 1283 | #define PALMAS_BACKUP_BATTERY_CTRL 0x8 | 1283 | #define PALMAS_BACKUP_BATTERY_CTRL 0x08 |
| 1284 | #define PALMAS_LONG_PRESS_KEY 0x9 | 1284 | #define PALMAS_LONG_PRESS_KEY 0x09 |
| 1285 | #define PALMAS_OSC_THERM_CTRL 0xA | 1285 | #define PALMAS_OSC_THERM_CTRL 0x0A |
| 1286 | #define PALMAS_BATDEBOUNCING 0xB | 1286 | #define PALMAS_BATDEBOUNCING 0x0B |
| 1287 | #define PALMAS_SWOFF_HWRST 0xF | 1287 | #define PALMAS_SWOFF_HWRST 0x0F |
| 1288 | #define PALMAS_SWOFF_COLDRST 0x10 | 1288 | #define PALMAS_SWOFF_COLDRST 0x10 |
| 1289 | #define PALMAS_SWOFF_STATUS 0x11 | 1289 | #define PALMAS_SWOFF_STATUS 0x11 |
| 1290 | #define PALMAS_PMU_CONFIG 0x12 | 1290 | #define PALMAS_PMU_CONFIG 0x12 |
| @@ -1296,668 +1296,668 @@ enum usb_irq_events { | |||
| 1296 | 1296 | ||
| 1297 | /* Bit definitions for DEV_CTRL */ | 1297 | /* Bit definitions for DEV_CTRL */ |
| 1298 | #define PALMAS_DEV_CTRL_DEV_STATUS_MASK 0x0c | 1298 | #define PALMAS_DEV_CTRL_DEV_STATUS_MASK 0x0c |
| 1299 | #define PALMAS_DEV_CTRL_DEV_STATUS_SHIFT 2 | 1299 | #define PALMAS_DEV_CTRL_DEV_STATUS_SHIFT 0x02 |
| 1300 | #define PALMAS_DEV_CTRL_SW_RST 0x02 | 1300 | #define PALMAS_DEV_CTRL_SW_RST 0x02 |
| 1301 | #define PALMAS_DEV_CTRL_SW_RST_SHIFT 1 | 1301 | #define PALMAS_DEV_CTRL_SW_RST_SHIFT 0x01 |
| 1302 | #define PALMAS_DEV_CTRL_DEV_ON 0x01 | 1302 | #define PALMAS_DEV_CTRL_DEV_ON 0x01 |
| 1303 | #define PALMAS_DEV_CTRL_DEV_ON_SHIFT 0 | 1303 | #define PALMAS_DEV_CTRL_DEV_ON_SHIFT 0x00 |
| 1304 | 1304 | ||
| 1305 | /* Bit definitions for POWER_CTRL */ | 1305 | /* Bit definitions for POWER_CTRL */ |
| 1306 | #define PALMAS_POWER_CTRL_ENABLE2_MASK 0x04 | 1306 | #define PALMAS_POWER_CTRL_ENABLE2_MASK 0x04 |
| 1307 | #define PALMAS_POWER_CTRL_ENABLE2_MASK_SHIFT 2 | 1307 | #define PALMAS_POWER_CTRL_ENABLE2_MASK_SHIFT 0x02 |
| 1308 | #define PALMAS_POWER_CTRL_ENABLE1_MASK 0x02 | 1308 | #define PALMAS_POWER_CTRL_ENABLE1_MASK 0x02 |
| 1309 | #define PALMAS_POWER_CTRL_ENABLE1_MASK_SHIFT 1 | 1309 | #define PALMAS_POWER_CTRL_ENABLE1_MASK_SHIFT 0x01 |
| 1310 | #define PALMAS_POWER_CTRL_NSLEEP_MASK 0x01 | 1310 | #define PALMAS_POWER_CTRL_NSLEEP_MASK 0x01 |
| 1311 | #define PALMAS_POWER_CTRL_NSLEEP_MASK_SHIFT 0 | 1311 | #define PALMAS_POWER_CTRL_NSLEEP_MASK_SHIFT 0x00 |
| 1312 | 1312 | ||
| 1313 | /* Bit definitions for VSYS_LO */ | 1313 | /* Bit definitions for VSYS_LO */ |
| 1314 | #define PALMAS_VSYS_LO_THRESHOLD_MASK 0x1f | 1314 | #define PALMAS_VSYS_LO_THRESHOLD_MASK 0x1F |
| 1315 | #define PALMAS_VSYS_LO_THRESHOLD_SHIFT 0 | 1315 | #define PALMAS_VSYS_LO_THRESHOLD_SHIFT 0x00 |
| 1316 | 1316 | ||
| 1317 | /* Bit definitions for VSYS_MON */ | 1317 | /* Bit definitions for VSYS_MON */ |
| 1318 | #define PALMAS_VSYS_MON_ENABLE 0x80 | 1318 | #define PALMAS_VSYS_MON_ENABLE 0x80 |
| 1319 | #define PALMAS_VSYS_MON_ENABLE_SHIFT 7 | 1319 | #define PALMAS_VSYS_MON_ENABLE_SHIFT 0x07 |
| 1320 | #define PALMAS_VSYS_MON_THRESHOLD_MASK 0x3f | 1320 | #define PALMAS_VSYS_MON_THRESHOLD_MASK 0x3F |
| 1321 | #define PALMAS_VSYS_MON_THRESHOLD_SHIFT 0 | 1321 | #define PALMAS_VSYS_MON_THRESHOLD_SHIFT 0x00 |
| 1322 | 1322 | ||
| 1323 | /* Bit definitions for VBAT_MON */ | 1323 | /* Bit definitions for VBAT_MON */ |
| 1324 | #define PALMAS_VBAT_MON_ENABLE 0x80 | 1324 | #define PALMAS_VBAT_MON_ENABLE 0x80 |
| 1325 | #define PALMAS_VBAT_MON_ENABLE_SHIFT 7 | 1325 | #define PALMAS_VBAT_MON_ENABLE_SHIFT 0x07 |
| 1326 | #define PALMAS_VBAT_MON_THRESHOLD_MASK 0x3f | 1326 | #define PALMAS_VBAT_MON_THRESHOLD_MASK 0x3F |
| 1327 | #define PALMAS_VBAT_MON_THRESHOLD_SHIFT 0 | 1327 | #define PALMAS_VBAT_MON_THRESHOLD_SHIFT 0x00 |
| 1328 | 1328 | ||
| 1329 | /* Bit definitions for WATCHDOG */ | 1329 | /* Bit definitions for WATCHDOG */ |
| 1330 | #define PALMAS_WATCHDOG_LOCK 0x20 | 1330 | #define PALMAS_WATCHDOG_LOCK 0x20 |
| 1331 | #define PALMAS_WATCHDOG_LOCK_SHIFT 5 | 1331 | #define PALMAS_WATCHDOG_LOCK_SHIFT 0x05 |
| 1332 | #define PALMAS_WATCHDOG_ENABLE 0x10 | 1332 | #define PALMAS_WATCHDOG_ENABLE 0x10 |
| 1333 | #define PALMAS_WATCHDOG_ENABLE_SHIFT 4 | 1333 | #define PALMAS_WATCHDOG_ENABLE_SHIFT 0x04 |
| 1334 | #define PALMAS_WATCHDOG_MODE 0x08 | 1334 | #define PALMAS_WATCHDOG_MODE 0x08 |
| 1335 | #define PALMAS_WATCHDOG_MODE_SHIFT 3 | 1335 | #define PALMAS_WATCHDOG_MODE_SHIFT 0x03 |
| 1336 | #define PALMAS_WATCHDOG_TIMER_MASK 0x07 | 1336 | #define PALMAS_WATCHDOG_TIMER_MASK 0x07 |
| 1337 | #define PALMAS_WATCHDOG_TIMER_SHIFT 0 | 1337 | #define PALMAS_WATCHDOG_TIMER_SHIFT 0x00 |
| 1338 | 1338 | ||
| 1339 | /* Bit definitions for BOOT_STATUS */ | 1339 | /* Bit definitions for BOOT_STATUS */ |
| 1340 | #define PALMAS_BOOT_STATUS_BOOT1 0x02 | 1340 | #define PALMAS_BOOT_STATUS_BOOT1 0x02 |
| 1341 | #define PALMAS_BOOT_STATUS_BOOT1_SHIFT 1 | 1341 | #define PALMAS_BOOT_STATUS_BOOT1_SHIFT 0x01 |
| 1342 | #define PALMAS_BOOT_STATUS_BOOT0 0x01 | 1342 | #define PALMAS_BOOT_STATUS_BOOT0 0x01 |
| 1343 | #define PALMAS_BOOT_STATUS_BOOT0_SHIFT 0 | 1343 | #define PALMAS_BOOT_STATUS_BOOT0_SHIFT 0x00 |
| 1344 | 1344 | ||
| 1345 | /* Bit definitions for BATTERY_BOUNCE */ | 1345 | /* Bit definitions for BATTERY_BOUNCE */ |
| 1346 | #define PALMAS_BATTERY_BOUNCE_BB_DELAY_MASK 0x3f | 1346 | #define PALMAS_BATTERY_BOUNCE_BB_DELAY_MASK 0x3F |
| 1347 | #define PALMAS_BATTERY_BOUNCE_BB_DELAY_SHIFT 0 | 1347 | #define PALMAS_BATTERY_BOUNCE_BB_DELAY_SHIFT 0x00 |
| 1348 | 1348 | ||
| 1349 | /* Bit definitions for BACKUP_BATTERY_CTRL */ | 1349 | /* Bit definitions for BACKUP_BATTERY_CTRL */ |
| 1350 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15 0x80 | 1350 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15 0x80 |
| 1351 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15_SHIFT 7 | 1351 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15_SHIFT 0x07 |
| 1352 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP 0x40 | 1352 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP 0x40 |
| 1353 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP_SHIFT 6 | 1353 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP_SHIFT 0x06 |
| 1354 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF 0x20 | 1354 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF 0x20 |
| 1355 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF_SHIFT 5 | 1355 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF_SHIFT 0x05 |
| 1356 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN 0x10 | 1356 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN 0x10 |
| 1357 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN_SHIFT 4 | 1357 | #define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN_SHIFT 0x04 |
| 1358 | #define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG 0x08 | 1358 | #define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG 0x08 |
| 1359 | #define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG_SHIFT 3 | 1359 | #define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG_SHIFT 0x03 |
| 1360 | #define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_MASK 0x06 | 1360 | #define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_MASK 0x06 |
| 1361 | #define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_SHIFT 1 | 1361 | #define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_SHIFT 0x01 |
| 1362 | #define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN 0x01 | 1362 | #define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN 0x01 |
| 1363 | #define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN_SHIFT 0 | 1363 | #define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN_SHIFT 0x00 |
| 1364 | 1364 | ||
| 1365 | /* Bit definitions for LONG_PRESS_KEY */ | 1365 | /* Bit definitions for LONG_PRESS_KEY */ |
| 1366 | #define PALMAS_LONG_PRESS_KEY_LPK_LOCK 0x80 | 1366 | #define PALMAS_LONG_PRESS_KEY_LPK_LOCK 0x80 |
| 1367 | #define PALMAS_LONG_PRESS_KEY_LPK_LOCK_SHIFT 7 | 1367 | #define PALMAS_LONG_PRESS_KEY_LPK_LOCK_SHIFT 0x07 |
| 1368 | #define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR 0x10 | 1368 | #define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR 0x10 |
| 1369 | #define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR_SHIFT 4 | 1369 | #define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR_SHIFT 0x04 |
| 1370 | #define PALMAS_LONG_PRESS_KEY_LPK_TIME_MASK 0x0c | 1370 | #define PALMAS_LONG_PRESS_KEY_LPK_TIME_MASK 0x0c |
| 1371 | #define PALMAS_LONG_PRESS_KEY_LPK_TIME_SHIFT 2 | 1371 | #define PALMAS_LONG_PRESS_KEY_LPK_TIME_SHIFT 0x02 |
| 1372 | #define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_MASK 0x03 | 1372 | #define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_MASK 0x03 |
| 1373 | #define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_SHIFT 0 | 1373 | #define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_SHIFT 0x00 |
| 1374 | 1374 | ||
| 1375 | /* Bit definitions for OSC_THERM_CTRL */ | 1375 | /* Bit definitions for OSC_THERM_CTRL */ |
| 1376 | #define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP 0x80 | 1376 | #define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP 0x80 |
| 1377 | #define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP_SHIFT 7 | 1377 | #define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP_SHIFT 0x07 |
| 1378 | #define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP 0x40 | 1378 | #define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP 0x40 |
| 1379 | #define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP_SHIFT 6 | 1379 | #define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP_SHIFT 0x06 |
| 1380 | #define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP 0x20 | 1380 | #define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP 0x20 |
| 1381 | #define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP_SHIFT 5 | 1381 | #define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP_SHIFT 0x05 |
| 1382 | #define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP 0x10 | 1382 | #define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP 0x10 |
| 1383 | #define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP_SHIFT 4 | 1383 | #define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP_SHIFT 0x04 |
| 1384 | #define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_MASK 0x0c | 1384 | #define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_MASK 0x0c |
| 1385 | #define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_SHIFT 2 | 1385 | #define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_SHIFT 0x02 |
| 1386 | #define PALMAS_OSC_THERM_CTRL_OSC_BYPASS 0x02 | 1386 | #define PALMAS_OSC_THERM_CTRL_OSC_BYPASS 0x02 |
| 1387 | #define PALMAS_OSC_THERM_CTRL_OSC_BYPASS_SHIFT 1 | 1387 | #define PALMAS_OSC_THERM_CTRL_OSC_BYPASS_SHIFT 0x01 |
| 1388 | #define PALMAS_OSC_THERM_CTRL_OSC_HPMODE 0x01 | 1388 | #define PALMAS_OSC_THERM_CTRL_OSC_HPMODE 0x01 |
| 1389 | #define PALMAS_OSC_THERM_CTRL_OSC_HPMODE_SHIFT 0 | 1389 | #define PALMAS_OSC_THERM_CTRL_OSC_HPMODE_SHIFT 0x00 |
| 1390 | 1390 | ||
| 1391 | /* Bit definitions for BATDEBOUNCING */ | 1391 | /* Bit definitions for BATDEBOUNCING */ |
| 1392 | #define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS 0x80 | 1392 | #define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS 0x80 |
| 1393 | #define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS_SHIFT 7 | 1393 | #define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS_SHIFT 0x07 |
| 1394 | #define PALMAS_BATDEBOUNCING_BINS_DEB_MASK 0x78 | 1394 | #define PALMAS_BATDEBOUNCING_BINS_DEB_MASK 0x78 |
| 1395 | #define PALMAS_BATDEBOUNCING_BINS_DEB_SHIFT 3 | 1395 | #define PALMAS_BATDEBOUNCING_BINS_DEB_SHIFT 0x03 |
| 1396 | #define PALMAS_BATDEBOUNCING_BEXT_DEB_MASK 0x07 | 1396 | #define PALMAS_BATDEBOUNCING_BEXT_DEB_MASK 0x07 |
| 1397 | #define PALMAS_BATDEBOUNCING_BEXT_DEB_SHIFT 0 | 1397 | #define PALMAS_BATDEBOUNCING_BEXT_DEB_SHIFT 0x00 |
| 1398 | 1398 | ||
| 1399 | /* Bit definitions for SWOFF_HWRST */ | 1399 | /* Bit definitions for SWOFF_HWRST */ |
| 1400 | #define PALMAS_SWOFF_HWRST_PWRON_LPK 0x80 | 1400 | #define PALMAS_SWOFF_HWRST_PWRON_LPK 0x80 |
| 1401 | #define PALMAS_SWOFF_HWRST_PWRON_LPK_SHIFT 7 | 1401 | #define PALMAS_SWOFF_HWRST_PWRON_LPK_SHIFT 0x07 |
| 1402 | #define PALMAS_SWOFF_HWRST_PWRDOWN 0x40 | 1402 | #define PALMAS_SWOFF_HWRST_PWRDOWN 0x40 |
| 1403 | #define PALMAS_SWOFF_HWRST_PWRDOWN_SHIFT 6 | 1403 | #define PALMAS_SWOFF_HWRST_PWRDOWN_SHIFT 0x06 |
| 1404 | #define PALMAS_SWOFF_HWRST_WTD 0x20 | 1404 | #define PALMAS_SWOFF_HWRST_WTD 0x20 |
| 1405 | #define PALMAS_SWOFF_HWRST_WTD_SHIFT 5 | 1405 | #define PALMAS_SWOFF_HWRST_WTD_SHIFT 0x05 |
| 1406 | #define PALMAS_SWOFF_HWRST_TSHUT 0x10 | 1406 | #define PALMAS_SWOFF_HWRST_TSHUT 0x10 |
| 1407 | #define PALMAS_SWOFF_HWRST_TSHUT_SHIFT 4 | 1407 | #define PALMAS_SWOFF_HWRST_TSHUT_SHIFT 0x04 |
| 1408 | #define PALMAS_SWOFF_HWRST_RESET_IN 0x08 | 1408 | #define PALMAS_SWOFF_HWRST_RESET_IN 0x08 |
| 1409 | #define PALMAS_SWOFF_HWRST_RESET_IN_SHIFT 3 | 1409 | #define PALMAS_SWOFF_HWRST_RESET_IN_SHIFT 0x03 |
| 1410 | #define PALMAS_SWOFF_HWRST_SW_RST 0x04 | 1410 | #define PALMAS_SWOFF_HWRST_SW_RST 0x04 |
| 1411 | #define PALMAS_SWOFF_HWRST_SW_RST_SHIFT 2 | 1411 | #define PALMAS_SWOFF_HWRST_SW_RST_SHIFT 0x02 |
| 1412 | #define PALMAS_SWOFF_HWRST_VSYS_LO 0x02 | 1412 | #define PALMAS_SWOFF_HWRST_VSYS_LO 0x02 |
| 1413 | #define PALMAS_SWOFF_HWRST_VSYS_LO_SHIFT 1 | 1413 | #define PALMAS_SWOFF_HWRST_VSYS_LO_SHIFT 0x01 |
| 1414 | #define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN 0x01 | 1414 | #define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN 0x01 |
| 1415 | #define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN_SHIFT 0 | 1415 | #define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN_SHIFT 0x00 |
| 1416 | 1416 | ||
| 1417 | /* Bit definitions for SWOFF_COLDRST */ | 1417 | /* Bit definitions for SWOFF_COLDRST */ |
| 1418 | #define PALMAS_SWOFF_COLDRST_PWRON_LPK 0x80 | 1418 | #define PALMAS_SWOFF_COLDRST_PWRON_LPK 0x80 |
| 1419 | #define PALMAS_SWOFF_COLDRST_PWRON_LPK_SHIFT 7 | 1419 | #define PALMAS_SWOFF_COLDRST_PWRON_LPK_SHIFT 0x07 |
| 1420 | #define PALMAS_SWOFF_COLDRST_PWRDOWN 0x40 | 1420 | #define PALMAS_SWOFF_COLDRST_PWRDOWN 0x40 |
| 1421 | #define PALMAS_SWOFF_COLDRST_PWRDOWN_SHIFT 6 | 1421 | #define PALMAS_SWOFF_COLDRST_PWRDOWN_SHIFT 0x06 |
| 1422 | #define PALMAS_SWOFF_COLDRST_WTD 0x20 | 1422 | #define PALMAS_SWOFF_COLDRST_WTD 0x20 |
| 1423 | #define PALMAS_SWOFF_COLDRST_WTD_SHIFT 5 | 1423 | #define PALMAS_SWOFF_COLDRST_WTD_SHIFT 0x05 |
| 1424 | #define PALMAS_SWOFF_COLDRST_TSHUT 0x10 | 1424 | #define PALMAS_SWOFF_COLDRST_TSHUT 0x10 |
| 1425 | #define PALMAS_SWOFF_COLDRST_TSHUT_SHIFT 4 | 1425 | #define PALMAS_SWOFF_COLDRST_TSHUT_SHIFT 0x04 |
| 1426 | #define PALMAS_SWOFF_COLDRST_RESET_IN 0x08 | 1426 | #define PALMAS_SWOFF_COLDRST_RESET_IN 0x08 |
| 1427 | #define PALMAS_SWOFF_COLDRST_RESET_IN_SHIFT 3 | 1427 | #define PALMAS_SWOFF_COLDRST_RESET_IN_SHIFT 0x03 |
| 1428 | #define PALMAS_SWOFF_COLDRST_SW_RST 0x04 | 1428 | #define PALMAS_SWOFF_COLDRST_SW_RST 0x04 |
| 1429 | #define PALMAS_SWOFF_COLDRST_SW_RST_SHIFT 2 | 1429 | #define PALMAS_SWOFF_COLDRST_SW_RST_SHIFT 0x02 |
| 1430 | #define PALMAS_SWOFF_COLDRST_VSYS_LO 0x02 | 1430 | #define PALMAS_SWOFF_COLDRST_VSYS_LO 0x02 |
| 1431 | #define PALMAS_SWOFF_COLDRST_VSYS_LO_SHIFT 1 | 1431 | #define PALMAS_SWOFF_COLDRST_VSYS_LO_SHIFT 0x01 |
| 1432 | #define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN 0x01 | 1432 | #define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN 0x01 |
| 1433 | #define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN_SHIFT 0 | 1433 | #define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN_SHIFT 0x00 |
| 1434 | 1434 | ||
| 1435 | /* Bit definitions for SWOFF_STATUS */ | 1435 | /* Bit definitions for SWOFF_STATUS */ |
| 1436 | #define PALMAS_SWOFF_STATUS_PWRON_LPK 0x80 | 1436 | #define PALMAS_SWOFF_STATUS_PWRON_LPK 0x80 |
| 1437 | #define PALMAS_SWOFF_STATUS_PWRON_LPK_SHIFT 7 | 1437 | #define PALMAS_SWOFF_STATUS_PWRON_LPK_SHIFT 0x07 |
| 1438 | #define PALMAS_SWOFF_STATUS_PWRDOWN 0x40 | 1438 | #define PALMAS_SWOFF_STATUS_PWRDOWN 0x40 |
| 1439 | #define PALMAS_SWOFF_STATUS_PWRDOWN_SHIFT 6 | 1439 | #define PALMAS_SWOFF_STATUS_PWRDOWN_SHIFT 0x06 |
| 1440 | #define PALMAS_SWOFF_STATUS_WTD 0x20 | 1440 | #define PALMAS_SWOFF_STATUS_WTD 0x20 |
| 1441 | #define PALMAS_SWOFF_STATUS_WTD_SHIFT 5 | 1441 | #define PALMAS_SWOFF_STATUS_WTD_SHIFT 0x05 |
| 1442 | #define PALMAS_SWOFF_STATUS_TSHUT 0x10 | 1442 | #define PALMAS_SWOFF_STATUS_TSHUT 0x10 |
| 1443 | #define PALMAS_SWOFF_STATUS_TSHUT_SHIFT 4 | 1443 | #define PALMAS_SWOFF_STATUS_TSHUT_SHIFT 0x04 |
| 1444 | #define PALMAS_SWOFF_STATUS_RESET_IN 0x08 | 1444 | #define PALMAS_SWOFF_STATUS_RESET_IN 0x08 |
| 1445 | #define PALMAS_SWOFF_STATUS_RESET_IN_SHIFT 3 | 1445 | #define PALMAS_SWOFF_STATUS_RESET_IN_SHIFT 0x03 |
| 1446 | #define PALMAS_SWOFF_STATUS_SW_RST 0x04 | 1446 | #define PALMAS_SWOFF_STATUS_SW_RST 0x04 |
| 1447 | #define PALMAS_SWOFF_STATUS_SW_RST_SHIFT 2 | 1447 | #define PALMAS_SWOFF_STATUS_SW_RST_SHIFT 0x02 |
| 1448 | #define PALMAS_SWOFF_STATUS_VSYS_LO 0x02 | 1448 | #define PALMAS_SWOFF_STATUS_VSYS_LO 0x02 |
| 1449 | #define PALMAS_SWOFF_STATUS_VSYS_LO_SHIFT 1 | 1449 | #define PALMAS_SWOFF_STATUS_VSYS_LO_SHIFT 0x01 |
| 1450 | #define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN 0x01 | 1450 | #define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN 0x01 |
| 1451 | #define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN_SHIFT 0 | 1451 | #define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN_SHIFT 0x00 |
| 1452 | 1452 | ||
| 1453 | /* Bit definitions for PMU_CONFIG */ | 1453 | /* Bit definitions for PMU_CONFIG */ |
| 1454 | #define PALMAS_PMU_CONFIG_MULTI_CELL_EN 0x40 | 1454 | #define PALMAS_PMU_CONFIG_MULTI_CELL_EN 0x40 |
| 1455 | #define PALMAS_PMU_CONFIG_MULTI_CELL_EN_SHIFT 6 | 1455 | #define PALMAS_PMU_CONFIG_MULTI_CELL_EN_SHIFT 0x06 |
| 1456 | #define PALMAS_PMU_CONFIG_SPARE_MASK 0x30 | 1456 | #define PALMAS_PMU_CONFIG_SPARE_MASK 0x30 |
| 1457 | #define PALMAS_PMU_CONFIG_SPARE_SHIFT 4 | 1457 | #define PALMAS_PMU_CONFIG_SPARE_SHIFT 0x04 |
| 1458 | #define PALMAS_PMU_CONFIG_SWOFF_DLY_MASK 0x0c | 1458 | #define PALMAS_PMU_CONFIG_SWOFF_DLY_MASK 0x0c |
| 1459 | #define PALMAS_PMU_CONFIG_SWOFF_DLY_SHIFT 2 | 1459 | #define PALMAS_PMU_CONFIG_SWOFF_DLY_SHIFT 0x02 |
| 1460 | #define PALMAS_PMU_CONFIG_GATE_RESET_OUT 0x02 | 1460 | #define PALMAS_PMU_CONFIG_GATE_RESET_OUT 0x02 |
| 1461 | #define PALMAS_PMU_CONFIG_GATE_RESET_OUT_SHIFT 1 | 1461 | #define PALMAS_PMU_CONFIG_GATE_RESET_OUT_SHIFT 0x01 |
| 1462 | #define PALMAS_PMU_CONFIG_AUTODEVON 0x01 | 1462 | #define PALMAS_PMU_CONFIG_AUTODEVON 0x01 |
| 1463 | #define PALMAS_PMU_CONFIG_AUTODEVON_SHIFT 0 | 1463 | #define PALMAS_PMU_CONFIG_AUTODEVON_SHIFT 0x00 |
| 1464 | 1464 | ||
| 1465 | /* Bit definitions for SPARE */ | 1465 | /* Bit definitions for SPARE */ |
| 1466 | #define PALMAS_SPARE_SPARE_MASK 0xf8 | 1466 | #define PALMAS_SPARE_SPARE_MASK 0xf8 |
| 1467 | #define PALMAS_SPARE_SPARE_SHIFT 3 | 1467 | #define PALMAS_SPARE_SPARE_SHIFT 0x03 |
| 1468 | #define PALMAS_SPARE_REGEN3_OD 0x04 | 1468 | #define PALMAS_SPARE_REGEN3_OD 0x04 |
| 1469 | #define PALMAS_SPARE_REGEN3_OD_SHIFT 2 | 1469 | #define PALMAS_SPARE_REGEN3_OD_SHIFT 0x02 |
| 1470 | #define PALMAS_SPARE_REGEN2_OD 0x02 | 1470 | #define PALMAS_SPARE_REGEN2_OD 0x02 |
| 1471 | #define PALMAS_SPARE_REGEN2_OD_SHIFT 1 | 1471 | #define PALMAS_SPARE_REGEN2_OD_SHIFT 0x01 |
| 1472 | #define PALMAS_SPARE_REGEN1_OD 0x01 | 1472 | #define PALMAS_SPARE_REGEN1_OD 0x01 |
| 1473 | #define PALMAS_SPARE_REGEN1_OD_SHIFT 0 | 1473 | #define PALMAS_SPARE_REGEN1_OD_SHIFT 0x00 |
| 1474 | 1474 | ||
| 1475 | /* Bit definitions for PMU_SECONDARY_INT */ | 1475 | /* Bit definitions for PMU_SECONDARY_INT */ |
| 1476 | #define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC 0x80 | 1476 | #define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC 0x80 |
| 1477 | #define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC_SHIFT 7 | 1477 | #define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC_SHIFT 0x07 |
| 1478 | #define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC 0x40 | 1478 | #define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC 0x40 |
| 1479 | #define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC_SHIFT 6 | 1479 | #define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC_SHIFT 0x06 |
| 1480 | #define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC 0x20 | 1480 | #define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC 0x20 |
| 1481 | #define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC_SHIFT 5 | 1481 | #define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC_SHIFT 0x05 |
| 1482 | #define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC 0x10 | 1482 | #define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC 0x10 |
| 1483 | #define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC_SHIFT 4 | 1483 | #define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC_SHIFT 0x04 |
| 1484 | #define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK 0x08 | 1484 | #define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK 0x08 |
| 1485 | #define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK_SHIFT 3 | 1485 | #define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK_SHIFT 0x03 |
| 1486 | #define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK 0x04 | 1486 | #define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK 0x04 |
| 1487 | #define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK_SHIFT 2 | 1487 | #define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK_SHIFT 0x02 |
| 1488 | #define PALMAS_PMU_SECONDARY_INT_BB_MASK 0x02 | 1488 | #define PALMAS_PMU_SECONDARY_INT_BB_MASK 0x02 |
| 1489 | #define PALMAS_PMU_SECONDARY_INT_BB_MASK_SHIFT 1 | 1489 | #define PALMAS_PMU_SECONDARY_INT_BB_MASK_SHIFT 0x01 |
| 1490 | #define PALMAS_PMU_SECONDARY_INT_FBI_MASK 0x01 | 1490 | #define PALMAS_PMU_SECONDARY_INT_FBI_MASK 0x01 |
| 1491 | #define PALMAS_PMU_SECONDARY_INT_FBI_MASK_SHIFT 0 | 1491 | #define PALMAS_PMU_SECONDARY_INT_FBI_MASK_SHIFT 0x00 |
| 1492 | 1492 | ||
| 1493 | /* Bit definitions for SW_REVISION */ | 1493 | /* Bit definitions for SW_REVISION */ |
| 1494 | #define PALMAS_SW_REVISION_SW_REVISION_MASK 0xff | 1494 | #define PALMAS_SW_REVISION_SW_REVISION_MASK 0xFF |
| 1495 | #define PALMAS_SW_REVISION_SW_REVISION_SHIFT 0 | 1495 | #define PALMAS_SW_REVISION_SW_REVISION_SHIFT 0x00 |
| 1496 | 1496 | ||
| 1497 | /* Bit definitions for EXT_CHRG_CTRL */ | 1497 | /* Bit definitions for EXT_CHRG_CTRL */ |
| 1498 | #define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS 0x80 | 1498 | #define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS 0x80 |
| 1499 | #define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS_SHIFT 7 | 1499 | #define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS_SHIFT 0x07 |
| 1500 | #define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS 0x40 | 1500 | #define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS 0x40 |
| 1501 | #define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS_SHIFT 6 | 1501 | #define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS_SHIFT 0x06 |
| 1502 | #define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY 0x08 | 1502 | #define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY 0x08 |
| 1503 | #define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY_SHIFT 3 | 1503 | #define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY_SHIFT 0x03 |
| 1504 | #define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N 0x04 | 1504 | #define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N 0x04 |
| 1505 | #define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N_SHIFT 2 | 1505 | #define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N_SHIFT 0x02 |
| 1506 | #define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN 0x02 | 1506 | #define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN 0x02 |
| 1507 | #define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN_SHIFT 1 | 1507 | #define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN_SHIFT 0x01 |
| 1508 | #define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN 0x01 | 1508 | #define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN 0x01 |
| 1509 | #define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN_SHIFT 0 | 1509 | #define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN_SHIFT 0x00 |
| 1510 | 1510 | ||
| 1511 | /* Bit definitions for PMU_SECONDARY_INT2 */ | 1511 | /* Bit definitions for PMU_SECONDARY_INT2 */ |
| 1512 | #define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC 0x20 | 1512 | #define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC 0x20 |
| 1513 | #define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC_SHIFT 5 | 1513 | #define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC_SHIFT 0x05 |
| 1514 | #define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC 0x10 | 1514 | #define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC 0x10 |
| 1515 | #define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC_SHIFT 4 | 1515 | #define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC_SHIFT 0x04 |
| 1516 | #define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK 0x02 | 1516 | #define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK 0x02 |
| 1517 | #define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK_SHIFT 1 | 1517 | #define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK_SHIFT 0x01 |
| 1518 | #define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK 0x01 | 1518 | #define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK 0x01 |
| 1519 | #define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK_SHIFT 0 | 1519 | #define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK_SHIFT 0x00 |
| 1520 | 1520 | ||
| 1521 | /* Registers for function RESOURCE */ | 1521 | /* Registers for function RESOURCE */ |
| 1522 | #define PALMAS_CLK32KG_CTRL 0x0 | 1522 | #define PALMAS_CLK32KG_CTRL 0x00 |
| 1523 | #define PALMAS_CLK32KGAUDIO_CTRL 0x1 | 1523 | #define PALMAS_CLK32KGAUDIO_CTRL 0x01 |
| 1524 | #define PALMAS_REGEN1_CTRL 0x2 | 1524 | #define PALMAS_REGEN1_CTRL 0x02 |
| 1525 | #define PALMAS_REGEN2_CTRL 0x3 | 1525 | #define PALMAS_REGEN2_CTRL 0x03 |
| 1526 | #define PALMAS_SYSEN1_CTRL 0x4 | 1526 | #define PALMAS_SYSEN1_CTRL 0x04 |
| 1527 | #define PALMAS_SYSEN2_CTRL 0x5 | 1527 | #define PALMAS_SYSEN2_CTRL 0x05 |
| 1528 | #define PALMAS_NSLEEP_RES_ASSIGN 0x6 | 1528 | #define PALMAS_NSLEEP_RES_ASSIGN 0x06 |
| 1529 | #define PALMAS_NSLEEP_SMPS_ASSIGN 0x7 | 1529 | #define PALMAS_NSLEEP_SMPS_ASSIGN 0x07 |
| 1530 | #define PALMAS_NSLEEP_LDO_ASSIGN1 0x8 | 1530 | #define PALMAS_NSLEEP_LDO_ASSIGN1 0x08 |
| 1531 | #define PALMAS_NSLEEP_LDO_ASSIGN2 0x9 | 1531 | #define PALMAS_NSLEEP_LDO_ASSIGN2 0x09 |
| 1532 | #define PALMAS_ENABLE1_RES_ASSIGN 0xA | 1532 | #define PALMAS_ENABLE1_RES_ASSIGN 0x0A |
| 1533 | #define PALMAS_ENABLE1_SMPS_ASSIGN 0xB | 1533 | #define PALMAS_ENABLE1_SMPS_ASSIGN 0x0B |
| 1534 | #define PALMAS_ENABLE1_LDO_ASSIGN1 0xC | 1534 | #define PALMAS_ENABLE1_LDO_ASSIGN1 0x0C |
| 1535 | #define PALMAS_ENABLE1_LDO_ASSIGN2 0xD | 1535 | #define PALMAS_ENABLE1_LDO_ASSIGN2 0x0D |
| 1536 | #define PALMAS_ENABLE2_RES_ASSIGN 0xE | 1536 | #define PALMAS_ENABLE2_RES_ASSIGN 0x0E |
| 1537 | #define PALMAS_ENABLE2_SMPS_ASSIGN 0xF | 1537 | #define PALMAS_ENABLE2_SMPS_ASSIGN 0x0F |
| 1538 | #define PALMAS_ENABLE2_LDO_ASSIGN1 0x10 | 1538 | #define PALMAS_ENABLE2_LDO_ASSIGN1 0x10 |
| 1539 | #define PALMAS_ENABLE2_LDO_ASSIGN2 0x11 | 1539 | #define PALMAS_ENABLE2_LDO_ASSIGN2 0x11 |
| 1540 | #define PALMAS_REGEN3_CTRL 0x12 | 1540 | #define PALMAS_REGEN3_CTRL 0x12 |
| 1541 | 1541 | ||
| 1542 | /* Bit definitions for CLK32KG_CTRL */ | 1542 | /* Bit definitions for CLK32KG_CTRL */ |
| 1543 | #define PALMAS_CLK32KG_CTRL_STATUS 0x10 | 1543 | #define PALMAS_CLK32KG_CTRL_STATUS 0x10 |
| 1544 | #define PALMAS_CLK32KG_CTRL_STATUS_SHIFT 4 | 1544 | #define PALMAS_CLK32KG_CTRL_STATUS_SHIFT 0x04 |
| 1545 | #define PALMAS_CLK32KG_CTRL_MODE_SLEEP 0x04 | 1545 | #define PALMAS_CLK32KG_CTRL_MODE_SLEEP 0x04 |
| 1546 | #define PALMAS_CLK32KG_CTRL_MODE_SLEEP_SHIFT 2 | 1546 | #define PALMAS_CLK32KG_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1547 | #define PALMAS_CLK32KG_CTRL_MODE_ACTIVE 0x01 | 1547 | #define PALMAS_CLK32KG_CTRL_MODE_ACTIVE 0x01 |
| 1548 | #define PALMAS_CLK32KG_CTRL_MODE_ACTIVE_SHIFT 0 | 1548 | #define PALMAS_CLK32KG_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1549 | 1549 | ||
| 1550 | /* Bit definitions for CLK32KGAUDIO_CTRL */ | 1550 | /* Bit definitions for CLK32KGAUDIO_CTRL */ |
| 1551 | #define PALMAS_CLK32KGAUDIO_CTRL_STATUS 0x10 | 1551 | #define PALMAS_CLK32KGAUDIO_CTRL_STATUS 0x10 |
| 1552 | #define PALMAS_CLK32KGAUDIO_CTRL_STATUS_SHIFT 4 | 1552 | #define PALMAS_CLK32KGAUDIO_CTRL_STATUS_SHIFT 0x04 |
| 1553 | #define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3 0x08 | 1553 | #define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3 0x08 |
| 1554 | #define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3_SHIFT 3 | 1554 | #define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3_SHIFT 0x03 |
| 1555 | #define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP 0x04 | 1555 | #define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP 0x04 |
| 1556 | #define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP_SHIFT 2 | 1556 | #define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1557 | #define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE 0x01 | 1557 | #define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE 0x01 |
| 1558 | #define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE_SHIFT 0 | 1558 | #define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1559 | 1559 | ||
| 1560 | /* Bit definitions for REGEN1_CTRL */ | 1560 | /* Bit definitions for REGEN1_CTRL */ |
| 1561 | #define PALMAS_REGEN1_CTRL_STATUS 0x10 | 1561 | #define PALMAS_REGEN1_CTRL_STATUS 0x10 |
| 1562 | #define PALMAS_REGEN1_CTRL_STATUS_SHIFT 4 | 1562 | #define PALMAS_REGEN1_CTRL_STATUS_SHIFT 0x04 |
| 1563 | #define PALMAS_REGEN1_CTRL_MODE_SLEEP 0x04 | 1563 | #define PALMAS_REGEN1_CTRL_MODE_SLEEP 0x04 |
| 1564 | #define PALMAS_REGEN1_CTRL_MODE_SLEEP_SHIFT 2 | 1564 | #define PALMAS_REGEN1_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1565 | #define PALMAS_REGEN1_CTRL_MODE_ACTIVE 0x01 | 1565 | #define PALMAS_REGEN1_CTRL_MODE_ACTIVE 0x01 |
| 1566 | #define PALMAS_REGEN1_CTRL_MODE_ACTIVE_SHIFT 0 | 1566 | #define PALMAS_REGEN1_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1567 | 1567 | ||
| 1568 | /* Bit definitions for REGEN2_CTRL */ | 1568 | /* Bit definitions for REGEN2_CTRL */ |
| 1569 | #define PALMAS_REGEN2_CTRL_STATUS 0x10 | 1569 | #define PALMAS_REGEN2_CTRL_STATUS 0x10 |
| 1570 | #define PALMAS_REGEN2_CTRL_STATUS_SHIFT 4 | 1570 | #define PALMAS_REGEN2_CTRL_STATUS_SHIFT 0x04 |
| 1571 | #define PALMAS_REGEN2_CTRL_MODE_SLEEP 0x04 | 1571 | #define PALMAS_REGEN2_CTRL_MODE_SLEEP 0x04 |
| 1572 | #define PALMAS_REGEN2_CTRL_MODE_SLEEP_SHIFT 2 | 1572 | #define PALMAS_REGEN2_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1573 | #define PALMAS_REGEN2_CTRL_MODE_ACTIVE 0x01 | 1573 | #define PALMAS_REGEN2_CTRL_MODE_ACTIVE 0x01 |
| 1574 | #define PALMAS_REGEN2_CTRL_MODE_ACTIVE_SHIFT 0 | 1574 | #define PALMAS_REGEN2_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1575 | 1575 | ||
| 1576 | /* Bit definitions for SYSEN1_CTRL */ | 1576 | /* Bit definitions for SYSEN1_CTRL */ |
| 1577 | #define PALMAS_SYSEN1_CTRL_STATUS 0x10 | 1577 | #define PALMAS_SYSEN1_CTRL_STATUS 0x10 |
| 1578 | #define PALMAS_SYSEN1_CTRL_STATUS_SHIFT 4 | 1578 | #define PALMAS_SYSEN1_CTRL_STATUS_SHIFT 0x04 |
| 1579 | #define PALMAS_SYSEN1_CTRL_MODE_SLEEP 0x04 | 1579 | #define PALMAS_SYSEN1_CTRL_MODE_SLEEP 0x04 |
| 1580 | #define PALMAS_SYSEN1_CTRL_MODE_SLEEP_SHIFT 2 | 1580 | #define PALMAS_SYSEN1_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1581 | #define PALMAS_SYSEN1_CTRL_MODE_ACTIVE 0x01 | 1581 | #define PALMAS_SYSEN1_CTRL_MODE_ACTIVE 0x01 |
| 1582 | #define PALMAS_SYSEN1_CTRL_MODE_ACTIVE_SHIFT 0 | 1582 | #define PALMAS_SYSEN1_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1583 | 1583 | ||
| 1584 | /* Bit definitions for SYSEN2_CTRL */ | 1584 | /* Bit definitions for SYSEN2_CTRL */ |
| 1585 | #define PALMAS_SYSEN2_CTRL_STATUS 0x10 | 1585 | #define PALMAS_SYSEN2_CTRL_STATUS 0x10 |
| 1586 | #define PALMAS_SYSEN2_CTRL_STATUS_SHIFT 4 | 1586 | #define PALMAS_SYSEN2_CTRL_STATUS_SHIFT 0x04 |
| 1587 | #define PALMAS_SYSEN2_CTRL_MODE_SLEEP 0x04 | 1587 | #define PALMAS_SYSEN2_CTRL_MODE_SLEEP 0x04 |
| 1588 | #define PALMAS_SYSEN2_CTRL_MODE_SLEEP_SHIFT 2 | 1588 | #define PALMAS_SYSEN2_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1589 | #define PALMAS_SYSEN2_CTRL_MODE_ACTIVE 0x01 | 1589 | #define PALMAS_SYSEN2_CTRL_MODE_ACTIVE 0x01 |
| 1590 | #define PALMAS_SYSEN2_CTRL_MODE_ACTIVE_SHIFT 0 | 1590 | #define PALMAS_SYSEN2_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1591 | 1591 | ||
| 1592 | /* Bit definitions for NSLEEP_RES_ASSIGN */ | 1592 | /* Bit definitions for NSLEEP_RES_ASSIGN */ |
| 1593 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN3 0x40 | 1593 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN3 0x40 |
| 1594 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN3_SHIFT 6 | 1594 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN3_SHIFT 0x06 |
| 1595 | #define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO 0x20 | 1595 | #define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO 0x20 |
| 1596 | #define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO_SHIFT 5 | 1596 | #define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO_SHIFT 0x05 |
| 1597 | #define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG 0x10 | 1597 | #define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG 0x10 |
| 1598 | #define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG_SHIFT 4 | 1598 | #define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG_SHIFT 0x04 |
| 1599 | #define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2 0x08 | 1599 | #define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2 0x08 |
| 1600 | #define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2_SHIFT 3 | 1600 | #define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2_SHIFT 0x03 |
| 1601 | #define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1 0x04 | 1601 | #define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1 0x04 |
| 1602 | #define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1_SHIFT 2 | 1602 | #define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1_SHIFT 0x02 |
| 1603 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN2 0x02 | 1603 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN2 0x02 |
| 1604 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN2_SHIFT 1 | 1604 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN2_SHIFT 0x01 |
| 1605 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN1 0x01 | 1605 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN1 0x01 |
| 1606 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN1_SHIFT 0 | 1606 | #define PALMAS_NSLEEP_RES_ASSIGN_REGEN1_SHIFT 0x00 |
| 1607 | 1607 | ||
| 1608 | /* Bit definitions for NSLEEP_SMPS_ASSIGN */ | 1608 | /* Bit definitions for NSLEEP_SMPS_ASSIGN */ |
| 1609 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10 0x80 | 1609 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10 0x80 |
| 1610 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10_SHIFT 7 | 1610 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10_SHIFT 0x07 |
| 1611 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9 0x40 | 1611 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9 0x40 |
| 1612 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9_SHIFT 6 | 1612 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9_SHIFT 0x06 |
| 1613 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8 0x20 | 1613 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8 0x20 |
| 1614 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8_SHIFT 5 | 1614 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8_SHIFT 0x05 |
| 1615 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7 0x10 | 1615 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7 0x10 |
| 1616 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7_SHIFT 4 | 1616 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7_SHIFT 0x04 |
| 1617 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6 0x08 | 1617 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6 0x08 |
| 1618 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6_SHIFT 3 | 1618 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6_SHIFT 0x03 |
| 1619 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45 0x04 | 1619 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45 0x04 |
| 1620 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45_SHIFT 2 | 1620 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45_SHIFT 0x02 |
| 1621 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3 0x02 | 1621 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3 0x02 |
| 1622 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3_SHIFT 1 | 1622 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3_SHIFT 0x01 |
| 1623 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12 0x01 | 1623 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12 0x01 |
| 1624 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12_SHIFT 0 | 1624 | #define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12_SHIFT 0x00 |
| 1625 | 1625 | ||
| 1626 | /* Bit definitions for NSLEEP_LDO_ASSIGN1 */ | 1626 | /* Bit definitions for NSLEEP_LDO_ASSIGN1 */ |
| 1627 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8 0x80 | 1627 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8 0x80 |
| 1628 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8_SHIFT 7 | 1628 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8_SHIFT 0x07 |
| 1629 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7 0x40 | 1629 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7 0x40 |
| 1630 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7_SHIFT 6 | 1630 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7_SHIFT 0x06 |
| 1631 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6 0x20 | 1631 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6 0x20 |
| 1632 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6_SHIFT 5 | 1632 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6_SHIFT 0x05 |
| 1633 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5 0x10 | 1633 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5 0x10 |
| 1634 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5_SHIFT 4 | 1634 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5_SHIFT 0x04 |
| 1635 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4 0x08 | 1635 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4 0x08 |
| 1636 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4_SHIFT 3 | 1636 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4_SHIFT 0x03 |
| 1637 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3 0x04 | 1637 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3 0x04 |
| 1638 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3_SHIFT 2 | 1638 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3_SHIFT 0x02 |
| 1639 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2 0x02 | 1639 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2 0x02 |
| 1640 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2_SHIFT 1 | 1640 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2_SHIFT 0x01 |
| 1641 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1 0x01 | 1641 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1 0x01 |
| 1642 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1_SHIFT 0 | 1642 | #define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1_SHIFT 0x00 |
| 1643 | 1643 | ||
| 1644 | /* Bit definitions for NSLEEP_LDO_ASSIGN2 */ | 1644 | /* Bit definitions for NSLEEP_LDO_ASSIGN2 */ |
| 1645 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB 0x04 | 1645 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB 0x04 |
| 1646 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB_SHIFT 2 | 1646 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB_SHIFT 0x02 |
| 1647 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN 0x02 | 1647 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN 0x02 |
| 1648 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN_SHIFT 1 | 1648 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN_SHIFT 0x01 |
| 1649 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9 0x01 | 1649 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9 0x01 |
| 1650 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9_SHIFT 0 | 1650 | #define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9_SHIFT 0x00 |
| 1651 | 1651 | ||
| 1652 | /* Bit definitions for ENABLE1_RES_ASSIGN */ | 1652 | /* Bit definitions for ENABLE1_RES_ASSIGN */ |
| 1653 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN3 0x40 | 1653 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN3 0x40 |
| 1654 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN3_SHIFT 6 | 1654 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN3_SHIFT 0x06 |
| 1655 | #define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO 0x20 | 1655 | #define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO 0x20 |
| 1656 | #define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO_SHIFT 5 | 1656 | #define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO_SHIFT 0x05 |
| 1657 | #define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG 0x10 | 1657 | #define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG 0x10 |
| 1658 | #define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG_SHIFT 4 | 1658 | #define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG_SHIFT 0x04 |
| 1659 | #define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2 0x08 | 1659 | #define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2 0x08 |
| 1660 | #define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2_SHIFT 3 | 1660 | #define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2_SHIFT 0x03 |
| 1661 | #define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1 0x04 | 1661 | #define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1 0x04 |
| 1662 | #define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1_SHIFT 2 | 1662 | #define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1_SHIFT 0x02 |
| 1663 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN2 0x02 | 1663 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN2 0x02 |
| 1664 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN2_SHIFT 1 | 1664 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN2_SHIFT 0x01 |
| 1665 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN1 0x01 | 1665 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN1 0x01 |
| 1666 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN1_SHIFT 0 | 1666 | #define PALMAS_ENABLE1_RES_ASSIGN_REGEN1_SHIFT 0x00 |
| 1667 | 1667 | ||
| 1668 | /* Bit definitions for ENABLE1_SMPS_ASSIGN */ | 1668 | /* Bit definitions for ENABLE1_SMPS_ASSIGN */ |
| 1669 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10 0x80 | 1669 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10 0x80 |
| 1670 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10_SHIFT 7 | 1670 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10_SHIFT 0x07 |
| 1671 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9 0x40 | 1671 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9 0x40 |
| 1672 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9_SHIFT 6 | 1672 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9_SHIFT 0x06 |
| 1673 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8 0x20 | 1673 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8 0x20 |
| 1674 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8_SHIFT 5 | 1674 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8_SHIFT 0x05 |
| 1675 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7 0x10 | 1675 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7 0x10 |
| 1676 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7_SHIFT 4 | 1676 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7_SHIFT 0x04 |
| 1677 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6 0x08 | 1677 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6 0x08 |
| 1678 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6_SHIFT 3 | 1678 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6_SHIFT 0x03 |
| 1679 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45 0x04 | 1679 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45 0x04 |
| 1680 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45_SHIFT 2 | 1680 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45_SHIFT 0x02 |
| 1681 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3 0x02 | 1681 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3 0x02 |
| 1682 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3_SHIFT 1 | 1682 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3_SHIFT 0x01 |
| 1683 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12 0x01 | 1683 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12 0x01 |
| 1684 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12_SHIFT 0 | 1684 | #define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12_SHIFT 0x00 |
| 1685 | 1685 | ||
| 1686 | /* Bit definitions for ENABLE1_LDO_ASSIGN1 */ | 1686 | /* Bit definitions for ENABLE1_LDO_ASSIGN1 */ |
| 1687 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8 0x80 | 1687 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8 0x80 |
| 1688 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8_SHIFT 7 | 1688 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8_SHIFT 0x07 |
| 1689 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7 0x40 | 1689 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7 0x40 |
| 1690 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7_SHIFT 6 | 1690 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7_SHIFT 0x06 |
| 1691 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6 0x20 | 1691 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6 0x20 |
| 1692 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6_SHIFT 5 | 1692 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6_SHIFT 0x05 |
| 1693 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5 0x10 | 1693 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5 0x10 |
| 1694 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5_SHIFT 4 | 1694 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5_SHIFT 0x04 |
| 1695 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4 0x08 | 1695 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4 0x08 |
| 1696 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4_SHIFT 3 | 1696 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4_SHIFT 0x03 |
| 1697 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3 0x04 | 1697 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3 0x04 |
| 1698 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3_SHIFT 2 | 1698 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3_SHIFT 0x02 |
| 1699 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2 0x02 | 1699 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2 0x02 |
| 1700 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2_SHIFT 1 | 1700 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2_SHIFT 0x01 |
| 1701 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1 0x01 | 1701 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1 0x01 |
| 1702 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1_SHIFT 0 | 1702 | #define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1_SHIFT 0x00 |
| 1703 | 1703 | ||
| 1704 | /* Bit definitions for ENABLE1_LDO_ASSIGN2 */ | 1704 | /* Bit definitions for ENABLE1_LDO_ASSIGN2 */ |
| 1705 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB 0x04 | 1705 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB 0x04 |
| 1706 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB_SHIFT 2 | 1706 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB_SHIFT 0x02 |
| 1707 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN 0x02 | 1707 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN 0x02 |
| 1708 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN_SHIFT 1 | 1708 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN_SHIFT 0x01 |
| 1709 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9 0x01 | 1709 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9 0x01 |
| 1710 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9_SHIFT 0 | 1710 | #define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9_SHIFT 0x00 |
| 1711 | 1711 | ||
| 1712 | /* Bit definitions for ENABLE2_RES_ASSIGN */ | 1712 | /* Bit definitions for ENABLE2_RES_ASSIGN */ |
| 1713 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN3 0x40 | 1713 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN3 0x40 |
| 1714 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN3_SHIFT 6 | 1714 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN3_SHIFT 0x06 |
| 1715 | #define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO 0x20 | 1715 | #define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO 0x20 |
| 1716 | #define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO_SHIFT 5 | 1716 | #define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO_SHIFT 0x05 |
| 1717 | #define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG 0x10 | 1717 | #define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG 0x10 |
| 1718 | #define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG_SHIFT 4 | 1718 | #define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG_SHIFT 0x04 |
| 1719 | #define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2 0x08 | 1719 | #define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2 0x08 |
| 1720 | #define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2_SHIFT 3 | 1720 | #define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2_SHIFT 0x03 |
| 1721 | #define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1 0x04 | 1721 | #define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1 0x04 |
| 1722 | #define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1_SHIFT 2 | 1722 | #define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1_SHIFT 0x02 |
| 1723 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN2 0x02 | 1723 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN2 0x02 |
| 1724 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN2_SHIFT 1 | 1724 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN2_SHIFT 0x01 |
| 1725 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN1 0x01 | 1725 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN1 0x01 |
| 1726 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN1_SHIFT 0 | 1726 | #define PALMAS_ENABLE2_RES_ASSIGN_REGEN1_SHIFT 0x00 |
| 1727 | 1727 | ||
| 1728 | /* Bit definitions for ENABLE2_SMPS_ASSIGN */ | 1728 | /* Bit definitions for ENABLE2_SMPS_ASSIGN */ |
| 1729 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10 0x80 | 1729 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10 0x80 |
| 1730 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10_SHIFT 7 | 1730 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10_SHIFT 0x07 |
| 1731 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9 0x40 | 1731 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9 0x40 |
| 1732 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9_SHIFT 6 | 1732 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9_SHIFT 0x06 |
| 1733 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8 0x20 | 1733 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8 0x20 |
| 1734 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8_SHIFT 5 | 1734 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8_SHIFT 0x05 |
| 1735 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7 0x10 | 1735 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7 0x10 |
| 1736 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7_SHIFT 4 | 1736 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7_SHIFT 0x04 |
| 1737 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6 0x08 | 1737 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6 0x08 |
| 1738 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6_SHIFT 3 | 1738 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6_SHIFT 0x03 |
| 1739 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45 0x04 | 1739 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45 0x04 |
| 1740 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45_SHIFT 2 | 1740 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45_SHIFT 0x02 |
| 1741 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3 0x02 | 1741 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3 0x02 |
| 1742 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3_SHIFT 1 | 1742 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3_SHIFT 0x01 |
| 1743 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12 0x01 | 1743 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12 0x01 |
| 1744 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12_SHIFT 0 | 1744 | #define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12_SHIFT 0x00 |
| 1745 | 1745 | ||
| 1746 | /* Bit definitions for ENABLE2_LDO_ASSIGN1 */ | 1746 | /* Bit definitions for ENABLE2_LDO_ASSIGN1 */ |
| 1747 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8 0x80 | 1747 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8 0x80 |
| 1748 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8_SHIFT 7 | 1748 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8_SHIFT 0x07 |
| 1749 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7 0x40 | 1749 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7 0x40 |
| 1750 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7_SHIFT 6 | 1750 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7_SHIFT 0x06 |
| 1751 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6 0x20 | 1751 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6 0x20 |
| 1752 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6_SHIFT 5 | 1752 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6_SHIFT 0x05 |
| 1753 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5 0x10 | 1753 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5 0x10 |
| 1754 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5_SHIFT 4 | 1754 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5_SHIFT 0x04 |
| 1755 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4 0x08 | 1755 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4 0x08 |
| 1756 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4_SHIFT 3 | 1756 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4_SHIFT 0x03 |
| 1757 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3 0x04 | 1757 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3 0x04 |
| 1758 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3_SHIFT 2 | 1758 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3_SHIFT 0x02 |
| 1759 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2 0x02 | 1759 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2 0x02 |
| 1760 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2_SHIFT 1 | 1760 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2_SHIFT 0x01 |
| 1761 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1 0x01 | 1761 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1 0x01 |
| 1762 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1_SHIFT 0 | 1762 | #define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1_SHIFT 0x00 |
| 1763 | 1763 | ||
| 1764 | /* Bit definitions for ENABLE2_LDO_ASSIGN2 */ | 1764 | /* Bit definitions for ENABLE2_LDO_ASSIGN2 */ |
| 1765 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB 0x04 | 1765 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB 0x04 |
| 1766 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB_SHIFT 2 | 1766 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB_SHIFT 0x02 |
| 1767 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN 0x02 | 1767 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN 0x02 |
| 1768 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN_SHIFT 1 | 1768 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN_SHIFT 0x01 |
| 1769 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9 0x01 | 1769 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9 0x01 |
| 1770 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9_SHIFT 0 | 1770 | #define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9_SHIFT 0x00 |
| 1771 | 1771 | ||
| 1772 | /* Bit definitions for REGEN3_CTRL */ | 1772 | /* Bit definitions for REGEN3_CTRL */ |
| 1773 | #define PALMAS_REGEN3_CTRL_STATUS 0x10 | 1773 | #define PALMAS_REGEN3_CTRL_STATUS 0x10 |
| 1774 | #define PALMAS_REGEN3_CTRL_STATUS_SHIFT 4 | 1774 | #define PALMAS_REGEN3_CTRL_STATUS_SHIFT 0x04 |
| 1775 | #define PALMAS_REGEN3_CTRL_MODE_SLEEP 0x04 | 1775 | #define PALMAS_REGEN3_CTRL_MODE_SLEEP 0x04 |
| 1776 | #define PALMAS_REGEN3_CTRL_MODE_SLEEP_SHIFT 2 | 1776 | #define PALMAS_REGEN3_CTRL_MODE_SLEEP_SHIFT 0x02 |
| 1777 | #define PALMAS_REGEN3_CTRL_MODE_ACTIVE 0x01 | 1777 | #define PALMAS_REGEN3_CTRL_MODE_ACTIVE 0x01 |
| 1778 | #define PALMAS_REGEN3_CTRL_MODE_ACTIVE_SHIFT 0 | 1778 | #define PALMAS_REGEN3_CTRL_MODE_ACTIVE_SHIFT 0x00 |
| 1779 | 1779 | ||
| 1780 | /* Registers for function PAD_CONTROL */ | 1780 | /* Registers for function PAD_CONTROL */ |
| 1781 | #define PALMAS_OD_OUTPUT_CTRL2 0x2 | 1781 | #define PALMAS_OD_OUTPUT_CTRL2 0x02 |
| 1782 | #define PALMAS_POLARITY_CTRL2 0x3 | 1782 | #define PALMAS_POLARITY_CTRL2 0x03 |
| 1783 | #define PALMAS_PU_PD_INPUT_CTRL1 0x4 | 1783 | #define PALMAS_PU_PD_INPUT_CTRL1 0x04 |
| 1784 | #define PALMAS_PU_PD_INPUT_CTRL2 0x5 | 1784 | #define PALMAS_PU_PD_INPUT_CTRL2 0x05 |
| 1785 | #define PALMAS_PU_PD_INPUT_CTRL3 0x6 | 1785 | #define PALMAS_PU_PD_INPUT_CTRL3 0x06 |
| 1786 | #define PALMAS_PU_PD_INPUT_CTRL5 0x7 | 1786 | #define PALMAS_PU_PD_INPUT_CTRL5 0x07 |
| 1787 | #define PALMAS_OD_OUTPUT_CTRL 0x8 | 1787 | #define PALMAS_OD_OUTPUT_CTRL 0x08 |
| 1788 | #define PALMAS_POLARITY_CTRL 0x9 | 1788 | #define PALMAS_POLARITY_CTRL 0x09 |
| 1789 | #define PALMAS_PRIMARY_SECONDARY_PAD1 0xA | 1789 | #define PALMAS_PRIMARY_SECONDARY_PAD1 0x0A |
| 1790 | #define PALMAS_PRIMARY_SECONDARY_PAD2 0xB | 1790 | #define PALMAS_PRIMARY_SECONDARY_PAD2 0x0B |
| 1791 | #define PALMAS_I2C_SPI 0xC | 1791 | #define PALMAS_I2C_SPI 0x0C |
| 1792 | #define PALMAS_PU_PD_INPUT_CTRL4 0xD | 1792 | #define PALMAS_PU_PD_INPUT_CTRL4 0x0D |
| 1793 | #define PALMAS_PRIMARY_SECONDARY_PAD3 0xE | 1793 | #define PALMAS_PRIMARY_SECONDARY_PAD3 0x0E |
| 1794 | #define PALMAS_PRIMARY_SECONDARY_PAD4 0xF | 1794 | #define PALMAS_PRIMARY_SECONDARY_PAD4 0x0F |
| 1795 | 1795 | ||
| 1796 | /* Bit definitions for PU_PD_INPUT_CTRL1 */ | 1796 | /* Bit definitions for PU_PD_INPUT_CTRL1 */ |
| 1797 | #define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD 0x40 | 1797 | #define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD 0x40 |
| 1798 | #define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD_SHIFT 6 | 1798 | #define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD_SHIFT 0x06 |
| 1799 | #define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU 0x20 | 1799 | #define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU 0x20 |
| 1800 | #define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU_SHIFT 5 | 1800 | #define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU_SHIFT 0x05 |
| 1801 | #define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD 0x10 | 1801 | #define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD 0x10 |
| 1802 | #define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD_SHIFT 4 | 1802 | #define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD_SHIFT 0x04 |
| 1803 | #define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD 0x04 | 1803 | #define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD 0x04 |
| 1804 | #define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD_SHIFT 2 | 1804 | #define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD_SHIFT 0x02 |
| 1805 | #define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU 0x02 | 1805 | #define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU 0x02 |
| 1806 | #define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU_SHIFT 1 | 1806 | #define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU_SHIFT 0x01 |
| 1807 | 1807 | ||
| 1808 | /* Bit definitions for PU_PD_INPUT_CTRL2 */ | 1808 | /* Bit definitions for PU_PD_INPUT_CTRL2 */ |
| 1809 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU 0x20 | 1809 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU 0x20 |
| 1810 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU_SHIFT 5 | 1810 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU_SHIFT 0x05 |
| 1811 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD 0x10 | 1811 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD 0x10 |
| 1812 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD_SHIFT 4 | 1812 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD_SHIFT 0x04 |
| 1813 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU 0x08 | 1813 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU 0x08 |
| 1814 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU_SHIFT 3 | 1814 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU_SHIFT 0x03 |
| 1815 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD 0x04 | 1815 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD 0x04 |
| 1816 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD_SHIFT 2 | 1816 | #define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD_SHIFT 0x02 |
| 1817 | #define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU 0x02 | 1817 | #define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU 0x02 |
| 1818 | #define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU_SHIFT 1 | 1818 | #define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU_SHIFT 0x01 |
| 1819 | #define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD 0x01 | 1819 | #define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD 0x01 |
| 1820 | #define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD_SHIFT 0 | 1820 | #define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD_SHIFT 0x00 |
| 1821 | 1821 | ||
| 1822 | /* Bit definitions for PU_PD_INPUT_CTRL3 */ | 1822 | /* Bit definitions for PU_PD_INPUT_CTRL3 */ |
| 1823 | #define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD 0x40 | 1823 | #define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD 0x40 |
| 1824 | #define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD_SHIFT 6 | 1824 | #define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD_SHIFT 0x06 |
| 1825 | #define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD 0x10 | 1825 | #define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD 0x10 |
| 1826 | #define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD_SHIFT 4 | 1826 | #define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD_SHIFT 0x04 |
| 1827 | #define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD 0x04 | 1827 | #define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD 0x04 |
| 1828 | #define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD_SHIFT 2 | 1828 | #define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD_SHIFT 0x02 |
| 1829 | #define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD 0x01 | 1829 | #define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD 0x01 |
| 1830 | #define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD_SHIFT 0 | 1830 | #define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD_SHIFT 0x00 |
| 1831 | 1831 | ||
| 1832 | /* Bit definitions for OD_OUTPUT_CTRL */ | 1832 | /* Bit definitions for OD_OUTPUT_CTRL */ |
| 1833 | #define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD 0x80 | 1833 | #define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD 0x80 |
| 1834 | #define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD_SHIFT 7 | 1834 | #define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD_SHIFT 0x07 |
| 1835 | #define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD 0x40 | 1835 | #define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD 0x40 |
| 1836 | #define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD_SHIFT 6 | 1836 | #define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD_SHIFT 0x06 |
| 1837 | #define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD 0x20 | 1837 | #define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD 0x20 |
| 1838 | #define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD_SHIFT 5 | 1838 | #define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD_SHIFT 0x05 |
| 1839 | #define PALMAS_OD_OUTPUT_CTRL_INT_OD 0x08 | 1839 | #define PALMAS_OD_OUTPUT_CTRL_INT_OD 0x08 |
| 1840 | #define PALMAS_OD_OUTPUT_CTRL_INT_OD_SHIFT 3 | 1840 | #define PALMAS_OD_OUTPUT_CTRL_INT_OD_SHIFT 0x03 |
| 1841 | 1841 | ||
| 1842 | /* Bit definitions for POLARITY_CTRL */ | 1842 | /* Bit definitions for POLARITY_CTRL */ |
| 1843 | #define PALMAS_POLARITY_CTRL_INT_POLARITY 0x80 | 1843 | #define PALMAS_POLARITY_CTRL_INT_POLARITY 0x80 |
| 1844 | #define PALMAS_POLARITY_CTRL_INT_POLARITY_SHIFT 7 | 1844 | #define PALMAS_POLARITY_CTRL_INT_POLARITY_SHIFT 0x07 |
| 1845 | #define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY 0x40 | 1845 | #define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY 0x40 |
| 1846 | #define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY_SHIFT 6 | 1846 | #define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY_SHIFT 0x06 |
| 1847 | #define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY 0x20 | 1847 | #define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY 0x20 |
| 1848 | #define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY_SHIFT 5 | 1848 | #define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY_SHIFT 0x05 |
| 1849 | #define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY 0x10 | 1849 | #define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY 0x10 |
| 1850 | #define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY_SHIFT 4 | 1850 | #define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY_SHIFT 0x04 |
| 1851 | #define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY 0x08 | 1851 | #define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY 0x08 |
| 1852 | #define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY_SHIFT 3 | 1852 | #define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY_SHIFT 0x03 |
| 1853 | #define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY 0x04 | 1853 | #define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY 0x04 |
| 1854 | #define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY_SHIFT 2 | 1854 | #define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY_SHIFT 0x02 |
| 1855 | #define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY 0x02 | 1855 | #define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY 0x02 |
| 1856 | #define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY_SHIFT 1 | 1856 | #define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY_SHIFT 0x01 |
| 1857 | #define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY 0x01 | 1857 | #define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY 0x01 |
| 1858 | #define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY_SHIFT 0 | 1858 | #define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY_SHIFT 0x00 |
| 1859 | 1859 | ||
| 1860 | /* Bit definitions for PRIMARY_SECONDARY_PAD1 */ | 1860 | /* Bit definitions for PRIMARY_SECONDARY_PAD1 */ |
| 1861 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3 0x80 | 1861 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3 0x80 |
| 1862 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3_SHIFT 7 | 1862 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3_SHIFT 0x07 |
| 1863 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_MASK 0x60 | 1863 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_MASK 0x60 |
| 1864 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_SHIFT 5 | 1864 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_SHIFT 0x05 |
| 1865 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_MASK 0x18 | 1865 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_MASK 0x18 |
| 1866 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_SHIFT 3 | 1866 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_SHIFT 0x03 |
| 1867 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0 0x04 | 1867 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0 0x04 |
| 1868 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0_SHIFT 2 | 1868 | #define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0_SHIFT 0x02 |
| 1869 | #define PALMAS_PRIMARY_SECONDARY_PAD1_VAC 0x02 | 1869 | #define PALMAS_PRIMARY_SECONDARY_PAD1_VAC 0x02 |
| 1870 | #define PALMAS_PRIMARY_SECONDARY_PAD1_VAC_SHIFT 1 | 1870 | #define PALMAS_PRIMARY_SECONDARY_PAD1_VAC_SHIFT 0x01 |
| 1871 | #define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD 0x01 | 1871 | #define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD 0x01 |
| 1872 | #define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD_SHIFT 0 | 1872 | #define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD_SHIFT 0x00 |
| 1873 | 1873 | ||
| 1874 | /* Bit definitions for PRIMARY_SECONDARY_PAD2 */ | 1874 | /* Bit definitions for PRIMARY_SECONDARY_PAD2 */ |
| 1875 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_MASK 0x30 | 1875 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_MASK 0x30 |
| 1876 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_SHIFT 4 | 1876 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_SHIFT 0x04 |
| 1877 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6 0x08 | 1877 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6 0x08 |
| 1878 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6_SHIFT 3 | 1878 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6_SHIFT 0x03 |
| 1879 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_MASK 0x06 | 1879 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_MASK 0x06 |
| 1880 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_SHIFT 1 | 1880 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_SHIFT 0x01 |
| 1881 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4 0x01 | 1881 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4 0x01 |
| 1882 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4_SHIFT 0 | 1882 | #define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4_SHIFT 0x00 |
| 1883 | 1883 | ||
| 1884 | /* Bit definitions for I2C_SPI */ | 1884 | /* Bit definitions for I2C_SPI */ |
| 1885 | #define PALMAS_I2C_SPI_I2C2OTP_EN 0x80 | 1885 | #define PALMAS_I2C_SPI_I2C2OTP_EN 0x80 |
| 1886 | #define PALMAS_I2C_SPI_I2C2OTP_EN_SHIFT 7 | 1886 | #define PALMAS_I2C_SPI_I2C2OTP_EN_SHIFT 0x07 |
| 1887 | #define PALMAS_I2C_SPI_I2C2OTP_PAGESEL 0x40 | 1887 | #define PALMAS_I2C_SPI_I2C2OTP_PAGESEL 0x40 |
| 1888 | #define PALMAS_I2C_SPI_I2C2OTP_PAGESEL_SHIFT 6 | 1888 | #define PALMAS_I2C_SPI_I2C2OTP_PAGESEL_SHIFT 0x06 |
| 1889 | #define PALMAS_I2C_SPI_ID_I2C2 0x20 | 1889 | #define PALMAS_I2C_SPI_ID_I2C2 0x20 |
| 1890 | #define PALMAS_I2C_SPI_ID_I2C2_SHIFT 5 | 1890 | #define PALMAS_I2C_SPI_ID_I2C2_SHIFT 0x05 |
| 1891 | #define PALMAS_I2C_SPI_I2C_SPI 0x10 | 1891 | #define PALMAS_I2C_SPI_I2C_SPI 0x10 |
| 1892 | #define PALMAS_I2C_SPI_I2C_SPI_SHIFT 4 | 1892 | #define PALMAS_I2C_SPI_I2C_SPI_SHIFT 0x04 |
| 1893 | #define PALMAS_I2C_SPI_ID_I2C1_MASK 0x0f | 1893 | #define PALMAS_I2C_SPI_ID_I2C1_MASK 0x0F |
| 1894 | #define PALMAS_I2C_SPI_ID_I2C1_SHIFT 0 | 1894 | #define PALMAS_I2C_SPI_ID_I2C1_SHIFT 0x00 |
| 1895 | 1895 | ||
| 1896 | /* Bit definitions for PU_PD_INPUT_CTRL4 */ | 1896 | /* Bit definitions for PU_PD_INPUT_CTRL4 */ |
| 1897 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD 0x40 | 1897 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD 0x40 |
| 1898 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD_SHIFT 6 | 1898 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD_SHIFT 0x06 |
| 1899 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD 0x10 | 1899 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD 0x10 |
| 1900 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD_SHIFT 4 | 1900 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD_SHIFT 0x04 |
| 1901 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD 0x04 | 1901 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD 0x04 |
| 1902 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD_SHIFT 2 | 1902 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD_SHIFT 0x02 |
| 1903 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD 0x01 | 1903 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD 0x01 |
| 1904 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD_SHIFT 0 | 1904 | #define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD_SHIFT 0x00 |
| 1905 | 1905 | ||
| 1906 | /* Bit definitions for PRIMARY_SECONDARY_PAD3 */ | 1906 | /* Bit definitions for PRIMARY_SECONDARY_PAD3 */ |
| 1907 | #define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2 0x02 | 1907 | #define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2 0x02 |
| 1908 | #define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2_SHIFT 1 | 1908 | #define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2_SHIFT 0x01 |
| 1909 | #define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1 0x01 | 1909 | #define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1 0x01 |
| 1910 | #define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1_SHIFT 0 | 1910 | #define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1_SHIFT 0x00 |
| 1911 | 1911 | ||
| 1912 | /* Registers for function LED_PWM */ | 1912 | /* Registers for function LED_PWM */ |
| 1913 | #define PALMAS_LED_PERIOD_CTRL 0x0 | 1913 | #define PALMAS_LED_PERIOD_CTRL 0x00 |
| 1914 | #define PALMAS_LED_CTRL 0x1 | 1914 | #define PALMAS_LED_CTRL 0x01 |
| 1915 | #define PALMAS_PWM_CTRL1 0x2 | 1915 | #define PALMAS_PWM_CTRL1 0x02 |
| 1916 | #define PALMAS_PWM_CTRL2 0x3 | 1916 | #define PALMAS_PWM_CTRL2 0x03 |
| 1917 | 1917 | ||
| 1918 | /* Bit definitions for LED_PERIOD_CTRL */ | 1918 | /* Bit definitions for LED_PERIOD_CTRL */ |
| 1919 | #define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_MASK 0x38 | 1919 | #define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_MASK 0x38 |
| 1920 | #define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_SHIFT 3 | 1920 | #define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_SHIFT 0x03 |
| 1921 | #define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_MASK 0x07 | 1921 | #define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_MASK 0x07 |
| 1922 | #define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_SHIFT 0 | 1922 | #define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_SHIFT 0x00 |
| 1923 | 1923 | ||
| 1924 | /* Bit definitions for LED_CTRL */ | 1924 | /* Bit definitions for LED_CTRL */ |
| 1925 | #define PALMAS_LED_CTRL_LED_2_SEQ 0x20 | 1925 | #define PALMAS_LED_CTRL_LED_2_SEQ 0x20 |
| 1926 | #define PALMAS_LED_CTRL_LED_2_SEQ_SHIFT 5 | 1926 | #define PALMAS_LED_CTRL_LED_2_SEQ_SHIFT 0x05 |
| 1927 | #define PALMAS_LED_CTRL_LED_1_SEQ 0x10 | 1927 | #define PALMAS_LED_CTRL_LED_1_SEQ 0x10 |
| 1928 | #define PALMAS_LED_CTRL_LED_1_SEQ_SHIFT 4 | 1928 | #define PALMAS_LED_CTRL_LED_1_SEQ_SHIFT 0x04 |
| 1929 | #define PALMAS_LED_CTRL_LED_2_ON_TIME_MASK 0x0c | 1929 | #define PALMAS_LED_CTRL_LED_2_ON_TIME_MASK 0x0c |
| 1930 | #define PALMAS_LED_CTRL_LED_2_ON_TIME_SHIFT 2 | 1930 | #define PALMAS_LED_CTRL_LED_2_ON_TIME_SHIFT 0x02 |
| 1931 | #define PALMAS_LED_CTRL_LED_1_ON_TIME_MASK 0x03 | 1931 | #define PALMAS_LED_CTRL_LED_1_ON_TIME_MASK 0x03 |
| 1932 | #define PALMAS_LED_CTRL_LED_1_ON_TIME_SHIFT 0 | 1932 | #define PALMAS_LED_CTRL_LED_1_ON_TIME_SHIFT 0x00 |
| 1933 | 1933 | ||
| 1934 | /* Bit definitions for PWM_CTRL1 */ | 1934 | /* Bit definitions for PWM_CTRL1 */ |
| 1935 | #define PALMAS_PWM_CTRL1_PWM_FREQ_EN 0x02 | 1935 | #define PALMAS_PWM_CTRL1_PWM_FREQ_EN 0x02 |
| 1936 | #define PALMAS_PWM_CTRL1_PWM_FREQ_EN_SHIFT 1 | 1936 | #define PALMAS_PWM_CTRL1_PWM_FREQ_EN_SHIFT 0x01 |
| 1937 | #define PALMAS_PWM_CTRL1_PWM_FREQ_SEL 0x01 | 1937 | #define PALMAS_PWM_CTRL1_PWM_FREQ_SEL 0x01 |
| 1938 | #define PALMAS_PWM_CTRL1_PWM_FREQ_SEL_SHIFT 0 | 1938 | #define PALMAS_PWM_CTRL1_PWM_FREQ_SEL_SHIFT 0x00 |
| 1939 | 1939 | ||
| 1940 | /* Bit definitions for PWM_CTRL2 */ | 1940 | /* Bit definitions for PWM_CTRL2 */ |
| 1941 | #define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_MASK 0xff | 1941 | #define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_MASK 0xFF |
| 1942 | #define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_SHIFT 0 | 1942 | #define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_SHIFT 0x00 |
| 1943 | 1943 | ||
| 1944 | /* Registers for function INTERRUPT */ | 1944 | /* Registers for function INTERRUPT */ |
| 1945 | #define PALMAS_INT1_STATUS 0x0 | 1945 | #define PALMAS_INT1_STATUS 0x00 |
| 1946 | #define PALMAS_INT1_MASK 0x1 | 1946 | #define PALMAS_INT1_MASK 0x01 |
| 1947 | #define PALMAS_INT1_LINE_STATE 0x2 | 1947 | #define PALMAS_INT1_LINE_STATE 0x02 |
| 1948 | #define PALMAS_INT1_EDGE_DETECT1_RESERVED 0x3 | 1948 | #define PALMAS_INT1_EDGE_DETECT1_RESERVED 0x03 |
| 1949 | #define PALMAS_INT1_EDGE_DETECT2_RESERVED 0x4 | 1949 | #define PALMAS_INT1_EDGE_DETECT2_RESERVED 0x04 |
| 1950 | #define PALMAS_INT2_STATUS 0x5 | 1950 | #define PALMAS_INT2_STATUS 0x05 |
| 1951 | #define PALMAS_INT2_MASK 0x6 | 1951 | #define PALMAS_INT2_MASK 0x06 |
| 1952 | #define PALMAS_INT2_LINE_STATE 0x7 | 1952 | #define PALMAS_INT2_LINE_STATE 0x07 |
| 1953 | #define PALMAS_INT2_EDGE_DETECT1_RESERVED 0x8 | 1953 | #define PALMAS_INT2_EDGE_DETECT1_RESERVED 0x08 |
| 1954 | #define PALMAS_INT2_EDGE_DETECT2_RESERVED 0x9 | 1954 | #define PALMAS_INT2_EDGE_DETECT2_RESERVED 0x09 |
| 1955 | #define PALMAS_INT3_STATUS 0xA | 1955 | #define PALMAS_INT3_STATUS 0x0A |
| 1956 | #define PALMAS_INT3_MASK 0xB | 1956 | #define PALMAS_INT3_MASK 0x0B |
| 1957 | #define PALMAS_INT3_LINE_STATE 0xC | 1957 | #define PALMAS_INT3_LINE_STATE 0x0C |
| 1958 | #define PALMAS_INT3_EDGE_DETECT1_RESERVED 0xD | 1958 | #define PALMAS_INT3_EDGE_DETECT1_RESERVED 0x0D |
| 1959 | #define PALMAS_INT3_EDGE_DETECT2_RESERVED 0xE | 1959 | #define PALMAS_INT3_EDGE_DETECT2_RESERVED 0x0E |
| 1960 | #define PALMAS_INT4_STATUS 0xF | 1960 | #define PALMAS_INT4_STATUS 0x0F |
| 1961 | #define PALMAS_INT4_MASK 0x10 | 1961 | #define PALMAS_INT4_MASK 0x10 |
| 1962 | #define PALMAS_INT4_LINE_STATE 0x11 | 1962 | #define PALMAS_INT4_LINE_STATE 0x11 |
| 1963 | #define PALMAS_INT4_EDGE_DETECT1 0x12 | 1963 | #define PALMAS_INT4_EDGE_DETECT1 0x12 |
| @@ -1966,276 +1966,276 @@ enum usb_irq_events { | |||
| 1966 | 1966 | ||
| 1967 | /* Bit definitions for INT1_STATUS */ | 1967 | /* Bit definitions for INT1_STATUS */ |
| 1968 | #define PALMAS_INT1_STATUS_VBAT_MON 0x80 | 1968 | #define PALMAS_INT1_STATUS_VBAT_MON 0x80 |
| 1969 | #define PALMAS_INT1_STATUS_VBAT_MON_SHIFT 7 | 1969 | #define PALMAS_INT1_STATUS_VBAT_MON_SHIFT 0x07 |
| 1970 | #define PALMAS_INT1_STATUS_VSYS_MON 0x40 | 1970 | #define PALMAS_INT1_STATUS_VSYS_MON 0x40 |
| 1971 | #define PALMAS_INT1_STATUS_VSYS_MON_SHIFT 6 | 1971 | #define PALMAS_INT1_STATUS_VSYS_MON_SHIFT 0x06 |
| 1972 | #define PALMAS_INT1_STATUS_HOTDIE 0x20 | 1972 | #define PALMAS_INT1_STATUS_HOTDIE 0x20 |
| 1973 | #define PALMAS_INT1_STATUS_HOTDIE_SHIFT 5 | 1973 | #define PALMAS_INT1_STATUS_HOTDIE_SHIFT 0x05 |
| 1974 | #define PALMAS_INT1_STATUS_PWRDOWN 0x10 | 1974 | #define PALMAS_INT1_STATUS_PWRDOWN 0x10 |
| 1975 | #define PALMAS_INT1_STATUS_PWRDOWN_SHIFT 4 | 1975 | #define PALMAS_INT1_STATUS_PWRDOWN_SHIFT 0x04 |
| 1976 | #define PALMAS_INT1_STATUS_RPWRON 0x08 | 1976 | #define PALMAS_INT1_STATUS_RPWRON 0x08 |
| 1977 | #define PALMAS_INT1_STATUS_RPWRON_SHIFT 3 | 1977 | #define PALMAS_INT1_STATUS_RPWRON_SHIFT 0x03 |
| 1978 | #define PALMAS_INT1_STATUS_LONG_PRESS_KEY 0x04 | 1978 | #define PALMAS_INT1_STATUS_LONG_PRESS_KEY 0x04 |
| 1979 | #define PALMAS_INT1_STATUS_LONG_PRESS_KEY_SHIFT 2 | 1979 | #define PALMAS_INT1_STATUS_LONG_PRESS_KEY_SHIFT 0x02 |
| 1980 | #define PALMAS_INT1_STATUS_PWRON 0x02 | 1980 | #define PALMAS_INT1_STATUS_PWRON 0x02 |
| 1981 | #define PALMAS_INT1_STATUS_PWRON_SHIFT 1 | 1981 | #define PALMAS_INT1_STATUS_PWRON_SHIFT 0x01 |
| 1982 | #define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV 0x01 | 1982 | #define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV 0x01 |
| 1983 | #define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV_SHIFT 0 | 1983 | #define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV_SHIFT 0x00 |
| 1984 | 1984 | ||
| 1985 | /* Bit definitions for INT1_MASK */ | 1985 | /* Bit definitions for INT1_MASK */ |
| 1986 | #define PALMAS_INT1_MASK_VBAT_MON 0x80 | 1986 | #define PALMAS_INT1_MASK_VBAT_MON 0x80 |
| 1987 | #define PALMAS_INT1_MASK_VBAT_MON_SHIFT 7 | 1987 | #define PALMAS_INT1_MASK_VBAT_MON_SHIFT 0x07 |
| 1988 | #define PALMAS_INT1_MASK_VSYS_MON 0x40 | 1988 | #define PALMAS_INT1_MASK_VSYS_MON 0x40 |
| 1989 | #define PALMAS_INT1_MASK_VSYS_MON_SHIFT 6 | 1989 | #define PALMAS_INT1_MASK_VSYS_MON_SHIFT 0x06 |
| 1990 | #define PALMAS_INT1_MASK_HOTDIE 0x20 | 1990 | #define PALMAS_INT1_MASK_HOTDIE 0x20 |
| 1991 | #define PALMAS_INT1_MASK_HOTDIE_SHIFT 5 | 1991 | #define PALMAS_INT1_MASK_HOTDIE_SHIFT 0x05 |
| 1992 | #define PALMAS_INT1_MASK_PWRDOWN 0x10 | 1992 | #define PALMAS_INT1_MASK_PWRDOWN 0x10 |
| 1993 | #define PALMAS_INT1_MASK_PWRDOWN_SHIFT 4 | 1993 | #define PALMAS_INT1_MASK_PWRDOWN_SHIFT 0x04 |
| 1994 | #define PALMAS_INT1_MASK_RPWRON 0x08 | 1994 | #define PALMAS_INT1_MASK_RPWRON 0x08 |
| 1995 | #define PALMAS_INT1_MASK_RPWRON_SHIFT 3 | 1995 | #define PALMAS_INT1_MASK_RPWRON_SHIFT 0x03 |
| 1996 | #define PALMAS_INT1_MASK_LONG_PRESS_KEY 0x04 | 1996 | #define PALMAS_INT1_MASK_LONG_PRESS_KEY 0x04 |
| 1997 | #define PALMAS_INT1_MASK_LONG_PRESS_KEY_SHIFT 2 | 1997 | #define PALMAS_INT1_MASK_LONG_PRESS_KEY_SHIFT 0x02 |
| 1998 | #define PALMAS_INT1_MASK_PWRON 0x02 | 1998 | #define PALMAS_INT1_MASK_PWRON 0x02 |
| 1999 | #define PALMAS_INT1_MASK_PWRON_SHIFT 1 | 1999 | #define PALMAS_INT1_MASK_PWRON_SHIFT 0x01 |
| 2000 | #define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV 0x01 | 2000 | #define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV 0x01 |
| 2001 | #define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV_SHIFT 0 | 2001 | #define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV_SHIFT 0x00 |
| 2002 | 2002 | ||
| 2003 | /* Bit definitions for INT1_LINE_STATE */ | 2003 | /* Bit definitions for INT1_LINE_STATE */ |
| 2004 | #define PALMAS_INT1_LINE_STATE_VBAT_MON 0x80 | 2004 | #define PALMAS_INT1_LINE_STATE_VBAT_MON 0x80 |
| 2005 | #define PALMAS_INT1_LINE_STATE_VBAT_MON_SHIFT 7 | 2005 | #define PALMAS_INT1_LINE_STATE_VBAT_MON_SHIFT 0x07 |
| 2006 | #define PALMAS_INT1_LINE_STATE_VSYS_MON 0x40 | 2006 | #define PALMAS_INT1_LINE_STATE_VSYS_MON 0x40 |
| 2007 | #define PALMAS_INT1_LINE_STATE_VSYS_MON_SHIFT 6 | 2007 | #define PALMAS_INT1_LINE_STATE_VSYS_MON_SHIFT 0x06 |
| 2008 | #define PALMAS_INT1_LINE_STATE_HOTDIE 0x20 | 2008 | #define PALMAS_INT1_LINE_STATE_HOTDIE 0x20 |
| 2009 | #define PALMAS_INT1_LINE_STATE_HOTDIE_SHIFT 5 | 2009 | #define PALMAS_INT1_LINE_STATE_HOTDIE_SHIFT 0x05 |
| 2010 | #define PALMAS_INT1_LINE_STATE_PWRDOWN 0x10 | 2010 | #define PALMAS_INT1_LINE_STATE_PWRDOWN 0x10 |
| 2011 | #define PALMAS_INT1_LINE_STATE_PWRDOWN_SHIFT 4 | 2011 | #define PALMAS_INT1_LINE_STATE_PWRDOWN_SHIFT 0x04 |
| 2012 | #define PALMAS_INT1_LINE_STATE_RPWRON 0x08 | 2012 | #define PALMAS_INT1_LINE_STATE_RPWRON 0x08 |
| 2013 | #define PALMAS_INT1_LINE_STATE_RPWRON_SHIFT 3 | 2013 | #define PALMAS_INT1_LINE_STATE_RPWRON_SHIFT 0x03 |
| 2014 | #define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY 0x04 | 2014 | #define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY 0x04 |
| 2015 | #define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY_SHIFT 2 | 2015 | #define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY_SHIFT 0x02 |
| 2016 | #define PALMAS_INT1_LINE_STATE_PWRON 0x02 | 2016 | #define PALMAS_INT1_LINE_STATE_PWRON 0x02 |
| 2017 | #define PALMAS_INT1_LINE_STATE_PWRON_SHIFT 1 | 2017 | #define PALMAS_INT1_LINE_STATE_PWRON_SHIFT 0x01 |
| 2018 | #define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV 0x01 | 2018 | #define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV 0x01 |
| 2019 | #define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV_SHIFT 0 | 2019 | #define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV_SHIFT 0x00 |
| 2020 | 2020 | ||
| 2021 | /* Bit definitions for INT2_STATUS */ | 2021 | /* Bit definitions for INT2_STATUS */ |
| 2022 | #define PALMAS_INT2_STATUS_VAC_ACOK 0x80 | 2022 | #define PALMAS_INT2_STATUS_VAC_ACOK 0x80 |
| 2023 | #define PALMAS_INT2_STATUS_VAC_ACOK_SHIFT 7 | 2023 | #define PALMAS_INT2_STATUS_VAC_ACOK_SHIFT 0x07 |
| 2024 | #define PALMAS_INT2_STATUS_SHORT 0x40 | 2024 | #define PALMAS_INT2_STATUS_SHORT 0x40 |
| 2025 | #define PALMAS_INT2_STATUS_SHORT_SHIFT 6 | 2025 | #define PALMAS_INT2_STATUS_SHORT_SHIFT 0x06 |
| 2026 | #define PALMAS_INT2_STATUS_FBI_BB 0x20 | 2026 | #define PALMAS_INT2_STATUS_FBI_BB 0x20 |
| 2027 | #define PALMAS_INT2_STATUS_FBI_BB_SHIFT 5 | 2027 | #define PALMAS_INT2_STATUS_FBI_BB_SHIFT 0x05 |
| 2028 | #define PALMAS_INT2_STATUS_RESET_IN 0x10 | 2028 | #define PALMAS_INT2_STATUS_RESET_IN 0x10 |
| 2029 | #define PALMAS_INT2_STATUS_RESET_IN_SHIFT 4 | 2029 | #define PALMAS_INT2_STATUS_RESET_IN_SHIFT 0x04 |
| 2030 | #define PALMAS_INT2_STATUS_BATREMOVAL 0x08 | 2030 | #define PALMAS_INT2_STATUS_BATREMOVAL 0x08 |
| 2031 | #define PALMAS_INT2_STATUS_BATREMOVAL_SHIFT 3 | 2031 | #define PALMAS_INT2_STATUS_BATREMOVAL_SHIFT 0x03 |
| 2032 | #define PALMAS_INT2_STATUS_WDT 0x04 | 2032 | #define PALMAS_INT2_STATUS_WDT 0x04 |
| 2033 | #define PALMAS_INT2_STATUS_WDT_SHIFT 2 | 2033 | #define PALMAS_INT2_STATUS_WDT_SHIFT 0x02 |
| 2034 | #define PALMAS_INT2_STATUS_RTC_TIMER 0x02 | 2034 | #define PALMAS_INT2_STATUS_RTC_TIMER 0x02 |
| 2035 | #define PALMAS_INT2_STATUS_RTC_TIMER_SHIFT 1 | 2035 | #define PALMAS_INT2_STATUS_RTC_TIMER_SHIFT 0x01 |
| 2036 | #define PALMAS_INT2_STATUS_RTC_ALARM 0x01 | 2036 | #define PALMAS_INT2_STATUS_RTC_ALARM 0x01 |
| 2037 | #define PALMAS_INT2_STATUS_RTC_ALARM_SHIFT 0 | 2037 | #define PALMAS_INT2_STATUS_RTC_ALARM_SHIFT 0x00 |
| 2038 | 2038 | ||
| 2039 | /* Bit definitions for INT2_MASK */ | 2039 | /* Bit definitions for INT2_MASK */ |
| 2040 | #define PALMAS_INT2_MASK_VAC_ACOK 0x80 | 2040 | #define PALMAS_INT2_MASK_VAC_ACOK 0x80 |
| 2041 | #define PALMAS_INT2_MASK_VAC_ACOK_SHIFT 7 | 2041 | #define PALMAS_INT2_MASK_VAC_ACOK_SHIFT 0x07 |
| 2042 | #define PALMAS_INT2_MASK_SHORT 0x40 | 2042 | #define PALMAS_INT2_MASK_SHORT 0x40 |
| 2043 | #define PALMAS_INT2_MASK_SHORT_SHIFT 6 | 2043 | #define PALMAS_INT2_MASK_SHORT_SHIFT 0x06 |
| 2044 | #define PALMAS_INT2_MASK_FBI_BB 0x20 | 2044 | #define PALMAS_INT2_MASK_FBI_BB 0x20 |
| 2045 | #define PALMAS_INT2_MASK_FBI_BB_SHIFT 5 | 2045 | #define PALMAS_INT2_MASK_FBI_BB_SHIFT 0x05 |
| 2046 | #define PALMAS_INT2_MASK_RESET_IN 0x10 | 2046 | #define PALMAS_INT2_MASK_RESET_IN 0x10 |
| 2047 | #define PALMAS_INT2_MASK_RESET_IN_SHIFT 4 | 2047 | #define PALMAS_INT2_MASK_RESET_IN_SHIFT 0x04 |
| 2048 | #define PALMAS_INT2_MASK_BATREMOVAL 0x08 | 2048 | #define PALMAS_INT2_MASK_BATREMOVAL 0x08 |
| 2049 | #define PALMAS_INT2_MASK_BATREMOVAL_SHIFT 3 | 2049 | #define PALMAS_INT2_MASK_BATREMOVAL_SHIFT 0x03 |
| 2050 | #define PALMAS_INT2_MASK_WDT 0x04 | 2050 | #define PALMAS_INT2_MASK_WDT 0x04 |
| 2051 | #define PALMAS_INT2_MASK_WDT_SHIFT 2 | 2051 | #define PALMAS_INT2_MASK_WDT_SHIFT 0x02 |
| 2052 | #define PALMAS_INT2_MASK_RTC_TIMER 0x02 | 2052 | #define PALMAS_INT2_MASK_RTC_TIMER 0x02 |
| 2053 | #define PALMAS_INT2_MASK_RTC_TIMER_SHIFT 1 | 2053 | #define PALMAS_INT2_MASK_RTC_TIMER_SHIFT 0x01 |
| 2054 | #define PALMAS_INT2_MASK_RTC_ALARM 0x01 | 2054 | #define PALMAS_INT2_MASK_RTC_ALARM 0x01 |
| 2055 | #define PALMAS_INT2_MASK_RTC_ALARM_SHIFT 0 | 2055 | #define PALMAS_INT2_MASK_RTC_ALARM_SHIFT 0x00 |
| 2056 | 2056 | ||
| 2057 | /* Bit definitions for INT2_LINE_STATE */ | 2057 | /* Bit definitions for INT2_LINE_STATE */ |
| 2058 | #define PALMAS_INT2_LINE_STATE_VAC_ACOK 0x80 | 2058 | #define PALMAS_INT2_LINE_STATE_VAC_ACOK 0x80 |
| 2059 | #define PALMAS_INT2_LINE_STATE_VAC_ACOK_SHIFT 7 | 2059 | #define PALMAS_INT2_LINE_STATE_VAC_ACOK_SHIFT 0x07 |
| 2060 | #define PALMAS_INT2_LINE_STATE_SHORT 0x40 | 2060 | #define PALMAS_INT2_LINE_STATE_SHORT 0x40 |
| 2061 | #define PALMAS_INT2_LINE_STATE_SHORT_SHIFT 6 | 2061 | #define PALMAS_INT2_LINE_STATE_SHORT_SHIFT 0x06 |
| 2062 | #define PALMAS_INT2_LINE_STATE_FBI_BB 0x20 | 2062 | #define PALMAS_INT2_LINE_STATE_FBI_BB 0x20 |
| 2063 | #define PALMAS_INT2_LINE_STATE_FBI_BB_SHIFT 5 | 2063 | #define PALMAS_INT2_LINE_STATE_FBI_BB_SHIFT 0x05 |
| 2064 | #define PALMAS_INT2_LINE_STATE_RESET_IN 0x10 | 2064 | #define PALMAS_INT2_LINE_STATE_RESET_IN 0x10 |
| 2065 | #define PALMAS_INT2_LINE_STATE_RESET_IN_SHIFT 4 | 2065 | #define PALMAS_INT2_LINE_STATE_RESET_IN_SHIFT 0x04 |
| 2066 | #define PALMAS_INT2_LINE_STATE_BATREMOVAL 0x08 | 2066 | #define PALMAS_INT2_LINE_STATE_BATREMOVAL 0x08 |
| 2067 | #define PALMAS_INT2_LINE_STATE_BATREMOVAL_SHIFT 3 | 2067 | #define PALMAS_INT2_LINE_STATE_BATREMOVAL_SHIFT 0x03 |
| 2068 | #define PALMAS_INT2_LINE_STATE_WDT 0x04 | 2068 | #define PALMAS_INT2_LINE_STATE_WDT 0x04 |
| 2069 | #define PALMAS_INT2_LINE_STATE_WDT_SHIFT 2 | 2069 | #define PALMAS_INT2_LINE_STATE_WDT_SHIFT 0x02 |
| 2070 | #define PALMAS_INT2_LINE_STATE_RTC_TIMER 0x02 | 2070 | #define PALMAS_INT2_LINE_STATE_RTC_TIMER 0x02 |
| 2071 | #define PALMAS_INT2_LINE_STATE_RTC_TIMER_SHIFT 1 | 2071 | #define PALMAS_INT2_LINE_STATE_RTC_TIMER_SHIFT 0x01 |
| 2072 | #define PALMAS_INT2_LINE_STATE_RTC_ALARM 0x01 | 2072 | #define PALMAS_INT2_LINE_STATE_RTC_ALARM 0x01 |
| 2073 | #define PALMAS_INT2_LINE_STATE_RTC_ALARM_SHIFT 0 | 2073 | #define PALMAS_INT2_LINE_STATE_RTC_ALARM_SHIFT 0x00 |
| 2074 | 2074 | ||
| 2075 | /* Bit definitions for INT3_STATUS */ | 2075 | /* Bit definitions for INT3_STATUS */ |
| 2076 | #define PALMAS_INT3_STATUS_VBUS 0x80 | 2076 | #define PALMAS_INT3_STATUS_VBUS 0x80 |
| 2077 | #define PALMAS_INT3_STATUS_VBUS_SHIFT 7 | 2077 | #define PALMAS_INT3_STATUS_VBUS_SHIFT 0x07 |
| 2078 | #define PALMAS_INT3_STATUS_VBUS_OTG 0x40 | 2078 | #define PALMAS_INT3_STATUS_VBUS_OTG 0x40 |
| 2079 | #define PALMAS_INT3_STATUS_VBUS_OTG_SHIFT 6 | 2079 | #define PALMAS_INT3_STATUS_VBUS_OTG_SHIFT 0x06 |
| 2080 | #define PALMAS_INT3_STATUS_ID 0x20 | 2080 | #define PALMAS_INT3_STATUS_ID 0x20 |
| 2081 | #define PALMAS_INT3_STATUS_ID_SHIFT 5 | 2081 | #define PALMAS_INT3_STATUS_ID_SHIFT 0x05 |
| 2082 | #define PALMAS_INT3_STATUS_ID_OTG 0x10 | 2082 | #define PALMAS_INT3_STATUS_ID_OTG 0x10 |
| 2083 | #define PALMAS_INT3_STATUS_ID_OTG_SHIFT 4 | 2083 | #define PALMAS_INT3_STATUS_ID_OTG_SHIFT 0x04 |
| 2084 | #define PALMAS_INT3_STATUS_GPADC_EOC_RT 0x08 | 2084 | #define PALMAS_INT3_STATUS_GPADC_EOC_RT 0x08 |
| 2085 | #define PALMAS_INT3_STATUS_GPADC_EOC_RT_SHIFT 3 | 2085 | #define PALMAS_INT3_STATUS_GPADC_EOC_RT_SHIFT 0x03 |
| 2086 | #define PALMAS_INT3_STATUS_GPADC_EOC_SW 0x04 | 2086 | #define PALMAS_INT3_STATUS_GPADC_EOC_SW 0x04 |
| 2087 | #define PALMAS_INT3_STATUS_GPADC_EOC_SW_SHIFT 2 | 2087 | #define PALMAS_INT3_STATUS_GPADC_EOC_SW_SHIFT 0x02 |
| 2088 | #define PALMAS_INT3_STATUS_GPADC_AUTO_1 0x02 | 2088 | #define PALMAS_INT3_STATUS_GPADC_AUTO_1 0x02 |
| 2089 | #define PALMAS_INT3_STATUS_GPADC_AUTO_1_SHIFT 1 | 2089 | #define PALMAS_INT3_STATUS_GPADC_AUTO_1_SHIFT 0x01 |
| 2090 | #define PALMAS_INT3_STATUS_GPADC_AUTO_0 0x01 | 2090 | #define PALMAS_INT3_STATUS_GPADC_AUTO_0 0x01 |
| 2091 | #define PALMAS_INT3_STATUS_GPADC_AUTO_0_SHIFT 0 | 2091 | #define PALMAS_INT3_STATUS_GPADC_AUTO_0_SHIFT 0x00 |
| 2092 | 2092 | ||
| 2093 | /* Bit definitions for INT3_MASK */ | 2093 | /* Bit definitions for INT3_MASK */ |
| 2094 | #define PALMAS_INT3_MASK_VBUS 0x80 | 2094 | #define PALMAS_INT3_MASK_VBUS 0x80 |
| 2095 | #define PALMAS_INT3_MASK_VBUS_SHIFT 7 | 2095 | #define PALMAS_INT3_MASK_VBUS_SHIFT 0x07 |
| 2096 | #define PALMAS_INT3_MASK_VBUS_OTG 0x40 | 2096 | #define PALMAS_INT3_MASK_VBUS_OTG 0x40 |
| 2097 | #define PALMAS_INT3_MASK_VBUS_OTG_SHIFT 6 | 2097 | #define PALMAS_INT3_MASK_VBUS_OTG_SHIFT 0x06 |
| 2098 | #define PALMAS_INT3_MASK_ID 0x20 | 2098 | #define PALMAS_INT3_MASK_ID 0x20 |
| 2099 | #define PALMAS_INT3_MASK_ID_SHIFT 5 | 2099 | #define PALMAS_INT3_MASK_ID_SHIFT 0x05 |
| 2100 | #define PALMAS_INT3_MASK_ID_OTG 0x10 | 2100 | #define PALMAS_INT3_MASK_ID_OTG 0x10 |
| 2101 | #define PALMAS_INT3_MASK_ID_OTG_SHIFT 4 | 2101 | #define PALMAS_INT3_MASK_ID_OTG_SHIFT 0x04 |
| 2102 | #define PALMAS_INT3_MASK_GPADC_EOC_RT 0x08 | 2102 | #define PALMAS_INT3_MASK_GPADC_EOC_RT 0x08 |
| 2103 | #define PALMAS_INT3_MASK_GPADC_EOC_RT_SHIFT 3 | 2103 | #define PALMAS_INT3_MASK_GPADC_EOC_RT_SHIFT 0x03 |
| 2104 | #define PALMAS_INT3_MASK_GPADC_EOC_SW 0x04 | 2104 | #define PALMAS_INT3_MASK_GPADC_EOC_SW 0x04 |
| 2105 | #define PALMAS_INT3_MASK_GPADC_EOC_SW_SHIFT 2 | 2105 | #define PALMAS_INT3_MASK_GPADC_EOC_SW_SHIFT 0x02 |
| 2106 | #define PALMAS_INT3_MASK_GPADC_AUTO_1 0x02 | 2106 | #define PALMAS_INT3_MASK_GPADC_AUTO_1 0x02 |
| 2107 | #define PALMAS_INT3_MASK_GPADC_AUTO_1_SHIFT 1 | 2107 | #define PALMAS_INT3_MASK_GPADC_AUTO_1_SHIFT 0x01 |
| 2108 | #define PALMAS_INT3_MASK_GPADC_AUTO_0 0x01 | 2108 | #define PALMAS_INT3_MASK_GPADC_AUTO_0 0x01 |
| 2109 | #define PALMAS_INT3_MASK_GPADC_AUTO_0_SHIFT 0 | 2109 | #define PALMAS_INT3_MASK_GPADC_AUTO_0_SHIFT 0x00 |
| 2110 | 2110 | ||
| 2111 | /* Bit definitions for INT3_LINE_STATE */ | 2111 | /* Bit definitions for INT3_LINE_STATE */ |
| 2112 | #define PALMAS_INT3_LINE_STATE_VBUS 0x80 | 2112 | #define PALMAS_INT3_LINE_STATE_VBUS 0x80 |
| 2113 | #define PALMAS_INT3_LINE_STATE_VBUS_SHIFT 7 | 2113 | #define PALMAS_INT3_LINE_STATE_VBUS_SHIFT 0x07 |
| 2114 | #define PALMAS_INT3_LINE_STATE_VBUS_OTG 0x40 | 2114 | #define PALMAS_INT3_LINE_STATE_VBUS_OTG 0x40 |
| 2115 | #define PALMAS_INT3_LINE_STATE_VBUS_OTG_SHIFT 6 | 2115 | #define PALMAS_INT3_LINE_STATE_VBUS_OTG_SHIFT 0x06 |
| 2116 | #define PALMAS_INT3_LINE_STATE_ID 0x20 | 2116 | #define PALMAS_INT3_LINE_STATE_ID 0x20 |
| 2117 | #define PALMAS_INT3_LINE_STATE_ID_SHIFT 5 | 2117 | #define PALMAS_INT3_LINE_STATE_ID_SHIFT 0x05 |
| 2118 | #define PALMAS_INT3_LINE_STATE_ID_OTG 0x10 | 2118 | #define PALMAS_INT3_LINE_STATE_ID_OTG 0x10 |
| 2119 | #define PALMAS_INT3_LINE_STATE_ID_OTG_SHIFT 4 | 2119 | #define PALMAS_INT3_LINE_STATE_ID_OTG_SHIFT 0x04 |
| 2120 | #define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT 0x08 | 2120 | #define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT 0x08 |
| 2121 | #define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT_SHIFT 3 | 2121 | #define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT_SHIFT 0x03 |
| 2122 | #define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW 0x04 | 2122 | #define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW 0x04 |
| 2123 | #define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW_SHIFT 2 | 2123 | #define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW_SHIFT 0x02 |
| 2124 | #define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1 0x02 | 2124 | #define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1 0x02 |
| 2125 | #define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1_SHIFT 1 | 2125 | #define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1_SHIFT 0x01 |
| 2126 | #define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0 0x01 | 2126 | #define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0 0x01 |
| 2127 | #define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0_SHIFT 0 | 2127 | #define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0_SHIFT 0x00 |
| 2128 | 2128 | ||
| 2129 | /* Bit definitions for INT4_STATUS */ | 2129 | /* Bit definitions for INT4_STATUS */ |
| 2130 | #define PALMAS_INT4_STATUS_GPIO_7 0x80 | 2130 | #define PALMAS_INT4_STATUS_GPIO_7 0x80 |
| 2131 | #define PALMAS_INT4_STATUS_GPIO_7_SHIFT 7 | 2131 | #define PALMAS_INT4_STATUS_GPIO_7_SHIFT 0x07 |
| 2132 | #define PALMAS_INT4_STATUS_GPIO_6 0x40 | 2132 | #define PALMAS_INT4_STATUS_GPIO_6 0x40 |
| 2133 | #define PALMAS_INT4_STATUS_GPIO_6_SHIFT 6 | 2133 | #define PALMAS_INT4_STATUS_GPIO_6_SHIFT 0x06 |
| 2134 | #define PALMAS_INT4_STATUS_GPIO_5 0x20 | 2134 | #define PALMAS_INT4_STATUS_GPIO_5 0x20 |
| 2135 | #define PALMAS_INT4_STATUS_GPIO_5_SHIFT 5 | 2135 | #define PALMAS_INT4_STATUS_GPIO_5_SHIFT 0x05 |
| 2136 | #define PALMAS_INT4_STATUS_GPIO_4 0x10 | 2136 | #define PALMAS_INT4_STATUS_GPIO_4 0x10 |
| 2137 | #define PALMAS_INT4_STATUS_GPIO_4_SHIFT 4 | 2137 | #define PALMAS_INT4_STATUS_GPIO_4_SHIFT 0x04 |
| 2138 | #define PALMAS_INT4_STATUS_GPIO_3 0x08 | 2138 | #define PALMAS_INT4_STATUS_GPIO_3 0x08 |
| 2139 | #define PALMAS_INT4_STATUS_GPIO_3_SHIFT 3 | 2139 | #define PALMAS_INT4_STATUS_GPIO_3_SHIFT 0x03 |
| 2140 | #define PALMAS_INT4_STATUS_GPIO_2 0x04 | 2140 | #define PALMAS_INT4_STATUS_GPIO_2 0x04 |
| 2141 | #define PALMAS_INT4_STATUS_GPIO_2_SHIFT 2 | 2141 | #define PALMAS_INT4_STATUS_GPIO_2_SHIFT 0x02 |
| 2142 | #define PALMAS_INT4_STATUS_GPIO_1 0x02 | 2142 | #define PALMAS_INT4_STATUS_GPIO_1 0x02 |
| 2143 | #define PALMAS_INT4_STATUS_GPIO_1_SHIFT 1 | 2143 | #define PALMAS_INT4_STATUS_GPIO_1_SHIFT 0x01 |
| 2144 | #define PALMAS_INT4_STATUS_GPIO_0 0x01 | 2144 | #define PALMAS_INT4_STATUS_GPIO_0 0x01 |
| 2145 | #define PALMAS_INT4_STATUS_GPIO_0_SHIFT 0 | 2145 | #define PALMAS_INT4_STATUS_GPIO_0_SHIFT 0x00 |
| 2146 | 2146 | ||
| 2147 | /* Bit definitions for INT4_MASK */ | 2147 | /* Bit definitions for INT4_MASK */ |
| 2148 | #define PALMAS_INT4_MASK_GPIO_7 0x80 | 2148 | #define PALMAS_INT4_MASK_GPIO_7 0x80 |
| 2149 | #define PALMAS_INT4_MASK_GPIO_7_SHIFT 7 | 2149 | #define PALMAS_INT4_MASK_GPIO_7_SHIFT 0x07 |
| 2150 | #define PALMAS_INT4_MASK_GPIO_6 0x40 | 2150 | #define PALMAS_INT4_MASK_GPIO_6 0x40 |
| 2151 | #define PALMAS_INT4_MASK_GPIO_6_SHIFT 6 | 2151 | #define PALMAS_INT4_MASK_GPIO_6_SHIFT 0x06 |
| 2152 | #define PALMAS_INT4_MASK_GPIO_5 0x20 | 2152 | #define PALMAS_INT4_MASK_GPIO_5 0x20 |
| 2153 | #define PALMAS_INT4_MASK_GPIO_5_SHIFT 5 | 2153 | #define PALMAS_INT4_MASK_GPIO_5_SHIFT 0x05 |
| 2154 | #define PALMAS_INT4_MASK_GPIO_4 0x10 | 2154 | #define PALMAS_INT4_MASK_GPIO_4 0x10 |
| 2155 | #define PALMAS_INT4_MASK_GPIO_4_SHIFT 4 | 2155 | #define PALMAS_INT4_MASK_GPIO_4_SHIFT 0x04 |
| 2156 | #define PALMAS_INT4_MASK_GPIO_3 0x08 | 2156 | #define PALMAS_INT4_MASK_GPIO_3 0x08 |
| 2157 | #define PALMAS_INT4_MASK_GPIO_3_SHIFT 3 | 2157 | #define PALMAS_INT4_MASK_GPIO_3_SHIFT 0x03 |
| 2158 | #define PALMAS_INT4_MASK_GPIO_2 0x04 | 2158 | #define PALMAS_INT4_MASK_GPIO_2 0x04 |
| 2159 | #define PALMAS_INT4_MASK_GPIO_2_SHIFT 2 | 2159 | #define PALMAS_INT4_MASK_GPIO_2_SHIFT 0x02 |
| 2160 | #define PALMAS_INT4_MASK_GPIO_1 0x02 | 2160 | #define PALMAS_INT4_MASK_GPIO_1 0x02 |
| 2161 | #define PALMAS_INT4_MASK_GPIO_1_SHIFT 1 | 2161 | #define PALMAS_INT4_MASK_GPIO_1_SHIFT 0x01 |
| 2162 | #define PALMAS_INT4_MASK_GPIO_0 0x01 | 2162 | #define PALMAS_INT4_MASK_GPIO_0 0x01 |
| 2163 | #define PALMAS_INT4_MASK_GPIO_0_SHIFT 0 | 2163 | #define PALMAS_INT4_MASK_GPIO_0_SHIFT 0x00 |
| 2164 | 2164 | ||
| 2165 | /* Bit definitions for INT4_LINE_STATE */ | 2165 | /* Bit definitions for INT4_LINE_STATE */ |
| 2166 | #define PALMAS_INT4_LINE_STATE_GPIO_7 0x80 | 2166 | #define PALMAS_INT4_LINE_STATE_GPIO_7 0x80 |
| 2167 | #define PALMAS_INT4_LINE_STATE_GPIO_7_SHIFT 7 | 2167 | #define PALMAS_INT4_LINE_STATE_GPIO_7_SHIFT 0x07 |
| 2168 | #define PALMAS_INT4_LINE_STATE_GPIO_6 0x40 | 2168 | #define PALMAS_INT4_LINE_STATE_GPIO_6 0x40 |
| 2169 | #define PALMAS_INT4_LINE_STATE_GPIO_6_SHIFT 6 | 2169 | #define PALMAS_INT4_LINE_STATE_GPIO_6_SHIFT 0x06 |
| 2170 | #define PALMAS_INT4_LINE_STATE_GPIO_5 0x20 | 2170 | #define PALMAS_INT4_LINE_STATE_GPIO_5 0x20 |
| 2171 | #define PALMAS_INT4_LINE_STATE_GPIO_5_SHIFT 5 | 2171 | #define PALMAS_INT4_LINE_STATE_GPIO_5_SHIFT 0x05 |
| 2172 | #define PALMAS_INT4_LINE_STATE_GPIO_4 0x10 | 2172 | #define PALMAS_INT4_LINE_STATE_GPIO_4 0x10 |
| 2173 | #define PALMAS_INT4_LINE_STATE_GPIO_4_SHIFT 4 | 2173 | #define PALMAS_INT4_LINE_STATE_GPIO_4_SHIFT 0x04 |
| 2174 | #define PALMAS_INT4_LINE_STATE_GPIO_3 0x08 | 2174 | #define PALMAS_INT4_LINE_STATE_GPIO_3 0x08 |
| 2175 | #define PALMAS_INT4_LINE_STATE_GPIO_3_SHIFT 3 | 2175 | #define PALMAS_INT4_LINE_STATE_GPIO_3_SHIFT 0x03 |
| 2176 | #define PALMAS_INT4_LINE_STATE_GPIO_2 0x04 | 2176 | #define PALMAS_INT4_LINE_STATE_GPIO_2 0x04 |
| 2177 | #define PALMAS_INT4_LINE_STATE_GPIO_2_SHIFT 2 | 2177 | #define PALMAS_INT4_LINE_STATE_GPIO_2_SHIFT 0x02 |
| 2178 | #define PALMAS_INT4_LINE_STATE_GPIO_1 0x02 | 2178 | #define PALMAS_INT4_LINE_STATE_GPIO_1 0x02 |
| 2179 | #define PALMAS_INT4_LINE_STATE_GPIO_1_SHIFT 1 | 2179 | #define PALMAS_INT4_LINE_STATE_GPIO_1_SHIFT 0x01 |
| 2180 | #define PALMAS_INT4_LINE_STATE_GPIO_0 0x01 | 2180 | #define PALMAS_INT4_LINE_STATE_GPIO_0 0x01 |
| 2181 | #define PALMAS_INT4_LINE_STATE_GPIO_0_SHIFT 0 | 2181 | #define PALMAS_INT4_LINE_STATE_GPIO_0_SHIFT 0x00 |
| 2182 | 2182 | ||
| 2183 | /* Bit definitions for INT4_EDGE_DETECT1 */ | 2183 | /* Bit definitions for INT4_EDGE_DETECT1 */ |
| 2184 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING 0x80 | 2184 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING 0x80 |
| 2185 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING_SHIFT 7 | 2185 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING_SHIFT 0x07 |
| 2186 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING 0x40 | 2186 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING 0x40 |
| 2187 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING_SHIFT 6 | 2187 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING_SHIFT 0x06 |
| 2188 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING 0x20 | 2188 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING 0x20 |
| 2189 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING_SHIFT 5 | 2189 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING_SHIFT 0x05 |
| 2190 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING 0x10 | 2190 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING 0x10 |
| 2191 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING_SHIFT 4 | 2191 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING_SHIFT 0x04 |
| 2192 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING 0x08 | 2192 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING 0x08 |
| 2193 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING_SHIFT 3 | 2193 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING_SHIFT 0x03 |
| 2194 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING 0x04 | 2194 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING 0x04 |
| 2195 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING_SHIFT 2 | 2195 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING_SHIFT 0x02 |
| 2196 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING 0x02 | 2196 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING 0x02 |
| 2197 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING_SHIFT 1 | 2197 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING_SHIFT 0x01 |
| 2198 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING 0x01 | 2198 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING 0x01 |
| 2199 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING_SHIFT 0 | 2199 | #define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING_SHIFT 0x00 |
| 2200 | 2200 | ||
| 2201 | /* Bit definitions for INT4_EDGE_DETECT2 */ | 2201 | /* Bit definitions for INT4_EDGE_DETECT2 */ |
| 2202 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING 0x80 | 2202 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING 0x80 |
| 2203 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING_SHIFT 7 | 2203 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING_SHIFT 0x07 |
| 2204 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING 0x40 | 2204 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING 0x40 |
| 2205 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING_SHIFT 6 | 2205 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING_SHIFT 0x06 |
| 2206 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING 0x20 | 2206 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING 0x20 |
| 2207 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING_SHIFT 5 | 2207 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING_SHIFT 0x05 |
| 2208 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING 0x10 | 2208 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING 0x10 |
| 2209 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING_SHIFT 4 | 2209 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING_SHIFT 0x04 |
| 2210 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING 0x08 | 2210 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING 0x08 |
| 2211 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING_SHIFT 3 | 2211 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING_SHIFT 0x03 |
| 2212 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING 0x04 | 2212 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING 0x04 |
| 2213 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING_SHIFT 2 | 2213 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING_SHIFT 0x02 |
| 2214 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING 0x02 | 2214 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING 0x02 |
| 2215 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING_SHIFT 1 | 2215 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING_SHIFT 0x01 |
| 2216 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING 0x01 | 2216 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING 0x01 |
| 2217 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING_SHIFT 0 | 2217 | #define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING_SHIFT 0x00 |
| 2218 | 2218 | ||
| 2219 | /* Bit definitions for INT_CTRL */ | 2219 | /* Bit definitions for INT_CTRL */ |
| 2220 | #define PALMAS_INT_CTRL_INT_PENDING 0x04 | 2220 | #define PALMAS_INT_CTRL_INT_PENDING 0x04 |
| 2221 | #define PALMAS_INT_CTRL_INT_PENDING_SHIFT 2 | 2221 | #define PALMAS_INT_CTRL_INT_PENDING_SHIFT 0x02 |
| 2222 | #define PALMAS_INT_CTRL_INT_CLEAR 0x01 | 2222 | #define PALMAS_INT_CTRL_INT_CLEAR 0x01 |
| 2223 | #define PALMAS_INT_CTRL_INT_CLEAR_SHIFT 0 | 2223 | #define PALMAS_INT_CTRL_INT_CLEAR_SHIFT 0x00 |
| 2224 | 2224 | ||
| 2225 | /* Registers for function USB_OTG */ | 2225 | /* Registers for function USB_OTG */ |
| 2226 | #define PALMAS_USB_WAKEUP 0x3 | 2226 | #define PALMAS_USB_WAKEUP 0x03 |
| 2227 | #define PALMAS_USB_VBUS_CTRL_SET 0x4 | 2227 | #define PALMAS_USB_VBUS_CTRL_SET 0x04 |
| 2228 | #define PALMAS_USB_VBUS_CTRL_CLR 0x5 | 2228 | #define PALMAS_USB_VBUS_CTRL_CLR 0x05 |
| 2229 | #define PALMAS_USB_ID_CTRL_SET 0x6 | 2229 | #define PALMAS_USB_ID_CTRL_SET 0x06 |
| 2230 | #define PALMAS_USB_ID_CTRL_CLEAR 0x7 | 2230 | #define PALMAS_USB_ID_CTRL_CLEAR 0x07 |
| 2231 | #define PALMAS_USB_VBUS_INT_SRC 0x8 | 2231 | #define PALMAS_USB_VBUS_INT_SRC 0x08 |
| 2232 | #define PALMAS_USB_VBUS_INT_LATCH_SET 0x9 | 2232 | #define PALMAS_USB_VBUS_INT_LATCH_SET 0x09 |
| 2233 | #define PALMAS_USB_VBUS_INT_LATCH_CLR 0xA | 2233 | #define PALMAS_USB_VBUS_INT_LATCH_CLR 0x0A |
| 2234 | #define PALMAS_USB_VBUS_INT_EN_LO_SET 0xB | 2234 | #define PALMAS_USB_VBUS_INT_EN_LO_SET 0x0B |
| 2235 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR 0xC | 2235 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR 0x0C |
| 2236 | #define PALMAS_USB_VBUS_INT_EN_HI_SET 0xD | 2236 | #define PALMAS_USB_VBUS_INT_EN_HI_SET 0x0D |
| 2237 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR 0xE | 2237 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR 0x0E |
| 2238 | #define PALMAS_USB_ID_INT_SRC 0xF | 2238 | #define PALMAS_USB_ID_INT_SRC 0x0F |
| 2239 | #define PALMAS_USB_ID_INT_LATCH_SET 0x10 | 2239 | #define PALMAS_USB_ID_INT_LATCH_SET 0x10 |
| 2240 | #define PALMAS_USB_ID_INT_LATCH_CLR 0x11 | 2240 | #define PALMAS_USB_ID_INT_LATCH_CLR 0x11 |
| 2241 | #define PALMAS_USB_ID_INT_EN_LO_SET 0x12 | 2241 | #define PALMAS_USB_ID_INT_EN_LO_SET 0x12 |
| @@ -2250,306 +2250,306 @@ enum usb_irq_events { | |||
| 2250 | 2250 | ||
| 2251 | /* Bit definitions for USB_WAKEUP */ | 2251 | /* Bit definitions for USB_WAKEUP */ |
| 2252 | #define PALMAS_USB_WAKEUP_ID_WK_UP_COMP 0x01 | 2252 | #define PALMAS_USB_WAKEUP_ID_WK_UP_COMP 0x01 |
| 2253 | #define PALMAS_USB_WAKEUP_ID_WK_UP_COMP_SHIFT 0 | 2253 | #define PALMAS_USB_WAKEUP_ID_WK_UP_COMP_SHIFT 0x00 |
| 2254 | 2254 | ||
| 2255 | /* Bit definitions for USB_VBUS_CTRL_SET */ | 2255 | /* Bit definitions for USB_VBUS_CTRL_SET */ |
| 2256 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS 0x80 | 2256 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS 0x80 |
| 2257 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS_SHIFT 7 | 2257 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS_SHIFT 0x07 |
| 2258 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG 0x20 | 2258 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG 0x20 |
| 2259 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG_SHIFT 5 | 2259 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG_SHIFT 0x05 |
| 2260 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC 0x10 | 2260 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC 0x10 |
| 2261 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC_SHIFT 4 | 2261 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC_SHIFT 0x04 |
| 2262 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK 0x08 | 2262 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK 0x08 |
| 2263 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK_SHIFT 3 | 2263 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK_SHIFT 0x03 |
| 2264 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP 0x04 | 2264 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP 0x04 |
| 2265 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP_SHIFT 2 | 2265 | #define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP_SHIFT 0x02 |
| 2266 | 2266 | ||
| 2267 | /* Bit definitions for USB_VBUS_CTRL_CLR */ | 2267 | /* Bit definitions for USB_VBUS_CTRL_CLR */ |
| 2268 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS 0x80 | 2268 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS 0x80 |
| 2269 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS_SHIFT 7 | 2269 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS_SHIFT 0x07 |
| 2270 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG 0x20 | 2270 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG 0x20 |
| 2271 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG_SHIFT 5 | 2271 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG_SHIFT 0x05 |
| 2272 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC 0x10 | 2272 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC 0x10 |
| 2273 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC_SHIFT 4 | 2273 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC_SHIFT 0x04 |
| 2274 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK 0x08 | 2274 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK 0x08 |
| 2275 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK_SHIFT 3 | 2275 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK_SHIFT 0x03 |
| 2276 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP 0x04 | 2276 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP 0x04 |
| 2277 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP_SHIFT 2 | 2277 | #define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP_SHIFT 0x02 |
| 2278 | 2278 | ||
| 2279 | /* Bit definitions for USB_ID_CTRL_SET */ | 2279 | /* Bit definitions for USB_ID_CTRL_SET */ |
| 2280 | #define PALMAS_USB_ID_CTRL_SET_ID_PU_220K 0x80 | 2280 | #define PALMAS_USB_ID_CTRL_SET_ID_PU_220K 0x80 |
| 2281 | #define PALMAS_USB_ID_CTRL_SET_ID_PU_220K_SHIFT 7 | 2281 | #define PALMAS_USB_ID_CTRL_SET_ID_PU_220K_SHIFT 0x07 |
| 2282 | #define PALMAS_USB_ID_CTRL_SET_ID_PU_100K 0x40 | 2282 | #define PALMAS_USB_ID_CTRL_SET_ID_PU_100K 0x40 |
| 2283 | #define PALMAS_USB_ID_CTRL_SET_ID_PU_100K_SHIFT 6 | 2283 | #define PALMAS_USB_ID_CTRL_SET_ID_PU_100K_SHIFT 0x06 |
| 2284 | #define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV 0x20 | 2284 | #define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV 0x20 |
| 2285 | #define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV_SHIFT 5 | 2285 | #define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV_SHIFT 0x05 |
| 2286 | #define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U 0x10 | 2286 | #define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U 0x10 |
| 2287 | #define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U_SHIFT 4 | 2287 | #define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U_SHIFT 0x04 |
| 2288 | #define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U 0x08 | 2288 | #define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U 0x08 |
| 2289 | #define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U_SHIFT 3 | 2289 | #define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U_SHIFT 0x03 |
| 2290 | #define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP 0x04 | 2290 | #define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP 0x04 |
| 2291 | #define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP_SHIFT 2 | 2291 | #define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP_SHIFT 0x02 |
| 2292 | 2292 | ||
| 2293 | /* Bit definitions for USB_ID_CTRL_CLEAR */ | 2293 | /* Bit definitions for USB_ID_CTRL_CLEAR */ |
| 2294 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K 0x80 | 2294 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K 0x80 |
| 2295 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K_SHIFT 7 | 2295 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K_SHIFT 0x07 |
| 2296 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K 0x40 | 2296 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K 0x40 |
| 2297 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K_SHIFT 6 | 2297 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K_SHIFT 0x06 |
| 2298 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV 0x20 | 2298 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV 0x20 |
| 2299 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV_SHIFT 5 | 2299 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV_SHIFT 0x05 |
| 2300 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U 0x10 | 2300 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U 0x10 |
| 2301 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U_SHIFT 4 | 2301 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U_SHIFT 0x04 |
| 2302 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U 0x08 | 2302 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U 0x08 |
| 2303 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U_SHIFT 3 | 2303 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U_SHIFT 0x03 |
| 2304 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP 0x04 | 2304 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP 0x04 |
| 2305 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP_SHIFT 2 | 2305 | #define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP_SHIFT 0x02 |
| 2306 | 2306 | ||
| 2307 | /* Bit definitions for USB_VBUS_INT_SRC */ | 2307 | /* Bit definitions for USB_VBUS_INT_SRC */ |
| 2308 | #define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD 0x80 | 2308 | #define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD 0x80 |
| 2309 | #define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD_SHIFT 7 | 2309 | #define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD_SHIFT 0x07 |
| 2310 | #define PALMAS_USB_VBUS_INT_SRC_VADP_PRB 0x40 | 2310 | #define PALMAS_USB_VBUS_INT_SRC_VADP_PRB 0x40 |
| 2311 | #define PALMAS_USB_VBUS_INT_SRC_VADP_PRB_SHIFT 6 | 2311 | #define PALMAS_USB_VBUS_INT_SRC_VADP_PRB_SHIFT 0x06 |
| 2312 | #define PALMAS_USB_VBUS_INT_SRC_VADP_SNS 0x20 | 2312 | #define PALMAS_USB_VBUS_INT_SRC_VADP_SNS 0x20 |
| 2313 | #define PALMAS_USB_VBUS_INT_SRC_VADP_SNS_SHIFT 5 | 2313 | #define PALMAS_USB_VBUS_INT_SRC_VADP_SNS_SHIFT 0x05 |
| 2314 | #define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD 0x08 | 2314 | #define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD 0x08 |
| 2315 | #define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD_SHIFT 3 | 2315 | #define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD_SHIFT 0x03 |
| 2316 | #define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD 0x04 | 2316 | #define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD 0x04 |
| 2317 | #define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD_SHIFT 2 | 2317 | #define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD_SHIFT 0x02 |
| 2318 | #define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD 0x02 | 2318 | #define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD 0x02 |
| 2319 | #define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD_SHIFT 1 | 2319 | #define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD_SHIFT 0x01 |
| 2320 | #define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END 0x01 | 2320 | #define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END 0x01 |
| 2321 | #define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END_SHIFT 0 | 2321 | #define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END_SHIFT 0x00 |
| 2322 | 2322 | ||
| 2323 | /* Bit definitions for USB_VBUS_INT_LATCH_SET */ | 2323 | /* Bit definitions for USB_VBUS_INT_LATCH_SET */ |
| 2324 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD 0x80 | 2324 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD 0x80 |
| 2325 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD_SHIFT 7 | 2325 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD_SHIFT 0x07 |
| 2326 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB 0x40 | 2326 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB 0x40 |
| 2327 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB_SHIFT 6 | 2327 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB_SHIFT 0x06 |
| 2328 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS 0x20 | 2328 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS 0x20 |
| 2329 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS_SHIFT 5 | 2329 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS_SHIFT 0x05 |
| 2330 | #define PALMAS_USB_VBUS_INT_LATCH_SET_ADP 0x10 | 2330 | #define PALMAS_USB_VBUS_INT_LATCH_SET_ADP 0x10 |
| 2331 | #define PALMAS_USB_VBUS_INT_LATCH_SET_ADP_SHIFT 4 | 2331 | #define PALMAS_USB_VBUS_INT_LATCH_SET_ADP_SHIFT 0x04 |
| 2332 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD 0x08 | 2332 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD 0x08 |
| 2333 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD_SHIFT 3 | 2333 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD_SHIFT 0x03 |
| 2334 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD 0x04 | 2334 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD 0x04 |
| 2335 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD_SHIFT 2 | 2335 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD_SHIFT 0x02 |
| 2336 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD 0x02 | 2336 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD 0x02 |
| 2337 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD_SHIFT 1 | 2337 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD_SHIFT 0x01 |
| 2338 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END 0x01 | 2338 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END 0x01 |
| 2339 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END_SHIFT 0 | 2339 | #define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END_SHIFT 0x00 |
| 2340 | 2340 | ||
| 2341 | /* Bit definitions for USB_VBUS_INT_LATCH_CLR */ | 2341 | /* Bit definitions for USB_VBUS_INT_LATCH_CLR */ |
| 2342 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD 0x80 | 2342 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD 0x80 |
| 2343 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD_SHIFT 7 | 2343 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD_SHIFT 0x07 |
| 2344 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB 0x40 | 2344 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB 0x40 |
| 2345 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB_SHIFT 6 | 2345 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB_SHIFT 0x06 |
| 2346 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS 0x20 | 2346 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS 0x20 |
| 2347 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS_SHIFT 5 | 2347 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS_SHIFT 0x05 |
| 2348 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP 0x10 | 2348 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP 0x10 |
| 2349 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP_SHIFT 4 | 2349 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP_SHIFT 0x04 |
| 2350 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD 0x08 | 2350 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD 0x08 |
| 2351 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD_SHIFT 3 | 2351 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD_SHIFT 0x03 |
| 2352 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD 0x04 | 2352 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD 0x04 |
| 2353 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD_SHIFT 2 | 2353 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD_SHIFT 0x02 |
| 2354 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD 0x02 | 2354 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD 0x02 |
| 2355 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD_SHIFT 1 | 2355 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD_SHIFT 0x01 |
| 2356 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END 0x01 | 2356 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END 0x01 |
| 2357 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END_SHIFT 0 | 2357 | #define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END_SHIFT 0x00 |
| 2358 | 2358 | ||
| 2359 | /* Bit definitions for USB_VBUS_INT_EN_LO_SET */ | 2359 | /* Bit definitions for USB_VBUS_INT_EN_LO_SET */ |
| 2360 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD 0x80 | 2360 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD 0x80 |
| 2361 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD_SHIFT 7 | 2361 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD_SHIFT 0x07 |
| 2362 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB 0x40 | 2362 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB 0x40 |
| 2363 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB_SHIFT 6 | 2363 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB_SHIFT 0x06 |
| 2364 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS 0x20 | 2364 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS 0x20 |
| 2365 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS_SHIFT 5 | 2365 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS_SHIFT 0x05 |
| 2366 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD 0x08 | 2366 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD 0x08 |
| 2367 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD_SHIFT 3 | 2367 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD_SHIFT 0x03 |
| 2368 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD 0x04 | 2368 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD 0x04 |
| 2369 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD_SHIFT 2 | 2369 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD_SHIFT 0x02 |
| 2370 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD 0x02 | 2370 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD 0x02 |
| 2371 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD_SHIFT 1 | 2371 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD_SHIFT 0x01 |
| 2372 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END 0x01 | 2372 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END 0x01 |
| 2373 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END_SHIFT 0 | 2373 | #define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END_SHIFT 0x00 |
| 2374 | 2374 | ||
| 2375 | /* Bit definitions for USB_VBUS_INT_EN_LO_CLR */ | 2375 | /* Bit definitions for USB_VBUS_INT_EN_LO_CLR */ |
| 2376 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD 0x80 | 2376 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD 0x80 |
| 2377 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD_SHIFT 7 | 2377 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD_SHIFT 0x07 |
| 2378 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB 0x40 | 2378 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB 0x40 |
| 2379 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB_SHIFT 6 | 2379 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB_SHIFT 0x06 |
| 2380 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS 0x20 | 2380 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS 0x20 |
| 2381 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS_SHIFT 5 | 2381 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS_SHIFT 0x05 |
| 2382 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD 0x08 | 2382 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD 0x08 |
| 2383 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD_SHIFT 3 | 2383 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD_SHIFT 0x03 |
| 2384 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD 0x04 | 2384 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD 0x04 |
| 2385 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD_SHIFT 2 | 2385 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD_SHIFT 0x02 |
| 2386 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD 0x02 | 2386 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD 0x02 |
| 2387 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD_SHIFT 1 | 2387 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD_SHIFT 0x01 |
| 2388 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END 0x01 | 2388 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END 0x01 |
| 2389 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END_SHIFT 0 | 2389 | #define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END_SHIFT 0x00 |
| 2390 | 2390 | ||
| 2391 | /* Bit definitions for USB_VBUS_INT_EN_HI_SET */ | 2391 | /* Bit definitions for USB_VBUS_INT_EN_HI_SET */ |
| 2392 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD 0x80 | 2392 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD 0x80 |
| 2393 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD_SHIFT 7 | 2393 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD_SHIFT 0x07 |
| 2394 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB 0x40 | 2394 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB 0x40 |
| 2395 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB_SHIFT 6 | 2395 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB_SHIFT 0x06 |
| 2396 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS 0x20 | 2396 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS 0x20 |
| 2397 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS_SHIFT 5 | 2397 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS_SHIFT 0x05 |
| 2398 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP 0x10 | 2398 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP 0x10 |
| 2399 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP_SHIFT 4 | 2399 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP_SHIFT 0x04 |
| 2400 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD 0x08 | 2400 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD 0x08 |
| 2401 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD_SHIFT 3 | 2401 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD_SHIFT 0x03 |
| 2402 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD 0x04 | 2402 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD 0x04 |
| 2403 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD_SHIFT 2 | 2403 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD_SHIFT 0x02 |
| 2404 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD 0x02 | 2404 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD 0x02 |
| 2405 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD_SHIFT 1 | 2405 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD_SHIFT 0x01 |
| 2406 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END 0x01 | 2406 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END 0x01 |
| 2407 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END_SHIFT 0 | 2407 | #define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END_SHIFT 0x00 |
| 2408 | 2408 | ||
| 2409 | /* Bit definitions for USB_VBUS_INT_EN_HI_CLR */ | 2409 | /* Bit definitions for USB_VBUS_INT_EN_HI_CLR */ |
| 2410 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD 0x80 | 2410 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD 0x80 |
| 2411 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD_SHIFT 7 | 2411 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD_SHIFT 0x07 |
| 2412 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB 0x40 | 2412 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB 0x40 |
| 2413 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB_SHIFT 6 | 2413 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB_SHIFT 0x06 |
| 2414 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS 0x20 | 2414 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS 0x20 |
| 2415 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS_SHIFT 5 | 2415 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS_SHIFT 0x05 |
| 2416 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP 0x10 | 2416 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP 0x10 |
| 2417 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP_SHIFT 4 | 2417 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP_SHIFT 0x04 |
| 2418 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD 0x08 | 2418 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD 0x08 |
| 2419 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD_SHIFT 3 | 2419 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD_SHIFT 0x03 |
| 2420 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD 0x04 | 2420 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD 0x04 |
| 2421 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD_SHIFT 2 | 2421 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD_SHIFT 0x02 |
| 2422 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD 0x02 | 2422 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD 0x02 |
| 2423 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD_SHIFT 1 | 2423 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD_SHIFT 0x01 |
| 2424 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END 0x01 | 2424 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END 0x01 |
| 2425 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END_SHIFT 0 | 2425 | #define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END_SHIFT 0x00 |
| 2426 | 2426 | ||
| 2427 | /* Bit definitions for USB_ID_INT_SRC */ | 2427 | /* Bit definitions for USB_ID_INT_SRC */ |
| 2428 | #define PALMAS_USB_ID_INT_SRC_ID_FLOAT 0x10 | 2428 | #define PALMAS_USB_ID_INT_SRC_ID_FLOAT 0x10 |
| 2429 | #define PALMAS_USB_ID_INT_SRC_ID_FLOAT_SHIFT 4 | 2429 | #define PALMAS_USB_ID_INT_SRC_ID_FLOAT_SHIFT 0x04 |
| 2430 | #define PALMAS_USB_ID_INT_SRC_ID_A 0x08 | 2430 | #define PALMAS_USB_ID_INT_SRC_ID_A 0x08 |
| 2431 | #define PALMAS_USB_ID_INT_SRC_ID_A_SHIFT 3 | 2431 | #define PALMAS_USB_ID_INT_SRC_ID_A_SHIFT 0x03 |
| 2432 | #define PALMAS_USB_ID_INT_SRC_ID_B 0x04 | 2432 | #define PALMAS_USB_ID_INT_SRC_ID_B 0x04 |
| 2433 | #define PALMAS_USB_ID_INT_SRC_ID_B_SHIFT 2 | 2433 | #define PALMAS_USB_ID_INT_SRC_ID_B_SHIFT 0x02 |
| 2434 | #define PALMAS_USB_ID_INT_SRC_ID_C 0x02 | 2434 | #define PALMAS_USB_ID_INT_SRC_ID_C 0x02 |
| 2435 | #define PALMAS_USB_ID_INT_SRC_ID_C_SHIFT 1 | 2435 | #define PALMAS_USB_ID_INT_SRC_ID_C_SHIFT 0x01 |
| 2436 | #define PALMAS_USB_ID_INT_SRC_ID_GND 0x01 | 2436 | #define PALMAS_USB_ID_INT_SRC_ID_GND 0x01 |
| 2437 | #define PALMAS_USB_ID_INT_SRC_ID_GND_SHIFT 0 | 2437 | #define PALMAS_USB_ID_INT_SRC_ID_GND_SHIFT 0x00 |
| 2438 | 2438 | ||
| 2439 | /* Bit definitions for USB_ID_INT_LATCH_SET */ | 2439 | /* Bit definitions for USB_ID_INT_LATCH_SET */ |
| 2440 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT 0x10 | 2440 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT 0x10 |
| 2441 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT_SHIFT 4 | 2441 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT_SHIFT 0x04 |
| 2442 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_A 0x08 | 2442 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_A 0x08 |
| 2443 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_A_SHIFT 3 | 2443 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_A_SHIFT 0x03 |
| 2444 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_B 0x04 | 2444 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_B 0x04 |
| 2445 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_B_SHIFT 2 | 2445 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_B_SHIFT 0x02 |
| 2446 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_C 0x02 | 2446 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_C 0x02 |
| 2447 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_C_SHIFT 1 | 2447 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_C_SHIFT 0x01 |
| 2448 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_GND 0x01 | 2448 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_GND 0x01 |
| 2449 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_GND_SHIFT 0 | 2449 | #define PALMAS_USB_ID_INT_LATCH_SET_ID_GND_SHIFT 0x00 |
| 2450 | 2450 | ||
| 2451 | /* Bit definitions for USB_ID_INT_LATCH_CLR */ | 2451 | /* Bit definitions for USB_ID_INT_LATCH_CLR */ |
| 2452 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT 0x10 | 2452 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT 0x10 |
| 2453 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT_SHIFT 4 | 2453 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT_SHIFT 0x04 |
| 2454 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_A 0x08 | 2454 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_A 0x08 |
| 2455 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_A_SHIFT 3 | 2455 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_A_SHIFT 0x03 |
| 2456 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_B 0x04 | 2456 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_B 0x04 |
| 2457 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_B_SHIFT 2 | 2457 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_B_SHIFT 0x02 |
| 2458 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_C 0x02 | 2458 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_C 0x02 |
| 2459 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_C_SHIFT 1 | 2459 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_C_SHIFT 0x01 |
| 2460 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND 0x01 | 2460 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND 0x01 |
| 2461 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND_SHIFT 0 | 2461 | #define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND_SHIFT 0x00 |
| 2462 | 2462 | ||
| 2463 | /* Bit definitions for USB_ID_INT_EN_LO_SET */ | 2463 | /* Bit definitions for USB_ID_INT_EN_LO_SET */ |
| 2464 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT 0x10 | 2464 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT 0x10 |
| 2465 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT_SHIFT 4 | 2465 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT_SHIFT 0x04 |
| 2466 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_A 0x08 | 2466 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_A 0x08 |
| 2467 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_A_SHIFT 3 | 2467 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_A_SHIFT 0x03 |
| 2468 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_B 0x04 | 2468 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_B 0x04 |
| 2469 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_B_SHIFT 2 | 2469 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_B_SHIFT 0x02 |
| 2470 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_C 0x02 | 2470 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_C 0x02 |
| 2471 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_C_SHIFT 1 | 2471 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_C_SHIFT 0x01 |
| 2472 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND 0x01 | 2472 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND 0x01 |
| 2473 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND_SHIFT 0 | 2473 | #define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND_SHIFT 0x00 |
| 2474 | 2474 | ||
| 2475 | /* Bit definitions for USB_ID_INT_EN_LO_CLR */ | 2475 | /* Bit definitions for USB_ID_INT_EN_LO_CLR */ |
| 2476 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT 0x10 | 2476 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT 0x10 |
| 2477 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT_SHIFT 4 | 2477 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT_SHIFT 0x04 |
| 2478 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A 0x08 | 2478 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A 0x08 |
| 2479 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A_SHIFT 3 | 2479 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A_SHIFT 0x03 |
| 2480 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B 0x04 | 2480 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B 0x04 |
| 2481 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B_SHIFT 2 | 2481 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B_SHIFT 0x02 |
| 2482 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C 0x02 | 2482 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C 0x02 |
| 2483 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C_SHIFT 1 | 2483 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C_SHIFT 0x01 |
| 2484 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND 0x01 | 2484 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND 0x01 |
| 2485 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND_SHIFT 0 | 2485 | #define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND_SHIFT 0x00 |
| 2486 | 2486 | ||
| 2487 | /* Bit definitions for USB_ID_INT_EN_HI_SET */ | 2487 | /* Bit definitions for USB_ID_INT_EN_HI_SET */ |
| 2488 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT 0x10 | 2488 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT 0x10 |
| 2489 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT_SHIFT 4 | 2489 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT_SHIFT 0x04 |
| 2490 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_A 0x08 | 2490 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_A 0x08 |
| 2491 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_A_SHIFT 3 | 2491 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_A_SHIFT 0x03 |
| 2492 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_B 0x04 | 2492 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_B 0x04 |
| 2493 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_B_SHIFT 2 | 2493 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_B_SHIFT 0x02 |
| 2494 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_C 0x02 | 2494 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_C 0x02 |
| 2495 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_C_SHIFT 1 | 2495 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_C_SHIFT 0x01 |
| 2496 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND 0x01 | 2496 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND 0x01 |
| 2497 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND_SHIFT 0 | 2497 | #define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND_SHIFT 0x00 |
| 2498 | 2498 | ||
| 2499 | /* Bit definitions for USB_ID_INT_EN_HI_CLR */ | 2499 | /* Bit definitions for USB_ID_INT_EN_HI_CLR */ |
| 2500 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT 0x10 | 2500 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT 0x10 |
| 2501 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT_SHIFT 4 | 2501 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT_SHIFT 0x04 |
| 2502 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A 0x08 | 2502 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A 0x08 |
| 2503 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A_SHIFT 3 | 2503 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A_SHIFT 0x03 |
| 2504 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B 0x04 | 2504 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B 0x04 |
| 2505 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B_SHIFT 2 | 2505 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B_SHIFT 0x02 |
| 2506 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C 0x02 | 2506 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C 0x02 |
| 2507 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C_SHIFT 1 | 2507 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C_SHIFT 0x01 |
| 2508 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND 0x01 | 2508 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND 0x01 |
| 2509 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND_SHIFT 0 | 2509 | #define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND_SHIFT 0x00 |
| 2510 | 2510 | ||
| 2511 | /* Bit definitions for USB_OTG_ADP_CTRL */ | 2511 | /* Bit definitions for USB_OTG_ADP_CTRL */ |
| 2512 | #define PALMAS_USB_OTG_ADP_CTRL_ADP_EN 0x04 | 2512 | #define PALMAS_USB_OTG_ADP_CTRL_ADP_EN 0x04 |
| 2513 | #define PALMAS_USB_OTG_ADP_CTRL_ADP_EN_SHIFT 2 | 2513 | #define PALMAS_USB_OTG_ADP_CTRL_ADP_EN_SHIFT 0x02 |
| 2514 | #define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_MASK 0x03 | 2514 | #define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_MASK 0x03 |
| 2515 | #define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_SHIFT 0 | 2515 | #define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_SHIFT 0x00 |
| 2516 | 2516 | ||
| 2517 | /* Bit definitions for USB_OTG_ADP_HIGH */ | 2517 | /* Bit definitions for USB_OTG_ADP_HIGH */ |
| 2518 | #define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_MASK 0xff | 2518 | #define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_MASK 0xFF |
| 2519 | #define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_SHIFT 0 | 2519 | #define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_SHIFT 0x00 |
| 2520 | 2520 | ||
| 2521 | /* Bit definitions for USB_OTG_ADP_LOW */ | 2521 | /* Bit definitions for USB_OTG_ADP_LOW */ |
| 2522 | #define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_MASK 0xff | 2522 | #define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_MASK 0xFF |
| 2523 | #define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_SHIFT 0 | 2523 | #define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_SHIFT 0x00 |
| 2524 | 2524 | ||
| 2525 | /* Bit definitions for USB_OTG_ADP_RISE */ | 2525 | /* Bit definitions for USB_OTG_ADP_RISE */ |
| 2526 | #define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_MASK 0xff | 2526 | #define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_MASK 0xFF |
| 2527 | #define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_SHIFT 0 | 2527 | #define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_SHIFT 0x00 |
| 2528 | 2528 | ||
| 2529 | /* Bit definitions for USB_OTG_REVISION */ | 2529 | /* Bit definitions for USB_OTG_REVISION */ |
| 2530 | #define PALMAS_USB_OTG_REVISION_OTG_REV 0x01 | 2530 | #define PALMAS_USB_OTG_REVISION_OTG_REV 0x01 |
| 2531 | #define PALMAS_USB_OTG_REVISION_OTG_REV_SHIFT 0 | 2531 | #define PALMAS_USB_OTG_REVISION_OTG_REV_SHIFT 0x00 |
| 2532 | 2532 | ||
| 2533 | /* Registers for function VIBRATOR */ | 2533 | /* Registers for function VIBRATOR */ |
| 2534 | #define PALMAS_VIBRA_CTRL 0x0 | 2534 | #define PALMAS_VIBRA_CTRL 0x00 |
| 2535 | 2535 | ||
| 2536 | /* Bit definitions for VIBRA_CTRL */ | 2536 | /* Bit definitions for VIBRA_CTRL */ |
| 2537 | #define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_MASK 0x06 | 2537 | #define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_MASK 0x06 |
| 2538 | #define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_SHIFT 1 | 2538 | #define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_SHIFT 0x01 |
| 2539 | #define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL 0x01 | 2539 | #define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL 0x01 |
| 2540 | #define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL_SHIFT 0 | 2540 | #define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL_SHIFT 0x00 |
| 2541 | 2541 | ||
| 2542 | /* Registers for function GPIO */ | 2542 | /* Registers for function GPIO */ |
| 2543 | #define PALMAS_GPIO_DATA_IN 0x0 | 2543 | #define PALMAS_GPIO_DATA_IN 0x00 |
| 2544 | #define PALMAS_GPIO_DATA_DIR 0x1 | 2544 | #define PALMAS_GPIO_DATA_DIR 0x01 |
| 2545 | #define PALMAS_GPIO_DATA_OUT 0x2 | 2545 | #define PALMAS_GPIO_DATA_OUT 0x02 |
| 2546 | #define PALMAS_GPIO_DEBOUNCE_EN 0x3 | 2546 | #define PALMAS_GPIO_DEBOUNCE_EN 0x03 |
| 2547 | #define PALMAS_GPIO_CLEAR_DATA_OUT 0x4 | 2547 | #define PALMAS_GPIO_CLEAR_DATA_OUT 0x04 |
| 2548 | #define PALMAS_GPIO_SET_DATA_OUT 0x5 | 2548 | #define PALMAS_GPIO_SET_DATA_OUT 0x05 |
| 2549 | #define PALMAS_PU_PD_GPIO_CTRL1 0x6 | 2549 | #define PALMAS_PU_PD_GPIO_CTRL1 0x06 |
| 2550 | #define PALMAS_PU_PD_GPIO_CTRL2 0x7 | 2550 | #define PALMAS_PU_PD_GPIO_CTRL2 0x07 |
| 2551 | #define PALMAS_OD_OUTPUT_GPIO_CTRL 0x8 | 2551 | #define PALMAS_OD_OUTPUT_GPIO_CTRL 0x08 |
| 2552 | #define PALMAS_GPIO_DATA_IN2 0x9 | 2552 | #define PALMAS_GPIO_DATA_IN2 0x09 |
| 2553 | #define PALMAS_GPIO_DATA_DIR2 0x0A | 2553 | #define PALMAS_GPIO_DATA_DIR2 0x0A |
| 2554 | #define PALMAS_GPIO_DATA_OUT2 0x0B | 2554 | #define PALMAS_GPIO_DATA_OUT2 0x0B |
| 2555 | #define PALMAS_GPIO_DEBOUNCE_EN2 0x0C | 2555 | #define PALMAS_GPIO_DEBOUNCE_EN2 0x0C |
| @@ -2561,167 +2561,167 @@ enum usb_irq_events { | |||
| 2561 | 2561 | ||
| 2562 | /* Bit definitions for GPIO_DATA_IN */ | 2562 | /* Bit definitions for GPIO_DATA_IN */ |
| 2563 | #define PALMAS_GPIO_DATA_IN_GPIO_7_IN 0x80 | 2563 | #define PALMAS_GPIO_DATA_IN_GPIO_7_IN 0x80 |
| 2564 | #define PALMAS_GPIO_DATA_IN_GPIO_7_IN_SHIFT 7 | 2564 | #define PALMAS_GPIO_DATA_IN_GPIO_7_IN_SHIFT 0x07 |
| 2565 | #define PALMAS_GPIO_DATA_IN_GPIO_6_IN 0x40 | 2565 | #define PALMAS_GPIO_DATA_IN_GPIO_6_IN 0x40 |
| 2566 | #define PALMAS_GPIO_DATA_IN_GPIO_6_IN_SHIFT 6 | 2566 | #define PALMAS_GPIO_DATA_IN_GPIO_6_IN_SHIFT 0x06 |
| 2567 | #define PALMAS_GPIO_DATA_IN_GPIO_5_IN 0x20 | 2567 | #define PALMAS_GPIO_DATA_IN_GPIO_5_IN 0x20 |
| 2568 | #define PALMAS_GPIO_DATA_IN_GPIO_5_IN_SHIFT 5 | 2568 | #define PALMAS_GPIO_DATA_IN_GPIO_5_IN_SHIFT 0x05 |
| 2569 | #define PALMAS_GPIO_DATA_IN_GPIO_4_IN 0x10 | 2569 | #define PALMAS_GPIO_DATA_IN_GPIO_4_IN 0x10 |
| 2570 | #define PALMAS_GPIO_DATA_IN_GPIO_4_IN_SHIFT 4 | 2570 | #define PALMAS_GPIO_DATA_IN_GPIO_4_IN_SHIFT 0x04 |
| 2571 | #define PALMAS_GPIO_DATA_IN_GPIO_3_IN 0x08 | 2571 | #define PALMAS_GPIO_DATA_IN_GPIO_3_IN 0x08 |
| 2572 | #define PALMAS_GPIO_DATA_IN_GPIO_3_IN_SHIFT 3 | 2572 | #define PALMAS_GPIO_DATA_IN_GPIO_3_IN_SHIFT 0x03 |
| 2573 | #define PALMAS_GPIO_DATA_IN_GPIO_2_IN 0x04 | 2573 | #define PALMAS_GPIO_DATA_IN_GPIO_2_IN 0x04 |
| 2574 | #define PALMAS_GPIO_DATA_IN_GPIO_2_IN_SHIFT 2 | 2574 | #define PALMAS_GPIO_DATA_IN_GPIO_2_IN_SHIFT 0x02 |
| 2575 | #define PALMAS_GPIO_DATA_IN_GPIO_1_IN 0x02 | 2575 | #define PALMAS_GPIO_DATA_IN_GPIO_1_IN 0x02 |
| 2576 | #define PALMAS_GPIO_DATA_IN_GPIO_1_IN_SHIFT 1 | 2576 | #define PALMAS_GPIO_DATA_IN_GPIO_1_IN_SHIFT 0x01 |
| 2577 | #define PALMAS_GPIO_DATA_IN_GPIO_0_IN 0x01 | 2577 | #define PALMAS_GPIO_DATA_IN_GPIO_0_IN 0x01 |
| 2578 | #define PALMAS_GPIO_DATA_IN_GPIO_0_IN_SHIFT 0 | 2578 | #define PALMAS_GPIO_DATA_IN_GPIO_0_IN_SHIFT 0x00 |
| 2579 | 2579 | ||
| 2580 | /* Bit definitions for GPIO_DATA_DIR */ | 2580 | /* Bit definitions for GPIO_DATA_DIR */ |
| 2581 | #define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR 0x80 | 2581 | #define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR 0x80 |
| 2582 | #define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR_SHIFT 7 | 2582 | #define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR_SHIFT 0x07 |
| 2583 | #define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR 0x40 | 2583 | #define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR 0x40 |
| 2584 | #define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR_SHIFT 6 | 2584 | #define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR_SHIFT 0x06 |
| 2585 | #define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR 0x20 | 2585 | #define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR 0x20 |
| 2586 | #define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR_SHIFT 5 | 2586 | #define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR_SHIFT 0x05 |
| 2587 | #define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR 0x10 | 2587 | #define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR 0x10 |
| 2588 | #define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR_SHIFT 4 | 2588 | #define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR_SHIFT 0x04 |
| 2589 | #define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR 0x08 | 2589 | #define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR 0x08 |
| 2590 | #define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR_SHIFT 3 | 2590 | #define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR_SHIFT 0x03 |
| 2591 | #define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR 0x04 | 2591 | #define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR 0x04 |
| 2592 | #define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR_SHIFT 2 | 2592 | #define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR_SHIFT 0x02 |
| 2593 | #define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR 0x02 | 2593 | #define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR 0x02 |
| 2594 | #define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR_SHIFT 1 | 2594 | #define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR_SHIFT 0x01 |
| 2595 | #define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR 0x01 | 2595 | #define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR 0x01 |
| 2596 | #define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR_SHIFT 0 | 2596 | #define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR_SHIFT 0x00 |
| 2597 | 2597 | ||
| 2598 | /* Bit definitions for GPIO_DATA_OUT */ | 2598 | /* Bit definitions for GPIO_DATA_OUT */ |
| 2599 | #define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT 0x80 | 2599 | #define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT 0x80 |
| 2600 | #define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT_SHIFT 7 | 2600 | #define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT_SHIFT 0x07 |
| 2601 | #define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT 0x40 | 2601 | #define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT 0x40 |
| 2602 | #define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT_SHIFT 6 | 2602 | #define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT_SHIFT 0x06 |
| 2603 | #define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT 0x20 | 2603 | #define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT 0x20 |
| 2604 | #define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT_SHIFT 5 | 2604 | #define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT_SHIFT 0x05 |
| 2605 | #define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT 0x10 | 2605 | #define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT 0x10 |
| 2606 | #define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT_SHIFT 4 | 2606 | #define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT_SHIFT 0x04 |
| 2607 | #define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT 0x08 | 2607 | #define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT 0x08 |
| 2608 | #define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT_SHIFT 3 | 2608 | #define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT_SHIFT 0x03 |
| 2609 | #define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT 0x04 | 2609 | #define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT 0x04 |
| 2610 | #define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT_SHIFT 2 | 2610 | #define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT_SHIFT 0x02 |
| 2611 | #define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT 0x02 | 2611 | #define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT 0x02 |
| 2612 | #define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT_SHIFT 1 | 2612 | #define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT_SHIFT 0x01 |
| 2613 | #define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT 0x01 | 2613 | #define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT 0x01 |
| 2614 | #define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT_SHIFT 0 | 2614 | #define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT_SHIFT 0x00 |
| 2615 | 2615 | ||
| 2616 | /* Bit definitions for GPIO_DEBOUNCE_EN */ | 2616 | /* Bit definitions for GPIO_DEBOUNCE_EN */ |
| 2617 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN 0x80 | 2617 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN 0x80 |
| 2618 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN_SHIFT 7 | 2618 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN_SHIFT 0x07 |
| 2619 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN 0x40 | 2619 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN 0x40 |
| 2620 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN_SHIFT 6 | 2620 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN_SHIFT 0x06 |
| 2621 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN 0x20 | 2621 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN 0x20 |
| 2622 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN_SHIFT 5 | 2622 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN_SHIFT 0x05 |
| 2623 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN 0x10 | 2623 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN 0x10 |
| 2624 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN_SHIFT 4 | 2624 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN_SHIFT 0x04 |
| 2625 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN 0x08 | 2625 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN 0x08 |
| 2626 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN_SHIFT 3 | 2626 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN_SHIFT 0x03 |
| 2627 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN 0x04 | 2627 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN 0x04 |
| 2628 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN_SHIFT 2 | 2628 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN_SHIFT 0x02 |
| 2629 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN 0x02 | 2629 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN 0x02 |
| 2630 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN_SHIFT 1 | 2630 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN_SHIFT 0x01 |
| 2631 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN 0x01 | 2631 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN 0x01 |
| 2632 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN_SHIFT 0 | 2632 | #define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN_SHIFT 0x00 |
| 2633 | 2633 | ||
| 2634 | /* Bit definitions for GPIO_CLEAR_DATA_OUT */ | 2634 | /* Bit definitions for GPIO_CLEAR_DATA_OUT */ |
| 2635 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT 0x80 | 2635 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT 0x80 |
| 2636 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT_SHIFT 7 | 2636 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT_SHIFT 0x07 |
| 2637 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT 0x40 | 2637 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT 0x40 |
| 2638 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT_SHIFT 6 | 2638 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT_SHIFT 0x06 |
| 2639 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT 0x20 | 2639 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT 0x20 |
| 2640 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT_SHIFT 5 | 2640 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT_SHIFT 0x05 |
| 2641 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT 0x10 | 2641 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT 0x10 |
| 2642 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT_SHIFT 4 | 2642 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT_SHIFT 0x04 |
| 2643 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT 0x08 | 2643 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT 0x08 |
| 2644 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT_SHIFT 3 | 2644 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT_SHIFT 0x03 |
| 2645 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT 0x04 | 2645 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT 0x04 |
| 2646 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT_SHIFT 2 | 2646 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT_SHIFT 0x02 |
| 2647 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT 0x02 | 2647 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT 0x02 |
| 2648 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT_SHIFT 1 | 2648 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT_SHIFT 0x01 |
| 2649 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT 0x01 | 2649 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT 0x01 |
| 2650 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT_SHIFT 0 | 2650 | #define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT_SHIFT 0x00 |
| 2651 | 2651 | ||
| 2652 | /* Bit definitions for GPIO_SET_DATA_OUT */ | 2652 | /* Bit definitions for GPIO_SET_DATA_OUT */ |
| 2653 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT 0x80 | 2653 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT 0x80 |
| 2654 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT_SHIFT 7 | 2654 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT_SHIFT 0x07 |
| 2655 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT 0x40 | 2655 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT 0x40 |
| 2656 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT_SHIFT 6 | 2656 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT_SHIFT 0x06 |
| 2657 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT 0x20 | 2657 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT 0x20 |
| 2658 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT_SHIFT 5 | 2658 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT_SHIFT 0x05 |
| 2659 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT 0x10 | 2659 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT 0x10 |
| 2660 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT_SHIFT 4 | 2660 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT_SHIFT 0x04 |
| 2661 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT 0x08 | 2661 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT 0x08 |
| 2662 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT_SHIFT 3 | 2662 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT_SHIFT 0x03 |
| 2663 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT 0x04 | 2663 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT 0x04 |
| 2664 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT_SHIFT 2 | 2664 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT_SHIFT 0x02 |
| 2665 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT 0x02 | 2665 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT 0x02 |
| 2666 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT_SHIFT 1 | 2666 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT_SHIFT 0x01 |
| 2667 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT 0x01 | 2667 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT 0x01 |
| 2668 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT_SHIFT 0 | 2668 | #define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT_SHIFT 0x00 |
| 2669 | 2669 | ||
| 2670 | /* Bit definitions for PU_PD_GPIO_CTRL1 */ | 2670 | /* Bit definitions for PU_PD_GPIO_CTRL1 */ |
| 2671 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD 0x40 | 2671 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD 0x40 |
| 2672 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD_SHIFT 6 | 2672 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD_SHIFT 0x06 |
| 2673 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU 0x20 | 2673 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU 0x20 |
| 2674 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU_SHIFT 5 | 2674 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU_SHIFT 0x05 |
| 2675 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD 0x10 | 2675 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD 0x10 |
| 2676 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD_SHIFT 4 | 2676 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD_SHIFT 0x04 |
| 2677 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU 0x08 | 2677 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU 0x08 |
| 2678 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU_SHIFT 3 | 2678 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU_SHIFT 0x03 |
| 2679 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD 0x04 | 2679 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD 0x04 |
| 2680 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD_SHIFT 2 | 2680 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD_SHIFT 0x02 |
| 2681 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD 0x01 | 2681 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD 0x01 |
| 2682 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD_SHIFT 0 | 2682 | #define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD_SHIFT 0x00 |
| 2683 | 2683 | ||
| 2684 | /* Bit definitions for PU_PD_GPIO_CTRL2 */ | 2684 | /* Bit definitions for PU_PD_GPIO_CTRL2 */ |
| 2685 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD 0x40 | 2685 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD 0x40 |
| 2686 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD_SHIFT 6 | 2686 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD_SHIFT 0x06 |
| 2687 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU 0x20 | 2687 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU 0x20 |
| 2688 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU_SHIFT 5 | 2688 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU_SHIFT 0x05 |
| 2689 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD 0x10 | 2689 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD 0x10 |
| 2690 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD_SHIFT 4 | 2690 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD_SHIFT 0x04 |
| 2691 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU 0x08 | 2691 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU 0x08 |
| 2692 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU_SHIFT 3 | 2692 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU_SHIFT 0x03 |
| 2693 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD 0x04 | 2693 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD 0x04 |
| 2694 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD_SHIFT 2 | 2694 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD_SHIFT 0x02 |
| 2695 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU 0x02 | 2695 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU 0x02 |
| 2696 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU_SHIFT 1 | 2696 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU_SHIFT 0x01 |
| 2697 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD 0x01 | 2697 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD 0x01 |
| 2698 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD_SHIFT 0 | 2698 | #define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD_SHIFT 0x00 |
| 2699 | 2699 | ||
| 2700 | /* Bit definitions for OD_OUTPUT_GPIO_CTRL */ | 2700 | /* Bit definitions for OD_OUTPUT_GPIO_CTRL */ |
| 2701 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD 0x20 | 2701 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD 0x20 |
| 2702 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD_SHIFT 5 | 2702 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD_SHIFT 0x05 |
| 2703 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD 0x04 | 2703 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD 0x04 |
| 2704 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD_SHIFT 2 | 2704 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD_SHIFT 0x02 |
| 2705 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD 0x02 | 2705 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD 0x02 |
| 2706 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD_SHIFT 1 | 2706 | #define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD_SHIFT 0x01 |
| 2707 | 2707 | ||
| 2708 | /* Registers for function GPADC */ | 2708 | /* Registers for function GPADC */ |
| 2709 | #define PALMAS_GPADC_CTRL1 0x0 | 2709 | #define PALMAS_GPADC_CTRL1 0x00 |
| 2710 | #define PALMAS_GPADC_CTRL2 0x1 | 2710 | #define PALMAS_GPADC_CTRL2 0x01 |
| 2711 | #define PALMAS_GPADC_RT_CTRL 0x2 | 2711 | #define PALMAS_GPADC_RT_CTRL 0x02 |
| 2712 | #define PALMAS_GPADC_AUTO_CTRL 0x3 | 2712 | #define PALMAS_GPADC_AUTO_CTRL 0x03 |
| 2713 | #define PALMAS_GPADC_STATUS 0x4 | 2713 | #define PALMAS_GPADC_STATUS 0x04 |
| 2714 | #define PALMAS_GPADC_RT_SELECT 0x5 | 2714 | #define PALMAS_GPADC_RT_SELECT 0x05 |
| 2715 | #define PALMAS_GPADC_RT_CONV0_LSB 0x6 | 2715 | #define PALMAS_GPADC_RT_CONV0_LSB 0x06 |
| 2716 | #define PALMAS_GPADC_RT_CONV0_MSB 0x7 | 2716 | #define PALMAS_GPADC_RT_CONV0_MSB 0x07 |
| 2717 | #define PALMAS_GPADC_AUTO_SELECT 0x8 | 2717 | #define PALMAS_GPADC_AUTO_SELECT 0x08 |
| 2718 | #define PALMAS_GPADC_AUTO_CONV0_LSB 0x9 | 2718 | #define PALMAS_GPADC_AUTO_CONV0_LSB 0x09 |
| 2719 | #define PALMAS_GPADC_AUTO_CONV0_MSB 0xA | 2719 | #define PALMAS_GPADC_AUTO_CONV0_MSB 0x0A |
| 2720 | #define PALMAS_GPADC_AUTO_CONV1_LSB 0xB | 2720 | #define PALMAS_GPADC_AUTO_CONV1_LSB 0x0B |
| 2721 | #define PALMAS_GPADC_AUTO_CONV1_MSB 0xC | 2721 | #define PALMAS_GPADC_AUTO_CONV1_MSB 0x0C |
| 2722 | #define PALMAS_GPADC_SW_SELECT 0xD | 2722 | #define PALMAS_GPADC_SW_SELECT 0x0D |
| 2723 | #define PALMAS_GPADC_SW_CONV0_LSB 0xE | 2723 | #define PALMAS_GPADC_SW_CONV0_LSB 0x0E |
| 2724 | #define PALMAS_GPADC_SW_CONV0_MSB 0xF | 2724 | #define PALMAS_GPADC_SW_CONV0_MSB 0x0F |
| 2725 | #define PALMAS_GPADC_THRES_CONV0_LSB 0x10 | 2725 | #define PALMAS_GPADC_THRES_CONV0_LSB 0x10 |
| 2726 | #define PALMAS_GPADC_THRES_CONV0_MSB 0x11 | 2726 | #define PALMAS_GPADC_THRES_CONV0_MSB 0x11 |
| 2727 | #define PALMAS_GPADC_THRES_CONV1_LSB 0x12 | 2727 | #define PALMAS_GPADC_THRES_CONV1_LSB 0x12 |
| @@ -2731,150 +2731,150 @@ enum usb_irq_events { | |||
| 2731 | 2731 | ||
| 2732 | /* Bit definitions for GPADC_CTRL1 */ | 2732 | /* Bit definitions for GPADC_CTRL1 */ |
| 2733 | #define PALMAS_GPADC_CTRL1_RESERVED_MASK 0xc0 | 2733 | #define PALMAS_GPADC_CTRL1_RESERVED_MASK 0xc0 |
| 2734 | #define PALMAS_GPADC_CTRL1_RESERVED_SHIFT 6 | 2734 | #define PALMAS_GPADC_CTRL1_RESERVED_SHIFT 0x06 |
| 2735 | #define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_MASK 0x30 | 2735 | #define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_MASK 0x30 |
| 2736 | #define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_SHIFT 4 | 2736 | #define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_SHIFT 0x04 |
| 2737 | #define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_MASK 0x0c | 2737 | #define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_MASK 0x0c |
| 2738 | #define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_SHIFT 2 | 2738 | #define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_SHIFT 0x02 |
| 2739 | #define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET 0x02 | 2739 | #define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET 0x02 |
| 2740 | #define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET_SHIFT 1 | 2740 | #define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET_SHIFT 0x01 |
| 2741 | #define PALMAS_GPADC_CTRL1_GPADC_FORCE 0x01 | 2741 | #define PALMAS_GPADC_CTRL1_GPADC_FORCE 0x01 |
| 2742 | #define PALMAS_GPADC_CTRL1_GPADC_FORCE_SHIFT 0 | 2742 | #define PALMAS_GPADC_CTRL1_GPADC_FORCE_SHIFT 0x00 |
| 2743 | 2743 | ||
| 2744 | /* Bit definitions for GPADC_CTRL2 */ | 2744 | /* Bit definitions for GPADC_CTRL2 */ |
| 2745 | #define PALMAS_GPADC_CTRL2_RESERVED_MASK 0x06 | 2745 | #define PALMAS_GPADC_CTRL2_RESERVED_MASK 0x06 |
| 2746 | #define PALMAS_GPADC_CTRL2_RESERVED_SHIFT 1 | 2746 | #define PALMAS_GPADC_CTRL2_RESERVED_SHIFT 0x01 |
| 2747 | 2747 | ||
| 2748 | /* Bit definitions for GPADC_RT_CTRL */ | 2748 | /* Bit definitions for GPADC_RT_CTRL */ |
| 2749 | #define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY 0x02 | 2749 | #define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY 0x02 |
| 2750 | #define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY_SHIFT 1 | 2750 | #define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY_SHIFT 0x01 |
| 2751 | #define PALMAS_GPADC_RT_CTRL_START_POLARITY 0x01 | 2751 | #define PALMAS_GPADC_RT_CTRL_START_POLARITY 0x01 |
| 2752 | #define PALMAS_GPADC_RT_CTRL_START_POLARITY_SHIFT 0 | 2752 | #define PALMAS_GPADC_RT_CTRL_START_POLARITY_SHIFT 0x00 |
| 2753 | 2753 | ||
| 2754 | /* Bit definitions for GPADC_AUTO_CTRL */ | 2754 | /* Bit definitions for GPADC_AUTO_CTRL */ |
| 2755 | #define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1 0x80 | 2755 | #define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1 0x80 |
| 2756 | #define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1_SHIFT 7 | 2756 | #define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1_SHIFT 0x07 |
| 2757 | #define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0 0x40 | 2757 | #define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0 0x40 |
| 2758 | #define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0_SHIFT 6 | 2758 | #define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0_SHIFT 0x06 |
| 2759 | #define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN 0x20 | 2759 | #define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN 0x20 |
| 2760 | #define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN_SHIFT 5 | 2760 | #define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN_SHIFT 0x05 |
| 2761 | #define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN 0x10 | 2761 | #define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN 0x10 |
| 2762 | #define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN_SHIFT 4 | 2762 | #define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN_SHIFT 0x04 |
| 2763 | #define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_MASK 0x0f | 2763 | #define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_MASK 0x0F |
| 2764 | #define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_SHIFT 0 | 2764 | #define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_SHIFT 0x00 |
| 2765 | 2765 | ||
| 2766 | /* Bit definitions for GPADC_STATUS */ | 2766 | /* Bit definitions for GPADC_STATUS */ |
| 2767 | #define PALMAS_GPADC_STATUS_GPADC_AVAILABLE 0x10 | 2767 | #define PALMAS_GPADC_STATUS_GPADC_AVAILABLE 0x10 |
| 2768 | #define PALMAS_GPADC_STATUS_GPADC_AVAILABLE_SHIFT 4 | 2768 | #define PALMAS_GPADC_STATUS_GPADC_AVAILABLE_SHIFT 0x04 |
| 2769 | 2769 | ||
| 2770 | /* Bit definitions for GPADC_RT_SELECT */ | 2770 | /* Bit definitions for GPADC_RT_SELECT */ |
| 2771 | #define PALMAS_GPADC_RT_SELECT_RT_CONV_EN 0x80 | 2771 | #define PALMAS_GPADC_RT_SELECT_RT_CONV_EN 0x80 |
| 2772 | #define PALMAS_GPADC_RT_SELECT_RT_CONV_EN_SHIFT 7 | 2772 | #define PALMAS_GPADC_RT_SELECT_RT_CONV_EN_SHIFT 0x07 |
| 2773 | #define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_MASK 0x0f | 2773 | #define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_MASK 0x0F |
| 2774 | #define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_SHIFT 0 | 2774 | #define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_SHIFT 0x00 |
| 2775 | 2775 | ||
| 2776 | /* Bit definitions for GPADC_RT_CONV0_LSB */ | 2776 | /* Bit definitions for GPADC_RT_CONV0_LSB */ |
| 2777 | #define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_MASK 0xff | 2777 | #define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_MASK 0xFF |
| 2778 | #define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_SHIFT 0 | 2778 | #define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_SHIFT 0x00 |
| 2779 | 2779 | ||
| 2780 | /* Bit definitions for GPADC_RT_CONV0_MSB */ | 2780 | /* Bit definitions for GPADC_RT_CONV0_MSB */ |
| 2781 | #define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_MASK 0x0f | 2781 | #define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_MASK 0x0F |
| 2782 | #define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_SHIFT 0 | 2782 | #define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_SHIFT 0x00 |
| 2783 | 2783 | ||
| 2784 | /* Bit definitions for GPADC_AUTO_SELECT */ | 2784 | /* Bit definitions for GPADC_AUTO_SELECT */ |
| 2785 | #define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_MASK 0xf0 | 2785 | #define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_MASK 0xF0 |
| 2786 | #define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_SHIFT 4 | 2786 | #define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_SHIFT 0x04 |
| 2787 | #define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_MASK 0x0f | 2787 | #define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_MASK 0x0F |
| 2788 | #define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_SHIFT 0 | 2788 | #define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_SHIFT 0x00 |
| 2789 | 2789 | ||
| 2790 | /* Bit definitions for GPADC_AUTO_CONV0_LSB */ | 2790 | /* Bit definitions for GPADC_AUTO_CONV0_LSB */ |
| 2791 | #define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_MASK 0xff | 2791 | #define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_MASK 0xFF |
| 2792 | #define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_SHIFT 0 | 2792 | #define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_SHIFT 0x00 |
| 2793 | 2793 | ||
| 2794 | /* Bit definitions for GPADC_AUTO_CONV0_MSB */ | 2794 | /* Bit definitions for GPADC_AUTO_CONV0_MSB */ |
| 2795 | #define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_MASK 0x0f | 2795 | #define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_MASK 0x0F |
| 2796 | #define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_SHIFT 0 | 2796 | #define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_SHIFT 0x00 |
| 2797 | 2797 | ||
| 2798 | /* Bit definitions for GPADC_AUTO_CONV1_LSB */ | 2798 | /* Bit definitions for GPADC_AUTO_CONV1_LSB */ |
| 2799 | #define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_MASK 0xff | 2799 | #define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_MASK 0xFF |
| 2800 | #define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_SHIFT 0 | 2800 | #define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_SHIFT 0x00 |
| 2801 | 2801 | ||
| 2802 | /* Bit definitions for GPADC_AUTO_CONV1_MSB */ | 2802 | /* Bit definitions for GPADC_AUTO_CONV1_MSB */ |
| 2803 | #define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_MASK 0x0f | 2803 | #define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_MASK 0x0F |
| 2804 | #define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_SHIFT 0 | 2804 | #define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_SHIFT 0x00 |
| 2805 | 2805 | ||
| 2806 | /* Bit definitions for GPADC_SW_SELECT */ | 2806 | /* Bit definitions for GPADC_SW_SELECT */ |
| 2807 | #define PALMAS_GPADC_SW_SELECT_SW_CONV_EN 0x80 | 2807 | #define PALMAS_GPADC_SW_SELECT_SW_CONV_EN 0x80 |
| 2808 | #define PALMAS_GPADC_SW_SELECT_SW_CONV_EN_SHIFT 7 | 2808 | #define PALMAS_GPADC_SW_SELECT_SW_CONV_EN_SHIFT 0x07 |
| 2809 | #define PALMAS_GPADC_SW_SELECT_SW_START_CONV0 0x10 | 2809 | #define PALMAS_GPADC_SW_SELECT_SW_START_CONV0 0x10 |
| 2810 | #define PALMAS_GPADC_SW_SELECT_SW_START_CONV0_SHIFT 4 | 2810 | #define PALMAS_GPADC_SW_SELECT_SW_START_CONV0_SHIFT 0x04 |
| 2811 | #define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_MASK 0x0f | 2811 | #define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_MASK 0x0F |
| 2812 | #define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_SHIFT 0 | 2812 | #define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_SHIFT 0x00 |
| 2813 | 2813 | ||
| 2814 | /* Bit definitions for GPADC_SW_CONV0_LSB */ | 2814 | /* Bit definitions for GPADC_SW_CONV0_LSB */ |
| 2815 | #define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_MASK 0xff | 2815 | #define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_MASK 0xFF |
| 2816 | #define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_SHIFT 0 | 2816 | #define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_SHIFT 0x00 |
| 2817 | 2817 | ||
| 2818 | /* Bit definitions for GPADC_SW_CONV0_MSB */ | 2818 | /* Bit definitions for GPADC_SW_CONV0_MSB */ |
| 2819 | #define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_MASK 0x0f | 2819 | #define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_MASK 0x0F |
| 2820 | #define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_SHIFT 0 | 2820 | #define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_SHIFT 0x00 |
| 2821 | 2821 | ||
| 2822 | /* Bit definitions for GPADC_THRES_CONV0_LSB */ | 2822 | /* Bit definitions for GPADC_THRES_CONV0_LSB */ |
| 2823 | #define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_MASK 0xff | 2823 | #define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_MASK 0xFF |
| 2824 | #define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_SHIFT 0 | 2824 | #define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_SHIFT 0x00 |
| 2825 | 2825 | ||
| 2826 | /* Bit definitions for GPADC_THRES_CONV0_MSB */ | 2826 | /* Bit definitions for GPADC_THRES_CONV0_MSB */ |
| 2827 | #define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL 0x80 | 2827 | #define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL 0x80 |
| 2828 | #define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL_SHIFT 7 | 2828 | #define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL_SHIFT 0x07 |
| 2829 | #define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_MASK 0x0f | 2829 | #define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_MASK 0x0F |
| 2830 | #define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_SHIFT 0 | 2830 | #define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_SHIFT 0x00 |
| 2831 | 2831 | ||
| 2832 | /* Bit definitions for GPADC_THRES_CONV1_LSB */ | 2832 | /* Bit definitions for GPADC_THRES_CONV1_LSB */ |
| 2833 | #define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_MASK 0xff | 2833 | #define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_MASK 0xFF |
| 2834 | #define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_SHIFT 0 | 2834 | #define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_SHIFT 0x00 |
| 2835 | 2835 | ||
| 2836 | /* Bit definitions for GPADC_THRES_CONV1_MSB */ | 2836 | /* Bit definitions for GPADC_THRES_CONV1_MSB */ |
| 2837 | #define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL 0x80 | 2837 | #define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL 0x80 |
| 2838 | #define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL_SHIFT 7 | 2838 | #define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL_SHIFT 0x07 |
| 2839 | #define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_MASK 0x0f | 2839 | #define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_MASK 0x0F |
| 2840 | #define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_SHIFT 0 | 2840 | #define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_SHIFT 0x00 |
| 2841 | 2841 | ||
| 2842 | /* Bit definitions for GPADC_SMPS_ILMONITOR_EN */ | 2842 | /* Bit definitions for GPADC_SMPS_ILMONITOR_EN */ |
| 2843 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN 0x20 | 2843 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN 0x20 |
| 2844 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN_SHIFT 5 | 2844 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN_SHIFT 0x05 |
| 2845 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT 0x10 | 2845 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT 0x10 |
| 2846 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT_SHIFT 4 | 2846 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT_SHIFT 0x04 |
| 2847 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_MASK 0x0f | 2847 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_MASK 0x0F |
| 2848 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_SHIFT 0 | 2848 | #define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_SHIFT 0x00 |
| 2849 | 2849 | ||
| 2850 | /* Bit definitions for GPADC_SMPS_VSEL_MONITORING */ | 2850 | /* Bit definitions for GPADC_SMPS_VSEL_MONITORING */ |
| 2851 | #define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE 0x80 | 2851 | #define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE 0x80 |
| 2852 | #define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE_SHIFT 7 | 2852 | #define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE_SHIFT 0x07 |
| 2853 | #define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_MASK 0x7f | 2853 | #define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_MASK 0x7F |
| 2854 | #define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_SHIFT 0 | 2854 | #define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_SHIFT 0x00 |
| 2855 | 2855 | ||
| 2856 | /* Registers for function GPADC */ | 2856 | /* Registers for function GPADC */ |
| 2857 | #define PALMAS_GPADC_TRIM1 0x0 | 2857 | #define PALMAS_GPADC_TRIM1 0x00 |
| 2858 | #define PALMAS_GPADC_TRIM2 0x1 | 2858 | #define PALMAS_GPADC_TRIM2 0x01 |
| 2859 | #define PALMAS_GPADC_TRIM3 0x2 | 2859 | #define PALMAS_GPADC_TRIM3 0x02 |
| 2860 | #define PALMAS_GPADC_TRIM4 0x3 | 2860 | #define PALMAS_GPADC_TRIM4 0x03 |
| 2861 | #define PALMAS_GPADC_TRIM5 0x4 | 2861 | #define PALMAS_GPADC_TRIM5 0x04 |
| 2862 | #define PALMAS_GPADC_TRIM6 0x5 | 2862 | #define PALMAS_GPADC_TRIM6 0x05 |
| 2863 | #define PALMAS_GPADC_TRIM7 0x6 | 2863 | #define PALMAS_GPADC_TRIM7 0x06 |
| 2864 | #define PALMAS_GPADC_TRIM8 0x7 | 2864 | #define PALMAS_GPADC_TRIM8 0x07 |
| 2865 | #define PALMAS_GPADC_TRIM9 0x8 | 2865 | #define PALMAS_GPADC_TRIM9 0x08 |
| 2866 | #define PALMAS_GPADC_TRIM10 0x9 | 2866 | #define PALMAS_GPADC_TRIM10 0x09 |
| 2867 | #define PALMAS_GPADC_TRIM11 0xA | 2867 | #define PALMAS_GPADC_TRIM11 0x0A |
| 2868 | #define PALMAS_GPADC_TRIM12 0xB | 2868 | #define PALMAS_GPADC_TRIM12 0x0B |
| 2869 | #define PALMAS_GPADC_TRIM13 0xC | 2869 | #define PALMAS_GPADC_TRIM13 0x0C |
| 2870 | #define PALMAS_GPADC_TRIM14 0xD | 2870 | #define PALMAS_GPADC_TRIM14 0x0D |
| 2871 | #define PALMAS_GPADC_TRIM15 0xE | 2871 | #define PALMAS_GPADC_TRIM15 0x0E |
| 2872 | #define PALMAS_GPADC_TRIM16 0xF | 2872 | #define PALMAS_GPADC_TRIM16 0x0F |
| 2873 | 2873 | ||
| 2874 | static inline int palmas_read(struct palmas *palmas, unsigned int base, | 2874 | static inline int palmas_read(struct palmas *palmas, unsigned int base, |
| 2875 | unsigned int reg, unsigned int *val) | 2875 | unsigned int reg, unsigned int *val) |
| 2876 | { | 2876 | { |
| 2877 | unsigned int addr = PALMAS_BASE_TO_REG(base, reg); | 2877 | unsigned int addr = PALMAS_BASE_TO_REG(base, reg); |
| 2878 | int slave_id = PALMAS_BASE_TO_SLAVE(base); | 2878 | int slave_id = PALMAS_BASE_TO_SLAVE(base); |
| 2879 | 2879 | ||
| 2880 | return regmap_read(palmas->regmap[slave_id], addr, val); | 2880 | return regmap_read(palmas->regmap[slave_id], addr, val); |
diff --git a/include/linux/mfd/pm8xxx/core.h b/include/linux/mfd/pm8xxx/core.h deleted file mode 100644 index bd2f4f64e931..000000000000 --- a/include/linux/mfd/pm8xxx/core.h +++ /dev/null | |||
| @@ -1,81 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License version 2 and | ||
| 6 | * only version 2 as published by the Free Software Foundation. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | */ | ||
| 13 | /* | ||
| 14 | * Qualcomm PMIC 8xxx driver header file | ||
| 15 | * | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef __MFD_PM8XXX_CORE_H | ||
| 19 | #define __MFD_PM8XXX_CORE_H | ||
| 20 | |||
| 21 | #include <linux/mfd/core.h> | ||
| 22 | |||
| 23 | struct pm8xxx_drvdata { | ||
| 24 | int (*pmic_readb) (const struct device *dev, u16 addr, u8 *val); | ||
| 25 | int (*pmic_writeb) (const struct device *dev, u16 addr, u8 val); | ||
| 26 | int (*pmic_read_buf) (const struct device *dev, u16 addr, u8 *buf, | ||
| 27 | int n); | ||
| 28 | int (*pmic_write_buf) (const struct device *dev, u16 addr, u8 *buf, | ||
| 29 | int n); | ||
| 30 | int (*pmic_read_irq_stat) (const struct device *dev, int irq); | ||
| 31 | void *pm_chip_data; | ||
| 32 | }; | ||
| 33 | |||
| 34 | static inline int pm8xxx_readb(const struct device *dev, u16 addr, u8 *val) | ||
| 35 | { | ||
| 36 | struct pm8xxx_drvdata *dd = dev_get_drvdata(dev); | ||
| 37 | |||
| 38 | if (!dd) | ||
| 39 | return -EINVAL; | ||
| 40 | return dd->pmic_readb(dev, addr, val); | ||
| 41 | } | ||
| 42 | |||
| 43 | static inline int pm8xxx_writeb(const struct device *dev, u16 addr, u8 val) | ||
| 44 | { | ||
| 45 | struct pm8xxx_drvdata *dd = dev_get_drvdata(dev); | ||
| 46 | |||
| 47 | if (!dd) | ||
| 48 | return -EINVAL; | ||
| 49 | return dd->pmic_writeb(dev, addr, val); | ||
| 50 | } | ||
| 51 | |||
| 52 | static inline int pm8xxx_read_buf(const struct device *dev, u16 addr, u8 *buf, | ||
| 53 | int n) | ||
| 54 | { | ||
| 55 | struct pm8xxx_drvdata *dd = dev_get_drvdata(dev); | ||
| 56 | |||
| 57 | if (!dd) | ||
| 58 | return -EINVAL; | ||
| 59 | return dd->pmic_read_buf(dev, addr, buf, n); | ||
| 60 | } | ||
| 61 | |||
| 62 | static inline int pm8xxx_write_buf(const struct device *dev, u16 addr, u8 *buf, | ||
| 63 | int n) | ||
| 64 | { | ||
| 65 | struct pm8xxx_drvdata *dd = dev_get_drvdata(dev); | ||
| 66 | |||
| 67 | if (!dd) | ||
| 68 | return -EINVAL; | ||
| 69 | return dd->pmic_write_buf(dev, addr, buf, n); | ||
| 70 | } | ||
| 71 | |||
| 72 | static inline int pm8xxx_read_irq_stat(const struct device *dev, int irq) | ||
| 73 | { | ||
| 74 | struct pm8xxx_drvdata *dd = dev_get_drvdata(dev); | ||
| 75 | |||
| 76 | if (!dd) | ||
| 77 | return -EINVAL; | ||
| 78 | return dd->pmic_read_irq_stat(dev, irq); | ||
| 79 | } | ||
| 80 | |||
| 81 | #endif | ||
diff --git a/include/linux/mfd/rdc321x.h b/include/linux/mfd/rdc321x.h index 4bdf19c8eedf..442743a8f915 100644 --- a/include/linux/mfd/rdc321x.h +++ b/include/linux/mfd/rdc321x.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #define RDC321X_GPIO_CTRL_REG2 0x84 | 12 | #define RDC321X_GPIO_CTRL_REG2 0x84 |
| 13 | #define RDC321X_GPIO_DATA_REG2 0x88 | 13 | #define RDC321X_GPIO_DATA_REG2 0x88 |
| 14 | 14 | ||
| 15 | #define RDC321X_MAX_GPIO 58 | 15 | #define RDC321X_NUM_GPIO 59 |
| 16 | 16 | ||
| 17 | struct rdc321x_gpio_pdata { | 17 | struct rdc321x_gpio_pdata { |
| 18 | struct pci_dev *sb_pdev; | 18 | struct pci_dev *sb_pdev; |
diff --git a/include/linux/mfd/samsung/core.h b/include/linux/mfd/samsung/core.h index 157e32b6ca28..47d84242940b 100644 --- a/include/linux/mfd/samsung/core.h +++ b/include/linux/mfd/samsung/core.h | |||
| @@ -24,35 +24,36 @@ enum sec_device_type { | |||
| 24 | }; | 24 | }; |
| 25 | 25 | ||
| 26 | /** | 26 | /** |
| 27 | * struct sec_pmic_dev - s5m87xx master device for sub-drivers | 27 | * struct sec_pmic_dev - s2m/s5m master device for sub-drivers |
| 28 | * @dev: master device of the chip (can be used to access platform data) | 28 | * @dev: Master device of the chip |
| 29 | * @pdata: pointer to private data used to pass platform data to child | 29 | * @pdata: Platform data populated with data from DTS |
| 30 | * @i2c: i2c client private data for regulator | 30 | * or board files |
| 31 | * @rtc: i2c client private data for rtc | 31 | * @regmap_pmic: Regmap associated with PMIC's I2C address |
| 32 | * @iolock: mutex for serializing io access | 32 | * @i2c: I2C client of the main driver |
| 33 | * @irqlock: mutex for buslock | 33 | * @device_type: Type of device, matches enum sec_device_type |
| 34 | * @irq_base: base IRQ number for sec-pmic, required for IRQs | 34 | * @irq_base: Base IRQ number for device, required for IRQs |
| 35 | * @irq: generic IRQ number for s5m87xx | 35 | * @irq: Generic IRQ number for device |
| 36 | * @ono: power onoff IRQ number for s5m87xx | 36 | * @irq_data: Runtime data structure for IRQ controller |
| 37 | * @irq_masks_cur: currently active value | 37 | * @ono: Power onoff IRQ number for s5m87xx |
| 38 | * @irq_masks_cache: cached hardware value | 38 | * @wakeup: Whether or not this is a wakeup device |
| 39 | * @type: indicate which s5m87xx "variant" is used | 39 | * @wtsr_smpl: Whether or not to enable in RTC driver the Watchdog |
| 40 | * Timer Software Reset (registers set to default value | ||
| 41 | * after PWRHOLD falling) and Sudden Momentary Power Loss | ||
| 42 | * (PMIC will enter power on sequence after short drop in | ||
| 43 | * VBATT voltage). | ||
| 40 | */ | 44 | */ |
| 41 | struct sec_pmic_dev { | 45 | struct sec_pmic_dev { |
| 42 | struct device *dev; | 46 | struct device *dev; |
| 43 | struct sec_platform_data *pdata; | 47 | struct sec_platform_data *pdata; |
| 44 | struct regmap *regmap_pmic; | 48 | struct regmap *regmap_pmic; |
| 45 | struct regmap *regmap_rtc; | ||
| 46 | struct i2c_client *i2c; | 49 | struct i2c_client *i2c; |
| 47 | struct i2c_client *rtc; | ||
| 48 | 50 | ||
| 49 | int device_type; | 51 | unsigned long device_type; |
| 50 | int irq_base; | 52 | int irq_base; |
| 51 | int irq; | 53 | int irq; |
| 52 | struct regmap_irq_chip_data *irq_data; | 54 | struct regmap_irq_chip_data *irq_data; |
| 53 | 55 | ||
| 54 | int ono; | 56 | int ono; |
| 55 | unsigned long type; | ||
| 56 | bool wakeup; | 57 | bool wakeup; |
| 57 | bool wtsr_smpl; | 58 | bool wtsr_smpl; |
| 58 | }; | 59 | }; |
diff --git a/include/linux/mfd/samsung/rtc.h b/include/linux/mfd/samsung/rtc.h index 3e02b768d537..b6401e7661c7 100644 --- a/include/linux/mfd/samsung/rtc.h +++ b/include/linux/mfd/samsung/rtc.h | |||
| @@ -18,38 +18,38 @@ | |||
| 18 | #ifndef __LINUX_MFD_SEC_RTC_H | 18 | #ifndef __LINUX_MFD_SEC_RTC_H |
| 19 | #define __LINUX_MFD_SEC_RTC_H | 19 | #define __LINUX_MFD_SEC_RTC_H |
| 20 | 20 | ||
| 21 | enum sec_rtc_reg { | 21 | enum s5m_rtc_reg { |
| 22 | SEC_RTC_SEC, | 22 | S5M_RTC_SEC, |
| 23 | SEC_RTC_MIN, | 23 | S5M_RTC_MIN, |
| 24 | SEC_RTC_HOUR, | 24 | S5M_RTC_HOUR, |
| 25 | SEC_RTC_WEEKDAY, | 25 | S5M_RTC_WEEKDAY, |
| 26 | SEC_RTC_DATE, | 26 | S5M_RTC_DATE, |
| 27 | SEC_RTC_MONTH, | 27 | S5M_RTC_MONTH, |
| 28 | SEC_RTC_YEAR1, | 28 | S5M_RTC_YEAR1, |
| 29 | SEC_RTC_YEAR2, | 29 | S5M_RTC_YEAR2, |
| 30 | SEC_ALARM0_SEC, | 30 | S5M_ALARM0_SEC, |
| 31 | SEC_ALARM0_MIN, | 31 | S5M_ALARM0_MIN, |
| 32 | SEC_ALARM0_HOUR, | 32 | S5M_ALARM0_HOUR, |
| 33 | SEC_ALARM0_WEEKDAY, | 33 | S5M_ALARM0_WEEKDAY, |
| 34 | SEC_ALARM0_DATE, | 34 | S5M_ALARM0_DATE, |
| 35 | SEC_ALARM0_MONTH, | 35 | S5M_ALARM0_MONTH, |
| 36 | SEC_ALARM0_YEAR1, | 36 | S5M_ALARM0_YEAR1, |
| 37 | SEC_ALARM0_YEAR2, | 37 | S5M_ALARM0_YEAR2, |
| 38 | SEC_ALARM1_SEC, | 38 | S5M_ALARM1_SEC, |
| 39 | SEC_ALARM1_MIN, | 39 | S5M_ALARM1_MIN, |
| 40 | SEC_ALARM1_HOUR, | 40 | S5M_ALARM1_HOUR, |
| 41 | SEC_ALARM1_WEEKDAY, | 41 | S5M_ALARM1_WEEKDAY, |
| 42 | SEC_ALARM1_DATE, | 42 | S5M_ALARM1_DATE, |
| 43 | SEC_ALARM1_MONTH, | 43 | S5M_ALARM1_MONTH, |
| 44 | SEC_ALARM1_YEAR1, | 44 | S5M_ALARM1_YEAR1, |
| 45 | SEC_ALARM1_YEAR2, | 45 | S5M_ALARM1_YEAR2, |
| 46 | SEC_ALARM0_CONF, | 46 | S5M_ALARM0_CONF, |
| 47 | SEC_ALARM1_CONF, | 47 | S5M_ALARM1_CONF, |
| 48 | SEC_RTC_STATUS, | 48 | S5M_RTC_STATUS, |
| 49 | SEC_WTSR_SMPL_CNTL, | 49 | S5M_WTSR_SMPL_CNTL, |
| 50 | SEC_RTC_UDR_CON, | 50 | S5M_RTC_UDR_CON, |
| 51 | 51 | ||
| 52 | SEC_RTC_REG_MAX, | 52 | S5M_RTC_REG_MAX, |
| 53 | }; | 53 | }; |
| 54 | 54 | ||
| 55 | enum s2mps_rtc_reg { | 55 | enum s2mps_rtc_reg { |
| @@ -88,9 +88,9 @@ enum s2mps_rtc_reg { | |||
| 88 | #define HOUR_12 (1 << 7) | 88 | #define HOUR_12 (1 << 7) |
| 89 | #define HOUR_AMPM (1 << 6) | 89 | #define HOUR_AMPM (1 << 6) |
| 90 | #define HOUR_PM (1 << 5) | 90 | #define HOUR_PM (1 << 5) |
| 91 | #define ALARM0_STATUS (1 << 1) | 91 | #define S5M_ALARM0_STATUS (1 << 1) |
| 92 | #define ALARM1_STATUS (1 << 2) | 92 | #define S5M_ALARM1_STATUS (1 << 2) |
| 93 | #define UPDATE_AD (1 << 0) | 93 | #define S5M_UPDATE_AD (1 << 0) |
| 94 | 94 | ||
| 95 | #define S2MPS_ALARM0_STATUS (1 << 2) | 95 | #define S2MPS_ALARM0_STATUS (1 << 2) |
| 96 | #define S2MPS_ALARM1_STATUS (1 << 1) | 96 | #define S2MPS_ALARM1_STATUS (1 << 1) |
| @@ -101,16 +101,26 @@ enum s2mps_rtc_reg { | |||
| 101 | #define MODEL24_SHIFT 1 | 101 | #define MODEL24_SHIFT 1 |
| 102 | #define MODEL24_MASK (1 << MODEL24_SHIFT) | 102 | #define MODEL24_MASK (1 << MODEL24_SHIFT) |
| 103 | /* RTC Update Register1 */ | 103 | /* RTC Update Register1 */ |
| 104 | #define RTC_UDR_SHIFT 0 | 104 | #define S5M_RTC_UDR_SHIFT 0 |
| 105 | #define RTC_UDR_MASK (1 << RTC_UDR_SHIFT) | 105 | #define S5M_RTC_UDR_MASK (1 << S5M_RTC_UDR_SHIFT) |
| 106 | #define S2MPS_RTC_WUDR_SHIFT 4 | 106 | #define S2MPS_RTC_WUDR_SHIFT 4 |
| 107 | #define S2MPS_RTC_WUDR_MASK (1 << S2MPS_RTC_WUDR_SHIFT) | 107 | #define S2MPS_RTC_WUDR_MASK (1 << S2MPS_RTC_WUDR_SHIFT) |
| 108 | #define S2MPS_RTC_RUDR_SHIFT 0 | 108 | #define S2MPS_RTC_RUDR_SHIFT 0 |
| 109 | #define S2MPS_RTC_RUDR_MASK (1 << S2MPS_RTC_RUDR_SHIFT) | 109 | #define S2MPS_RTC_RUDR_MASK (1 << S2MPS_RTC_RUDR_SHIFT) |
| 110 | #define RTC_TCON_SHIFT 1 | 110 | #define RTC_TCON_SHIFT 1 |
| 111 | #define RTC_TCON_MASK (1 << RTC_TCON_SHIFT) | 111 | #define RTC_TCON_MASK (1 << RTC_TCON_SHIFT) |
| 112 | #define RTC_TIME_EN_SHIFT 3 | 112 | #define S5M_RTC_TIME_EN_SHIFT 3 |
| 113 | #define RTC_TIME_EN_MASK (1 << RTC_TIME_EN_SHIFT) | 113 | #define S5M_RTC_TIME_EN_MASK (1 << S5M_RTC_TIME_EN_SHIFT) |
| 114 | /* | ||
| 115 | * UDR_T field in S5M_RTC_UDR_CON register determines the time needed | ||
| 116 | * for updating alarm and time registers. Default is 7.32 ms. | ||
| 117 | */ | ||
| 118 | #define S5M_RTC_UDR_T_SHIFT 6 | ||
| 119 | #define S5M_RTC_UDR_T_MASK (0x3 << S5M_RTC_UDR_T_SHIFT) | ||
| 120 | #define S5M_RTC_UDR_T_7320_US (0x0 << S5M_RTC_UDR_T_SHIFT) | ||
| 121 | #define S5M_RTC_UDR_T_1830_US (0x1 << S5M_RTC_UDR_T_SHIFT) | ||
| 122 | #define S5M_RTC_UDR_T_3660_US (0x2 << S5M_RTC_UDR_T_SHIFT) | ||
| 123 | #define S5M_RTC_UDR_T_450_US (0x3 << S5M_RTC_UDR_T_SHIFT) | ||
| 114 | 124 | ||
| 115 | /* RTC Hour register */ | 125 | /* RTC Hour register */ |
| 116 | #define HOUR_PM_SHIFT 6 | 126 | #define HOUR_PM_SHIFT 6 |
diff --git a/include/linux/mfd/stmpe.h b/include/linux/mfd/stmpe.h index 48395a69a7e9..575a86c7fcbd 100644 --- a/include/linux/mfd/stmpe.h +++ b/include/linux/mfd/stmpe.h | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #include <linux/mutex.h> | 11 | #include <linux/mutex.h> |
| 12 | 12 | ||
| 13 | struct device; | 13 | struct device; |
| 14 | struct regulator; | ||
| 14 | 15 | ||
| 15 | enum stmpe_block { | 16 | enum stmpe_block { |
| 16 | STMPE_BLOCK_GPIO = 1 << 0, | 17 | STMPE_BLOCK_GPIO = 1 << 0, |
| @@ -62,6 +63,8 @@ struct stmpe_client_info; | |||
| 62 | 63 | ||
| 63 | /** | 64 | /** |
| 64 | * struct stmpe - STMPE MFD structure | 65 | * struct stmpe - STMPE MFD structure |
| 66 | * @vcc: optional VCC regulator | ||
| 67 | * @vio: optional VIO regulator | ||
| 65 | * @lock: lock protecting I/O operations | 68 | * @lock: lock protecting I/O operations |
| 66 | * @irq_lock: IRQ bus lock | 69 | * @irq_lock: IRQ bus lock |
| 67 | * @dev: device, mostly for dev_dbg() | 70 | * @dev: device, mostly for dev_dbg() |
| @@ -73,13 +76,14 @@ struct stmpe_client_info; | |||
| 73 | * @regs: list of addresses of registers which are at different addresses on | 76 | * @regs: list of addresses of registers which are at different addresses on |
| 74 | * different variants. Indexed by one of STMPE_IDX_*. | 77 | * different variants. Indexed by one of STMPE_IDX_*. |
| 75 | * @irq: irq number for stmpe | 78 | * @irq: irq number for stmpe |
| 76 | * @irq_base: starting IRQ number for internal IRQs | ||
| 77 | * @num_gpios: number of gpios, differs for variants | 79 | * @num_gpios: number of gpios, differs for variants |
| 78 | * @ier: cache of IER registers for bus_lock | 80 | * @ier: cache of IER registers for bus_lock |
| 79 | * @oldier: cache of IER registers for bus_lock | 81 | * @oldier: cache of IER registers for bus_lock |
| 80 | * @pdata: platform data | 82 | * @pdata: platform data |
| 81 | */ | 83 | */ |
| 82 | struct stmpe { | 84 | struct stmpe { |
| 85 | struct regulator *vcc; | ||
| 86 | struct regulator *vio; | ||
| 83 | struct mutex lock; | 87 | struct mutex lock; |
| 84 | struct mutex irq_lock; | 88 | struct mutex irq_lock; |
| 85 | struct device *dev; | 89 | struct device *dev; |
| @@ -91,7 +95,6 @@ struct stmpe { | |||
| 91 | const u8 *regs; | 95 | const u8 *regs; |
| 92 | 96 | ||
| 93 | int irq; | 97 | int irq; |
| 94 | int irq_base; | ||
| 95 | int num_gpios; | 98 | int num_gpios; |
| 96 | u8 ier[2]; | 99 | u8 ier[2]; |
| 97 | u8 oldier[2]; | 100 | u8 oldier[2]; |
| @@ -132,8 +135,6 @@ struct stmpe_keypad_platform_data { | |||
| 132 | 135 | ||
| 133 | /** | 136 | /** |
| 134 | * struct stmpe_gpio_platform_data - STMPE GPIO platform data | 137 | * struct stmpe_gpio_platform_data - STMPE GPIO platform data |
| 135 | * @gpio_base: first gpio number assigned. A maximum of | ||
| 136 | * %STMPE_NR_GPIOS GPIOs will be allocated. | ||
| 137 | * @norequest_mask: bitmask specifying which GPIOs should _not_ be | 138 | * @norequest_mask: bitmask specifying which GPIOs should _not_ be |
| 138 | * requestable due to different usage (e.g. touch, keypad) | 139 | * requestable due to different usage (e.g. touch, keypad) |
| 139 | * STMPE_GPIO_NOREQ_* macros can be used here. | 140 | * STMPE_GPIO_NOREQ_* macros can be used here. |
| @@ -141,7 +142,6 @@ struct stmpe_keypad_platform_data { | |||
| 141 | * @remove: board specific remove callback | 142 | * @remove: board specific remove callback |
| 142 | */ | 143 | */ |
| 143 | struct stmpe_gpio_platform_data { | 144 | struct stmpe_gpio_platform_data { |
| 144 | int gpio_base; | ||
| 145 | unsigned norequest_mask; | 145 | unsigned norequest_mask; |
| 146 | void (*setup)(struct stmpe *stmpe, unsigned gpio_base); | 146 | void (*setup)(struct stmpe *stmpe, unsigned gpio_base); |
| 147 | void (*remove)(struct stmpe *stmpe, unsigned gpio_base); | 147 | void (*remove)(struct stmpe *stmpe, unsigned gpio_base); |
| @@ -195,8 +195,6 @@ struct stmpe_ts_platform_data { | |||
| 195 | * @irq_trigger: IRQ trigger to use for the interrupt to the host | 195 | * @irq_trigger: IRQ trigger to use for the interrupt to the host |
| 196 | * @autosleep: bool to enable/disable stmpe autosleep | 196 | * @autosleep: bool to enable/disable stmpe autosleep |
| 197 | * @autosleep_timeout: inactivity timeout in milliseconds for autosleep | 197 | * @autosleep_timeout: inactivity timeout in milliseconds for autosleep |
| 198 | * @irq_base: base IRQ number. %STMPE_NR_IRQS irqs will be used, or | ||
| 199 | * %STMPE_NR_INTERNAL_IRQS if the GPIO driver is not used. | ||
| 200 | * @irq_over_gpio: true if gpio is used to get irq | 198 | * @irq_over_gpio: true if gpio is used to get irq |
| 201 | * @irq_gpio: gpio number over which irq will be requested (significant only if | 199 | * @irq_gpio: gpio number over which irq will be requested (significant only if |
| 202 | * irq_over_gpio is true) | 200 | * irq_over_gpio is true) |
| @@ -207,7 +205,6 @@ struct stmpe_ts_platform_data { | |||
| 207 | struct stmpe_platform_data { | 205 | struct stmpe_platform_data { |
| 208 | int id; | 206 | int id; |
| 209 | unsigned int blocks; | 207 | unsigned int blocks; |
| 210 | int irq_base; | ||
| 211 | unsigned int irq_trigger; | 208 | unsigned int irq_trigger; |
| 212 | bool autosleep; | 209 | bool autosleep; |
| 213 | bool irq_over_gpio; | 210 | bool irq_over_gpio; |
| @@ -219,10 +216,4 @@ struct stmpe_platform_data { | |||
| 219 | struct stmpe_ts_platform_data *ts; | 216 | struct stmpe_ts_platform_data *ts; |
| 220 | }; | 217 | }; |
| 221 | 218 | ||
| 222 | #define STMPE_NR_INTERNAL_IRQS 9 | ||
| 223 | #define STMPE_INT_GPIO(x) (STMPE_NR_INTERNAL_IRQS + (x)) | ||
| 224 | |||
| 225 | #define STMPE_NR_GPIOS 24 | ||
| 226 | #define STMPE_NR_IRQS STMPE_INT_GPIO(STMPE_NR_GPIOS) | ||
| 227 | |||
| 228 | #endif | 219 | #endif |
diff --git a/include/linux/mfd/syscon.h b/include/linux/mfd/syscon.h index 8789fa3c7fd9..75e543b78f53 100644 --- a/include/linux/mfd/syscon.h +++ b/include/linux/mfd/syscon.h | |||
| @@ -15,6 +15,8 @@ | |||
| 15 | #ifndef __LINUX_MFD_SYSCON_H__ | 15 | #ifndef __LINUX_MFD_SYSCON_H__ |
| 16 | #define __LINUX_MFD_SYSCON_H__ | 16 | #define __LINUX_MFD_SYSCON_H__ |
| 17 | 17 | ||
| 18 | #include <linux/err.h> | ||
| 19 | |||
| 18 | struct device_node; | 20 | struct device_node; |
| 19 | 21 | ||
| 20 | #ifdef CONFIG_MFD_SYSCON | 22 | #ifdef CONFIG_MFD_SYSCON |
diff --git a/include/linux/mfd/tps65218.h b/include/linux/mfd/tps65218.h index d2e357df5a0e..2f9b593246ee 100644 --- a/include/linux/mfd/tps65218.h +++ b/include/linux/mfd/tps65218.h | |||
| @@ -267,7 +267,6 @@ struct tps65218 { | |||
| 267 | u32 irq_mask; | 267 | u32 irq_mask; |
| 268 | struct regmap_irq_chip_data *irq_data; | 268 | struct regmap_irq_chip_data *irq_data; |
| 269 | struct regulator_desc desc[TPS65218_NUM_REGULATOR]; | 269 | struct regulator_desc desc[TPS65218_NUM_REGULATOR]; |
| 270 | struct regulator_dev *rdev[TPS65218_NUM_REGULATOR]; | ||
| 271 | struct tps_info *info[TPS65218_NUM_REGULATOR]; | 270 | struct tps_info *info[TPS65218_NUM_REGULATOR]; |
| 272 | struct regmap *regmap; | 271 | struct regmap *regmap; |
| 273 | }; | 272 | }; |
diff --git a/include/linux/mfd/twl6040.h b/include/linux/mfd/twl6040.h index 81f639bc1ae6..8f9fc3d26e6d 100644 --- a/include/linux/mfd/twl6040.h +++ b/include/linux/mfd/twl6040.h | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | #include <linux/interrupt.h> | 28 | #include <linux/interrupt.h> |
| 29 | #include <linux/mfd/core.h> | 29 | #include <linux/mfd/core.h> |
| 30 | #include <linux/regulator/consumer.h> | 30 | #include <linux/regulator/consumer.h> |
| 31 | #include <linux/clk.h> | ||
| 31 | 32 | ||
| 32 | #define TWL6040_REG_ASICID 0x01 | 33 | #define TWL6040_REG_ASICID 0x01 |
| 33 | #define TWL6040_REG_ASICREV 0x02 | 34 | #define TWL6040_REG_ASICREV 0x02 |
| @@ -157,6 +158,7 @@ | |||
| 157 | #define TWL6040_I2CSEL 0x01 | 158 | #define TWL6040_I2CSEL 0x01 |
| 158 | #define TWL6040_RESETSPLIT 0x04 | 159 | #define TWL6040_RESETSPLIT 0x04 |
| 159 | #define TWL6040_INTCLRMODE 0x08 | 160 | #define TWL6040_INTCLRMODE 0x08 |
| 161 | #define TWL6040_I2CMODE(x) ((x & 0x3) << 4) | ||
| 160 | 162 | ||
| 161 | /* STATUS (0x2E) fields */ | 163 | /* STATUS (0x2E) fields */ |
| 162 | 164 | ||
| @@ -222,6 +224,7 @@ struct twl6040 { | |||
| 222 | struct regmap *regmap; | 224 | struct regmap *regmap; |
| 223 | struct regmap_irq_chip_data *irq_data; | 225 | struct regmap_irq_chip_data *irq_data; |
| 224 | struct regulator_bulk_data supplies[2]; /* supplies for vio, v2v1 */ | 226 | struct regulator_bulk_data supplies[2]; /* supplies for vio, v2v1 */ |
| 227 | struct clk *clk32k; | ||
| 225 | struct mutex mutex; | 228 | struct mutex mutex; |
| 226 | struct mutex irq_mutex; | 229 | struct mutex irq_mutex; |
| 227 | struct mfd_cell cells[TWL6040_CELLS]; | 230 | struct mfd_cell cells[TWL6040_CELLS]; |
diff --git a/include/linux/migrate.h b/include/linux/migrate.h index 84a31ad0b791..a2901c414664 100644 --- a/include/linux/migrate.h +++ b/include/linux/migrate.h | |||
| @@ -5,7 +5,9 @@ | |||
| 5 | #include <linux/mempolicy.h> | 5 | #include <linux/mempolicy.h> |
| 6 | #include <linux/migrate_mode.h> | 6 | #include <linux/migrate_mode.h> |
| 7 | 7 | ||
| 8 | typedef struct page *new_page_t(struct page *, unsigned long private, int **); | 8 | typedef struct page *new_page_t(struct page *page, unsigned long private, |
| 9 | int **reason); | ||
| 10 | typedef void free_page_t(struct page *page, unsigned long private); | ||
| 9 | 11 | ||
| 10 | /* | 12 | /* |
| 11 | * Return values from addresss_space_operations.migratepage(): | 13 | * Return values from addresss_space_operations.migratepage(): |
| @@ -38,7 +40,7 @@ enum migrate_reason { | |||
| 38 | extern void putback_movable_pages(struct list_head *l); | 40 | extern void putback_movable_pages(struct list_head *l); |
| 39 | extern int migrate_page(struct address_space *, | 41 | extern int migrate_page(struct address_space *, |
| 40 | struct page *, struct page *, enum migrate_mode); | 42 | struct page *, struct page *, enum migrate_mode); |
| 41 | extern int migrate_pages(struct list_head *l, new_page_t x, | 43 | extern int migrate_pages(struct list_head *l, new_page_t new, free_page_t free, |
| 42 | unsigned long private, enum migrate_mode mode, int reason); | 44 | unsigned long private, enum migrate_mode mode, int reason); |
| 43 | 45 | ||
| 44 | extern int migrate_prep(void); | 46 | extern int migrate_prep(void); |
| @@ -56,8 +58,9 @@ extern int migrate_page_move_mapping(struct address_space *mapping, | |||
| 56 | #else | 58 | #else |
| 57 | 59 | ||
| 58 | static inline void putback_movable_pages(struct list_head *l) {} | 60 | static inline void putback_movable_pages(struct list_head *l) {} |
| 59 | static inline int migrate_pages(struct list_head *l, new_page_t x, | 61 | static inline int migrate_pages(struct list_head *l, new_page_t new, |
| 60 | unsigned long private, enum migrate_mode mode, int reason) | 62 | free_page_t free, unsigned long private, enum migrate_mode mode, |
| 63 | int reason) | ||
| 61 | { return -ENOSYS; } | 64 | { return -ENOSYS; } |
| 62 | 65 | ||
| 63 | static inline int migrate_prep(void) { return -ENOSYS; } | 66 | static inline int migrate_prep(void) { return -ENOSYS; } |
diff --git a/include/linux/mlx4/device.h b/include/linux/mlx4/device.h index ba87bd21295a..3447bead9620 100644 --- a/include/linux/mlx4/device.h +++ b/include/linux/mlx4/device.h | |||
| @@ -401,6 +401,7 @@ struct mlx4_caps { | |||
| 401 | int max_rq_desc_sz; | 401 | int max_rq_desc_sz; |
| 402 | int max_qp_init_rdma; | 402 | int max_qp_init_rdma; |
| 403 | int max_qp_dest_rdma; | 403 | int max_qp_dest_rdma; |
| 404 | u32 *qp0_qkey; | ||
| 404 | u32 *qp0_proxy; | 405 | u32 *qp0_proxy; |
| 405 | u32 *qp1_proxy; | 406 | u32 *qp1_proxy; |
| 406 | u32 *qp0_tunnel; | 407 | u32 *qp0_tunnel; |
| @@ -837,7 +838,7 @@ static inline int mlx4_is_slave(struct mlx4_dev *dev) | |||
| 837 | } | 838 | } |
| 838 | 839 | ||
| 839 | int mlx4_buf_alloc(struct mlx4_dev *dev, int size, int max_direct, | 840 | int mlx4_buf_alloc(struct mlx4_dev *dev, int size, int max_direct, |
| 840 | struct mlx4_buf *buf); | 841 | struct mlx4_buf *buf, gfp_t gfp); |
| 841 | void mlx4_buf_free(struct mlx4_dev *dev, int size, struct mlx4_buf *buf); | 842 | void mlx4_buf_free(struct mlx4_dev *dev, int size, struct mlx4_buf *buf); |
| 842 | static inline void *mlx4_buf_offset(struct mlx4_buf *buf, int offset) | 843 | static inline void *mlx4_buf_offset(struct mlx4_buf *buf, int offset) |
| 843 | { | 844 | { |
| @@ -874,9 +875,10 @@ int mlx4_mw_enable(struct mlx4_dev *dev, struct mlx4_mw *mw); | |||
| 874 | int mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt, | 875 | int mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt, |
| 875 | int start_index, int npages, u64 *page_list); | 876 | int start_index, int npages, u64 *page_list); |
| 876 | int mlx4_buf_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt, | 877 | int mlx4_buf_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt, |
| 877 | struct mlx4_buf *buf); | 878 | struct mlx4_buf *buf, gfp_t gfp); |
| 878 | 879 | ||
| 879 | int mlx4_db_alloc(struct mlx4_dev *dev, struct mlx4_db *db, int order); | 880 | int mlx4_db_alloc(struct mlx4_dev *dev, struct mlx4_db *db, int order, |
| 881 | gfp_t gfp); | ||
| 880 | void mlx4_db_free(struct mlx4_dev *dev, struct mlx4_db *db); | 882 | void mlx4_db_free(struct mlx4_dev *dev, struct mlx4_db *db); |
| 881 | 883 | ||
| 882 | int mlx4_alloc_hwq_res(struct mlx4_dev *dev, struct mlx4_hwq_resources *wqres, | 884 | int mlx4_alloc_hwq_res(struct mlx4_dev *dev, struct mlx4_hwq_resources *wqres, |
| @@ -892,7 +894,8 @@ void mlx4_cq_free(struct mlx4_dev *dev, struct mlx4_cq *cq); | |||
| 892 | int mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align, int *base); | 894 | int mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align, int *base); |
| 893 | void mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt); | 895 | void mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt); |
| 894 | 896 | ||
| 895 | int mlx4_qp_alloc(struct mlx4_dev *dev, int qpn, struct mlx4_qp *qp); | 897 | int mlx4_qp_alloc(struct mlx4_dev *dev, int qpn, struct mlx4_qp *qp, |
| 898 | gfp_t gfp); | ||
| 896 | void mlx4_qp_free(struct mlx4_dev *dev, struct mlx4_qp *qp); | 899 | void mlx4_qp_free(struct mlx4_dev *dev, struct mlx4_qp *qp); |
| 897 | 900 | ||
| 898 | int mlx4_srq_alloc(struct mlx4_dev *dev, u32 pdn, u32 cqn, u16 xrcdn, | 901 | int mlx4_srq_alloc(struct mlx4_dev *dev, u32 pdn, u32 cqn, u16 xrcdn, |
| @@ -1234,4 +1237,8 @@ int mlx4_phys_to_slave_port(struct mlx4_dev *dev, int slave, int port); | |||
| 1234 | int mlx4_get_base_gid_ix(struct mlx4_dev *dev, int slave, int port); | 1237 | int mlx4_get_base_gid_ix(struct mlx4_dev *dev, int slave, int port); |
| 1235 | 1238 | ||
| 1236 | int mlx4_config_vxlan_port(struct mlx4_dev *dev, __be16 udp_port); | 1239 | int mlx4_config_vxlan_port(struct mlx4_dev *dev, __be16 udp_port); |
| 1240 | int mlx4_vf_smi_enabled(struct mlx4_dev *dev, int slave, int port); | ||
| 1241 | int mlx4_vf_get_enable_smi_admin(struct mlx4_dev *dev, int slave, int port); | ||
| 1242 | int mlx4_vf_set_enable_smi_admin(struct mlx4_dev *dev, int slave, int port, | ||
| 1243 | int enable); | ||
| 1237 | #endif /* MLX4_DEVICE_H */ | 1244 | #endif /* MLX4_DEVICE_H */ |
diff --git a/include/linux/mlx5/driver.h b/include/linux/mlx5/driver.h index 93cef6313e72..2bce4aad2570 100644 --- a/include/linux/mlx5/driver.h +++ b/include/linux/mlx5/driver.h | |||
| @@ -427,7 +427,6 @@ struct mlx5_core_mr { | |||
| 427 | u64 size; | 427 | u64 size; |
| 428 | u32 key; | 428 | u32 key; |
| 429 | u32 pd; | 429 | u32 pd; |
| 430 | u32 access; | ||
| 431 | }; | 430 | }; |
| 432 | 431 | ||
| 433 | struct mlx5_core_srq { | 432 | struct mlx5_core_srq { |
diff --git a/include/linux/mm.h b/include/linux/mm.h index d6777060449f..e03dd29145a0 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
| @@ -239,6 +239,12 @@ struct vm_operations_struct { | |||
| 239 | */ | 239 | */ |
| 240 | int (*access)(struct vm_area_struct *vma, unsigned long addr, | 240 | int (*access)(struct vm_area_struct *vma, unsigned long addr, |
| 241 | void *buf, int len, int write); | 241 | void *buf, int len, int write); |
| 242 | |||
| 243 | /* Called by the /proc/PID/maps code to ask the vma whether it | ||
| 244 | * has a special name. Returning non-NULL will also cause this | ||
| 245 | * vma to be dumped unconditionally. */ | ||
| 246 | const char *(*name)(struct vm_area_struct *vma); | ||
| 247 | |||
| 242 | #ifdef CONFIG_NUMA | 248 | #ifdef CONFIG_NUMA |
| 243 | /* | 249 | /* |
| 244 | * set_policy() op must add a reference to any non-NULL @new mempolicy | 250 | * set_policy() op must add a reference to any non-NULL @new mempolicy |
| @@ -407,20 +413,25 @@ static inline void compound_unlock_irqrestore(struct page *page, | |||
| 407 | #endif | 413 | #endif |
| 408 | } | 414 | } |
| 409 | 415 | ||
| 416 | static inline struct page *compound_head_by_tail(struct page *tail) | ||
| 417 | { | ||
| 418 | struct page *head = tail->first_page; | ||
| 419 | |||
| 420 | /* | ||
| 421 | * page->first_page may be a dangling pointer to an old | ||
| 422 | * compound page, so recheck that it is still a tail | ||
| 423 | * page before returning. | ||
| 424 | */ | ||
| 425 | smp_rmb(); | ||
| 426 | if (likely(PageTail(tail))) | ||
| 427 | return head; | ||
| 428 | return tail; | ||
| 429 | } | ||
| 430 | |||
| 410 | static inline struct page *compound_head(struct page *page) | 431 | static inline struct page *compound_head(struct page *page) |
| 411 | { | 432 | { |
| 412 | if (unlikely(PageTail(page))) { | 433 | if (unlikely(PageTail(page))) |
| 413 | struct page *head = page->first_page; | 434 | return compound_head_by_tail(page); |
| 414 | |||
| 415 | /* | ||
| 416 | * page->first_page may be a dangling pointer to an old | ||
| 417 | * compound page, so recheck that it is still a tail | ||
| 418 | * page before returning. | ||
| 419 | */ | ||
| 420 | smp_rmb(); | ||
| 421 | if (likely(PageTail(page))) | ||
| 422 | return head; | ||
| 423 | } | ||
| 424 | return page; | 435 | return page; |
| 425 | } | 436 | } |
| 426 | 437 | ||
| @@ -1778,7 +1789,9 @@ extern struct file *get_mm_exe_file(struct mm_struct *mm); | |||
| 1778 | extern int may_expand_vm(struct mm_struct *mm, unsigned long npages); | 1789 | extern int may_expand_vm(struct mm_struct *mm, unsigned long npages); |
| 1779 | extern struct vm_area_struct *_install_special_mapping(struct mm_struct *mm, | 1790 | extern struct vm_area_struct *_install_special_mapping(struct mm_struct *mm, |
| 1780 | unsigned long addr, unsigned long len, | 1791 | unsigned long addr, unsigned long len, |
| 1781 | unsigned long flags, struct page **pages); | 1792 | unsigned long flags, |
| 1793 | const struct vm_special_mapping *spec); | ||
| 1794 | /* This is an obsolete alternative to _install_special_mapping. */ | ||
| 1782 | extern int install_special_mapping(struct mm_struct *mm, | 1795 | extern int install_special_mapping(struct mm_struct *mm, |
| 1783 | unsigned long addr, unsigned long len, | 1796 | unsigned long addr, unsigned long len, |
| 1784 | unsigned long flags, struct page **pages); | 1797 | unsigned long flags, struct page **pages); |
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 8967e20cbe57..96c5750e3110 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h | |||
| @@ -406,7 +406,7 @@ struct mm_struct { | |||
| 406 | spinlock_t ioctx_lock; | 406 | spinlock_t ioctx_lock; |
| 407 | struct kioctx_table __rcu *ioctx_table; | 407 | struct kioctx_table __rcu *ioctx_table; |
| 408 | #endif | 408 | #endif |
| 409 | #ifdef CONFIG_MM_OWNER | 409 | #ifdef CONFIG_MEMCG |
| 410 | /* | 410 | /* |
| 411 | * "owner" points to a task that is regarded as the canonical | 411 | * "owner" points to a task that is regarded as the canonical |
| 412 | * user/owner of this mm. All of the following must be true in | 412 | * user/owner of this mm. All of the following must be true in |
| @@ -510,4 +510,10 @@ static inline void clear_tlb_flush_pending(struct mm_struct *mm) | |||
| 510 | } | 510 | } |
| 511 | #endif | 511 | #endif |
| 512 | 512 | ||
| 513 | struct vm_special_mapping | ||
| 514 | { | ||
| 515 | const char *name; | ||
| 516 | struct page **pages; | ||
| 517 | }; | ||
| 518 | |||
| 513 | #endif /* _LINUX_MM_TYPES_H */ | 519 | #endif /* _LINUX_MM_TYPES_H */ |
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h index b73027298b3a..d424b9de3aff 100644 --- a/include/linux/mmc/card.h +++ b/include/linux/mmc/card.h | |||
| @@ -63,12 +63,12 @@ struct mmc_ext_csd { | |||
| 63 | unsigned int power_off_longtime; /* Units: ms */ | 63 | unsigned int power_off_longtime; /* Units: ms */ |
| 64 | u8 power_off_notification; /* state */ | 64 | u8 power_off_notification; /* state */ |
| 65 | unsigned int hs_max_dtr; | 65 | unsigned int hs_max_dtr; |
| 66 | unsigned int hs200_max_dtr; | ||
| 66 | #define MMC_HIGH_26_MAX_DTR 26000000 | 67 | #define MMC_HIGH_26_MAX_DTR 26000000 |
| 67 | #define MMC_HIGH_52_MAX_DTR 52000000 | 68 | #define MMC_HIGH_52_MAX_DTR 52000000 |
| 68 | #define MMC_HIGH_DDR_MAX_DTR 52000000 | 69 | #define MMC_HIGH_DDR_MAX_DTR 52000000 |
| 69 | #define MMC_HS200_MAX_DTR 200000000 | 70 | #define MMC_HS200_MAX_DTR 200000000 |
| 70 | unsigned int sectors; | 71 | unsigned int sectors; |
| 71 | unsigned int card_type; | ||
| 72 | unsigned int hc_erase_size; /* In sectors */ | 72 | unsigned int hc_erase_size; /* In sectors */ |
| 73 | unsigned int hc_erase_timeout; /* In milliseconds */ | 73 | unsigned int hc_erase_timeout; /* In milliseconds */ |
| 74 | unsigned int sec_trim_mult; /* Secure trim multiplier */ | 74 | unsigned int sec_trim_mult; /* Secure trim multiplier */ |
| @@ -110,6 +110,7 @@ struct mmc_ext_csd { | |||
| 110 | u8 raw_pwr_cl_200_360; /* 237 */ | 110 | u8 raw_pwr_cl_200_360; /* 237 */ |
| 111 | u8 raw_pwr_cl_ddr_52_195; /* 238 */ | 111 | u8 raw_pwr_cl_ddr_52_195; /* 238 */ |
| 112 | u8 raw_pwr_cl_ddr_52_360; /* 239 */ | 112 | u8 raw_pwr_cl_ddr_52_360; /* 239 */ |
| 113 | u8 raw_pwr_cl_ddr_200_360; /* 253 */ | ||
| 113 | u8 raw_bkops_status; /* 246 */ | 114 | u8 raw_bkops_status; /* 246 */ |
| 114 | u8 raw_sectors[4]; /* 212 - 4 bytes */ | 115 | u8 raw_sectors[4]; /* 212 - 4 bytes */ |
| 115 | 116 | ||
| @@ -194,6 +195,7 @@ struct sdio_cis { | |||
| 194 | }; | 195 | }; |
| 195 | 196 | ||
| 196 | struct mmc_host; | 197 | struct mmc_host; |
| 198 | struct mmc_ios; | ||
| 197 | struct sdio_func; | 199 | struct sdio_func; |
| 198 | struct sdio_func_tuple; | 200 | struct sdio_func_tuple; |
| 199 | 201 | ||
| @@ -250,15 +252,11 @@ struct mmc_card { | |||
| 250 | unsigned int state; /* (our) card state */ | 252 | unsigned int state; /* (our) card state */ |
| 251 | #define MMC_STATE_PRESENT (1<<0) /* present in sysfs */ | 253 | #define MMC_STATE_PRESENT (1<<0) /* present in sysfs */ |
| 252 | #define MMC_STATE_READONLY (1<<1) /* card is read-only */ | 254 | #define MMC_STATE_READONLY (1<<1) /* card is read-only */ |
| 253 | #define MMC_STATE_HIGHSPEED (1<<2) /* card is in high speed mode */ | 255 | #define MMC_STATE_BLOCKADDR (1<<2) /* card uses block-addressing */ |
| 254 | #define MMC_STATE_BLOCKADDR (1<<3) /* card uses block-addressing */ | 256 | #define MMC_CARD_SDXC (1<<3) /* card is SDXC */ |
| 255 | #define MMC_STATE_HIGHSPEED_DDR (1<<4) /* card is in high speed mode */ | 257 | #define MMC_CARD_REMOVED (1<<4) /* card has been removed */ |
| 256 | #define MMC_STATE_ULTRAHIGHSPEED (1<<5) /* card is in ultra high speed mode */ | 258 | #define MMC_STATE_DOING_BKOPS (1<<5) /* card is doing BKOPS */ |
| 257 | #define MMC_CARD_SDXC (1<<6) /* card is SDXC */ | 259 | #define MMC_STATE_SUSPENDED (1<<6) /* card is suspended */ |
| 258 | #define MMC_CARD_REMOVED (1<<7) /* card has been removed */ | ||
| 259 | #define MMC_STATE_HIGHSPEED_200 (1<<8) /* card is in HS200 mode */ | ||
| 260 | #define MMC_STATE_DOING_BKOPS (1<<10) /* card is doing BKOPS */ | ||
| 261 | #define MMC_STATE_SUSPENDED (1<<11) /* card is suspended */ | ||
| 262 | unsigned int quirks; /* card quirks */ | 260 | unsigned int quirks; /* card quirks */ |
| 263 | #define MMC_QUIRK_LENIENT_FN0 (1<<0) /* allow SDIO FN0 writes outside of the VS CCCR range */ | 261 | #define MMC_QUIRK_LENIENT_FN0 (1<<0) /* allow SDIO FN0 writes outside of the VS CCCR range */ |
| 264 | #define MMC_QUIRK_BLKSZ_FOR_BYTE_MODE (1<<1) /* use func->cur_blksize */ | 262 | #define MMC_QUIRK_BLKSZ_FOR_BYTE_MODE (1<<1) /* use func->cur_blksize */ |
| @@ -301,6 +299,7 @@ struct mmc_card { | |||
| 301 | struct sdio_func_tuple *tuples; /* unknown common tuples */ | 299 | struct sdio_func_tuple *tuples; /* unknown common tuples */ |
| 302 | 300 | ||
| 303 | unsigned int sd_bus_speed; /* Bus Speed Mode set for the card */ | 301 | unsigned int sd_bus_speed; /* Bus Speed Mode set for the card */ |
| 302 | unsigned int mmc_avail_type; /* supported device type by both host and card */ | ||
| 304 | 303 | ||
| 305 | struct dentry *debugfs_root; | 304 | struct dentry *debugfs_root; |
| 306 | struct mmc_part part[MMC_NUM_PHY_PARTITION]; /* physical partitions */ | 305 | struct mmc_part part[MMC_NUM_PHY_PARTITION]; /* physical partitions */ |
| @@ -353,7 +352,7 @@ struct mmc_fixup { | |||
| 353 | #define CID_OEMID_ANY ((unsigned short) -1) | 352 | #define CID_OEMID_ANY ((unsigned short) -1) |
| 354 | #define CID_NAME_ANY (NULL) | 353 | #define CID_NAME_ANY (NULL) |
| 355 | 354 | ||
| 356 | #define END_FIXUP { 0 } | 355 | #define END_FIXUP { NULL } |
| 357 | 356 | ||
| 358 | #define _FIXUP_EXT(_name, _manfid, _oemid, _rev_start, _rev_end, \ | 357 | #define _FIXUP_EXT(_name, _manfid, _oemid, _rev_start, _rev_end, \ |
| 359 | _cis_vendor, _cis_device, \ | 358 | _cis_vendor, _cis_device, \ |
| @@ -418,11 +417,7 @@ static inline void __maybe_unused remove_quirk(struct mmc_card *card, int data) | |||
| 418 | 417 | ||
| 419 | #define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT) | 418 | #define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT) |
| 420 | #define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY) | 419 | #define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY) |
| 421 | #define mmc_card_highspeed(c) ((c)->state & MMC_STATE_HIGHSPEED) | ||
| 422 | #define mmc_card_hs200(c) ((c)->state & MMC_STATE_HIGHSPEED_200) | ||
| 423 | #define mmc_card_blockaddr(c) ((c)->state & MMC_STATE_BLOCKADDR) | 420 | #define mmc_card_blockaddr(c) ((c)->state & MMC_STATE_BLOCKADDR) |
| 424 | #define mmc_card_ddr_mode(c) ((c)->state & MMC_STATE_HIGHSPEED_DDR) | ||
| 425 | #define mmc_card_uhs(c) ((c)->state & MMC_STATE_ULTRAHIGHSPEED) | ||
| 426 | #define mmc_card_ext_capacity(c) ((c)->state & MMC_CARD_SDXC) | 421 | #define mmc_card_ext_capacity(c) ((c)->state & MMC_CARD_SDXC) |
| 427 | #define mmc_card_removed(c) ((c) && ((c)->state & MMC_CARD_REMOVED)) | 422 | #define mmc_card_removed(c) ((c) && ((c)->state & MMC_CARD_REMOVED)) |
| 428 | #define mmc_card_doing_bkops(c) ((c)->state & MMC_STATE_DOING_BKOPS) | 423 | #define mmc_card_doing_bkops(c) ((c)->state & MMC_STATE_DOING_BKOPS) |
| @@ -430,11 +425,7 @@ static inline void __maybe_unused remove_quirk(struct mmc_card *card, int data) | |||
| 430 | 425 | ||
| 431 | #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT) | 426 | #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT) |
| 432 | #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY) | 427 | #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY) |
| 433 | #define mmc_card_set_highspeed(c) ((c)->state |= MMC_STATE_HIGHSPEED) | ||
| 434 | #define mmc_card_set_hs200(c) ((c)->state |= MMC_STATE_HIGHSPEED_200) | ||
| 435 | #define mmc_card_set_blockaddr(c) ((c)->state |= MMC_STATE_BLOCKADDR) | 428 | #define mmc_card_set_blockaddr(c) ((c)->state |= MMC_STATE_BLOCKADDR) |
| 436 | #define mmc_card_set_ddr_mode(c) ((c)->state |= MMC_STATE_HIGHSPEED_DDR) | ||
| 437 | #define mmc_card_set_uhs(c) ((c)->state |= MMC_STATE_ULTRAHIGHSPEED) | ||
| 438 | #define mmc_card_set_ext_capacity(c) ((c)->state |= MMC_CARD_SDXC) | 429 | #define mmc_card_set_ext_capacity(c) ((c)->state |= MMC_CARD_SDXC) |
| 439 | #define mmc_card_set_removed(c) ((c)->state |= MMC_CARD_REMOVED) | 430 | #define mmc_card_set_removed(c) ((c)->state |= MMC_CARD_REMOVED) |
| 440 | #define mmc_card_set_doing_bkops(c) ((c)->state |= MMC_STATE_DOING_BKOPS) | 431 | #define mmc_card_set_doing_bkops(c) ((c)->state |= MMC_STATE_DOING_BKOPS) |
diff --git a/include/linux/mmc/dw_mmc.h b/include/linux/mmc/dw_mmc.h index 6ce7d2cd3c7a..babaea93bca6 100644 --- a/include/linux/mmc/dw_mmc.h +++ b/include/linux/mmc/dw_mmc.h | |||
| @@ -248,20 +248,6 @@ struct dw_mci_board { | |||
| 248 | /* delay in mS before detecting cards after interrupt */ | 248 | /* delay in mS before detecting cards after interrupt */ |
| 249 | u32 detect_delay_ms; | 249 | u32 detect_delay_ms; |
| 250 | 250 | ||
| 251 | int (*init)(u32 slot_id, irq_handler_t , void *); | ||
| 252 | int (*get_ro)(u32 slot_id); | ||
| 253 | int (*get_cd)(u32 slot_id); | ||
| 254 | int (*get_ocr)(u32 slot_id); | ||
| 255 | int (*get_bus_wd)(u32 slot_id); | ||
| 256 | /* | ||
| 257 | * Enable power to selected slot and set voltage to desired level. | ||
| 258 | * Voltage levels are specified using MMC_VDD_xxx defines defined | ||
| 259 | * in linux/mmc/host.h file. | ||
| 260 | */ | ||
| 261 | void (*setpower)(u32 slot_id, u32 volt); | ||
| 262 | void (*exit)(u32 slot_id); | ||
| 263 | void (*select_slot)(u32 slot_id); | ||
| 264 | |||
| 265 | struct dw_mci_dma_ops *dma_ops; | 251 | struct dw_mci_dma_ops *dma_ops; |
| 266 | struct dma_pdata *data; | 252 | struct dma_pdata *data; |
| 267 | struct block_settings *blk_settings; | 253 | struct block_settings *blk_settings; |
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index cb61ea4d6945..7960424d0bc0 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | #include <linux/fault-inject.h> | 17 | #include <linux/fault-inject.h> |
| 18 | 18 | ||
| 19 | #include <linux/mmc/core.h> | 19 | #include <linux/mmc/core.h> |
| 20 | #include <linux/mmc/card.h> | ||
| 20 | #include <linux/mmc/pm.h> | 21 | #include <linux/mmc/pm.h> |
| 21 | 22 | ||
| 22 | struct mmc_ios { | 23 | struct mmc_ios { |
| @@ -58,13 +59,9 @@ struct mmc_ios { | |||
| 58 | #define MMC_TIMING_UHS_SDR50 5 | 59 | #define MMC_TIMING_UHS_SDR50 5 |
| 59 | #define MMC_TIMING_UHS_SDR104 6 | 60 | #define MMC_TIMING_UHS_SDR104 6 |
| 60 | #define MMC_TIMING_UHS_DDR50 7 | 61 | #define MMC_TIMING_UHS_DDR50 7 |
| 61 | #define MMC_TIMING_MMC_HS200 8 | 62 | #define MMC_TIMING_MMC_DDR52 8 |
| 62 | 63 | #define MMC_TIMING_MMC_HS200 9 | |
| 63 | #define MMC_SDR_MODE 0 | 64 | #define MMC_TIMING_MMC_HS400 10 |
| 64 | #define MMC_1_2V_DDR_MODE 1 | ||
| 65 | #define MMC_1_8V_DDR_MODE 2 | ||
| 66 | #define MMC_1_2V_SDR_MODE 3 | ||
| 67 | #define MMC_1_8V_SDR_MODE 4 | ||
| 68 | 65 | ||
| 69 | unsigned char signal_voltage; /* signalling voltage (1.8V or 3.3V) */ | 66 | unsigned char signal_voltage; /* signalling voltage (1.8V or 3.3V) */ |
| 70 | 67 | ||
| @@ -136,6 +133,9 @@ struct mmc_host_ops { | |||
| 136 | 133 | ||
| 137 | /* The tuning command opcode value is different for SD and eMMC cards */ | 134 | /* The tuning command opcode value is different for SD and eMMC cards */ |
| 138 | int (*execute_tuning)(struct mmc_host *host, u32 opcode); | 135 | int (*execute_tuning)(struct mmc_host *host, u32 opcode); |
| 136 | |||
| 137 | /* Prepare HS400 target operating frequency depending host driver */ | ||
| 138 | int (*prepare_hs400_tuning)(struct mmc_host *host, struct mmc_ios *ios); | ||
| 139 | int (*select_drive_strength)(unsigned int max_dtr, int host_drv, int card_drv); | 139 | int (*select_drive_strength)(unsigned int max_dtr, int host_drv, int card_drv); |
| 140 | void (*hw_reset)(struct mmc_host *host); | 140 | void (*hw_reset)(struct mmc_host *host); |
| 141 | void (*card_event)(struct mmc_host *host); | 141 | void (*card_event)(struct mmc_host *host); |
| @@ -278,6 +278,11 @@ struct mmc_host { | |||
| 278 | #define MMC_CAP2_PACKED_CMD (MMC_CAP2_PACKED_RD | \ | 278 | #define MMC_CAP2_PACKED_CMD (MMC_CAP2_PACKED_RD | \ |
| 279 | MMC_CAP2_PACKED_WR) | 279 | MMC_CAP2_PACKED_WR) |
| 280 | #define MMC_CAP2_NO_PRESCAN_POWERUP (1 << 14) /* Don't power up before scan */ | 280 | #define MMC_CAP2_NO_PRESCAN_POWERUP (1 << 14) /* Don't power up before scan */ |
| 281 | #define MMC_CAP2_HS400_1_8V (1 << 15) /* Can support HS400 1.8V */ | ||
| 282 | #define MMC_CAP2_HS400_1_2V (1 << 16) /* Can support HS400 1.2V */ | ||
| 283 | #define MMC_CAP2_HS400 (MMC_CAP2_HS400_1_8V | \ | ||
| 284 | MMC_CAP2_HS400_1_2V) | ||
| 285 | #define MMC_CAP2_SDIO_IRQ_NOTHREAD (1 << 17) | ||
| 281 | 286 | ||
| 282 | mmc_pm_flag_t pm_caps; /* supported pm features */ | 287 | mmc_pm_flag_t pm_caps; /* supported pm features */ |
| 283 | 288 | ||
| @@ -318,6 +323,8 @@ struct mmc_host { | |||
| 318 | int rescan_disable; /* disable card detection */ | 323 | int rescan_disable; /* disable card detection */ |
| 319 | int rescan_entered; /* used with nonremovable devices */ | 324 | int rescan_entered; /* used with nonremovable devices */ |
| 320 | 325 | ||
| 326 | bool trigger_card_event; /* card_event necessary */ | ||
| 327 | |||
| 321 | struct mmc_card *card; /* device attached to this host */ | 328 | struct mmc_card *card; /* device attached to this host */ |
| 322 | 329 | ||
| 323 | wait_queue_head_t wq; | 330 | wait_queue_head_t wq; |
| @@ -391,12 +398,13 @@ static inline void mmc_signal_sdio_irq(struct mmc_host *host) | |||
| 391 | wake_up_process(host->sdio_irq_thread); | 398 | wake_up_process(host->sdio_irq_thread); |
| 392 | } | 399 | } |
| 393 | 400 | ||
| 401 | void sdio_run_irqs(struct mmc_host *host); | ||
| 402 | |||
| 394 | #ifdef CONFIG_REGULATOR | 403 | #ifdef CONFIG_REGULATOR |
| 395 | int mmc_regulator_get_ocrmask(struct regulator *supply); | 404 | int mmc_regulator_get_ocrmask(struct regulator *supply); |
| 396 | int mmc_regulator_set_ocr(struct mmc_host *mmc, | 405 | int mmc_regulator_set_ocr(struct mmc_host *mmc, |
| 397 | struct regulator *supply, | 406 | struct regulator *supply, |
| 398 | unsigned short vdd_bit); | 407 | unsigned short vdd_bit); |
| 399 | int mmc_regulator_get_supply(struct mmc_host *mmc); | ||
| 400 | #else | 408 | #else |
| 401 | static inline int mmc_regulator_get_ocrmask(struct regulator *supply) | 409 | static inline int mmc_regulator_get_ocrmask(struct regulator *supply) |
| 402 | { | 410 | { |
| @@ -409,13 +417,10 @@ static inline int mmc_regulator_set_ocr(struct mmc_host *mmc, | |||
| 409 | { | 417 | { |
| 410 | return 0; | 418 | return 0; |
| 411 | } | 419 | } |
| 412 | |||
| 413 | static inline int mmc_regulator_get_supply(struct mmc_host *mmc) | ||
| 414 | { | ||
| 415 | return 0; | ||
| 416 | } | ||
| 417 | #endif | 420 | #endif |
| 418 | 421 | ||
| 422 | int mmc_regulator_get_supply(struct mmc_host *mmc); | ||
| 423 | |||
| 419 | int mmc_pm_notify(struct notifier_block *notify_block, unsigned long, void *); | 424 | int mmc_pm_notify(struct notifier_block *notify_block, unsigned long, void *); |
| 420 | 425 | ||
| 421 | static inline int mmc_card_is_removable(struct mmc_host *host) | 426 | static inline int mmc_card_is_removable(struct mmc_host *host) |
| @@ -475,4 +480,32 @@ static inline unsigned int mmc_host_clk_rate(struct mmc_host *host) | |||
| 475 | return host->ios.clock; | 480 | return host->ios.clock; |
| 476 | } | 481 | } |
| 477 | #endif | 482 | #endif |
| 483 | |||
| 484 | static inline int mmc_card_hs(struct mmc_card *card) | ||
| 485 | { | ||
| 486 | return card->host->ios.timing == MMC_TIMING_SD_HS || | ||
| 487 | card->host->ios.timing == MMC_TIMING_MMC_HS; | ||
| 488 | } | ||
| 489 | |||
| 490 | static inline int mmc_card_uhs(struct mmc_card *card) | ||
| 491 | { | ||
| 492 | return card->host->ios.timing >= MMC_TIMING_UHS_SDR12 && | ||
| 493 | card->host->ios.timing <= MMC_TIMING_UHS_DDR50; | ||
| 494 | } | ||
| 495 | |||
| 496 | static inline bool mmc_card_hs200(struct mmc_card *card) | ||
| 497 | { | ||
| 498 | return card->host->ios.timing == MMC_TIMING_MMC_HS200; | ||
| 499 | } | ||
| 500 | |||
| 501 | static inline bool mmc_card_ddr52(struct mmc_card *card) | ||
| 502 | { | ||
| 503 | return card->host->ios.timing == MMC_TIMING_MMC_DDR52; | ||
| 504 | } | ||
| 505 | |||
| 506 | static inline bool mmc_card_hs400(struct mmc_card *card) | ||
| 507 | { | ||
| 508 | return card->host->ios.timing == MMC_TIMING_MMC_HS400; | ||
| 509 | } | ||
| 510 | |||
| 478 | #endif /* LINUX_MMC_HOST_H */ | 511 | #endif /* LINUX_MMC_HOST_H */ |
diff --git a/include/linux/mmc/mmc.h b/include/linux/mmc/mmc.h index 50bcde3677ca..64ec963ed347 100644 --- a/include/linux/mmc/mmc.h +++ b/include/linux/mmc/mmc.h | |||
| @@ -325,6 +325,7 @@ struct _mmc_csd { | |||
| 325 | #define EXT_CSD_POWER_OFF_LONG_TIME 247 /* RO */ | 325 | #define EXT_CSD_POWER_OFF_LONG_TIME 247 /* RO */ |
| 326 | #define EXT_CSD_GENERIC_CMD6_TIME 248 /* RO */ | 326 | #define EXT_CSD_GENERIC_CMD6_TIME 248 /* RO */ |
| 327 | #define EXT_CSD_CACHE_SIZE 249 /* RO, 4 bytes */ | 327 | #define EXT_CSD_CACHE_SIZE 249 /* RO, 4 bytes */ |
| 328 | #define EXT_CSD_PWR_CL_DDR_200_360 253 /* RO */ | ||
| 328 | #define EXT_CSD_TAG_UNIT_SIZE 498 /* RO */ | 329 | #define EXT_CSD_TAG_UNIT_SIZE 498 /* RO */ |
| 329 | #define EXT_CSD_DATA_TAG_SUPPORT 499 /* RO */ | 330 | #define EXT_CSD_DATA_TAG_SUPPORT 499 /* RO */ |
| 330 | #define EXT_CSD_MAX_PACKED_WRITES 500 /* RO */ | 331 | #define EXT_CSD_MAX_PACKED_WRITES 500 /* RO */ |
| @@ -354,18 +355,25 @@ struct _mmc_csd { | |||
| 354 | #define EXT_CSD_CMD_SET_SECURE (1<<1) | 355 | #define EXT_CSD_CMD_SET_SECURE (1<<1) |
| 355 | #define EXT_CSD_CMD_SET_CPSECURE (1<<2) | 356 | #define EXT_CSD_CMD_SET_CPSECURE (1<<2) |
| 356 | 357 | ||
| 357 | #define EXT_CSD_CARD_TYPE_26 (1<<0) /* Card can run at 26MHz */ | 358 | #define EXT_CSD_CARD_TYPE_HS_26 (1<<0) /* Card can run at 26MHz */ |
| 358 | #define EXT_CSD_CARD_TYPE_52 (1<<1) /* Card can run at 52MHz */ | 359 | #define EXT_CSD_CARD_TYPE_HS_52 (1<<1) /* Card can run at 52MHz */ |
| 359 | #define EXT_CSD_CARD_TYPE_MASK 0x3F /* Mask out reserved bits */ | 360 | #define EXT_CSD_CARD_TYPE_HS (EXT_CSD_CARD_TYPE_HS_26 | \ |
| 361 | EXT_CSD_CARD_TYPE_HS_52) | ||
| 360 | #define EXT_CSD_CARD_TYPE_DDR_1_8V (1<<2) /* Card can run at 52MHz */ | 362 | #define EXT_CSD_CARD_TYPE_DDR_1_8V (1<<2) /* Card can run at 52MHz */ |
| 361 | /* DDR mode @1.8V or 3V I/O */ | 363 | /* DDR mode @1.8V or 3V I/O */ |
| 362 | #define EXT_CSD_CARD_TYPE_DDR_1_2V (1<<3) /* Card can run at 52MHz */ | 364 | #define EXT_CSD_CARD_TYPE_DDR_1_2V (1<<3) /* Card can run at 52MHz */ |
| 363 | /* DDR mode @1.2V I/O */ | 365 | /* DDR mode @1.2V I/O */ |
| 364 | #define EXT_CSD_CARD_TYPE_DDR_52 (EXT_CSD_CARD_TYPE_DDR_1_8V \ | 366 | #define EXT_CSD_CARD_TYPE_DDR_52 (EXT_CSD_CARD_TYPE_DDR_1_8V \ |
| 365 | | EXT_CSD_CARD_TYPE_DDR_1_2V) | 367 | | EXT_CSD_CARD_TYPE_DDR_1_2V) |
| 366 | #define EXT_CSD_CARD_TYPE_SDR_1_8V (1<<4) /* Card can run at 200MHz */ | 368 | #define EXT_CSD_CARD_TYPE_HS200_1_8V (1<<4) /* Card can run at 200MHz */ |
| 367 | #define EXT_CSD_CARD_TYPE_SDR_1_2V (1<<5) /* Card can run at 200MHz */ | 369 | #define EXT_CSD_CARD_TYPE_HS200_1_2V (1<<5) /* Card can run at 200MHz */ |
| 368 | /* SDR mode @1.2V I/O */ | 370 | /* SDR mode @1.2V I/O */ |
| 371 | #define EXT_CSD_CARD_TYPE_HS200 (EXT_CSD_CARD_TYPE_HS200_1_8V | \ | ||
| 372 | EXT_CSD_CARD_TYPE_HS200_1_2V) | ||
| 373 | #define EXT_CSD_CARD_TYPE_HS400_1_8V (1<<6) /* Card can run at 200MHz DDR, 1.8V */ | ||
| 374 | #define EXT_CSD_CARD_TYPE_HS400_1_2V (1<<7) /* Card can run at 200MHz DDR, 1.2V */ | ||
| 375 | #define EXT_CSD_CARD_TYPE_HS400 (EXT_CSD_CARD_TYPE_HS400_1_8V | \ | ||
| 376 | EXT_CSD_CARD_TYPE_HS400_1_2V) | ||
| 369 | 377 | ||
| 370 | #define EXT_CSD_BUS_WIDTH_1 0 /* Card is in 1 bit mode */ | 378 | #define EXT_CSD_BUS_WIDTH_1 0 /* Card is in 1 bit mode */ |
| 371 | #define EXT_CSD_BUS_WIDTH_4 1 /* Card is in 4 bit mode */ | 379 | #define EXT_CSD_BUS_WIDTH_4 1 /* Card is in 4 bit mode */ |
| @@ -373,6 +381,11 @@ struct _mmc_csd { | |||
| 373 | #define EXT_CSD_DDR_BUS_WIDTH_4 5 /* Card is in 4 bit DDR mode */ | 381 | #define EXT_CSD_DDR_BUS_WIDTH_4 5 /* Card is in 4 bit DDR mode */ |
| 374 | #define EXT_CSD_DDR_BUS_WIDTH_8 6 /* Card is in 8 bit DDR mode */ | 382 | #define EXT_CSD_DDR_BUS_WIDTH_8 6 /* Card is in 8 bit DDR mode */ |
| 375 | 383 | ||
| 384 | #define EXT_CSD_TIMING_BC 0 /* Backwards compatility */ | ||
| 385 | #define EXT_CSD_TIMING_HS 1 /* High speed */ | ||
| 386 | #define EXT_CSD_TIMING_HS200 2 /* HS200 */ | ||
| 387 | #define EXT_CSD_TIMING_HS400 3 /* HS400 */ | ||
| 388 | |||
| 376 | #define EXT_CSD_SEC_ER_EN BIT(0) | 389 | #define EXT_CSD_SEC_ER_EN BIT(0) |
| 377 | #define EXT_CSD_SEC_BD_BLK_EN BIT(2) | 390 | #define EXT_CSD_SEC_BD_BLK_EN BIT(2) |
| 378 | #define EXT_CSD_SEC_GB_CL_EN BIT(4) | 391 | #define EXT_CSD_SEC_GB_CL_EN BIT(4) |
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h index 7be12b883485..08abe9941884 100644 --- a/include/linux/mmc/sdhci.h +++ b/include/linux/mmc/sdhci.h | |||
| @@ -57,12 +57,8 @@ struct sdhci_host { | |||
| 57 | #define SDHCI_QUIRK_BROKEN_CARD_DETECTION (1<<15) | 57 | #define SDHCI_QUIRK_BROKEN_CARD_DETECTION (1<<15) |
| 58 | /* Controller reports inverted write-protect state */ | 58 | /* Controller reports inverted write-protect state */ |
| 59 | #define SDHCI_QUIRK_INVERTED_WRITE_PROTECT (1<<16) | 59 | #define SDHCI_QUIRK_INVERTED_WRITE_PROTECT (1<<16) |
| 60 | /* Controller has nonstandard clock management */ | ||
| 61 | #define SDHCI_QUIRK_NONSTANDARD_CLOCK (1<<17) | ||
| 62 | /* Controller does not like fast PIO transfers */ | 60 | /* Controller does not like fast PIO transfers */ |
| 63 | #define SDHCI_QUIRK_PIO_NEEDS_DELAY (1<<18) | 61 | #define SDHCI_QUIRK_PIO_NEEDS_DELAY (1<<18) |
| 64 | /* Controller losing signal/interrupt enable states after reset */ | ||
| 65 | #define SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET (1<<19) | ||
| 66 | /* Controller has to be forced to use block size of 2048 bytes */ | 62 | /* Controller has to be forced to use block size of 2048 bytes */ |
| 67 | #define SDHCI_QUIRK_FORCE_BLK_SZ_2048 (1<<20) | 63 | #define SDHCI_QUIRK_FORCE_BLK_SZ_2048 (1<<20) |
| 68 | /* Controller cannot do multi-block transfers */ | 64 | /* Controller cannot do multi-block transfers */ |
| @@ -147,6 +143,7 @@ struct sdhci_host { | |||
| 147 | 143 | ||
| 148 | bool runtime_suspended; /* Host is runtime suspended */ | 144 | bool runtime_suspended; /* Host is runtime suspended */ |
| 149 | bool bus_on; /* Bus power prevents runtime suspend */ | 145 | bool bus_on; /* Bus power prevents runtime suspend */ |
| 146 | bool preset_enabled; /* Preset is enabled */ | ||
| 150 | 147 | ||
| 151 | struct mmc_request *mrq; /* Current request */ | 148 | struct mmc_request *mrq; /* Current request */ |
| 152 | struct mmc_command *cmd; /* Current command */ | 149 | struct mmc_command *cmd; /* Current command */ |
| @@ -164,8 +161,7 @@ struct sdhci_host { | |||
| 164 | dma_addr_t adma_addr; /* Mapped ADMA descr. table */ | 161 | dma_addr_t adma_addr; /* Mapped ADMA descr. table */ |
| 165 | dma_addr_t align_addr; /* Mapped bounce buffer */ | 162 | dma_addr_t align_addr; /* Mapped bounce buffer */ |
| 166 | 163 | ||
| 167 | struct tasklet_struct card_tasklet; /* Tasklet structures */ | 164 | struct tasklet_struct finish_tasklet; /* Tasklet structures */ |
| 168 | struct tasklet_struct finish_tasklet; | ||
| 169 | 165 | ||
| 170 | struct timer_list timer; /* Timer for timeouts */ | 166 | struct timer_list timer; /* Timer for timeouts */ |
| 171 | 167 | ||
| @@ -177,6 +173,13 @@ struct sdhci_host { | |||
| 177 | unsigned int ocr_avail_mmc; | 173 | unsigned int ocr_avail_mmc; |
| 178 | u32 ocr_mask; /* available voltages */ | 174 | u32 ocr_mask; /* available voltages */ |
| 179 | 175 | ||
| 176 | unsigned timing; /* Current timing */ | ||
| 177 | |||
| 178 | u32 thread_isr; | ||
| 179 | |||
| 180 | /* cached registers */ | ||
| 181 | u32 ier; | ||
| 182 | |||
| 180 | wait_queue_head_t buf_ready_int; /* Waitqueue for Buffer Read Ready interrupt */ | 183 | wait_queue_head_t buf_ready_int; /* Waitqueue for Buffer Read Ready interrupt */ |
| 181 | unsigned int tuning_done; /* Condition flag set when CMD19 succeeds */ | 184 | unsigned int tuning_done; /* Condition flag set when CMD19 succeeds */ |
| 182 | 185 | ||
diff --git a/include/linux/mmdebug.h b/include/linux/mmdebug.h index 2d57efa64cc1..edd82a105220 100644 --- a/include/linux/mmdebug.h +++ b/include/linux/mmdebug.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef LINUX_MM_DEBUG_H | 1 | #ifndef LINUX_MM_DEBUG_H |
| 2 | #define LINUX_MM_DEBUG_H 1 | 2 | #define LINUX_MM_DEBUG_H 1 |
| 3 | 3 | ||
| 4 | #include <linux/stringify.h> | ||
| 5 | |||
| 4 | struct page; | 6 | struct page; |
| 5 | 7 | ||
| 6 | extern void dump_page(struct page *page, const char *reason); | 8 | extern void dump_page(struct page *page, const char *reason); |
| @@ -9,11 +11,20 @@ extern void dump_page_badflags(struct page *page, const char *reason, | |||
| 9 | 11 | ||
| 10 | #ifdef CONFIG_DEBUG_VM | 12 | #ifdef CONFIG_DEBUG_VM |
| 11 | #define VM_BUG_ON(cond) BUG_ON(cond) | 13 | #define VM_BUG_ON(cond) BUG_ON(cond) |
| 12 | #define VM_BUG_ON_PAGE(cond, page) \ | 14 | #define VM_BUG_ON_PAGE(cond, page) \ |
| 13 | do { if (unlikely(cond)) { dump_page(page, NULL); BUG(); } } while (0) | 15 | do { \ |
| 16 | if (unlikely(cond)) { \ | ||
| 17 | dump_page(page, "VM_BUG_ON_PAGE(" __stringify(cond)")");\ | ||
| 18 | BUG(); \ | ||
| 19 | } \ | ||
| 20 | } while (0) | ||
| 21 | #define VM_WARN_ON(cond) WARN_ON(cond) | ||
| 22 | #define VM_WARN_ON_ONCE(cond) WARN_ON_ONCE(cond) | ||
| 14 | #else | 23 | #else |
| 15 | #define VM_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond) | 24 | #define VM_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond) |
| 16 | #define VM_BUG_ON_PAGE(cond, page) VM_BUG_ON(cond) | 25 | #define VM_BUG_ON_PAGE(cond, page) VM_BUG_ON(cond) |
| 26 | #define VM_WARN_ON(cond) BUILD_BUG_ON_INVALID(cond) | ||
| 27 | #define VM_WARN_ON_ONCE(cond) BUILD_BUG_ON_INVALID(cond) | ||
| 17 | #endif | 28 | #endif |
| 18 | 29 | ||
| 19 | #ifdef CONFIG_DEBUG_VIRTUAL | 30 | #ifdef CONFIG_DEBUG_VIRTUAL |
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index fac5509c18f0..6cbd1b6c3d20 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
| @@ -75,9 +75,18 @@ enum { | |||
| 75 | 75 | ||
| 76 | extern int page_group_by_mobility_disabled; | 76 | extern int page_group_by_mobility_disabled; |
| 77 | 77 | ||
| 78 | static inline int get_pageblock_migratetype(struct page *page) | 78 | #define NR_MIGRATETYPE_BITS (PB_migrate_end - PB_migrate + 1) |
| 79 | #define MIGRATETYPE_MASK ((1UL << NR_MIGRATETYPE_BITS) - 1) | ||
| 80 | |||
| 81 | #define get_pageblock_migratetype(page) \ | ||
| 82 | get_pfnblock_flags_mask(page, page_to_pfn(page), \ | ||
| 83 | PB_migrate_end, MIGRATETYPE_MASK) | ||
| 84 | |||
| 85 | static inline int get_pfnblock_migratetype(struct page *page, unsigned long pfn) | ||
| 79 | { | 86 | { |
| 80 | return get_pageblock_flags_group(page, PB_migrate, PB_migrate_end); | 87 | BUILD_BUG_ON(PB_migrate_end - PB_migrate != 2); |
| 88 | return get_pfnblock_flags_mask(page, pfn, PB_migrate_end, | ||
| 89 | MIGRATETYPE_MASK); | ||
| 81 | } | 90 | } |
| 82 | 91 | ||
| 83 | struct free_area { | 92 | struct free_area { |
| @@ -360,9 +369,10 @@ struct zone { | |||
| 360 | /* Set to true when the PG_migrate_skip bits should be cleared */ | 369 | /* Set to true when the PG_migrate_skip bits should be cleared */ |
| 361 | bool compact_blockskip_flush; | 370 | bool compact_blockskip_flush; |
| 362 | 371 | ||
| 363 | /* pfns where compaction scanners should start */ | 372 | /* pfn where compaction free scanner should start */ |
| 364 | unsigned long compact_cached_free_pfn; | 373 | unsigned long compact_cached_free_pfn; |
| 365 | unsigned long compact_cached_migrate_pfn; | 374 | /* pfn where async and sync compaction migration scanner should start */ |
| 375 | unsigned long compact_cached_migrate_pfn[2]; | ||
| 366 | #endif | 376 | #endif |
| 367 | #ifdef CONFIG_MEMORY_HOTPLUG | 377 | #ifdef CONFIG_MEMORY_HOTPLUG |
| 368 | /* see spanned/present_pages for more description */ | 378 | /* see spanned/present_pages for more description */ |
| @@ -481,9 +491,8 @@ struct zone { | |||
| 481 | * give them a chance of being in the same cacheline. | 491 | * give them a chance of being in the same cacheline. |
| 482 | * | 492 | * |
| 483 | * Write access to present_pages at runtime should be protected by | 493 | * Write access to present_pages at runtime should be protected by |
| 484 | * lock_memory_hotplug()/unlock_memory_hotplug(). Any reader who can't | 494 | * mem_hotplug_begin/end(). Any reader who can't tolerant drift of |
| 485 | * tolerant drift of present_pages should hold memory hotplug lock to | 495 | * present_pages should get_online_mems() to get a stable value. |
| 486 | * get a stable value. | ||
| 487 | * | 496 | * |
| 488 | * Read access to managed_pages should be safe because it's unsigned | 497 | * Read access to managed_pages should be safe because it's unsigned |
| 489 | * long. Write access to zone->managed_pages and totalram_pages are | 498 | * long. Write access to zone->managed_pages and totalram_pages are |
| @@ -763,10 +772,10 @@ typedef struct pglist_data { | |||
| 763 | unsigned long node_spanned_pages; /* total size of physical page | 772 | unsigned long node_spanned_pages; /* total size of physical page |
| 764 | range, including holes */ | 773 | range, including holes */ |
| 765 | int node_id; | 774 | int node_id; |
| 766 | nodemask_t reclaim_nodes; /* Nodes allowed to reclaim from */ | ||
| 767 | wait_queue_head_t kswapd_wait; | 775 | wait_queue_head_t kswapd_wait; |
| 768 | wait_queue_head_t pfmemalloc_wait; | 776 | wait_queue_head_t pfmemalloc_wait; |
| 769 | struct task_struct *kswapd; /* Protected by lock_memory_hotplug() */ | 777 | struct task_struct *kswapd; /* Protected by |
| 778 | mem_hotplug_begin/end() */ | ||
| 770 | int kswapd_max_order; | 779 | int kswapd_max_order; |
| 771 | enum zone_type classzone_idx; | 780 | enum zone_type classzone_idx; |
| 772 | #ifdef CONFIG_NUMA_BALANCING | 781 | #ifdef CONFIG_NUMA_BALANCING |
| @@ -808,10 +817,10 @@ static inline bool pgdat_is_empty(pg_data_t *pgdat) | |||
| 808 | extern struct mutex zonelists_mutex; | 817 | extern struct mutex zonelists_mutex; |
| 809 | void build_all_zonelists(pg_data_t *pgdat, struct zone *zone); | 818 | void build_all_zonelists(pg_data_t *pgdat, struct zone *zone); |
| 810 | void wakeup_kswapd(struct zone *zone, int order, enum zone_type classzone_idx); | 819 | void wakeup_kswapd(struct zone *zone, int order, enum zone_type classzone_idx); |
| 811 | bool zone_watermark_ok(struct zone *z, int order, unsigned long mark, | 820 | bool zone_watermark_ok(struct zone *z, unsigned int order, |
| 812 | int classzone_idx, int alloc_flags); | 821 | unsigned long mark, int classzone_idx, int alloc_flags); |
| 813 | bool zone_watermark_ok_safe(struct zone *z, int order, unsigned long mark, | 822 | bool zone_watermark_ok_safe(struct zone *z, unsigned int order, |
| 814 | int classzone_idx, int alloc_flags); | 823 | unsigned long mark, int classzone_idx, int alloc_flags); |
| 815 | enum memmap_context { | 824 | enum memmap_context { |
| 816 | MEMMAP_EARLY, | 825 | MEMMAP_EARLY, |
| 817 | MEMMAP_HOTPLUG, | 826 | MEMMAP_HOTPLUG, |
diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h index 204a67743804..b1990c5524e1 100644 --- a/include/linux/moduleparam.h +++ b/include/linux/moduleparam.h | |||
| @@ -321,7 +321,7 @@ extern bool parameq(const char *name1, const char *name2); | |||
| 321 | extern bool parameqn(const char *name1, const char *name2, size_t n); | 321 | extern bool parameqn(const char *name1, const char *name2, size_t n); |
| 322 | 322 | ||
| 323 | /* Called on module insert or kernel boot */ | 323 | /* Called on module insert or kernel boot */ |
| 324 | extern int parse_args(const char *name, | 324 | extern char *parse_args(const char *name, |
| 325 | char *args, | 325 | char *args, |
| 326 | const struct kernel_param *params, | 326 | const struct kernel_param *params, |
| 327 | unsigned num, | 327 | unsigned num, |
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 450d61ec7f06..2f0af2891f0f 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h | |||
| @@ -176,6 +176,11 @@ typedef enum { | |||
| 176 | /* Chip may not exist, so silence any errors in scan */ | 176 | /* Chip may not exist, so silence any errors in scan */ |
| 177 | #define NAND_SCAN_SILENT_NODEV 0x00040000 | 177 | #define NAND_SCAN_SILENT_NODEV 0x00040000 |
| 178 | /* | 178 | /* |
| 179 | * This option could be defined by controller drivers to protect against | ||
| 180 | * kmap'ed, vmalloc'ed highmem buffers being passed from upper layers | ||
| 181 | */ | ||
| 182 | #define NAND_USE_BOUNCE_BUFFER 0x00080000 | ||
| 183 | /* | ||
| 179 | * Autodetect nand buswidth with readid/onfi. | 184 | * Autodetect nand buswidth with readid/onfi. |
| 180 | * This suppose the driver will configure the hardware in 8 bits mode | 185 | * This suppose the driver will configure the hardware in 8 bits mode |
| 181 | * when calling nand_scan_ident, and update its configuration | 186 | * when calling nand_scan_ident, and update its configuration |
| @@ -552,8 +557,7 @@ struct nand_buffers { | |||
| 552 | * @ecc: [BOARDSPECIFIC] ECC control structure | 557 | * @ecc: [BOARDSPECIFIC] ECC control structure |
| 553 | * @buffers: buffer structure for read/write | 558 | * @buffers: buffer structure for read/write |
| 554 | * @hwcontrol: platform-specific hardware control structure | 559 | * @hwcontrol: platform-specific hardware control structure |
| 555 | * @erase_cmd: [INTERN] erase command write function, selectable due | 560 | * @erase: [REPLACEABLE] erase function |
| 556 | * to AND support. | ||
| 557 | * @scan_bbt: [REPLACEABLE] function to scan bad block table | 561 | * @scan_bbt: [REPLACEABLE] function to scan bad block table |
| 558 | * @chip_delay: [BOARDSPECIFIC] chip dependent delay for transferring | 562 | * @chip_delay: [BOARDSPECIFIC] chip dependent delay for transferring |
| 559 | * data from array to read regs (tR). | 563 | * data from array to read regs (tR). |
| @@ -637,7 +641,7 @@ struct nand_chip { | |||
| 637 | void (*cmdfunc)(struct mtd_info *mtd, unsigned command, int column, | 641 | void (*cmdfunc)(struct mtd_info *mtd, unsigned command, int column, |
| 638 | int page_addr); | 642 | int page_addr); |
| 639 | int(*waitfunc)(struct mtd_info *mtd, struct nand_chip *this); | 643 | int(*waitfunc)(struct mtd_info *mtd, struct nand_chip *this); |
| 640 | void (*erase_cmd)(struct mtd_info *mtd, int page); | 644 | int (*erase)(struct mtd_info *mtd, int page); |
| 641 | int (*scan_bbt)(struct mtd_info *mtd); | 645 | int (*scan_bbt)(struct mtd_info *mtd); |
| 642 | int (*errstat)(struct mtd_info *mtd, struct nand_chip *this, int state, | 646 | int (*errstat)(struct mtd_info *mtd, struct nand_chip *this, int state, |
| 643 | int status, int page); | 647 | int status, int page); |
diff --git a/include/linux/mtd/pfow.h b/include/linux/mtd/pfow.h index b730d4f84655..42ff7ff09bf5 100644 --- a/include/linux/mtd/pfow.h +++ b/include/linux/mtd/pfow.h | |||
| @@ -101,9 +101,6 @@ static inline void send_pfow_command(struct map_info *map, | |||
| 101 | unsigned long len, map_word *datum) | 101 | unsigned long len, map_word *datum) |
| 102 | { | 102 | { |
| 103 | int bits_per_chip = map_bankwidth(map) * 8; | 103 | int bits_per_chip = map_bankwidth(map) * 8; |
| 104 | int chipnum; | ||
| 105 | struct lpddr_private *lpddr = map->fldrv_priv; | ||
| 106 | chipnum = adr >> lpddr->chipshift; | ||
| 107 | 104 | ||
| 108 | map_write(map, CMD(cmd_code), map->pfow_base + PFOW_COMMAND_CODE); | 105 | map_write(map, CMD(cmd_code), map->pfow_base + PFOW_COMMAND_CODE); |
| 109 | map_write(map, CMD(adr & ((1<<bits_per_chip) - 1)), | 106 | map_write(map, CMD(adr & ((1<<bits_per_chip) - 1)), |
diff --git a/include/linux/mtd/spi-nor.h b/include/linux/mtd/spi-nor.h new file mode 100644 index 000000000000..53241842a7ab --- /dev/null +++ b/include/linux/mtd/spi-nor.h | |||
| @@ -0,0 +1,214 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2014 Freescale Semiconductor, Inc. | ||
| 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 | |||
| 10 | #ifndef __LINUX_MTD_SPI_NOR_H | ||
| 11 | #define __LINUX_MTD_SPI_NOR_H | ||
| 12 | |||
| 13 | /* | ||
| 14 | * Note on opcode nomenclature: some opcodes have a format like | ||
| 15 | * SPINOR_OP_FUNCTION{4,}_x_y_z. The numbers x, y, and z stand for the number | ||
| 16 | * of I/O lines used for the opcode, address, and data (respectively). The | ||
| 17 | * FUNCTION has an optional suffix of '4', to represent an opcode which | ||
| 18 | * requires a 4-byte (32-bit) address. | ||
| 19 | */ | ||
| 20 | |||
| 21 | /* Flash opcodes. */ | ||
| 22 | #define SPINOR_OP_WREN 0x06 /* Write enable */ | ||
| 23 | #define SPINOR_OP_RDSR 0x05 /* Read status register */ | ||
| 24 | #define SPINOR_OP_WRSR 0x01 /* Write status register 1 byte */ | ||
| 25 | #define SPINOR_OP_READ 0x03 /* Read data bytes (low frequency) */ | ||
| 26 | #define SPINOR_OP_READ_FAST 0x0b /* Read data bytes (high frequency) */ | ||
| 27 | #define SPINOR_OP_READ_1_1_2 0x3b /* Read data bytes (Dual SPI) */ | ||
| 28 | #define SPINOR_OP_READ_1_1_4 0x6b /* Read data bytes (Quad SPI) */ | ||
| 29 | #define SPINOR_OP_PP 0x02 /* Page program (up to 256 bytes) */ | ||
| 30 | #define SPINOR_OP_BE_4K 0x20 /* Erase 4KiB block */ | ||
| 31 | #define SPINOR_OP_BE_4K_PMC 0xd7 /* Erase 4KiB block on PMC chips */ | ||
| 32 | #define SPINOR_OP_BE_32K 0x52 /* Erase 32KiB block */ | ||
| 33 | #define SPINOR_OP_CHIP_ERASE 0xc7 /* Erase whole flash chip */ | ||
| 34 | #define SPINOR_OP_SE 0xd8 /* Sector erase (usually 64KiB) */ | ||
| 35 | #define SPINOR_OP_RDID 0x9f /* Read JEDEC ID */ | ||
| 36 | #define SPINOR_OP_RDCR 0x35 /* Read configuration register */ | ||
| 37 | |||
| 38 | /* 4-byte address opcodes - used on Spansion and some Macronix flashes. */ | ||
| 39 | #define SPINOR_OP_READ4 0x13 /* Read data bytes (low frequency) */ | ||
| 40 | #define SPINOR_OP_READ4_FAST 0x0c /* Read data bytes (high frequency) */ | ||
| 41 | #define SPINOR_OP_READ4_1_1_2 0x3c /* Read data bytes (Dual SPI) */ | ||
| 42 | #define SPINOR_OP_READ4_1_1_4 0x6c /* Read data bytes (Quad SPI) */ | ||
| 43 | #define SPINOR_OP_PP_4B 0x12 /* Page program (up to 256 bytes) */ | ||
| 44 | #define SPINOR_OP_SE_4B 0xdc /* Sector erase (usually 64KiB) */ | ||
| 45 | |||
| 46 | /* Used for SST flashes only. */ | ||
| 47 | #define SPINOR_OP_BP 0x02 /* Byte program */ | ||
| 48 | #define SPINOR_OP_WRDI 0x04 /* Write disable */ | ||
| 49 | #define SPINOR_OP_AAI_WP 0xad /* Auto address increment word program */ | ||
| 50 | |||
| 51 | /* Used for Macronix and Winbond flashes. */ | ||
| 52 | #define SPINOR_OP_EN4B 0xb7 /* Enter 4-byte mode */ | ||
| 53 | #define SPINOR_OP_EX4B 0xe9 /* Exit 4-byte mode */ | ||
| 54 | |||
| 55 | /* Used for Spansion flashes only. */ | ||
| 56 | #define SPINOR_OP_BRWR 0x17 /* Bank register write */ | ||
| 57 | |||
| 58 | /* Status Register bits. */ | ||
| 59 | #define SR_WIP 1 /* Write in progress */ | ||
| 60 | #define SR_WEL 2 /* Write enable latch */ | ||
| 61 | /* meaning of other SR_* bits may differ between vendors */ | ||
| 62 | #define SR_BP0 4 /* Block protect 0 */ | ||
| 63 | #define SR_BP1 8 /* Block protect 1 */ | ||
| 64 | #define SR_BP2 0x10 /* Block protect 2 */ | ||
| 65 | #define SR_SRWD 0x80 /* SR write protect */ | ||
| 66 | |||
| 67 | #define SR_QUAD_EN_MX 0x40 /* Macronix Quad I/O */ | ||
| 68 | |||
| 69 | /* Configuration Register bits. */ | ||
| 70 | #define CR_QUAD_EN_SPAN 0x2 /* Spansion Quad I/O */ | ||
| 71 | |||
| 72 | enum read_mode { | ||
| 73 | SPI_NOR_NORMAL = 0, | ||
| 74 | SPI_NOR_FAST, | ||
| 75 | SPI_NOR_DUAL, | ||
| 76 | SPI_NOR_QUAD, | ||
| 77 | }; | ||
| 78 | |||
| 79 | /** | ||
| 80 | * struct spi_nor_xfer_cfg - Structure for defining a Serial Flash transfer | ||
| 81 | * @wren: command for "Write Enable", or 0x00 for not required | ||
| 82 | * @cmd: command for operation | ||
| 83 | * @cmd_pins: number of pins to send @cmd (1, 2, 4) | ||
| 84 | * @addr: address for operation | ||
| 85 | * @addr_pins: number of pins to send @addr (1, 2, 4) | ||
| 86 | * @addr_width: number of address bytes | ||
| 87 | * (3,4, or 0 for address not required) | ||
| 88 | * @mode: mode data | ||
| 89 | * @mode_pins: number of pins to send @mode (1, 2, 4) | ||
| 90 | * @mode_cycles: number of mode cycles (0 for mode not required) | ||
| 91 | * @dummy_cycles: number of dummy cycles (0 for dummy not required) | ||
| 92 | */ | ||
| 93 | struct spi_nor_xfer_cfg { | ||
| 94 | u8 wren; | ||
| 95 | u8 cmd; | ||
| 96 | u8 cmd_pins; | ||
| 97 | u32 addr; | ||
| 98 | u8 addr_pins; | ||
| 99 | u8 addr_width; | ||
| 100 | u8 mode; | ||
| 101 | u8 mode_pins; | ||
| 102 | u8 mode_cycles; | ||
| 103 | u8 dummy_cycles; | ||
| 104 | }; | ||
| 105 | |||
| 106 | #define SPI_NOR_MAX_CMD_SIZE 8 | ||
| 107 | enum spi_nor_ops { | ||
| 108 | SPI_NOR_OPS_READ = 0, | ||
| 109 | SPI_NOR_OPS_WRITE, | ||
| 110 | SPI_NOR_OPS_ERASE, | ||
| 111 | SPI_NOR_OPS_LOCK, | ||
| 112 | SPI_NOR_OPS_UNLOCK, | ||
| 113 | }; | ||
| 114 | |||
| 115 | /** | ||
| 116 | * struct spi_nor - Structure for defining a the SPI NOR layer | ||
| 117 | * @mtd: point to a mtd_info structure | ||
| 118 | * @lock: the lock for the read/write/erase/lock/unlock operations | ||
| 119 | * @dev: point to a spi device, or a spi nor controller device. | ||
| 120 | * @page_size: the page size of the SPI NOR | ||
| 121 | * @addr_width: number of address bytes | ||
| 122 | * @erase_opcode: the opcode for erasing a sector | ||
| 123 | * @read_opcode: the read opcode | ||
| 124 | * @read_dummy: the dummy needed by the read operation | ||
| 125 | * @program_opcode: the program opcode | ||
| 126 | * @flash_read: the mode of the read | ||
| 127 | * @sst_write_second: used by the SST write operation | ||
| 128 | * @cfg: used by the read_xfer/write_xfer | ||
| 129 | * @cmd_buf: used by the write_reg | ||
| 130 | * @prepare: [OPTIONAL] do some preparations for the | ||
| 131 | * read/write/erase/lock/unlock operations | ||
| 132 | * @unprepare: [OPTIONAL] do some post work after the | ||
| 133 | * read/write/erase/lock/unlock operations | ||
| 134 | * @read_xfer: [OPTIONAL] the read fundamental primitive | ||
| 135 | * @write_xfer: [OPTIONAL] the writefundamental primitive | ||
| 136 | * @read_reg: [DRIVER-SPECIFIC] read out the register | ||
| 137 | * @write_reg: [DRIVER-SPECIFIC] write data to the register | ||
| 138 | * @read_id: [REPLACEABLE] read out the ID data, and find | ||
| 139 | * the proper spi_device_id | ||
| 140 | * @wait_till_ready: [REPLACEABLE] wait till the NOR becomes ready | ||
| 141 | * @read: [DRIVER-SPECIFIC] read data from the SPI NOR | ||
| 142 | * @write: [DRIVER-SPECIFIC] write data to the SPI NOR | ||
| 143 | * @erase: [DRIVER-SPECIFIC] erase a sector of the SPI NOR | ||
| 144 | * at the offset @offs | ||
| 145 | * @priv: the private data | ||
| 146 | */ | ||
| 147 | struct spi_nor { | ||
| 148 | struct mtd_info *mtd; | ||
| 149 | struct mutex lock; | ||
| 150 | struct device *dev; | ||
| 151 | u32 page_size; | ||
| 152 | u8 addr_width; | ||
| 153 | u8 erase_opcode; | ||
| 154 | u8 read_opcode; | ||
| 155 | u8 read_dummy; | ||
| 156 | u8 program_opcode; | ||
| 157 | enum read_mode flash_read; | ||
| 158 | bool sst_write_second; | ||
| 159 | struct spi_nor_xfer_cfg cfg; | ||
| 160 | u8 cmd_buf[SPI_NOR_MAX_CMD_SIZE]; | ||
| 161 | |||
| 162 | int (*prepare)(struct spi_nor *nor, enum spi_nor_ops ops); | ||
| 163 | void (*unprepare)(struct spi_nor *nor, enum spi_nor_ops ops); | ||
| 164 | int (*read_xfer)(struct spi_nor *nor, struct spi_nor_xfer_cfg *cfg, | ||
| 165 | u8 *buf, size_t len); | ||
| 166 | int (*write_xfer)(struct spi_nor *nor, struct spi_nor_xfer_cfg *cfg, | ||
| 167 | u8 *buf, size_t len); | ||
| 168 | int (*read_reg)(struct spi_nor *nor, u8 opcode, u8 *buf, int len); | ||
| 169 | int (*write_reg)(struct spi_nor *nor, u8 opcode, u8 *buf, int len, | ||
| 170 | int write_enable); | ||
| 171 | const struct spi_device_id *(*read_id)(struct spi_nor *nor); | ||
| 172 | int (*wait_till_ready)(struct spi_nor *nor); | ||
| 173 | |||
| 174 | int (*read)(struct spi_nor *nor, loff_t from, | ||
| 175 | size_t len, size_t *retlen, u_char *read_buf); | ||
| 176 | void (*write)(struct spi_nor *nor, loff_t to, | ||
| 177 | size_t len, size_t *retlen, const u_char *write_buf); | ||
| 178 | int (*erase)(struct spi_nor *nor, loff_t offs); | ||
| 179 | |||
| 180 | void *priv; | ||
| 181 | }; | ||
| 182 | |||
| 183 | /** | ||
| 184 | * spi_nor_scan() - scan the SPI NOR | ||
| 185 | * @nor: the spi_nor structure | ||
| 186 | * @id: the spi_device_id provided by the driver | ||
| 187 | * @mode: the read mode supported by the driver | ||
| 188 | * | ||
| 189 | * The drivers can use this fuction to scan the SPI NOR. | ||
| 190 | * In the scanning, it will try to get all the necessary information to | ||
| 191 | * fill the mtd_info{} and the spi_nor{}. | ||
| 192 | * | ||
| 193 | * The board may assigns a spi_device_id with @id which be used to compared with | ||
| 194 | * the spi_device_id detected by the scanning. | ||
| 195 | * | ||
| 196 | * Return: 0 for success, others for failure. | ||
| 197 | */ | ||
| 198 | int spi_nor_scan(struct spi_nor *nor, const struct spi_device_id *id, | ||
| 199 | enum read_mode mode); | ||
| 200 | extern const struct spi_device_id spi_nor_ids[]; | ||
| 201 | |||
| 202 | /** | ||
| 203 | * spi_nor_match_id() - find the spi_device_id by the name | ||
| 204 | * @name: the name of the spi_device_id | ||
| 205 | * | ||
| 206 | * The drivers use this function to find the spi_device_id | ||
| 207 | * specified by the @name. | ||
| 208 | * | ||
| 209 | * Return: returns the right spi_device_id pointer on success, | ||
| 210 | * and returns NULL on failure. | ||
| 211 | */ | ||
| 212 | const struct spi_device_id *spi_nor_match_id(char *name); | ||
| 213 | |||
| 214 | #endif | ||
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index f64b01787ddc..034cda789a15 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h | |||
| @@ -16,9 +16,10 @@ static inline struct nlmsghdr *nlmsg_hdr(const struct sk_buff *skb) | |||
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | enum netlink_skb_flags { | 18 | enum netlink_skb_flags { |
| 19 | NETLINK_SKB_MMAPED = 0x1, /* Packet data is mmaped */ | 19 | NETLINK_SKB_MMAPED = 0x1, /* Packet data is mmaped */ |
| 20 | NETLINK_SKB_TX = 0x2, /* Packet was sent by userspace */ | 20 | NETLINK_SKB_TX = 0x2, /* Packet was sent by userspace */ |
| 21 | NETLINK_SKB_DELIVERED = 0x4, /* Packet was delivered */ | 21 | NETLINK_SKB_DELIVERED = 0x4, /* Packet was delivered */ |
| 22 | NETLINK_SKB_DST = 0x8, /* Dst set in sendto or sendmsg */ | ||
| 22 | }; | 23 | }; |
| 23 | 24 | ||
| 24 | struct netlink_skb_parms { | 25 | struct netlink_skb_parms { |
diff --git a/include/linux/nfs.h b/include/linux/nfs.h index 3e794c12e90a..610af5155ef2 100644 --- a/include/linux/nfs.h +++ b/include/linux/nfs.h | |||
| @@ -46,6 +46,9 @@ static inline void nfs_copy_fh(struct nfs_fh *target, const struct nfs_fh *sourc | |||
| 46 | enum nfs3_stable_how { | 46 | enum nfs3_stable_how { |
| 47 | NFS_UNSTABLE = 0, | 47 | NFS_UNSTABLE = 0, |
| 48 | NFS_DATA_SYNC = 1, | 48 | NFS_DATA_SYNC = 1, |
| 49 | NFS_FILE_SYNC = 2 | 49 | NFS_FILE_SYNC = 2, |
| 50 | |||
| 51 | /* used by direct.c to mark verf as invalid */ | ||
| 52 | NFS_INVALID_STABLE_HOW = -1 | ||
| 50 | }; | 53 | }; |
| 51 | #endif /* _LINUX_NFS_H */ | 54 | #endif /* _LINUX_NFS_H */ |
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index 12c2cb947df5..a1e3064a8d99 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h | |||
| @@ -399,8 +399,6 @@ enum lock_type4 { | |||
| 399 | #define FATTR4_WORD2_LAYOUT_BLKSIZE (1UL << 1) | 399 | #define FATTR4_WORD2_LAYOUT_BLKSIZE (1UL << 1) |
| 400 | #define FATTR4_WORD2_MDSTHRESHOLD (1UL << 4) | 400 | #define FATTR4_WORD2_MDSTHRESHOLD (1UL << 4) |
| 401 | #define FATTR4_WORD2_SECURITY_LABEL (1UL << 16) | 401 | #define FATTR4_WORD2_SECURITY_LABEL (1UL << 16) |
| 402 | #define FATTR4_WORD2_CHANGE_SECURITY_LABEL \ | ||
| 403 | (1UL << 17) | ||
| 404 | 402 | ||
| 405 | /* MDS threshold bitmap bits */ | 403 | /* MDS threshold bitmap bits */ |
| 406 | #define THRESHOLD_RD (1UL << 0) | 404 | #define THRESHOLD_RD (1UL << 0) |
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h index fa6918b0f829..e30f6059ecd6 100644 --- a/include/linux/nfs_fs.h +++ b/include/linux/nfs_fs.h | |||
| @@ -459,13 +459,12 @@ extern int nfs3_removexattr (struct dentry *, const char *name); | |||
| 459 | /* | 459 | /* |
| 460 | * linux/fs/nfs/direct.c | 460 | * linux/fs/nfs/direct.c |
| 461 | */ | 461 | */ |
| 462 | extern ssize_t nfs_direct_IO(int, struct kiocb *, const struct iovec *, loff_t, | 462 | extern ssize_t nfs_direct_IO(int, struct kiocb *, struct iov_iter *, loff_t); |
| 463 | unsigned long); | ||
| 464 | extern ssize_t nfs_file_direct_read(struct kiocb *iocb, | 463 | extern ssize_t nfs_file_direct_read(struct kiocb *iocb, |
| 465 | const struct iovec *iov, unsigned long nr_segs, | 464 | struct iov_iter *iter, |
| 466 | loff_t pos, bool uio); | 465 | loff_t pos, bool uio); |
| 467 | extern ssize_t nfs_file_direct_write(struct kiocb *iocb, | 466 | extern ssize_t nfs_file_direct_write(struct kiocb *iocb, |
| 468 | const struct iovec *iov, unsigned long nr_segs, | 467 | struct iov_iter *iter, |
| 469 | loff_t pos, bool uio); | 468 | loff_t pos, bool uio); |
| 470 | 469 | ||
| 471 | /* | 470 | /* |
| @@ -520,7 +519,6 @@ extern int nfs_writepage(struct page *page, struct writeback_control *wbc); | |||
| 520 | extern int nfs_writepages(struct address_space *, struct writeback_control *); | 519 | extern int nfs_writepages(struct address_space *, struct writeback_control *); |
| 521 | extern int nfs_flush_incompatible(struct file *file, struct page *page); | 520 | extern int nfs_flush_incompatible(struct file *file, struct page *page); |
| 522 | extern int nfs_updatepage(struct file *, struct page *, unsigned int, unsigned int); | 521 | extern int nfs_updatepage(struct file *, struct page *, unsigned int, unsigned int); |
| 523 | extern void nfs_writeback_done(struct rpc_task *, struct nfs_write_data *); | ||
| 524 | 522 | ||
| 525 | /* | 523 | /* |
| 526 | * Try to write back everything synchronously (but check the | 524 | * Try to write back everything synchronously (but check the |
| @@ -553,7 +551,6 @@ nfs_have_writebacks(struct inode *inode) | |||
| 553 | extern int nfs_readpage(struct file *, struct page *); | 551 | extern int nfs_readpage(struct file *, struct page *); |
| 554 | extern int nfs_readpages(struct file *, struct address_space *, | 552 | extern int nfs_readpages(struct file *, struct address_space *, |
| 555 | struct list_head *, unsigned); | 553 | struct list_head *, unsigned); |
| 556 | extern int nfs_readpage_result(struct rpc_task *, struct nfs_read_data *); | ||
| 557 | extern int nfs_readpage_async(struct nfs_open_context *, struct inode *, | 554 | extern int nfs_readpage_async(struct nfs_open_context *, struct inode *, |
| 558 | struct page *); | 555 | struct page *); |
| 559 | 556 | ||
diff --git a/include/linux/nfs_page.h b/include/linux/nfs_page.h index 92ce5783b707..7d9096d95d4a 100644 --- a/include/linux/nfs_page.h +++ b/include/linux/nfs_page.h | |||
| @@ -22,12 +22,17 @@ | |||
| 22 | * Valid flags for a dirty buffer | 22 | * Valid flags for a dirty buffer |
| 23 | */ | 23 | */ |
| 24 | enum { | 24 | enum { |
| 25 | PG_BUSY = 0, | 25 | PG_BUSY = 0, /* nfs_{un}lock_request */ |
| 26 | PG_MAPPED, | 26 | PG_MAPPED, /* page private set for buffered io */ |
| 27 | PG_CLEAN, | 27 | PG_CLEAN, /* write succeeded */ |
| 28 | PG_NEED_COMMIT, | 28 | PG_COMMIT_TO_DS, /* used by pnfs layouts */ |
| 29 | PG_NEED_RESCHED, | 29 | PG_INODE_REF, /* extra ref held by inode (head req only) */ |
| 30 | PG_COMMIT_TO_DS, | 30 | PG_HEADLOCK, /* page group lock of wb_head */ |
| 31 | PG_TEARDOWN, /* page group sync for destroy */ | ||
| 32 | PG_UNLOCKPAGE, /* page group sync bit in read path */ | ||
| 33 | PG_UPTODATE, /* page group sync bit in read path */ | ||
| 34 | PG_WB_END, /* page group sync bit in write path */ | ||
| 35 | PG_REMOVE, /* page group sync bit in write path */ | ||
| 31 | }; | 36 | }; |
| 32 | 37 | ||
| 33 | struct nfs_inode; | 38 | struct nfs_inode; |
| @@ -43,15 +48,29 @@ struct nfs_page { | |||
| 43 | struct kref wb_kref; /* reference count */ | 48 | struct kref wb_kref; /* reference count */ |
| 44 | unsigned long wb_flags; | 49 | unsigned long wb_flags; |
| 45 | struct nfs_write_verifier wb_verf; /* Commit cookie */ | 50 | struct nfs_write_verifier wb_verf; /* Commit cookie */ |
| 51 | struct nfs_page *wb_this_page; /* list of reqs for this page */ | ||
| 52 | struct nfs_page *wb_head; /* head pointer for req list */ | ||
| 46 | }; | 53 | }; |
| 47 | 54 | ||
| 48 | struct nfs_pageio_descriptor; | 55 | struct nfs_pageio_descriptor; |
| 49 | struct nfs_pageio_ops { | 56 | struct nfs_pageio_ops { |
| 50 | void (*pg_init)(struct nfs_pageio_descriptor *, struct nfs_page *); | 57 | void (*pg_init)(struct nfs_pageio_descriptor *, struct nfs_page *); |
| 51 | bool (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, struct nfs_page *); | 58 | size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, |
| 59 | struct nfs_page *); | ||
| 52 | int (*pg_doio)(struct nfs_pageio_descriptor *); | 60 | int (*pg_doio)(struct nfs_pageio_descriptor *); |
| 53 | }; | 61 | }; |
| 54 | 62 | ||
| 63 | struct nfs_rw_ops { | ||
| 64 | const fmode_t rw_mode; | ||
| 65 | struct nfs_rw_header *(*rw_alloc_header)(void); | ||
| 66 | void (*rw_free_header)(struct nfs_rw_header *); | ||
| 67 | void (*rw_release)(struct nfs_pgio_data *); | ||
| 68 | int (*rw_done)(struct rpc_task *, struct nfs_pgio_data *, struct inode *); | ||
| 69 | void (*rw_result)(struct rpc_task *, struct nfs_pgio_data *); | ||
| 70 | void (*rw_initiate)(struct nfs_pgio_data *, struct rpc_message *, | ||
| 71 | struct rpc_task_setup *, int); | ||
| 72 | }; | ||
| 73 | |||
| 55 | struct nfs_pageio_descriptor { | 74 | struct nfs_pageio_descriptor { |
| 56 | struct list_head pg_list; | 75 | struct list_head pg_list; |
| 57 | unsigned long pg_bytes_written; | 76 | unsigned long pg_bytes_written; |
| @@ -63,6 +82,7 @@ struct nfs_pageio_descriptor { | |||
| 63 | 82 | ||
| 64 | struct inode *pg_inode; | 83 | struct inode *pg_inode; |
| 65 | const struct nfs_pageio_ops *pg_ops; | 84 | const struct nfs_pageio_ops *pg_ops; |
| 85 | const struct nfs_rw_ops *pg_rw_ops; | ||
| 66 | int pg_ioflags; | 86 | int pg_ioflags; |
| 67 | int pg_error; | 87 | int pg_error; |
| 68 | const struct rpc_call_ops *pg_rpc_callops; | 88 | const struct rpc_call_ops *pg_rpc_callops; |
| @@ -75,29 +95,33 @@ struct nfs_pageio_descriptor { | |||
| 75 | #define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags)) | 95 | #define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags)) |
| 76 | 96 | ||
| 77 | extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx, | 97 | extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx, |
| 78 | struct inode *inode, | ||
| 79 | struct page *page, | 98 | struct page *page, |
| 99 | struct nfs_page *last, | ||
| 80 | unsigned int offset, | 100 | unsigned int offset, |
| 81 | unsigned int count); | 101 | unsigned int count); |
| 82 | extern void nfs_release_request(struct nfs_page *req); | 102 | extern void nfs_release_request(struct nfs_page *); |
| 83 | 103 | ||
| 84 | 104 | ||
| 85 | extern void nfs_pageio_init(struct nfs_pageio_descriptor *desc, | 105 | extern void nfs_pageio_init(struct nfs_pageio_descriptor *desc, |
| 86 | struct inode *inode, | 106 | struct inode *inode, |
| 87 | const struct nfs_pageio_ops *pg_ops, | 107 | const struct nfs_pageio_ops *pg_ops, |
| 88 | const struct nfs_pgio_completion_ops *compl_ops, | 108 | const struct nfs_pgio_completion_ops *compl_ops, |
| 109 | const struct nfs_rw_ops *rw_ops, | ||
| 89 | size_t bsize, | 110 | size_t bsize, |
| 90 | int how); | 111 | int how); |
| 91 | extern int nfs_pageio_add_request(struct nfs_pageio_descriptor *, | 112 | extern int nfs_pageio_add_request(struct nfs_pageio_descriptor *, |
| 92 | struct nfs_page *); | 113 | struct nfs_page *); |
| 93 | extern void nfs_pageio_complete(struct nfs_pageio_descriptor *desc); | 114 | extern void nfs_pageio_complete(struct nfs_pageio_descriptor *desc); |
| 94 | extern void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *, pgoff_t); | 115 | extern void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *, pgoff_t); |
| 95 | extern bool nfs_generic_pg_test(struct nfs_pageio_descriptor *desc, | 116 | extern size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc, |
| 96 | struct nfs_page *prev, | 117 | struct nfs_page *prev, |
| 97 | struct nfs_page *req); | 118 | struct nfs_page *req); |
| 98 | extern int nfs_wait_on_request(struct nfs_page *); | 119 | extern int nfs_wait_on_request(struct nfs_page *); |
| 99 | extern void nfs_unlock_request(struct nfs_page *req); | 120 | extern void nfs_unlock_request(struct nfs_page *req); |
| 100 | extern void nfs_unlock_and_release_request(struct nfs_page *req); | 121 | extern void nfs_unlock_and_release_request(struct nfs_page *); |
| 122 | extern void nfs_page_group_lock(struct nfs_page *); | ||
| 123 | extern void nfs_page_group_unlock(struct nfs_page *); | ||
| 124 | extern bool nfs_page_group_sync_on_bit(struct nfs_page *, unsigned int); | ||
| 101 | 125 | ||
| 102 | /* | 126 | /* |
| 103 | * Lock the page of an asynchronous request | 127 | * Lock the page of an asynchronous request |
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 6fb5b2335b59..9a1396e70310 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h | |||
| @@ -489,31 +489,21 @@ struct nfs4_delegreturnres { | |||
| 489 | }; | 489 | }; |
| 490 | 490 | ||
| 491 | /* | 491 | /* |
| 492 | * Arguments to the read call. | 492 | * Arguments to the write call. |
| 493 | */ | 493 | */ |
| 494 | struct nfs_readargs { | 494 | struct nfs_write_verifier { |
| 495 | struct nfs4_sequence_args seq_args; | 495 | char data[8]; |
| 496 | struct nfs_fh * fh; | ||
| 497 | struct nfs_open_context *context; | ||
| 498 | struct nfs_lock_context *lock_context; | ||
| 499 | nfs4_stateid stateid; | ||
| 500 | __u64 offset; | ||
| 501 | __u32 count; | ||
| 502 | unsigned int pgbase; | ||
| 503 | struct page ** pages; | ||
| 504 | }; | 496 | }; |
| 505 | 497 | ||
| 506 | struct nfs_readres { | 498 | struct nfs_writeverf { |
| 507 | struct nfs4_sequence_res seq_res; | 499 | struct nfs_write_verifier verifier; |
| 508 | struct nfs_fattr * fattr; | 500 | enum nfs3_stable_how committed; |
| 509 | __u32 count; | ||
| 510 | int eof; | ||
| 511 | }; | 501 | }; |
| 512 | 502 | ||
| 513 | /* | 503 | /* |
| 514 | * Arguments to the write call. | 504 | * Arguments shared by the read and write call. |
| 515 | */ | 505 | */ |
| 516 | struct nfs_writeargs { | 506 | struct nfs_pgio_args { |
| 517 | struct nfs4_sequence_args seq_args; | 507 | struct nfs4_sequence_args seq_args; |
| 518 | struct nfs_fh * fh; | 508 | struct nfs_fh * fh; |
| 519 | struct nfs_open_context *context; | 509 | struct nfs_open_context *context; |
| @@ -521,27 +511,20 @@ struct nfs_writeargs { | |||
| 521 | nfs4_stateid stateid; | 511 | nfs4_stateid stateid; |
| 522 | __u64 offset; | 512 | __u64 offset; |
| 523 | __u32 count; | 513 | __u32 count; |
| 524 | enum nfs3_stable_how stable; | ||
| 525 | unsigned int pgbase; | 514 | unsigned int pgbase; |
| 526 | struct page ** pages; | 515 | struct page ** pages; |
| 527 | const u32 * bitmask; | 516 | const u32 * bitmask; /* used by write */ |
| 528 | }; | 517 | enum nfs3_stable_how stable; /* used by write */ |
| 529 | |||
| 530 | struct nfs_write_verifier { | ||
| 531 | char data[8]; | ||
| 532 | }; | 518 | }; |
| 533 | 519 | ||
| 534 | struct nfs_writeverf { | 520 | struct nfs_pgio_res { |
| 535 | struct nfs_write_verifier verifier; | ||
| 536 | enum nfs3_stable_how committed; | ||
| 537 | }; | ||
| 538 | |||
| 539 | struct nfs_writeres { | ||
| 540 | struct nfs4_sequence_res seq_res; | 521 | struct nfs4_sequence_res seq_res; |
| 541 | struct nfs_fattr * fattr; | 522 | struct nfs_fattr * fattr; |
| 542 | struct nfs_writeverf * verf; | ||
| 543 | __u32 count; | 523 | __u32 count; |
| 544 | const struct nfs_server *server; | 524 | int eof; /* used by read */ |
| 525 | struct nfs_writeverf * verf; /* used by write */ | ||
| 526 | const struct nfs_server *server; /* used by write */ | ||
| 527 | |||
| 545 | }; | 528 | }; |
| 546 | 529 | ||
| 547 | /* | 530 | /* |
| @@ -1129,6 +1112,7 @@ struct pnfs_commit_bucket { | |||
| 1129 | struct list_head committing; | 1112 | struct list_head committing; |
| 1130 | struct pnfs_layout_segment *wlseg; | 1113 | struct pnfs_layout_segment *wlseg; |
| 1131 | struct pnfs_layout_segment *clseg; | 1114 | struct pnfs_layout_segment *clseg; |
| 1115 | struct nfs_writeverf direct_verf; | ||
| 1132 | }; | 1116 | }; |
| 1133 | 1117 | ||
| 1134 | struct pnfs_ds_commit_info { | 1118 | struct pnfs_ds_commit_info { |
| @@ -1264,20 +1248,6 @@ struct nfs_page_array { | |||
| 1264 | struct page *page_array[NFS_PAGEVEC_SIZE]; | 1248 | struct page *page_array[NFS_PAGEVEC_SIZE]; |
| 1265 | }; | 1249 | }; |
| 1266 | 1250 | ||
| 1267 | struct nfs_read_data { | ||
| 1268 | struct nfs_pgio_header *header; | ||
| 1269 | struct list_head list; | ||
| 1270 | struct rpc_task task; | ||
| 1271 | struct nfs_fattr fattr; /* fattr storage */ | ||
| 1272 | struct nfs_readargs args; | ||
| 1273 | struct nfs_readres res; | ||
| 1274 | unsigned long timestamp; /* For lease renewal */ | ||
| 1275 | int (*read_done_cb) (struct rpc_task *task, struct nfs_read_data *data); | ||
| 1276 | __u64 mds_offset; | ||
| 1277 | struct nfs_page_array pages; | ||
| 1278 | struct nfs_client *ds_clp; /* pNFS data server */ | ||
| 1279 | }; | ||
| 1280 | |||
| 1281 | /* used as flag bits in nfs_pgio_header */ | 1251 | /* used as flag bits in nfs_pgio_header */ |
| 1282 | enum { | 1252 | enum { |
| 1283 | NFS_IOHDR_ERROR = 0, | 1253 | NFS_IOHDR_ERROR = 0, |
| @@ -1287,19 +1257,22 @@ enum { | |||
| 1287 | NFS_IOHDR_NEED_RESCHED, | 1257 | NFS_IOHDR_NEED_RESCHED, |
| 1288 | }; | 1258 | }; |
| 1289 | 1259 | ||
| 1260 | struct nfs_pgio_data; | ||
| 1261 | |||
| 1290 | struct nfs_pgio_header { | 1262 | struct nfs_pgio_header { |
| 1291 | struct inode *inode; | 1263 | struct inode *inode; |
| 1292 | struct rpc_cred *cred; | 1264 | struct rpc_cred *cred; |
| 1293 | struct list_head pages; | 1265 | struct list_head pages; |
| 1294 | struct list_head rpc_list; | 1266 | struct nfs_pgio_data *data; |
| 1295 | atomic_t refcnt; | 1267 | atomic_t refcnt; |
| 1296 | struct nfs_page *req; | 1268 | struct nfs_page *req; |
| 1297 | struct nfs_writeverf *verf; | 1269 | struct nfs_writeverf verf; /* Used for writes */ |
| 1298 | struct pnfs_layout_segment *lseg; | 1270 | struct pnfs_layout_segment *lseg; |
| 1299 | loff_t io_start; | 1271 | loff_t io_start; |
| 1300 | const struct rpc_call_ops *mds_ops; | 1272 | const struct rpc_call_ops *mds_ops; |
| 1301 | void (*release) (struct nfs_pgio_header *hdr); | 1273 | void (*release) (struct nfs_pgio_header *hdr); |
| 1302 | const struct nfs_pgio_completion_ops *completion_ops; | 1274 | const struct nfs_pgio_completion_ops *completion_ops; |
| 1275 | const struct nfs_rw_ops *rw_ops; | ||
| 1303 | struct nfs_direct_req *dreq; | 1276 | struct nfs_direct_req *dreq; |
| 1304 | void *layout_private; | 1277 | void *layout_private; |
| 1305 | spinlock_t lock; | 1278 | spinlock_t lock; |
| @@ -1310,30 +1283,24 @@ struct nfs_pgio_header { | |||
| 1310 | unsigned long flags; | 1283 | unsigned long flags; |
| 1311 | }; | 1284 | }; |
| 1312 | 1285 | ||
| 1313 | struct nfs_read_header { | 1286 | struct nfs_pgio_data { |
| 1314 | struct nfs_pgio_header header; | ||
| 1315 | struct nfs_read_data rpc_data; | ||
| 1316 | }; | ||
| 1317 | |||
| 1318 | struct nfs_write_data { | ||
| 1319 | struct nfs_pgio_header *header; | 1287 | struct nfs_pgio_header *header; |
| 1320 | struct list_head list; | ||
| 1321 | struct rpc_task task; | 1288 | struct rpc_task task; |
| 1322 | struct nfs_fattr fattr; | 1289 | struct nfs_fattr fattr; |
| 1323 | struct nfs_writeverf verf; | 1290 | struct nfs_writeverf verf; /* Used for writes */ |
| 1324 | struct nfs_writeargs args; /* argument struct */ | 1291 | struct nfs_pgio_args args; /* argument struct */ |
| 1325 | struct nfs_writeres res; /* result struct */ | 1292 | struct nfs_pgio_res res; /* result struct */ |
| 1326 | unsigned long timestamp; /* For lease renewal */ | 1293 | unsigned long timestamp; /* For lease renewal */ |
| 1327 | int (*write_done_cb) (struct rpc_task *task, struct nfs_write_data *data); | 1294 | int (*pgio_done_cb) (struct rpc_task *task, struct nfs_pgio_data *data); |
| 1328 | __u64 mds_offset; /* Filelayout dense stripe */ | 1295 | __u64 mds_offset; /* Filelayout dense stripe */ |
| 1329 | struct nfs_page_array pages; | 1296 | struct nfs_page_array pages; |
| 1330 | struct nfs_client *ds_clp; /* pNFS data server */ | 1297 | struct nfs_client *ds_clp; /* pNFS data server */ |
| 1298 | int ds_idx; /* ds index if ds_clp is set */ | ||
| 1331 | }; | 1299 | }; |
| 1332 | 1300 | ||
| 1333 | struct nfs_write_header { | 1301 | struct nfs_rw_header { |
| 1334 | struct nfs_pgio_header header; | 1302 | struct nfs_pgio_header header; |
| 1335 | struct nfs_write_data rpc_data; | 1303 | struct nfs_pgio_data rpc_data; |
| 1336 | struct nfs_writeverf verf; | ||
| 1337 | }; | 1304 | }; |
| 1338 | 1305 | ||
| 1339 | struct nfs_mds_commit_info { | 1306 | struct nfs_mds_commit_info { |
| @@ -1465,16 +1432,11 @@ struct nfs_rpc_ops { | |||
| 1465 | struct nfs_pathconf *); | 1432 | struct nfs_pathconf *); |
| 1466 | int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); | 1433 | int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); |
| 1467 | int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, int); | 1434 | int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, int); |
| 1468 | void (*read_setup) (struct nfs_read_data *, struct rpc_message *); | 1435 | int (*pgio_rpc_prepare)(struct rpc_task *, struct nfs_pgio_data *); |
| 1469 | void (*read_pageio_init)(struct nfs_pageio_descriptor *, struct inode *, | 1436 | void (*read_setup) (struct nfs_pgio_data *, struct rpc_message *); |
| 1470 | const struct nfs_pgio_completion_ops *); | 1437 | int (*read_done) (struct rpc_task *, struct nfs_pgio_data *); |
| 1471 | int (*read_rpc_prepare)(struct rpc_task *, struct nfs_read_data *); | 1438 | void (*write_setup) (struct nfs_pgio_data *, struct rpc_message *); |
| 1472 | int (*read_done) (struct rpc_task *, struct nfs_read_data *); | 1439 | int (*write_done) (struct rpc_task *, struct nfs_pgio_data *); |
| 1473 | void (*write_setup) (struct nfs_write_data *, struct rpc_message *); | ||
| 1474 | void (*write_pageio_init)(struct nfs_pageio_descriptor *, struct inode *, int, | ||
| 1475 | const struct nfs_pgio_completion_ops *); | ||
| 1476 | int (*write_rpc_prepare)(struct rpc_task *, struct nfs_write_data *); | ||
| 1477 | int (*write_done) (struct rpc_task *, struct nfs_write_data *); | ||
| 1478 | void (*commit_setup) (struct nfs_commit_data *, struct rpc_message *); | 1440 | void (*commit_setup) (struct nfs_commit_data *, struct rpc_message *); |
| 1479 | void (*commit_rpc_prepare)(struct rpc_task *, struct nfs_commit_data *); | 1441 | void (*commit_rpc_prepare)(struct rpc_task *, struct nfs_commit_data *); |
| 1480 | int (*commit_done) (struct rpc_task *, struct nfs_commit_data *); | 1442 | int (*commit_done) (struct rpc_task *, struct nfs_commit_data *); |
diff --git a/include/linux/nfsd/debug.h b/include/linux/nfsd/debug.h deleted file mode 100644 index 19ef8375b577..000000000000 --- a/include/linux/nfsd/debug.h +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * linux/include/linux/nfsd/debug.h | ||
| 3 | * | ||
| 4 | * Debugging-related stuff for nfsd | ||
| 5 | * | ||
| 6 | * Copyright (C) 1995 Olaf Kirch <okir@monad.swb.de> | ||
| 7 | */ | ||
| 8 | #ifndef LINUX_NFSD_DEBUG_H | ||
| 9 | #define LINUX_NFSD_DEBUG_H | ||
| 10 | |||
| 11 | #include <uapi/linux/nfsd/debug.h> | ||
| 12 | |||
| 13 | # undef ifdebug | ||
| 14 | # ifdef NFSD_DEBUG | ||
| 15 | # define ifdebug(flag) if (nfsd_debug & NFSDDBG_##flag) | ||
| 16 | # else | ||
| 17 | # define ifdebug(flag) if (0) | ||
| 18 | # endif | ||
| 19 | #endif /* LINUX_NFSD_DEBUG_H */ | ||
diff --git a/include/linux/nfsd/export.h b/include/linux/nfsd/export.h deleted file mode 100644 index 7898c997dfea..000000000000 --- a/include/linux/nfsd/export.h +++ /dev/null | |||
| @@ -1,110 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * include/linux/nfsd/export.h | ||
| 3 | * | ||
| 4 | * Public declarations for NFS exports. The definitions for the | ||
| 5 | * syscall interface are in nfsctl.h | ||
| 6 | * | ||
| 7 | * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de> | ||
| 8 | */ | ||
| 9 | #ifndef NFSD_EXPORT_H | ||
| 10 | #define NFSD_EXPORT_H | ||
| 11 | |||
| 12 | # include <linux/nfsd/nfsfh.h> | ||
| 13 | #include <uapi/linux/nfsd/export.h> | ||
| 14 | |||
| 15 | /* | ||
| 16 | * FS Locations | ||
| 17 | */ | ||
| 18 | |||
| 19 | #define MAX_FS_LOCATIONS 128 | ||
| 20 | |||
| 21 | struct nfsd4_fs_location { | ||
| 22 | char *hosts; /* colon separated list of hosts */ | ||
| 23 | char *path; /* slash separated list of path components */ | ||
| 24 | }; | ||
| 25 | |||
| 26 | struct nfsd4_fs_locations { | ||
| 27 | uint32_t locations_count; | ||
| 28 | struct nfsd4_fs_location *locations; | ||
| 29 | /* If we're not actually serving this data ourselves (only providing a | ||
| 30 | * list of replicas that do serve it) then we set "migrated": */ | ||
| 31 | int migrated; | ||
| 32 | }; | ||
| 33 | |||
| 34 | /* | ||
| 35 | * We keep an array of pseudoflavors with the export, in order from most | ||
| 36 | * to least preferred. For the foreseeable future, we don't expect more | ||
| 37 | * than the eight pseudoflavors null, unix, krb5, krb5i, krb5p, skpm3, | ||
| 38 | * spkm3i, and spkm3p (and using all 8 at once should be rare). | ||
| 39 | */ | ||
| 40 | #define MAX_SECINFO_LIST 8 | ||
| 41 | |||
| 42 | struct exp_flavor_info { | ||
| 43 | u32 pseudoflavor; | ||
| 44 | u32 flags; | ||
| 45 | }; | ||
| 46 | |||
| 47 | struct svc_export { | ||
| 48 | struct cache_head h; | ||
| 49 | struct auth_domain * ex_client; | ||
| 50 | int ex_flags; | ||
| 51 | struct path ex_path; | ||
| 52 | kuid_t ex_anon_uid; | ||
| 53 | kgid_t ex_anon_gid; | ||
| 54 | int ex_fsid; | ||
| 55 | unsigned char * ex_uuid; /* 16 byte fsid */ | ||
| 56 | struct nfsd4_fs_locations ex_fslocs; | ||
| 57 | int ex_nflavors; | ||
| 58 | struct exp_flavor_info ex_flavors[MAX_SECINFO_LIST]; | ||
| 59 | struct cache_detail *cd; | ||
| 60 | }; | ||
| 61 | |||
| 62 | /* an "export key" (expkey) maps a filehandlefragement to an | ||
| 63 | * svc_export for a given client. There can be several per export, | ||
| 64 | * for the different fsid types. | ||
| 65 | */ | ||
| 66 | struct svc_expkey { | ||
| 67 | struct cache_head h; | ||
| 68 | |||
| 69 | struct auth_domain * ek_client; | ||
| 70 | int ek_fsidtype; | ||
| 71 | u32 ek_fsid[6]; | ||
| 72 | |||
| 73 | struct path ek_path; | ||
| 74 | }; | ||
| 75 | |||
| 76 | #define EX_ISSYNC(exp) (!((exp)->ex_flags & NFSEXP_ASYNC)) | ||
| 77 | #define EX_NOHIDE(exp) ((exp)->ex_flags & NFSEXP_NOHIDE) | ||
| 78 | #define EX_WGATHER(exp) ((exp)->ex_flags & NFSEXP_GATHERED_WRITES) | ||
| 79 | |||
| 80 | int nfsexp_flags(struct svc_rqst *rqstp, struct svc_export *exp); | ||
| 81 | __be32 check_nfsd_access(struct svc_export *exp, struct svc_rqst *rqstp); | ||
| 82 | |||
| 83 | /* | ||
| 84 | * Function declarations | ||
| 85 | */ | ||
| 86 | int nfsd_export_init(struct net *); | ||
| 87 | void nfsd_export_shutdown(struct net *); | ||
| 88 | void nfsd_export_flush(struct net *); | ||
| 89 | struct svc_export * rqst_exp_get_by_name(struct svc_rqst *, | ||
| 90 | struct path *); | ||
| 91 | struct svc_export * rqst_exp_parent(struct svc_rqst *, | ||
| 92 | struct path *); | ||
| 93 | struct svc_export * rqst_find_fsidzero_export(struct svc_rqst *); | ||
| 94 | int exp_rootfh(struct net *, struct auth_domain *, | ||
| 95 | char *path, struct knfsd_fh *, int maxsize); | ||
| 96 | __be32 exp_pseudoroot(struct svc_rqst *, struct svc_fh *); | ||
| 97 | __be32 nfserrno(int errno); | ||
| 98 | |||
| 99 | static inline void exp_put(struct svc_export *exp) | ||
| 100 | { | ||
| 101 | cache_put(&exp->h, exp->cd); | ||
| 102 | } | ||
| 103 | |||
| 104 | static inline void exp_get(struct svc_export *exp) | ||
| 105 | { | ||
| 106 | cache_get(&exp->h); | ||
| 107 | } | ||
| 108 | struct svc_export * rqst_exp_find(struct svc_rqst *, int, u32 *); | ||
| 109 | |||
| 110 | #endif /* NFSD_EXPORT_H */ | ||
diff --git a/include/linux/nfsd/nfsfh.h b/include/linux/nfsd/nfsfh.h deleted file mode 100644 index a93593f1fa4e..000000000000 --- a/include/linux/nfsd/nfsfh.h +++ /dev/null | |||
| @@ -1,63 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * include/linux/nfsd/nfsfh.h | ||
| 3 | * | ||
| 4 | * This file describes the layout of the file handles as passed | ||
| 5 | * over the wire. | ||
| 6 | * | ||
| 7 | * Earlier versions of knfsd used to sign file handles using keyed MD5 | ||
| 8 | * or SHA. I've removed this code, because it doesn't give you more | ||
| 9 | * security than blocking external access to port 2049 on your firewall. | ||
| 10 | * | ||
| 11 | * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de> | ||
| 12 | */ | ||
| 13 | #ifndef _LINUX_NFSD_FH_H | ||
| 14 | #define _LINUX_NFSD_FH_H | ||
| 15 | |||
| 16 | # include <linux/sunrpc/svc.h> | ||
| 17 | #include <uapi/linux/nfsd/nfsfh.h> | ||
| 18 | |||
| 19 | static inline __u32 ino_t_to_u32(ino_t ino) | ||
| 20 | { | ||
| 21 | return (__u32) ino; | ||
| 22 | } | ||
| 23 | |||
| 24 | static inline ino_t u32_to_ino_t(__u32 uino) | ||
| 25 | { | ||
| 26 | return (ino_t) uino; | ||
| 27 | } | ||
| 28 | |||
| 29 | /* | ||
| 30 | * This is the internal representation of an NFS handle used in knfsd. | ||
| 31 | * pre_mtime/post_version will be used to support wcc_attr's in NFSv3. | ||
| 32 | */ | ||
| 33 | typedef struct svc_fh { | ||
| 34 | struct knfsd_fh fh_handle; /* FH data */ | ||
| 35 | struct dentry * fh_dentry; /* validated dentry */ | ||
| 36 | struct svc_export * fh_export; /* export pointer */ | ||
| 37 | int fh_maxsize; /* max size for fh_handle */ | ||
| 38 | |||
| 39 | unsigned char fh_locked; /* inode locked by us */ | ||
| 40 | unsigned char fh_want_write; /* remount protection taken */ | ||
| 41 | |||
| 42 | #ifdef CONFIG_NFSD_V3 | ||
| 43 | unsigned char fh_post_saved; /* post-op attrs saved */ | ||
| 44 | unsigned char fh_pre_saved; /* pre-op attrs saved */ | ||
| 45 | |||
| 46 | /* Pre-op attributes saved during fh_lock */ | ||
| 47 | __u64 fh_pre_size; /* size before operation */ | ||
| 48 | struct timespec fh_pre_mtime; /* mtime before oper */ | ||
| 49 | struct timespec fh_pre_ctime; /* ctime before oper */ | ||
| 50 | /* | ||
| 51 | * pre-op nfsv4 change attr: note must check IS_I_VERSION(inode) | ||
| 52 | * to find out if it is valid. | ||
| 53 | */ | ||
| 54 | u64 fh_pre_change; | ||
| 55 | |||
| 56 | /* Post-op attributes saved in fh_unlock */ | ||
| 57 | struct kstat fh_post_attr; /* full attrs after operation */ | ||
| 58 | u64 fh_post_change; /* nfsv4 change; see above */ | ||
| 59 | #endif /* CONFIG_NFSD_V3 */ | ||
| 60 | |||
| 61 | } svc_fh; | ||
| 62 | |||
| 63 | #endif /* _LINUX_NFSD_FH_H */ | ||
diff --git a/include/linux/nfsd/stats.h b/include/linux/nfsd/stats.h deleted file mode 100644 index e75b2544ff12..000000000000 --- a/include/linux/nfsd/stats.h +++ /dev/null | |||
| @@ -1,45 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * linux/include/linux/nfsd/stats.h | ||
| 3 | * | ||
| 4 | * Statistics for NFS server. | ||
| 5 | * | ||
| 6 | * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de> | ||
| 7 | */ | ||
| 8 | #ifndef LINUX_NFSD_STATS_H | ||
| 9 | #define LINUX_NFSD_STATS_H | ||
| 10 | |||
| 11 | #include <uapi/linux/nfsd/stats.h> | ||
| 12 | |||
| 13 | |||
| 14 | struct nfsd_stats { | ||
| 15 | unsigned int rchits; /* repcache hits */ | ||
| 16 | unsigned int rcmisses; /* repcache hits */ | ||
| 17 | unsigned int rcnocache; /* uncached reqs */ | ||
| 18 | unsigned int fh_stale; /* FH stale error */ | ||
| 19 | unsigned int fh_lookup; /* dentry cached */ | ||
| 20 | unsigned int fh_anon; /* anon file dentry returned */ | ||
| 21 | unsigned int fh_nocache_dir; /* filehandle not found in dcache */ | ||
| 22 | unsigned int fh_nocache_nondir; /* filehandle not found in dcache */ | ||
| 23 | unsigned int io_read; /* bytes returned to read requests */ | ||
| 24 | unsigned int io_write; /* bytes passed in write requests */ | ||
| 25 | unsigned int th_cnt; /* number of available threads */ | ||
| 26 | unsigned int th_usage[10]; /* number of ticks during which n perdeciles | ||
| 27 | * of available threads were in use */ | ||
| 28 | unsigned int th_fullcnt; /* number of times last free thread was used */ | ||
| 29 | unsigned int ra_size; /* size of ra cache */ | ||
| 30 | unsigned int ra_depth[11]; /* number of times ra entry was found that deep | ||
| 31 | * in the cache (10percentiles). [10] = not found */ | ||
| 32 | #ifdef CONFIG_NFSD_V4 | ||
| 33 | unsigned int nfs4_opcount[LAST_NFS4_OP + 1]; /* count of individual nfsv4 operations */ | ||
| 34 | #endif | ||
| 35 | |||
| 36 | }; | ||
| 37 | |||
| 38 | |||
| 39 | extern struct nfsd_stats nfsdstats; | ||
| 40 | extern struct svc_stat nfsd_svcstats; | ||
| 41 | |||
| 42 | void nfsd_stat_init(void); | ||
| 43 | void nfsd_stat_shutdown(void); | ||
| 44 | |||
| 45 | #endif /* LINUX_NFSD_STATS_H */ | ||
diff --git a/include/linux/of.h b/include/linux/of.h index fa362867b453..196b34c1ef4e 100644 --- a/include/linux/of.h +++ b/include/linux/of.h | |||
| @@ -764,4 +764,26 @@ static inline int of_get_available_child_count(const struct device_node *np) | |||
| 764 | return num; | 764 | return num; |
| 765 | } | 765 | } |
| 766 | 766 | ||
| 767 | #ifdef CONFIG_OF | ||
| 768 | #define _OF_DECLARE(table, name, compat, fn, fn_type) \ | ||
| 769 | static const struct of_device_id __of_table_##name \ | ||
| 770 | __used __section(__##table##_of_table) \ | ||
| 771 | = { .compatible = compat, \ | ||
| 772 | .data = (fn == (fn_type)NULL) ? fn : fn } | ||
| 773 | #else | ||
| 774 | #define _OF_DECLARE(table, name, compat, fn, fn_type) \ | ||
| 775 | static const struct of_device_id __of_table_##name \ | ||
| 776 | __attribute__((unused)) \ | ||
| 777 | = { .compatible = compat, \ | ||
| 778 | .data = (fn == (fn_type)NULL) ? fn : fn } | ||
| 779 | #endif | ||
| 780 | |||
| 781 | typedef int (*of_init_fn_2)(struct device_node *, struct device_node *); | ||
| 782 | typedef void (*of_init_fn_1)(struct device_node *); | ||
| 783 | |||
| 784 | #define OF_DECLARE_1(table, name, compat, fn) \ | ||
| 785 | _OF_DECLARE(table, name, compat, fn, of_init_fn_1) | ||
| 786 | #define OF_DECLARE_2(table, name, compat, fn) \ | ||
| 787 | _OF_DECLARE(table, name, compat, fn, of_init_fn_2) | ||
| 788 | |||
| 767 | #endif /* _LINUX_OF_H */ | 789 | #endif /* _LINUX_OF_H */ |
diff --git a/include/linux/of_address.h b/include/linux/of_address.h index 5f6ed6b182b8..c13b8782a4eb 100644 --- a/include/linux/of_address.h +++ b/include/linux/of_address.h | |||
| @@ -40,7 +40,6 @@ extern u64 of_translate_dma_address(struct device_node *dev, | |||
| 40 | 40 | ||
| 41 | #ifdef CONFIG_OF_ADDRESS | 41 | #ifdef CONFIG_OF_ADDRESS |
| 42 | extern u64 of_translate_address(struct device_node *np, const __be32 *addr); | 42 | extern u64 of_translate_address(struct device_node *np, const __be32 *addr); |
| 43 | extern bool of_can_translate_address(struct device_node *dev); | ||
| 44 | extern int of_address_to_resource(struct device_node *dev, int index, | 43 | extern int of_address_to_resource(struct device_node *dev, int index, |
| 45 | struct resource *r); | 44 | struct resource *r); |
| 46 | extern struct device_node *of_find_matching_node_by_address( | 45 | extern struct device_node *of_find_matching_node_by_address( |
| @@ -63,6 +62,9 @@ extern int of_pci_range_parser_init(struct of_pci_range_parser *parser, | |||
| 63 | extern struct of_pci_range *of_pci_range_parser_one( | 62 | extern struct of_pci_range *of_pci_range_parser_one( |
| 64 | struct of_pci_range_parser *parser, | 63 | struct of_pci_range_parser *parser, |
| 65 | struct of_pci_range *range); | 64 | struct of_pci_range *range); |
| 65 | extern int of_dma_get_range(struct device_node *np, u64 *dma_addr, | ||
| 66 | u64 *paddr, u64 *size); | ||
| 67 | extern bool of_dma_is_coherent(struct device_node *np); | ||
| 66 | #else /* CONFIG_OF_ADDRESS */ | 68 | #else /* CONFIG_OF_ADDRESS */ |
| 67 | static inline struct device_node *of_find_matching_node_by_address( | 69 | static inline struct device_node *of_find_matching_node_by_address( |
| 68 | struct device_node *from, | 70 | struct device_node *from, |
| @@ -90,6 +92,17 @@ static inline struct of_pci_range *of_pci_range_parser_one( | |||
| 90 | { | 92 | { |
| 91 | return NULL; | 93 | return NULL; |
| 92 | } | 94 | } |
| 95 | |||
| 96 | static inline int of_dma_get_range(struct device_node *np, u64 *dma_addr, | ||
| 97 | u64 *paddr, u64 *size) | ||
| 98 | { | ||
| 99 | return -ENODEV; | ||
| 100 | } | ||
| 101 | |||
| 102 | static inline bool of_dma_is_coherent(struct device_node *np) | ||
| 103 | { | ||
| 104 | return false; | ||
| 105 | } | ||
| 93 | #endif /* CONFIG_OF_ADDRESS */ | 106 | #endif /* CONFIG_OF_ADDRESS */ |
| 94 | 107 | ||
| 95 | #ifdef CONFIG_OF | 108 | #ifdef CONFIG_OF |
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h index ddd7219af8ac..05117899fcb4 100644 --- a/include/linux/of_fdt.h +++ b/include/linux/of_fdt.h | |||
| @@ -17,60 +17,23 @@ | |||
| 17 | 17 | ||
| 18 | /* Definitions used by the flattened device tree */ | 18 | /* Definitions used by the flattened device tree */ |
| 19 | #define OF_DT_HEADER 0xd00dfeed /* marker */ | 19 | #define OF_DT_HEADER 0xd00dfeed /* marker */ |
| 20 | #define OF_DT_BEGIN_NODE 0x1 /* Start of node, full name */ | ||
| 21 | #define OF_DT_END_NODE 0x2 /* End node */ | ||
| 22 | #define OF_DT_PROP 0x3 /* Property: name off, size, | ||
| 23 | * content */ | ||
| 24 | #define OF_DT_NOP 0x4 /* nop */ | ||
| 25 | #define OF_DT_END 0x9 | ||
| 26 | |||
| 27 | #define OF_DT_VERSION 0x10 | ||
| 28 | 20 | ||
| 29 | #ifndef __ASSEMBLY__ | 21 | #ifndef __ASSEMBLY__ |
| 30 | /* | ||
| 31 | * This is what gets passed to the kernel by prom_init or kexec | ||
| 32 | * | ||
| 33 | * The dt struct contains the device tree structure, full pathes and | ||
| 34 | * property contents. The dt strings contain a separate block with just | ||
| 35 | * the strings for the property names, and is fully page aligned and | ||
| 36 | * self contained in a page, so that it can be kept around by the kernel, | ||
| 37 | * each property name appears only once in this page (cheap compression) | ||
| 38 | * | ||
| 39 | * the mem_rsvmap contains a map of reserved ranges of physical memory, | ||
| 40 | * passing it here instead of in the device-tree itself greatly simplifies | ||
| 41 | * the job of everybody. It's just a list of u64 pairs (base/size) that | ||
| 42 | * ends when size is 0 | ||
| 43 | */ | ||
| 44 | struct boot_param_header { | ||
| 45 | __be32 magic; /* magic word OF_DT_HEADER */ | ||
| 46 | __be32 totalsize; /* total size of DT block */ | ||
| 47 | __be32 off_dt_struct; /* offset to structure */ | ||
| 48 | __be32 off_dt_strings; /* offset to strings */ | ||
| 49 | __be32 off_mem_rsvmap; /* offset to memory reserve map */ | ||
| 50 | __be32 version; /* format version */ | ||
| 51 | __be32 last_comp_version; /* last compatible version */ | ||
| 52 | /* version 2 fields below */ | ||
| 53 | __be32 boot_cpuid_phys; /* Physical CPU id we're booting on */ | ||
| 54 | /* version 3 fields below */ | ||
| 55 | __be32 dt_strings_size; /* size of the DT strings block */ | ||
| 56 | /* version 17 fields below */ | ||
| 57 | __be32 dt_struct_size; /* size of the DT structure block */ | ||
| 58 | }; | ||
| 59 | 22 | ||
| 60 | #if defined(CONFIG_OF_FLATTREE) | 23 | #if defined(CONFIG_OF_FLATTREE) |
| 61 | 24 | ||
| 62 | struct device_node; | 25 | struct device_node; |
| 63 | 26 | ||
| 64 | /* For scanning an arbitrary device-tree at any time */ | 27 | /* For scanning an arbitrary device-tree at any time */ |
| 65 | extern char *of_fdt_get_string(struct boot_param_header *blob, u32 offset); | 28 | extern char *of_fdt_get_string(const void *blob, u32 offset); |
| 66 | extern void *of_fdt_get_property(struct boot_param_header *blob, | 29 | extern void *of_fdt_get_property(const void *blob, |
| 67 | unsigned long node, | 30 | unsigned long node, |
| 68 | const char *name, | 31 | const char *name, |
| 69 | unsigned long *size); | 32 | int *size); |
| 70 | extern int of_fdt_is_compatible(struct boot_param_header *blob, | 33 | extern int of_fdt_is_compatible(const void *blob, |
| 71 | unsigned long node, | 34 | unsigned long node, |
| 72 | const char *compat); | 35 | const char *compat); |
| 73 | extern int of_fdt_match(struct boot_param_header *blob, unsigned long node, | 36 | extern int of_fdt_match(const void *blob, unsigned long node, |
| 74 | const char *const *compat); | 37 | const char *const *compat); |
| 75 | extern void of_fdt_unflatten_tree(unsigned long *blob, | 38 | extern void of_fdt_unflatten_tree(unsigned long *blob, |
| 76 | struct device_node **mynodes); | 39 | struct device_node **mynodes); |
| @@ -78,21 +41,21 @@ extern void of_fdt_unflatten_tree(unsigned long *blob, | |||
| 78 | /* TBD: Temporary export of fdt globals - remove when code fully merged */ | 41 | /* TBD: Temporary export of fdt globals - remove when code fully merged */ |
| 79 | extern int __initdata dt_root_addr_cells; | 42 | extern int __initdata dt_root_addr_cells; |
| 80 | extern int __initdata dt_root_size_cells; | 43 | extern int __initdata dt_root_size_cells; |
| 81 | extern struct boot_param_header *initial_boot_params; | 44 | extern void *initial_boot_params; |
| 45 | |||
| 46 | extern char __dtb_start[]; | ||
| 47 | extern char __dtb_end[]; | ||
| 82 | 48 | ||
| 83 | /* For scanning the flat device-tree at boot time */ | 49 | /* For scanning the flat device-tree at boot time */ |
| 84 | extern char *find_flat_dt_string(u32 offset); | ||
| 85 | extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname, | 50 | extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname, |
| 86 | int depth, void *data), | 51 | int depth, void *data), |
| 87 | void *data); | 52 | void *data); |
| 88 | extern void *of_get_flat_dt_prop(unsigned long node, const char *name, | 53 | extern const void *of_get_flat_dt_prop(unsigned long node, const char *name, |
| 89 | unsigned long *size); | 54 | int *size); |
| 90 | extern int of_flat_dt_is_compatible(unsigned long node, const char *name); | 55 | extern int of_flat_dt_is_compatible(unsigned long node, const char *name); |
| 91 | extern int of_flat_dt_match(unsigned long node, const char *const *matches); | 56 | extern int of_flat_dt_match(unsigned long node, const char *const *matches); |
| 92 | extern unsigned long of_get_flat_dt_root(void); | 57 | extern unsigned long of_get_flat_dt_root(void); |
| 93 | extern int of_scan_flat_dt_by_path(const char *path, | 58 | extern int of_get_flat_dt_size(void); |
| 94 | int (*it)(unsigned long node, const char *name, int depth, void *data), | ||
| 95 | void *data); | ||
| 96 | 59 | ||
| 97 | extern int early_init_dt_scan_chosen(unsigned long node, const char *uname, | 60 | extern int early_init_dt_scan_chosen(unsigned long node, const char *uname, |
| 98 | int depth, void *data); | 61 | int depth, void *data); |
| @@ -103,7 +66,7 @@ extern void early_init_dt_add_memory_arch(u64 base, u64 size); | |||
| 103 | extern int early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size, | 66 | extern int early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size, |
| 104 | bool no_map); | 67 | bool no_map); |
| 105 | extern void * early_init_dt_alloc_memory_arch(u64 size, u64 align); | 68 | extern void * early_init_dt_alloc_memory_arch(u64 size, u64 align); |
| 106 | extern u64 dt_mem_next_cell(int s, __be32 **cellp); | 69 | extern u64 dt_mem_next_cell(int s, const __be32 **cellp); |
| 107 | 70 | ||
| 108 | /* Early flat tree scan hooks */ | 71 | /* Early flat tree scan hooks */ |
| 109 | extern int early_init_dt_scan_root(unsigned long node, const char *uname, | 72 | extern int early_init_dt_scan_root(unsigned long node, const char *uname, |
| @@ -120,6 +83,7 @@ extern void unflatten_device_tree(void); | |||
| 120 | extern void unflatten_and_copy_device_tree(void); | 83 | extern void unflatten_and_copy_device_tree(void); |
| 121 | extern void early_init_devtree(void *); | 84 | extern void early_init_devtree(void *); |
| 122 | extern void early_get_first_memblock_info(void *, phys_addr_t *); | 85 | extern void early_get_first_memblock_info(void *, phys_addr_t *); |
| 86 | extern u64 fdt_translate_address(const void *blob, int node_offset); | ||
| 123 | #else /* CONFIG_OF_FLATTREE */ | 87 | #else /* CONFIG_OF_FLATTREE */ |
| 124 | static inline void early_init_fdt_scan_reserved_mem(void) {} | 88 | static inline void early_init_fdt_scan_reserved_mem(void) {} |
| 125 | static inline const char *of_flat_dt_get_machine_name(void) { return NULL; } | 89 | static inline const char *of_flat_dt_get_machine_name(void) { return NULL; } |
diff --git a/include/linux/of_irq.h b/include/linux/of_irq.h index 6404253d810d..bfec136a6d1e 100644 --- a/include/linux/of_irq.h +++ b/include/linux/of_irq.h | |||
| @@ -45,6 +45,7 @@ extern void of_irq_init(const struct of_device_id *matches); | |||
| 45 | #ifdef CONFIG_OF_IRQ | 45 | #ifdef CONFIG_OF_IRQ |
| 46 | extern int of_irq_count(struct device_node *dev); | 46 | extern int of_irq_count(struct device_node *dev); |
| 47 | extern int of_irq_get(struct device_node *dev, int index); | 47 | extern int of_irq_get(struct device_node *dev, int index); |
| 48 | extern int of_irq_get_byname(struct device_node *dev, const char *name); | ||
| 48 | #else | 49 | #else |
| 49 | static inline int of_irq_count(struct device_node *dev) | 50 | static inline int of_irq_count(struct device_node *dev) |
| 50 | { | 51 | { |
| @@ -54,6 +55,10 @@ static inline int of_irq_get(struct device_node *dev, int index) | |||
| 54 | { | 55 | { |
| 55 | return 0; | 56 | return 0; |
| 56 | } | 57 | } |
| 58 | static inline int of_irq_get_byname(struct device_node *dev, const char *name) | ||
| 59 | { | ||
| 60 | return 0; | ||
| 61 | } | ||
| 57 | #endif | 62 | #endif |
| 58 | 63 | ||
| 59 | #if defined(CONFIG_OF) | 64 | #if defined(CONFIG_OF) |
diff --git a/include/linux/of_pci.h b/include/linux/of_pci.h index 1a1f5ffd5288..dde3a4a0fa5d 100644 --- a/include/linux/of_pci.h +++ b/include/linux/of_pci.h | |||
| @@ -6,14 +6,44 @@ | |||
| 6 | 6 | ||
| 7 | struct pci_dev; | 7 | struct pci_dev; |
| 8 | struct of_phandle_args; | 8 | struct of_phandle_args; |
| 9 | int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq); | ||
| 10 | int of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin); | ||
| 11 | |||
| 12 | struct device_node; | 9 | struct device_node; |
| 10 | |||
| 11 | #ifdef CONFIG_OF | ||
| 12 | int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq); | ||
| 13 | struct device_node *of_pci_find_child_device(struct device_node *parent, | 13 | struct device_node *of_pci_find_child_device(struct device_node *parent, |
| 14 | unsigned int devfn); | 14 | unsigned int devfn); |
| 15 | int of_pci_get_devfn(struct device_node *np); | 15 | int of_pci_get_devfn(struct device_node *np); |
| 16 | int of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin); | ||
| 16 | int of_pci_parse_bus_range(struct device_node *node, struct resource *res); | 17 | int of_pci_parse_bus_range(struct device_node *node, struct resource *res); |
| 18 | #else | ||
| 19 | static inline int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq) | ||
| 20 | { | ||
| 21 | return 0; | ||
| 22 | } | ||
| 23 | |||
| 24 | static inline struct device_node *of_pci_find_child_device(struct device_node *parent, | ||
| 25 | unsigned int devfn) | ||
| 26 | { | ||
| 27 | return NULL; | ||
| 28 | } | ||
| 29 | |||
| 30 | static inline int of_pci_get_devfn(struct device_node *np) | ||
| 31 | { | ||
| 32 | return -EINVAL; | ||
| 33 | } | ||
| 34 | |||
| 35 | static inline int | ||
| 36 | of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin) | ||
| 37 | { | ||
| 38 | return 0; | ||
| 39 | } | ||
| 40 | |||
| 41 | static inline int | ||
| 42 | of_pci_parse_bus_range(struct device_node *node, struct resource *res) | ||
| 43 | { | ||
| 44 | return -EINVAL; | ||
| 45 | } | ||
| 46 | #endif | ||
| 17 | 47 | ||
| 18 | #if defined(CONFIG_OF) && defined(CONFIG_PCI_MSI) | 48 | #if defined(CONFIG_OF) && defined(CONFIG_PCI_MSI) |
| 19 | int of_pci_msi_chip_add(struct msi_chip *chip); | 49 | int of_pci_msi_chip_add(struct msi_chip *chip); |
diff --git a/include/linux/of_reserved_mem.h b/include/linux/of_reserved_mem.h index 9b1fbb7f29fc..4669ddfdd5af 100644 --- a/include/linux/of_reserved_mem.h +++ b/include/linux/of_reserved_mem.h | |||
| @@ -21,33 +21,19 @@ struct reserved_mem_ops { | |||
| 21 | struct device *dev); | 21 | struct device *dev); |
| 22 | }; | 22 | }; |
| 23 | 23 | ||
| 24 | typedef int (*reservedmem_of_init_fn)(struct reserved_mem *rmem, | 24 | typedef int (*reservedmem_of_init_fn)(struct reserved_mem *rmem); |
| 25 | unsigned long node, const char *uname); | 25 | |
| 26 | #define RESERVEDMEM_OF_DECLARE(name, compat, init) \ | ||
| 27 | _OF_DECLARE(reservedmem, name, compat, init, reservedmem_of_init_fn) | ||
| 26 | 28 | ||
| 27 | #ifdef CONFIG_OF_RESERVED_MEM | 29 | #ifdef CONFIG_OF_RESERVED_MEM |
| 28 | void fdt_init_reserved_mem(void); | 30 | void fdt_init_reserved_mem(void); |
| 29 | void fdt_reserved_mem_save_node(unsigned long node, const char *uname, | 31 | void fdt_reserved_mem_save_node(unsigned long node, const char *uname, |
| 30 | phys_addr_t base, phys_addr_t size); | 32 | phys_addr_t base, phys_addr_t size); |
| 31 | |||
| 32 | #define RESERVEDMEM_OF_DECLARE(name, compat, init) \ | ||
| 33 | static const struct of_device_id __reservedmem_of_table_##name \ | ||
| 34 | __used __section(__reservedmem_of_table) \ | ||
| 35 | = { .compatible = compat, \ | ||
| 36 | .data = (init == (reservedmem_of_init_fn)NULL) ? \ | ||
| 37 | init : init } | ||
| 38 | |||
| 39 | #else | 33 | #else |
| 40 | static inline void fdt_init_reserved_mem(void) { } | 34 | static inline void fdt_init_reserved_mem(void) { } |
| 41 | static inline void fdt_reserved_mem_save_node(unsigned long node, | 35 | static inline void fdt_reserved_mem_save_node(unsigned long node, |
| 42 | const char *uname, phys_addr_t base, phys_addr_t size) { } | 36 | const char *uname, phys_addr_t base, phys_addr_t size) { } |
| 43 | |||
| 44 | #define RESERVEDMEM_OF_DECLARE(name, compat, init) \ | ||
| 45 | static const struct of_device_id __reservedmem_of_table_##name \ | ||
| 46 | __attribute__((unused)) \ | ||
| 47 | = { .compatible = compat, \ | ||
| 48 | .data = (init == (reservedmem_of_init_fn)NULL) ? \ | ||
| 49 | init : init } | ||
| 50 | |||
| 51 | #endif | 37 | #endif |
| 52 | 38 | ||
| 53 | #endif /* __OF_RESERVED_MEM_H */ | 39 | #endif /* __OF_RESERVED_MEM_H */ |
diff --git a/include/linux/omap-dma.h b/include/linux/omap-dma.h index 7944cdc27bed..88e6ea4a5d36 100644 --- a/include/linux/omap-dma.h +++ b/include/linux/omap-dma.h | |||
| @@ -1,23 +1,6 @@ | |||
| 1 | /* | ||
| 2 | * OMAP DMA Engine support | ||
| 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_OMAP_DMA_H | 1 | #ifndef __LINUX_OMAP_DMA_H |
| 9 | #define __LINUX_OMAP_DMA_H | 2 | #define __LINUX_OMAP_DMA_H |
| 10 | 3 | #include <linux/omap-dmaengine.h> | |
| 11 | struct dma_chan; | ||
| 12 | |||
| 13 | #if defined(CONFIG_DMA_OMAP) || (defined(CONFIG_DMA_OMAP_MODULE) && defined(MODULE)) | ||
| 14 | bool omap_dma_filter_fn(struct dma_chan *, void *); | ||
| 15 | #else | ||
| 16 | static inline bool omap_dma_filter_fn(struct dma_chan *c, void *d) | ||
| 17 | { | ||
| 18 | return false; | ||
| 19 | } | ||
| 20 | #endif | ||
| 21 | 4 | ||
| 22 | /* | 5 | /* |
| 23 | * Legacy OMAP DMA handling defines and functions | 6 | * Legacy OMAP DMA handling defines and functions |
| @@ -393,7 +376,7 @@ extern int omap_modify_dma_chain_params(int chain_id, | |||
| 393 | extern int omap_dma_chain_status(int chain_id); | 376 | extern int omap_dma_chain_status(int chain_id); |
| 394 | #endif | 377 | #endif |
| 395 | 378 | ||
| 396 | #if defined(CONFIG_ARCH_OMAP1) && defined(CONFIG_FB_OMAP) | 379 | #if defined(CONFIG_ARCH_OMAP1) && IS_ENABLED(CONFIG_FB_OMAP) |
| 397 | #include <mach/lcd_dma.h> | 380 | #include <mach/lcd_dma.h> |
| 398 | #else | 381 | #else |
| 399 | static inline int omap_lcd_dma_running(void) | 382 | static inline int omap_lcd_dma_running(void) |
diff --git a/include/linux/omap-dmaengine.h b/include/linux/omap-dmaengine.h new file mode 100644 index 000000000000..8e6906c72e90 --- /dev/null +++ b/include/linux/omap-dmaengine.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | /* | ||
| 2 | * OMAP DMA Engine support | ||
| 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_OMAP_DMAENGINE_H | ||
| 9 | #define __LINUX_OMAP_DMAENGINE_H | ||
| 10 | |||
| 11 | struct dma_chan; | ||
| 12 | |||
| 13 | #if defined(CONFIG_DMA_OMAP) || (defined(CONFIG_DMA_OMAP_MODULE) && defined(MODULE)) | ||
| 14 | bool omap_dma_filter_fn(struct dma_chan *, void *); | ||
| 15 | #else | ||
| 16 | static inline bool omap_dma_filter_fn(struct dma_chan *c, void *d) | ||
| 17 | { | ||
| 18 | return false; | ||
| 19 | } | ||
| 20 | #endif | ||
| 21 | #endif /* __LINUX_OMAP_DMAENGINE_H */ | ||
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index d1fe1a761047..3c545b48aeab 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h | |||
| @@ -198,6 +198,7 @@ struct page; /* forward declaration */ | |||
| 198 | TESTPAGEFLAG(Locked, locked) | 198 | TESTPAGEFLAG(Locked, locked) |
| 199 | PAGEFLAG(Error, error) TESTCLEARFLAG(Error, error) | 199 | PAGEFLAG(Error, error) TESTCLEARFLAG(Error, error) |
| 200 | PAGEFLAG(Referenced, referenced) TESTCLEARFLAG(Referenced, referenced) | 200 | PAGEFLAG(Referenced, referenced) TESTCLEARFLAG(Referenced, referenced) |
| 201 | __SETPAGEFLAG(Referenced, referenced) | ||
| 201 | PAGEFLAG(Dirty, dirty) TESTSCFLAG(Dirty, dirty) __CLEARPAGEFLAG(Dirty, dirty) | 202 | PAGEFLAG(Dirty, dirty) TESTSCFLAG(Dirty, dirty) __CLEARPAGEFLAG(Dirty, dirty) |
| 202 | PAGEFLAG(LRU, lru) __CLEARPAGEFLAG(LRU, lru) | 203 | PAGEFLAG(LRU, lru) __CLEARPAGEFLAG(LRU, lru) |
| 203 | PAGEFLAG(Active, active) __CLEARPAGEFLAG(Active, active) | 204 | PAGEFLAG(Active, active) __CLEARPAGEFLAG(Active, active) |
| @@ -208,6 +209,7 @@ PAGEFLAG(Pinned, pinned) TESTSCFLAG(Pinned, pinned) /* Xen */ | |||
| 208 | PAGEFLAG(SavePinned, savepinned); /* Xen */ | 209 | PAGEFLAG(SavePinned, savepinned); /* Xen */ |
| 209 | PAGEFLAG(Reserved, reserved) __CLEARPAGEFLAG(Reserved, reserved) | 210 | PAGEFLAG(Reserved, reserved) __CLEARPAGEFLAG(Reserved, reserved) |
| 210 | PAGEFLAG(SwapBacked, swapbacked) __CLEARPAGEFLAG(SwapBacked, swapbacked) | 211 | PAGEFLAG(SwapBacked, swapbacked) __CLEARPAGEFLAG(SwapBacked, swapbacked) |
| 212 | __SETPAGEFLAG(SwapBacked, swapbacked) | ||
| 211 | 213 | ||
| 212 | __PAGEFLAG(SlobFree, slob_free) | 214 | __PAGEFLAG(SlobFree, slob_free) |
| 213 | 215 | ||
| @@ -317,13 +319,23 @@ CLEARPAGEFLAG(Uptodate, uptodate) | |||
| 317 | extern void cancel_dirty_page(struct page *page, unsigned int account_size); | 319 | extern void cancel_dirty_page(struct page *page, unsigned int account_size); |
| 318 | 320 | ||
| 319 | int test_clear_page_writeback(struct page *page); | 321 | int test_clear_page_writeback(struct page *page); |
| 320 | int test_set_page_writeback(struct page *page); | 322 | int __test_set_page_writeback(struct page *page, bool keep_write); |
| 323 | |||
| 324 | #define test_set_page_writeback(page) \ | ||
| 325 | __test_set_page_writeback(page, false) | ||
| 326 | #define test_set_page_writeback_keepwrite(page) \ | ||
| 327 | __test_set_page_writeback(page, true) | ||
| 321 | 328 | ||
| 322 | static inline void set_page_writeback(struct page *page) | 329 | static inline void set_page_writeback(struct page *page) |
| 323 | { | 330 | { |
| 324 | test_set_page_writeback(page); | 331 | test_set_page_writeback(page); |
| 325 | } | 332 | } |
| 326 | 333 | ||
| 334 | static inline void set_page_writeback_keepwrite(struct page *page) | ||
| 335 | { | ||
| 336 | test_set_page_writeback_keepwrite(page); | ||
| 337 | } | ||
| 338 | |||
| 327 | #ifdef CONFIG_PAGEFLAGS_EXTENDED | 339 | #ifdef CONFIG_PAGEFLAGS_EXTENDED |
| 328 | /* | 340 | /* |
| 329 | * System with lots of page flags available. This allows separate | 341 | * System with lots of page flags available. This allows separate |
diff --git a/include/linux/pageblock-flags.h b/include/linux/pageblock-flags.h index 2ee8cd2466b5..2baeee12f48e 100644 --- a/include/linux/pageblock-flags.h +++ b/include/linux/pageblock-flags.h | |||
| @@ -30,9 +30,12 @@ enum pageblock_bits { | |||
| 30 | PB_migrate, | 30 | PB_migrate, |
| 31 | PB_migrate_end = PB_migrate + 3 - 1, | 31 | PB_migrate_end = PB_migrate + 3 - 1, |
| 32 | /* 3 bits required for migrate types */ | 32 | /* 3 bits required for migrate types */ |
| 33 | #ifdef CONFIG_COMPACTION | ||
| 34 | PB_migrate_skip,/* If set the block is skipped by compaction */ | 33 | PB_migrate_skip,/* If set the block is skipped by compaction */ |
| 35 | #endif /* CONFIG_COMPACTION */ | 34 | |
| 35 | /* | ||
| 36 | * Assume the bits will always align on a word. If this assumption | ||
| 37 | * changes then get/set pageblock needs updating. | ||
| 38 | */ | ||
| 36 | NR_PAGEBLOCK_BITS | 39 | NR_PAGEBLOCK_BITS |
| 37 | }; | 40 | }; |
| 38 | 41 | ||
| @@ -62,11 +65,26 @@ extern int pageblock_order; | |||
| 62 | /* Forward declaration */ | 65 | /* Forward declaration */ |
| 63 | struct page; | 66 | struct page; |
| 64 | 67 | ||
| 68 | unsigned long get_pfnblock_flags_mask(struct page *page, | ||
| 69 | unsigned long pfn, | ||
| 70 | unsigned long end_bitidx, | ||
| 71 | unsigned long mask); | ||
| 72 | |||
| 73 | void set_pfnblock_flags_mask(struct page *page, | ||
| 74 | unsigned long flags, | ||
| 75 | unsigned long pfn, | ||
| 76 | unsigned long end_bitidx, | ||
| 77 | unsigned long mask); | ||
| 78 | |||
| 65 | /* Declarations for getting and setting flags. See mm/page_alloc.c */ | 79 | /* Declarations for getting and setting flags. See mm/page_alloc.c */ |
| 66 | unsigned long get_pageblock_flags_group(struct page *page, | 80 | #define get_pageblock_flags_group(page, start_bitidx, end_bitidx) \ |
| 67 | int start_bitidx, int end_bitidx); | 81 | get_pfnblock_flags_mask(page, page_to_pfn(page), \ |
| 68 | void set_pageblock_flags_group(struct page *page, unsigned long flags, | 82 | end_bitidx, \ |
| 69 | int start_bitidx, int end_bitidx); | 83 | (1 << (end_bitidx - start_bitidx + 1)) - 1) |
| 84 | #define set_pageblock_flags_group(page, flags, start_bitidx, end_bitidx) \ | ||
| 85 | set_pfnblock_flags_mask(page, flags, page_to_pfn(page), \ | ||
| 86 | end_bitidx, \ | ||
| 87 | (1 << (end_bitidx - start_bitidx + 1)) - 1) | ||
| 70 | 88 | ||
| 71 | #ifdef CONFIG_COMPACTION | 89 | #ifdef CONFIG_COMPACTION |
| 72 | #define get_pageblock_skip(page) \ | 90 | #define get_pageblock_skip(page) \ |
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index 45598f1e9aa3..0a97b583ee8d 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h | |||
| @@ -110,7 +110,7 @@ static inline void mapping_set_gfp_mask(struct address_space *m, gfp_t mask) | |||
| 110 | 110 | ||
| 111 | #define page_cache_get(page) get_page(page) | 111 | #define page_cache_get(page) get_page(page) |
| 112 | #define page_cache_release(page) put_page(page) | 112 | #define page_cache_release(page) put_page(page) |
| 113 | void release_pages(struct page **pages, int nr, int cold); | 113 | void release_pages(struct page **pages, int nr, bool cold); |
| 114 | 114 | ||
| 115 | /* | 115 | /* |
| 116 | * speculatively take a reference to a page. | 116 | * speculatively take a reference to a page. |
| @@ -259,12 +259,109 @@ pgoff_t page_cache_next_hole(struct address_space *mapping, | |||
| 259 | pgoff_t page_cache_prev_hole(struct address_space *mapping, | 259 | pgoff_t page_cache_prev_hole(struct address_space *mapping, |
| 260 | pgoff_t index, unsigned long max_scan); | 260 | pgoff_t index, unsigned long max_scan); |
| 261 | 261 | ||
| 262 | #define FGP_ACCESSED 0x00000001 | ||
| 263 | #define FGP_LOCK 0x00000002 | ||
| 264 | #define FGP_CREAT 0x00000004 | ||
| 265 | #define FGP_WRITE 0x00000008 | ||
| 266 | #define FGP_NOFS 0x00000010 | ||
| 267 | #define FGP_NOWAIT 0x00000020 | ||
| 268 | |||
| 269 | struct page *pagecache_get_page(struct address_space *mapping, pgoff_t offset, | ||
| 270 | int fgp_flags, gfp_t cache_gfp_mask, gfp_t radix_gfp_mask); | ||
| 271 | |||
| 272 | /** | ||
| 273 | * find_get_page - find and get a page reference | ||
| 274 | * @mapping: the address_space to search | ||
| 275 | * @offset: the page index | ||
| 276 | * | ||
| 277 | * Looks up the page cache slot at @mapping & @offset. If there is a | ||
| 278 | * page cache page, it is returned with an increased refcount. | ||
| 279 | * | ||
| 280 | * Otherwise, %NULL is returned. | ||
| 281 | */ | ||
| 282 | static inline struct page *find_get_page(struct address_space *mapping, | ||
| 283 | pgoff_t offset) | ||
| 284 | { | ||
| 285 | return pagecache_get_page(mapping, offset, 0, 0, 0); | ||
| 286 | } | ||
| 287 | |||
| 288 | static inline struct page *find_get_page_flags(struct address_space *mapping, | ||
| 289 | pgoff_t offset, int fgp_flags) | ||
| 290 | { | ||
| 291 | return pagecache_get_page(mapping, offset, fgp_flags, 0, 0); | ||
| 292 | } | ||
| 293 | |||
| 294 | /** | ||
| 295 | * find_lock_page - locate, pin and lock a pagecache page | ||
| 296 | * pagecache_get_page - find and get a page reference | ||
| 297 | * @mapping: the address_space to search | ||
| 298 | * @offset: the page index | ||
| 299 | * | ||
| 300 | * Looks up the page cache slot at @mapping & @offset. If there is a | ||
| 301 | * page cache page, it is returned locked and with an increased | ||
| 302 | * refcount. | ||
| 303 | * | ||
| 304 | * Otherwise, %NULL is returned. | ||
| 305 | * | ||
| 306 | * find_lock_page() may sleep. | ||
| 307 | */ | ||
| 308 | static inline struct page *find_lock_page(struct address_space *mapping, | ||
| 309 | pgoff_t offset) | ||
| 310 | { | ||
| 311 | return pagecache_get_page(mapping, offset, FGP_LOCK, 0, 0); | ||
| 312 | } | ||
| 313 | |||
| 314 | /** | ||
| 315 | * find_or_create_page - locate or add a pagecache page | ||
| 316 | * @mapping: the page's address_space | ||
| 317 | * @index: the page's index into the mapping | ||
| 318 | * @gfp_mask: page allocation mode | ||
| 319 | * | ||
| 320 | * Looks up the page cache slot at @mapping & @offset. If there is a | ||
| 321 | * page cache page, it is returned locked and with an increased | ||
| 322 | * refcount. | ||
| 323 | * | ||
| 324 | * If the page is not present, a new page is allocated using @gfp_mask | ||
| 325 | * and added to the page cache and the VM's LRU list. The page is | ||
| 326 | * returned locked and with an increased refcount. | ||
| 327 | * | ||
| 328 | * On memory exhaustion, %NULL is returned. | ||
| 329 | * | ||
| 330 | * find_or_create_page() may sleep, even if @gfp_flags specifies an | ||
| 331 | * atomic allocation! | ||
| 332 | */ | ||
| 333 | static inline struct page *find_or_create_page(struct address_space *mapping, | ||
| 334 | pgoff_t offset, gfp_t gfp_mask) | ||
| 335 | { | ||
| 336 | return pagecache_get_page(mapping, offset, | ||
| 337 | FGP_LOCK|FGP_ACCESSED|FGP_CREAT, | ||
| 338 | gfp_mask, gfp_mask & GFP_RECLAIM_MASK); | ||
| 339 | } | ||
| 340 | |||
| 341 | /** | ||
| 342 | * grab_cache_page_nowait - returns locked page at given index in given cache | ||
| 343 | * @mapping: target address_space | ||
| 344 | * @index: the page index | ||
| 345 | * | ||
| 346 | * Same as grab_cache_page(), but do not wait if the page is unavailable. | ||
| 347 | * This is intended for speculative data generators, where the data can | ||
| 348 | * be regenerated if the page couldn't be grabbed. This routine should | ||
| 349 | * be safe to call while holding the lock for another page. | ||
| 350 | * | ||
| 351 | * Clear __GFP_FS when allocating the page to avoid recursion into the fs | ||
| 352 | * and deadlock against the caller's locked page. | ||
| 353 | */ | ||
| 354 | static inline struct page *grab_cache_page_nowait(struct address_space *mapping, | ||
| 355 | pgoff_t index) | ||
| 356 | { | ||
| 357 | return pagecache_get_page(mapping, index, | ||
| 358 | FGP_LOCK|FGP_CREAT|FGP_NOFS|FGP_NOWAIT, | ||
| 359 | mapping_gfp_mask(mapping), | ||
| 360 | GFP_NOFS); | ||
| 361 | } | ||
| 362 | |||
| 262 | struct page *find_get_entry(struct address_space *mapping, pgoff_t offset); | 363 | struct page *find_get_entry(struct address_space *mapping, pgoff_t offset); |
| 263 | struct page *find_get_page(struct address_space *mapping, pgoff_t offset); | ||
| 264 | struct page *find_lock_entry(struct address_space *mapping, pgoff_t offset); | 364 | struct page *find_lock_entry(struct address_space *mapping, pgoff_t offset); |
| 265 | struct page *find_lock_page(struct address_space *mapping, pgoff_t offset); | ||
| 266 | struct page *find_or_create_page(struct address_space *mapping, pgoff_t index, | ||
| 267 | gfp_t gfp_mask); | ||
| 268 | unsigned find_get_entries(struct address_space *mapping, pgoff_t start, | 365 | unsigned find_get_entries(struct address_space *mapping, pgoff_t start, |
| 269 | unsigned int nr_entries, struct page **entries, | 366 | unsigned int nr_entries, struct page **entries, |
| 270 | pgoff_t *indices); | 367 | pgoff_t *indices); |
| @@ -287,8 +384,6 @@ static inline struct page *grab_cache_page(struct address_space *mapping, | |||
| 287 | return find_or_create_page(mapping, index, mapping_gfp_mask(mapping)); | 384 | return find_or_create_page(mapping, index, mapping_gfp_mask(mapping)); |
| 288 | } | 385 | } |
| 289 | 386 | ||
| 290 | extern struct page * grab_cache_page_nowait(struct address_space *mapping, | ||
| 291 | pgoff_t index); | ||
| 292 | extern struct page * read_cache_page(struct address_space *mapping, | 387 | extern struct page * read_cache_page(struct address_space *mapping, |
| 293 | pgoff_t index, filler_t *filler, void *data); | 388 | pgoff_t index, filler_t *filler, void *data); |
| 294 | extern struct page * read_cache_page_gfp(struct address_space *mapping, | 389 | extern struct page * read_cache_page_gfp(struct address_space *mapping, |
| @@ -425,6 +520,8 @@ static inline void wait_on_page_writeback(struct page *page) | |||
| 425 | extern void end_page_writeback(struct page *page); | 520 | extern void end_page_writeback(struct page *page); |
| 426 | void wait_for_stable_page(struct page *page); | 521 | void wait_for_stable_page(struct page *page); |
| 427 | 522 | ||
| 523 | void page_endio(struct page *page, int rw, int err); | ||
| 524 | |||
| 428 | /* | 525 | /* |
| 429 | * Add an arbitrary waiter to a page's wait queue | 526 | * Add an arbitrary waiter to a page's wait queue |
| 430 | */ | 527 | */ |
diff --git a/include/linux/percpu-refcount.h b/include/linux/percpu-refcount.h index 95961f0bf62d..5d8920e23073 100644 --- a/include/linux/percpu-refcount.h +++ b/include/linux/percpu-refcount.h | |||
| @@ -110,7 +110,7 @@ static inline void percpu_ref_get(struct percpu_ref *ref) | |||
| 110 | pcpu_count = ACCESS_ONCE(ref->pcpu_count); | 110 | pcpu_count = ACCESS_ONCE(ref->pcpu_count); |
| 111 | 111 | ||
| 112 | if (likely(REF_STATUS(pcpu_count) == PCPU_REF_PTR)) | 112 | if (likely(REF_STATUS(pcpu_count) == PCPU_REF_PTR)) |
| 113 | __this_cpu_inc(*pcpu_count); | 113 | this_cpu_inc(*pcpu_count); |
| 114 | else | 114 | else |
| 115 | atomic_inc(&ref->count); | 115 | atomic_inc(&ref->count); |
| 116 | 116 | ||
| @@ -121,6 +121,36 @@ static inline void percpu_ref_get(struct percpu_ref *ref) | |||
| 121 | * percpu_ref_tryget - try to increment a percpu refcount | 121 | * percpu_ref_tryget - try to increment a percpu refcount |
| 122 | * @ref: percpu_ref to try-get | 122 | * @ref: percpu_ref to try-get |
| 123 | * | 123 | * |
| 124 | * Increment a percpu refcount unless its count already reached zero. | ||
| 125 | * Returns %true on success; %false on failure. | ||
| 126 | * | ||
| 127 | * The caller is responsible for ensuring that @ref stays accessible. | ||
| 128 | */ | ||
| 129 | static inline bool percpu_ref_tryget(struct percpu_ref *ref) | ||
| 130 | { | ||
| 131 | unsigned __percpu *pcpu_count; | ||
| 132 | int ret = false; | ||
| 133 | |||
| 134 | rcu_read_lock_sched(); | ||
| 135 | |||
| 136 | pcpu_count = ACCESS_ONCE(ref->pcpu_count); | ||
| 137 | |||
| 138 | if (likely(REF_STATUS(pcpu_count) == PCPU_REF_PTR)) { | ||
| 139 | this_cpu_inc(*pcpu_count); | ||
| 140 | ret = true; | ||
| 141 | } else { | ||
| 142 | ret = atomic_inc_not_zero(&ref->count); | ||
| 143 | } | ||
| 144 | |||
| 145 | rcu_read_unlock_sched(); | ||
| 146 | |||
| 147 | return ret; | ||
| 148 | } | ||
| 149 | |||
| 150 | /** | ||
| 151 | * percpu_ref_tryget_live - try to increment a live percpu refcount | ||
| 152 | * @ref: percpu_ref to try-get | ||
| 153 | * | ||
| 124 | * Increment a percpu refcount unless it has already been killed. Returns | 154 | * Increment a percpu refcount unless it has already been killed. Returns |
| 125 | * %true on success; %false on failure. | 155 | * %true on success; %false on failure. |
| 126 | * | 156 | * |
| @@ -128,8 +158,10 @@ static inline void percpu_ref_get(struct percpu_ref *ref) | |||
| 128 | * will fail. For such guarantee, percpu_ref_kill_and_confirm() should be | 158 | * will fail. For such guarantee, percpu_ref_kill_and_confirm() should be |
| 129 | * used. After the confirm_kill callback is invoked, it's guaranteed that | 159 | * used. After the confirm_kill callback is invoked, it's guaranteed that |
| 130 | * no new reference will be given out by percpu_ref_tryget(). | 160 | * no new reference will be given out by percpu_ref_tryget(). |
| 161 | * | ||
| 162 | * The caller is responsible for ensuring that @ref stays accessible. | ||
| 131 | */ | 163 | */ |
| 132 | static inline bool percpu_ref_tryget(struct percpu_ref *ref) | 164 | static inline bool percpu_ref_tryget_live(struct percpu_ref *ref) |
| 133 | { | 165 | { |
| 134 | unsigned __percpu *pcpu_count; | 166 | unsigned __percpu *pcpu_count; |
| 135 | int ret = false; | 167 | int ret = false; |
| @@ -139,7 +171,7 @@ static inline bool percpu_ref_tryget(struct percpu_ref *ref) | |||
| 139 | pcpu_count = ACCESS_ONCE(ref->pcpu_count); | 171 | pcpu_count = ACCESS_ONCE(ref->pcpu_count); |
| 140 | 172 | ||
| 141 | if (likely(REF_STATUS(pcpu_count) == PCPU_REF_PTR)) { | 173 | if (likely(REF_STATUS(pcpu_count) == PCPU_REF_PTR)) { |
| 142 | __this_cpu_inc(*pcpu_count); | 174 | this_cpu_inc(*pcpu_count); |
| 143 | ret = true; | 175 | ret = true; |
| 144 | } | 176 | } |
| 145 | 177 | ||
| @@ -164,7 +196,7 @@ static inline void percpu_ref_put(struct percpu_ref *ref) | |||
| 164 | pcpu_count = ACCESS_ONCE(ref->pcpu_count); | 196 | pcpu_count = ACCESS_ONCE(ref->pcpu_count); |
| 165 | 197 | ||
| 166 | if (likely(REF_STATUS(pcpu_count) == PCPU_REF_PTR)) | 198 | if (likely(REF_STATUS(pcpu_count) == PCPU_REF_PTR)) |
| 167 | __this_cpu_dec(*pcpu_count); | 199 | this_cpu_dec(*pcpu_count); |
| 168 | else if (unlikely(atomic_dec_and_test(&ref->count))) | 200 | else if (unlikely(atomic_dec_and_test(&ref->count))) |
| 169 | ref->release(ref); | 201 | ref->release(ref); |
| 170 | 202 | ||
diff --git a/include/linux/percpu.h b/include/linux/percpu.h index 495c6543a8f2..8419053d0f2e 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | */ | 29 | */ |
| 30 | #define get_cpu_var(var) (*({ \ | 30 | #define get_cpu_var(var) (*({ \ |
| 31 | preempt_disable(); \ | 31 | preempt_disable(); \ |
| 32 | &__get_cpu_var(var); })) | 32 | this_cpu_ptr(&var); })) |
| 33 | 33 | ||
| 34 | /* | 34 | /* |
| 35 | * The weird & is necessary because sparse considers (void)(var) to be | 35 | * The weird & is necessary because sparse considers (void)(var) to be |
diff --git a/include/linux/platform_data/adau17x1.h b/include/linux/platform_data/adau17x1.h new file mode 100644 index 000000000000..a81766cae230 --- /dev/null +++ b/include/linux/platform_data/adau17x1.h | |||
| @@ -0,0 +1,109 @@ | |||
| 1 | /* | ||
| 2 | * Driver for ADAU1761/ADAU1461/ADAU1761/ADAU1961/ADAU1781/ADAU1781 codecs | ||
| 3 | * | ||
| 4 | * Copyright 2011-2014 Analog Devices Inc. | ||
| 5 | * Author: Lars-Peter Clausen <lars@metafoo.de> | ||
| 6 | * | ||
| 7 | * Licensed under the GPL-2 or later. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __LINUX_PLATFORM_DATA_ADAU17X1_H__ | ||
| 11 | #define __LINUX_PLATFORM_DATA_ADAU17X1_H__ | ||
| 12 | |||
| 13 | /** | ||
| 14 | * enum adau17x1_micbias_voltage - Microphone bias voltage | ||
| 15 | * @ADAU17X1_MICBIAS_0_90_AVDD: 0.9 * AVDD | ||
| 16 | * @ADAU17X1_MICBIAS_0_65_AVDD: 0.65 * AVDD | ||
| 17 | */ | ||
| 18 | enum adau17x1_micbias_voltage { | ||
| 19 | ADAU17X1_MICBIAS_0_90_AVDD = 0, | ||
| 20 | ADAU17X1_MICBIAS_0_65_AVDD = 1, | ||
| 21 | }; | ||
| 22 | |||
| 23 | /** | ||
| 24 | * enum adau1761_digmic_jackdet_pin_mode - Configuration of the JACKDET/MICIN pin | ||
| 25 | * @ADAU1761_DIGMIC_JACKDET_PIN_MODE_NONE: Disable the pin | ||
| 26 | * @ADAU1761_DIGMIC_JACKDET_PIN_MODE_DIGMIC: Configure the pin for usage as | ||
| 27 | * digital microphone input. | ||
| 28 | * @ADAU1761_DIGMIC_JACKDET_PIN_MODE_JACKDETECT: Configure the pin for jack | ||
| 29 | * insertion detection. | ||
| 30 | */ | ||
| 31 | enum adau1761_digmic_jackdet_pin_mode { | ||
| 32 | ADAU1761_DIGMIC_JACKDET_PIN_MODE_NONE, | ||
| 33 | ADAU1761_DIGMIC_JACKDET_PIN_MODE_DIGMIC, | ||
| 34 | ADAU1761_DIGMIC_JACKDET_PIN_MODE_JACKDETECT, | ||
| 35 | }; | ||
| 36 | |||
| 37 | /** | ||
| 38 | * adau1761_jackdetect_debounce_time - Jack insertion detection debounce time | ||
| 39 | * @ADAU1761_JACKDETECT_DEBOUNCE_5MS: 5 milliseconds | ||
| 40 | * @ADAU1761_JACKDETECT_DEBOUNCE_10MS: 10 milliseconds | ||
| 41 | * @ADAU1761_JACKDETECT_DEBOUNCE_20MS: 20 milliseconds | ||
| 42 | * @ADAU1761_JACKDETECT_DEBOUNCE_40MS: 40 milliseconds | ||
| 43 | */ | ||
| 44 | enum adau1761_jackdetect_debounce_time { | ||
| 45 | ADAU1761_JACKDETECT_DEBOUNCE_5MS = 0, | ||
| 46 | ADAU1761_JACKDETECT_DEBOUNCE_10MS = 1, | ||
| 47 | ADAU1761_JACKDETECT_DEBOUNCE_20MS = 2, | ||
| 48 | ADAU1761_JACKDETECT_DEBOUNCE_40MS = 3, | ||
| 49 | }; | ||
| 50 | |||
| 51 | /** | ||
| 52 | * enum adau1761_output_mode - Output mode configuration | ||
| 53 | * @ADAU1761_OUTPUT_MODE_HEADPHONE: Headphone output | ||
| 54 | * @ADAU1761_OUTPUT_MODE_HEADPHONE_CAPLESS: Capless headphone output | ||
| 55 | * @ADAU1761_OUTPUT_MODE_LINE: Line output | ||
| 56 | */ | ||
| 57 | enum adau1761_output_mode { | ||
| 58 | ADAU1761_OUTPUT_MODE_HEADPHONE, | ||
| 59 | ADAU1761_OUTPUT_MODE_HEADPHONE_CAPLESS, | ||
| 60 | ADAU1761_OUTPUT_MODE_LINE, | ||
| 61 | }; | ||
| 62 | |||
| 63 | /** | ||
| 64 | * struct adau1761_platform_data - ADAU1761 Codec driver platform data | ||
| 65 | * @input_differential: If true the input pins will be configured in | ||
| 66 | * differential mode. | ||
| 67 | * @lineout_mode: Output mode for the LOUT/ROUT pins | ||
| 68 | * @headphone_mode: Output mode for the LHP/RHP pins | ||
| 69 | * @digmic_jackdetect_pin_mode: JACKDET/MICIN pin configuration | ||
| 70 | * @jackdetect_debounce_time: Jack insertion detection debounce time. | ||
| 71 | * Note: This value will only be used, if the JACKDET/MICIN pin is configured | ||
| 72 | * for jack insertion detection. | ||
| 73 | * @jackdetect_active_low: If true the jack insertion detection is active low. | ||
| 74 | * Othwise it will be active high. | ||
| 75 | * @micbias_voltage: Microphone voltage bias | ||
| 76 | */ | ||
| 77 | struct adau1761_platform_data { | ||
| 78 | bool input_differential; | ||
| 79 | enum adau1761_output_mode lineout_mode; | ||
| 80 | enum adau1761_output_mode headphone_mode; | ||
| 81 | |||
| 82 | enum adau1761_digmic_jackdet_pin_mode digmic_jackdetect_pin_mode; | ||
| 83 | |||
| 84 | enum adau1761_jackdetect_debounce_time jackdetect_debounce_time; | ||
| 85 | bool jackdetect_active_low; | ||
| 86 | |||
| 87 | enum adau17x1_micbias_voltage micbias_voltage; | ||
| 88 | }; | ||
| 89 | |||
| 90 | /** | ||
| 91 | * struct adau1781_platform_data - ADAU1781 Codec driver platform data | ||
| 92 | * @left_input_differential: If true configure the left input as | ||
| 93 | * differential input. | ||
| 94 | * @right_input_differential: If true configure the right input as differntial | ||
| 95 | * input. | ||
| 96 | * @use_dmic: If true configure the MIC pins as digital microphone pins instead | ||
| 97 | * of analog microphone pins. | ||
| 98 | * @micbias_voltage: Microphone voltage bias | ||
| 99 | */ | ||
| 100 | struct adau1781_platform_data { | ||
| 101 | bool left_input_differential; | ||
| 102 | bool right_input_differential; | ||
| 103 | |||
| 104 | bool use_dmic; | ||
| 105 | |||
| 106 | enum adau17x1_micbias_voltage micbias_voltage; | ||
| 107 | }; | ||
| 108 | |||
| 109 | #endif | ||
diff --git a/include/linux/platform_data/elm.h b/include/linux/platform_data/elm.h index 4edb40676b3f..780d1e97f620 100644 --- a/include/linux/platform_data/elm.h +++ b/include/linux/platform_data/elm.h | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | enum bch_ecc { | 21 | enum bch_ecc { |
| 22 | BCH4_ECC = 0, | 22 | BCH4_ECC = 0, |
| 23 | BCH8_ECC, | 23 | BCH8_ECC, |
| 24 | BCH16_ECC, | ||
| 24 | }; | 25 | }; |
| 25 | 26 | ||
| 26 | /* ELM support 8 error syndrome process */ | 27 | /* ELM support 8 error syndrome process */ |
| @@ -38,7 +39,7 @@ struct elm_errorvec { | |||
| 38 | bool error_reported; | 39 | bool error_reported; |
| 39 | bool error_uncorrectable; | 40 | bool error_uncorrectable; |
| 40 | int error_count; | 41 | int error_count; |
| 41 | int error_loc[ERROR_VECTOR_MAX]; | 42 | int error_loc[16]; |
| 42 | }; | 43 | }; |
| 43 | 44 | ||
| 44 | void elm_decode_bch_error_page(struct device *dev, u8 *ecc_calc, | 45 | void elm_decode_bch_error_page(struct device *dev, u8 *ecc_calc, |
diff --git a/include/linux/platform_data/intel-mid_wdt.h b/include/linux/platform_data/intel-mid_wdt.h new file mode 100644 index 000000000000..b98253466ace --- /dev/null +++ b/include/linux/platform_data/intel-mid_wdt.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* | ||
| 2 | * intel-mid_wdt: generic Intel MID SCU watchdog driver | ||
| 3 | * | ||
| 4 | * Copyright (C) 2014 Intel Corporation. All rights reserved. | ||
| 5 | * Contact: David Cohen <david.a.cohen@linux.intel.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of version 2 of the GNU General | ||
| 9 | * Public License as published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef __INTEL_MID_WDT_H__ | ||
| 13 | #define __INTEL_MID_WDT_H__ | ||
| 14 | |||
| 15 | #include <linux/platform_device.h> | ||
| 16 | |||
| 17 | struct intel_mid_wdt_pdata { | ||
| 18 | int irq; | ||
| 19 | int (*probe)(struct platform_device *pdev); | ||
| 20 | }; | ||
| 21 | |||
| 22 | #endif /*__INTEL_MID_WDT_H__*/ | ||
diff --git a/include/linux/platform_data/ipmmu-vmsa.h b/include/linux/platform_data/ipmmu-vmsa.h new file mode 100644 index 000000000000..5275b3ac6d37 --- /dev/null +++ b/include/linux/platform_data/ipmmu-vmsa.h | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | /* | ||
| 2 | * IPMMU VMSA Platform Data | ||
| 3 | * | ||
| 4 | * Copyright (C) 2014 Renesas Electronics Corporation | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; version 2 of the License. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef __IPMMU_VMSA_H__ | ||
| 12 | #define __IPMMU_VMSA_H__ | ||
| 13 | |||
| 14 | struct ipmmu_vmsa_master { | ||
| 15 | const char *name; | ||
| 16 | unsigned int utlb; | ||
| 17 | }; | ||
| 18 | |||
| 19 | struct ipmmu_vmsa_platform_data { | ||
| 20 | const struct ipmmu_vmsa_master *masters; | ||
| 21 | unsigned int num_masters; | ||
| 22 | }; | ||
| 23 | |||
| 24 | #endif /* __IPMMU_VMSA_H__ */ | ||
diff --git a/include/linux/platform_data/leds-pca9685.h b/include/linux/platform_data/leds-pca9685.h deleted file mode 100644 index 778e9e4249cc..000000000000 --- a/include/linux/platform_data/leds-pca9685.h +++ /dev/null | |||
| @@ -1,35 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright 2013 Maximilian Güntner <maximilian.guentner@gmail.com> | ||
| 3 | * | ||
| 4 | * This file is subject to the terms and conditions of version 2 of | ||
| 5 | * the GNU General Public License. See the file COPYING in the main | ||
| 6 | * directory of this archive for more details. | ||
| 7 | * | ||
| 8 | * Based on leds-pca963x.h by Peter Meerwald <p.meerwald@bct-electronic.com> | ||
| 9 | * | ||
| 10 | * LED driver for the NXP PCA9685 PWM chip | ||
| 11 | * | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef __LINUX_PCA9685_H | ||
| 15 | #define __LINUX_PCA9685_H | ||
| 16 | |||
| 17 | #include <linux/leds.h> | ||
| 18 | |||
| 19 | enum pca9685_outdrv { | ||
| 20 | PCA9685_OPEN_DRAIN, | ||
| 21 | PCA9685_TOTEM_POLE, | ||
| 22 | }; | ||
| 23 | |||
| 24 | enum pca9685_inverted { | ||
| 25 | PCA9685_NOT_INVERTED, | ||
| 26 | PCA9685_INVERTED, | ||
| 27 | }; | ||
| 28 | |||
| 29 | struct pca9685_platform_data { | ||
| 30 | struct led_platform_data leds; | ||
| 31 | enum pca9685_outdrv outdrv; | ||
| 32 | enum pca9685_inverted inverted; | ||
| 33 | }; | ||
| 34 | |||
| 35 | #endif /* __LINUX_PCA9685_H */ | ||
diff --git a/include/linux/platform_data/mipi-csis.h b/include/linux/platform_data/mipi-csis.h deleted file mode 100644 index c2fd9024717c..000000000000 --- a/include/linux/platform_data/mipi-csis.h +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2010 - 2012 Samsung Electronics Co., Ltd. | ||
| 3 | * | ||
| 4 | * Samsung S5P/Exynos SoC series MIPI CSIS device support | ||
| 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 __PLAT_SAMSUNG_MIPI_CSIS_H_ | ||
| 12 | #define __PLAT_SAMSUNG_MIPI_CSIS_H_ __FILE__ | ||
| 13 | |||
| 14 | /** | ||
| 15 | * struct s5p_platform_mipi_csis - platform data for S5P MIPI-CSIS driver | ||
| 16 | * @clk_rate: bus clock frequency | ||
| 17 | * @wclk_source: CSI wrapper clock selection: 0 - bus clock, 1 - ext. SCLK_CAM | ||
| 18 | * @lanes: number of data lanes used | ||
| 19 | * @hs_settle: HS-RX settle time | ||
| 20 | */ | ||
| 21 | struct s5p_platform_mipi_csis { | ||
| 22 | unsigned long clk_rate; | ||
| 23 | u8 wclk_source; | ||
| 24 | u8 lanes; | ||
| 25 | u8 hs_settle; | ||
| 26 | }; | ||
| 27 | |||
| 28 | #endif /* __PLAT_SAMSUNG_MIPI_CSIS_H_ */ | ||
diff --git a/include/linux/platform_data/mtd-nand-omap2.h b/include/linux/platform_data/mtd-nand-omap2.h index 3e9dd6676b97..660c029d694f 100644 --- a/include/linux/platform_data/mtd-nand-omap2.h +++ b/include/linux/platform_data/mtd-nand-omap2.h | |||
| @@ -31,6 +31,8 @@ enum omap_ecc { | |||
| 31 | OMAP_ECC_BCH8_CODE_HW_DETECTION_SW, | 31 | OMAP_ECC_BCH8_CODE_HW_DETECTION_SW, |
| 32 | /* 8-bit ECC calculation by GPMC, Error detection by ELM */ | 32 | /* 8-bit ECC calculation by GPMC, Error detection by ELM */ |
| 33 | OMAP_ECC_BCH8_CODE_HW, | 33 | OMAP_ECC_BCH8_CODE_HW, |
| 34 | /* 16-bit ECC calculation by GPMC, Error detection by ELM */ | ||
| 35 | OMAP_ECC_BCH16_CODE_HW, | ||
| 34 | }; | 36 | }; |
| 35 | 37 | ||
| 36 | struct gpmc_nand_regs { | 38 | struct gpmc_nand_regs { |
| @@ -50,6 +52,9 @@ struct gpmc_nand_regs { | |||
| 50 | void __iomem *gpmc_bch_result1[GPMC_BCH_NUM_REMAINDER]; | 52 | void __iomem *gpmc_bch_result1[GPMC_BCH_NUM_REMAINDER]; |
| 51 | void __iomem *gpmc_bch_result2[GPMC_BCH_NUM_REMAINDER]; | 53 | void __iomem *gpmc_bch_result2[GPMC_BCH_NUM_REMAINDER]; |
| 52 | void __iomem *gpmc_bch_result3[GPMC_BCH_NUM_REMAINDER]; | 54 | void __iomem *gpmc_bch_result3[GPMC_BCH_NUM_REMAINDER]; |
| 55 | void __iomem *gpmc_bch_result4[GPMC_BCH_NUM_REMAINDER]; | ||
| 56 | void __iomem *gpmc_bch_result5[GPMC_BCH_NUM_REMAINDER]; | ||
| 57 | void __iomem *gpmc_bch_result6[GPMC_BCH_NUM_REMAINDER]; | ||
| 53 | }; | 58 | }; |
| 54 | 59 | ||
| 55 | struct omap_nand_platform_data { | 60 | struct omap_nand_platform_data { |
diff --git a/include/linux/platform_data/mtd-nand-pxa3xx.h b/include/linux/platform_data/mtd-nand-pxa3xx.h index a94147124929..ac4ea2e641c7 100644 --- a/include/linux/platform_data/mtd-nand-pxa3xx.h +++ b/include/linux/platform_data/mtd-nand-pxa3xx.h | |||
| @@ -58,6 +58,9 @@ struct pxa3xx_nand_platform_data { | |||
| 58 | /* use an flash-based bad block table */ | 58 | /* use an flash-based bad block table */ |
| 59 | bool flash_bbt; | 59 | bool flash_bbt; |
| 60 | 60 | ||
| 61 | /* requested ECC strength and ECC step size */ | ||
| 62 | int ecc_strength, ecc_step_size; | ||
| 63 | |||
| 61 | const struct mtd_partition *parts[NUM_CHIP_SELECT]; | 64 | const struct mtd_partition *parts[NUM_CHIP_SELECT]; |
| 62 | unsigned int nr_parts[NUM_CHIP_SELECT]; | 65 | unsigned int nr_parts[NUM_CHIP_SELECT]; |
| 63 | 66 | ||
diff --git a/include/linux/platform_data/omap4-keypad.h b/include/linux/platform_data/omap4-keypad.h deleted file mode 100644 index 4eef5fb05a17..000000000000 --- a/include/linux/platform_data/omap4-keypad.h +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | #ifndef __LINUX_INPUT_OMAP4_KEYPAD_H | ||
| 2 | #define __LINUX_INPUT_OMAP4_KEYPAD_H | ||
| 3 | |||
| 4 | #include <linux/input/matrix_keypad.h> | ||
| 5 | |||
| 6 | struct omap4_keypad_platform_data { | ||
| 7 | const struct matrix_keymap_data *keymap_data; | ||
| 8 | |||
| 9 | u8 rows; | ||
| 10 | u8 cols; | ||
| 11 | }; | ||
| 12 | |||
| 13 | #endif /* __LINUX_INPUT_OMAP4_KEYPAD_H */ | ||
diff --git a/include/linux/platform_data/pwm-renesas-tpu.h b/include/linux/platform_data/pwm-renesas-tpu.h deleted file mode 100644 index a7220b10ddab..000000000000 --- a/include/linux/platform_data/pwm-renesas-tpu.h +++ /dev/null | |||
| @@ -1,16 +0,0 @@ | |||
| 1 | #ifndef __PWM_RENESAS_TPU_H__ | ||
| 2 | #define __PWM_RENESAS_TPU_H__ | ||
| 3 | |||
| 4 | #include <linux/pwm.h> | ||
| 5 | |||
| 6 | #define TPU_CHANNEL_MAX 4 | ||
| 7 | |||
| 8 | struct tpu_pwm_channel_data { | ||
| 9 | enum pwm_polarity polarity; | ||
| 10 | }; | ||
| 11 | |||
| 12 | struct tpu_pwm_platform_data { | ||
| 13 | struct tpu_pwm_channel_data channels[TPU_CHANNEL_MAX]; | ||
| 14 | }; | ||
| 15 | |||
| 16 | #endif /* __PWM_RENESAS_TPU_H__ */ | ||
diff --git a/include/linux/plist.h b/include/linux/plist.h index aa0fb390bd29..8b6c970cff6c 100644 --- a/include/linux/plist.h +++ b/include/linux/plist.h | |||
| @@ -98,6 +98,13 @@ struct plist_node { | |||
| 98 | } | 98 | } |
| 99 | 99 | ||
| 100 | /** | 100 | /** |
| 101 | * PLIST_HEAD - declare and init plist_head | ||
| 102 | * @head: name for struct plist_head variable | ||
| 103 | */ | ||
| 104 | #define PLIST_HEAD(head) \ | ||
| 105 | struct plist_head head = PLIST_HEAD_INIT(head) | ||
| 106 | |||
| 107 | /** | ||
| 101 | * PLIST_NODE_INIT - static struct plist_node initializer | 108 | * PLIST_NODE_INIT - static struct plist_node initializer |
| 102 | * @node: struct plist_node variable name | 109 | * @node: struct plist_node variable name |
| 103 | * @__prio: initial node priority | 110 | * @__prio: initial node priority |
| @@ -134,6 +141,8 @@ static inline void plist_node_init(struct plist_node *node, int prio) | |||
| 134 | extern void plist_add(struct plist_node *node, struct plist_head *head); | 141 | extern void plist_add(struct plist_node *node, struct plist_head *head); |
| 135 | extern void plist_del(struct plist_node *node, struct plist_head *head); | 142 | extern void plist_del(struct plist_node *node, struct plist_head *head); |
| 136 | 143 | ||
| 144 | extern void plist_requeue(struct plist_node *node, struct plist_head *head); | ||
| 145 | |||
| 137 | /** | 146 | /** |
| 138 | * plist_for_each - iterate over the plist | 147 | * plist_for_each - iterate over the plist |
| 139 | * @pos: the type * to use as a loop counter | 148 | * @pos: the type * to use as a loop counter |
| @@ -143,6 +152,16 @@ extern void plist_del(struct plist_node *node, struct plist_head *head); | |||
| 143 | list_for_each_entry(pos, &(head)->node_list, node_list) | 152 | list_for_each_entry(pos, &(head)->node_list, node_list) |
| 144 | 153 | ||
| 145 | /** | 154 | /** |
| 155 | * plist_for_each_continue - continue iteration over the plist | ||
| 156 | * @pos: the type * to use as a loop cursor | ||
| 157 | * @head: the head for your list | ||
| 158 | * | ||
| 159 | * Continue to iterate over plist, continuing after the current position. | ||
| 160 | */ | ||
| 161 | #define plist_for_each_continue(pos, head) \ | ||
| 162 | list_for_each_entry_continue(pos, &(head)->node_list, node_list) | ||
| 163 | |||
| 164 | /** | ||
| 146 | * plist_for_each_safe - iterate safely over a plist of given type | 165 | * plist_for_each_safe - iterate safely over a plist of given type |
| 147 | * @pos: the type * to use as a loop counter | 166 | * @pos: the type * to use as a loop counter |
| 148 | * @n: another type * to use as temporary storage | 167 | * @n: another type * to use as temporary storage |
| @@ -163,6 +182,18 @@ extern void plist_del(struct plist_node *node, struct plist_head *head); | |||
| 163 | list_for_each_entry(pos, &(head)->node_list, mem.node_list) | 182 | list_for_each_entry(pos, &(head)->node_list, mem.node_list) |
| 164 | 183 | ||
| 165 | /** | 184 | /** |
| 185 | * plist_for_each_entry_continue - continue iteration over list of given type | ||
| 186 | * @pos: the type * to use as a loop cursor | ||
| 187 | * @head: the head for your list | ||
| 188 | * @m: the name of the list_struct within the struct | ||
| 189 | * | ||
| 190 | * Continue to iterate over list of given type, continuing after | ||
| 191 | * the current position. | ||
| 192 | */ | ||
| 193 | #define plist_for_each_entry_continue(pos, head, m) \ | ||
| 194 | list_for_each_entry_continue(pos, &(head)->node_list, m.node_list) | ||
| 195 | |||
| 196 | /** | ||
| 166 | * plist_for_each_entry_safe - iterate safely over list of given type | 197 | * plist_for_each_entry_safe - iterate safely over list of given type |
| 167 | * @pos: the type * to use as a loop counter | 198 | * @pos: the type * to use as a loop counter |
| 168 | * @n: another type * to use as temporary storage | 199 | * @n: another type * to use as temporary storage |
| @@ -229,6 +260,20 @@ static inline int plist_node_empty(const struct plist_node *node) | |||
| 229 | #endif | 260 | #endif |
| 230 | 261 | ||
| 231 | /** | 262 | /** |
| 263 | * plist_next - get the next entry in list | ||
| 264 | * @pos: the type * to cursor | ||
| 265 | */ | ||
| 266 | #define plist_next(pos) \ | ||
| 267 | list_next_entry(pos, node_list) | ||
| 268 | |||
| 269 | /** | ||
| 270 | * plist_prev - get the prev entry in list | ||
| 271 | * @pos: the type * to cursor | ||
| 272 | */ | ||
| 273 | #define plist_prev(pos) \ | ||
| 274 | list_prev_entry(pos, node_list) | ||
| 275 | |||
| 276 | /** | ||
| 232 | * plist_first - return the first node (and thus, highest priority) | 277 | * plist_first - return the first node (and thus, highest priority) |
| 233 | * @head: the &struct plist_head pointer | 278 | * @head: the &struct plist_head pointer |
| 234 | * | 279 | * |
diff --git a/include/linux/printk.h b/include/linux/printk.h index 8752f7595b27..319ff7e53efb 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h | |||
| @@ -30,6 +30,17 @@ static inline const char *printk_skip_level(const char *buffer) | |||
| 30 | return buffer; | 30 | return buffer; |
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | /* printk's without a loglevel use this.. */ | ||
| 34 | #define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL | ||
| 35 | |||
| 36 | /* We show everything that is MORE important than this.. */ | ||
| 37 | #define CONSOLE_LOGLEVEL_SILENT 0 /* Mum's the word */ | ||
| 38 | #define CONSOLE_LOGLEVEL_MIN 1 /* Minimum loglevel we let people use */ | ||
| 39 | #define CONSOLE_LOGLEVEL_QUIET 4 /* Shhh ..., when booted with "quiet" */ | ||
| 40 | #define CONSOLE_LOGLEVEL_DEFAULT 7 /* anything MORE serious than KERN_DEBUG */ | ||
| 41 | #define CONSOLE_LOGLEVEL_DEBUG 10 /* issue debug messages */ | ||
| 42 | #define CONSOLE_LOGLEVEL_MOTORMOUTH 15 /* You can't shut this one up */ | ||
| 43 | |||
| 33 | extern int console_printk[]; | 44 | extern int console_printk[]; |
| 34 | 45 | ||
| 35 | #define console_loglevel (console_printk[0]) | 46 | #define console_loglevel (console_printk[0]) |
| @@ -39,13 +50,13 @@ extern int console_printk[]; | |||
| 39 | 50 | ||
| 40 | static inline void console_silent(void) | 51 | static inline void console_silent(void) |
| 41 | { | 52 | { |
| 42 | console_loglevel = 0; | 53 | console_loglevel = CONSOLE_LOGLEVEL_SILENT; |
| 43 | } | 54 | } |
| 44 | 55 | ||
| 45 | static inline void console_verbose(void) | 56 | static inline void console_verbose(void) |
| 46 | { | 57 | { |
| 47 | if (console_loglevel) | 58 | if (console_loglevel) |
| 48 | console_loglevel = 15; | 59 | console_loglevel = CONSOLE_LOGLEVEL_MOTORMOUTH; |
| 49 | } | 60 | } |
| 50 | 61 | ||
| 51 | struct va_format { | 62 | struct va_format { |
| @@ -128,9 +139,9 @@ asmlinkage __printf(1, 2) __cold | |||
| 128 | int printk(const char *fmt, ...); | 139 | int printk(const char *fmt, ...); |
| 129 | 140 | ||
| 130 | /* | 141 | /* |
| 131 | * Special printk facility for scheduler use only, _DO_NOT_USE_ ! | 142 | * Special printk facility for scheduler/timekeeping use only, _DO_NOT_USE_ ! |
| 132 | */ | 143 | */ |
| 133 | __printf(1, 2) __cold int printk_sched(const char *fmt, ...); | 144 | __printf(1, 2) __cold int printk_deferred(const char *fmt, ...); |
| 134 | 145 | ||
| 135 | /* | 146 | /* |
| 136 | * Please don't use printk_ratelimit(), because it shares ratelimiting state | 147 | * Please don't use printk_ratelimit(), because it shares ratelimiting state |
| @@ -165,7 +176,7 @@ int printk(const char *s, ...) | |||
| 165 | return 0; | 176 | return 0; |
| 166 | } | 177 | } |
| 167 | static inline __printf(1, 2) __cold | 178 | static inline __printf(1, 2) __cold |
| 168 | int printk_sched(const char *s, ...) | 179 | int printk_deferred(const char *s, ...) |
| 169 | { | 180 | { |
| 170 | return 0; | 181 | return 0; |
| 171 | } | 182 | } |
| @@ -210,6 +221,12 @@ extern asmlinkage void dump_stack(void) __cold; | |||
| 210 | #define pr_fmt(fmt) fmt | 221 | #define pr_fmt(fmt) fmt |
| 211 | #endif | 222 | #endif |
| 212 | 223 | ||
| 224 | /* | ||
| 225 | * These can be used to print at the various log levels. | ||
| 226 | * All of these will print unconditionally, although note that pr_debug() | ||
| 227 | * and other debug macros are compiled out unless either DEBUG is defined | ||
| 228 | * or CONFIG_DYNAMIC_DEBUG is set. | ||
| 229 | */ | ||
| 213 | #define pr_emerg(fmt, ...) \ | 230 | #define pr_emerg(fmt, ...) \ |
| 214 | printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) | 231 | printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) |
| 215 | #define pr_alert(fmt, ...) \ | 232 | #define pr_alert(fmt, ...) \ |
| @@ -266,9 +283,20 @@ extern asmlinkage void dump_stack(void) __cold; | |||
| 266 | printk(fmt, ##__VA_ARGS__); \ | 283 | printk(fmt, ##__VA_ARGS__); \ |
| 267 | } \ | 284 | } \ |
| 268 | }) | 285 | }) |
| 286 | #define printk_deferred_once(fmt, ...) \ | ||
| 287 | ({ \ | ||
| 288 | static bool __print_once __read_mostly; \ | ||
| 289 | \ | ||
| 290 | if (!__print_once) { \ | ||
| 291 | __print_once = true; \ | ||
| 292 | printk_deferred(fmt, ##__VA_ARGS__); \ | ||
| 293 | } \ | ||
| 294 | }) | ||
| 269 | #else | 295 | #else |
| 270 | #define printk_once(fmt, ...) \ | 296 | #define printk_once(fmt, ...) \ |
| 271 | no_printk(fmt, ##__VA_ARGS__) | 297 | no_printk(fmt, ##__VA_ARGS__) |
| 298 | #define printk_deferred_once(fmt, ...) \ | ||
| 299 | no_printk(fmt, ##__VA_ARGS__) | ||
| 272 | #endif | 300 | #endif |
| 273 | 301 | ||
| 274 | #define pr_emerg_once(fmt, ...) \ | 302 | #define pr_emerg_once(fmt, ...) \ |
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index 608e60a74c3c..9d117f61d976 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h | |||
| @@ -44,6 +44,10 @@ extern int remove_proc_subtree(const char *, struct proc_dir_entry *); | |||
| 44 | 44 | ||
| 45 | #else /* CONFIG_PROC_FS */ | 45 | #else /* CONFIG_PROC_FS */ |
| 46 | 46 | ||
| 47 | static inline void proc_root_init(void) | ||
| 48 | { | ||
| 49 | } | ||
| 50 | |||
| 47 | static inline void proc_flush_task(struct task_struct *task) | 51 | static inline void proc_flush_task(struct task_struct *task) |
| 48 | { | 52 | { |
| 49 | } | 53 | } |
diff --git a/include/linux/ptrace.h b/include/linux/ptrace.h index 07d0df6bf768..077904c8b70d 100644 --- a/include/linux/ptrace.h +++ b/include/linux/ptrace.h | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #include <linux/sched.h> /* For struct task_struct. */ | 5 | #include <linux/sched.h> /* For struct task_struct. */ |
| 6 | #include <linux/err.h> /* for IS_ERR_VALUE */ | 6 | #include <linux/err.h> /* for IS_ERR_VALUE */ |
| 7 | #include <linux/bug.h> /* For BUG_ON. */ | 7 | #include <linux/bug.h> /* For BUG_ON. */ |
| 8 | #include <linux/pid_namespace.h> /* For task_active_pid_ns. */ | ||
| 8 | #include <uapi/linux/ptrace.h> | 9 | #include <uapi/linux/ptrace.h> |
| 9 | 10 | ||
| 10 | /* | 11 | /* |
| @@ -129,6 +130,37 @@ static inline void ptrace_event(int event, unsigned long message) | |||
| 129 | } | 130 | } |
| 130 | 131 | ||
| 131 | /** | 132 | /** |
| 133 | * ptrace_event_pid - possibly stop for a ptrace event notification | ||
| 134 | * @event: %PTRACE_EVENT_* value to report | ||
| 135 | * @pid: process identifier for %PTRACE_GETEVENTMSG to return | ||
| 136 | * | ||
| 137 | * Check whether @event is enabled and, if so, report @event and @pid | ||
| 138 | * to the ptrace parent. @pid is reported as the pid_t seen from the | ||
| 139 | * the ptrace parent's pid namespace. | ||
| 140 | * | ||
| 141 | * Called without locks. | ||
| 142 | */ | ||
| 143 | static inline void ptrace_event_pid(int event, struct pid *pid) | ||
| 144 | { | ||
| 145 | /* | ||
| 146 | * FIXME: There's a potential race if a ptracer in a different pid | ||
| 147 | * namespace than parent attaches between computing message below and | ||
| 148 | * when we acquire tasklist_lock in ptrace_stop(). If this happens, | ||
| 149 | * the ptracer will get a bogus pid from PTRACE_GETEVENTMSG. | ||
| 150 | */ | ||
| 151 | unsigned long message = 0; | ||
| 152 | struct pid_namespace *ns; | ||
| 153 | |||
| 154 | rcu_read_lock(); | ||
| 155 | ns = task_active_pid_ns(rcu_dereference(current->parent)); | ||
| 156 | if (ns) | ||
| 157 | message = pid_nr_ns(pid, ns); | ||
| 158 | rcu_read_unlock(); | ||
| 159 | |||
| 160 | ptrace_event(event, message); | ||
| 161 | } | ||
| 162 | |||
| 163 | /** | ||
| 132 | * ptrace_init_task - initialize ptrace state for a new child | 164 | * ptrace_init_task - initialize ptrace state for a new child |
| 133 | * @child: new child task | 165 | * @child: new child task |
| 134 | * @ptrace: true if child should be ptrace'd by parent's tracer | 166 | * @ptrace: true if child should be ptrace'd by parent's tracer |
diff --git a/include/linux/pwm.h b/include/linux/pwm.h index 4717f54051cb..e90628cac8fa 100644 --- a/include/linux/pwm.h +++ b/include/linux/pwm.h | |||
| @@ -274,14 +274,18 @@ struct pwm_lookup { | |||
| 274 | unsigned int index; | 274 | unsigned int index; |
| 275 | const char *dev_id; | 275 | const char *dev_id; |
| 276 | const char *con_id; | 276 | const char *con_id; |
| 277 | unsigned int period; | ||
| 278 | enum pwm_polarity polarity; | ||
| 277 | }; | 279 | }; |
| 278 | 280 | ||
| 279 | #define PWM_LOOKUP(_provider, _index, _dev_id, _con_id) \ | 281 | #define PWM_LOOKUP(_provider, _index, _dev_id, _con_id, _period, _polarity) \ |
| 280 | { \ | 282 | { \ |
| 281 | .provider = _provider, \ | 283 | .provider = _provider, \ |
| 282 | .index = _index, \ | 284 | .index = _index, \ |
| 283 | .dev_id = _dev_id, \ | 285 | .dev_id = _dev_id, \ |
| 284 | .con_id = _con_id, \ | 286 | .con_id = _con_id, \ |
| 287 | .period = _period, \ | ||
| 288 | .polarity = _polarity \ | ||
| 285 | } | 289 | } |
| 286 | 290 | ||
| 287 | #if IS_ENABLED(CONFIG_PWM) | 291 | #if IS_ENABLED(CONFIG_PWM) |
diff --git a/include/linux/pwm_backlight.h b/include/linux/pwm_backlight.h index 2de2e275b2cb..efdd9227a49c 100644 --- a/include/linux/pwm_backlight.h +++ b/include/linux/pwm_backlight.h | |||
| @@ -6,9 +6,6 @@ | |||
| 6 | 6 | ||
| 7 | #include <linux/backlight.h> | 7 | #include <linux/backlight.h> |
| 8 | 8 | ||
| 9 | /* TODO: convert to gpiod_*() API once it has been merged */ | ||
| 10 | #define PWM_BACKLIGHT_GPIO_ACTIVE_LOW (1 << 0) | ||
| 11 | |||
| 12 | struct platform_pwm_backlight_data { | 9 | struct platform_pwm_backlight_data { |
| 13 | int pwm_id; | 10 | int pwm_id; |
| 14 | unsigned int max_brightness; | 11 | unsigned int max_brightness; |
| @@ -16,8 +13,8 @@ struct platform_pwm_backlight_data { | |||
| 16 | unsigned int lth_brightness; | 13 | unsigned int lth_brightness; |
| 17 | unsigned int pwm_period_ns; | 14 | unsigned int pwm_period_ns; |
| 18 | unsigned int *levels; | 15 | unsigned int *levels; |
| 16 | /* TODO remove once all users are switched to gpiod_* API */ | ||
| 19 | int enable_gpio; | 17 | int enable_gpio; |
| 20 | unsigned long enable_gpio_flags; | ||
| 21 | int (*init)(struct device *dev); | 18 | int (*init)(struct device *dev); |
| 22 | int (*notify)(struct device *dev, int brightness); | 19 | int (*notify)(struct device *dev, int brightness); |
| 23 | void (*notify_after)(struct device *dev, int brightness); | 20 | void (*notify_after)(struct device *dev, int brightness); |
diff --git a/include/linux/quota.h b/include/linux/quota.h index cc7494a35429..0f3c5d38da1f 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
| @@ -329,6 +329,7 @@ struct quotactl_ops { | |||
| 329 | int (*get_xstate)(struct super_block *, struct fs_quota_stat *); | 329 | int (*get_xstate)(struct super_block *, struct fs_quota_stat *); |
| 330 | int (*set_xstate)(struct super_block *, unsigned int, int); | 330 | int (*set_xstate)(struct super_block *, unsigned int, int); |
| 331 | int (*get_xstatev)(struct super_block *, struct fs_quota_statv *); | 331 | int (*get_xstatev)(struct super_block *, struct fs_quota_statv *); |
| 332 | int (*rm_xquota)(struct super_block *, unsigned int); | ||
| 332 | }; | 333 | }; |
| 333 | 334 | ||
| 334 | struct quota_format_type { | 335 | struct quota_format_type { |
diff --git a/include/linux/rmap.h b/include/linux/rmap.h index b66c2110cb1f..be574506e6a9 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h | |||
| @@ -72,10 +72,9 @@ struct anon_vma_chain { | |||
| 72 | }; | 72 | }; |
| 73 | 73 | ||
| 74 | enum ttu_flags { | 74 | enum ttu_flags { |
| 75 | TTU_UNMAP = 0, /* unmap mode */ | 75 | TTU_UNMAP = 1, /* unmap mode */ |
| 76 | TTU_MIGRATION = 1, /* migration mode */ | 76 | TTU_MIGRATION = 2, /* migration mode */ |
| 77 | TTU_MUNLOCK = 2, /* munlock mode */ | 77 | TTU_MUNLOCK = 4, /* munlock mode */ |
| 78 | TTU_ACTION_MASK = 0xff, | ||
| 79 | 78 | ||
| 80 | TTU_IGNORE_MLOCK = (1 << 8), /* ignore mlock */ | 79 | TTU_IGNORE_MLOCK = (1 << 8), /* ignore mlock */ |
| 81 | TTU_IGNORE_ACCESS = (1 << 9), /* don't age */ | 80 | TTU_IGNORE_ACCESS = (1 << 9), /* don't age */ |
| @@ -183,14 +182,10 @@ static inline void page_dup_rmap(struct page *page) | |||
| 183 | */ | 182 | */ |
| 184 | int page_referenced(struct page *, int is_locked, | 183 | int page_referenced(struct page *, int is_locked, |
| 185 | struct mem_cgroup *memcg, unsigned long *vm_flags); | 184 | struct mem_cgroup *memcg, unsigned long *vm_flags); |
| 186 | int page_referenced_one(struct page *, struct vm_area_struct *, | ||
| 187 | unsigned long address, void *arg); | ||
| 188 | 185 | ||
| 189 | #define TTU_ACTION(x) ((x) & TTU_ACTION_MASK) | 186 | #define TTU_ACTION(x) ((x) & TTU_ACTION_MASK) |
| 190 | 187 | ||
| 191 | int try_to_unmap(struct page *, enum ttu_flags flags); | 188 | int try_to_unmap(struct page *, enum ttu_flags flags); |
| 192 | int try_to_unmap_one(struct page *, struct vm_area_struct *, | ||
| 193 | unsigned long address, void *arg); | ||
| 194 | 189 | ||
| 195 | /* | 190 | /* |
| 196 | * Called from mm/filemap_xip.c to unmap empty zero page | 191 | * Called from mm/filemap_xip.c to unmap empty zero page |
diff --git a/include/linux/sched.h b/include/linux/sched.h index 70f67e4e6156..ea74596014a2 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -137,12 +137,6 @@ struct filename; | |||
| 137 | #define VMACACHE_MASK (VMACACHE_SIZE - 1) | 137 | #define VMACACHE_MASK (VMACACHE_SIZE - 1) |
| 138 | 138 | ||
| 139 | /* | 139 | /* |
| 140 | * List of flags we want to share for kernel threads, | ||
| 141 | * if only because they are not used by them anyway. | ||
| 142 | */ | ||
| 143 | #define CLONE_KERNEL (CLONE_FS | CLONE_FILES | CLONE_SIGHAND) | ||
| 144 | |||
| 145 | /* | ||
| 146 | * These are the constant used to fake the fixed-point load-average | 140 | * These are the constant used to fake the fixed-point load-average |
| 147 | * counting. Some notes: | 141 | * counting. Some notes: |
| 148 | * - 11 bit fractions expand to 22 bits by the multiplies: this gives | 142 | * - 11 bit fractions expand to 22 bits by the multiplies: this gives |
| @@ -745,7 +739,6 @@ static inline int signal_group_exit(const struct signal_struct *sig) | |||
| 745 | struct user_struct { | 739 | struct user_struct { |
| 746 | atomic_t __count; /* reference count */ | 740 | atomic_t __count; /* reference count */ |
| 747 | atomic_t processes; /* How many processes does this user have? */ | 741 | atomic_t processes; /* How many processes does this user have? */ |
| 748 | atomic_t files; /* How many open files does this user have? */ | ||
| 749 | atomic_t sigpending; /* How many pending signals does this user have? */ | 742 | atomic_t sigpending; /* How many pending signals does this user have? */ |
| 750 | #ifdef CONFIG_INOTIFY_USER | 743 | #ifdef CONFIG_INOTIFY_USER |
| 751 | atomic_t inotify_watches; /* How many inotify watches does this user have? */ | 744 | atomic_t inotify_watches; /* How many inotify watches does this user have? */ |
| @@ -2421,9 +2414,6 @@ extern void flush_itimer_signals(void); | |||
| 2421 | 2414 | ||
| 2422 | extern void do_group_exit(int); | 2415 | extern void do_group_exit(int); |
| 2423 | 2416 | ||
| 2424 | extern int allow_signal(int); | ||
| 2425 | extern int disallow_signal(int); | ||
| 2426 | |||
| 2427 | extern int do_execve(struct filename *, | 2417 | extern int do_execve(struct filename *, |
| 2428 | const char __user * const __user *, | 2418 | const char __user * const __user *, |
| 2429 | const char __user * const __user *); | 2419 | const char __user * const __user *); |
| @@ -2967,7 +2957,7 @@ static inline void inc_syscw(struct task_struct *tsk) | |||
| 2967 | #define TASK_SIZE_OF(tsk) TASK_SIZE | 2957 | #define TASK_SIZE_OF(tsk) TASK_SIZE |
| 2968 | #endif | 2958 | #endif |
| 2969 | 2959 | ||
| 2970 | #ifdef CONFIG_MM_OWNER | 2960 | #ifdef CONFIG_MEMCG |
| 2971 | extern void mm_update_next_owner(struct mm_struct *mm); | 2961 | extern void mm_update_next_owner(struct mm_struct *mm); |
| 2972 | extern void mm_init_owner(struct mm_struct *mm, struct task_struct *p); | 2962 | extern void mm_init_owner(struct mm_struct *mm, struct task_struct *p); |
| 2973 | #else | 2963 | #else |
| @@ -2978,7 +2968,7 @@ static inline void mm_update_next_owner(struct mm_struct *mm) | |||
| 2978 | static inline void mm_init_owner(struct mm_struct *mm, struct task_struct *p) | 2968 | static inline void mm_init_owner(struct mm_struct *mm, struct task_struct *p) |
| 2979 | { | 2969 | { |
| 2980 | } | 2970 | } |
| 2981 | #endif /* CONFIG_MM_OWNER */ | 2971 | #endif /* CONFIG_MEMCG */ |
| 2982 | 2972 | ||
| 2983 | static inline unsigned long task_rlimit(const struct task_struct *tsk, | 2973 | static inline unsigned long task_rlimit(const struct task_struct *tsk, |
| 2984 | unsigned int limit) | 2974 | unsigned int limit) |
diff --git a/include/linux/sched/sysctl.h b/include/linux/sched/sysctl.h index 8045a554cafb..596a0e007c62 100644 --- a/include/linux/sched/sysctl.h +++ b/include/linux/sched/sysctl.h | |||
| @@ -25,6 +25,10 @@ enum { sysctl_hung_task_timeout_secs = 0 }; | |||
| 25 | * Because the kernel adds some informative sections to a image of program at | 25 | * Because the kernel adds some informative sections to a image of program at |
| 26 | * generating coredump, we need some margin. The number of extra sections is | 26 | * generating coredump, we need some margin. The number of extra sections is |
| 27 | * 1-3 now and depends on arch. We use "5" as safe margin, here. | 27 | * 1-3 now and depends on arch. We use "5" as safe margin, here. |
| 28 | * | ||
| 29 | * ELF extended numbering allows more than 65535 sections, so 16-bit bound is | ||
| 30 | * not a hard limit any more. Although some userspace tools can be surprised by | ||
| 31 | * that. | ||
| 28 | */ | 32 | */ |
| 29 | #define MAPCOUNT_ELF_CORE_MARGIN (5) | 33 | #define MAPCOUNT_ELF_CORE_MARGIN (5) |
| 30 | #define DEFAULT_MAX_MAP_COUNT (USHRT_MAX - MAPCOUNT_ELF_CORE_MARGIN) | 34 | #define DEFAULT_MAX_MAP_COUNT (USHRT_MAX - MAPCOUNT_ELF_CORE_MARGIN) |
diff --git a/include/linux/sched_clock.h b/include/linux/sched_clock.h index cddf0c2940b6..efa931c5cef1 100644 --- a/include/linux/sched_clock.h +++ b/include/linux/sched_clock.h | |||
| @@ -14,7 +14,6 @@ extern void sched_clock_postinit(void); | |||
| 14 | static inline void sched_clock_postinit(void) { } | 14 | static inline void sched_clock_postinit(void) { } |
| 15 | #endif | 15 | #endif |
| 16 | 16 | ||
| 17 | extern void setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate); | ||
| 18 | extern void sched_clock_register(u64 (*read)(void), int bits, | 17 | extern void sched_clock_register(u64 (*read)(void), int bits, |
| 19 | unsigned long rate); | 18 | unsigned long rate); |
| 20 | 19 | ||
diff --git a/include/linux/security.h b/include/linux/security.h index 6478ce3252c7..9c6b9722ff48 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
| @@ -1708,7 +1708,7 @@ struct security_operations { | |||
| 1708 | void (*key_free) (struct key *key); | 1708 | void (*key_free) (struct key *key); |
| 1709 | int (*key_permission) (key_ref_t key_ref, | 1709 | int (*key_permission) (key_ref_t key_ref, |
| 1710 | const struct cred *cred, | 1710 | const struct cred *cred, |
| 1711 | key_perm_t perm); | 1711 | unsigned perm); |
| 1712 | int (*key_getsecurity)(struct key *key, char **_buffer); | 1712 | int (*key_getsecurity)(struct key *key, char **_buffer); |
| 1713 | #endif /* CONFIG_KEYS */ | 1713 | #endif /* CONFIG_KEYS */ |
| 1714 | 1714 | ||
| @@ -3034,7 +3034,7 @@ static inline int security_path_chroot(struct path *path) | |||
| 3034 | int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags); | 3034 | int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags); |
| 3035 | void security_key_free(struct key *key); | 3035 | void security_key_free(struct key *key); |
| 3036 | int security_key_permission(key_ref_t key_ref, | 3036 | int security_key_permission(key_ref_t key_ref, |
| 3037 | const struct cred *cred, key_perm_t perm); | 3037 | const struct cred *cred, unsigned perm); |
| 3038 | int security_key_getsecurity(struct key *key, char **_buffer); | 3038 | int security_key_getsecurity(struct key *key, char **_buffer); |
| 3039 | 3039 | ||
| 3040 | #else | 3040 | #else |
| @@ -3052,7 +3052,7 @@ static inline void security_key_free(struct key *key) | |||
| 3052 | 3052 | ||
| 3053 | static inline int security_key_permission(key_ref_t key_ref, | 3053 | static inline int security_key_permission(key_ref_t key_ref, |
| 3054 | const struct cred *cred, | 3054 | const struct cred *cred, |
| 3055 | key_perm_t perm) | 3055 | unsigned perm) |
| 3056 | { | 3056 | { |
| 3057 | return 0; | 3057 | return 0; |
| 3058 | } | 3058 | } |
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index 7a15b5b24c0b..5bbb809ee197 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h | |||
| @@ -294,6 +294,9 @@ struct earlycon_device { | |||
| 294 | int setup_earlycon(char *buf, const char *match, | 294 | int setup_earlycon(char *buf, const char *match, |
| 295 | int (*setup)(struct earlycon_device *, const char *)); | 295 | int (*setup)(struct earlycon_device *, const char *)); |
| 296 | 296 | ||
| 297 | extern int of_setup_earlycon(unsigned long addr, | ||
| 298 | int (*setup)(struct earlycon_device *, const char *)); | ||
| 299 | |||
| 297 | #define EARLYCON_DECLARE(name, func) \ | 300 | #define EARLYCON_DECLARE(name, func) \ |
| 298 | static int __init name ## _setup_earlycon(char *buf) \ | 301 | static int __init name ## _setup_earlycon(char *buf) \ |
| 299 | { \ | 302 | { \ |
| @@ -301,6 +304,9 @@ static int __init name ## _setup_earlycon(char *buf) \ | |||
| 301 | } \ | 304 | } \ |
| 302 | early_param("earlycon", name ## _setup_earlycon); | 305 | early_param("earlycon", name ## _setup_earlycon); |
| 303 | 306 | ||
| 307 | #define OF_EARLYCON_DECLARE(name, compat, fn) \ | ||
| 308 | _OF_DECLARE(earlycon, name, compat, fn, void *) | ||
| 309 | |||
| 304 | struct uart_port *uart_get_console(struct uart_port *ports, int nr, | 310 | struct uart_port *uart_get_console(struct uart_port *ports, int nr, |
| 305 | struct console *c); | 311 | struct console *c); |
| 306 | void uart_parse_options(char *options, int *baud, int *parity, int *bits, | 312 | void uart_parse_options(char *options, int *baud, int *parity, int *bits, |
diff --git a/include/linux/shdma-base.h b/include/linux/shdma-base.h index f92c0a43c54c..abdf1f229dc3 100644 --- a/include/linux/shdma-base.h +++ b/include/linux/shdma-base.h | |||
| @@ -54,6 +54,7 @@ struct shdma_desc { | |||
| 54 | dma_cookie_t cookie; | 54 | dma_cookie_t cookie; |
| 55 | int chunks; | 55 | int chunks; |
| 56 | int mark; | 56 | int mark; |
| 57 | bool cyclic; /* used as cyclic transfer */ | ||
| 57 | }; | 58 | }; |
| 58 | 59 | ||
| 59 | struct shdma_chan { | 60 | struct shdma_chan { |
diff --git a/include/linux/shm.h b/include/linux/shm.h index 1e2cd2e6b540..57d77709fbe2 100644 --- a/include/linux/shm.h +++ b/include/linux/shm.h | |||
| @@ -3,9 +3,8 @@ | |||
| 3 | 3 | ||
| 4 | #include <asm/page.h> | 4 | #include <asm/page.h> |
| 5 | #include <uapi/linux/shm.h> | 5 | #include <uapi/linux/shm.h> |
| 6 | |||
| 7 | #define SHMALL (SHMMAX/PAGE_SIZE*(SHMMNI/16)) /* max shm system wide (pages) */ | ||
| 8 | #include <asm/shmparam.h> | 6 | #include <asm/shmparam.h> |
| 7 | |||
| 9 | struct shmid_kernel /* private to the kernel */ | 8 | struct shmid_kernel /* private to the kernel */ |
| 10 | { | 9 | { |
| 11 | struct kern_ipc_perm shm_perm; | 10 | struct kern_ipc_perm shm_perm; |
diff --git a/include/linux/signal.h b/include/linux/signal.h index 2ac423bdb676..c9e65360c49a 100644 --- a/include/linux/signal.h +++ b/include/linux/signal.h | |||
| @@ -63,11 +63,6 @@ static inline int sigismember(sigset_t *set, int _sig) | |||
| 63 | return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); | 63 | return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | static inline int sigfindinword(unsigned long word) | ||
| 67 | { | ||
| 68 | return ffz(~word); | ||
| 69 | } | ||
| 70 | |||
| 71 | #endif /* __HAVE_ARCH_SIG_BITOPS */ | 66 | #endif /* __HAVE_ARCH_SIG_BITOPS */ |
| 72 | 67 | ||
| 73 | static inline int sigisemptyset(sigset_t *set) | 68 | static inline int sigisemptyset(sigset_t *set) |
| @@ -289,6 +284,22 @@ extern int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka, | |||
| 289 | extern void signal_setup_done(int failed, struct ksignal *ksig, int stepping); | 284 | extern void signal_setup_done(int failed, struct ksignal *ksig, int stepping); |
| 290 | extern void signal_delivered(int sig, siginfo_t *info, struct k_sigaction *ka, struct pt_regs *regs, int stepping); | 285 | extern void signal_delivered(int sig, siginfo_t *info, struct k_sigaction *ka, struct pt_regs *regs, int stepping); |
| 291 | extern void exit_signals(struct task_struct *tsk); | 286 | extern void exit_signals(struct task_struct *tsk); |
| 287 | extern void kernel_sigaction(int, __sighandler_t); | ||
| 288 | |||
| 289 | static inline void allow_signal(int sig) | ||
| 290 | { | ||
| 291 | /* | ||
| 292 | * Kernel threads handle their own signals. Let the signal code | ||
| 293 | * know it'll be handled, so that they don't get converted to | ||
| 294 | * SIGKILL or just silently dropped. | ||
| 295 | */ | ||
| 296 | kernel_sigaction(sig, (__force __sighandler_t)2); | ||
| 297 | } | ||
| 298 | |||
| 299 | static inline void disallow_signal(int sig) | ||
| 300 | { | ||
| 301 | kernel_sigaction(sig, SIG_IGN); | ||
| 302 | } | ||
| 292 | 303 | ||
| 293 | /* | 304 | /* |
| 294 | * Eventually that'll replace get_signal_to_deliver(); macro for now, | 305 | * Eventually that'll replace get_signal_to_deliver(); macro for now, |
diff --git a/include/linux/slab.h b/include/linux/slab.h index 307bfbe62387..1d9abb7d22a0 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
| @@ -116,7 +116,9 @@ struct kmem_cache *kmem_cache_create(const char *, size_t, size_t, | |||
| 116 | unsigned long, | 116 | unsigned long, |
| 117 | void (*)(void *)); | 117 | void (*)(void *)); |
| 118 | #ifdef CONFIG_MEMCG_KMEM | 118 | #ifdef CONFIG_MEMCG_KMEM |
| 119 | void kmem_cache_create_memcg(struct mem_cgroup *, struct kmem_cache *); | 119 | struct kmem_cache *memcg_create_kmem_cache(struct mem_cgroup *, |
| 120 | struct kmem_cache *, | ||
| 121 | const char *); | ||
| 120 | #endif | 122 | #endif |
| 121 | void kmem_cache_destroy(struct kmem_cache *); | 123 | void kmem_cache_destroy(struct kmem_cache *); |
| 122 | int kmem_cache_shrink(struct kmem_cache *); | 124 | int kmem_cache_shrink(struct kmem_cache *); |
| @@ -369,16 +371,7 @@ kmem_cache_alloc_node_trace(struct kmem_cache *s, | |||
| 369 | #include <linux/slub_def.h> | 371 | #include <linux/slub_def.h> |
| 370 | #endif | 372 | #endif |
| 371 | 373 | ||
| 372 | static __always_inline void * | 374 | extern void *kmalloc_order(size_t size, gfp_t flags, unsigned int order); |
| 373 | kmalloc_order(size_t size, gfp_t flags, unsigned int order) | ||
| 374 | { | ||
| 375 | void *ret; | ||
| 376 | |||
| 377 | flags |= (__GFP_COMP | __GFP_KMEMCG); | ||
| 378 | ret = (void *) __get_free_pages(flags, order); | ||
| 379 | kmemleak_alloc(ret, size, 1, flags); | ||
| 380 | return ret; | ||
| 381 | } | ||
| 382 | 375 | ||
| 383 | #ifdef CONFIG_TRACING | 376 | #ifdef CONFIG_TRACING |
| 384 | extern void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order); | 377 | extern void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order); |
| @@ -533,10 +526,7 @@ static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) | |||
| 533 | * @memcg: pointer to the memcg this cache belongs to | 526 | * @memcg: pointer to the memcg this cache belongs to |
| 534 | * @list: list_head for the list of all caches in this memcg | 527 | * @list: list_head for the list of all caches in this memcg |
| 535 | * @root_cache: pointer to the global, root cache, this cache was derived from | 528 | * @root_cache: pointer to the global, root cache, this cache was derived from |
| 536 | * @dead: set to true after the memcg dies; the cache may still be around. | ||
| 537 | * @nr_pages: number of pages that belongs to this cache. | 529 | * @nr_pages: number of pages that belongs to this cache. |
| 538 | * @destroy: worker to be called whenever we are ready, or believe we may be | ||
| 539 | * ready, to destroy this cache. | ||
| 540 | */ | 530 | */ |
| 541 | struct memcg_cache_params { | 531 | struct memcg_cache_params { |
| 542 | bool is_root_cache; | 532 | bool is_root_cache; |
| @@ -549,9 +539,7 @@ struct memcg_cache_params { | |||
| 549 | struct mem_cgroup *memcg; | 539 | struct mem_cgroup *memcg; |
| 550 | struct list_head list; | 540 | struct list_head list; |
| 551 | struct kmem_cache *root_cache; | 541 | struct kmem_cache *root_cache; |
| 552 | bool dead; | ||
| 553 | atomic_t nr_pages; | 542 | atomic_t nr_pages; |
| 554 | struct work_struct destroy; | ||
| 555 | }; | 543 | }; |
| 556 | }; | 544 | }; |
| 557 | }; | 545 | }; |
diff --git a/include/linux/smp.h b/include/linux/smp.h index 633f5edd7470..34347f26be9b 100644 --- a/include/linux/smp.h +++ b/include/linux/smp.h | |||
| @@ -13,8 +13,6 @@ | |||
| 13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
| 14 | #include <linux/llist.h> | 14 | #include <linux/llist.h> |
| 15 | 15 | ||
| 16 | extern void cpu_idle(void); | ||
| 17 | |||
| 18 | typedef void (*smp_call_func_t)(void *info); | 16 | typedef void (*smp_call_func_t)(void *info); |
| 19 | struct call_single_data { | 17 | struct call_single_data { |
| 20 | struct llist_node llist; | 18 | struct llist_node llist; |
diff --git a/include/linux/splice.h b/include/linux/splice.h index 0e43906d2fda..da2751d3b93d 100644 --- a/include/linux/splice.h +++ b/include/linux/splice.h | |||
| @@ -70,16 +70,6 @@ extern ssize_t splice_from_pipe(struct pipe_inode_info *, struct file *, | |||
| 70 | splice_actor *); | 70 | splice_actor *); |
| 71 | extern ssize_t __splice_from_pipe(struct pipe_inode_info *, | 71 | extern ssize_t __splice_from_pipe(struct pipe_inode_info *, |
| 72 | struct splice_desc *, splice_actor *); | 72 | struct splice_desc *, splice_actor *); |
| 73 | extern int splice_from_pipe_feed(struct pipe_inode_info *, struct splice_desc *, | ||
| 74 | splice_actor *); | ||
| 75 | extern int splice_from_pipe_next(struct pipe_inode_info *, | ||
| 76 | struct splice_desc *); | ||
| 77 | extern void splice_from_pipe_begin(struct splice_desc *); | ||
| 78 | extern void splice_from_pipe_end(struct pipe_inode_info *, | ||
| 79 | struct splice_desc *); | ||
| 80 | extern int pipe_to_file(struct pipe_inode_info *, struct pipe_buffer *, | ||
| 81 | struct splice_desc *); | ||
| 82 | |||
| 83 | extern ssize_t splice_to_pipe(struct pipe_inode_info *, | 73 | extern ssize_t splice_to_pipe(struct pipe_inode_info *, |
| 84 | struct splice_pipe_desc *); | 74 | struct splice_pipe_desc *); |
| 85 | extern ssize_t splice_direct_to_actor(struct file *, struct splice_desc *, | 75 | extern ssize_t splice_direct_to_actor(struct file *, struct splice_desc *, |
diff --git a/include/linux/string.h b/include/linux/string.h index ac889c5ea11b..d36977e029af 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
| @@ -52,6 +52,9 @@ extern int strncasecmp(const char *s1, const char *s2, size_t n); | |||
| 52 | #ifndef __HAVE_ARCH_STRCHR | 52 | #ifndef __HAVE_ARCH_STRCHR |
| 53 | extern char * strchr(const char *,int); | 53 | extern char * strchr(const char *,int); |
| 54 | #endif | 54 | #endif |
| 55 | #ifndef __HAVE_ARCH_STRCHRNUL | ||
| 56 | extern char * strchrnul(const char *,int); | ||
| 57 | #endif | ||
| 55 | #ifndef __HAVE_ARCH_STRNCHR | 58 | #ifndef __HAVE_ARCH_STRNCHR |
| 56 | extern char * strnchr(const char *, size_t, int); | 59 | extern char * strnchr(const char *, size_t, int); |
| 57 | #endif | 60 | #endif |
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index 04e763221246..1bc7cd05b22e 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h | |||
| @@ -244,6 +244,7 @@ struct svc_rqst { | |||
| 244 | struct page * rq_pages[RPCSVC_MAXPAGES]; | 244 | struct page * rq_pages[RPCSVC_MAXPAGES]; |
| 245 | struct page * *rq_respages; /* points into rq_pages */ | 245 | struct page * *rq_respages; /* points into rq_pages */ |
| 246 | struct page * *rq_next_page; /* next reply page to use */ | 246 | struct page * *rq_next_page; /* next reply page to use */ |
| 247 | struct page * *rq_page_end; /* one past the last page */ | ||
| 247 | 248 | ||
| 248 | struct kvec rq_vec[RPCSVC_MAXPAGES]; /* generally useful.. */ | 249 | struct kvec rq_vec[RPCSVC_MAXPAGES]; /* generally useful.. */ |
| 249 | 250 | ||
| @@ -254,11 +255,15 @@ struct svc_rqst { | |||
| 254 | u32 rq_prot; /* IP protocol */ | 255 | u32 rq_prot; /* IP protocol */ |
| 255 | unsigned short | 256 | unsigned short |
| 256 | rq_secure : 1; /* secure port */ | 257 | rq_secure : 1; /* secure port */ |
| 258 | unsigned short rq_local : 1; /* local request */ | ||
| 257 | 259 | ||
| 258 | void * rq_argp; /* decoded arguments */ | 260 | void * rq_argp; /* decoded arguments */ |
| 259 | void * rq_resp; /* xdr'd results */ | 261 | void * rq_resp; /* xdr'd results */ |
| 260 | void * rq_auth_data; /* flavor-specific data */ | 262 | void * rq_auth_data; /* flavor-specific data */ |
| 261 | 263 | int rq_auth_slack; /* extra space xdr code | |
| 264 | * should leave in head | ||
| 265 | * for krb5i, krb5p. | ||
| 266 | */ | ||
| 262 | int rq_reserved; /* space on socket outq | 267 | int rq_reserved; /* space on socket outq |
| 263 | * reserved for this request | 268 | * reserved for this request |
| 264 | */ | 269 | */ |
| @@ -454,11 +459,7 @@ char * svc_print_addr(struct svc_rqst *, char *, size_t); | |||
| 454 | */ | 459 | */ |
| 455 | static inline void svc_reserve_auth(struct svc_rqst *rqstp, int space) | 460 | static inline void svc_reserve_auth(struct svc_rqst *rqstp, int space) |
| 456 | { | 461 | { |
| 457 | int added_space = 0; | 462 | svc_reserve(rqstp, space + rqstp->rq_auth_slack); |
| 458 | |||
| 459 | if (rqstp->rq_authop->flavour) | ||
| 460 | added_space = RPC_MAX_AUTH_SIZE; | ||
| 461 | svc_reserve(rqstp, space + added_space); | ||
| 462 | } | 463 | } |
| 463 | 464 | ||
| 464 | #endif /* SUNRPC_SVC_H */ | 465 | #endif /* SUNRPC_SVC_H */ |
diff --git a/include/linux/sunrpc/svc_rdma.h b/include/linux/sunrpc/svc_rdma.h index 0b8e3e6bdacf..5cf99a016368 100644 --- a/include/linux/sunrpc/svc_rdma.h +++ b/include/linux/sunrpc/svc_rdma.h | |||
| @@ -115,14 +115,13 @@ struct svc_rdma_fastreg_mr { | |||
| 115 | struct list_head frmr_list; | 115 | struct list_head frmr_list; |
| 116 | }; | 116 | }; |
| 117 | struct svc_rdma_req_map { | 117 | struct svc_rdma_req_map { |
| 118 | struct svc_rdma_fastreg_mr *frmr; | ||
| 119 | unsigned long count; | 118 | unsigned long count; |
| 120 | union { | 119 | union { |
| 121 | struct kvec sge[RPCSVC_MAXPAGES]; | 120 | struct kvec sge[RPCSVC_MAXPAGES]; |
| 122 | struct svc_rdma_chunk_sge ch[RPCSVC_MAXPAGES]; | 121 | struct svc_rdma_chunk_sge ch[RPCSVC_MAXPAGES]; |
| 122 | unsigned long lkey[RPCSVC_MAXPAGES]; | ||
| 123 | }; | 123 | }; |
| 124 | }; | 124 | }; |
| 125 | #define RDMACTXT_F_FAST_UNREG 1 | ||
| 126 | #define RDMACTXT_F_LAST_CTXT 2 | 125 | #define RDMACTXT_F_LAST_CTXT 2 |
| 127 | 126 | ||
| 128 | #define SVCRDMA_DEVCAP_FAST_REG 1 /* fast mr registration */ | 127 | #define SVCRDMA_DEVCAP_FAST_REG 1 /* fast mr registration */ |
diff --git a/include/linux/sunrpc/svc_xprt.h b/include/linux/sunrpc/svc_xprt.h index b05963f09ebf..7235040a19b2 100644 --- a/include/linux/sunrpc/svc_xprt.h +++ b/include/linux/sunrpc/svc_xprt.h | |||
| @@ -24,6 +24,7 @@ struct svc_xprt_ops { | |||
| 24 | void (*xpo_release_rqst)(struct svc_rqst *); | 24 | void (*xpo_release_rqst)(struct svc_rqst *); |
| 25 | void (*xpo_detach)(struct svc_xprt *); | 25 | void (*xpo_detach)(struct svc_xprt *); |
| 26 | void (*xpo_free)(struct svc_xprt *); | 26 | void (*xpo_free)(struct svc_xprt *); |
| 27 | int (*xpo_secure_port)(struct svc_rqst *); | ||
| 27 | }; | 28 | }; |
| 28 | 29 | ||
| 29 | struct svc_xprt_class { | 30 | struct svc_xprt_class { |
| @@ -63,6 +64,7 @@ struct svc_xprt { | |||
| 63 | #define XPT_DETACHED 10 /* detached from tempsocks list */ | 64 | #define XPT_DETACHED 10 /* detached from tempsocks list */ |
| 64 | #define XPT_LISTENER 11 /* listening endpoint */ | 65 | #define XPT_LISTENER 11 /* listening endpoint */ |
| 65 | #define XPT_CACHE_AUTH 12 /* cache auth info */ | 66 | #define XPT_CACHE_AUTH 12 /* cache auth info */ |
| 67 | #define XPT_LOCAL 13 /* connection from loopback interface */ | ||
| 66 | 68 | ||
| 67 | struct svc_serv *xpt_server; /* service for transport */ | 69 | struct svc_serv *xpt_server; /* service for transport */ |
| 68 | atomic_t xpt_reserved; /* space on outq that is rsvd */ | 70 | atomic_t xpt_reserved; /* space on outq that is rsvd */ |
diff --git a/include/linux/sunrpc/xdr.h b/include/linux/sunrpc/xdr.h index 15f9204ee70b..70c6b92e15a7 100644 --- a/include/linux/sunrpc/xdr.h +++ b/include/linux/sunrpc/xdr.h | |||
| @@ -215,6 +215,9 @@ typedef int (*kxdrdproc_t)(void *rqstp, struct xdr_stream *xdr, void *obj); | |||
| 215 | 215 | ||
| 216 | extern void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p); | 216 | extern void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p); |
| 217 | extern __be32 *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes); | 217 | extern __be32 *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes); |
| 218 | extern void xdr_commit_encode(struct xdr_stream *xdr); | ||
| 219 | extern void xdr_truncate_encode(struct xdr_stream *xdr, size_t len); | ||
| 220 | extern int xdr_restrict_buflen(struct xdr_stream *xdr, int newbuflen); | ||
| 218 | extern void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, | 221 | extern void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, |
| 219 | unsigned int base, unsigned int len); | 222 | unsigned int base, unsigned int len); |
| 220 | extern unsigned int xdr_stream_pos(const struct xdr_stream *xdr); | 223 | extern unsigned int xdr_stream_pos(const struct xdr_stream *xdr); |
diff --git a/include/linux/sunrpc/xprt.h b/include/linux/sunrpc/xprt.h index 3876f0f1dfd3..fcbfe8783243 100644 --- a/include/linux/sunrpc/xprt.h +++ b/include/linux/sunrpc/xprt.h | |||
| @@ -24,6 +24,12 @@ | |||
| 24 | #define RPC_MAX_SLOT_TABLE_LIMIT (65536U) | 24 | #define RPC_MAX_SLOT_TABLE_LIMIT (65536U) |
| 25 | #define RPC_MAX_SLOT_TABLE RPC_MAX_SLOT_TABLE_LIMIT | 25 | #define RPC_MAX_SLOT_TABLE RPC_MAX_SLOT_TABLE_LIMIT |
| 26 | 26 | ||
| 27 | #define RPC_CWNDSHIFT (8U) | ||
| 28 | #define RPC_CWNDSCALE (1U << RPC_CWNDSHIFT) | ||
| 29 | #define RPC_INITCWND RPC_CWNDSCALE | ||
| 30 | #define RPC_MAXCWND(xprt) ((xprt)->max_reqs << RPC_CWNDSHIFT) | ||
| 31 | #define RPCXPRT_CONGESTED(xprt) ((xprt)->cong >= (xprt)->cwnd) | ||
| 32 | |||
| 27 | /* | 33 | /* |
| 28 | * This describes a timeout strategy | 34 | * This describes a timeout strategy |
| 29 | */ | 35 | */ |
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index 91d66fd8dce1..f76994b9396c 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
| @@ -327,6 +327,8 @@ extern unsigned long get_safe_page(gfp_t gfp_mask); | |||
| 327 | extern void hibernation_set_ops(const struct platform_hibernation_ops *ops); | 327 | extern void hibernation_set_ops(const struct platform_hibernation_ops *ops); |
| 328 | extern int hibernate(void); | 328 | extern int hibernate(void); |
| 329 | extern bool system_entering_hibernation(void); | 329 | extern bool system_entering_hibernation(void); |
| 330 | asmlinkage int swsusp_save(void); | ||
| 331 | extern struct pbe *restore_pblist; | ||
| 330 | #else /* CONFIG_HIBERNATION */ | 332 | #else /* CONFIG_HIBERNATION */ |
| 331 | static inline void register_nosave_region(unsigned long b, unsigned long e) {} | 333 | static inline void register_nosave_region(unsigned long b, unsigned long e) {} |
| 332 | static inline void register_nosave_region_late(unsigned long b, unsigned long e) {} | 334 | static inline void register_nosave_region_late(unsigned long b, unsigned long e) {} |
diff --git a/include/linux/swap.h b/include/linux/swap.h index 350711560753..4bdbee80eede 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
| @@ -166,10 +166,10 @@ enum { | |||
| 166 | #define COMPACT_CLUSTER_MAX SWAP_CLUSTER_MAX | 166 | #define COMPACT_CLUSTER_MAX SWAP_CLUSTER_MAX |
| 167 | 167 | ||
| 168 | /* | 168 | /* |
| 169 | * Ratio between the present memory in the zone and the "gap" that | 169 | * Ratio between zone->managed_pages and the "gap" that above the per-zone |
| 170 | * we're allowing kswapd to shrink in addition to the per-zone high | 170 | * "high_wmark". While balancing nodes, We allow kswapd to shrink zones that |
| 171 | * wmark, even for zones that already have the high wmark satisfied, | 171 | * do not meet the (high_wmark + gap) watermark, even which already met the |
| 172 | * in order to provide better per-zone lru behavior. We are ok to | 172 | * high_wmark, in order to provide better per-zone lru behavior. We are ok to |
| 173 | * spend not more than 1% of the memory for this zone balancing "gap". | 173 | * spend not more than 1% of the memory for this zone balancing "gap". |
| 174 | */ | 174 | */ |
| 175 | #define KSWAPD_ZONE_BALANCE_GAP_RATIO 100 | 175 | #define KSWAPD_ZONE_BALANCE_GAP_RATIO 100 |
| @@ -214,8 +214,9 @@ struct percpu_cluster { | |||
| 214 | struct swap_info_struct { | 214 | struct swap_info_struct { |
| 215 | unsigned long flags; /* SWP_USED etc: see above */ | 215 | unsigned long flags; /* SWP_USED etc: see above */ |
| 216 | signed short prio; /* swap priority of this type */ | 216 | signed short prio; /* swap priority of this type */ |
| 217 | struct plist_node list; /* entry in swap_active_head */ | ||
| 218 | struct plist_node avail_list; /* entry in swap_avail_head */ | ||
| 217 | signed char type; /* strange name for an index */ | 219 | signed char type; /* strange name for an index */ |
| 218 | signed char next; /* next type on the swap list */ | ||
| 219 | unsigned int max; /* extent of the swap_map */ | 220 | unsigned int max; /* extent of the swap_map */ |
| 220 | unsigned char *swap_map; /* vmalloc'ed array of usage counts */ | 221 | unsigned char *swap_map; /* vmalloc'ed array of usage counts */ |
| 221 | struct swap_cluster_info *cluster_info; /* cluster info. Only for SSD */ | 222 | struct swap_cluster_info *cluster_info; /* cluster info. Only for SSD */ |
| @@ -255,11 +256,6 @@ struct swap_info_struct { | |||
| 255 | struct swap_cluster_info discard_cluster_tail; /* list tail of discard clusters */ | 256 | struct swap_cluster_info discard_cluster_tail; /* list tail of discard clusters */ |
| 256 | }; | 257 | }; |
| 257 | 258 | ||
| 258 | struct swap_list_t { | ||
| 259 | int head; /* head of priority-ordered swapfile list */ | ||
| 260 | int next; /* swapfile to be used next */ | ||
| 261 | }; | ||
| 262 | |||
| 263 | /* linux/mm/workingset.c */ | 259 | /* linux/mm/workingset.c */ |
| 264 | void *workingset_eviction(struct address_space *mapping, struct page *page); | 260 | void *workingset_eviction(struct address_space *mapping, struct page *page); |
| 265 | bool workingset_refault(void *shadow); | 261 | bool workingset_refault(void *shadow); |
| @@ -308,12 +304,14 @@ extern unsigned long nr_free_pagecache_pages(void); | |||
| 308 | 304 | ||
| 309 | 305 | ||
| 310 | /* linux/mm/swap.c */ | 306 | /* linux/mm/swap.c */ |
| 311 | extern void __lru_cache_add(struct page *); | ||
| 312 | extern void lru_cache_add(struct page *); | 307 | extern void lru_cache_add(struct page *); |
| 308 | extern void lru_cache_add_anon(struct page *page); | ||
| 309 | extern void lru_cache_add_file(struct page *page); | ||
| 313 | extern void lru_add_page_tail(struct page *page, struct page *page_tail, | 310 | extern void lru_add_page_tail(struct page *page, struct page *page_tail, |
| 314 | struct lruvec *lruvec, struct list_head *head); | 311 | struct lruvec *lruvec, struct list_head *head); |
| 315 | extern void activate_page(struct page *); | 312 | extern void activate_page(struct page *); |
| 316 | extern void mark_page_accessed(struct page *); | 313 | extern void mark_page_accessed(struct page *); |
| 314 | extern void init_page_accessed(struct page *page); | ||
| 317 | extern void lru_add_drain(void); | 315 | extern void lru_add_drain(void); |
| 318 | extern void lru_add_drain_cpu(int cpu); | 316 | extern void lru_add_drain_cpu(int cpu); |
| 319 | extern void lru_add_drain_all(void); | 317 | extern void lru_add_drain_all(void); |
| @@ -323,22 +321,6 @@ extern void swap_setup(void); | |||
| 323 | 321 | ||
| 324 | extern void add_page_to_unevictable_list(struct page *page); | 322 | extern void add_page_to_unevictable_list(struct page *page); |
| 325 | 323 | ||
| 326 | /** | ||
| 327 | * lru_cache_add: add a page to the page lists | ||
| 328 | * @page: the page to add | ||
| 329 | */ | ||
| 330 | static inline void lru_cache_add_anon(struct page *page) | ||
| 331 | { | ||
| 332 | ClearPageActive(page); | ||
| 333 | __lru_cache_add(page); | ||
| 334 | } | ||
| 335 | |||
| 336 | static inline void lru_cache_add_file(struct page *page) | ||
| 337 | { | ||
| 338 | ClearPageActive(page); | ||
| 339 | __lru_cache_add(page); | ||
| 340 | } | ||
| 341 | |||
| 342 | /* linux/mm/vmscan.c */ | 324 | /* linux/mm/vmscan.c */ |
| 343 | extern unsigned long try_to_free_pages(struct zonelist *zonelist, int order, | 325 | extern unsigned long try_to_free_pages(struct zonelist *zonelist, int order, |
| 344 | gfp_t gfp_mask, nodemask_t *mask); | 326 | gfp_t gfp_mask, nodemask_t *mask); |
| @@ -496,7 +478,7 @@ mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout) | |||
| 496 | #define free_page_and_swap_cache(page) \ | 478 | #define free_page_and_swap_cache(page) \ |
| 497 | page_cache_release(page) | 479 | page_cache_release(page) |
| 498 | #define free_pages_and_swap_cache(pages, nr) \ | 480 | #define free_pages_and_swap_cache(pages, nr) \ |
| 499 | release_pages((pages), (nr), 0); | 481 | release_pages((pages), (nr), false); |
| 500 | 482 | ||
| 501 | static inline void show_swap_cache_info(void) | 483 | static inline void show_swap_cache_info(void) |
| 502 | { | 484 | { |
diff --git a/include/linux/swapfile.h b/include/linux/swapfile.h index e282624e8c10..388293a91e8c 100644 --- a/include/linux/swapfile.h +++ b/include/linux/swapfile.h | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | * want to expose them to the dozens of source files that include swap.h | 6 | * want to expose them to the dozens of source files that include swap.h |
| 7 | */ | 7 | */ |
| 8 | extern spinlock_t swap_lock; | 8 | extern spinlock_t swap_lock; |
| 9 | extern struct swap_list_t swap_list; | 9 | extern struct plist_head swap_active_head; |
| 10 | extern struct swap_info_struct *swap_info[]; | 10 | extern struct swap_info_struct *swap_info[]; |
| 11 | extern int try_to_unuse(unsigned int, bool, unsigned long); | 11 | extern int try_to_unuse(unsigned int, bool, unsigned long); |
| 12 | 12 | ||
diff --git a/include/linux/swapops.h b/include/linux/swapops.h index c0f75261a728..6adfb7bfbf44 100644 --- a/include/linux/swapops.h +++ b/include/linux/swapops.h | |||
| @@ -54,7 +54,7 @@ static inline pgoff_t swp_offset(swp_entry_t entry) | |||
| 54 | /* check whether a pte points to a swap entry */ | 54 | /* check whether a pte points to a swap entry */ |
| 55 | static inline int is_swap_pte(pte_t pte) | 55 | static inline int is_swap_pte(pte_t pte) |
| 56 | { | 56 | { |
| 57 | return !pte_none(pte) && !pte_present(pte) && !pte_file(pte); | 57 | return !pte_none(pte) && !pte_present_nonuma(pte) && !pte_file(pte); |
| 58 | } | 58 | } |
| 59 | #endif | 59 | #endif |
| 60 | 60 | ||
diff --git a/include/linux/swiotlb.h b/include/linux/swiotlb.h index a5ffd32642fd..e7a018eaf3a2 100644 --- a/include/linux/swiotlb.h +++ b/include/linux/swiotlb.h | |||
| @@ -116,4 +116,6 @@ static inline void swiotlb_free(void) { } | |||
| 116 | #endif | 116 | #endif |
| 117 | 117 | ||
| 118 | extern void swiotlb_print_info(void); | 118 | extern void swiotlb_print_info(void); |
| 119 | extern int is_swiotlb_buffer(phys_addr_t paddr); | ||
| 120 | |||
| 119 | #endif /* __LINUX_SWIOTLB_H */ | 121 | #endif /* __LINUX_SWIOTLB_H */ |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index a4a0588c5397..b0881a0ed322 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
| @@ -711,7 +711,7 @@ asmlinkage long sys_keyctl(int cmd, unsigned long arg2, unsigned long arg3, | |||
| 711 | 711 | ||
| 712 | asmlinkage long sys_ioprio_set(int which, int who, int ioprio); | 712 | asmlinkage long sys_ioprio_set(int which, int who, int ioprio); |
| 713 | asmlinkage long sys_ioprio_get(int which, int who); | 713 | asmlinkage long sys_ioprio_get(int which, int who); |
| 714 | asmlinkage long sys_set_mempolicy(int mode, unsigned long __user *nmask, | 714 | asmlinkage long sys_set_mempolicy(int mode, const unsigned long __user *nmask, |
| 715 | unsigned long maxnode); | 715 | unsigned long maxnode); |
| 716 | asmlinkage long sys_migrate_pages(pid_t pid, unsigned long maxnode, | 716 | asmlinkage long sys_migrate_pages(pid_t pid, unsigned long maxnode, |
| 717 | const unsigned long __user *from, | 717 | const unsigned long __user *from, |
| @@ -723,7 +723,7 @@ asmlinkage long sys_move_pages(pid_t pid, unsigned long nr_pages, | |||
| 723 | int flags); | 723 | int flags); |
| 724 | asmlinkage long sys_mbind(unsigned long start, unsigned long len, | 724 | asmlinkage long sys_mbind(unsigned long start, unsigned long len, |
| 725 | unsigned long mode, | 725 | unsigned long mode, |
| 726 | unsigned long __user *nmask, | 726 | const unsigned long __user *nmask, |
| 727 | unsigned long maxnode, | 727 | unsigned long maxnode, |
| 728 | unsigned flags); | 728 | unsigned flags); |
| 729 | asmlinkage long sys_get_mempolicy(int __user *policy, | 729 | asmlinkage long sys_get_mempolicy(int __user *policy, |
diff --git a/include/linux/thread_info.h b/include/linux/thread_info.h index cb0cec94fda3..ff307b548ed3 100644 --- a/include/linux/thread_info.h +++ b/include/linux/thread_info.h | |||
| @@ -61,8 +61,6 @@ extern long do_no_restart_syscall(struct restart_block *parm); | |||
| 61 | # define THREADINFO_GFP (GFP_KERNEL | __GFP_NOTRACK) | 61 | # define THREADINFO_GFP (GFP_KERNEL | __GFP_NOTRACK) |
| 62 | #endif | 62 | #endif |
| 63 | 63 | ||
| 64 | #define THREADINFO_GFP_ACCOUNTED (THREADINFO_GFP | __GFP_KMEMCG) | ||
| 65 | |||
| 66 | /* | 64 | /* |
| 67 | * flag set/clear/test wrappers | 65 | * flag set/clear/test wrappers |
| 68 | * - pass TIF_xxxx constants to these functions | 66 | * - pass TIF_xxxx constants to these functions |
diff --git a/include/linux/topology.h b/include/linux/topology.h index 973671ff9e7d..dda6ee521e74 100644 --- a/include/linux/topology.h +++ b/include/linux/topology.h | |||
| @@ -58,7 +58,8 @@ int arch_update_cpu_topology(void); | |||
| 58 | /* | 58 | /* |
| 59 | * If the distance between nodes in a system is larger than RECLAIM_DISTANCE | 59 | * If the distance between nodes in a system is larger than RECLAIM_DISTANCE |
| 60 | * (in whatever arch specific measurement units returned by node_distance()) | 60 | * (in whatever arch specific measurement units returned by node_distance()) |
| 61 | * then switch on zone reclaim on boot. | 61 | * and zone_reclaim_mode is enabled then the VM will only call zone_reclaim() |
| 62 | * on nodes within this distance. | ||
| 62 | */ | 63 | */ |
| 63 | #define RECLAIM_DISTANCE 30 | 64 | #define RECLAIM_DISTANCE 30 |
| 64 | #endif | 65 | #endif |
diff --git a/include/linux/trace_seq.h b/include/linux/trace_seq.h index a32d86ec8bf2..136116924d8d 100644 --- a/include/linux/trace_seq.h +++ b/include/linux/trace_seq.h | |||
| @@ -46,6 +46,9 @@ extern int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, | |||
| 46 | extern void *trace_seq_reserve(struct trace_seq *s, size_t len); | 46 | extern void *trace_seq_reserve(struct trace_seq *s, size_t len); |
| 47 | extern int trace_seq_path(struct trace_seq *s, const struct path *path); | 47 | extern int trace_seq_path(struct trace_seq *s, const struct path *path); |
| 48 | 48 | ||
| 49 | extern int trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp, | ||
| 50 | int nmaskbits); | ||
| 51 | |||
| 49 | #else /* CONFIG_TRACING */ | 52 | #else /* CONFIG_TRACING */ |
| 50 | static inline int trace_seq_printf(struct trace_seq *s, const char *fmt, ...) | 53 | static inline int trace_seq_printf(struct trace_seq *s, const char *fmt, ...) |
| 51 | { | 54 | { |
| @@ -57,6 +60,13 @@ trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) | |||
| 57 | return 0; | 60 | return 0; |
| 58 | } | 61 | } |
| 59 | 62 | ||
| 63 | static inline int | ||
| 64 | trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp, | ||
| 65 | int nmaskbits) | ||
| 66 | { | ||
| 67 | return 0; | ||
| 68 | } | ||
| 69 | |||
| 60 | static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s) | 70 | static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s) |
| 61 | { | 71 | { |
| 62 | return 0; | 72 | return 0; |
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h index 9d30ee469c2a..2e2a5f7717e5 100644 --- a/include/linux/tracepoint.h +++ b/include/linux/tracepoint.h | |||
| @@ -185,6 +185,11 @@ extern void syscall_unregfunc(void); | |||
| 185 | static inline void \ | 185 | static inline void \ |
| 186 | check_trace_callback_type_##name(void (*cb)(data_proto)) \ | 186 | check_trace_callback_type_##name(void (*cb)(data_proto)) \ |
| 187 | { \ | 187 | { \ |
| 188 | } \ | ||
| 189 | static inline bool \ | ||
| 190 | trace_##name##_enabled(void) \ | ||
| 191 | { \ | ||
| 192 | return static_key_false(&__tracepoint_##name.key); \ | ||
| 188 | } | 193 | } |
| 189 | 194 | ||
| 190 | /* | 195 | /* |
| @@ -230,6 +235,11 @@ extern void syscall_unregfunc(void); | |||
| 230 | } \ | 235 | } \ |
| 231 | static inline void check_trace_callback_type_##name(void (*cb)(data_proto)) \ | 236 | static inline void check_trace_callback_type_##name(void (*cb)(data_proto)) \ |
| 232 | { \ | 237 | { \ |
| 238 | } \ | ||
| 239 | static inline bool \ | ||
| 240 | trace_##name##_enabled(void) \ | ||
| 241 | { \ | ||
| 242 | return false; \ | ||
| 233 | } | 243 | } |
| 234 | 244 | ||
| 235 | #define DEFINE_TRACE_FN(name, reg, unreg) | 245 | #define DEFINE_TRACE_FN(name, reg, unreg) |
diff --git a/include/linux/uio.h b/include/linux/uio.h index 199bcc34241b..e2231e47cec1 100644 --- a/include/linux/uio.h +++ b/include/linux/uio.h | |||
| @@ -19,11 +19,21 @@ struct kvec { | |||
| 19 | size_t iov_len; | 19 | size_t iov_len; |
| 20 | }; | 20 | }; |
| 21 | 21 | ||
| 22 | enum { | ||
| 23 | ITER_IOVEC = 0, | ||
| 24 | ITER_KVEC = 2, | ||
| 25 | ITER_BVEC = 4, | ||
| 26 | }; | ||
| 27 | |||
| 22 | struct iov_iter { | 28 | struct iov_iter { |
| 23 | const struct iovec *iov; | 29 | int type; |
| 24 | unsigned long nr_segs; | ||
| 25 | size_t iov_offset; | 30 | size_t iov_offset; |
| 26 | size_t count; | 31 | size_t count; |
| 32 | union { | ||
| 33 | const struct iovec *iov; | ||
| 34 | const struct bio_vec *bvec; | ||
| 35 | }; | ||
| 36 | unsigned long nr_segs; | ||
| 27 | }; | 37 | }; |
| 28 | 38 | ||
| 29 | /* | 39 | /* |
| @@ -53,6 +63,7 @@ static inline struct iovec iov_iter_iovec(const struct iov_iter *iter) | |||
| 53 | } | 63 | } |
| 54 | 64 | ||
| 55 | #define iov_for_each(iov, iter, start) \ | 65 | #define iov_for_each(iov, iter, start) \ |
| 66 | if (!((start).type & ITER_BVEC)) \ | ||
| 56 | for (iter = (start); \ | 67 | for (iter = (start); \ |
| 57 | (iter).count && \ | 68 | (iter).count && \ |
| 58 | ((iov = iov_iter_iovec(&(iter))), 1); \ | 69 | ((iov = iov_iter_iovec(&(iter))), 1); \ |
| @@ -62,32 +73,44 @@ unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to); | |||
| 62 | 73 | ||
| 63 | size_t iov_iter_copy_from_user_atomic(struct page *page, | 74 | size_t iov_iter_copy_from_user_atomic(struct page *page, |
| 64 | struct iov_iter *i, unsigned long offset, size_t bytes); | 75 | struct iov_iter *i, unsigned long offset, size_t bytes); |
| 65 | size_t iov_iter_copy_from_user(struct page *page, | ||
| 66 | struct iov_iter *i, unsigned long offset, size_t bytes); | ||
| 67 | void iov_iter_advance(struct iov_iter *i, size_t bytes); | 76 | void iov_iter_advance(struct iov_iter *i, size_t bytes); |
| 68 | int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes); | 77 | int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes); |
| 69 | size_t iov_iter_single_seg_count(const struct iov_iter *i); | 78 | size_t iov_iter_single_seg_count(const struct iov_iter *i); |
| 70 | size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes, | 79 | size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes, |
| 71 | struct iov_iter *i); | 80 | struct iov_iter *i); |
| 81 | size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes, | ||
| 82 | struct iov_iter *i); | ||
| 83 | unsigned long iov_iter_alignment(const struct iov_iter *i); | ||
| 84 | void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov, | ||
| 85 | unsigned long nr_segs, size_t count); | ||
| 86 | ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages, | ||
| 87 | size_t maxsize, size_t *start); | ||
| 88 | ssize_t iov_iter_get_pages_alloc(struct iov_iter *i, struct page ***pages, | ||
| 89 | size_t maxsize, size_t *start); | ||
| 90 | int iov_iter_npages(const struct iov_iter *i, int maxpages); | ||
| 72 | 91 | ||
| 73 | static inline void iov_iter_init(struct iov_iter *i, | 92 | static inline size_t iov_iter_count(struct iov_iter *i) |
| 74 | const struct iovec *iov, unsigned long nr_segs, | ||
| 75 | size_t count, size_t written) | ||
| 76 | { | 93 | { |
| 77 | i->iov = iov; | 94 | return i->count; |
| 78 | i->nr_segs = nr_segs; | 95 | } |
| 79 | i->iov_offset = 0; | ||
| 80 | i->count = count + written; | ||
| 81 | 96 | ||
| 82 | iov_iter_advance(i, written); | 97 | static inline void iov_iter_truncate(struct iov_iter *i, size_t count) |
| 98 | { | ||
| 99 | if (i->count > count) | ||
| 100 | i->count = count; | ||
| 83 | } | 101 | } |
| 84 | 102 | ||
| 85 | static inline size_t iov_iter_count(struct iov_iter *i) | 103 | /* |
| 104 | * reexpand a previously truncated iterator; count must be no more than how much | ||
| 105 | * we had shrunk it. | ||
| 106 | */ | ||
| 107 | static inline void iov_iter_reexpand(struct iov_iter *i, size_t count) | ||
| 86 | { | 108 | { |
| 87 | return i->count; | 109 | i->count = count; |
| 88 | } | 110 | } |
| 89 | 111 | ||
| 90 | int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len); | 112 | int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len); |
| 91 | int memcpy_toiovec(struct iovec *iov, unsigned char *kdata, int len); | 113 | int memcpy_toiovec(struct iovec *iov, unsigned char *kdata, int len); |
| 92 | 114 | ||
| 115 | |||
| 93 | #endif | 116 | #endif |
diff --git a/include/linux/uprobes.h b/include/linux/uprobes.h index edff2b97b864..c52f827ba6ce 100644 --- a/include/linux/uprobes.h +++ b/include/linux/uprobes.h | |||
| @@ -32,6 +32,7 @@ struct vm_area_struct; | |||
| 32 | struct mm_struct; | 32 | struct mm_struct; |
| 33 | struct inode; | 33 | struct inode; |
| 34 | struct notifier_block; | 34 | struct notifier_block; |
| 35 | struct page; | ||
| 35 | 36 | ||
| 36 | #define UPROBE_HANDLER_REMOVE 1 | 37 | #define UPROBE_HANDLER_REMOVE 1 |
| 37 | #define UPROBE_HANDLER_MASK 1 | 38 | #define UPROBE_HANDLER_MASK 1 |
| @@ -127,6 +128,8 @@ extern int arch_uprobe_exception_notify(struct notifier_block *self, unsigned l | |||
| 127 | extern void arch_uprobe_abort_xol(struct arch_uprobe *aup, struct pt_regs *regs); | 128 | extern void arch_uprobe_abort_xol(struct arch_uprobe *aup, struct pt_regs *regs); |
| 128 | extern unsigned long arch_uretprobe_hijack_return_addr(unsigned long trampoline_vaddr, struct pt_regs *regs); | 129 | extern unsigned long arch_uretprobe_hijack_return_addr(unsigned long trampoline_vaddr, struct pt_regs *regs); |
| 129 | extern bool __weak arch_uprobe_ignore(struct arch_uprobe *aup, struct pt_regs *regs); | 130 | extern bool __weak arch_uprobe_ignore(struct arch_uprobe *aup, struct pt_regs *regs); |
| 131 | extern void __weak arch_uprobe_copy_ixol(struct page *page, unsigned long vaddr, | ||
| 132 | void *src, unsigned long len); | ||
| 130 | #else /* !CONFIG_UPROBES */ | 133 | #else /* !CONFIG_UPROBES */ |
| 131 | struct uprobes_state { | 134 | struct uprobes_state { |
| 132 | }; | 135 | }; |
diff --git a/include/linux/vfio.h b/include/linux/vfio.h index 81022a52bc34..8ec980b5e3af 100644 --- a/include/linux/vfio.h +++ b/include/linux/vfio.h | |||
| @@ -86,9 +86,8 @@ extern void vfio_unregister_iommu_driver( | |||
| 86 | * from user space. This allows us to easily determine if the provided | 86 | * from user space. This allows us to easily determine if the provided |
| 87 | * structure is sized to include various fields. | 87 | * structure is sized to include various fields. |
| 88 | */ | 88 | */ |
| 89 | #define offsetofend(TYPE, MEMBER) ({ \ | 89 | #define offsetofend(TYPE, MEMBER) \ |
| 90 | TYPE tmp; \ | 90 | (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER)) |
| 91 | offsetof(TYPE, MEMBER) + sizeof(tmp.MEMBER); }) \ | ||
| 92 | 91 | ||
| 93 | /* | 92 | /* |
| 94 | * External user API | 93 | * External user API |
diff --git a/include/linux/virtio.h b/include/linux/virtio.h index e4abb84199be..b46671e28de2 100644 --- a/include/linux/virtio.h +++ b/include/linux/virtio.h | |||
| @@ -106,6 +106,8 @@ static inline struct virtio_device *dev_to_virtio(struct device *_dev) | |||
| 106 | int register_virtio_device(struct virtio_device *dev); | 106 | int register_virtio_device(struct virtio_device *dev); |
| 107 | void unregister_virtio_device(struct virtio_device *dev); | 107 | void unregister_virtio_device(struct virtio_device *dev); |
| 108 | 108 | ||
| 109 | void virtio_break_device(struct virtio_device *dev); | ||
| 110 | |||
| 109 | /** | 111 | /** |
| 110 | * virtio_driver - operations for a virtio I/O driver | 112 | * virtio_driver - operations for a virtio I/O driver |
| 111 | * @driver: underlying device driver (populate name and owner). | 113 | * @driver: underlying device driver (populate name and owner). |
diff --git a/include/linux/vm_event_item.h b/include/linux/vm_event_item.h index 486c3972c0be..ced92345c963 100644 --- a/include/linux/vm_event_item.h +++ b/include/linux/vm_event_item.h | |||
| @@ -80,6 +80,10 @@ enum vm_event_item { PGPGIN, PGPGOUT, PSWPIN, PSWPOUT, | |||
| 80 | NR_TLB_LOCAL_FLUSH_ALL, | 80 | NR_TLB_LOCAL_FLUSH_ALL, |
| 81 | NR_TLB_LOCAL_FLUSH_ONE, | 81 | NR_TLB_LOCAL_FLUSH_ONE, |
| 82 | #endif /* CONFIG_DEBUG_TLBFLUSH */ | 82 | #endif /* CONFIG_DEBUG_TLBFLUSH */ |
| 83 | #ifdef CONFIG_DEBUG_VM_VMACACHE | ||
| 84 | VMACACHE_FIND_CALLS, | ||
| 85 | VMACACHE_FIND_HITS, | ||
| 86 | #endif | ||
| 83 | NR_VM_EVENT_ITEMS | 87 | NR_VM_EVENT_ITEMS |
| 84 | }; | 88 | }; |
| 85 | 89 | ||
diff --git a/include/linux/vmstat.h b/include/linux/vmstat.h index 45c9cd1daf7a..82e7db7f7100 100644 --- a/include/linux/vmstat.h +++ b/include/linux/vmstat.h | |||
| @@ -95,6 +95,12 @@ static inline void vm_events_fold_cpu(int cpu) | |||
| 95 | #define count_vm_tlb_events(x, y) do { (void)(y); } while (0) | 95 | #define count_vm_tlb_events(x, y) do { (void)(y); } while (0) |
| 96 | #endif | 96 | #endif |
| 97 | 97 | ||
| 98 | #ifdef CONFIG_DEBUG_VM_VMACACHE | ||
| 99 | #define count_vm_vmacache_event(x) count_vm_event(x) | ||
| 100 | #else | ||
| 101 | #define count_vm_vmacache_event(x) do {} while (0) | ||
| 102 | #endif | ||
| 103 | |||
| 98 | #define __count_zone_vm_events(item, zone, delta) \ | 104 | #define __count_zone_vm_events(item, zone, delta) \ |
| 99 | __count_vm_events(item##_NORMAL - ZONE_NORMAL + \ | 105 | __count_vm_events(item##_NORMAL - ZONE_NORMAL + \ |
| 100 | zone_idx(zone), delta) | 106 | zone_idx(zone), delta) |
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index 1b22c42e9c2d..a0cc2e95ed1b 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h | |||
| @@ -56,9 +56,8 @@ enum { | |||
| 56 | WORK_NR_COLORS = (1 << WORK_STRUCT_COLOR_BITS) - 1, | 56 | WORK_NR_COLORS = (1 << WORK_STRUCT_COLOR_BITS) - 1, |
| 57 | WORK_NO_COLOR = WORK_NR_COLORS, | 57 | WORK_NO_COLOR = WORK_NR_COLORS, |
| 58 | 58 | ||
| 59 | /* special cpu IDs */ | 59 | /* not bound to any CPU, prefer the local CPU */ |
| 60 | WORK_CPU_UNBOUND = NR_CPUS, | 60 | WORK_CPU_UNBOUND = NR_CPUS, |
| 61 | WORK_CPU_END = NR_CPUS + 1, | ||
| 62 | 61 | ||
| 63 | /* | 62 | /* |
| 64 | * Reserve 7 bits off of pwq pointer w/ debugobjects turned off. | 63 | * Reserve 7 bits off of pwq pointer w/ debugobjects turned off. |
| @@ -274,13 +273,6 @@ static inline unsigned int work_static(struct work_struct *work) { return 0; } | |||
| 274 | #define delayed_work_pending(w) \ | 273 | #define delayed_work_pending(w) \ |
| 275 | work_pending(&(w)->work) | 274 | work_pending(&(w)->work) |
| 276 | 275 | ||
| 277 | /** | ||
| 278 | * work_clear_pending - for internal use only, mark a work item as not pending | ||
| 279 | * @work: The work item in question | ||
| 280 | */ | ||
| 281 | #define work_clear_pending(work) \ | ||
| 282 | clear_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)) | ||
| 283 | |||
| 284 | /* | 276 | /* |
| 285 | * Workqueue flags and constants. For details, please refer to | 277 | * Workqueue flags and constants. For details, please refer to |
| 286 | * Documentation/workqueue.txt. | 278 | * Documentation/workqueue.txt. |
| @@ -340,6 +332,9 @@ enum { | |||
| 340 | * short queue flush time. Don't queue works which can run for too | 332 | * short queue flush time. Don't queue works which can run for too |
| 341 | * long. | 333 | * long. |
| 342 | * | 334 | * |
| 335 | * system_highpri_wq is similar to system_wq but for work items which | ||
| 336 | * require WQ_HIGHPRI. | ||
| 337 | * | ||
| 343 | * system_long_wq is similar to system_wq but may host long running | 338 | * system_long_wq is similar to system_wq but may host long running |
| 344 | * works. Queue flushing might take relatively long. | 339 | * works. Queue flushing might take relatively long. |
| 345 | * | 340 | * |
| @@ -358,26 +353,13 @@ enum { | |||
| 358 | * 'wq_power_efficient' is disabled. See WQ_POWER_EFFICIENT for more info. | 353 | * 'wq_power_efficient' is disabled. See WQ_POWER_EFFICIENT for more info. |
| 359 | */ | 354 | */ |
| 360 | extern struct workqueue_struct *system_wq; | 355 | extern struct workqueue_struct *system_wq; |
| 356 | extern struct workqueue_struct *system_highpri_wq; | ||
| 361 | extern struct workqueue_struct *system_long_wq; | 357 | extern struct workqueue_struct *system_long_wq; |
| 362 | extern struct workqueue_struct *system_unbound_wq; | 358 | extern struct workqueue_struct *system_unbound_wq; |
| 363 | extern struct workqueue_struct *system_freezable_wq; | 359 | extern struct workqueue_struct *system_freezable_wq; |
| 364 | extern struct workqueue_struct *system_power_efficient_wq; | 360 | extern struct workqueue_struct *system_power_efficient_wq; |
| 365 | extern struct workqueue_struct *system_freezable_power_efficient_wq; | 361 | extern struct workqueue_struct *system_freezable_power_efficient_wq; |
| 366 | 362 | ||
| 367 | static inline struct workqueue_struct * __deprecated __system_nrt_wq(void) | ||
| 368 | { | ||
| 369 | return system_wq; | ||
| 370 | } | ||
| 371 | |||
| 372 | static inline struct workqueue_struct * __deprecated __system_nrt_freezable_wq(void) | ||
| 373 | { | ||
| 374 | return system_freezable_wq; | ||
| 375 | } | ||
| 376 | |||
| 377 | /* equivlalent to system_wq and system_freezable_wq, deprecated */ | ||
| 378 | #define system_nrt_wq __system_nrt_wq() | ||
| 379 | #define system_nrt_freezable_wq __system_nrt_freezable_wq() | ||
| 380 | |||
| 381 | extern struct workqueue_struct * | 363 | extern struct workqueue_struct * |
| 382 | __alloc_workqueue_key(const char *fmt, unsigned int flags, int max_active, | 364 | __alloc_workqueue_key(const char *fmt, unsigned int flags, int max_active, |
| 383 | struct lock_class_key *key, const char *lock_name, ...) __printf(1, 6); | 365 | struct lock_class_key *key, const char *lock_name, ...) __printf(1, 6); |
| @@ -587,18 +569,6 @@ static inline bool keventd_up(void) | |||
| 587 | return system_wq != NULL; | 569 | return system_wq != NULL; |
| 588 | } | 570 | } |
| 589 | 571 | ||
| 590 | /* used to be different but now identical to flush_work(), deprecated */ | ||
| 591 | static inline bool __deprecated flush_work_sync(struct work_struct *work) | ||
| 592 | { | ||
| 593 | return flush_work(work); | ||
| 594 | } | ||
| 595 | |||
| 596 | /* used to be different but now identical to flush_delayed_work(), deprecated */ | ||
| 597 | static inline bool __deprecated flush_delayed_work_sync(struct delayed_work *dwork) | ||
| 598 | { | ||
| 599 | return flush_delayed_work(dwork); | ||
| 600 | } | ||
| 601 | |||
| 602 | #ifndef CONFIG_SMP | 572 | #ifndef CONFIG_SMP |
| 603 | static inline long work_on_cpu(int cpu, long (*fn)(void *), void *arg) | 573 | static inline long work_on_cpu(int cpu, long (*fn)(void *), void *arg) |
| 604 | { | 574 | { |
diff --git a/include/linux/zbud.h b/include/linux/zbud.h index 2571a5cfa5fc..13af0d450bf6 100644 --- a/include/linux/zbud.h +++ b/include/linux/zbud.h | |||
| @@ -11,7 +11,7 @@ struct zbud_ops { | |||
| 11 | 11 | ||
| 12 | struct zbud_pool *zbud_create_pool(gfp_t gfp, struct zbud_ops *ops); | 12 | struct zbud_pool *zbud_create_pool(gfp_t gfp, struct zbud_ops *ops); |
| 13 | void zbud_destroy_pool(struct zbud_pool *pool); | 13 | void zbud_destroy_pool(struct zbud_pool *pool); |
| 14 | int zbud_alloc(struct zbud_pool *pool, int size, gfp_t gfp, | 14 | int zbud_alloc(struct zbud_pool *pool, unsigned int size, gfp_t gfp, |
| 15 | unsigned long *handle); | 15 | unsigned long *handle); |
| 16 | void zbud_free(struct zbud_pool *pool, unsigned long handle); | 16 | void zbud_free(struct zbud_pool *pool, unsigned long handle); |
| 17 | int zbud_reclaim_page(struct zbud_pool *pool, unsigned int retries); | 17 | int zbud_reclaim_page(struct zbud_pool *pool, unsigned int retries); |
diff --git a/include/media/adv7604.h b/include/media/adv7604.h index d262a3a922bd..aa1c4477722d 100644 --- a/include/media/adv7604.h +++ b/include/media/adv7604.h | |||
| @@ -21,6 +21,8 @@ | |||
| 21 | #ifndef _ADV7604_ | 21 | #ifndef _ADV7604_ |
| 22 | #define _ADV7604_ | 22 | #define _ADV7604_ |
| 23 | 23 | ||
| 24 | #include <linux/types.h> | ||
| 25 | |||
| 24 | /* Analog input muxing modes (AFE register 0x02, [2:0]) */ | 26 | /* Analog input muxing modes (AFE register 0x02, [2:0]) */ |
| 25 | enum adv7604_ain_sel { | 27 | enum adv7604_ain_sel { |
| 26 | ADV7604_AIN1_2_3_NC_SYNC_1_2 = 0, | 28 | ADV7604_AIN1_2_3_NC_SYNC_1_2 = 0, |
| @@ -30,14 +32,18 @@ enum adv7604_ain_sel { | |||
| 30 | ADV7604_AIN9_4_5_6_SYNC_2_1 = 4, | 32 | ADV7604_AIN9_4_5_6_SYNC_2_1 = 4, |
| 31 | }; | 33 | }; |
| 32 | 34 | ||
| 33 | /* Bus rotation and reordering (IO register 0x04, [7:5]) */ | 35 | /* |
| 34 | enum adv7604_op_ch_sel { | 36 | * Bus rotation and reordering. This is used to specify component reordering on |
| 35 | ADV7604_OP_CH_SEL_GBR = 0, | 37 | * the board and describes the components order on the bus when the ADV7604 |
| 36 | ADV7604_OP_CH_SEL_GRB = 1, | 38 | * outputs RGB. |
| 37 | ADV7604_OP_CH_SEL_BGR = 2, | 39 | */ |
| 38 | ADV7604_OP_CH_SEL_RGB = 3, | 40 | enum adv7604_bus_order { |
| 39 | ADV7604_OP_CH_SEL_BRG = 4, | 41 | ADV7604_BUS_ORDER_RGB, /* No operation */ |
| 40 | ADV7604_OP_CH_SEL_RBG = 5, | 42 | ADV7604_BUS_ORDER_GRB, /* Swap 1-2 */ |
| 43 | ADV7604_BUS_ORDER_RBG, /* Swap 2-3 */ | ||
| 44 | ADV7604_BUS_ORDER_BGR, /* Swap 1-3 */ | ||
| 45 | ADV7604_BUS_ORDER_BRG, /* Rotate right */ | ||
| 46 | ADV7604_BUS_ORDER_GBR, /* Rotate left */ | ||
| 41 | }; | 47 | }; |
| 42 | 48 | ||
| 43 | /* Input Color Space (IO register 0x02, [7:4]) */ | 49 | /* Input Color Space (IO register 0x02, [7:4]) */ |
| @@ -53,29 +59,11 @@ enum adv7604_inp_color_space { | |||
| 53 | ADV7604_INP_COLOR_SPACE_AUTO = 0xf, | 59 | ADV7604_INP_COLOR_SPACE_AUTO = 0xf, |
| 54 | }; | 60 | }; |
| 55 | 61 | ||
| 56 | /* Select output format (IO register 0x03, [7:0]) */ | 62 | /* Select output format (IO register 0x03, [4:2]) */ |
| 57 | enum adv7604_op_format_sel { | 63 | enum adv7604_op_format_mode_sel { |
| 58 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_8 = 0x00, | 64 | ADV7604_OP_FORMAT_MODE0 = 0x00, |
| 59 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_10 = 0x01, | 65 | ADV7604_OP_FORMAT_MODE1 = 0x04, |
| 60 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_12_MODE0 = 0x02, | 66 | ADV7604_OP_FORMAT_MODE2 = 0x08, |
| 61 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_12_MODE1 = 0x06, | ||
| 62 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_12_MODE2 = 0x0a, | ||
| 63 | ADV7604_OP_FORMAT_SEL_DDR_422_8 = 0x20, | ||
| 64 | ADV7604_OP_FORMAT_SEL_DDR_422_10 = 0x21, | ||
| 65 | ADV7604_OP_FORMAT_SEL_DDR_422_12_MODE0 = 0x22, | ||
| 66 | ADV7604_OP_FORMAT_SEL_DDR_422_12_MODE1 = 0x23, | ||
| 67 | ADV7604_OP_FORMAT_SEL_DDR_422_12_MODE2 = 0x24, | ||
| 68 | ADV7604_OP_FORMAT_SEL_SDR_444_24 = 0x40, | ||
| 69 | ADV7604_OP_FORMAT_SEL_SDR_444_30 = 0x41, | ||
| 70 | ADV7604_OP_FORMAT_SEL_SDR_444_36_MODE0 = 0x42, | ||
| 71 | ADV7604_OP_FORMAT_SEL_DDR_444_24 = 0x60, | ||
| 72 | ADV7604_OP_FORMAT_SEL_DDR_444_30 = 0x61, | ||
| 73 | ADV7604_OP_FORMAT_SEL_DDR_444_36 = 0x62, | ||
| 74 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_16 = 0x80, | ||
| 75 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_20 = 0x81, | ||
| 76 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_24_MODE0 = 0x82, | ||
| 77 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_24_MODE1 = 0x86, | ||
| 78 | ADV7604_OP_FORMAT_SEL_SDR_ITU656_24_MODE2 = 0x8a, | ||
| 79 | }; | 67 | }; |
| 80 | 68 | ||
| 81 | enum adv7604_drive_strength { | 69 | enum adv7604_drive_strength { |
| @@ -84,6 +72,30 @@ enum adv7604_drive_strength { | |||
| 84 | ADV7604_DR_STR_HIGH = 3, | 72 | ADV7604_DR_STR_HIGH = 3, |
| 85 | }; | 73 | }; |
| 86 | 74 | ||
| 75 | enum adv7604_int1_config { | ||
| 76 | ADV7604_INT1_CONFIG_OPEN_DRAIN, | ||
| 77 | ADV7604_INT1_CONFIG_ACTIVE_LOW, | ||
| 78 | ADV7604_INT1_CONFIG_ACTIVE_HIGH, | ||
| 79 | ADV7604_INT1_CONFIG_DISABLED, | ||
| 80 | }; | ||
| 81 | |||
| 82 | enum adv7604_page { | ||
| 83 | ADV7604_PAGE_IO, | ||
| 84 | ADV7604_PAGE_AVLINK, | ||
| 85 | ADV7604_PAGE_CEC, | ||
| 86 | ADV7604_PAGE_INFOFRAME, | ||
| 87 | ADV7604_PAGE_ESDP, | ||
| 88 | ADV7604_PAGE_DPP, | ||
| 89 | ADV7604_PAGE_AFE, | ||
| 90 | ADV7604_PAGE_REP, | ||
| 91 | ADV7604_PAGE_EDID, | ||
| 92 | ADV7604_PAGE_HDMI, | ||
| 93 | ADV7604_PAGE_TEST, | ||
| 94 | ADV7604_PAGE_CP, | ||
| 95 | ADV7604_PAGE_VDP, | ||
| 96 | ADV7604_PAGE_MAX, | ||
| 97 | }; | ||
| 98 | |||
| 87 | /* Platform dependent definition */ | 99 | /* Platform dependent definition */ |
| 88 | struct adv7604_platform_data { | 100 | struct adv7604_platform_data { |
| 89 | /* DIS_PWRDNB: 1 if the PWRDNB pin is unused and unconnected */ | 101 | /* DIS_PWRDNB: 1 if the PWRDNB pin is unused and unconnected */ |
| @@ -92,30 +104,34 @@ struct adv7604_platform_data { | |||
| 92 | /* DIS_CABLE_DET_RST: 1 if the 5V pins are unused and unconnected */ | 104 | /* DIS_CABLE_DET_RST: 1 if the 5V pins are unused and unconnected */ |
| 93 | unsigned disable_cable_det_rst:1; | 105 | unsigned disable_cable_det_rst:1; |
| 94 | 106 | ||
| 107 | int default_input; | ||
| 108 | |||
| 95 | /* Analog input muxing mode */ | 109 | /* Analog input muxing mode */ |
| 96 | enum adv7604_ain_sel ain_sel; | 110 | enum adv7604_ain_sel ain_sel; |
| 97 | 111 | ||
| 98 | /* Bus rotation and reordering */ | 112 | /* Bus rotation and reordering */ |
| 99 | enum adv7604_op_ch_sel op_ch_sel; | 113 | enum adv7604_bus_order bus_order; |
| 100 | 114 | ||
| 101 | /* Select output format */ | 115 | /* Select output format mode */ |
| 102 | enum adv7604_op_format_sel op_format_sel; | 116 | enum adv7604_op_format_mode_sel op_format_mode_sel; |
| 117 | |||
| 118 | /* Configuration of the INT1 pin */ | ||
| 119 | enum adv7604_int1_config int1_config; | ||
| 103 | 120 | ||
| 104 | /* IO register 0x02 */ | 121 | /* IO register 0x02 */ |
| 105 | unsigned alt_gamma:1; | 122 | unsigned alt_gamma:1; |
| 106 | unsigned op_656_range:1; | 123 | unsigned op_656_range:1; |
| 107 | unsigned rgb_out:1; | ||
| 108 | unsigned alt_data_sat:1; | 124 | unsigned alt_data_sat:1; |
| 109 | 125 | ||
| 110 | /* IO register 0x05 */ | 126 | /* IO register 0x05 */ |
| 111 | unsigned blank_data:1; | 127 | unsigned blank_data:1; |
| 112 | unsigned insert_av_codes:1; | 128 | unsigned insert_av_codes:1; |
| 113 | unsigned replicate_av_codes:1; | 129 | unsigned replicate_av_codes:1; |
| 114 | unsigned invert_cbcr:1; | ||
| 115 | 130 | ||
| 116 | /* IO register 0x06 */ | 131 | /* IO register 0x06 */ |
| 117 | unsigned inv_vs_pol:1; | 132 | unsigned inv_vs_pol:1; |
| 118 | unsigned inv_hs_pol:1; | 133 | unsigned inv_hs_pol:1; |
| 134 | unsigned inv_llc_pol:1; | ||
| 119 | 135 | ||
| 120 | /* IO register 0x14 */ | 136 | /* IO register 0x14 */ |
| 121 | enum adv7604_drive_strength dr_str_data; | 137 | enum adv7604_drive_strength dr_str_data; |
| @@ -129,34 +145,22 @@ struct adv7604_platform_data { | |||
| 129 | unsigned hdmi_free_run_mode; | 145 | unsigned hdmi_free_run_mode; |
| 130 | 146 | ||
| 131 | /* i2c addresses: 0 == use default */ | 147 | /* i2c addresses: 0 == use default */ |
| 132 | u8 i2c_avlink; | 148 | u8 i2c_addresses[ADV7604_PAGE_MAX]; |
| 133 | u8 i2c_cec; | ||
| 134 | u8 i2c_infoframe; | ||
| 135 | u8 i2c_esdp; | ||
| 136 | u8 i2c_dpp; | ||
| 137 | u8 i2c_afe; | ||
| 138 | u8 i2c_repeater; | ||
| 139 | u8 i2c_edid; | ||
| 140 | u8 i2c_hdmi; | ||
| 141 | u8 i2c_test; | ||
| 142 | u8 i2c_cp; | ||
| 143 | u8 i2c_vdp; | ||
| 144 | }; | 149 | }; |
| 145 | 150 | ||
| 146 | enum adv7604_input_port { | 151 | enum adv7604_pad { |
| 147 | ADV7604_INPUT_HDMI_PORT_A, | 152 | ADV7604_PAD_HDMI_PORT_A = 0, |
| 148 | ADV7604_INPUT_HDMI_PORT_B, | 153 | ADV7604_PAD_HDMI_PORT_B = 1, |
| 149 | ADV7604_INPUT_HDMI_PORT_C, | 154 | ADV7604_PAD_HDMI_PORT_C = 2, |
| 150 | ADV7604_INPUT_HDMI_PORT_D, | 155 | ADV7604_PAD_HDMI_PORT_D = 3, |
| 151 | ADV7604_INPUT_VGA_RGB, | 156 | ADV7604_PAD_VGA_RGB = 4, |
| 152 | ADV7604_INPUT_VGA_COMP, | 157 | ADV7604_PAD_VGA_COMP = 5, |
| 158 | /* The source pad is either 1 (ADV7611) or 6 (ADV7604) */ | ||
| 159 | ADV7604_PAD_SOURCE = 6, | ||
| 160 | ADV7611_PAD_SOURCE = 1, | ||
| 161 | ADV7604_PAD_MAX = 7, | ||
| 153 | }; | 162 | }; |
| 154 | 163 | ||
| 155 | #define ADV7604_EDID_PORT_A 0 | ||
| 156 | #define ADV7604_EDID_PORT_B 1 | ||
| 157 | #define ADV7604_EDID_PORT_C 2 | ||
| 158 | #define ADV7604_EDID_PORT_D 3 | ||
| 159 | |||
| 160 | #define V4L2_CID_ADV_RX_ANALOG_SAMPLING_PHASE (V4L2_CID_DV_CLASS_BASE + 0x1000) | 164 | #define V4L2_CID_ADV_RX_ANALOG_SAMPLING_PHASE (V4L2_CID_DV_CLASS_BASE + 0x1000) |
| 161 | #define V4L2_CID_ADV_RX_FREE_RUN_COLOR_MANUAL (V4L2_CID_DV_CLASS_BASE + 0x1001) | 165 | #define V4L2_CID_ADV_RX_FREE_RUN_COLOR_MANUAL (V4L2_CID_DV_CLASS_BASE + 0x1001) |
| 162 | #define V4L2_CID_ADV_RX_FREE_RUN_COLOR (V4L2_CID_DV_CLASS_BASE + 0x1002) | 166 | #define V4L2_CID_ADV_RX_FREE_RUN_COLOR (V4L2_CID_DV_CLASS_BASE + 0x1002) |
diff --git a/include/media/davinci/vpbe_display.h b/include/media/davinci/vpbe_display.h index 8dffffedbb59..637749a91432 100644 --- a/include/media/davinci/vpbe_display.h +++ b/include/media/davinci/vpbe_display.h | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | /* Header files */ | 16 | /* Header files */ |
| 17 | #include <linux/videodev2.h> | 17 | #include <linux/videodev2.h> |
| 18 | #include <media/v4l2-common.h> | 18 | #include <media/v4l2-common.h> |
| 19 | #include <media/v4l2-fh.h> | ||
| 19 | #include <media/videobuf2-dma-contig.h> | 20 | #include <media/videobuf2-dma-contig.h> |
| 20 | #include <media/davinci/vpbe_types.h> | 21 | #include <media/davinci/vpbe_types.h> |
| 21 | #include <media/davinci/vpbe_osd.h> | 22 | #include <media/davinci/vpbe_osd.h> |
| @@ -94,8 +95,6 @@ struct vpbe_layer { | |||
| 94 | * has selected | 95 | * has selected |
| 95 | */ | 96 | */ |
| 96 | enum v4l2_memory memory; | 97 | enum v4l2_memory memory; |
| 97 | /* Used to keep track of state of the priority */ | ||
| 98 | struct v4l2_prio_state prio; | ||
| 99 | /* Used to store pixel format */ | 98 | /* Used to store pixel format */ |
| 100 | struct v4l2_pix_format pix_fmt; | 99 | struct v4l2_pix_format pix_fmt; |
| 101 | enum v4l2_field buf_field; | 100 | enum v4l2_field buf_field; |
| @@ -134,14 +133,13 @@ struct vpbe_display { | |||
| 134 | 133 | ||
| 135 | /* File handle structure */ | 134 | /* File handle structure */ |
| 136 | struct vpbe_fh { | 135 | struct vpbe_fh { |
| 136 | struct v4l2_fh fh; | ||
| 137 | /* vpbe device structure */ | 137 | /* vpbe device structure */ |
| 138 | struct vpbe_display *disp_dev; | 138 | struct vpbe_display *disp_dev; |
| 139 | /* pointer to layer object for opened device */ | 139 | /* pointer to layer object for opened device */ |
| 140 | struct vpbe_layer *layer; | 140 | struct vpbe_layer *layer; |
| 141 | /* Indicates whether this file handle is doing IO */ | 141 | /* Indicates whether this file handle is doing IO */ |
| 142 | unsigned char io_allowed; | 142 | unsigned char io_allowed; |
| 143 | /* Used to keep track priority of this instance */ | ||
| 144 | enum v4l2_priority prio; | ||
| 145 | }; | 143 | }; |
| 146 | 144 | ||
| 147 | struct buf_config_params { | 145 | struct buf_config_params { |
diff --git a/include/media/davinci/vpfe_capture.h b/include/media/davinci/vpfe_capture.h index cc973ed845a7..288772e6900a 100644 --- a/include/media/davinci/vpfe_capture.h +++ b/include/media/davinci/vpfe_capture.h | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include <linux/videodev2.h> | 26 | #include <linux/videodev2.h> |
| 27 | #include <linux/clk.h> | 27 | #include <linux/clk.h> |
| 28 | #include <linux/i2c.h> | 28 | #include <linux/i2c.h> |
| 29 | #include <media/v4l2-fh.h> | ||
| 29 | #include <media/v4l2-ioctl.h> | 30 | #include <media/v4l2-ioctl.h> |
| 30 | #include <media/v4l2-device.h> | 31 | #include <media/v4l2-device.h> |
| 31 | #include <media/videobuf-dma-contig.h> | 32 | #include <media/videobuf-dma-contig.h> |
| @@ -110,8 +111,6 @@ struct vpfe_device { | |||
| 110 | struct v4l2_device v4l2_dev; | 111 | struct v4l2_device v4l2_dev; |
| 111 | /* parent device */ | 112 | /* parent device */ |
| 112 | struct device *pdev; | 113 | struct device *pdev; |
| 113 | /* Used to keep track of state of the priority */ | ||
| 114 | struct v4l2_prio_state prio; | ||
| 115 | /* number of open instances of the channel */ | 114 | /* number of open instances of the channel */ |
| 116 | u32 usrs; | 115 | u32 usrs; |
| 117 | /* Indicates id of the field which is being displayed */ | 116 | /* Indicates id of the field which is being displayed */ |
| @@ -174,11 +173,10 @@ struct vpfe_device { | |||
| 174 | 173 | ||
| 175 | /* File handle structure */ | 174 | /* File handle structure */ |
| 176 | struct vpfe_fh { | 175 | struct vpfe_fh { |
| 176 | struct v4l2_fh fh; | ||
| 177 | struct vpfe_device *vpfe_dev; | 177 | struct vpfe_device *vpfe_dev; |
| 178 | /* Indicates whether this file handle is doing IO */ | 178 | /* Indicates whether this file handle is doing IO */ |
| 179 | u8 io_allowed; | 179 | u8 io_allowed; |
| 180 | /* Used to keep track priority of this instance */ | ||
| 181 | enum v4l2_priority prio; | ||
| 182 | }; | 180 | }; |
| 183 | 181 | ||
| 184 | struct vpfe_config_params { | 182 | struct vpfe_config_params { |
diff --git a/include/media/s5p_fimc.h b/include/media/exynos-fimc.h index b975c285c8a9..aa44660e2041 100644 --- a/include/media/s5p_fimc.h +++ b/include/media/exynos-fimc.h | |||
| @@ -61,41 +61,20 @@ enum fimc_bus_type { | |||
| 61 | #define GRP_ID_FLITE (1 << 13) | 61 | #define GRP_ID_FLITE (1 << 13) |
| 62 | #define GRP_ID_FIMC_IS (1 << 14) | 62 | #define GRP_ID_FIMC_IS (1 << 14) |
| 63 | 63 | ||
| 64 | struct i2c_board_info; | ||
| 65 | |||
| 66 | /** | 64 | /** |
| 67 | * struct fimc_source_info - video source description required for the host | 65 | * struct fimc_source_info - video source description required for the host |
| 68 | * interface configuration | 66 | * interface configuration |
| 69 | * | 67 | * |
| 70 | * @board_info: pointer to I2C subdevice's board info | ||
| 71 | * @clk_frequency: frequency of the clock the host interface provides to sensor | ||
| 72 | * @fimc_bus_type: FIMC camera input type | 68 | * @fimc_bus_type: FIMC camera input type |
| 73 | * @sensor_bus_type: image sensor bus type, MIPI, ITU-R BT.601 etc. | 69 | * @sensor_bus_type: image sensor bus type, MIPI, ITU-R BT.601 etc. |
| 74 | * @flags: the parallel sensor bus flags defining signals polarity (V4L2_MBUS_*) | 70 | * @flags: the parallel sensor bus flags defining signals polarity (V4L2_MBUS_*) |
| 75 | * @i2c_bus_num: i2c control bus id the sensor is attached to | ||
| 76 | * @mux_id: FIMC camera interface multiplexer index (separate for MIPI and ITU) | 71 | * @mux_id: FIMC camera interface multiplexer index (separate for MIPI and ITU) |
| 77 | * @clk_id: index of the SoC peripheral clock for sensors | ||
| 78 | */ | 72 | */ |
| 79 | struct fimc_source_info { | 73 | struct fimc_source_info { |
| 80 | struct i2c_board_info *board_info; | ||
| 81 | unsigned long clk_frequency; | ||
| 82 | enum fimc_bus_type fimc_bus_type; | 74 | enum fimc_bus_type fimc_bus_type; |
| 83 | enum fimc_bus_type sensor_bus_type; | 75 | enum fimc_bus_type sensor_bus_type; |
| 84 | u16 flags; | 76 | u16 flags; |
| 85 | u16 i2c_bus_num; | ||
| 86 | u16 mux_id; | 77 | u16 mux_id; |
| 87 | u8 clk_id; | ||
| 88 | }; | ||
| 89 | |||
| 90 | /** | ||
| 91 | * struct s5p_platform_fimc - camera host interface platform data | ||
| 92 | * | ||
| 93 | * @source_info: properties of an image source for the host interface setup | ||
| 94 | * @num_clients: the number of attached image sources | ||
| 95 | */ | ||
| 96 | struct s5p_platform_fimc { | ||
| 97 | struct fimc_source_info *source_info; | ||
| 98 | int num_clients; | ||
| 99 | }; | 78 | }; |
| 100 | 79 | ||
| 101 | /* | 80 | /* |
diff --git a/include/media/media-device.h b/include/media/media-device.h index 12155a9596c4..6e6db78f1ee2 100644 --- a/include/media/media-device.h +++ b/include/media/media-device.h | |||
| @@ -87,7 +87,9 @@ struct media_device { | |||
| 87 | /* media_devnode to media_device */ | 87 | /* media_devnode to media_device */ |
| 88 | #define to_media_device(node) container_of(node, struct media_device, devnode) | 88 | #define to_media_device(node) container_of(node, struct media_device, devnode) |
| 89 | 89 | ||
| 90 | int __must_check media_device_register(struct media_device *mdev); | 90 | int __must_check __media_device_register(struct media_device *mdev, |
| 91 | struct module *owner); | ||
| 92 | #define media_device_register(mdev) __media_device_register(mdev, THIS_MODULE) | ||
| 91 | void media_device_unregister(struct media_device *mdev); | 93 | void media_device_unregister(struct media_device *mdev); |
| 92 | 94 | ||
| 93 | int __must_check media_device_register_entity(struct media_device *mdev, | 95 | int __must_check media_device_register_entity(struct media_device *mdev, |
diff --git a/include/media/media-devnode.h b/include/media/media-devnode.h index 3446af279fca..0dc7060f9625 100644 --- a/include/media/media-devnode.h +++ b/include/media/media-devnode.h | |||
| @@ -82,7 +82,8 @@ struct media_devnode { | |||
| 82 | /* dev to media_devnode */ | 82 | /* dev to media_devnode */ |
| 83 | #define to_media_devnode(cd) container_of(cd, struct media_devnode, dev) | 83 | #define to_media_devnode(cd) container_of(cd, struct media_devnode, dev) |
| 84 | 84 | ||
| 85 | int __must_check media_devnode_register(struct media_devnode *mdev); | 85 | int __must_check media_devnode_register(struct media_devnode *mdev, |
| 86 | struct module *owner); | ||
| 86 | void media_devnode_unregister(struct media_devnode *mdev); | 87 | void media_devnode_unregister(struct media_devnode *mdev); |
| 87 | 88 | ||
| 88 | static inline struct media_devnode *media_devnode_data(struct file *filp) | 89 | static inline struct media_devnode *media_devnode_data(struct file *filp) |
diff --git a/include/media/v4l2-device.h b/include/media/v4l2-device.h index c9b1593923f6..ffb69da3ce9e 100644 --- a/include/media/v4l2-device.h +++ b/include/media/v4l2-device.h | |||
| @@ -120,6 +120,14 @@ void v4l2_device_unregister_subdev(struct v4l2_subdev *sd); | |||
| 120 | int __must_check | 120 | int __must_check |
| 121 | v4l2_device_register_subdev_nodes(struct v4l2_device *v4l2_dev); | 121 | v4l2_device_register_subdev_nodes(struct v4l2_device *v4l2_dev); |
| 122 | 122 | ||
| 123 | /* Send a notification to v4l2_device. */ | ||
| 124 | static inline void v4l2_subdev_notify(struct v4l2_subdev *sd, | ||
| 125 | unsigned int notification, void *arg) | ||
| 126 | { | ||
| 127 | if (sd && sd->v4l2_dev && sd->v4l2_dev->notify) | ||
| 128 | sd->v4l2_dev->notify(sd, notification, arg); | ||
| 129 | } | ||
| 130 | |||
| 123 | /* Iterate over all subdevs. */ | 131 | /* Iterate over all subdevs. */ |
| 124 | #define v4l2_device_for_each_subdev(sd, v4l2_dev) \ | 132 | #define v4l2_device_for_each_subdev(sd, v4l2_dev) \ |
| 125 | list_for_each_entry(sd, &(v4l2_dev)->subdevs, list) | 133 | list_for_each_entry(sd, &(v4l2_dev)->subdevs, list) |
diff --git a/include/media/v4l2-event.h b/include/media/v4l2-event.h index be05d019de25..1ab9045e52e3 100644 --- a/include/media/v4l2-event.h +++ b/include/media/v4l2-event.h | |||
| @@ -132,4 +132,8 @@ int v4l2_event_unsubscribe(struct v4l2_fh *fh, | |||
| 132 | void v4l2_event_unsubscribe_all(struct v4l2_fh *fh); | 132 | void v4l2_event_unsubscribe_all(struct v4l2_fh *fh); |
| 133 | int v4l2_event_subdev_unsubscribe(struct v4l2_subdev *sd, struct v4l2_fh *fh, | 133 | int v4l2_event_subdev_unsubscribe(struct v4l2_subdev *sd, struct v4l2_fh *fh, |
| 134 | struct v4l2_event_subscription *sub); | 134 | struct v4l2_event_subscription *sub); |
| 135 | int v4l2_src_change_event_subscribe(struct v4l2_fh *fh, | ||
| 136 | const struct v4l2_event_subscription *sub); | ||
| 137 | int v4l2_src_change_event_subdev_subscribe(struct v4l2_subdev *sd, | ||
| 138 | struct v4l2_fh *fh, struct v4l2_event_subscription *sub); | ||
| 135 | #endif /* V4L2_EVENT_H */ | 139 | #endif /* V4L2_EVENT_H */ |
diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index 28f4d8c3cf7d..d7465725773d 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h | |||
| @@ -159,8 +159,6 @@ struct v4l2_subdev_core_ops { | |||
| 159 | int (*s_ext_ctrls)(struct v4l2_subdev *sd, struct v4l2_ext_controls *ctrls); | 159 | int (*s_ext_ctrls)(struct v4l2_subdev *sd, struct v4l2_ext_controls *ctrls); |
| 160 | int (*try_ext_ctrls)(struct v4l2_subdev *sd, struct v4l2_ext_controls *ctrls); | 160 | int (*try_ext_ctrls)(struct v4l2_subdev *sd, struct v4l2_ext_controls *ctrls); |
| 161 | int (*querymenu)(struct v4l2_subdev *sd, struct v4l2_querymenu *qm); | 161 | int (*querymenu)(struct v4l2_subdev *sd, struct v4l2_querymenu *qm); |
| 162 | int (*g_std)(struct v4l2_subdev *sd, v4l2_std_id *norm); | ||
| 163 | int (*s_std)(struct v4l2_subdev *sd, v4l2_std_id norm); | ||
| 164 | long (*ioctl)(struct v4l2_subdev *sd, unsigned int cmd, void *arg); | 162 | long (*ioctl)(struct v4l2_subdev *sd, unsigned int cmd, void *arg); |
| 165 | #ifdef CONFIG_COMPAT | 163 | #ifdef CONFIG_COMPAT |
| 166 | long (*compat_ioctl32)(struct v4l2_subdev *sd, unsigned int cmd, | 164 | long (*compat_ioctl32)(struct v4l2_subdev *sd, unsigned int cmd, |
| @@ -234,15 +232,18 @@ struct v4l2_subdev_audio_ops { | |||
| 234 | 232 | ||
| 235 | /* Indicates the @length field specifies maximum data length. */ | 233 | /* Indicates the @length field specifies maximum data length. */ |
| 236 | #define V4L2_MBUS_FRAME_DESC_FL_LEN_MAX (1U << 0) | 234 | #define V4L2_MBUS_FRAME_DESC_FL_LEN_MAX (1U << 0) |
| 237 | /* Indicates user defined data format, i.e. non standard frame format. */ | 235 | /* |
| 236 | * Indicates that the format does not have line offsets, i.e. the | ||
| 237 | * receiver should use 1D DMA. | ||
| 238 | */ | ||
| 238 | #define V4L2_MBUS_FRAME_DESC_FL_BLOB (1U << 1) | 239 | #define V4L2_MBUS_FRAME_DESC_FL_BLOB (1U << 1) |
| 239 | 240 | ||
| 240 | /** | 241 | /** |
| 241 | * struct v4l2_mbus_frame_desc_entry - media bus frame description structure | 242 | * struct v4l2_mbus_frame_desc_entry - media bus frame description structure |
| 242 | * @flags: V4L2_MBUS_FRAME_DESC_FL_* flags | 243 | * @flags: V4L2_MBUS_FRAME_DESC_FL_* flags |
| 243 | * @pixelcode: media bus pixel code, valid if FRAME_DESC_FL_BLOB is not set | 244 | * @pixelcode: media bus pixel code, valid if FRAME_DESC_FL_BLOB is not set |
| 244 | * @length: number of octets per frame, valid for compressed or unspecified | 245 | * @length: number of octets per frame, valid if V4L2_MBUS_FRAME_DESC_FL_BLOB |
| 245 | * formats | 246 | * is set |
| 246 | */ | 247 | */ |
| 247 | struct v4l2_mbus_frame_desc_entry { | 248 | struct v4l2_mbus_frame_desc_entry { |
| 248 | u16 flags; | 249 | u16 flags; |
| @@ -269,8 +270,11 @@ struct v4l2_mbus_frame_desc { | |||
| 269 | g_std_output: get current standard for video OUTPUT devices. This is ignored | 270 | g_std_output: get current standard for video OUTPUT devices. This is ignored |
| 270 | by video input devices. | 271 | by video input devices. |
| 271 | 272 | ||
| 272 | g_tvnorms_output: get v4l2_std_id with all standards supported by video | 273 | g_tvnorms: get v4l2_std_id with all standards supported by the video |
| 273 | OUTPUT device. This is ignored by video input devices. | 274 | CAPTURE device. This is ignored by video output devices. |
| 275 | |||
| 276 | g_tvnorms_output: get v4l2_std_id with all standards supported by the video | ||
| 277 | OUTPUT device. This is ignored by video capture devices. | ||
| 274 | 278 | ||
| 275 | s_crystal_freq: sets the frequency of the crystal used to generate the | 279 | s_crystal_freq: sets the frequency of the crystal used to generate the |
| 276 | clocks in Hz. An extra flags field allows device specific configuration | 280 | clocks in Hz. An extra flags field allows device specific configuration |
| @@ -310,9 +314,12 @@ struct v4l2_mbus_frame_desc { | |||
| 310 | struct v4l2_subdev_video_ops { | 314 | struct v4l2_subdev_video_ops { |
| 311 | int (*s_routing)(struct v4l2_subdev *sd, u32 input, u32 output, u32 config); | 315 | int (*s_routing)(struct v4l2_subdev *sd, u32 input, u32 output, u32 config); |
| 312 | int (*s_crystal_freq)(struct v4l2_subdev *sd, u32 freq, u32 flags); | 316 | int (*s_crystal_freq)(struct v4l2_subdev *sd, u32 freq, u32 flags); |
| 317 | int (*g_std)(struct v4l2_subdev *sd, v4l2_std_id *norm); | ||
| 318 | int (*s_std)(struct v4l2_subdev *sd, v4l2_std_id norm); | ||
| 313 | int (*s_std_output)(struct v4l2_subdev *sd, v4l2_std_id std); | 319 | int (*s_std_output)(struct v4l2_subdev *sd, v4l2_std_id std); |
| 314 | int (*g_std_output)(struct v4l2_subdev *sd, v4l2_std_id *std); | 320 | int (*g_std_output)(struct v4l2_subdev *sd, v4l2_std_id *std); |
| 315 | int (*querystd)(struct v4l2_subdev *sd, v4l2_std_id *std); | 321 | int (*querystd)(struct v4l2_subdev *sd, v4l2_std_id *std); |
| 322 | int (*g_tvnorms)(struct v4l2_subdev *sd, v4l2_std_id *std); | ||
| 316 | int (*g_tvnorms_output)(struct v4l2_subdev *sd, v4l2_std_id *std); | 323 | int (*g_tvnorms_output)(struct v4l2_subdev *sd, v4l2_std_id *std); |
| 317 | int (*g_input_status)(struct v4l2_subdev *sd, u32 *status); | 324 | int (*g_input_status)(struct v4l2_subdev *sd, u32 *status); |
| 318 | int (*s_stream)(struct v4l2_subdev *sd, int enable); | 325 | int (*s_stream)(struct v4l2_subdev *sd, int enable); |
| @@ -331,12 +338,8 @@ struct v4l2_subdev_video_ops { | |||
| 331 | struct v4l2_dv_timings *timings); | 338 | struct v4l2_dv_timings *timings); |
| 332 | int (*g_dv_timings)(struct v4l2_subdev *sd, | 339 | int (*g_dv_timings)(struct v4l2_subdev *sd, |
| 333 | struct v4l2_dv_timings *timings); | 340 | struct v4l2_dv_timings *timings); |
| 334 | int (*enum_dv_timings)(struct v4l2_subdev *sd, | ||
| 335 | struct v4l2_enum_dv_timings *timings); | ||
| 336 | int (*query_dv_timings)(struct v4l2_subdev *sd, | 341 | int (*query_dv_timings)(struct v4l2_subdev *sd, |
| 337 | struct v4l2_dv_timings *timings); | 342 | struct v4l2_dv_timings *timings); |
| 338 | int (*dv_timings_cap)(struct v4l2_subdev *sd, | ||
| 339 | struct v4l2_dv_timings_cap *cap); | ||
| 340 | int (*enum_mbus_fmt)(struct v4l2_subdev *sd, unsigned int index, | 343 | int (*enum_mbus_fmt)(struct v4l2_subdev *sd, unsigned int index, |
| 341 | enum v4l2_mbus_pixelcode *code); | 344 | enum v4l2_mbus_pixelcode *code); |
| 342 | int (*enum_mbus_fsizes)(struct v4l2_subdev *sd, | 345 | int (*enum_mbus_fsizes)(struct v4l2_subdev *sd, |
| @@ -510,6 +513,10 @@ struct v4l2_subdev_pad_ops { | |||
| 510 | struct v4l2_subdev_selection *sel); | 513 | struct v4l2_subdev_selection *sel); |
| 511 | int (*get_edid)(struct v4l2_subdev *sd, struct v4l2_edid *edid); | 514 | int (*get_edid)(struct v4l2_subdev *sd, struct v4l2_edid *edid); |
| 512 | int (*set_edid)(struct v4l2_subdev *sd, struct v4l2_edid *edid); | 515 | int (*set_edid)(struct v4l2_subdev *sd, struct v4l2_edid *edid); |
| 516 | int (*dv_timings_cap)(struct v4l2_subdev *sd, | ||
| 517 | struct v4l2_dv_timings_cap *cap); | ||
| 518 | int (*enum_dv_timings)(struct v4l2_subdev *sd, | ||
| 519 | struct v4l2_enum_dv_timings *timings); | ||
| 513 | #ifdef CONFIG_MEDIA_CONTROLLER | 520 | #ifdef CONFIG_MEDIA_CONTROLLER |
| 514 | int (*link_validate)(struct v4l2_subdev *sd, struct media_link *link, | 521 | int (*link_validate)(struct v4l2_subdev *sd, struct media_link *link, |
| 515 | struct v4l2_subdev_format *source_fmt, | 522 | struct v4l2_subdev_format *source_fmt, |
| @@ -584,6 +591,7 @@ struct v4l2_subdev { | |||
| 584 | #endif | 591 | #endif |
| 585 | struct list_head list; | 592 | struct list_head list; |
| 586 | struct module *owner; | 593 | struct module *owner; |
| 594 | bool owner_v4l2_dev; | ||
| 587 | u32 flags; | 595 | u32 flags; |
| 588 | struct v4l2_device *v4l2_dev; | 596 | struct v4l2_device *v4l2_dev; |
| 589 | const struct v4l2_subdev_ops *ops; | 597 | const struct v4l2_subdev_ops *ops; |
| @@ -685,17 +693,12 @@ void v4l2_subdev_init(struct v4l2_subdev *sd, | |||
| 685 | /* Call an ops of a v4l2_subdev, doing the right checks against | 693 | /* Call an ops of a v4l2_subdev, doing the right checks against |
| 686 | NULL pointers. | 694 | NULL pointers. |
| 687 | 695 | ||
| 688 | Example: err = v4l2_subdev_call(sd, core, s_std, norm); | 696 | Example: err = v4l2_subdev_call(sd, video, s_std, norm); |
| 689 | */ | 697 | */ |
| 690 | #define v4l2_subdev_call(sd, o, f, args...) \ | 698 | #define v4l2_subdev_call(sd, o, f, args...) \ |
| 691 | (!(sd) ? -ENODEV : (((sd)->ops->o && (sd)->ops->o->f) ? \ | 699 | (!(sd) ? -ENODEV : (((sd)->ops->o && (sd)->ops->o->f) ? \ |
| 692 | (sd)->ops->o->f((sd) , ##args) : -ENOIOCTLCMD)) | 700 | (sd)->ops->o->f((sd) , ##args) : -ENOIOCTLCMD)) |
| 693 | 701 | ||
| 694 | /* Send a notification to v4l2_device. */ | ||
| 695 | #define v4l2_subdev_notify(sd, notification, arg) \ | ||
| 696 | ((!(sd) || !(sd)->v4l2_dev || !(sd)->v4l2_dev->notify) ? -ENODEV : \ | ||
| 697 | (sd)->v4l2_dev->notify((sd), (notification), (arg))) | ||
| 698 | |||
| 699 | #define v4l2_subdev_has_op(sd, o, f) \ | 702 | #define v4l2_subdev_has_op(sd, o, f) \ |
| 700 | ((sd)->ops->o && (sd)->ops->o->f) | 703 | ((sd)->ops->o && (sd)->ops->o->f) |
| 701 | 704 | ||
diff --git a/include/media/videobuf2-core.h b/include/media/videobuf2-core.h index af4621109726..bca25dc53f9d 100644 --- a/include/media/videobuf2-core.h +++ b/include/media/videobuf2-core.h | |||
| @@ -20,6 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | struct vb2_alloc_ctx; | 21 | struct vb2_alloc_ctx; |
| 22 | struct vb2_fileio_data; | 22 | struct vb2_fileio_data; |
| 23 | struct vb2_threadio_data; | ||
| 23 | 24 | ||
| 24 | /** | 25 | /** |
| 25 | * struct vb2_mem_ops - memory handling/memory allocator operations | 26 | * struct vb2_mem_ops - memory handling/memory allocator operations |
| @@ -323,7 +324,7 @@ struct vb2_ops { | |||
| 323 | void (*buf_cleanup)(struct vb2_buffer *vb); | 324 | void (*buf_cleanup)(struct vb2_buffer *vb); |
| 324 | 325 | ||
| 325 | int (*start_streaming)(struct vb2_queue *q, unsigned int count); | 326 | int (*start_streaming)(struct vb2_queue *q, unsigned int count); |
| 326 | int (*stop_streaming)(struct vb2_queue *q); | 327 | void (*stop_streaming)(struct vb2_queue *q); |
| 327 | 328 | ||
| 328 | void (*buf_queue)(struct vb2_buffer *vb); | 329 | void (*buf_queue)(struct vb2_buffer *vb); |
| 329 | }; | 330 | }; |
| @@ -375,6 +376,7 @@ struct v4l2_fh; | |||
| 375 | * @start_streaming_called: start_streaming() was called successfully and we | 376 | * @start_streaming_called: start_streaming() was called successfully and we |
| 376 | * started streaming. | 377 | * started streaming. |
| 377 | * @fileio: file io emulator internal data, used only if emulator is active | 378 | * @fileio: file io emulator internal data, used only if emulator is active |
| 379 | * @threadio: thread io internal data, used only if thread is active | ||
| 378 | */ | 380 | */ |
| 379 | struct vb2_queue { | 381 | struct vb2_queue { |
| 380 | enum v4l2_buf_type type; | 382 | enum v4l2_buf_type type; |
| @@ -411,6 +413,7 @@ struct vb2_queue { | |||
| 411 | unsigned int start_streaming_called:1; | 413 | unsigned int start_streaming_called:1; |
| 412 | 414 | ||
| 413 | struct vb2_fileio_data *fileio; | 415 | struct vb2_fileio_data *fileio; |
| 416 | struct vb2_threadio_data *threadio; | ||
| 414 | 417 | ||
| 415 | #ifdef CONFIG_VIDEO_ADV_DEBUG | 418 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 416 | /* | 419 | /* |
| @@ -461,6 +464,35 @@ size_t vb2_read(struct vb2_queue *q, char __user *data, size_t count, | |||
| 461 | loff_t *ppos, int nonblock); | 464 | loff_t *ppos, int nonblock); |
| 462 | size_t vb2_write(struct vb2_queue *q, const char __user *data, size_t count, | 465 | size_t vb2_write(struct vb2_queue *q, const char __user *data, size_t count, |
| 463 | loff_t *ppos, int nonblock); | 466 | loff_t *ppos, int nonblock); |
| 467 | /** | ||
| 468 | * vb2_thread_fnc - callback function for use with vb2_thread | ||
| 469 | * | ||
| 470 | * This is called whenever a buffer is dequeued in the thread. | ||
| 471 | */ | ||
| 472 | typedef int (*vb2_thread_fnc)(struct vb2_buffer *vb, void *priv); | ||
| 473 | |||
| 474 | /** | ||
| 475 | * vb2_thread_start() - start a thread for the given queue. | ||
| 476 | * @q: videobuf queue | ||
| 477 | * @fnc: callback function | ||
| 478 | * @priv: priv pointer passed to the callback function | ||
| 479 | * @thread_name:the name of the thread. This will be prefixed with "vb2-". | ||
| 480 | * | ||
| 481 | * This starts a thread that will queue and dequeue until an error occurs | ||
| 482 | * or @vb2_thread_stop is called. | ||
| 483 | * | ||
| 484 | * This function should not be used for anything else but the videobuf2-dvb | ||
| 485 | * support. If you think you have another good use-case for this, then please | ||
| 486 | * contact the linux-media mailinglist first. | ||
| 487 | */ | ||
| 488 | int vb2_thread_start(struct vb2_queue *q, vb2_thread_fnc fnc, void *priv, | ||
| 489 | const char *thread_name); | ||
| 490 | |||
| 491 | /** | ||
| 492 | * vb2_thread_stop() - stop the thread for the given queue. | ||
| 493 | * @q: videobuf queue | ||
| 494 | */ | ||
| 495 | int vb2_thread_stop(struct vb2_queue *q); | ||
| 464 | 496 | ||
| 465 | /** | 497 | /** |
| 466 | * vb2_is_streaming() - return streaming status of the queue | 498 | * vb2_is_streaming() - return streaming status of the queue |
| @@ -472,6 +504,23 @@ static inline bool vb2_is_streaming(struct vb2_queue *q) | |||
| 472 | } | 504 | } |
| 473 | 505 | ||
| 474 | /** | 506 | /** |
| 507 | * vb2_fileio_is_active() - return true if fileio is active. | ||
| 508 | * @q: videobuf queue | ||
| 509 | * | ||
| 510 | * This returns true if read() or write() is used to stream the data | ||
| 511 | * as opposed to stream I/O. This is almost never an important distinction, | ||
| 512 | * except in rare cases. One such case is that using read() or write() to | ||
| 513 | * stream a format using V4L2_FIELD_ALTERNATE is not allowed since there | ||
| 514 | * is no way you can pass the field information of each buffer to/from | ||
| 515 | * userspace. A driver that supports this field format should check for | ||
| 516 | * this in the queue_setup op and reject it if this function returns true. | ||
| 517 | */ | ||
| 518 | static inline bool vb2_fileio_is_active(struct vb2_queue *q) | ||
| 519 | { | ||
| 520 | return q->fileio; | ||
| 521 | } | ||
| 522 | |||
| 523 | /** | ||
| 475 | * vb2_is_busy() - return busy status of the queue | 524 | * vb2_is_busy() - return busy status of the queue |
| 476 | * @q: videobuf queue | 525 | * @q: videobuf queue |
| 477 | * | 526 | * |
diff --git a/include/media/videobuf2-dvb.h b/include/media/videobuf2-dvb.h new file mode 100644 index 000000000000..8f61456f1394 --- /dev/null +++ b/include/media/videobuf2-dvb.h | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | #ifndef _VIDEOBUF2_DVB_H_ | ||
| 2 | #define _VIDEOBUF2_DVB_H_ | ||
| 3 | |||
| 4 | #include <dvbdev.h> | ||
| 5 | #include <dmxdev.h> | ||
| 6 | #include <dvb_demux.h> | ||
| 7 | #include <dvb_net.h> | ||
| 8 | #include <dvb_frontend.h> | ||
| 9 | #include <media/videobuf2-core.h> | ||
| 10 | |||
| 11 | struct vb2_dvb { | ||
| 12 | /* filling that the job of the driver */ | ||
| 13 | char *name; | ||
| 14 | struct dvb_frontend *frontend; | ||
| 15 | struct vb2_queue dvbq; | ||
| 16 | |||
| 17 | /* video-buf-dvb state info */ | ||
| 18 | struct mutex lock; | ||
| 19 | int nfeeds; | ||
| 20 | |||
| 21 | /* vb2_dvb_(un)register manages this */ | ||
| 22 | struct dvb_demux demux; | ||
| 23 | struct dmxdev dmxdev; | ||
| 24 | struct dmx_frontend fe_hw; | ||
| 25 | struct dmx_frontend fe_mem; | ||
| 26 | struct dvb_net net; | ||
| 27 | }; | ||
| 28 | |||
| 29 | struct vb2_dvb_frontend { | ||
| 30 | struct list_head felist; | ||
| 31 | int id; | ||
| 32 | struct vb2_dvb dvb; | ||
| 33 | }; | ||
| 34 | |||
| 35 | struct vb2_dvb_frontends { | ||
| 36 | struct list_head felist; | ||
| 37 | struct mutex lock; | ||
| 38 | struct dvb_adapter adapter; | ||
| 39 | int active_fe_id; /* Indicates which frontend in the felist is in use */ | ||
| 40 | int gate; /* Frontend with gate control 0=!MFE,1=fe0,2=fe1 etc */ | ||
| 41 | }; | ||
| 42 | |||
| 43 | int vb2_dvb_register_bus(struct vb2_dvb_frontends *f, | ||
| 44 | struct module *module, | ||
| 45 | void *adapter_priv, | ||
| 46 | struct device *device, | ||
| 47 | short *adapter_nr, | ||
| 48 | int mfe_shared); | ||
| 49 | |||
| 50 | void vb2_dvb_unregister_bus(struct vb2_dvb_frontends *f); | ||
| 51 | |||
| 52 | struct vb2_dvb_frontend *vb2_dvb_alloc_frontend(struct vb2_dvb_frontends *f, int id); | ||
| 53 | void vb2_dvb_dealloc_frontends(struct vb2_dvb_frontends *f); | ||
| 54 | |||
| 55 | struct vb2_dvb_frontend *vb2_dvb_get_frontend(struct vb2_dvb_frontends *f, int id); | ||
| 56 | int vb2_dvb_find_frontend(struct vb2_dvb_frontends *f, struct dvb_frontend *p); | ||
| 57 | |||
| 58 | #endif /* _VIDEOBUF2_DVB_H_ */ | ||
diff --git a/include/net/inetpeer.h b/include/net/inetpeer.h index 6efe73c79c52..058271bde27a 100644 --- a/include/net/inetpeer.h +++ b/include/net/inetpeer.h | |||
| @@ -177,16 +177,9 @@ static inline void inet_peer_refcheck(const struct inet_peer *p) | |||
| 177 | /* can be called with or without local BH being disabled */ | 177 | /* can be called with or without local BH being disabled */ |
| 178 | static inline int inet_getid(struct inet_peer *p, int more) | 178 | static inline int inet_getid(struct inet_peer *p, int more) |
| 179 | { | 179 | { |
| 180 | int old, new; | ||
| 181 | more++; | 180 | more++; |
| 182 | inet_peer_refcheck(p); | 181 | inet_peer_refcheck(p); |
| 183 | do { | 182 | return atomic_add_return(more, &p->ip_id_count) - more; |
| 184 | old = atomic_read(&p->ip_id_count); | ||
| 185 | new = old + more; | ||
| 186 | if (!new) | ||
| 187 | new = 1; | ||
| 188 | } while (atomic_cmpxchg(&p->ip_id_count, old, new) != old); | ||
| 189 | return new; | ||
| 190 | } | 183 | } |
| 191 | 184 | ||
| 192 | #endif /* _NET_INETPEER_H */ | 185 | #endif /* _NET_INETPEER_H */ |
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index acd825182977..7ccef342f724 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h | |||
| @@ -80,8 +80,8 @@ enum rdma_transport_type { | |||
| 80 | RDMA_TRANSPORT_USNIC_UDP | 80 | RDMA_TRANSPORT_USNIC_UDP |
| 81 | }; | 81 | }; |
| 82 | 82 | ||
| 83 | enum rdma_transport_type | 83 | __attribute_const__ enum rdma_transport_type |
| 84 | rdma_node_get_transport(enum rdma_node_type node_type) __attribute_const__; | 84 | rdma_node_get_transport(enum rdma_node_type node_type); |
| 85 | 85 | ||
| 86 | enum rdma_link_layer { | 86 | enum rdma_link_layer { |
| 87 | IB_LINK_LAYER_UNSPECIFIED, | 87 | IB_LINK_LAYER_UNSPECIFIED, |
| @@ -466,14 +466,14 @@ enum ib_rate { | |||
| 466 | * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec. | 466 | * converted to 2, since 5 Gbit/sec is 2 * 2.5 Gbit/sec. |
| 467 | * @rate: rate to convert. | 467 | * @rate: rate to convert. |
| 468 | */ | 468 | */ |
| 469 | int ib_rate_to_mult(enum ib_rate rate) __attribute_const__; | 469 | __attribute_const__ int ib_rate_to_mult(enum ib_rate rate); |
| 470 | 470 | ||
| 471 | /** | 471 | /** |
| 472 | * ib_rate_to_mbps - Convert the IB rate enum to Mbps. | 472 | * ib_rate_to_mbps - Convert the IB rate enum to Mbps. |
| 473 | * For example, IB_RATE_2_5_GBPS will be converted to 2500. | 473 | * For example, IB_RATE_2_5_GBPS will be converted to 2500. |
| 474 | * @rate: rate to convert. | 474 | * @rate: rate to convert. |
| 475 | */ | 475 | */ |
| 476 | int ib_rate_to_mbps(enum ib_rate rate) __attribute_const__; | 476 | __attribute_const__ int ib_rate_to_mbps(enum ib_rate rate); |
| 477 | 477 | ||
| 478 | enum ib_mr_create_flags { | 478 | enum ib_mr_create_flags { |
| 479 | IB_MR_SIGNATURE_EN = 1, | 479 | IB_MR_SIGNATURE_EN = 1, |
| @@ -604,7 +604,7 @@ struct ib_mr_status { | |||
| 604 | * enum. | 604 | * enum. |
| 605 | * @mult: multiple to convert. | 605 | * @mult: multiple to convert. |
| 606 | */ | 606 | */ |
| 607 | enum ib_rate mult_to_ib_rate(int mult) __attribute_const__; | 607 | __attribute_const__ enum ib_rate mult_to_ib_rate(int mult); |
| 608 | 608 | ||
| 609 | struct ib_ah_attr { | 609 | struct ib_ah_attr { |
| 610 | struct ib_global_route grh; | 610 | struct ib_global_route grh; |
| @@ -783,6 +783,7 @@ enum ib_qp_create_flags { | |||
| 783 | IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 1 << 1, | 783 | IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 1 << 1, |
| 784 | IB_QP_CREATE_NETIF_QP = 1 << 5, | 784 | IB_QP_CREATE_NETIF_QP = 1 << 5, |
| 785 | IB_QP_CREATE_SIGNATURE_EN = 1 << 6, | 785 | IB_QP_CREATE_SIGNATURE_EN = 1 << 6, |
| 786 | IB_QP_CREATE_USE_GFP_NOIO = 1 << 7, | ||
| 786 | /* reserve bits 26-31 for low level drivers' internal use */ | 787 | /* reserve bits 26-31 for low level drivers' internal use */ |
| 787 | IB_QP_CREATE_RESERVED_START = 1 << 26, | 788 | IB_QP_CREATE_RESERVED_START = 1 << 26, |
| 788 | IB_QP_CREATE_RESERVED_END = 1 << 31, | 789 | IB_QP_CREATE_RESERVED_END = 1 << 31, |
diff --git a/include/rdma/iw_portmap.h b/include/rdma/iw_portmap.h new file mode 100644 index 000000000000..928b2775e992 --- /dev/null +++ b/include/rdma/iw_portmap.h | |||
| @@ -0,0 +1,199 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2014 Intel Corporation. All rights reserved. | ||
| 3 | * Copyright (c) 2014 Chelsio, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This software is available to you under a choice of one of two | ||
| 6 | * licenses. You may choose to be licensed under the terms of the GNU | ||
| 7 | * General Public License (GPL) Version 2, available from the file | ||
| 8 | * COPYING in the main directory of this source tree, or the | ||
| 9 | * OpenIB.org BSD license below: | ||
| 10 | * | ||
| 11 | * Redistribution and use in source and binary forms, with or | ||
| 12 | * without modification, are permitted provided that the following | ||
| 13 | * conditions are met: | ||
| 14 | * | ||
| 15 | * - Redistributions of source code must retain the above | ||
| 16 | * copyright notice, this list of conditions and the following | ||
| 17 | * disclaimer. | ||
| 18 | * | ||
| 19 | * - Redistributions in binary form must reproduce the above | ||
| 20 | * copyright notice, this list of conditions and the following | ||
| 21 | * disclaimer in the documentation and/or other materials | ||
| 22 | * provided with the distribution. | ||
| 23 | * | ||
| 24 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
| 25 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
| 26 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
| 27 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | ||
| 28 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | ||
| 29 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
| 30 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| 31 | * SOFTWARE. | ||
| 32 | */ | ||
| 33 | #ifndef _IW_PORTMAP_H | ||
| 34 | #define _IW_PORTMAP_H | ||
| 35 | |||
| 36 | #define IWPM_ULIBNAME_SIZE 32 | ||
| 37 | #define IWPM_DEVNAME_SIZE 32 | ||
| 38 | #define IWPM_IFNAME_SIZE 16 | ||
| 39 | #define IWPM_IPADDR_SIZE 16 | ||
| 40 | |||
| 41 | enum { | ||
| 42 | IWPM_INVALID_NLMSG_ERR = 10, | ||
| 43 | IWPM_CREATE_MAPPING_ERR, | ||
| 44 | IWPM_DUPLICATE_MAPPING_ERR, | ||
| 45 | IWPM_UNKNOWN_MAPPING_ERR, | ||
| 46 | IWPM_CLIENT_DEV_INFO_ERR, | ||
| 47 | IWPM_USER_LIB_INFO_ERR, | ||
| 48 | IWPM_REMOTE_QUERY_REJECT | ||
| 49 | }; | ||
| 50 | |||
| 51 | struct iwpm_dev_data { | ||
| 52 | char dev_name[IWPM_DEVNAME_SIZE]; | ||
| 53 | char if_name[IWPM_IFNAME_SIZE]; | ||
| 54 | }; | ||
| 55 | |||
| 56 | struct iwpm_sa_data { | ||
| 57 | struct sockaddr_storage loc_addr; | ||
| 58 | struct sockaddr_storage mapped_loc_addr; | ||
| 59 | struct sockaddr_storage rem_addr; | ||
| 60 | struct sockaddr_storage mapped_rem_addr; | ||
| 61 | }; | ||
| 62 | |||
| 63 | /** | ||
| 64 | * iwpm_init - Allocate resources for the iwarp port mapper | ||
| 65 | * | ||
| 66 | * Should be called when network interface goes up. | ||
| 67 | */ | ||
| 68 | int iwpm_init(u8); | ||
| 69 | |||
| 70 | /** | ||
| 71 | * iwpm_exit - Deallocate resources for the iwarp port mapper | ||
| 72 | * | ||
| 73 | * Should be called when network interface goes down. | ||
| 74 | */ | ||
| 75 | int iwpm_exit(u8); | ||
| 76 | |||
| 77 | /** | ||
| 78 | * iwpm_valid_pid - Check if the userspace iwarp port mapper pid is valid | ||
| 79 | * | ||
| 80 | * Returns true if the pid is greater than zero, otherwise returns false | ||
| 81 | */ | ||
| 82 | int iwpm_valid_pid(void); | ||
| 83 | |||
| 84 | /** | ||
| 85 | * iwpm_register_pid - Send a netlink query to userspace | ||
| 86 | * to get the iwarp port mapper pid | ||
| 87 | * @pm_msg: Contains driver info to send to the userspace port mapper | ||
| 88 | * @nl_client: The index of the netlink client | ||
| 89 | */ | ||
| 90 | int iwpm_register_pid(struct iwpm_dev_data *pm_msg, u8 nl_client); | ||
| 91 | |||
| 92 | /** | ||
| 93 | * iwpm_add_mapping - Send a netlink add mapping request to | ||
| 94 | * the userspace port mapper | ||
| 95 | * @pm_msg: Contains the local ip/tcp address info to send | ||
| 96 | * @nl_client: The index of the netlink client | ||
| 97 | * | ||
| 98 | * If the request is successful, the pm_msg stores | ||
| 99 | * the port mapper response (mapped address info) | ||
| 100 | */ | ||
| 101 | int iwpm_add_mapping(struct iwpm_sa_data *pm_msg, u8 nl_client); | ||
| 102 | |||
| 103 | /** | ||
| 104 | * iwpm_add_and_query_mapping - Send a netlink add and query mapping request | ||
| 105 | * to the userspace port mapper | ||
| 106 | * @pm_msg: Contains the local and remote ip/tcp address info to send | ||
| 107 | * @nl_client: The index of the netlink client | ||
| 108 | * | ||
| 109 | * If the request is successful, the pm_msg stores the | ||
| 110 | * port mapper response (mapped local and remote address info) | ||
| 111 | */ | ||
| 112 | int iwpm_add_and_query_mapping(struct iwpm_sa_data *pm_msg, u8 nl_client); | ||
| 113 | |||
| 114 | /** | ||
| 115 | * iwpm_remove_mapping - Send a netlink remove mapping request | ||
| 116 | * to the userspace port mapper | ||
| 117 | * | ||
| 118 | * @local_addr: Local ip/tcp address to remove | ||
| 119 | * @nl_client: The index of the netlink client | ||
| 120 | */ | ||
| 121 | int iwpm_remove_mapping(struct sockaddr_storage *local_addr, u8 nl_client); | ||
| 122 | |||
| 123 | /** | ||
| 124 | * iwpm_register_pid_cb - Process the port mapper response to | ||
| 125 | * iwpm_register_pid query | ||
| 126 | * @skb: | ||
| 127 | * @cb: Contains the received message (payload and netlink header) | ||
| 128 | * | ||
| 129 | * If successful, the function receives the userspace port mapper pid | ||
| 130 | * which is used in future communication with the port mapper | ||
| 131 | */ | ||
| 132 | int iwpm_register_pid_cb(struct sk_buff *, struct netlink_callback *); | ||
| 133 | |||
| 134 | /** | ||
| 135 | * iwpm_add_mapping_cb - Process the port mapper response to | ||
| 136 | * iwpm_add_mapping request | ||
| 137 | * @skb: | ||
| 138 | * @cb: Contains the received message (payload and netlink header) | ||
| 139 | */ | ||
| 140 | int iwpm_add_mapping_cb(struct sk_buff *, struct netlink_callback *); | ||
| 141 | |||
| 142 | /** | ||
| 143 | * iwpm_add_and_query_mapping_cb - Process the port mapper response to | ||
| 144 | * iwpm_add_and_query_mapping request | ||
| 145 | * @skb: | ||
| 146 | * @cb: Contains the received message (payload and netlink header) | ||
| 147 | */ | ||
| 148 | int iwpm_add_and_query_mapping_cb(struct sk_buff *, struct netlink_callback *); | ||
| 149 | |||
| 150 | /** | ||
| 151 | * iwpm_mapping_error_cb - Process port mapper notification for error | ||
| 152 | * | ||
| 153 | * @skb: | ||
| 154 | * @cb: Contains the received message (payload and netlink header) | ||
| 155 | */ | ||
| 156 | int iwpm_mapping_error_cb(struct sk_buff *, struct netlink_callback *); | ||
| 157 | |||
| 158 | /** | ||
| 159 | * iwpm_mapping_info_cb - Process a notification that the userspace | ||
| 160 | * port mapper daemon is started | ||
| 161 | * @skb: | ||
| 162 | * @cb: Contains the received message (payload and netlink header) | ||
| 163 | * | ||
| 164 | * Using the received port mapper pid, send all the local mapping | ||
| 165 | * info records to the userspace port mapper | ||
| 166 | */ | ||
| 167 | int iwpm_mapping_info_cb(struct sk_buff *, struct netlink_callback *); | ||
| 168 | |||
| 169 | /** | ||
| 170 | * iwpm_ack_mapping_info_cb - Process the port mapper ack for | ||
| 171 | * the provided local mapping info records | ||
| 172 | * @skb: | ||
| 173 | * @cb: Contains the received message (payload and netlink header) | ||
| 174 | */ | ||
| 175 | int iwpm_ack_mapping_info_cb(struct sk_buff *, struct netlink_callback *); | ||
| 176 | |||
| 177 | /** | ||
| 178 | * iwpm_create_mapinfo - Store local and mapped IPv4/IPv6 address | ||
| 179 | * info in a hash table | ||
| 180 | * @local_addr: Local ip/tcp address | ||
| 181 | * @mapped_addr: Mapped local ip/tcp address | ||
| 182 | * @nl_client: The index of the netlink client | ||
| 183 | */ | ||
| 184 | int iwpm_create_mapinfo(struct sockaddr_storage *local_addr, | ||
| 185 | struct sockaddr_storage *mapped_addr, u8 nl_client); | ||
| 186 | |||
| 187 | /** | ||
| 188 | * iwpm_remove_mapinfo - Remove local and mapped IPv4/IPv6 address | ||
| 189 | * info from the hash table | ||
| 190 | * @local_addr: Local ip/tcp address | ||
| 191 | * @mapped_addr: Mapped local ip/tcp address | ||
| 192 | * | ||
| 193 | * Returns err code if mapping info is not found in the hash table, | ||
| 194 | * otherwise returns 0 | ||
| 195 | */ | ||
| 196 | int iwpm_remove_mapinfo(struct sockaddr_storage *local_addr, | ||
| 197 | struct sockaddr_storage *mapped_addr); | ||
| 198 | |||
| 199 | #endif /* _IW_PORTMAP_H */ | ||
diff --git a/include/rdma/rdma_netlink.h b/include/rdma/rdma_netlink.h index e38de79eeb48..0790882e0c9b 100644 --- a/include/rdma/rdma_netlink.h +++ b/include/rdma/rdma_netlink.h | |||
| @@ -43,7 +43,7 @@ int ibnl_remove_client(int index); | |||
| 43 | * Returns the allocated buffer on success and NULL on failure. | 43 | * Returns the allocated buffer on success and NULL on failure. |
| 44 | */ | 44 | */ |
| 45 | void *ibnl_put_msg(struct sk_buff *skb, struct nlmsghdr **nlh, int seq, | 45 | void *ibnl_put_msg(struct sk_buff *skb, struct nlmsghdr **nlh, int seq, |
| 46 | int len, int client, int op); | 46 | int len, int client, int op, int flags); |
| 47 | /** | 47 | /** |
| 48 | * Put a new attribute in a supplied skb. | 48 | * Put a new attribute in a supplied skb. |
| 49 | * @skb: The netlink skb. | 49 | * @skb: The netlink skb. |
| @@ -56,4 +56,25 @@ void *ibnl_put_msg(struct sk_buff *skb, struct nlmsghdr **nlh, int seq, | |||
| 56 | int ibnl_put_attr(struct sk_buff *skb, struct nlmsghdr *nlh, | 56 | int ibnl_put_attr(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 57 | int len, void *data, int type); | 57 | int len, void *data, int type); |
| 58 | 58 | ||
| 59 | /** | ||
| 60 | * Send the supplied skb to a specific userspace PID. | ||
| 61 | * @skb: The netlink skb | ||
| 62 | * @nlh: Header of the netlink message to send | ||
| 63 | * @pid: Userspace netlink process ID | ||
| 64 | * Returns 0 on success or a negative error code. | ||
| 65 | */ | ||
| 66 | int ibnl_unicast(struct sk_buff *skb, struct nlmsghdr *nlh, | ||
| 67 | __u32 pid); | ||
| 68 | |||
| 69 | /** | ||
| 70 | * Send the supplied skb to a netlink group. | ||
| 71 | * @skb: The netlink skb | ||
| 72 | * @nlh: Header of the netlink message to send | ||
| 73 | * @group: Netlink group ID | ||
| 74 | * @flags: allocation flags | ||
| 75 | * Returns 0 on success or a negative error code. | ||
| 76 | */ | ||
| 77 | int ibnl_multicast(struct sk_buff *skb, struct nlmsghdr *nlh, | ||
| 78 | unsigned int group, gfp_t flags); | ||
| 79 | |||
| 59 | #endif /* _RDMA_NETLINK_H */ | 80 | #endif /* _RDMA_NETLINK_H */ |
diff --git a/include/scsi/osd_protocol.h b/include/scsi/osd_protocol.h index 25ac6283b9c7..a2594afe05c7 100644 --- a/include/scsi/osd_protocol.h +++ b/include/scsi/osd_protocol.h | |||
| @@ -263,16 +263,16 @@ static inline struct osd_cdb_head *osd_cdb_head(struct osd_cdb *ocdb) | |||
| 263 | * Ex name = FORMAT_OSD we have OSD_ACT_FORMAT_OSD && OSDv1_ACT_FORMAT_OSD | 263 | * Ex name = FORMAT_OSD we have OSD_ACT_FORMAT_OSD && OSDv1_ACT_FORMAT_OSD |
| 264 | */ | 264 | */ |
| 265 | #define OSD_ACT___(Name, Num) \ | 265 | #define OSD_ACT___(Name, Num) \ |
| 266 | OSD_ACT_##Name = __constant_cpu_to_be16(0x8880 + Num), \ | 266 | OSD_ACT_##Name = cpu_to_be16(0x8880 + Num), \ |
| 267 | OSDv1_ACT_##Name = __constant_cpu_to_be16(0x8800 + Num), | 267 | OSDv1_ACT_##Name = cpu_to_be16(0x8800 + Num), |
| 268 | 268 | ||
| 269 | /* V2 only actions */ | 269 | /* V2 only actions */ |
| 270 | #define OSD_ACT_V2(Name, Num) \ | 270 | #define OSD_ACT_V2(Name, Num) \ |
| 271 | OSD_ACT_##Name = __constant_cpu_to_be16(0x8880 + Num), | 271 | OSD_ACT_##Name = cpu_to_be16(0x8880 + Num), |
| 272 | 272 | ||
| 273 | #define OSD_ACT_V1_V2(Name, Num1, Num2) \ | 273 | #define OSD_ACT_V1_V2(Name, Num1, Num2) \ |
| 274 | OSD_ACT_##Name = __constant_cpu_to_be16(Num2), \ | 274 | OSD_ACT_##Name = cpu_to_be16(Num2), \ |
| 275 | OSDv1_ACT_##Name = __constant_cpu_to_be16(Num1), | 275 | OSDv1_ACT_##Name = cpu_to_be16(Num1), |
| 276 | 276 | ||
| 277 | enum osd_service_actions { | 277 | enum osd_service_actions { |
| 278 | OSD_ACT_V2(OBJECT_STRUCTURE_CHECK, 0x00) | 278 | OSD_ACT_V2(OBJECT_STRUCTURE_CHECK, 0x00) |
diff --git a/include/scsi/scsi_cmnd.h b/include/scsi/scsi_cmnd.h index dd7c998221b3..e016e2ac38df 100644 --- a/include/scsi/scsi_cmnd.h +++ b/include/scsi/scsi_cmnd.h | |||
| @@ -133,6 +133,15 @@ struct scsi_cmnd { | |||
| 133 | unsigned char tag; /* SCSI-II queued command tag */ | 133 | unsigned char tag; /* SCSI-II queued command tag */ |
| 134 | }; | 134 | }; |
| 135 | 135 | ||
| 136 | /* | ||
| 137 | * Return the driver private allocation behind the command. | ||
| 138 | * Only works if cmd_size is set in the host template. | ||
| 139 | */ | ||
| 140 | static inline void *scsi_cmd_priv(struct scsi_cmnd *cmd) | ||
| 141 | { | ||
| 142 | return cmd + 1; | ||
| 143 | } | ||
| 144 | |||
| 136 | /* make sure not to use it with REQ_TYPE_BLOCK_PC commands */ | 145 | /* make sure not to use it with REQ_TYPE_BLOCK_PC commands */ |
| 137 | static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd) | 146 | static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd) |
| 138 | { | 147 | { |
diff --git a/include/scsi/scsi_driver.h b/include/scsi/scsi_driver.h index 20fdfc2526ad..36c4114ed9bc 100644 --- a/include/scsi/scsi_driver.h +++ b/include/scsi/scsi_driver.h | |||
| @@ -4,17 +4,17 @@ | |||
| 4 | #include <linux/device.h> | 4 | #include <linux/device.h> |
| 5 | 5 | ||
| 6 | struct module; | 6 | struct module; |
| 7 | struct request; | ||
| 7 | struct scsi_cmnd; | 8 | struct scsi_cmnd; |
| 8 | struct scsi_device; | 9 | struct scsi_device; |
| 9 | struct request; | ||
| 10 | struct request_queue; | ||
| 11 | |||
| 12 | 10 | ||
| 13 | struct scsi_driver { | 11 | struct scsi_driver { |
| 14 | struct module *owner; | 12 | struct module *owner; |
| 15 | struct device_driver gendrv; | 13 | struct device_driver gendrv; |
| 16 | 14 | ||
| 17 | void (*rescan)(struct device *); | 15 | void (*rescan)(struct device *); |
| 16 | int (*init_command)(struct scsi_cmnd *); | ||
| 17 | void (*uninit_command)(struct scsi_cmnd *); | ||
| 18 | int (*done)(struct scsi_cmnd *); | 18 | int (*done)(struct scsi_cmnd *); |
| 19 | int (*eh_action)(struct scsi_cmnd *, int); | 19 | int (*eh_action)(struct scsi_cmnd *, int); |
| 20 | }; | 20 | }; |
| @@ -31,8 +31,5 @@ extern int scsi_register_interface(struct class_interface *); | |||
| 31 | 31 | ||
| 32 | int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req); | 32 | int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req); |
| 33 | int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req); | 33 | int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req); |
| 34 | int scsi_prep_state_check(struct scsi_device *sdev, struct request *req); | ||
| 35 | int scsi_prep_return(struct request_queue *q, struct request *req, int ret); | ||
| 36 | int scsi_prep_fn(struct request_queue *, struct request *); | ||
| 37 | 34 | ||
| 38 | #endif /* _SCSI_SCSI_DRIVER_H */ | 35 | #endif /* _SCSI_SCSI_DRIVER_H */ |
diff --git a/include/sound/atmel-ac97c.h b/include/sound/atmel-ac97c.h index e6aabdb45865..00e6c289a936 100644 --- a/include/sound/atmel-ac97c.h +++ b/include/sound/atmel-ac97c.h | |||
| @@ -23,7 +23,6 @@ | |||
| 23 | * @reset_pin: GPIO pin wired to the reset input on the external AC97 codec, | 23 | * @reset_pin: GPIO pin wired to the reset input on the external AC97 codec, |
| 24 | * optional to use, set to -ENODEV if not in use. AC97 layer will | 24 | * optional to use, set to -ENODEV if not in use. AC97 layer will |
| 25 | * try to do a software reset of the external codec anyway. | 25 | * try to do a software reset of the external codec anyway. |
| 26 | * @flags: Flags for which directions should be enabled. | ||
| 27 | * | 26 | * |
| 28 | * If the user do not want to use a DMA channel for playback or capture, i.e. | 27 | * If the user do not want to use a DMA channel for playback or capture, i.e. |
| 29 | * only one feature is required on the board. The slave for playback or capture | 28 | * only one feature is required on the board. The slave for playback or capture |
| @@ -33,7 +32,6 @@ | |||
| 33 | struct ac97c_platform_data { | 32 | struct ac97c_platform_data { |
| 34 | struct dw_dma_slave rx_dws; | 33 | struct dw_dma_slave rx_dws; |
| 35 | struct dw_dma_slave tx_dws; | 34 | struct dw_dma_slave tx_dws; |
| 36 | unsigned int flags; | ||
| 37 | int reset_pin; | 35 | int reset_pin; |
| 38 | }; | 36 | }; |
| 39 | 37 | ||
diff --git a/include/sound/core.h b/include/sound/core.h index d3f5f818e0b9..eedda2cdfe57 100644 --- a/include/sound/core.h +++ b/include/sound/core.h | |||
| @@ -282,13 +282,6 @@ int snd_card_new(struct device *parent, int idx, const char *xid, | |||
| 282 | struct module *module, int extra_size, | 282 | struct module *module, int extra_size, |
| 283 | struct snd_card **card_ret); | 283 | struct snd_card **card_ret); |
| 284 | 284 | ||
| 285 | static inline int __deprecated | ||
| 286 | snd_card_create(int idx, const char *id, struct module *module, int extra_size, | ||
| 287 | struct snd_card **ret) | ||
| 288 | { | ||
| 289 | return snd_card_new(NULL, idx, id, module, extra_size, ret); | ||
| 290 | } | ||
| 291 | |||
| 292 | int snd_card_disconnect(struct snd_card *card); | 285 | int snd_card_disconnect(struct snd_card *card); |
| 293 | int snd_card_free(struct snd_card *card); | 286 | int snd_card_free(struct snd_card *card); |
| 294 | int snd_card_free_when_closed(struct snd_card *card); | 287 | int snd_card_free_when_closed(struct snd_card *card); |
diff --git a/include/sound/cs42l56.h b/include/sound/cs42l56.h new file mode 100644 index 000000000000..2467c8ff132c --- /dev/null +++ b/include/sound/cs42l56.h | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | /* | ||
| 2 | * linux/sound/cs42l56.h -- Platform data for CS42L56 | ||
| 3 | * | ||
| 4 | * Copyright (c) 2014 Cirrus Logic 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 | #ifndef __CS42L56_H | ||
| 12 | #define __CS42L56_H | ||
| 13 | |||
| 14 | struct cs42l56_platform_data { | ||
| 15 | |||
| 16 | /* GPIO for Reset */ | ||
| 17 | unsigned int gpio_nreset; | ||
| 18 | |||
| 19 | /* MICBIAS Level. Check datasheet Pg48 */ | ||
| 20 | unsigned int micbias_lvl; | ||
| 21 | |||
| 22 | /* Analog Input 1A Reference 0=Single 1=Pseudo-Differential */ | ||
| 23 | unsigned int ain1a_ref_cfg; | ||
| 24 | |||
| 25 | /* Analog Input 2A Reference 0=Single 1=Pseudo-Differential */ | ||
| 26 | unsigned int ain2a_ref_cfg; | ||
| 27 | |||
| 28 | /* Analog Input 1B Reference 0=Single 1=Pseudo-Differential */ | ||
| 29 | unsigned int ain1b_ref_cfg; | ||
| 30 | |||
| 31 | /* Analog Input 2B Reference 0=Single 1=Pseudo-Differential */ | ||
| 32 | unsigned int ain2b_ref_cfg; | ||
| 33 | |||
| 34 | /* Charge Pump Freq. Check datasheet Pg62 */ | ||
| 35 | unsigned int chgfreq; | ||
| 36 | |||
| 37 | /* HighPass Filter Right Channel Corner Frequency */ | ||
| 38 | unsigned int hpfb_freq; | ||
| 39 | |||
| 40 | /* HighPass Filter Left Channel Corner Frequency */ | ||
| 41 | unsigned int hpfa_freq; | ||
| 42 | |||
| 43 | /* Adaptive Power Control for LO/HP */ | ||
| 44 | unsigned int adaptive_pwr; | ||
| 45 | |||
| 46 | }; | ||
| 47 | |||
| 48 | #endif /* __CS42L56_H */ | ||
diff --git a/include/sound/omap-pcm.h b/include/sound/omap-pcm.h new file mode 100644 index 000000000000..c1d2f31d71e9 --- /dev/null +++ b/include/sound/omap-pcm.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | * omap-pcm.h - OMAP PCM driver | ||
| 3 | * | ||
| 4 | * Copyright (C) 2014 Texas Instruments, Inc. | ||
| 5 | * | ||
| 6 | * Author: Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or | ||
| 9 | * modify it under the terms of the GNU General Public License | ||
| 10 | * version 2 as published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, but | ||
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * General Public License for more details. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef __OMAP_PCM_H__ | ||
| 19 | #define __OMAP_PCM_H__ | ||
| 20 | |||
| 21 | #if IS_ENABLED(CONFIG_SND_OMAP_SOC) | ||
| 22 | int omap_pcm_platform_register(struct device *dev); | ||
| 23 | #else | ||
| 24 | static inline int omap_pcm_platform_register(struct device *dev) | ||
| 25 | { | ||
| 26 | return 0; | ||
| 27 | } | ||
| 28 | #endif /* CONFIG_SND_OMAP_SOC */ | ||
| 29 | |||
| 30 | #endif /* __OMAP_PCM_H__ */ | ||
diff --git a/include/sound/rcar_snd.h b/include/sound/rcar_snd.h index 34a3c02a4576..f4a706f82cb7 100644 --- a/include/sound/rcar_snd.h +++ b/include/sound/rcar_snd.h | |||
| @@ -34,47 +34,39 @@ | |||
| 34 | * B : SSI direction | 34 | * B : SSI direction |
| 35 | */ | 35 | */ |
| 36 | #define RSND_SSI_CLK_PIN_SHARE (1 << 31) | 36 | #define RSND_SSI_CLK_PIN_SHARE (1 << 31) |
| 37 | #define RSND_SSI_PLAY (1 << 24) | ||
| 38 | 37 | ||
| 39 | #define RSND_SSI(_dma_id, _pio_irq, _flags) \ | 38 | #define RSND_SSI(_dma_id, _pio_irq, _flags) \ |
| 40 | { .dma_id = _dma_id, .pio_irq = _pio_irq, .flags = _flags } | 39 | { .dma_id = _dma_id, .pio_irq = _pio_irq, .flags = _flags } |
| 41 | #define RSND_SSI_SET(_dai_id, _dma_id, _pio_irq, _flags) \ | ||
| 42 | { .dai_id = _dai_id, .dma_id = _dma_id, .pio_irq = _pio_irq, .flags = _flags } | ||
| 43 | #define RSND_SSI_UNUSED \ | 40 | #define RSND_SSI_UNUSED \ |
| 44 | { .dai_id = -1, .dma_id = -1, .pio_irq = -1, .flags = 0 } | 41 | { .dma_id = -1, .pio_irq = -1, .flags = 0 } |
| 45 | 42 | ||
| 46 | struct rsnd_ssi_platform_info { | 43 | struct rsnd_ssi_platform_info { |
| 47 | int dai_id; /* will be removed */ | ||
| 48 | int dma_id; | 44 | int dma_id; |
| 49 | int pio_irq; | 45 | int pio_irq; |
| 50 | u32 flags; | 46 | u32 flags; |
| 51 | }; | 47 | }; |
| 52 | 48 | ||
| 53 | /* | ||
| 54 | * flags | ||
| 55 | */ | ||
| 56 | #define RSND_SCU_USE_HPBIF (1 << 31) /* it needs RSND_SSI_DEPENDENT */ | ||
| 57 | |||
| 58 | #define RSND_SRC(rate, _dma_id) \ | 49 | #define RSND_SRC(rate, _dma_id) \ |
| 59 | { .flags = RSND_SCU_USE_HPBIF, .convert_rate = rate, .dma_id = _dma_id, } | 50 | { .convert_rate = rate, .dma_id = _dma_id, } |
| 60 | #define RSND_SRC_SET(rate, _dma_id) \ | ||
| 61 | { .flags = RSND_SCU_USE_HPBIF, .convert_rate = rate, .dma_id = _dma_id, } | ||
| 62 | #define RSND_SRC_UNUSED \ | 51 | #define RSND_SRC_UNUSED \ |
| 63 | { .flags = 0, .convert_rate = 0, .dma_id = 0, } | 52 | { .convert_rate = 0, .dma_id = -1, } |
| 64 | |||
| 65 | #define rsnd_scu_platform_info rsnd_src_platform_info | ||
| 66 | #define src_info scu_info | ||
| 67 | #define src_info_nr scu_info_nr | ||
| 68 | 53 | ||
| 69 | struct rsnd_src_platform_info { | 54 | struct rsnd_src_platform_info { |
| 70 | u32 flags; | ||
| 71 | u32 convert_rate; /* sampling rate convert */ | 55 | u32 convert_rate; /* sampling rate convert */ |
| 72 | int dma_id; /* for Gen2 SCU */ | 56 | int dma_id; /* for Gen2 SCU */ |
| 73 | }; | 57 | }; |
| 74 | 58 | ||
| 59 | /* | ||
| 60 | * flags | ||
| 61 | */ | ||
| 62 | struct rsnd_dvc_platform_info { | ||
| 63 | u32 flags; | ||
| 64 | }; | ||
| 65 | |||
| 75 | struct rsnd_dai_path_info { | 66 | struct rsnd_dai_path_info { |
| 76 | struct rsnd_ssi_platform_info *ssi; | 67 | struct rsnd_ssi_platform_info *ssi; |
| 77 | struct rsnd_src_platform_info *src; | 68 | struct rsnd_src_platform_info *src; |
| 69 | struct rsnd_dvc_platform_info *dvc; | ||
| 78 | }; | 70 | }; |
| 79 | 71 | ||
| 80 | struct rsnd_dai_platform_info { | 72 | struct rsnd_dai_platform_info { |
| @@ -99,6 +91,8 @@ struct rcar_snd_info { | |||
| 99 | int ssi_info_nr; | 91 | int ssi_info_nr; |
| 100 | struct rsnd_src_platform_info *src_info; | 92 | struct rsnd_src_platform_info *src_info; |
| 101 | int src_info_nr; | 93 | int src_info_nr; |
| 94 | struct rsnd_dvc_platform_info *dvc_info; | ||
| 95 | int dvc_info_nr; | ||
| 102 | struct rsnd_dai_platform_info *dai_info; | 96 | struct rsnd_dai_platform_info *dai_info; |
| 103 | int dai_info_nr; | 97 | int dai_info_nr; |
| 104 | int (*start)(int id); | 98 | int (*start)(int id); |
diff --git a/include/sound/rt5640.h b/include/sound/rt5640.h index 27cc75ed67f8..59d26dd81e45 100644 --- a/include/sound/rt5640.h +++ b/include/sound/rt5640.h | |||
| @@ -16,6 +16,10 @@ struct rt5640_platform_data { | |||
| 16 | bool in1_diff; | 16 | bool in1_diff; |
| 17 | bool in2_diff; | 17 | bool in2_diff; |
| 18 | 18 | ||
| 19 | bool dmic_en; | ||
| 20 | bool dmic1_data_pin; /* 0 = IN1P; 1 = GPIO3 */ | ||
| 21 | bool dmic2_data_pin; /* 0 = IN1N; 1 = GPIO4 */ | ||
| 22 | |||
| 19 | int ldo1_en; /* GPIO for LDO1_EN */ | 23 | int ldo1_en; /* GPIO for LDO1_EN */ |
| 20 | }; | 24 | }; |
| 21 | 25 | ||
diff --git a/include/sound/rt5645.h b/include/sound/rt5645.h new file mode 100644 index 000000000000..1de744c242f6 --- /dev/null +++ b/include/sound/rt5645.h | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | /* | ||
| 2 | * linux/sound/rt5645.h -- Platform data for RT5645 | ||
| 3 | * | ||
| 4 | * Copyright 2013 Realtek Microelectronics | ||
| 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_SND_RT5645_H | ||
| 12 | #define __LINUX_SND_RT5645_H | ||
| 13 | |||
| 14 | struct rt5645_platform_data { | ||
| 15 | /* IN2 can optionally be differential */ | ||
| 16 | bool in2_diff; | ||
| 17 | |||
| 18 | bool dmic_en; | ||
| 19 | unsigned int dmic1_data_pin; | ||
| 20 | /* 0 = IN2N; 1 = GPIO5; 2 = GPIO11 */ | ||
| 21 | unsigned int dmic2_data_pin; | ||
| 22 | /* 0 = IN2P; 1 = GPIO6; 2 = GPIO10; 3 = GPIO12 */ | ||
| 23 | }; | ||
| 24 | |||
| 25 | #endif | ||
diff --git a/include/sound/rt5651.h b/include/sound/rt5651.h new file mode 100644 index 000000000000..d35de758dfb5 --- /dev/null +++ b/include/sound/rt5651.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | /* | ||
| 2 | * linux/sound/rt286.h -- Platform data for RT286 | ||
| 3 | * | ||
| 4 | * Copyright 2013 Realtek Microelectronics | ||
| 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_SND_RT5651_H | ||
| 12 | #define __LINUX_SND_RT5651_H | ||
| 13 | |||
| 14 | struct rt5651_platform_data { | ||
| 15 | /* IN2 can optionally be differential */ | ||
| 16 | bool in2_diff; | ||
| 17 | |||
| 18 | bool dmic_en; | ||
| 19 | }; | ||
| 20 | |||
| 21 | #endif | ||
diff --git a/include/sound/rt5677.h b/include/sound/rt5677.h new file mode 100644 index 000000000000..3da14313bcfc --- /dev/null +++ b/include/sound/rt5677.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | /* | ||
| 2 | * linux/sound/rt5677.h -- Platform data for RT5677 | ||
| 3 | * | ||
| 4 | * Copyright 2013 Realtek Semiconductor Corp. | ||
| 5 | * Author: Oder Chiou <oder_chiou@realtek.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_SND_RT5677_H | ||
| 13 | #define __LINUX_SND_RT5677_H | ||
| 14 | |||
| 15 | struct rt5677_platform_data { | ||
| 16 | /* IN1 IN2 can optionally be differential */ | ||
| 17 | bool in1_diff; | ||
| 18 | bool in2_diff; | ||
| 19 | }; | ||
| 20 | |||
| 21 | #endif | ||
diff --git a/include/sound/soc-dai.h b/include/sound/soc-dai.h index fad76769f153..688f2ba8009f 100644 --- a/include/sound/soc-dai.h +++ b/include/sound/soc-dai.h | |||
| @@ -252,7 +252,6 @@ struct snd_soc_dai { | |||
| 252 | unsigned int symmetric_rates:1; | 252 | unsigned int symmetric_rates:1; |
| 253 | unsigned int symmetric_channels:1; | 253 | unsigned int symmetric_channels:1; |
| 254 | unsigned int symmetric_samplebits:1; | 254 | unsigned int symmetric_samplebits:1; |
| 255 | struct snd_pcm_runtime *runtime; | ||
| 256 | unsigned int active; | 255 | unsigned int active; |
| 257 | unsigned char probed:1; | 256 | unsigned char probed:1; |
| 258 | 257 | ||
| @@ -277,7 +276,6 @@ struct snd_soc_dai { | |||
| 277 | struct snd_soc_card *card; | 276 | struct snd_soc_card *card; |
| 278 | 277 | ||
| 279 | struct list_head list; | 278 | struct list_head list; |
| 280 | struct list_head card_list; | ||
| 281 | }; | 279 | }; |
| 282 | 280 | ||
| 283 | static inline void *snd_soc_dai_get_dma_data(const struct snd_soc_dai *dai, | 281 | static inline void *snd_soc_dai_get_dma_data(const struct snd_soc_dai *dai, |
diff --git a/include/sound/soc-dapm.h b/include/sound/soc-dapm.h index ef78f562f4a8..6b59471cdf44 100644 --- a/include/sound/soc-dapm.h +++ b/include/sound/soc-dapm.h | |||
| @@ -107,10 +107,6 @@ struct device; | |||
| 107 | { .id = snd_soc_dapm_mux, .name = wname, \ | 107 | { .id = snd_soc_dapm_mux, .name = wname, \ |
| 108 | SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \ | 108 | SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \ |
| 109 | .kcontrol_news = wcontrols, .num_kcontrols = 1} | 109 | .kcontrol_news = wcontrols, .num_kcontrols = 1} |
| 110 | #define SND_SOC_DAPM_VIRT_MUX(wname, wreg, wshift, winvert, wcontrols) \ | ||
| 111 | SND_SOC_DAPM_MUX(wname, wreg, wshift, winvert, wcontrols) | ||
| 112 | #define SND_SOC_DAPM_VALUE_MUX(wname, wreg, wshift, winvert, wcontrols) \ | ||
| 113 | SND_SOC_DAPM_MUX(wname, wreg, wshift, winvert, wcontrols) | ||
| 114 | 110 | ||
| 115 | /* Simplified versions of above macros, assuming wncontrols = ARRAY_SIZE(wcontrols) */ | 111 | /* Simplified versions of above macros, assuming wncontrols = ARRAY_SIZE(wcontrols) */ |
| 116 | #define SOC_PGA_ARRAY(wname, wreg, wshift, winvert,\ | 112 | #define SOC_PGA_ARRAY(wname, wreg, wshift, winvert,\ |
| @@ -166,10 +162,6 @@ struct device; | |||
| 166 | SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \ | 162 | SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \ |
| 167 | .kcontrol_news = wcontrols, .num_kcontrols = 1, \ | 163 | .kcontrol_news = wcontrols, .num_kcontrols = 1, \ |
| 168 | .event = wevent, .event_flags = wflags} | 164 | .event = wevent, .event_flags = wflags} |
| 169 | #define SND_SOC_DAPM_VIRT_MUX_E(wname, wreg, wshift, winvert, wcontrols, \ | ||
| 170 | wevent, wflags) \ | ||
| 171 | SND_SOC_DAPM_MUX_E(wname, wreg, wshift, winvert, wcontrols, wevent, \ | ||
| 172 | wflags) | ||
| 173 | 165 | ||
| 174 | /* additional sequencing control within an event type */ | 166 | /* additional sequencing control within an event type */ |
| 175 | #define SND_SOC_DAPM_PGA_S(wname, wsubseq, wreg, wshift, winvert, \ | 167 | #define SND_SOC_DAPM_PGA_S(wname, wsubseq, wreg, wshift, winvert, \ |
| @@ -256,9 +248,8 @@ struct device; | |||
| 256 | /* generic widgets */ | 248 | /* generic widgets */ |
| 257 | #define SND_SOC_DAPM_REG(wid, wname, wreg, wshift, wmask, won_val, woff_val) \ | 249 | #define SND_SOC_DAPM_REG(wid, wname, wreg, wshift, wmask, won_val, woff_val) \ |
| 258 | { .id = wid, .name = wname, .kcontrol_news = NULL, .num_kcontrols = 0, \ | 250 | { .id = wid, .name = wname, .kcontrol_news = NULL, .num_kcontrols = 0, \ |
| 259 | .reg = -((wreg) + 1), .shift = wshift, .mask = wmask, \ | 251 | .reg = wreg, .shift = wshift, .mask = wmask, \ |
| 260 | .on_val = won_val, .off_val = woff_val, .event = dapm_reg_event, \ | 252 | .on_val = won_val, .off_val = woff_val, } |
| 261 | .event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD} | ||
| 262 | #define SND_SOC_DAPM_SUPPLY(wname, wreg, wshift, winvert, wevent, wflags) \ | 253 | #define SND_SOC_DAPM_SUPPLY(wname, wreg, wshift, winvert, wevent, wflags) \ |
| 263 | { .id = snd_soc_dapm_supply, .name = wname, \ | 254 | { .id = snd_soc_dapm_supply, .name = wname, \ |
| 264 | SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \ | 255 | SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \ |
| @@ -305,16 +296,12 @@ struct device; | |||
| 305 | .get = snd_soc_dapm_get_enum_double, \ | 296 | .get = snd_soc_dapm_get_enum_double, \ |
| 306 | .put = snd_soc_dapm_put_enum_double, \ | 297 | .put = snd_soc_dapm_put_enum_double, \ |
| 307 | .private_value = (unsigned long)&xenum } | 298 | .private_value = (unsigned long)&xenum } |
| 308 | #define SOC_DAPM_ENUM_VIRT(xname, xenum) \ | ||
| 309 | SOC_DAPM_ENUM(xname, xenum) | ||
| 310 | #define SOC_DAPM_ENUM_EXT(xname, xenum, xget, xput) \ | 299 | #define SOC_DAPM_ENUM_EXT(xname, xenum, xget, xput) \ |
| 311 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ | 300 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
| 312 | .info = snd_soc_info_enum_double, \ | 301 | .info = snd_soc_info_enum_double, \ |
| 313 | .get = xget, \ | 302 | .get = xget, \ |
| 314 | .put = xput, \ | 303 | .put = xput, \ |
| 315 | .private_value = (unsigned long)&xenum } | 304 | .private_value = (unsigned long)&xenum } |
| 316 | #define SOC_DAPM_VALUE_ENUM(xname, xenum) \ | ||
| 317 | SOC_DAPM_ENUM(xname, xenum) | ||
| 318 | #define SOC_DAPM_PIN_SWITCH(xname) \ | 305 | #define SOC_DAPM_PIN_SWITCH(xname) \ |
| 319 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname " Switch", \ | 306 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname " Switch", \ |
| 320 | .info = snd_soc_dapm_info_pin_switch, \ | 307 | .info = snd_soc_dapm_info_pin_switch, \ |
| @@ -362,8 +349,6 @@ struct regulator; | |||
| 362 | struct snd_soc_dapm_widget_list; | 349 | struct snd_soc_dapm_widget_list; |
| 363 | struct snd_soc_dapm_update; | 350 | struct snd_soc_dapm_update; |
| 364 | 351 | ||
| 365 | int dapm_reg_event(struct snd_soc_dapm_widget *w, | ||
| 366 | struct snd_kcontrol *kcontrol, int event); | ||
| 367 | int dapm_regulator_event(struct snd_soc_dapm_widget *w, | 352 | int dapm_regulator_event(struct snd_soc_dapm_widget *w, |
| 368 | struct snd_kcontrol *kcontrol, int event); | 353 | struct snd_kcontrol *kcontrol, int event); |
| 369 | int dapm_clock_event(struct snd_soc_dapm_widget *w, | 354 | int dapm_clock_event(struct snd_soc_dapm_widget *w, |
| @@ -606,6 +591,7 @@ struct snd_soc_dapm_context { | |||
| 606 | enum snd_soc_dapm_type, int); | 591 | enum snd_soc_dapm_type, int); |
| 607 | 592 | ||
| 608 | struct device *dev; /* from parent - for debug */ | 593 | struct device *dev; /* from parent - for debug */ |
| 594 | struct snd_soc_component *component; /* parent component */ | ||
| 609 | struct snd_soc_codec *codec; /* parent codec */ | 595 | struct snd_soc_codec *codec; /* parent codec */ |
| 610 | struct snd_soc_platform *platform; /* parent platform */ | 596 | struct snd_soc_platform *platform; /* parent platform */ |
| 611 | struct snd_soc_card *card; /* parent card */ | 597 | struct snd_soc_card *card; /* parent card */ |
diff --git a/include/sound/soc.h b/include/sound/soc.h index 0b83168d8ff4..ed9e2d7e5fdc 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h | |||
| @@ -196,8 +196,6 @@ | |||
| 196 | .info = snd_soc_info_enum_double, \ | 196 | .info = snd_soc_info_enum_double, \ |
| 197 | .get = snd_soc_get_enum_double, .put = snd_soc_put_enum_double, \ | 197 | .get = snd_soc_get_enum_double, .put = snd_soc_put_enum_double, \ |
| 198 | .private_value = (unsigned long)&xenum } | 198 | .private_value = (unsigned long)&xenum } |
| 199 | #define SOC_VALUE_ENUM(xname, xenum) \ | ||
| 200 | SOC_ENUM(xname, xenum) | ||
| 201 | #define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\ | 199 | #define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\ |
| 202 | xhandler_get, xhandler_put) \ | 200 | xhandler_get, xhandler_put) \ |
| 203 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ | 201 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
| @@ -266,6 +264,13 @@ | |||
| 266 | {.base = xbase, .num_regs = xregs, \ | 264 | {.base = xbase, .num_regs = xregs, \ |
| 267 | .mask = xmask }) } | 265 | .mask = xmask }) } |
| 268 | 266 | ||
| 267 | #define SND_SOC_BYTES_EXT(xname, xcount, xhandler_get, xhandler_put) \ | ||
| 268 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ | ||
| 269 | .info = snd_soc_bytes_info_ext, \ | ||
| 270 | .get = xhandler_get, .put = xhandler_put, \ | ||
| 271 | .private_value = (unsigned long)&(struct soc_bytes_ext) \ | ||
| 272 | {.max = xcount} } | ||
| 273 | |||
| 269 | #define SOC_SINGLE_XR_SX(xname, xregbase, xregcount, xnbits, \ | 274 | #define SOC_SINGLE_XR_SX(xname, xregbase, xregcount, xnbits, \ |
| 270 | xmin, xmax, xinvert) \ | 275 | xmin, xmax, xinvert) \ |
| 271 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ | 276 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ |
| @@ -377,6 +382,8 @@ int snd_soc_resume(struct device *dev); | |||
| 377 | int snd_soc_poweroff(struct device *dev); | 382 | int snd_soc_poweroff(struct device *dev); |
| 378 | int snd_soc_register_platform(struct device *dev, | 383 | int snd_soc_register_platform(struct device *dev, |
| 379 | const struct snd_soc_platform_driver *platform_drv); | 384 | const struct snd_soc_platform_driver *platform_drv); |
| 385 | int devm_snd_soc_register_platform(struct device *dev, | ||
| 386 | const struct snd_soc_platform_driver *platform_drv); | ||
| 380 | void snd_soc_unregister_platform(struct device *dev); | 387 | void snd_soc_unregister_platform(struct device *dev); |
| 381 | int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform, | 388 | int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform, |
| 382 | const struct snd_soc_platform_driver *platform_drv); | 389 | const struct snd_soc_platform_driver *platform_drv); |
| @@ -393,14 +400,6 @@ int devm_snd_soc_register_component(struct device *dev, | |||
| 393 | const struct snd_soc_component_driver *cmpnt_drv, | 400 | const struct snd_soc_component_driver *cmpnt_drv, |
| 394 | struct snd_soc_dai_driver *dai_drv, int num_dai); | 401 | struct snd_soc_dai_driver *dai_drv, int num_dai); |
| 395 | void snd_soc_unregister_component(struct device *dev); | 402 | void snd_soc_unregister_component(struct device *dev); |
| 396 | int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, | ||
| 397 | unsigned int reg); | ||
| 398 | int snd_soc_codec_readable_register(struct snd_soc_codec *codec, | ||
| 399 | unsigned int reg); | ||
| 400 | int snd_soc_codec_writable_register(struct snd_soc_codec *codec, | ||
| 401 | unsigned int reg); | ||
| 402 | int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec, | ||
| 403 | struct regmap *regmap); | ||
| 404 | int snd_soc_cache_sync(struct snd_soc_codec *codec); | 403 | int snd_soc_cache_sync(struct snd_soc_codec *codec); |
| 405 | int snd_soc_cache_init(struct snd_soc_codec *codec); | 404 | int snd_soc_cache_init(struct snd_soc_codec *codec); |
| 406 | int snd_soc_cache_exit(struct snd_soc_codec *codec); | 405 | int snd_soc_cache_exit(struct snd_soc_codec *codec); |
| @@ -453,6 +452,9 @@ int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage); | |||
| 453 | #ifdef CONFIG_GPIOLIB | 452 | #ifdef CONFIG_GPIOLIB |
| 454 | int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count, | 453 | int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count, |
| 455 | struct snd_soc_jack_gpio *gpios); | 454 | struct snd_soc_jack_gpio *gpios); |
| 455 | int snd_soc_jack_add_gpiods(struct device *gpiod_dev, | ||
| 456 | struct snd_soc_jack *jack, | ||
| 457 | int count, struct snd_soc_jack_gpio *gpios); | ||
| 456 | void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count, | 458 | void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count, |
| 457 | struct snd_soc_jack_gpio *gpios); | 459 | struct snd_soc_jack_gpio *gpios); |
| 458 | #else | 460 | #else |
| @@ -462,6 +464,14 @@ static inline int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count, | |||
| 462 | return 0; | 464 | return 0; |
| 463 | } | 465 | } |
| 464 | 466 | ||
| 467 | static inline int snd_soc_jack_add_gpiods(struct device *gpiod_dev, | ||
| 468 | struct snd_soc_jack *jack, | ||
| 469 | int count, | ||
| 470 | struct snd_soc_jack_gpio *gpios) | ||
| 471 | { | ||
| 472 | return 0; | ||
| 473 | } | ||
| 474 | |||
| 465 | static inline void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count, | 475 | static inline void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count, |
| 466 | struct snd_soc_jack_gpio *gpios) | 476 | struct snd_soc_jack_gpio *gpios) |
| 467 | { | 477 | { |
| @@ -469,12 +479,12 @@ static inline void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count, | |||
| 469 | #endif | 479 | #endif |
| 470 | 480 | ||
| 471 | /* codec register bit access */ | 481 | /* codec register bit access */ |
| 472 | int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg, | 482 | int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned int reg, |
| 473 | unsigned int mask, unsigned int value); | 483 | unsigned int mask, unsigned int value); |
| 474 | int snd_soc_update_bits_locked(struct snd_soc_codec *codec, | 484 | int snd_soc_update_bits_locked(struct snd_soc_codec *codec, |
| 475 | unsigned short reg, unsigned int mask, | 485 | unsigned int reg, unsigned int mask, |
| 476 | unsigned int value); | 486 | unsigned int value); |
| 477 | int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg, | 487 | int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned int reg, |
| 478 | unsigned int mask, unsigned int value); | 488 | unsigned int mask, unsigned int value); |
| 479 | 489 | ||
| 480 | int snd_soc_new_ac97_codec(struct snd_soc_codec *codec, | 490 | int snd_soc_new_ac97_codec(struct snd_soc_codec *codec, |
| @@ -540,6 +550,8 @@ int snd_soc_bytes_get(struct snd_kcontrol *kcontrol, | |||
| 540 | struct snd_ctl_elem_value *ucontrol); | 550 | struct snd_ctl_elem_value *ucontrol); |
| 541 | int snd_soc_bytes_put(struct snd_kcontrol *kcontrol, | 551 | int snd_soc_bytes_put(struct snd_kcontrol *kcontrol, |
| 542 | struct snd_ctl_elem_value *ucontrol); | 552 | struct snd_ctl_elem_value *ucontrol); |
| 553 | int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol, | ||
| 554 | struct snd_ctl_elem_info *ucontrol); | ||
| 543 | int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol, | 555 | int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol, |
| 544 | struct snd_ctl_elem_info *uinfo); | 556 | struct snd_ctl_elem_info *uinfo); |
| 545 | int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol, | 557 | int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol, |
| @@ -586,8 +598,12 @@ struct snd_soc_jack_zone { | |||
| 586 | /** | 598 | /** |
| 587 | * struct snd_soc_jack_gpio - Describes a gpio pin for jack detection | 599 | * struct snd_soc_jack_gpio - Describes a gpio pin for jack detection |
| 588 | * | 600 | * |
| 589 | * @gpio: gpio number | 601 | * @gpio: legacy gpio number |
| 590 | * @name: gpio name | 602 | * @idx: gpio descriptor index within the function of the GPIO |
| 603 | * consumer device | ||
| 604 | * @gpiod_dev GPIO consumer device | ||
| 605 | * @name: gpio name. Also as connection ID for the GPIO consumer | ||
| 606 | * device function name lookup | ||
| 591 | * @report: value to report when jack detected | 607 | * @report: value to report when jack detected |
| 592 | * @invert: report presence in low state | 608 | * @invert: report presence in low state |
| 593 | * @debouce_time: debouce time in ms | 609 | * @debouce_time: debouce time in ms |
| @@ -598,6 +614,8 @@ struct snd_soc_jack_zone { | |||
| 598 | */ | 614 | */ |
| 599 | struct snd_soc_jack_gpio { | 615 | struct snd_soc_jack_gpio { |
| 600 | unsigned int gpio; | 616 | unsigned int gpio; |
| 617 | unsigned int idx; | ||
| 618 | struct device *gpiod_dev; | ||
| 601 | const char *name; | 619 | const char *name; |
| 602 | int report; | 620 | int report; |
| 603 | int invert; | 621 | int invert; |
| @@ -606,6 +624,7 @@ struct snd_soc_jack_gpio { | |||
| 606 | 624 | ||
| 607 | struct snd_soc_jack *jack; | 625 | struct snd_soc_jack *jack; |
| 608 | struct delayed_work work; | 626 | struct delayed_work work; |
| 627 | struct gpio_desc *desc; | ||
| 609 | 628 | ||
| 610 | void *data; | 629 | void *data; |
| 611 | int (*jack_status_check)(void *data); | 630 | int (*jack_status_check)(void *data); |
| @@ -668,6 +687,7 @@ struct snd_soc_component { | |||
| 668 | unsigned int active; | 687 | unsigned int active; |
| 669 | 688 | ||
| 670 | unsigned int ignore_pmdown_time:1; /* pmdown_time is ignored at stop */ | 689 | unsigned int ignore_pmdown_time:1; /* pmdown_time is ignored at stop */ |
| 690 | unsigned int registered_as_component:1; | ||
| 671 | 691 | ||
| 672 | struct list_head list; | 692 | struct list_head list; |
| 673 | 693 | ||
| @@ -677,6 +697,14 @@ struct snd_soc_component { | |||
| 677 | const struct snd_soc_component_driver *driver; | 697 | const struct snd_soc_component_driver *driver; |
| 678 | 698 | ||
| 679 | struct list_head dai_list; | 699 | struct list_head dai_list; |
| 700 | |||
| 701 | int (*read)(struct snd_soc_component *, unsigned int, unsigned int *); | ||
| 702 | int (*write)(struct snd_soc_component *, unsigned int, unsigned int); | ||
| 703 | |||
| 704 | struct regmap *regmap; | ||
| 705 | int val_bytes; | ||
| 706 | |||
| 707 | struct mutex io_mutex; | ||
| 680 | }; | 708 | }; |
| 681 | 709 | ||
| 682 | /* SoC Audio Codec device */ | 710 | /* SoC Audio Codec device */ |
| @@ -691,10 +719,6 @@ struct snd_soc_codec { | |||
| 691 | struct snd_soc_card *card; | 719 | struct snd_soc_card *card; |
| 692 | struct list_head list; | 720 | struct list_head list; |
| 693 | struct list_head card_list; | 721 | struct list_head card_list; |
| 694 | int num_dai; | ||
| 695 | int (*volatile_register)(struct snd_soc_codec *, unsigned int); | ||
| 696 | int (*readable_register)(struct snd_soc_codec *, unsigned int); | ||
| 697 | int (*writable_register)(struct snd_soc_codec *, unsigned int); | ||
| 698 | 722 | ||
| 699 | /* runtime */ | 723 | /* runtime */ |
| 700 | struct snd_ac97 *ac97; /* for ad-hoc ac97 devices */ | 724 | struct snd_ac97 *ac97; /* for ad-hoc ac97 devices */ |
| @@ -704,18 +728,14 @@ struct snd_soc_codec { | |||
| 704 | unsigned int ac97_registered:1; /* Codec has been AC97 registered */ | 728 | unsigned int ac97_registered:1; /* Codec has been AC97 registered */ |
| 705 | unsigned int ac97_created:1; /* Codec has been created by SoC */ | 729 | unsigned int ac97_created:1; /* Codec has been created by SoC */ |
| 706 | unsigned int cache_init:1; /* codec cache has been initialized */ | 730 | unsigned int cache_init:1; /* codec cache has been initialized */ |
| 707 | unsigned int using_regmap:1; /* using regmap access */ | ||
| 708 | u32 cache_only; /* Suppress writes to hardware */ | 731 | u32 cache_only; /* Suppress writes to hardware */ |
| 709 | u32 cache_sync; /* Cache needs to be synced to hardware */ | 732 | u32 cache_sync; /* Cache needs to be synced to hardware */ |
| 710 | 733 | ||
| 711 | /* codec IO */ | 734 | /* codec IO */ |
| 712 | void *control_data; /* codec control (i2c/3wire) data */ | 735 | void *control_data; /* codec control (i2c/3wire) data */ |
| 713 | hw_write_t hw_write; | 736 | hw_write_t hw_write; |
| 714 | unsigned int (*read)(struct snd_soc_codec *, unsigned int); | ||
| 715 | int (*write)(struct snd_soc_codec *, unsigned int, unsigned int); | ||
| 716 | void *reg_cache; | 737 | void *reg_cache; |
| 717 | struct mutex cache_rw_mutex; | 738 | struct mutex cache_rw_mutex; |
| 718 | int val_bytes; | ||
| 719 | 739 | ||
| 720 | /* component */ | 740 | /* component */ |
| 721 | struct snd_soc_component component; | 741 | struct snd_soc_component component; |
| @@ -754,13 +774,9 @@ struct snd_soc_codec_driver { | |||
| 754 | unsigned int freq_in, unsigned int freq_out); | 774 | unsigned int freq_in, unsigned int freq_out); |
| 755 | 775 | ||
| 756 | /* codec IO */ | 776 | /* codec IO */ |
| 777 | struct regmap *(*get_regmap)(struct device *); | ||
| 757 | unsigned int (*read)(struct snd_soc_codec *, unsigned int); | 778 | unsigned int (*read)(struct snd_soc_codec *, unsigned int); |
| 758 | int (*write)(struct snd_soc_codec *, unsigned int, unsigned int); | 779 | int (*write)(struct snd_soc_codec *, unsigned int, unsigned int); |
| 759 | int (*display_register)(struct snd_soc_codec *, char *, | ||
| 760 | size_t, unsigned int); | ||
| 761 | int (*volatile_register)(struct snd_soc_codec *, unsigned int); | ||
| 762 | int (*readable_register)(struct snd_soc_codec *, unsigned int); | ||
| 763 | int (*writable_register)(struct snd_soc_codec *, unsigned int); | ||
| 764 | unsigned int reg_cache_size; | 780 | unsigned int reg_cache_size; |
| 765 | short reg_cache_step; | 781 | short reg_cache_step; |
| 766 | short reg_word_size; | 782 | short reg_word_size; |
| @@ -791,6 +807,7 @@ struct snd_soc_platform_driver { | |||
| 791 | int (*remove)(struct snd_soc_platform *); | 807 | int (*remove)(struct snd_soc_platform *); |
| 792 | int (*suspend)(struct snd_soc_dai *dai); | 808 | int (*suspend)(struct snd_soc_dai *dai); |
| 793 | int (*resume)(struct snd_soc_dai *dai); | 809 | int (*resume)(struct snd_soc_dai *dai); |
| 810 | struct snd_soc_component_driver component_driver; | ||
| 794 | 811 | ||
| 795 | /* pcm creation and destruction */ | 812 | /* pcm creation and destruction */ |
| 796 | int (*pcm_new)(struct snd_soc_pcm_runtime *); | 813 | int (*pcm_new)(struct snd_soc_pcm_runtime *); |
| @@ -835,7 +852,6 @@ struct snd_soc_platform { | |||
| 835 | int id; | 852 | int id; |
| 836 | struct device *dev; | 853 | struct device *dev; |
| 837 | const struct snd_soc_platform_driver *driver; | 854 | const struct snd_soc_platform_driver *driver; |
| 838 | struct mutex mutex; | ||
| 839 | 855 | ||
| 840 | unsigned int suspended:1; /* platform is suspended */ | 856 | unsigned int suspended:1; /* platform is suspended */ |
| 841 | unsigned int probed:1; | 857 | unsigned int probed:1; |
| @@ -844,6 +860,8 @@ struct snd_soc_platform { | |||
| 844 | struct list_head list; | 860 | struct list_head list; |
| 845 | struct list_head card_list; | 861 | struct list_head card_list; |
| 846 | 862 | ||
| 863 | struct snd_soc_component component; | ||
| 864 | |||
| 847 | struct snd_soc_dapm_context dapm; | 865 | struct snd_soc_dapm_context dapm; |
| 848 | 866 | ||
| 849 | #ifdef CONFIG_DEBUG_FS | 867 | #ifdef CONFIG_DEBUG_FS |
| @@ -931,7 +949,12 @@ struct snd_soc_dai_link { | |||
| 931 | }; | 949 | }; |
| 932 | 950 | ||
| 933 | struct snd_soc_codec_conf { | 951 | struct snd_soc_codec_conf { |
| 952 | /* | ||
| 953 | * specify device either by device name, or by | ||
| 954 | * DT/OF node, but not both. | ||
| 955 | */ | ||
| 934 | const char *dev_name; | 956 | const char *dev_name; |
| 957 | const struct device_node *of_node; | ||
| 935 | 958 | ||
| 936 | /* | 959 | /* |
| 937 | * optional map of kcontrol, widget and path name prefixes that are | 960 | * optional map of kcontrol, widget and path name prefixes that are |
| @@ -942,7 +965,13 @@ struct snd_soc_codec_conf { | |||
| 942 | 965 | ||
| 943 | struct snd_soc_aux_dev { | 966 | struct snd_soc_aux_dev { |
| 944 | const char *name; /* Codec name */ | 967 | const char *name; /* Codec name */ |
| 945 | const char *codec_name; /* for multi-codec */ | 968 | |
| 969 | /* | ||
| 970 | * specify multi-codec either by device name, or by | ||
| 971 | * DT/OF node, but not both. | ||
| 972 | */ | ||
| 973 | const char *codec_name; | ||
| 974 | const struct device_node *codec_of_node; | ||
| 946 | 975 | ||
| 947 | /* codec/machine specific init - e.g. add machine controls */ | 976 | /* codec/machine specific init - e.g. add machine controls */ |
| 948 | int (*init)(struct snd_soc_dapm_context *dapm); | 977 | int (*init)(struct snd_soc_dapm_context *dapm); |
| @@ -957,7 +986,6 @@ struct snd_soc_card { | |||
| 957 | struct snd_card *snd_card; | 986 | struct snd_card *snd_card; |
| 958 | struct module *owner; | 987 | struct module *owner; |
| 959 | 988 | ||
| 960 | struct list_head list; | ||
| 961 | struct mutex mutex; | 989 | struct mutex mutex; |
| 962 | struct mutex dapm_mutex; | 990 | struct mutex dapm_mutex; |
| 963 | 991 | ||
| @@ -1020,7 +1048,6 @@ struct snd_soc_card { | |||
| 1020 | /* lists of probed devices belonging to this card */ | 1048 | /* lists of probed devices belonging to this card */ |
| 1021 | struct list_head codec_dev_list; | 1049 | struct list_head codec_dev_list; |
| 1022 | struct list_head platform_dev_list; | 1050 | struct list_head platform_dev_list; |
| 1023 | struct list_head dai_dev_list; | ||
| 1024 | 1051 | ||
| 1025 | struct list_head widgets; | 1052 | struct list_head widgets; |
| 1026 | struct list_head paths; | 1053 | struct list_head paths; |
| @@ -1090,6 +1117,10 @@ struct soc_bytes { | |||
| 1090 | u32 mask; | 1117 | u32 mask; |
| 1091 | }; | 1118 | }; |
| 1092 | 1119 | ||
| 1120 | struct soc_bytes_ext { | ||
| 1121 | int max; | ||
| 1122 | }; | ||
| 1123 | |||
| 1093 | /* multi register control */ | 1124 | /* multi register control */ |
| 1094 | struct soc_mreg_control { | 1125 | struct soc_mreg_control { |
| 1095 | long min, max; | 1126 | long min, max; |
| @@ -1120,10 +1151,66 @@ static inline struct snd_soc_codec *snd_soc_component_to_codec( | |||
| 1120 | return container_of(component, struct snd_soc_codec, component); | 1151 | return container_of(component, struct snd_soc_codec, component); |
| 1121 | } | 1152 | } |
| 1122 | 1153 | ||
| 1154 | /** | ||
| 1155 | * snd_soc_component_to_platform() - Casts a component to the platform it is embedded in | ||
| 1156 | * @component: The component to cast to a platform | ||
| 1157 | * | ||
| 1158 | * This function must only be used on components that are known to be platforms. | ||
| 1159 | * Otherwise the behavior is undefined. | ||
| 1160 | */ | ||
| 1161 | static inline struct snd_soc_platform *snd_soc_component_to_platform( | ||
| 1162 | struct snd_soc_component *component) | ||
| 1163 | { | ||
| 1164 | return container_of(component, struct snd_soc_platform, component); | ||
| 1165 | } | ||
| 1166 | |||
| 1167 | /** | ||
| 1168 | * snd_soc_dapm_to_codec() - Casts a DAPM context to the CODEC it is embedded in | ||
| 1169 | * @dapm: The DAPM context to cast to the CODEC | ||
| 1170 | * | ||
| 1171 | * This function must only be used on DAPM contexts that are known to be part of | ||
| 1172 | * a CODEC (e.g. in a CODEC driver). Otherwise the behavior is undefined. | ||
| 1173 | */ | ||
| 1174 | static inline struct snd_soc_codec *snd_soc_dapm_to_codec( | ||
| 1175 | struct snd_soc_dapm_context *dapm) | ||
| 1176 | { | ||
| 1177 | return container_of(dapm, struct snd_soc_codec, dapm); | ||
| 1178 | } | ||
| 1179 | |||
| 1180 | /** | ||
| 1181 | * snd_soc_dapm_to_platform() - Casts a DAPM context to the platform it is | ||
| 1182 | * embedded in | ||
| 1183 | * @dapm: The DAPM context to cast to the platform. | ||
| 1184 | * | ||
| 1185 | * This function must only be used on DAPM contexts that are known to be part of | ||
| 1186 | * a platform (e.g. in a platform driver). Otherwise the behavior is undefined. | ||
| 1187 | */ | ||
| 1188 | static inline struct snd_soc_platform *snd_soc_dapm_to_platform( | ||
| 1189 | struct snd_soc_dapm_context *dapm) | ||
| 1190 | { | ||
| 1191 | return container_of(dapm, struct snd_soc_platform, dapm); | ||
| 1192 | } | ||
| 1193 | |||
| 1123 | /* codec IO */ | 1194 | /* codec IO */ |
| 1124 | unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg); | 1195 | unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg); |
| 1125 | unsigned int snd_soc_write(struct snd_soc_codec *codec, | 1196 | int snd_soc_write(struct snd_soc_codec *codec, unsigned int reg, |
| 1126 | unsigned int reg, unsigned int val); | 1197 | unsigned int val); |
| 1198 | |||
| 1199 | /* component IO */ | ||
| 1200 | int snd_soc_component_read(struct snd_soc_component *component, | ||
| 1201 | unsigned int reg, unsigned int *val); | ||
| 1202 | int snd_soc_component_write(struct snd_soc_component *component, | ||
| 1203 | unsigned int reg, unsigned int val); | ||
| 1204 | int snd_soc_component_update_bits(struct snd_soc_component *component, | ||
| 1205 | unsigned int reg, unsigned int mask, unsigned int val); | ||
| 1206 | int snd_soc_component_update_bits_async(struct snd_soc_component *component, | ||
| 1207 | unsigned int reg, unsigned int mask, unsigned int val); | ||
| 1208 | void snd_soc_component_async_complete(struct snd_soc_component *component); | ||
| 1209 | int snd_soc_component_test_bits(struct snd_soc_component *component, | ||
| 1210 | unsigned int reg, unsigned int mask, unsigned int value); | ||
| 1211 | |||
| 1212 | int snd_soc_component_init_io(struct snd_soc_component *component, | ||
| 1213 | struct regmap *regmap); | ||
| 1127 | 1214 | ||
| 1128 | /* device driver data */ | 1215 | /* device driver data */ |
| 1129 | 1216 | ||
| @@ -1173,7 +1260,6 @@ static inline void *snd_soc_pcm_get_drvdata(struct snd_soc_pcm_runtime *rtd) | |||
| 1173 | 1260 | ||
| 1174 | static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card) | 1261 | static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card) |
| 1175 | { | 1262 | { |
| 1176 | INIT_LIST_HEAD(&card->dai_dev_list); | ||
| 1177 | INIT_LIST_HEAD(&card->codec_dev_list); | 1263 | INIT_LIST_HEAD(&card->codec_dev_list); |
| 1178 | INIT_LIST_HEAD(&card->platform_dev_list); | 1264 | INIT_LIST_HEAD(&card->platform_dev_list); |
| 1179 | INIT_LIST_HEAD(&card->widgets); | 1265 | INIT_LIST_HEAD(&card->widgets); |
| @@ -1228,6 +1314,50 @@ static inline bool snd_soc_codec_is_active(struct snd_soc_codec *codec) | |||
| 1228 | return snd_soc_component_is_active(&codec->component); | 1314 | return snd_soc_component_is_active(&codec->component); |
| 1229 | } | 1315 | } |
| 1230 | 1316 | ||
| 1317 | /** | ||
| 1318 | * snd_soc_kcontrol_component() - Returns the component that registered the | ||
| 1319 | * control | ||
| 1320 | * @kcontrol: The control for which to get the component | ||
| 1321 | * | ||
| 1322 | * Note: This function will work correctly if the control has been registered | ||
| 1323 | * for a component. Either with snd_soc_add_codec_controls() or | ||
| 1324 | * snd_soc_add_platform_controls() or via table based setup for either a | ||
| 1325 | * CODEC, a platform or component driver. Otherwise the behavior is undefined. | ||
| 1326 | */ | ||
| 1327 | static inline struct snd_soc_component *snd_soc_kcontrol_component( | ||
| 1328 | struct snd_kcontrol *kcontrol) | ||
| 1329 | { | ||
| 1330 | return snd_kcontrol_chip(kcontrol); | ||
| 1331 | } | ||
| 1332 | |||
| 1333 | /** | ||
| 1334 | * snd_soc_kcontrol_codec() - Returns the CODEC that registered the control | ||
| 1335 | * @kcontrol: The control for which to get the CODEC | ||
| 1336 | * | ||
| 1337 | * Note: This function will only work correctly if the control has been | ||
| 1338 | * registered with snd_soc_add_codec_controls() or via table based setup of | ||
| 1339 | * snd_soc_codec_driver. Otherwise the behavior is undefined. | ||
| 1340 | */ | ||
| 1341 | static inline struct snd_soc_codec *snd_soc_kcontrol_codec( | ||
| 1342 | struct snd_kcontrol *kcontrol) | ||
| 1343 | { | ||
| 1344 | return snd_soc_component_to_codec(snd_soc_kcontrol_component(kcontrol)); | ||
| 1345 | } | ||
| 1346 | |||
| 1347 | /** | ||
| 1348 | * snd_soc_kcontrol_platform() - Returns the platform that registerd the control | ||
| 1349 | * @kcontrol: The control for which to get the platform | ||
| 1350 | * | ||
| 1351 | * Note: This function will only work correctly if the control has been | ||
| 1352 | * registered with snd_soc_add_platform_controls() or via table based setup of | ||
| 1353 | * a snd_soc_platform_driver. Otherwise the behavior is undefined. | ||
| 1354 | */ | ||
| 1355 | static inline struct snd_soc_platform *snd_soc_kcontrol_platform( | ||
| 1356 | struct snd_kcontrol *kcontrol) | ||
| 1357 | { | ||
| 1358 | return snd_soc_component_to_platform(snd_soc_kcontrol_component(kcontrol)); | ||
| 1359 | } | ||
| 1360 | |||
| 1231 | int snd_soc_util_init(void); | 1361 | int snd_soc_util_init(void); |
| 1232 | void snd_soc_util_exit(void); | 1362 | void snd_soc_util_exit(void); |
| 1233 | 1363 | ||
| @@ -1241,7 +1371,9 @@ int snd_soc_of_parse_tdm_slot(struct device_node *np, | |||
| 1241 | int snd_soc_of_parse_audio_routing(struct snd_soc_card *card, | 1371 | int snd_soc_of_parse_audio_routing(struct snd_soc_card *card, |
| 1242 | const char *propname); | 1372 | const char *propname); |
| 1243 | unsigned int snd_soc_of_parse_daifmt(struct device_node *np, | 1373 | unsigned int snd_soc_of_parse_daifmt(struct device_node *np, |
| 1244 | const char *prefix); | 1374 | const char *prefix, |
| 1375 | struct device_node **bitclkmaster, | ||
| 1376 | struct device_node **framemaster); | ||
| 1245 | int snd_soc_of_get_dai_name(struct device_node *of_node, | 1377 | int snd_soc_of_get_dai_name(struct device_node *of_node, |
| 1246 | const char **dai_name); | 1378 | const char **dai_name); |
| 1247 | 1379 | ||
diff --git a/include/sound/sta350.h b/include/sound/sta350.h new file mode 100644 index 000000000000..42edceb096a0 --- /dev/null +++ b/include/sound/sta350.h | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | /* | ||
| 2 | * Platform data for ST STA350 ASoC codec driver. | ||
| 3 | * | ||
| 4 | * Copyright: 2014 Raumfeld GmbH | ||
| 5 | * Author: Sven Brandau <info@brandau.biz> | ||
| 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 | #ifndef __LINUX_SND__STA350_H | ||
| 13 | #define __LINUX_SND__STA350_H | ||
| 14 | |||
| 15 | #define STA350_OCFG_2CH 0 | ||
| 16 | #define STA350_OCFG_2_1CH 1 | ||
| 17 | #define STA350_OCFG_1CH 3 | ||
| 18 | |||
| 19 | #define STA350_OM_CH1 0 | ||
| 20 | #define STA350_OM_CH2 1 | ||
| 21 | #define STA350_OM_CH3 2 | ||
| 22 | |||
| 23 | #define STA350_THERMAL_ADJUSTMENT_ENABLE 1 | ||
| 24 | #define STA350_THERMAL_RECOVERY_ENABLE 2 | ||
| 25 | #define STA350_FAULT_DETECT_RECOVERY_BYPASS 1 | ||
| 26 | |||
| 27 | #define STA350_FFX_PM_DROP_COMP 0 | ||
| 28 | #define STA350_FFX_PM_TAPERED_COMP 1 | ||
| 29 | #define STA350_FFX_PM_FULL_POWER 2 | ||
| 30 | #define STA350_FFX_PM_VARIABLE_DROP_COMP 3 | ||
| 31 | |||
| 32 | |||
| 33 | struct sta350_platform_data { | ||
| 34 | u8 output_conf; | ||
| 35 | u8 ch1_output_mapping; | ||
| 36 | u8 ch2_output_mapping; | ||
| 37 | u8 ch3_output_mapping; | ||
| 38 | u8 ffx_power_output_mode; | ||
| 39 | u8 drop_compensation_ns; | ||
| 40 | u8 powerdown_delay_divider; | ||
| 41 | unsigned int thermal_warning_recovery:1; | ||
| 42 | unsigned int thermal_warning_adjustment:1; | ||
| 43 | unsigned int fault_detect_recovery:1; | ||
| 44 | unsigned int oc_warning_adjustment:1; | ||
| 45 | unsigned int max_power_use_mpcc:1; | ||
| 46 | unsigned int max_power_correction:1; | ||
| 47 | unsigned int am_reduction_mode:1; | ||
| 48 | unsigned int odd_pwm_speed_mode:1; | ||
| 49 | unsigned int distortion_compensation:1; | ||
| 50 | unsigned int invalid_input_detect_mute:1; | ||
| 51 | unsigned int activate_mute_output:1; | ||
| 52 | unsigned int bridge_immediate_off:1; | ||
| 53 | unsigned int noise_shape_dc_cut:1; | ||
| 54 | unsigned int powerdown_master_vol:1; | ||
| 55 | }; | ||
| 56 | |||
| 57 | #endif /* __LINUX_SND__STA350_H */ | ||
diff --git a/include/trace/events/asoc.h b/include/trace/events/asoc.h index 03996b2bb04f..c75c795a377b 100644 --- a/include/trace/events/asoc.h +++ b/include/trace/events/asoc.h | |||
| @@ -11,102 +11,10 @@ | |||
| 11 | 11 | ||
| 12 | struct snd_soc_jack; | 12 | struct snd_soc_jack; |
| 13 | struct snd_soc_codec; | 13 | struct snd_soc_codec; |
| 14 | struct snd_soc_platform; | ||
| 15 | struct snd_soc_card; | 14 | struct snd_soc_card; |
| 16 | struct snd_soc_dapm_widget; | 15 | struct snd_soc_dapm_widget; |
| 17 | struct snd_soc_dapm_path; | 16 | struct snd_soc_dapm_path; |
| 18 | 17 | ||
| 19 | /* | ||
| 20 | * Log register events | ||
| 21 | */ | ||
| 22 | DECLARE_EVENT_CLASS(snd_soc_reg, | ||
| 23 | |||
| 24 | TP_PROTO(struct snd_soc_codec *codec, unsigned int reg, | ||
| 25 | unsigned int val), | ||
| 26 | |||
| 27 | TP_ARGS(codec, reg, val), | ||
| 28 | |||
| 29 | TP_STRUCT__entry( | ||
| 30 | __string( name, codec->name ) | ||
| 31 | __field( int, id ) | ||
| 32 | __field( unsigned int, reg ) | ||
| 33 | __field( unsigned int, val ) | ||
| 34 | ), | ||
| 35 | |||
| 36 | TP_fast_assign( | ||
| 37 | __assign_str(name, codec->name); | ||
| 38 | __entry->id = codec->id; | ||
| 39 | __entry->reg = reg; | ||
| 40 | __entry->val = val; | ||
| 41 | ), | ||
| 42 | |||
| 43 | TP_printk("codec=%s.%d reg=%x val=%x", __get_str(name), | ||
| 44 | (int)__entry->id, (unsigned int)__entry->reg, | ||
| 45 | (unsigned int)__entry->val) | ||
| 46 | ); | ||
| 47 | |||
| 48 | DEFINE_EVENT(snd_soc_reg, snd_soc_reg_write, | ||
| 49 | |||
| 50 | TP_PROTO(struct snd_soc_codec *codec, unsigned int reg, | ||
| 51 | unsigned int val), | ||
| 52 | |||
| 53 | TP_ARGS(codec, reg, val) | ||
| 54 | |||
| 55 | ); | ||
| 56 | |||
| 57 | DEFINE_EVENT(snd_soc_reg, snd_soc_reg_read, | ||
| 58 | |||
| 59 | TP_PROTO(struct snd_soc_codec *codec, unsigned int reg, | ||
| 60 | unsigned int val), | ||
| 61 | |||
| 62 | TP_ARGS(codec, reg, val) | ||
| 63 | |||
| 64 | ); | ||
| 65 | |||
| 66 | DECLARE_EVENT_CLASS(snd_soc_preg, | ||
| 67 | |||
| 68 | TP_PROTO(struct snd_soc_platform *platform, unsigned int reg, | ||
| 69 | unsigned int val), | ||
| 70 | |||
| 71 | TP_ARGS(platform, reg, val), | ||
| 72 | |||
| 73 | TP_STRUCT__entry( | ||
| 74 | __string( name, platform->name ) | ||
| 75 | __field( int, id ) | ||
| 76 | __field( unsigned int, reg ) | ||
| 77 | __field( unsigned int, val ) | ||
| 78 | ), | ||
| 79 | |||
| 80 | TP_fast_assign( | ||
| 81 | __assign_str(name, platform->name); | ||
| 82 | __entry->id = platform->id; | ||
| 83 | __entry->reg = reg; | ||
| 84 | __entry->val = val; | ||
| 85 | ), | ||
| 86 | |||
| 87 | TP_printk("platform=%s.%d reg=%x val=%x", __get_str(name), | ||
| 88 | (int)__entry->id, (unsigned int)__entry->reg, | ||
| 89 | (unsigned int)__entry->val) | ||
| 90 | ); | ||
| 91 | |||
| 92 | DEFINE_EVENT(snd_soc_preg, snd_soc_preg_write, | ||
| 93 | |||
| 94 | TP_PROTO(struct snd_soc_platform *platform, unsigned int reg, | ||
| 95 | unsigned int val), | ||
| 96 | |||
| 97 | TP_ARGS(platform, reg, val) | ||
| 98 | |||
| 99 | ); | ||
| 100 | |||
| 101 | DEFINE_EVENT(snd_soc_preg, snd_soc_preg_read, | ||
| 102 | |||
| 103 | TP_PROTO(struct snd_soc_platform *platform, unsigned int reg, | ||
| 104 | unsigned int val), | ||
| 105 | |||
| 106 | TP_ARGS(platform, reg, val) | ||
| 107 | |||
| 108 | ); | ||
| 109 | |||
| 110 | DECLARE_EVENT_CLASS(snd_soc_card, | 18 | DECLARE_EVENT_CLASS(snd_soc_card, |
| 111 | 19 | ||
| 112 | TP_PROTO(struct snd_soc_card *card, int val), | 20 | TP_PROTO(struct snd_soc_card *card, int val), |
diff --git a/include/trace/events/compaction.h b/include/trace/events/compaction.h index 06f544ef2f6f..c6814b917bdf 100644 --- a/include/trace/events/compaction.h +++ b/include/trace/events/compaction.h | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #define _TRACE_COMPACTION_H | 5 | #define _TRACE_COMPACTION_H |
| 6 | 6 | ||
| 7 | #include <linux/types.h> | 7 | #include <linux/types.h> |
| 8 | #include <linux/list.h> | ||
| 8 | #include <linux/tracepoint.h> | 9 | #include <linux/tracepoint.h> |
| 9 | #include <trace/events/gfpflags.h> | 10 | #include <trace/events/gfpflags.h> |
| 10 | 11 | ||
| @@ -47,10 +48,11 @@ DEFINE_EVENT(mm_compaction_isolate_template, mm_compaction_isolate_freepages, | |||
| 47 | 48 | ||
| 48 | TRACE_EVENT(mm_compaction_migratepages, | 49 | TRACE_EVENT(mm_compaction_migratepages, |
| 49 | 50 | ||
| 50 | TP_PROTO(unsigned long nr_migrated, | 51 | TP_PROTO(unsigned long nr_all, |
| 51 | unsigned long nr_failed), | 52 | int migrate_rc, |
| 53 | struct list_head *migratepages), | ||
| 52 | 54 | ||
| 53 | TP_ARGS(nr_migrated, nr_failed), | 55 | TP_ARGS(nr_all, migrate_rc, migratepages), |
| 54 | 56 | ||
| 55 | TP_STRUCT__entry( | 57 | TP_STRUCT__entry( |
| 56 | __field(unsigned long, nr_migrated) | 58 | __field(unsigned long, nr_migrated) |
| @@ -58,7 +60,22 @@ TRACE_EVENT(mm_compaction_migratepages, | |||
| 58 | ), | 60 | ), |
| 59 | 61 | ||
| 60 | TP_fast_assign( | 62 | TP_fast_assign( |
| 61 | __entry->nr_migrated = nr_migrated; | 63 | unsigned long nr_failed = 0; |
| 64 | struct list_head *page_lru; | ||
| 65 | |||
| 66 | /* | ||
| 67 | * migrate_pages() returns either a non-negative number | ||
| 68 | * with the number of pages that failed migration, or an | ||
| 69 | * error code, in which case we need to count the remaining | ||
| 70 | * pages manually | ||
| 71 | */ | ||
| 72 | if (migrate_rc >= 0) | ||
| 73 | nr_failed = migrate_rc; | ||
| 74 | else | ||
| 75 | list_for_each(page_lru, migratepages) | ||
| 76 | nr_failed++; | ||
| 77 | |||
| 78 | __entry->nr_migrated = nr_all - nr_failed; | ||
| 62 | __entry->nr_failed = nr_failed; | 79 | __entry->nr_failed = nr_failed; |
| 63 | ), | 80 | ), |
| 64 | 81 | ||
diff --git a/include/trace/events/ext4.h b/include/trace/events/ext4.h index 6a1a0245474f..d4f70a7fe876 100644 --- a/include/trace/events/ext4.h +++ b/include/trace/events/ext4.h | |||
| @@ -36,7 +36,7 @@ struct extent_status; | |||
| 36 | 36 | ||
| 37 | #define show_map_flags(flags) __print_flags(flags, "|", \ | 37 | #define show_map_flags(flags) __print_flags(flags, "|", \ |
| 38 | { EXT4_GET_BLOCKS_CREATE, "CREATE" }, \ | 38 | { EXT4_GET_BLOCKS_CREATE, "CREATE" }, \ |
| 39 | { EXT4_GET_BLOCKS_UNINIT_EXT, "UNINIT" }, \ | 39 | { EXT4_GET_BLOCKS_UNWRIT_EXT, "UNWRIT" }, \ |
| 40 | { EXT4_GET_BLOCKS_DELALLOC_RESERVE, "DELALLOC" }, \ | 40 | { EXT4_GET_BLOCKS_DELALLOC_RESERVE, "DELALLOC" }, \ |
| 41 | { EXT4_GET_BLOCKS_PRE_IO, "PRE_IO" }, \ | 41 | { EXT4_GET_BLOCKS_PRE_IO, "PRE_IO" }, \ |
| 42 | { EXT4_GET_BLOCKS_CONVERT, "CONVERT" }, \ | 42 | { EXT4_GET_BLOCKS_CONVERT, "CONVERT" }, \ |
| @@ -51,7 +51,6 @@ struct extent_status; | |||
| 51 | { EXT4_MAP_MAPPED, "M" }, \ | 51 | { EXT4_MAP_MAPPED, "M" }, \ |
| 52 | { EXT4_MAP_UNWRITTEN, "U" }, \ | 52 | { EXT4_MAP_UNWRITTEN, "U" }, \ |
| 53 | { EXT4_MAP_BOUNDARY, "B" }, \ | 53 | { EXT4_MAP_BOUNDARY, "B" }, \ |
| 54 | { EXT4_MAP_UNINIT, "u" }, \ | ||
| 55 | { EXT4_MAP_FROM_CLUSTER, "C" }) | 54 | { EXT4_MAP_FROM_CLUSTER, "C" }) |
| 56 | 55 | ||
| 57 | #define show_free_flags(flags) __print_flags(flags, "|", \ | 56 | #define show_free_flags(flags) __print_flags(flags, "|", \ |
| @@ -1497,7 +1496,7 @@ DEFINE_EVENT(ext4__truncate, ext4_truncate_exit, | |||
| 1497 | TP_ARGS(inode) | 1496 | TP_ARGS(inode) |
| 1498 | ); | 1497 | ); |
| 1499 | 1498 | ||
| 1500 | /* 'ux' is the uninitialized extent. */ | 1499 | /* 'ux' is the unwritten extent. */ |
| 1501 | TRACE_EVENT(ext4_ext_convert_to_initialized_enter, | 1500 | TRACE_EVENT(ext4_ext_convert_to_initialized_enter, |
| 1502 | TP_PROTO(struct inode *inode, struct ext4_map_blocks *map, | 1501 | TP_PROTO(struct inode *inode, struct ext4_map_blocks *map, |
| 1503 | struct ext4_extent *ux), | 1502 | struct ext4_extent *ux), |
| @@ -1533,7 +1532,7 @@ TRACE_EVENT(ext4_ext_convert_to_initialized_enter, | |||
| 1533 | ); | 1532 | ); |
| 1534 | 1533 | ||
| 1535 | /* | 1534 | /* |
| 1536 | * 'ux' is the uninitialized extent. | 1535 | * 'ux' is the unwritten extent. |
| 1537 | * 'ix' is the initialized extent to which blocks are transferred. | 1536 | * 'ix' is the initialized extent to which blocks are transferred. |
| 1538 | */ | 1537 | */ |
| 1539 | TRACE_EVENT(ext4_ext_convert_to_initialized_fastpath, | 1538 | TRACE_EVENT(ext4_ext_convert_to_initialized_fastpath, |
| @@ -1811,7 +1810,7 @@ DEFINE_EVENT(ext4__trim, ext4_trim_all_free, | |||
| 1811 | TP_ARGS(sb, group, start, len) | 1810 | TP_ARGS(sb, group, start, len) |
| 1812 | ); | 1811 | ); |
| 1813 | 1812 | ||
| 1814 | TRACE_EVENT(ext4_ext_handle_uninitialized_extents, | 1813 | TRACE_EVENT(ext4_ext_handle_unwritten_extents, |
| 1815 | TP_PROTO(struct inode *inode, struct ext4_map_blocks *map, int flags, | 1814 | TP_PROTO(struct inode *inode, struct ext4_map_blocks *map, int flags, |
| 1816 | unsigned int allocated, ext4_fsblk_t newblock), | 1815 | unsigned int allocated, ext4_fsblk_t newblock), |
| 1817 | 1816 | ||
diff --git a/include/trace/events/f2fs.h b/include/trace/events/f2fs.h index 67f38faac589..b983990b4a9f 100644 --- a/include/trace/events/f2fs.h +++ b/include/trace/events/f2fs.h | |||
| @@ -659,6 +659,66 @@ DEFINE_EVENT_CONDITION(f2fs__submit_bio, f2fs_submit_read_bio, | |||
| 659 | TP_CONDITION(bio) | 659 | TP_CONDITION(bio) |
| 660 | ); | 660 | ); |
| 661 | 661 | ||
| 662 | TRACE_EVENT(f2fs_write_begin, | ||
| 663 | |||
| 664 | TP_PROTO(struct inode *inode, loff_t pos, unsigned int len, | ||
| 665 | unsigned int flags), | ||
| 666 | |||
| 667 | TP_ARGS(inode, pos, len, flags), | ||
| 668 | |||
| 669 | TP_STRUCT__entry( | ||
| 670 | __field(dev_t, dev) | ||
| 671 | __field(ino_t, ino) | ||
| 672 | __field(loff_t, pos) | ||
| 673 | __field(unsigned int, len) | ||
| 674 | __field(unsigned int, flags) | ||
| 675 | ), | ||
| 676 | |||
| 677 | TP_fast_assign( | ||
| 678 | __entry->dev = inode->i_sb->s_dev; | ||
| 679 | __entry->ino = inode->i_ino; | ||
| 680 | __entry->pos = pos; | ||
| 681 | __entry->len = len; | ||
| 682 | __entry->flags = flags; | ||
| 683 | ), | ||
| 684 | |||
| 685 | TP_printk("dev = (%d,%d), ino = %lu, pos = %llu, len = %u, flags = %u", | ||
| 686 | show_dev_ino(__entry), | ||
| 687 | (unsigned long long)__entry->pos, | ||
| 688 | __entry->len, | ||
| 689 | __entry->flags) | ||
| 690 | ); | ||
| 691 | |||
| 692 | TRACE_EVENT(f2fs_write_end, | ||
| 693 | |||
| 694 | TP_PROTO(struct inode *inode, loff_t pos, unsigned int len, | ||
| 695 | unsigned int copied), | ||
| 696 | |||
| 697 | TP_ARGS(inode, pos, len, copied), | ||
| 698 | |||
| 699 | TP_STRUCT__entry( | ||
| 700 | __field(dev_t, dev) | ||
| 701 | __field(ino_t, ino) | ||
| 702 | __field(loff_t, pos) | ||
| 703 | __field(unsigned int, len) | ||
| 704 | __field(unsigned int, copied) | ||
| 705 | ), | ||
| 706 | |||
| 707 | TP_fast_assign( | ||
| 708 | __entry->dev = inode->i_sb->s_dev; | ||
| 709 | __entry->ino = inode->i_ino; | ||
| 710 | __entry->pos = pos; | ||
| 711 | __entry->len = len; | ||
| 712 | __entry->copied = copied; | ||
| 713 | ), | ||
| 714 | |||
| 715 | TP_printk("dev = (%d,%d), ino = %lu, pos = %llu, len = %u, copied = %u", | ||
| 716 | show_dev_ino(__entry), | ||
| 717 | (unsigned long long)__entry->pos, | ||
| 718 | __entry->len, | ||
| 719 | __entry->copied) | ||
| 720 | ); | ||
| 721 | |||
| 662 | DECLARE_EVENT_CLASS(f2fs__page, | 722 | DECLARE_EVENT_CLASS(f2fs__page, |
| 663 | 723 | ||
| 664 | TP_PROTO(struct page *page, int type), | 724 | TP_PROTO(struct page *page, int type), |
| @@ -672,6 +732,7 @@ DECLARE_EVENT_CLASS(f2fs__page, | |||
| 672 | __field(int, dir) | 732 | __field(int, dir) |
| 673 | __field(pgoff_t, index) | 733 | __field(pgoff_t, index) |
| 674 | __field(int, dirty) | 734 | __field(int, dirty) |
| 735 | __field(int, uptodate) | ||
| 675 | ), | 736 | ), |
| 676 | 737 | ||
| 677 | TP_fast_assign( | 738 | TP_fast_assign( |
| @@ -681,14 +742,31 @@ DECLARE_EVENT_CLASS(f2fs__page, | |||
| 681 | __entry->dir = S_ISDIR(page->mapping->host->i_mode); | 742 | __entry->dir = S_ISDIR(page->mapping->host->i_mode); |
| 682 | __entry->index = page->index; | 743 | __entry->index = page->index; |
| 683 | __entry->dirty = PageDirty(page); | 744 | __entry->dirty = PageDirty(page); |
| 745 | __entry->uptodate = PageUptodate(page); | ||
| 684 | ), | 746 | ), |
| 685 | 747 | ||
| 686 | TP_printk("dev = (%d,%d), ino = %lu, %s, %s, index = %lu, dirty = %d", | 748 | TP_printk("dev = (%d,%d), ino = %lu, %s, %s, index = %lu, " |
| 749 | "dirty = %d, uptodate = %d", | ||
| 687 | show_dev_ino(__entry), | 750 | show_dev_ino(__entry), |
| 688 | show_block_type(__entry->type), | 751 | show_block_type(__entry->type), |
| 689 | show_file_type(__entry->dir), | 752 | show_file_type(__entry->dir), |
| 690 | (unsigned long)__entry->index, | 753 | (unsigned long)__entry->index, |
| 691 | __entry->dirty) | 754 | __entry->dirty, |
| 755 | __entry->uptodate) | ||
| 756 | ); | ||
| 757 | |||
| 758 | DEFINE_EVENT(f2fs__page, f2fs_writepage, | ||
| 759 | |||
| 760 | TP_PROTO(struct page *page, int type), | ||
| 761 | |||
| 762 | TP_ARGS(page, type) | ||
| 763 | ); | ||
| 764 | |||
| 765 | DEFINE_EVENT(f2fs__page, f2fs_readpage, | ||
| 766 | |||
| 767 | TP_PROTO(struct page *page, int type), | ||
| 768 | |||
| 769 | TP_ARGS(page, type) | ||
| 692 | ); | 770 | ); |
| 693 | 771 | ||
| 694 | DEFINE_EVENT(f2fs__page, f2fs_set_page_dirty, | 772 | DEFINE_EVENT(f2fs__page, f2fs_set_page_dirty, |
| @@ -705,6 +783,70 @@ DEFINE_EVENT(f2fs__page, f2fs_vm_page_mkwrite, | |||
| 705 | TP_ARGS(page, type) | 783 | TP_ARGS(page, type) |
| 706 | ); | 784 | ); |
| 707 | 785 | ||
| 786 | TRACE_EVENT(f2fs_writepages, | ||
| 787 | |||
| 788 | TP_PROTO(struct inode *inode, struct writeback_control *wbc, int type), | ||
| 789 | |||
| 790 | TP_ARGS(inode, wbc, type), | ||
| 791 | |||
| 792 | TP_STRUCT__entry( | ||
| 793 | __field(dev_t, dev) | ||
| 794 | __field(ino_t, ino) | ||
| 795 | __field(int, type) | ||
| 796 | __field(int, dir) | ||
| 797 | __field(long, nr_to_write) | ||
| 798 | __field(long, pages_skipped) | ||
| 799 | __field(loff_t, range_start) | ||
| 800 | __field(loff_t, range_end) | ||
| 801 | __field(pgoff_t, writeback_index) | ||
| 802 | __field(int, sync_mode) | ||
| 803 | __field(char, for_kupdate) | ||
| 804 | __field(char, for_background) | ||
| 805 | __field(char, tagged_writepages) | ||
| 806 | __field(char, for_reclaim) | ||
| 807 | __field(char, range_cyclic) | ||
| 808 | __field(char, for_sync) | ||
| 809 | ), | ||
| 810 | |||
| 811 | TP_fast_assign( | ||
| 812 | __entry->dev = inode->i_sb->s_dev; | ||
| 813 | __entry->ino = inode->i_ino; | ||
| 814 | __entry->type = type; | ||
| 815 | __entry->dir = S_ISDIR(inode->i_mode); | ||
| 816 | __entry->nr_to_write = wbc->nr_to_write; | ||
| 817 | __entry->pages_skipped = wbc->pages_skipped; | ||
| 818 | __entry->range_start = wbc->range_start; | ||
| 819 | __entry->range_end = wbc->range_end; | ||
| 820 | __entry->writeback_index = inode->i_mapping->writeback_index; | ||
| 821 | __entry->sync_mode = wbc->sync_mode; | ||
| 822 | __entry->for_kupdate = wbc->for_kupdate; | ||
| 823 | __entry->for_background = wbc->for_background; | ||
| 824 | __entry->tagged_writepages = wbc->tagged_writepages; | ||
| 825 | __entry->for_reclaim = wbc->for_reclaim; | ||
| 826 | __entry->range_cyclic = wbc->range_cyclic; | ||
| 827 | __entry->for_sync = wbc->for_sync; | ||
| 828 | ), | ||
| 829 | |||
| 830 | TP_printk("dev = (%d,%d), ino = %lu, %s, %s, nr_to_write %ld, " | ||
| 831 | "skipped %ld, start %lld, end %lld, wb_idx %lu, sync_mode %d, " | ||
| 832 | "kupdate %u background %u tagged %u reclaim %u cyclic %u sync %u", | ||
| 833 | show_dev_ino(__entry), | ||
| 834 | show_block_type(__entry->type), | ||
| 835 | show_file_type(__entry->dir), | ||
| 836 | __entry->nr_to_write, | ||
| 837 | __entry->pages_skipped, | ||
| 838 | __entry->range_start, | ||
| 839 | __entry->range_end, | ||
| 840 | (unsigned long)__entry->writeback_index, | ||
| 841 | __entry->sync_mode, | ||
| 842 | __entry->for_kupdate, | ||
| 843 | __entry->for_background, | ||
| 844 | __entry->tagged_writepages, | ||
| 845 | __entry->for_reclaim, | ||
| 846 | __entry->range_cyclic, | ||
| 847 | __entry->for_sync) | ||
| 848 | ); | ||
| 849 | |||
| 708 | TRACE_EVENT(f2fs_submit_page_mbio, | 850 | TRACE_EVENT(f2fs_submit_page_mbio, |
| 709 | 851 | ||
| 710 | TP_PROTO(struct page *page, int rw, int type, block_t blk_addr), | 852 | TP_PROTO(struct page *page, int rw, int type, block_t blk_addr), |
diff --git a/include/trace/events/gfpflags.h b/include/trace/events/gfpflags.h index 1eddbf1557f2..d6fd8e5b14b7 100644 --- a/include/trace/events/gfpflags.h +++ b/include/trace/events/gfpflags.h | |||
| @@ -34,7 +34,6 @@ | |||
| 34 | {(unsigned long)__GFP_HARDWALL, "GFP_HARDWALL"}, \ | 34 | {(unsigned long)__GFP_HARDWALL, "GFP_HARDWALL"}, \ |
| 35 | {(unsigned long)__GFP_THISNODE, "GFP_THISNODE"}, \ | 35 | {(unsigned long)__GFP_THISNODE, "GFP_THISNODE"}, \ |
| 36 | {(unsigned long)__GFP_RECLAIMABLE, "GFP_RECLAIMABLE"}, \ | 36 | {(unsigned long)__GFP_RECLAIMABLE, "GFP_RECLAIMABLE"}, \ |
| 37 | {(unsigned long)__GFP_KMEMCG, "GFP_KMEMCG"}, \ | ||
| 38 | {(unsigned long)__GFP_MOVABLE, "GFP_MOVABLE"}, \ | 37 | {(unsigned long)__GFP_MOVABLE, "GFP_MOVABLE"}, \ |
| 39 | {(unsigned long)__GFP_NOTRACK, "GFP_NOTRACK"}, \ | 38 | {(unsigned long)__GFP_NOTRACK, "GFP_NOTRACK"}, \ |
| 40 | {(unsigned long)__GFP_NO_KSWAPD, "GFP_NO_KSWAPD"}, \ | 39 | {(unsigned long)__GFP_NO_KSWAPD, "GFP_NO_KSWAPD"}, \ |
diff --git a/include/trace/events/vmscan.h b/include/trace/events/vmscan.h index 132a985aba8b..69590b6ffc09 100644 --- a/include/trace/events/vmscan.h +++ b/include/trace/events/vmscan.h | |||
| @@ -191,6 +191,7 @@ TRACE_EVENT(mm_shrink_slab_start, | |||
| 191 | TP_STRUCT__entry( | 191 | TP_STRUCT__entry( |
| 192 | __field(struct shrinker *, shr) | 192 | __field(struct shrinker *, shr) |
| 193 | __field(void *, shrink) | 193 | __field(void *, shrink) |
| 194 | __field(int, nid) | ||
| 194 | __field(long, nr_objects_to_shrink) | 195 | __field(long, nr_objects_to_shrink) |
| 195 | __field(gfp_t, gfp_flags) | 196 | __field(gfp_t, gfp_flags) |
| 196 | __field(unsigned long, pgs_scanned) | 197 | __field(unsigned long, pgs_scanned) |
| @@ -203,6 +204,7 @@ TRACE_EVENT(mm_shrink_slab_start, | |||
| 203 | TP_fast_assign( | 204 | TP_fast_assign( |
| 204 | __entry->shr = shr; | 205 | __entry->shr = shr; |
| 205 | __entry->shrink = shr->scan_objects; | 206 | __entry->shrink = shr->scan_objects; |
| 207 | __entry->nid = sc->nid; | ||
| 206 | __entry->nr_objects_to_shrink = nr_objects_to_shrink; | 208 | __entry->nr_objects_to_shrink = nr_objects_to_shrink; |
| 207 | __entry->gfp_flags = sc->gfp_mask; | 209 | __entry->gfp_flags = sc->gfp_mask; |
| 208 | __entry->pgs_scanned = pgs_scanned; | 210 | __entry->pgs_scanned = pgs_scanned; |
| @@ -212,9 +214,10 @@ TRACE_EVENT(mm_shrink_slab_start, | |||
| 212 | __entry->total_scan = total_scan; | 214 | __entry->total_scan = total_scan; |
| 213 | ), | 215 | ), |
| 214 | 216 | ||
| 215 | TP_printk("%pF %p: objects to shrink %ld gfp_flags %s pgs_scanned %ld lru_pgs %ld cache items %ld delta %lld total_scan %ld", | 217 | TP_printk("%pF %p: nid: %d objects to shrink %ld gfp_flags %s pgs_scanned %ld lru_pgs %ld cache items %ld delta %lld total_scan %ld", |
| 216 | __entry->shrink, | 218 | __entry->shrink, |
| 217 | __entry->shr, | 219 | __entry->shr, |
| 220 | __entry->nid, | ||
| 218 | __entry->nr_objects_to_shrink, | 221 | __entry->nr_objects_to_shrink, |
| 219 | show_gfp_flags(__entry->gfp_flags), | 222 | show_gfp_flags(__entry->gfp_flags), |
| 220 | __entry->pgs_scanned, | 223 | __entry->pgs_scanned, |
| @@ -225,13 +228,15 @@ TRACE_EVENT(mm_shrink_slab_start, | |||
| 225 | ); | 228 | ); |
| 226 | 229 | ||
| 227 | TRACE_EVENT(mm_shrink_slab_end, | 230 | TRACE_EVENT(mm_shrink_slab_end, |
| 228 | TP_PROTO(struct shrinker *shr, int shrinker_retval, | 231 | TP_PROTO(struct shrinker *shr, int nid, int shrinker_retval, |
| 229 | long unused_scan_cnt, long new_scan_cnt), | 232 | long unused_scan_cnt, long new_scan_cnt, long total_scan), |
| 230 | 233 | ||
| 231 | TP_ARGS(shr, shrinker_retval, unused_scan_cnt, new_scan_cnt), | 234 | TP_ARGS(shr, nid, shrinker_retval, unused_scan_cnt, new_scan_cnt, |
| 235 | total_scan), | ||
| 232 | 236 | ||
| 233 | TP_STRUCT__entry( | 237 | TP_STRUCT__entry( |
| 234 | __field(struct shrinker *, shr) | 238 | __field(struct shrinker *, shr) |
| 239 | __field(int, nid) | ||
| 235 | __field(void *, shrink) | 240 | __field(void *, shrink) |
| 236 | __field(long, unused_scan) | 241 | __field(long, unused_scan) |
| 237 | __field(long, new_scan) | 242 | __field(long, new_scan) |
| @@ -241,16 +246,18 @@ TRACE_EVENT(mm_shrink_slab_end, | |||
| 241 | 246 | ||
| 242 | TP_fast_assign( | 247 | TP_fast_assign( |
| 243 | __entry->shr = shr; | 248 | __entry->shr = shr; |
| 249 | __entry->nid = nid; | ||
| 244 | __entry->shrink = shr->scan_objects; | 250 | __entry->shrink = shr->scan_objects; |
| 245 | __entry->unused_scan = unused_scan_cnt; | 251 | __entry->unused_scan = unused_scan_cnt; |
| 246 | __entry->new_scan = new_scan_cnt; | 252 | __entry->new_scan = new_scan_cnt; |
| 247 | __entry->retval = shrinker_retval; | 253 | __entry->retval = shrinker_retval; |
| 248 | __entry->total_scan = new_scan_cnt - unused_scan_cnt; | 254 | __entry->total_scan = total_scan; |
| 249 | ), | 255 | ), |
| 250 | 256 | ||
| 251 | TP_printk("%pF %p: unused scan count %ld new scan count %ld total_scan %ld last shrinker return val %d", | 257 | TP_printk("%pF %p: nid: %d unused scan count %ld new scan count %ld total_scan %ld last shrinker return val %d", |
| 252 | __entry->shrink, | 258 | __entry->shrink, |
| 253 | __entry->shr, | 259 | __entry->shr, |
| 260 | __entry->nid, | ||
| 254 | __entry->unused_scan, | 261 | __entry->unused_scan, |
| 255 | __entry->new_scan, | 262 | __entry->new_scan, |
| 256 | __entry->total_scan, | 263 | __entry->total_scan, |
diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h index 0a1a4f7caf09..0fd06fef9fac 100644 --- a/include/trace/ftrace.h +++ b/include/trace/ftrace.h | |||
| @@ -53,6 +53,9 @@ | |||
| 53 | #undef __string | 53 | #undef __string |
| 54 | #define __string(item, src) __dynamic_array(char, item, -1) | 54 | #define __string(item, src) __dynamic_array(char, item, -1) |
| 55 | 55 | ||
| 56 | #undef __bitmask | ||
| 57 | #define __bitmask(item, nr_bits) __dynamic_array(char, item, -1) | ||
| 58 | |||
| 56 | #undef TP_STRUCT__entry | 59 | #undef TP_STRUCT__entry |
| 57 | #define TP_STRUCT__entry(args...) args | 60 | #define TP_STRUCT__entry(args...) args |
| 58 | 61 | ||
| @@ -128,6 +131,9 @@ | |||
| 128 | #undef __string | 131 | #undef __string |
| 129 | #define __string(item, src) __dynamic_array(char, item, -1) | 132 | #define __string(item, src) __dynamic_array(char, item, -1) |
| 130 | 133 | ||
| 134 | #undef __bitmask | ||
| 135 | #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1) | ||
| 136 | |||
| 131 | #undef DECLARE_EVENT_CLASS | 137 | #undef DECLARE_EVENT_CLASS |
| 132 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ | 138 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ |
| 133 | struct ftrace_data_offsets_##call { \ | 139 | struct ftrace_data_offsets_##call { \ |
| @@ -197,9 +203,22 @@ | |||
| 197 | #define __get_dynamic_array(field) \ | 203 | #define __get_dynamic_array(field) \ |
| 198 | ((void *)__entry + (__entry->__data_loc_##field & 0xffff)) | 204 | ((void *)__entry + (__entry->__data_loc_##field & 0xffff)) |
| 199 | 205 | ||
| 206 | #undef __get_dynamic_array_len | ||
| 207 | #define __get_dynamic_array_len(field) \ | ||
| 208 | ((__entry->__data_loc_##field >> 16) & 0xffff) | ||
| 209 | |||
| 200 | #undef __get_str | 210 | #undef __get_str |
| 201 | #define __get_str(field) (char *)__get_dynamic_array(field) | 211 | #define __get_str(field) (char *)__get_dynamic_array(field) |
| 202 | 212 | ||
| 213 | #undef __get_bitmask | ||
| 214 | #define __get_bitmask(field) \ | ||
| 215 | ({ \ | ||
| 216 | void *__bitmask = __get_dynamic_array(field); \ | ||
| 217 | unsigned int __bitmask_size; \ | ||
| 218 | __bitmask_size = __get_dynamic_array_len(field); \ | ||
| 219 | ftrace_print_bitmask_seq(p, __bitmask, __bitmask_size); \ | ||
| 220 | }) | ||
| 221 | |||
| 203 | #undef __print_flags | 222 | #undef __print_flags |
| 204 | #define __print_flags(flag, delim, flag_array...) \ | 223 | #define __print_flags(flag, delim, flag_array...) \ |
| 205 | ({ \ | 224 | ({ \ |
| @@ -322,6 +341,9 @@ static struct trace_event_functions ftrace_event_type_funcs_##call = { \ | |||
| 322 | #undef __string | 341 | #undef __string |
| 323 | #define __string(item, src) __dynamic_array(char, item, -1) | 342 | #define __string(item, src) __dynamic_array(char, item, -1) |
| 324 | 343 | ||
| 344 | #undef __bitmask | ||
| 345 | #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1) | ||
| 346 | |||
| 325 | #undef DECLARE_EVENT_CLASS | 347 | #undef DECLARE_EVENT_CLASS |
| 326 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \ | 348 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \ |
| 327 | static int notrace __init \ | 349 | static int notrace __init \ |
| @@ -372,6 +394,29 @@ ftrace_define_fields_##call(struct ftrace_event_call *event_call) \ | |||
| 372 | #define __string(item, src) __dynamic_array(char, item, \ | 394 | #define __string(item, src) __dynamic_array(char, item, \ |
| 373 | strlen((src) ? (const char *)(src) : "(null)") + 1) | 395 | strlen((src) ? (const char *)(src) : "(null)") + 1) |
| 374 | 396 | ||
| 397 | /* | ||
| 398 | * __bitmask_size_in_bytes_raw is the number of bytes needed to hold | ||
| 399 | * num_possible_cpus(). | ||
| 400 | */ | ||
| 401 | #define __bitmask_size_in_bytes_raw(nr_bits) \ | ||
| 402 | (((nr_bits) + 7) / 8) | ||
| 403 | |||
| 404 | #define __bitmask_size_in_longs(nr_bits) \ | ||
| 405 | ((__bitmask_size_in_bytes_raw(nr_bits) + \ | ||
| 406 | ((BITS_PER_LONG / 8) - 1)) / (BITS_PER_LONG / 8)) | ||
| 407 | |||
| 408 | /* | ||
| 409 | * __bitmask_size_in_bytes is the number of bytes needed to hold | ||
| 410 | * num_possible_cpus() padded out to the nearest long. This is what | ||
| 411 | * is saved in the buffer, just to be consistent. | ||
| 412 | */ | ||
| 413 | #define __bitmask_size_in_bytes(nr_bits) \ | ||
| 414 | (__bitmask_size_in_longs(nr_bits) * (BITS_PER_LONG / 8)) | ||
| 415 | |||
| 416 | #undef __bitmask | ||
| 417 | #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, \ | ||
| 418 | __bitmask_size_in_longs(nr_bits)) | ||
| 419 | |||
| 375 | #undef DECLARE_EVENT_CLASS | 420 | #undef DECLARE_EVENT_CLASS |
| 376 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ | 421 | #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ |
| 377 | static inline notrace int ftrace_get_offsets_##call( \ | 422 | static inline notrace int ftrace_get_offsets_##call( \ |
| @@ -513,12 +558,22 @@ static inline notrace int ftrace_get_offsets_##call( \ | |||
| 513 | __entry->__data_loc_##item = __data_offsets.item; | 558 | __entry->__data_loc_##item = __data_offsets.item; |
| 514 | 559 | ||
| 515 | #undef __string | 560 | #undef __string |
| 516 | #define __string(item, src) __dynamic_array(char, item, -1) \ | 561 | #define __string(item, src) __dynamic_array(char, item, -1) |
| 517 | 562 | ||
| 518 | #undef __assign_str | 563 | #undef __assign_str |
| 519 | #define __assign_str(dst, src) \ | 564 | #define __assign_str(dst, src) \ |
| 520 | strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)"); | 565 | strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)"); |
| 521 | 566 | ||
| 567 | #undef __bitmask | ||
| 568 | #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1) | ||
| 569 | |||
| 570 | #undef __get_bitmask | ||
| 571 | #define __get_bitmask(field) (char *)__get_dynamic_array(field) | ||
| 572 | |||
| 573 | #undef __assign_bitmask | ||
| 574 | #define __assign_bitmask(dst, src, nr_bits) \ | ||
| 575 | memcpy(__get_bitmask(dst), (src), __bitmask_size_in_bytes(nr_bits)) | ||
| 576 | |||
| 522 | #undef TP_fast_assign | 577 | #undef TP_fast_assign |
| 523 | #define TP_fast_assign(args...) args | 578 | #define TP_fast_assign(args...) args |
| 524 | 579 | ||
| @@ -585,7 +640,9 @@ static inline void ftrace_test_probe_##call(void) \ | |||
| 585 | #undef __print_symbolic | 640 | #undef __print_symbolic |
| 586 | #undef __print_hex | 641 | #undef __print_hex |
| 587 | #undef __get_dynamic_array | 642 | #undef __get_dynamic_array |
| 643 | #undef __get_dynamic_array_len | ||
| 588 | #undef __get_str | 644 | #undef __get_str |
| 645 | #undef __get_bitmask | ||
| 589 | 646 | ||
| 590 | #undef TP_printk | 647 | #undef TP_printk |
| 591 | #define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args) | 648 | #define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args) |
| @@ -648,9 +705,16 @@ __attribute__((section("_ftrace_events"))) *__event_##call = &event_##call | |||
| 648 | #define __get_dynamic_array(field) \ | 705 | #define __get_dynamic_array(field) \ |
| 649 | ((void *)__entry + (__entry->__data_loc_##field & 0xffff)) | 706 | ((void *)__entry + (__entry->__data_loc_##field & 0xffff)) |
| 650 | 707 | ||
| 708 | #undef __get_dynamic_array_len | ||
| 709 | #define __get_dynamic_array_len(field) \ | ||
| 710 | ((__entry->__data_loc_##field >> 16) & 0xffff) | ||
| 711 | |||
| 651 | #undef __get_str | 712 | #undef __get_str |
| 652 | #define __get_str(field) (char *)__get_dynamic_array(field) | 713 | #define __get_str(field) (char *)__get_dynamic_array(field) |
| 653 | 714 | ||
| 715 | #undef __get_bitmask | ||
| 716 | #define __get_bitmask(field) (char *)__get_dynamic_array(field) | ||
| 717 | |||
| 654 | #undef __perf_addr | 718 | #undef __perf_addr |
| 655 | #define __perf_addr(a) (__addr = (a)) | 719 | #define __perf_addr(a) (__addr = (a)) |
| 656 | 720 | ||
diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index f104c2603ebe..def54f9e07ca 100644 --- a/include/uapi/drm/drm_mode.h +++ b/include/uapi/drm/drm_mode.h | |||
| @@ -181,6 +181,7 @@ struct drm_mode_get_plane_res { | |||
| 181 | #define DRM_MODE_ENCODER_TVDAC 4 | 181 | #define DRM_MODE_ENCODER_TVDAC 4 |
| 182 | #define DRM_MODE_ENCODER_VIRTUAL 5 | 182 | #define DRM_MODE_ENCODER_VIRTUAL 5 |
| 183 | #define DRM_MODE_ENCODER_DSI 6 | 183 | #define DRM_MODE_ENCODER_DSI 6 |
| 184 | #define DRM_MODE_ENCODER_DPMST 7 | ||
| 184 | 185 | ||
| 185 | struct drm_mode_get_encoder { | 186 | struct drm_mode_get_encoder { |
| 186 | __u32 encoder_id; | 187 | __u32 encoder_id; |
| @@ -251,6 +252,21 @@ struct drm_mode_get_connector { | |||
| 251 | #define DRM_MODE_PROP_BLOB (1<<4) | 252 | #define DRM_MODE_PROP_BLOB (1<<4) |
| 252 | #define DRM_MODE_PROP_BITMASK (1<<5) /* bitmask of enumerated types */ | 253 | #define DRM_MODE_PROP_BITMASK (1<<5) /* bitmask of enumerated types */ |
| 253 | 254 | ||
| 255 | /* non-extended types: legacy bitmask, one bit per type: */ | ||
| 256 | #define DRM_MODE_PROP_LEGACY_TYPE ( \ | ||
| 257 | DRM_MODE_PROP_RANGE | \ | ||
| 258 | DRM_MODE_PROP_ENUM | \ | ||
| 259 | DRM_MODE_PROP_BLOB | \ | ||
| 260 | DRM_MODE_PROP_BITMASK) | ||
| 261 | |||
| 262 | /* extended-types: rather than continue to consume a bit per type, | ||
| 263 | * grab a chunk of the bits to use as integer type id. | ||
| 264 | */ | ||
| 265 | #define DRM_MODE_PROP_EXTENDED_TYPE 0x0000ffc0 | ||
| 266 | #define DRM_MODE_PROP_TYPE(n) ((n) << 6) | ||
| 267 | #define DRM_MODE_PROP_OBJECT DRM_MODE_PROP_TYPE(1) | ||
| 268 | #define DRM_MODE_PROP_SIGNED_RANGE DRM_MODE_PROP_TYPE(2) | ||
| 269 | |||
| 254 | struct drm_mode_property_enum { | 270 | struct drm_mode_property_enum { |
| 255 | __u64 value; | 271 | __u64 value; |
| 256 | char name[DRM_PROP_NAME_LEN]; | 272 | char name[DRM_PROP_NAME_LEN]; |
diff --git a/include/uapi/drm/i915_drm.h b/include/uapi/drm/i915_drm.h index 126bfaa8bb6b..ff57f07c3249 100644 --- a/include/uapi/drm/i915_drm.h +++ b/include/uapi/drm/i915_drm.h | |||
| @@ -223,6 +223,7 @@ typedef struct _drm_i915_sarea { | |||
| 223 | #define DRM_I915_GEM_GET_CACHING 0x30 | 223 | #define DRM_I915_GEM_GET_CACHING 0x30 |
| 224 | #define DRM_I915_REG_READ 0x31 | 224 | #define DRM_I915_REG_READ 0x31 |
| 225 | #define DRM_I915_GET_RESET_STATS 0x32 | 225 | #define DRM_I915_GET_RESET_STATS 0x32 |
| 226 | #define DRM_I915_GEM_USERPTR 0x33 | ||
| 226 | 227 | ||
| 227 | #define DRM_IOCTL_I915_INIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t) | 228 | #define DRM_IOCTL_I915_INIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t) |
| 228 | #define DRM_IOCTL_I915_FLUSH DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH) | 229 | #define DRM_IOCTL_I915_FLUSH DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH) |
| @@ -273,6 +274,7 @@ typedef struct _drm_i915_sarea { | |||
| 273 | #define DRM_IOCTL_I915_GEM_CONTEXT_DESTROY DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_DESTROY, struct drm_i915_gem_context_destroy) | 274 | #define DRM_IOCTL_I915_GEM_CONTEXT_DESTROY DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_DESTROY, struct drm_i915_gem_context_destroy) |
| 274 | #define DRM_IOCTL_I915_REG_READ DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_REG_READ, struct drm_i915_reg_read) | 275 | #define DRM_IOCTL_I915_REG_READ DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_REG_READ, struct drm_i915_reg_read) |
| 275 | #define DRM_IOCTL_I915_GET_RESET_STATS DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GET_RESET_STATS, struct drm_i915_reset_stats) | 276 | #define DRM_IOCTL_I915_GET_RESET_STATS DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GET_RESET_STATS, struct drm_i915_reset_stats) |
| 277 | #define DRM_IOCTL_I915_GEM_USERPTR DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_USERPTR, struct drm_i915_gem_userptr) | ||
| 276 | 278 | ||
| 277 | /* Allow drivers to submit batchbuffers directly to hardware, relying | 279 | /* Allow drivers to submit batchbuffers directly to hardware, relying |
| 278 | * on the security mechanisms provided by hardware. | 280 | * on the security mechanisms provided by hardware. |
| @@ -337,6 +339,7 @@ typedef struct drm_i915_irq_wait { | |||
| 337 | #define I915_PARAM_HAS_EXEC_NO_RELOC 25 | 339 | #define I915_PARAM_HAS_EXEC_NO_RELOC 25 |
| 338 | #define I915_PARAM_HAS_EXEC_HANDLE_LUT 26 | 340 | #define I915_PARAM_HAS_EXEC_HANDLE_LUT 26 |
| 339 | #define I915_PARAM_HAS_WT 27 | 341 | #define I915_PARAM_HAS_WT 27 |
| 342 | #define I915_PARAM_CMD_PARSER_VERSION 28 | ||
| 340 | 343 | ||
| 341 | typedef struct drm_i915_getparam { | 344 | typedef struct drm_i915_getparam { |
| 342 | int param; | 345 | int param; |
| @@ -1049,4 +1052,18 @@ struct drm_i915_reset_stats { | |||
| 1049 | __u32 pad; | 1052 | __u32 pad; |
| 1050 | }; | 1053 | }; |
| 1051 | 1054 | ||
| 1055 | struct drm_i915_gem_userptr { | ||
| 1056 | __u64 user_ptr; | ||
| 1057 | __u64 user_size; | ||
| 1058 | __u32 flags; | ||
| 1059 | #define I915_USERPTR_READ_ONLY 0x1 | ||
| 1060 | #define I915_USERPTR_UNSYNCHRONIZED 0x80000000 | ||
| 1061 | /** | ||
| 1062 | * Returned handle for the object. | ||
| 1063 | * | ||
| 1064 | * Object handles are nonzero. | ||
| 1065 | */ | ||
| 1066 | __u32 handle; | ||
| 1067 | }; | ||
| 1068 | |||
| 1052 | #endif /* _UAPI_I915_DRM_H_ */ | 1069 | #endif /* _UAPI_I915_DRM_H_ */ |
diff --git a/include/uapi/drm/radeon_drm.h b/include/uapi/drm/radeon_drm.h index aefa2f6afa3b..1cc0b610f162 100644 --- a/include/uapi/drm/radeon_drm.h +++ b/include/uapi/drm/radeon_drm.h | |||
| @@ -1007,7 +1007,7 @@ struct drm_radeon_cs { | |||
| 1007 | #define RADEON_INFO_NUM_BYTES_MOVED 0x1d | 1007 | #define RADEON_INFO_NUM_BYTES_MOVED 0x1d |
| 1008 | #define RADEON_INFO_VRAM_USAGE 0x1e | 1008 | #define RADEON_INFO_VRAM_USAGE 0x1e |
| 1009 | #define RADEON_INFO_GTT_USAGE 0x1f | 1009 | #define RADEON_INFO_GTT_USAGE 0x1f |
| 1010 | 1010 | #define RADEON_INFO_ACTIVE_CU_COUNT 0x20 | |
| 1011 | 1011 | ||
| 1012 | struct drm_radeon_info { | 1012 | struct drm_radeon_info { |
| 1013 | uint32_t request; | 1013 | uint32_t request; |
diff --git a/include/uapi/linux/btrfs.h b/include/uapi/linux/btrfs.h index b4d69092fbdb..7554fd381a56 100644 --- a/include/uapi/linux/btrfs.h +++ b/include/uapi/linux/btrfs.h | |||
| @@ -181,7 +181,11 @@ struct btrfs_ioctl_fs_info_args { | |||
| 181 | __u64 max_id; /* out */ | 181 | __u64 max_id; /* out */ |
| 182 | __u64 num_devices; /* out */ | 182 | __u64 num_devices; /* out */ |
| 183 | __u8 fsid[BTRFS_FSID_SIZE]; /* out */ | 183 | __u8 fsid[BTRFS_FSID_SIZE]; /* out */ |
| 184 | __u64 reserved[124]; /* pad to 1k */ | 184 | __u32 nodesize; /* out */ |
| 185 | __u32 sectorsize; /* out */ | ||
| 186 | __u32 clone_alignment; /* out */ | ||
| 187 | __u32 reserved32; | ||
| 188 | __u64 reserved[122]; /* pad to 1k */ | ||
| 185 | }; | 189 | }; |
| 186 | 190 | ||
| 187 | struct btrfs_ioctl_feature_flags { | 191 | struct btrfs_ioctl_feature_flags { |
| @@ -211,7 +215,8 @@ struct btrfs_balance_args { | |||
| 211 | 215 | ||
| 212 | __u64 flags; | 216 | __u64 flags; |
| 213 | 217 | ||
| 214 | __u64 unused[8]; | 218 | __u64 limit; /* limit number of processed chunks */ |
| 219 | __u64 unused[7]; | ||
| 215 | } __attribute__ ((__packed__)); | 220 | } __attribute__ ((__packed__)); |
| 216 | 221 | ||
| 217 | /* report balance progress to userspace */ | 222 | /* report balance progress to userspace */ |
diff --git a/include/uapi/linux/kvm_para.h b/include/uapi/linux/kvm_para.h index 2841f86eae0b..bf6cd7d5cac2 100644 --- a/include/uapi/linux/kvm_para.h +++ b/include/uapi/linux/kvm_para.h | |||
| @@ -20,6 +20,9 @@ | |||
| 20 | #define KVM_HC_FEATURES 3 | 20 | #define KVM_HC_FEATURES 3 |
| 21 | #define KVM_HC_PPC_MAP_MAGIC_PAGE 4 | 21 | #define KVM_HC_PPC_MAP_MAGIC_PAGE 4 |
| 22 | #define KVM_HC_KICK_CPU 5 | 22 | #define KVM_HC_KICK_CPU 5 |
| 23 | #define KVM_HC_MIPS_GET_CLOCK_FREQ 6 | ||
| 24 | #define KVM_HC_MIPS_EXIT_VM 7 | ||
| 25 | #define KVM_HC_MIPS_CONSOLE_OUTPUT 8 | ||
| 23 | 26 | ||
| 24 | /* | 27 | /* |
| 25 | * hypercalls use architecture specific | 28 | * hypercalls use architecture specific |
diff --git a/include/uapi/linux/nfsd/nfsfh.h b/include/uapi/linux/nfsd/nfsfh.h index 616e3b396476..20391235d088 100644 --- a/include/uapi/linux/nfsd/nfsfh.h +++ b/include/uapi/linux/nfsd/nfsfh.h | |||
| @@ -1,13 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * include/linux/nfsd/nfsfh.h | ||
| 3 | * | ||
| 4 | * This file describes the layout of the file handles as passed | 2 | * This file describes the layout of the file handles as passed |
| 5 | * over the wire. | 3 | * over the wire. |
| 6 | * | 4 | * |
| 7 | * Earlier versions of knfsd used to sign file handles using keyed MD5 | ||
| 8 | * or SHA. I've removed this code, because it doesn't give you more | ||
| 9 | * security than blocking external access to port 2049 on your firewall. | ||
| 10 | * | ||
| 11 | * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de> | 5 | * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de> |
| 12 | */ | 6 | */ |
| 13 | 7 | ||
| @@ -37,7 +31,7 @@ struct nfs_fhbase_old { | |||
| 37 | }; | 31 | }; |
| 38 | 32 | ||
| 39 | /* | 33 | /* |
| 40 | * This is the new flexible, extensible style NFSv2/v3 file handle. | 34 | * This is the new flexible, extensible style NFSv2/v3/v4 file handle. |
| 41 | * by Neil Brown <neilb@cse.unsw.edu.au> - March 2000 | 35 | * by Neil Brown <neilb@cse.unsw.edu.au> - March 2000 |
| 42 | * | 36 | * |
| 43 | * The file handle starts with a sequence of four-byte words. | 37 | * The file handle starts with a sequence of four-byte words. |
| @@ -47,14 +41,7 @@ struct nfs_fhbase_old { | |||
| 47 | * | 41 | * |
| 48 | * All four-byte values are in host-byte-order. | 42 | * All four-byte values are in host-byte-order. |
| 49 | * | 43 | * |
| 50 | * The auth_type field specifies how the filehandle can be authenticated | 44 | * The auth_type field is deprecated and must be set to 0. |
| 51 | * This might allow a file to be confirmed to be in a writable part of a | ||
| 52 | * filetree without checking the path from it up to the root. | ||
| 53 | * Current values: | ||
| 54 | * 0 - No authentication. fb_auth is 0 bytes long | ||
| 55 | * Possible future values: | ||
| 56 | * 1 - 4 bytes taken from MD5 hash of the remainer of the file handle | ||
| 57 | * prefixed by a secret and with the important export flags. | ||
| 58 | * | 45 | * |
| 59 | * The fsid_type identifies how the filesystem (or export point) is | 46 | * The fsid_type identifies how the filesystem (or export point) is |
| 60 | * encoded. | 47 | * encoded. |
| @@ -71,14 +58,9 @@ struct nfs_fhbase_old { | |||
| 71 | * 7 - 8 byte inode number and 16 byte uuid | 58 | * 7 - 8 byte inode number and 16 byte uuid |
| 72 | * | 59 | * |
| 73 | * The fileid_type identified how the file within the filesystem is encoded. | 60 | * The fileid_type identified how the file within the filesystem is encoded. |
| 74 | * This is (will be) passed to, and set by, the underlying filesystem if it supports | 61 | * The values for this field are filesystem specific, exccept that |
| 75 | * filehandle operations. The filesystem must not use the value '0' or '0xff' and may | 62 | * filesystems must not use the values '0' or '0xff'. 'See enum fid_type' |
| 76 | * only use the values 1 and 2 as defined below: | 63 | * in include/linux/exportfs.h for currently registered values. |
| 77 | * Current values: | ||
| 78 | * 0 - The root, or export point, of the filesystem. fb_fileid is 0 bytes. | ||
| 79 | * 1 - 32bit inode number, 32 bit generation number. | ||
| 80 | * 2 - 32bit inode number, 32 bit generation number, 32 bit parent directory inode number. | ||
| 81 | * | ||
| 82 | */ | 64 | */ |
| 83 | struct nfs_fhbase_new { | 65 | struct nfs_fhbase_new { |
| 84 | __u8 fb_version; /* == 1, even => nfs_fhbase_old */ | 66 | __u8 fb_version; /* == 1, even => nfs_fhbase_old */ |
| @@ -114,9 +96,9 @@ struct knfsd_fh { | |||
| 114 | #define fh_fsid_type fh_base.fh_new.fb_fsid_type | 96 | #define fh_fsid_type fh_base.fh_new.fb_fsid_type |
| 115 | #define fh_auth_type fh_base.fh_new.fb_auth_type | 97 | #define fh_auth_type fh_base.fh_new.fb_auth_type |
| 116 | #define fh_fileid_type fh_base.fh_new.fb_fileid_type | 98 | #define fh_fileid_type fh_base.fh_new.fb_fileid_type |
| 117 | #define fh_auth fh_base.fh_new.fb_auth | ||
| 118 | #define fh_fsid fh_base.fh_new.fb_auth | 99 | #define fh_fsid fh_base.fh_new.fb_auth |
| 119 | 100 | ||
| 120 | 101 | /* Do not use, provided for userspace compatiblity. */ | |
| 102 | #define fh_auth fh_base.fh_new.fb_auth | ||
| 121 | 103 | ||
| 122 | #endif /* _UAPI_LINUX_NFSD_FH_H */ | 104 | #endif /* _UAPI_LINUX_NFSD_FH_H */ |
diff --git a/include/uapi/linux/shm.h b/include/uapi/linux/shm.h index 78b69413f582..1fbf24ea37fd 100644 --- a/include/uapi/linux/shm.h +++ b/include/uapi/linux/shm.h | |||
| @@ -8,19 +8,20 @@ | |||
| 8 | #endif | 8 | #endif |
| 9 | 9 | ||
| 10 | /* | 10 | /* |
| 11 | * SHMMAX, SHMMNI and SHMALL are upper limits are defaults which can | 11 | * SHMMNI, SHMMAX and SHMALL are default upper limits which can be |
| 12 | * be increased by sysctl | 12 | * modified by sysctl. The SHMMAX and SHMALL values have been chosen to |
| 13 | * be as large possible without facilitating scenarios where userspace | ||
| 14 | * causes overflows when adjusting the limits via operations of the form | ||
| 15 | * "retrieve current limit; add X; update limit". It is therefore not | ||
| 16 | * advised to make SHMMAX and SHMALL any larger. These limits are | ||
| 17 | * suitable for both 32 and 64-bit systems. | ||
| 13 | */ | 18 | */ |
| 14 | |||
| 15 | #define SHMMAX 0x2000000 /* max shared seg size (bytes) */ | ||
| 16 | #define SHMMIN 1 /* min shared seg size (bytes) */ | 19 | #define SHMMIN 1 /* min shared seg size (bytes) */ |
| 17 | #define SHMMNI 4096 /* max num of segs system wide */ | 20 | #define SHMMNI 4096 /* max num of segs system wide */ |
| 18 | #ifndef __KERNEL__ | 21 | #define SHMMAX (ULONG_MAX - (1UL << 24)) /* max shared seg size (bytes) */ |
| 19 | #define SHMALL (SHMMAX/getpagesize()*(SHMMNI/16)) | 22 | #define SHMALL (ULONG_MAX - (1UL << 24)) /* max shm system wide (pages) */ |
| 20 | #endif | ||
| 21 | #define SHMSEG SHMMNI /* max shared segs per process */ | 23 | #define SHMSEG SHMMNI /* max shared segs per process */ |
| 22 | 24 | ||
| 23 | |||
| 24 | /* Obsolete, used only for backwards compatibility and libc5 compiles */ | 25 | /* Obsolete, used only for backwards compatibility and libc5 compiles */ |
| 25 | struct shmid_ds { | 26 | struct shmid_ds { |
| 26 | struct ipc_perm shm_perm; /* operation perms */ | 27 | struct ipc_perm shm_perm; /* operation perms */ |
diff --git a/include/uapi/linux/usb/Kbuild b/include/uapi/linux/usb/Kbuild index 6cb4ea826834..4cc4d6e7e523 100644 --- a/include/uapi/linux/usb/Kbuild +++ b/include/uapi/linux/usb/Kbuild | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | # UAPI Header export list | 1 | # UAPI Header export list |
| 2 | header-y += audio.h | 2 | header-y += audio.h |
| 3 | header-y += cdc.h | 3 | header-y += cdc.h |
| 4 | header-y += cdc-wdm.h | ||
| 4 | header-y += ch11.h | 5 | header-y += ch11.h |
| 5 | header-y += ch9.h | 6 | header-y += ch9.h |
| 6 | header-y += functionfs.h | 7 | header-y += functionfs.h |
diff --git a/include/uapi/linux/usb/cdc-wdm.h b/include/uapi/linux/usb/cdc-wdm.h index f03134feebd6..0dc132e75030 100644 --- a/include/uapi/linux/usb/cdc-wdm.h +++ b/include/uapi/linux/usb/cdc-wdm.h | |||
| @@ -9,6 +9,8 @@ | |||
| 9 | #ifndef _UAPI__LINUX_USB_CDC_WDM_H | 9 | #ifndef _UAPI__LINUX_USB_CDC_WDM_H |
| 10 | #define _UAPI__LINUX_USB_CDC_WDM_H | 10 | #define _UAPI__LINUX_USB_CDC_WDM_H |
| 11 | 11 | ||
| 12 | #include <linux/types.h> | ||
| 13 | |||
| 12 | /* | 14 | /* |
| 13 | * This IOCTL is used to retrieve the wMaxCommand for the device, | 15 | * This IOCTL is used to retrieve the wMaxCommand for the device, |
| 14 | * defining the message limit for both reading and writing. | 16 | * defining the message limit for both reading and writing. |
diff --git a/include/uapi/linux/v4l2-common.h b/include/uapi/linux/v4l2-common.h index 9bf508ad0957..2f6f8cafe773 100644 --- a/include/uapi/linux/v4l2-common.h +++ b/include/uapi/linux/v4l2-common.h | |||
| @@ -75,7 +75,7 @@ struct v4l2_edid { | |||
| 75 | __u32 start_block; | 75 | __u32 start_block; |
| 76 | __u32 blocks; | 76 | __u32 blocks; |
| 77 | __u32 reserved[5]; | 77 | __u32 reserved[5]; |
| 78 | __u8 __user *edid; | 78 | __u8 *edid; |
| 79 | }; | 79 | }; |
| 80 | 80 | ||
| 81 | #endif /* __V4L2_COMMON__ */ | 81 | #endif /* __V4L2_COMMON__ */ |
diff --git a/include/uapi/linux/v4l2-dv-timings.h b/include/uapi/linux/v4l2-dv-timings.h index b6a5fe00a470..6c8f159e416e 100644 --- a/include/uapi/linux/v4l2-dv-timings.h +++ b/include/uapi/linux/v4l2-dv-timings.h | |||
| @@ -173,6 +173,76 @@ | |||
| 173 | V4L2_DV_FL_CAN_REDUCE_FPS) \ | 173 | V4L2_DV_FL_CAN_REDUCE_FPS) \ |
| 174 | } | 174 | } |
| 175 | 175 | ||
| 176 | #define V4L2_DV_BT_CEA_3840X2160P24 { \ | ||
| 177 | .type = V4L2_DV_BT_656_1120, \ | ||
| 178 | V4L2_INIT_BT_TIMINGS(3840, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 179 | 297000000, 1276, 88, 296, 8, 10, 72, 0, 0, 0, \ | ||
| 180 | V4L2_DV_BT_STD_CEA861, V4L2_DV_FL_CAN_REDUCE_FPS) \ | ||
| 181 | } | ||
| 182 | |||
| 183 | #define V4L2_DV_BT_CEA_3840X2160P25 { \ | ||
| 184 | .type = V4L2_DV_BT_656_1120, \ | ||
| 185 | V4L2_INIT_BT_TIMINGS(3840, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 186 | 297000000, 1056, 88, 296, 8, 10, 72, 0, 0, 0, \ | ||
| 187 | V4L2_DV_BT_STD_CEA861, 0) \ | ||
| 188 | } | ||
| 189 | |||
| 190 | #define V4L2_DV_BT_CEA_3840X2160P30 { \ | ||
| 191 | .type = V4L2_DV_BT_656_1120, \ | ||
| 192 | V4L2_INIT_BT_TIMINGS(3840, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 193 | 297000000, 176, 88, 296, 8, 10, 72, 0, 0, 0, \ | ||
| 194 | V4L2_DV_BT_STD_CEA861, V4L2_DV_FL_CAN_REDUCE_FPS) \ | ||
| 195 | } | ||
| 196 | |||
| 197 | #define V4L2_DV_BT_CEA_3840X2160P50 { \ | ||
| 198 | .type = V4L2_DV_BT_656_1120, \ | ||
| 199 | V4L2_INIT_BT_TIMINGS(3840, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 200 | 594000000, 1056, 88, 296, 8, 10, 72, 0, 0, 0, \ | ||
| 201 | V4L2_DV_BT_STD_CEA861, 0) \ | ||
| 202 | } | ||
| 203 | |||
| 204 | #define V4L2_DV_BT_CEA_3840X2160P60 { \ | ||
| 205 | .type = V4L2_DV_BT_656_1120, \ | ||
| 206 | V4L2_INIT_BT_TIMINGS(3840, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 207 | 594000000, 176, 88, 296, 8, 10, 72, 0, 0, 0, \ | ||
| 208 | V4L2_DV_BT_STD_CEA861, V4L2_DV_FL_CAN_REDUCE_FPS) \ | ||
| 209 | } | ||
| 210 | |||
| 211 | #define V4L2_DV_BT_CEA_4096X2160P24 { \ | ||
| 212 | .type = V4L2_DV_BT_656_1120, \ | ||
| 213 | V4L2_INIT_BT_TIMINGS(4096, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 214 | 297000000, 1020, 88, 296, 8, 10, 72, 0, 0, 0, \ | ||
| 215 | V4L2_DV_BT_STD_CEA861, V4L2_DV_FL_CAN_REDUCE_FPS) \ | ||
| 216 | } | ||
| 217 | |||
| 218 | #define V4L2_DV_BT_CEA_4096X2160P25 { \ | ||
| 219 | .type = V4L2_DV_BT_656_1120, \ | ||
| 220 | V4L2_INIT_BT_TIMINGS(4096, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 221 | 297000000, 968, 88, 128, 8, 10, 72, 0, 0, 0, \ | ||
| 222 | V4L2_DV_BT_STD_CEA861, 0) \ | ||
| 223 | } | ||
| 224 | |||
| 225 | #define V4L2_DV_BT_CEA_4096X2160P30 { \ | ||
| 226 | .type = V4L2_DV_BT_656_1120, \ | ||
| 227 | V4L2_INIT_BT_TIMINGS(4096, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 228 | 297000000, 88, 88, 128, 8, 10, 72, 0, 0, 0, \ | ||
| 229 | V4L2_DV_BT_STD_CEA861, V4L2_DV_FL_CAN_REDUCE_FPS) \ | ||
| 230 | } | ||
| 231 | |||
| 232 | #define V4L2_DV_BT_CEA_4096X2160P50 { \ | ||
| 233 | .type = V4L2_DV_BT_656_1120, \ | ||
| 234 | V4L2_INIT_BT_TIMINGS(4096, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 235 | 594000000, 968, 88, 128, 8, 10, 72, 0, 0, 0, \ | ||
| 236 | V4L2_DV_BT_STD_CEA861, 0) \ | ||
| 237 | } | ||
| 238 | |||
| 239 | #define V4L2_DV_BT_CEA_4096X2160P60 { \ | ||
| 240 | .type = V4L2_DV_BT_656_1120, \ | ||
| 241 | V4L2_INIT_BT_TIMINGS(4096, 2160, 0, V4L2_DV_HSYNC_POS_POL, \ | ||
| 242 | 594000000, 88, 88, 128, 8, 10, 72, 0, 0, 0, \ | ||
| 243 | V4L2_DV_BT_STD_CEA861, V4L2_DV_FL_CAN_REDUCE_FPS) \ | ||
| 244 | } | ||
| 245 | |||
| 176 | 246 | ||
| 177 | /* VESA Discrete Monitor Timings as per version 1.0, revision 12 */ | 247 | /* VESA Discrete Monitor Timings as per version 1.0, revision 12 */ |
| 178 | 248 | ||
diff --git a/include/uapi/linux/v4l2-mediabus.h b/include/uapi/linux/v4l2-mediabus.h index b5c3aab6e82c..1445e858854f 100644 --- a/include/uapi/linux/v4l2-mediabus.h +++ b/include/uapi/linux/v4l2-mediabus.h | |||
| @@ -52,7 +52,7 @@ enum v4l2_mbus_pixelcode { | |||
| 52 | V4L2_MBUS_FMT_RGB888_2X12_LE = 0x100c, | 52 | V4L2_MBUS_FMT_RGB888_2X12_LE = 0x100c, |
| 53 | V4L2_MBUS_FMT_ARGB8888_1X32 = 0x100d, | 53 | V4L2_MBUS_FMT_ARGB8888_1X32 = 0x100d, |
| 54 | 54 | ||
| 55 | /* YUV (including grey) - next is 0x2018 */ | 55 | /* YUV (including grey) - next is 0x2024 */ |
| 56 | V4L2_MBUS_FMT_Y8_1X8 = 0x2001, | 56 | V4L2_MBUS_FMT_Y8_1X8 = 0x2001, |
| 57 | V4L2_MBUS_FMT_UV8_1X8 = 0x2015, | 57 | V4L2_MBUS_FMT_UV8_1X8 = 0x2015, |
| 58 | V4L2_MBUS_FMT_UYVY8_1_5X8 = 0x2002, | 58 | V4L2_MBUS_FMT_UYVY8_1_5X8 = 0x2002, |
| @@ -64,6 +64,8 @@ enum v4l2_mbus_pixelcode { | |||
| 64 | V4L2_MBUS_FMT_YUYV8_2X8 = 0x2008, | 64 | V4L2_MBUS_FMT_YUYV8_2X8 = 0x2008, |
| 65 | V4L2_MBUS_FMT_YVYU8_2X8 = 0x2009, | 65 | V4L2_MBUS_FMT_YVYU8_2X8 = 0x2009, |
| 66 | V4L2_MBUS_FMT_Y10_1X10 = 0x200a, | 66 | V4L2_MBUS_FMT_Y10_1X10 = 0x200a, |
| 67 | V4L2_MBUS_FMT_UYVY10_2X10 = 0x2018, | ||
| 68 | V4L2_MBUS_FMT_VYUY10_2X10 = 0x2019, | ||
| 67 | V4L2_MBUS_FMT_YUYV10_2X10 = 0x200b, | 69 | V4L2_MBUS_FMT_YUYV10_2X10 = 0x200b, |
| 68 | V4L2_MBUS_FMT_YVYU10_2X10 = 0x200c, | 70 | V4L2_MBUS_FMT_YVYU10_2X10 = 0x200c, |
| 69 | V4L2_MBUS_FMT_Y12_1X12 = 0x2013, | 71 | V4L2_MBUS_FMT_Y12_1X12 = 0x2013, |
| @@ -72,10 +74,20 @@ enum v4l2_mbus_pixelcode { | |||
| 72 | V4L2_MBUS_FMT_YUYV8_1X16 = 0x2011, | 74 | V4L2_MBUS_FMT_YUYV8_1X16 = 0x2011, |
| 73 | V4L2_MBUS_FMT_YVYU8_1X16 = 0x2012, | 75 | V4L2_MBUS_FMT_YVYU8_1X16 = 0x2012, |
| 74 | V4L2_MBUS_FMT_YDYUYDYV8_1X16 = 0x2014, | 76 | V4L2_MBUS_FMT_YDYUYDYV8_1X16 = 0x2014, |
| 77 | V4L2_MBUS_FMT_UYVY10_1X20 = 0x201a, | ||
| 78 | V4L2_MBUS_FMT_VYUY10_1X20 = 0x201b, | ||
| 75 | V4L2_MBUS_FMT_YUYV10_1X20 = 0x200d, | 79 | V4L2_MBUS_FMT_YUYV10_1X20 = 0x200d, |
| 76 | V4L2_MBUS_FMT_YVYU10_1X20 = 0x200e, | 80 | V4L2_MBUS_FMT_YVYU10_1X20 = 0x200e, |
| 77 | V4L2_MBUS_FMT_YUV10_1X30 = 0x2016, | 81 | V4L2_MBUS_FMT_YUV10_1X30 = 0x2016, |
| 78 | V4L2_MBUS_FMT_AYUV8_1X32 = 0x2017, | 82 | V4L2_MBUS_FMT_AYUV8_1X32 = 0x2017, |
| 83 | V4L2_MBUS_FMT_UYVY12_2X12 = 0x201c, | ||
| 84 | V4L2_MBUS_FMT_VYUY12_2X12 = 0x201d, | ||
| 85 | V4L2_MBUS_FMT_YUYV12_2X12 = 0x201e, | ||
| 86 | V4L2_MBUS_FMT_YVYU12_2X12 = 0x201f, | ||
| 87 | V4L2_MBUS_FMT_UYVY12_1X24 = 0x2020, | ||
| 88 | V4L2_MBUS_FMT_VYUY12_1X24 = 0x2021, | ||
| 89 | V4L2_MBUS_FMT_YUYV12_1X24 = 0x2022, | ||
| 90 | V4L2_MBUS_FMT_YVYU12_1X24 = 0x2023, | ||
| 79 | 91 | ||
| 80 | /* Bayer - next is 0x3019 */ | 92 | /* Bayer - next is 0x3019 */ |
| 81 | V4L2_MBUS_FMT_SBGGR8_1X8 = 0x3001, | 93 | V4L2_MBUS_FMT_SBGGR8_1X8 = 0x3001, |
diff --git a/include/uapi/linux/v4l2-subdev.h b/include/uapi/linux/v4l2-subdev.h index 87e05159f637..a619cdd300ac 100644 --- a/include/uapi/linux/v4l2-subdev.h +++ b/include/uapi/linux/v4l2-subdev.h | |||
| @@ -151,26 +151,24 @@ struct v4l2_subdev_selection { | |||
| 151 | /* Backwards compatibility define --- to be removed */ | 151 | /* Backwards compatibility define --- to be removed */ |
| 152 | #define v4l2_subdev_edid v4l2_edid | 152 | #define v4l2_subdev_edid v4l2_edid |
| 153 | 153 | ||
| 154 | #define VIDIOC_SUBDEV_G_FMT _IOWR('V', 4, struct v4l2_subdev_format) | 154 | #define VIDIOC_SUBDEV_G_FMT _IOWR('V', 4, struct v4l2_subdev_format) |
| 155 | #define VIDIOC_SUBDEV_S_FMT _IOWR('V', 5, struct v4l2_subdev_format) | 155 | #define VIDIOC_SUBDEV_S_FMT _IOWR('V', 5, struct v4l2_subdev_format) |
| 156 | #define VIDIOC_SUBDEV_G_FRAME_INTERVAL \ | 156 | #define VIDIOC_SUBDEV_G_FRAME_INTERVAL _IOWR('V', 21, struct v4l2_subdev_frame_interval) |
| 157 | _IOWR('V', 21, struct v4l2_subdev_frame_interval) | 157 | #define VIDIOC_SUBDEV_S_FRAME_INTERVAL _IOWR('V', 22, struct v4l2_subdev_frame_interval) |
| 158 | #define VIDIOC_SUBDEV_S_FRAME_INTERVAL \ | 158 | #define VIDIOC_SUBDEV_ENUM_MBUS_CODE _IOWR('V', 2, struct v4l2_subdev_mbus_code_enum) |
| 159 | _IOWR('V', 22, struct v4l2_subdev_frame_interval) | 159 | #define VIDIOC_SUBDEV_ENUM_FRAME_SIZE _IOWR('V', 74, struct v4l2_subdev_frame_size_enum) |
| 160 | #define VIDIOC_SUBDEV_ENUM_MBUS_CODE \ | 160 | #define VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL _IOWR('V', 75, struct v4l2_subdev_frame_interval_enum) |
| 161 | _IOWR('V', 2, struct v4l2_subdev_mbus_code_enum) | 161 | #define VIDIOC_SUBDEV_G_CROP _IOWR('V', 59, struct v4l2_subdev_crop) |
| 162 | #define VIDIOC_SUBDEV_ENUM_FRAME_SIZE \ | 162 | #define VIDIOC_SUBDEV_S_CROP _IOWR('V', 60, struct v4l2_subdev_crop) |
| 163 | _IOWR('V', 74, struct v4l2_subdev_frame_size_enum) | 163 | #define VIDIOC_SUBDEV_G_SELECTION _IOWR('V', 61, struct v4l2_subdev_selection) |
| 164 | #define VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL \ | 164 | #define VIDIOC_SUBDEV_S_SELECTION _IOWR('V', 62, struct v4l2_subdev_selection) |
| 165 | _IOWR('V', 75, struct v4l2_subdev_frame_interval_enum) | 165 | /* The following ioctls are identical to the ioctls in videodev2.h */ |
| 166 | #define VIDIOC_SUBDEV_G_CROP _IOWR('V', 59, struct v4l2_subdev_crop) | 166 | #define VIDIOC_SUBDEV_G_EDID _IOWR('V', 40, struct v4l2_edid) |
| 167 | #define VIDIOC_SUBDEV_S_CROP _IOWR('V', 60, struct v4l2_subdev_crop) | 167 | #define VIDIOC_SUBDEV_S_EDID _IOWR('V', 41, struct v4l2_edid) |
| 168 | #define VIDIOC_SUBDEV_G_SELECTION \ | 168 | #define VIDIOC_SUBDEV_S_DV_TIMINGS _IOWR('V', 87, struct v4l2_dv_timings) |
| 169 | _IOWR('V', 61, struct v4l2_subdev_selection) | 169 | #define VIDIOC_SUBDEV_G_DV_TIMINGS _IOWR('V', 88, struct v4l2_dv_timings) |
| 170 | #define VIDIOC_SUBDEV_S_SELECTION \ | 170 | #define VIDIOC_SUBDEV_ENUM_DV_TIMINGS _IOWR('V', 98, struct v4l2_enum_dv_timings) |
| 171 | _IOWR('V', 62, struct v4l2_subdev_selection) | 171 | #define VIDIOC_SUBDEV_QUERY_DV_TIMINGS _IOR('V', 99, struct v4l2_dv_timings) |
| 172 | /* These two G/S_EDID ioctls are identical to the ioctls in videodev2.h */ | 172 | #define VIDIOC_SUBDEV_DV_TIMINGS_CAP _IOWR('V', 100, struct v4l2_dv_timings_cap) |
| 173 | #define VIDIOC_SUBDEV_G_EDID _IOWR('V', 40, struct v4l2_edid) | ||
| 174 | #define VIDIOC_SUBDEV_S_EDID _IOWR('V', 41, struct v4l2_edid) | ||
| 175 | 173 | ||
| 176 | #endif | 174 | #endif |
diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h index ea468ee8fe21..168ff507bf75 100644 --- a/include/uapi/linux/videodev2.h +++ b/include/uapi/linux/videodev2.h | |||
| @@ -649,7 +649,6 @@ struct v4l2_plane { | |||
| 649 | * @length: size in bytes of the buffer (NOT its payload) for single-plane | 649 | * @length: size in bytes of the buffer (NOT its payload) for single-plane |
| 650 | * buffers (when type != *_MPLANE); number of elements in the | 650 | * buffers (when type != *_MPLANE); number of elements in the |
| 651 | * planes array for multi-plane buffers | 651 | * planes array for multi-plane buffers |
| 652 | * @input: input number from which the video data has has been captured | ||
| 653 | * | 652 | * |
| 654 | * Contains data exchanged by application and driver using one of the Streaming | 653 | * Contains data exchanged by application and driver using one of the Streaming |
| 655 | * I/O methods. | 654 | * I/O methods. |
| @@ -1107,12 +1106,15 @@ struct v4l2_dv_timings { | |||
| 1107 | 1106 | ||
| 1108 | /** struct v4l2_enum_dv_timings - DV timings enumeration | 1107 | /** struct v4l2_enum_dv_timings - DV timings enumeration |
| 1109 | * @index: enumeration index | 1108 | * @index: enumeration index |
| 1109 | * @pad: the pad number for which to enumerate timings (used with | ||
| 1110 | * v4l-subdev nodes only) | ||
| 1110 | * @reserved: must be zeroed | 1111 | * @reserved: must be zeroed |
| 1111 | * @timings: the timings for the given index | 1112 | * @timings: the timings for the given index |
| 1112 | */ | 1113 | */ |
| 1113 | struct v4l2_enum_dv_timings { | 1114 | struct v4l2_enum_dv_timings { |
| 1114 | __u32 index; | 1115 | __u32 index; |
| 1115 | __u32 reserved[3]; | 1116 | __u32 pad; |
| 1117 | __u32 reserved[2]; | ||
| 1116 | struct v4l2_dv_timings timings; | 1118 | struct v4l2_dv_timings timings; |
| 1117 | }; | 1119 | }; |
| 1118 | 1120 | ||
| @@ -1150,11 +1152,14 @@ struct v4l2_bt_timings_cap { | |||
| 1150 | 1152 | ||
| 1151 | /** struct v4l2_dv_timings_cap - DV timings capabilities | 1153 | /** struct v4l2_dv_timings_cap - DV timings capabilities |
| 1152 | * @type: the type of the timings (same as in struct v4l2_dv_timings) | 1154 | * @type: the type of the timings (same as in struct v4l2_dv_timings) |
| 1155 | * @pad: the pad number for which to query capabilities (used with | ||
| 1156 | * v4l-subdev nodes only) | ||
| 1153 | * @bt: the BT656/1120 timings capabilities | 1157 | * @bt: the BT656/1120 timings capabilities |
| 1154 | */ | 1158 | */ |
| 1155 | struct v4l2_dv_timings_cap { | 1159 | struct v4l2_dv_timings_cap { |
| 1156 | __u32 type; | 1160 | __u32 type; |
| 1157 | __u32 reserved[3]; | 1161 | __u32 pad; |
| 1162 | __u32 reserved[2]; | ||
| 1158 | union { | 1163 | union { |
| 1159 | struct v4l2_bt_timings_cap bt; | 1164 | struct v4l2_bt_timings_cap bt; |
| 1160 | __u32 raw_data[32]; | 1165 | __u32 raw_data[32]; |
| @@ -1765,6 +1770,7 @@ struct v4l2_streamparm { | |||
| 1765 | #define V4L2_EVENT_EOS 2 | 1770 | #define V4L2_EVENT_EOS 2 |
| 1766 | #define V4L2_EVENT_CTRL 3 | 1771 | #define V4L2_EVENT_CTRL 3 |
| 1767 | #define V4L2_EVENT_FRAME_SYNC 4 | 1772 | #define V4L2_EVENT_FRAME_SYNC 4 |
| 1773 | #define V4L2_EVENT_SOURCE_CHANGE 5 | ||
| 1768 | #define V4L2_EVENT_PRIVATE_START 0x08000000 | 1774 | #define V4L2_EVENT_PRIVATE_START 0x08000000 |
| 1769 | 1775 | ||
| 1770 | /* Payload for V4L2_EVENT_VSYNC */ | 1776 | /* Payload for V4L2_EVENT_VSYNC */ |
| @@ -1796,12 +1802,19 @@ struct v4l2_event_frame_sync { | |||
| 1796 | __u32 frame_sequence; | 1802 | __u32 frame_sequence; |
| 1797 | }; | 1803 | }; |
| 1798 | 1804 | ||
| 1805 | #define V4L2_EVENT_SRC_CH_RESOLUTION (1 << 0) | ||
| 1806 | |||
| 1807 | struct v4l2_event_src_change { | ||
| 1808 | __u32 changes; | ||
| 1809 | }; | ||
| 1810 | |||
| 1799 | struct v4l2_event { | 1811 | struct v4l2_event { |
| 1800 | __u32 type; | 1812 | __u32 type; |
| 1801 | union { | 1813 | union { |
| 1802 | struct v4l2_event_vsync vsync; | 1814 | struct v4l2_event_vsync vsync; |
| 1803 | struct v4l2_event_ctrl ctrl; | 1815 | struct v4l2_event_ctrl ctrl; |
| 1804 | struct v4l2_event_frame_sync frame_sync; | 1816 | struct v4l2_event_frame_sync frame_sync; |
| 1817 | struct v4l2_event_src_change src_change; | ||
| 1805 | __u8 data[64]; | 1818 | __u8 data[64]; |
| 1806 | } u; | 1819 | } u; |
| 1807 | __u32 pending; | 1820 | __u32 pending; |
diff --git a/include/uapi/mtd/mtd-abi.h b/include/uapi/mtd/mtd-abi.h index e272ea060e38..763bb6950402 100644 --- a/include/uapi/mtd/mtd-abi.h +++ b/include/uapi/mtd/mtd-abi.h | |||
| @@ -109,6 +109,7 @@ struct mtd_write_req { | |||
| 109 | #define MTD_CAP_RAM (MTD_WRITEABLE | MTD_BIT_WRITEABLE | MTD_NO_ERASE) | 109 | #define MTD_CAP_RAM (MTD_WRITEABLE | MTD_BIT_WRITEABLE | MTD_NO_ERASE) |
| 110 | #define MTD_CAP_NORFLASH (MTD_WRITEABLE | MTD_BIT_WRITEABLE) | 110 | #define MTD_CAP_NORFLASH (MTD_WRITEABLE | MTD_BIT_WRITEABLE) |
| 111 | #define MTD_CAP_NANDFLASH (MTD_WRITEABLE) | 111 | #define MTD_CAP_NANDFLASH (MTD_WRITEABLE) |
| 112 | #define MTD_CAP_NVRAM (MTD_WRITEABLE | MTD_BIT_WRITEABLE | MTD_NO_ERASE) | ||
| 112 | 113 | ||
| 113 | /* Obsolete ECC byte placement modes (used with obsolete MEMGETOOBSEL) */ | 114 | /* Obsolete ECC byte placement modes (used with obsolete MEMGETOOBSEL) */ |
| 114 | #define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended) | 115 | #define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended) |
diff --git a/include/uapi/rdma/rdma_netlink.h b/include/uapi/rdma/rdma_netlink.h index 8297285b6288..de69170a30ce 100644 --- a/include/uapi/rdma/rdma_netlink.h +++ b/include/uapi/rdma/rdma_netlink.h | |||
| @@ -4,7 +4,16 @@ | |||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | 5 | ||
| 6 | enum { | 6 | enum { |
| 7 | RDMA_NL_RDMA_CM = 1 | 7 | RDMA_NL_RDMA_CM = 1, |
| 8 | RDMA_NL_NES, | ||
| 9 | RDMA_NL_C4IW, | ||
| 10 | RDMA_NL_NUM_CLIENTS | ||
| 11 | }; | ||
| 12 | |||
| 13 | enum { | ||
| 14 | RDMA_NL_GROUP_CM = 1, | ||
| 15 | RDMA_NL_GROUP_IWPM, | ||
| 16 | RDMA_NL_NUM_GROUPS | ||
| 8 | }; | 17 | }; |
| 9 | 18 | ||
| 10 | #define RDMA_NL_GET_CLIENT(type) ((type & (((1 << 6) - 1) << 10)) >> 10) | 19 | #define RDMA_NL_GET_CLIENT(type) ((type & (((1 << 6) - 1) << 10)) >> 10) |
| @@ -22,6 +31,18 @@ enum { | |||
| 22 | RDMA_NL_RDMA_CM_NUM_ATTR, | 31 | RDMA_NL_RDMA_CM_NUM_ATTR, |
| 23 | }; | 32 | }; |
| 24 | 33 | ||
| 34 | /* iwarp port mapper op-codes */ | ||
| 35 | enum { | ||
| 36 | RDMA_NL_IWPM_REG_PID = 0, | ||
| 37 | RDMA_NL_IWPM_ADD_MAPPING, | ||
| 38 | RDMA_NL_IWPM_QUERY_MAPPING, | ||
| 39 | RDMA_NL_IWPM_REMOVE_MAPPING, | ||
| 40 | RDMA_NL_IWPM_HANDLE_ERR, | ||
| 41 | RDMA_NL_IWPM_MAPINFO, | ||
| 42 | RDMA_NL_IWPM_MAPINFO_NUM, | ||
| 43 | RDMA_NL_IWPM_NUM_OPS | ||
| 44 | }; | ||
| 45 | |||
| 25 | struct rdma_cm_id_stats { | 46 | struct rdma_cm_id_stats { |
| 26 | __u32 qp_num; | 47 | __u32 qp_num; |
| 27 | __u32 bound_dev_if; | 48 | __u32 bound_dev_if; |
| @@ -33,5 +54,78 @@ struct rdma_cm_id_stats { | |||
| 33 | __u8 qp_type; | 54 | __u8 qp_type; |
| 34 | }; | 55 | }; |
| 35 | 56 | ||
| 57 | enum { | ||
| 58 | IWPM_NLA_REG_PID_UNSPEC = 0, | ||
| 59 | IWPM_NLA_REG_PID_SEQ, | ||
| 60 | IWPM_NLA_REG_IF_NAME, | ||
| 61 | IWPM_NLA_REG_IBDEV_NAME, | ||
| 62 | IWPM_NLA_REG_ULIB_NAME, | ||
| 63 | IWPM_NLA_REG_PID_MAX | ||
| 64 | }; | ||
| 65 | |||
| 66 | enum { | ||
| 67 | IWPM_NLA_RREG_PID_UNSPEC = 0, | ||
| 68 | IWPM_NLA_RREG_PID_SEQ, | ||
| 69 | IWPM_NLA_RREG_IBDEV_NAME, | ||
| 70 | IWPM_NLA_RREG_ULIB_NAME, | ||
| 71 | IWPM_NLA_RREG_ULIB_VER, | ||
| 72 | IWPM_NLA_RREG_PID_ERR, | ||
| 73 | IWPM_NLA_RREG_PID_MAX | ||
| 74 | |||
| 75 | }; | ||
| 76 | |||
| 77 | enum { | ||
| 78 | IWPM_NLA_MANAGE_MAPPING_UNSPEC = 0, | ||
| 79 | IWPM_NLA_MANAGE_MAPPING_SEQ, | ||
| 80 | IWPM_NLA_MANAGE_ADDR, | ||
| 81 | IWPM_NLA_MANAGE_MAPPED_LOC_ADDR, | ||
| 82 | IWPM_NLA_RMANAGE_MAPPING_ERR, | ||
| 83 | IWPM_NLA_RMANAGE_MAPPING_MAX | ||
| 84 | }; | ||
| 85 | |||
| 86 | #define IWPM_NLA_MANAGE_MAPPING_MAX 3 | ||
| 87 | #define IWPM_NLA_QUERY_MAPPING_MAX 4 | ||
| 88 | #define IWPM_NLA_MAPINFO_SEND_MAX 3 | ||
| 89 | |||
| 90 | enum { | ||
| 91 | IWPM_NLA_QUERY_MAPPING_UNSPEC = 0, | ||
| 92 | IWPM_NLA_QUERY_MAPPING_SEQ, | ||
| 93 | IWPM_NLA_QUERY_LOCAL_ADDR, | ||
| 94 | IWPM_NLA_QUERY_REMOTE_ADDR, | ||
| 95 | IWPM_NLA_RQUERY_MAPPED_LOC_ADDR, | ||
| 96 | IWPM_NLA_RQUERY_MAPPED_REM_ADDR, | ||
| 97 | IWPM_NLA_RQUERY_MAPPING_ERR, | ||
| 98 | IWPM_NLA_RQUERY_MAPPING_MAX | ||
| 99 | }; | ||
| 100 | |||
| 101 | enum { | ||
| 102 | IWPM_NLA_MAPINFO_REQ_UNSPEC = 0, | ||
| 103 | IWPM_NLA_MAPINFO_ULIB_NAME, | ||
| 104 | IWPM_NLA_MAPINFO_ULIB_VER, | ||
| 105 | IWPM_NLA_MAPINFO_REQ_MAX | ||
| 106 | }; | ||
| 107 | |||
| 108 | enum { | ||
| 109 | IWPM_NLA_MAPINFO_UNSPEC = 0, | ||
| 110 | IWPM_NLA_MAPINFO_LOCAL_ADDR, | ||
| 111 | IWPM_NLA_MAPINFO_MAPPED_ADDR, | ||
| 112 | IWPM_NLA_MAPINFO_MAX | ||
| 113 | }; | ||
| 114 | |||
| 115 | enum { | ||
| 116 | IWPM_NLA_MAPINFO_NUM_UNSPEC = 0, | ||
| 117 | IWPM_NLA_MAPINFO_SEQ, | ||
| 118 | IWPM_NLA_MAPINFO_SEND_NUM, | ||
| 119 | IWPM_NLA_MAPINFO_ACK_NUM, | ||
| 120 | IWPM_NLA_MAPINFO_NUM_MAX | ||
| 121 | }; | ||
| 122 | |||
| 123 | enum { | ||
| 124 | IWPM_NLA_ERR_UNSPEC = 0, | ||
| 125 | IWPM_NLA_ERR_SEQ, | ||
| 126 | IWPM_NLA_ERR_CODE, | ||
| 127 | IWPM_NLA_ERR_MAX | ||
| 128 | }; | ||
| 129 | |||
| 36 | 130 | ||
| 37 | #endif /* _UAPI_RDMA_NETLINK_H */ | 131 | #endif /* _UAPI_RDMA_NETLINK_H */ |
diff --git a/include/uapi/sound/asound.h b/include/uapi/sound/asound.h index 9fc6219d3848..224948342f14 100644 --- a/include/uapi/sound/asound.h +++ b/include/uapi/sound/asound.h | |||
| @@ -94,9 +94,11 @@ enum { | |||
| 94 | SNDRV_HWDEP_IFACE_HDA, /* HD-audio */ | 94 | SNDRV_HWDEP_IFACE_HDA, /* HD-audio */ |
| 95 | SNDRV_HWDEP_IFACE_USB_STREAM, /* direct access to usb stream */ | 95 | SNDRV_HWDEP_IFACE_USB_STREAM, /* direct access to usb stream */ |
| 96 | SNDRV_HWDEP_IFACE_FW_DICE, /* TC DICE FireWire device */ | 96 | SNDRV_HWDEP_IFACE_FW_DICE, /* TC DICE FireWire device */ |
| 97 | SNDRV_HWDEP_IFACE_FW_FIREWORKS, /* Echo Audio Fireworks based device */ | ||
| 98 | SNDRV_HWDEP_IFACE_FW_BEBOB, /* BridgeCo BeBoB based device */ | ||
| 97 | 99 | ||
| 98 | /* Don't forget to change the following: */ | 100 | /* Don't forget to change the following: */ |
| 99 | SNDRV_HWDEP_IFACE_LAST = SNDRV_HWDEP_IFACE_FW_DICE | 101 | SNDRV_HWDEP_IFACE_LAST = SNDRV_HWDEP_IFACE_FW_BEBOB |
| 100 | }; | 102 | }; |
| 101 | 103 | ||
| 102 | struct snd_hwdep_info { | 104 | struct snd_hwdep_info { |
diff --git a/include/uapi/sound/firewire.h b/include/uapi/sound/firewire.h index 59f5961302bf..af4bd136c75d 100644 --- a/include/uapi/sound/firewire.h +++ b/include/uapi/sound/firewire.h | |||
| @@ -2,11 +2,13 @@ | |||
| 2 | #define _UAPI_SOUND_FIREWIRE_H_INCLUDED | 2 | #define _UAPI_SOUND_FIREWIRE_H_INCLUDED |
| 3 | 3 | ||
| 4 | #include <linux/ioctl.h> | 4 | #include <linux/ioctl.h> |
| 5 | #include <linux/types.h> | ||
| 5 | 6 | ||
| 6 | /* events can be read() from the hwdep device */ | 7 | /* events can be read() from the hwdep device */ |
| 7 | 8 | ||
| 8 | #define SNDRV_FIREWIRE_EVENT_LOCK_STATUS 0x000010cc | 9 | #define SNDRV_FIREWIRE_EVENT_LOCK_STATUS 0x000010cc |
| 9 | #define SNDRV_FIREWIRE_EVENT_DICE_NOTIFICATION 0xd1ce004e | 10 | #define SNDRV_FIREWIRE_EVENT_DICE_NOTIFICATION 0xd1ce004e |
| 11 | #define SNDRV_FIREWIRE_EVENT_EFW_RESPONSE 0x4e617475 | ||
| 10 | 12 | ||
| 11 | struct snd_firewire_event_common { | 13 | struct snd_firewire_event_common { |
| 12 | unsigned int type; /* SNDRV_FIREWIRE_EVENT_xxx */ | 14 | unsigned int type; /* SNDRV_FIREWIRE_EVENT_xxx */ |
| @@ -22,10 +24,27 @@ struct snd_firewire_event_dice_notification { | |||
| 22 | unsigned int notification; /* DICE-specific bits */ | 24 | unsigned int notification; /* DICE-specific bits */ |
| 23 | }; | 25 | }; |
| 24 | 26 | ||
| 27 | #define SND_EFW_TRANSACTION_USER_SEQNUM_MAX ((__u32)((__u16)~0) - 1) | ||
| 28 | /* each field should be in big endian */ | ||
| 29 | struct snd_efw_transaction { | ||
| 30 | __be32 length; | ||
| 31 | __be32 version; | ||
| 32 | __be32 seqnum; | ||
| 33 | __be32 category; | ||
| 34 | __be32 command; | ||
| 35 | __be32 status; | ||
| 36 | __be32 params[0]; | ||
| 37 | }; | ||
| 38 | struct snd_firewire_event_efw_response { | ||
| 39 | unsigned int type; | ||
| 40 | __be32 response[0]; /* some responses */ | ||
| 41 | }; | ||
| 42 | |||
| 25 | union snd_firewire_event { | 43 | union snd_firewire_event { |
| 26 | struct snd_firewire_event_common common; | 44 | struct snd_firewire_event_common common; |
| 27 | struct snd_firewire_event_lock_status lock_status; | 45 | struct snd_firewire_event_lock_status lock_status; |
| 28 | struct snd_firewire_event_dice_notification dice_notification; | 46 | struct snd_firewire_event_dice_notification dice_notification; |
| 47 | struct snd_firewire_event_efw_response efw_response; | ||
| 29 | }; | 48 | }; |
| 30 | 49 | ||
| 31 | 50 | ||
| @@ -34,7 +53,9 @@ union snd_firewire_event { | |||
| 34 | #define SNDRV_FIREWIRE_IOCTL_UNLOCK _IO('H', 0xfa) | 53 | #define SNDRV_FIREWIRE_IOCTL_UNLOCK _IO('H', 0xfa) |
| 35 | 54 | ||
| 36 | #define SNDRV_FIREWIRE_TYPE_DICE 1 | 55 | #define SNDRV_FIREWIRE_TYPE_DICE 1 |
| 37 | /* Fireworks, AV/C, RME, MOTU, ... */ | 56 | #define SNDRV_FIREWIRE_TYPE_FIREWORKS 2 |
| 57 | #define SNDRV_FIREWIRE_TYPE_BEBOB 3 | ||
| 58 | /* AV/C, RME, MOTU, ... */ | ||
| 38 | 59 | ||
| 39 | struct snd_firewire_get_info { | 60 | struct snd_firewire_get_info { |
| 40 | unsigned int type; /* SNDRV_FIREWIRE_TYPE_xxx */ | 61 | unsigned int type; /* SNDRV_FIREWIRE_TYPE_xxx */ |
diff --git a/include/video/imx-ipu-v3.h b/include/video/imx-ipu-v3.h new file mode 100644 index 000000000000..3e43e22cdff9 --- /dev/null +++ b/include/video/imx-ipu-v3.h | |||
| @@ -0,0 +1,347 @@ | |||
| 1 | /* | ||
| 2 | * Copyright 2005-2009 Freescale Semiconductor, Inc. | ||
| 3 | * | ||
| 4 | * The code contained herein is licensed under the GNU Lesser General | ||
| 5 | * Public License. You may obtain a copy of the GNU Lesser General | ||
| 6 | * Public License Version 2.1 or later at the following locations: | ||
| 7 | * | ||
| 8 | * http://www.opensource.org/licenses/lgpl-license.html | ||
| 9 | * http://www.gnu.org/copyleft/lgpl.html | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef __DRM_IPU_H__ | ||
| 13 | #define __DRM_IPU_H__ | ||
| 14 | |||
| 15 | #include <linux/types.h> | ||
| 16 | #include <linux/videodev2.h> | ||
| 17 | #include <linux/bitmap.h> | ||
| 18 | #include <linux/fb.h> | ||
| 19 | |||
| 20 | struct ipu_soc; | ||
| 21 | |||
| 22 | enum ipuv3_type { | ||
| 23 | IPUV3EX, | ||
| 24 | IPUV3M, | ||
| 25 | IPUV3H, | ||
| 26 | }; | ||
| 27 | |||
| 28 | #define IPU_PIX_FMT_GBR24 v4l2_fourcc('G', 'B', 'R', '3') | ||
| 29 | |||
| 30 | /* | ||
| 31 | * Bitfield of Display Interface signal polarities. | ||
| 32 | */ | ||
| 33 | struct ipu_di_signal_cfg { | ||
| 34 | unsigned datamask_en:1; | ||
| 35 | unsigned interlaced:1; | ||
| 36 | unsigned odd_field_first:1; | ||
| 37 | unsigned clksel_en:1; | ||
| 38 | unsigned clkidle_en:1; | ||
| 39 | unsigned data_pol:1; /* true = inverted */ | ||
| 40 | unsigned clk_pol:1; /* true = rising edge */ | ||
| 41 | unsigned enable_pol:1; | ||
| 42 | unsigned Hsync_pol:1; /* true = active high */ | ||
| 43 | unsigned Vsync_pol:1; | ||
| 44 | |||
| 45 | u16 width; | ||
| 46 | u16 height; | ||
| 47 | u32 pixel_fmt; | ||
| 48 | u16 h_start_width; | ||
| 49 | u16 h_sync_width; | ||
| 50 | u16 h_end_width; | ||
| 51 | u16 v_start_width; | ||
| 52 | u16 v_sync_width; | ||
| 53 | u16 v_end_width; | ||
| 54 | u32 v_to_h_sync; | ||
| 55 | unsigned long pixelclock; | ||
| 56 | #define IPU_DI_CLKMODE_SYNC (1 << 0) | ||
| 57 | #define IPU_DI_CLKMODE_EXT (1 << 1) | ||
| 58 | unsigned long clkflags; | ||
| 59 | |||
| 60 | u8 hsync_pin; | ||
| 61 | u8 vsync_pin; | ||
| 62 | }; | ||
| 63 | |||
| 64 | enum ipu_color_space { | ||
| 65 | IPUV3_COLORSPACE_RGB, | ||
| 66 | IPUV3_COLORSPACE_YUV, | ||
| 67 | IPUV3_COLORSPACE_UNKNOWN, | ||
| 68 | }; | ||
| 69 | |||
| 70 | struct ipuv3_channel; | ||
| 71 | |||
| 72 | enum ipu_channel_irq { | ||
| 73 | IPU_IRQ_EOF = 0, | ||
| 74 | IPU_IRQ_NFACK = 64, | ||
| 75 | IPU_IRQ_NFB4EOF = 128, | ||
| 76 | IPU_IRQ_EOS = 192, | ||
| 77 | }; | ||
| 78 | |||
| 79 | int ipu_map_irq(struct ipu_soc *ipu, int irq); | ||
| 80 | int ipu_idmac_channel_irq(struct ipu_soc *ipu, struct ipuv3_channel *channel, | ||
| 81 | enum ipu_channel_irq irq); | ||
| 82 | |||
| 83 | #define IPU_IRQ_DP_SF_START (448 + 2) | ||
| 84 | #define IPU_IRQ_DP_SF_END (448 + 3) | ||
| 85 | #define IPU_IRQ_BG_SF_END IPU_IRQ_DP_SF_END, | ||
| 86 | #define IPU_IRQ_DC_FC_0 (448 + 8) | ||
| 87 | #define IPU_IRQ_DC_FC_1 (448 + 9) | ||
| 88 | #define IPU_IRQ_DC_FC_2 (448 + 10) | ||
| 89 | #define IPU_IRQ_DC_FC_3 (448 + 11) | ||
| 90 | #define IPU_IRQ_DC_FC_4 (448 + 12) | ||
| 91 | #define IPU_IRQ_DC_FC_6 (448 + 13) | ||
| 92 | #define IPU_IRQ_VSYNC_PRE_0 (448 + 14) | ||
| 93 | #define IPU_IRQ_VSYNC_PRE_1 (448 + 15) | ||
| 94 | |||
| 95 | /* | ||
| 96 | * IPU Image DMA Controller (idmac) functions | ||
| 97 | */ | ||
| 98 | struct ipuv3_channel *ipu_idmac_get(struct ipu_soc *ipu, unsigned channel); | ||
| 99 | void ipu_idmac_put(struct ipuv3_channel *); | ||
| 100 | |||
| 101 | int ipu_idmac_enable_channel(struct ipuv3_channel *channel); | ||
| 102 | int ipu_idmac_disable_channel(struct ipuv3_channel *channel); | ||
| 103 | int ipu_idmac_wait_busy(struct ipuv3_channel *channel, int ms); | ||
| 104 | |||
| 105 | void ipu_idmac_set_double_buffer(struct ipuv3_channel *channel, | ||
| 106 | bool doublebuffer); | ||
| 107 | int ipu_idmac_get_current_buffer(struct ipuv3_channel *channel); | ||
| 108 | void ipu_idmac_select_buffer(struct ipuv3_channel *channel, u32 buf_num); | ||
| 109 | |||
| 110 | /* | ||
| 111 | * IPU Display Controller (dc) functions | ||
| 112 | */ | ||
| 113 | struct ipu_dc; | ||
| 114 | struct ipu_di; | ||
| 115 | struct ipu_dc *ipu_dc_get(struct ipu_soc *ipu, int channel); | ||
| 116 | void ipu_dc_put(struct ipu_dc *dc); | ||
| 117 | int ipu_dc_init_sync(struct ipu_dc *dc, struct ipu_di *di, bool interlaced, | ||
| 118 | u32 pixel_fmt, u32 width); | ||
| 119 | void ipu_dc_enable(struct ipu_soc *ipu); | ||
| 120 | void ipu_dc_enable_channel(struct ipu_dc *dc); | ||
| 121 | void ipu_dc_disable_channel(struct ipu_dc *dc); | ||
| 122 | void ipu_dc_disable(struct ipu_soc *ipu); | ||
| 123 | |||
| 124 | /* | ||
| 125 | * IPU Display Interface (di) functions | ||
| 126 | */ | ||
| 127 | struct ipu_di *ipu_di_get(struct ipu_soc *ipu, int disp); | ||
| 128 | void ipu_di_put(struct ipu_di *); | ||
| 129 | int ipu_di_disable(struct ipu_di *); | ||
| 130 | int ipu_di_enable(struct ipu_di *); | ||
| 131 | int ipu_di_get_num(struct ipu_di *); | ||
| 132 | int ipu_di_init_sync_panel(struct ipu_di *, struct ipu_di_signal_cfg *sig); | ||
| 133 | |||
| 134 | /* | ||
| 135 | * IPU Display Multi FIFO Controller (dmfc) functions | ||
| 136 | */ | ||
| 137 | struct dmfc_channel; | ||
| 138 | int ipu_dmfc_enable_channel(struct dmfc_channel *dmfc); | ||
| 139 | void ipu_dmfc_disable_channel(struct dmfc_channel *dmfc); | ||
| 140 | int ipu_dmfc_alloc_bandwidth(struct dmfc_channel *dmfc, | ||
| 141 | unsigned long bandwidth_mbs, int burstsize); | ||
| 142 | void ipu_dmfc_free_bandwidth(struct dmfc_channel *dmfc); | ||
| 143 | int ipu_dmfc_init_channel(struct dmfc_channel *dmfc, int width); | ||
| 144 | struct dmfc_channel *ipu_dmfc_get(struct ipu_soc *ipu, int ipuv3_channel); | ||
| 145 | void ipu_dmfc_put(struct dmfc_channel *dmfc); | ||
| 146 | |||
| 147 | /* | ||
| 148 | * IPU Display Processor (dp) functions | ||
| 149 | */ | ||
| 150 | #define IPU_DP_FLOW_SYNC_BG 0 | ||
| 151 | #define IPU_DP_FLOW_SYNC_FG 1 | ||
| 152 | #define IPU_DP_FLOW_ASYNC0_BG 2 | ||
| 153 | #define IPU_DP_FLOW_ASYNC0_FG 3 | ||
| 154 | #define IPU_DP_FLOW_ASYNC1_BG 4 | ||
| 155 | #define IPU_DP_FLOW_ASYNC1_FG 5 | ||
| 156 | |||
| 157 | struct ipu_dp *ipu_dp_get(struct ipu_soc *ipu, unsigned int flow); | ||
| 158 | void ipu_dp_put(struct ipu_dp *); | ||
| 159 | int ipu_dp_enable(struct ipu_soc *ipu); | ||
| 160 | int ipu_dp_enable_channel(struct ipu_dp *dp); | ||
| 161 | void ipu_dp_disable_channel(struct ipu_dp *dp); | ||
| 162 | void ipu_dp_disable(struct ipu_soc *ipu); | ||
| 163 | int ipu_dp_setup_channel(struct ipu_dp *dp, | ||
| 164 | enum ipu_color_space in, enum ipu_color_space out); | ||
| 165 | int ipu_dp_set_window_pos(struct ipu_dp *, u16 x_pos, u16 y_pos); | ||
| 166 | int ipu_dp_set_global_alpha(struct ipu_dp *dp, bool enable, u8 alpha, | ||
| 167 | bool bg_chan); | ||
| 168 | |||
| 169 | /* | ||
| 170 | * IPU CMOS Sensor Interface (csi) functions | ||
| 171 | */ | ||
| 172 | int ipu_csi_enable(struct ipu_soc *ipu, int csi); | ||
| 173 | int ipu_csi_disable(struct ipu_soc *ipu, int csi); | ||
| 174 | |||
| 175 | /* | ||
| 176 | * IPU Sensor Multiple FIFO Controller (SMFC) functions | ||
| 177 | */ | ||
| 178 | int ipu_smfc_enable(struct ipu_soc *ipu); | ||
| 179 | int ipu_smfc_disable(struct ipu_soc *ipu); | ||
| 180 | int ipu_smfc_map_channel(struct ipu_soc *ipu, int channel, int csi_id, int mipi_id); | ||
| 181 | int ipu_smfc_set_burstsize(struct ipu_soc *ipu, int channel, int burstsize); | ||
| 182 | |||
| 183 | #define IPU_CPMEM_WORD(word, ofs, size) ((((word) * 160 + (ofs)) << 8) | (size)) | ||
| 184 | |||
| 185 | #define IPU_FIELD_UBO IPU_CPMEM_WORD(0, 46, 22) | ||
| 186 | #define IPU_FIELD_VBO IPU_CPMEM_WORD(0, 68, 22) | ||
| 187 | #define IPU_FIELD_IOX IPU_CPMEM_WORD(0, 90, 4) | ||
| 188 | #define IPU_FIELD_RDRW IPU_CPMEM_WORD(0, 94, 1) | ||
| 189 | #define IPU_FIELD_SO IPU_CPMEM_WORD(0, 113, 1) | ||
| 190 | #define IPU_FIELD_SLY IPU_CPMEM_WORD(1, 102, 14) | ||
| 191 | #define IPU_FIELD_SLUV IPU_CPMEM_WORD(1, 128, 14) | ||
| 192 | |||
| 193 | #define IPU_FIELD_XV IPU_CPMEM_WORD(0, 0, 10) | ||
| 194 | #define IPU_FIELD_YV IPU_CPMEM_WORD(0, 10, 9) | ||
| 195 | #define IPU_FIELD_XB IPU_CPMEM_WORD(0, 19, 13) | ||
| 196 | #define IPU_FIELD_YB IPU_CPMEM_WORD(0, 32, 12) | ||
| 197 | #define IPU_FIELD_NSB_B IPU_CPMEM_WORD(0, 44, 1) | ||
| 198 | #define IPU_FIELD_CF IPU_CPMEM_WORD(0, 45, 1) | ||
| 199 | #define IPU_FIELD_SX IPU_CPMEM_WORD(0, 46, 12) | ||
| 200 | #define IPU_FIELD_SY IPU_CPMEM_WORD(0, 58, 11) | ||
| 201 | #define IPU_FIELD_NS IPU_CPMEM_WORD(0, 69, 10) | ||
| 202 | #define IPU_FIELD_SDX IPU_CPMEM_WORD(0, 79, 7) | ||
| 203 | #define IPU_FIELD_SM IPU_CPMEM_WORD(0, 86, 10) | ||
| 204 | #define IPU_FIELD_SCC IPU_CPMEM_WORD(0, 96, 1) | ||
| 205 | #define IPU_FIELD_SCE IPU_CPMEM_WORD(0, 97, 1) | ||
| 206 | #define IPU_FIELD_SDY IPU_CPMEM_WORD(0, 98, 7) | ||
| 207 | #define IPU_FIELD_SDRX IPU_CPMEM_WORD(0, 105, 1) | ||
| 208 | #define IPU_FIELD_SDRY IPU_CPMEM_WORD(0, 106, 1) | ||
| 209 | #define IPU_FIELD_BPP IPU_CPMEM_WORD(0, 107, 3) | ||
| 210 | #define IPU_FIELD_DEC_SEL IPU_CPMEM_WORD(0, 110, 2) | ||
| 211 | #define IPU_FIELD_DIM IPU_CPMEM_WORD(0, 112, 1) | ||
| 212 | #define IPU_FIELD_BNDM IPU_CPMEM_WORD(0, 114, 3) | ||
| 213 | #define IPU_FIELD_BM IPU_CPMEM_WORD(0, 117, 2) | ||
| 214 | #define IPU_FIELD_ROT IPU_CPMEM_WORD(0, 119, 1) | ||
| 215 | #define IPU_FIELD_HF IPU_CPMEM_WORD(0, 120, 1) | ||
| 216 | #define IPU_FIELD_VF IPU_CPMEM_WORD(0, 121, 1) | ||
| 217 | #define IPU_FIELD_THE IPU_CPMEM_WORD(0, 122, 1) | ||
| 218 | #define IPU_FIELD_CAP IPU_CPMEM_WORD(0, 123, 1) | ||
| 219 | #define IPU_FIELD_CAE IPU_CPMEM_WORD(0, 124, 1) | ||
| 220 | #define IPU_FIELD_FW IPU_CPMEM_WORD(0, 125, 13) | ||
| 221 | #define IPU_FIELD_FH IPU_CPMEM_WORD(0, 138, 12) | ||
| 222 | #define IPU_FIELD_EBA0 IPU_CPMEM_WORD(1, 0, 29) | ||
| 223 | #define IPU_FIELD_EBA1 IPU_CPMEM_WORD(1, 29, 29) | ||
| 224 | #define IPU_FIELD_ILO IPU_CPMEM_WORD(1, 58, 20) | ||
| 225 | #define IPU_FIELD_NPB IPU_CPMEM_WORD(1, 78, 7) | ||
| 226 | #define IPU_FIELD_PFS IPU_CPMEM_WORD(1, 85, 4) | ||
| 227 | #define IPU_FIELD_ALU IPU_CPMEM_WORD(1, 89, 1) | ||
| 228 | #define IPU_FIELD_ALBM IPU_CPMEM_WORD(1, 90, 3) | ||
| 229 | #define IPU_FIELD_ID IPU_CPMEM_WORD(1, 93, 2) | ||
| 230 | #define IPU_FIELD_TH IPU_CPMEM_WORD(1, 95, 7) | ||
| 231 | #define IPU_FIELD_SL IPU_CPMEM_WORD(1, 102, 14) | ||
| 232 | #define IPU_FIELD_WID0 IPU_CPMEM_WORD(1, 116, 3) | ||
| 233 | #define IPU_FIELD_WID1 IPU_CPMEM_WORD(1, 119, 3) | ||
| 234 | #define IPU_FIELD_WID2 IPU_CPMEM_WORD(1, 122, 3) | ||
| 235 | #define IPU_FIELD_WID3 IPU_CPMEM_WORD(1, 125, 3) | ||
| 236 | #define IPU_FIELD_OFS0 IPU_CPMEM_WORD(1, 128, 5) | ||
| 237 | #define IPU_FIELD_OFS1 IPU_CPMEM_WORD(1, 133, 5) | ||
| 238 | #define IPU_FIELD_OFS2 IPU_CPMEM_WORD(1, 138, 5) | ||
| 239 | #define IPU_FIELD_OFS3 IPU_CPMEM_WORD(1, 143, 5) | ||
| 240 | #define IPU_FIELD_SXYS IPU_CPMEM_WORD(1, 148, 1) | ||
| 241 | #define IPU_FIELD_CRE IPU_CPMEM_WORD(1, 149, 1) | ||
| 242 | #define IPU_FIELD_DEC_SEL2 IPU_CPMEM_WORD(1, 150, 1) | ||
| 243 | |||
| 244 | struct ipu_cpmem_word { | ||
| 245 | u32 data[5]; | ||
| 246 | u32 res[3]; | ||
| 247 | }; | ||
| 248 | |||
| 249 | struct ipu_ch_param { | ||
| 250 | struct ipu_cpmem_word word[2]; | ||
| 251 | }; | ||
| 252 | |||
| 253 | void ipu_ch_param_write_field(struct ipu_ch_param __iomem *base, u32 wbs, u32 v); | ||
| 254 | u32 ipu_ch_param_read_field(struct ipu_ch_param __iomem *base, u32 wbs); | ||
| 255 | struct ipu_ch_param __iomem *ipu_get_cpmem(struct ipuv3_channel *channel); | ||
| 256 | void ipu_ch_param_dump(struct ipu_ch_param __iomem *p); | ||
| 257 | |||
| 258 | static inline void ipu_ch_param_zero(struct ipu_ch_param __iomem *p) | ||
| 259 | { | ||
| 260 | int i; | ||
| 261 | void __iomem *base = p; | ||
| 262 | |||
| 263 | for (i = 0; i < sizeof(*p) / sizeof(u32); i++) | ||
| 264 | writel(0, base + i * sizeof(u32)); | ||
| 265 | } | ||
| 266 | |||
| 267 | static inline void ipu_cpmem_set_buffer(struct ipu_ch_param __iomem *p, | ||
| 268 | int bufnum, dma_addr_t buf) | ||
| 269 | { | ||
| 270 | if (bufnum) | ||
| 271 | ipu_ch_param_write_field(p, IPU_FIELD_EBA1, buf >> 3); | ||
| 272 | else | ||
| 273 | ipu_ch_param_write_field(p, IPU_FIELD_EBA0, buf >> 3); | ||
| 274 | } | ||
| 275 | |||
| 276 | static inline void ipu_cpmem_set_resolution(struct ipu_ch_param __iomem *p, | ||
| 277 | int xres, int yres) | ||
| 278 | { | ||
| 279 | ipu_ch_param_write_field(p, IPU_FIELD_FW, xres - 1); | ||
| 280 | ipu_ch_param_write_field(p, IPU_FIELD_FH, yres - 1); | ||
| 281 | } | ||
| 282 | |||
| 283 | static inline void ipu_cpmem_set_stride(struct ipu_ch_param __iomem *p, | ||
| 284 | int stride) | ||
| 285 | { | ||
| 286 | ipu_ch_param_write_field(p, IPU_FIELD_SLY, stride - 1); | ||
| 287 | } | ||
| 288 | |||
| 289 | void ipu_cpmem_set_high_priority(struct ipuv3_channel *channel); | ||
| 290 | |||
| 291 | struct ipu_rgb { | ||
| 292 | struct fb_bitfield red; | ||
| 293 | struct fb_bitfield green; | ||
| 294 | struct fb_bitfield blue; | ||
| 295 | struct fb_bitfield transp; | ||
| 296 | int bits_per_pixel; | ||
| 297 | }; | ||
| 298 | |||
| 299 | struct ipu_image { | ||
| 300 | struct v4l2_pix_format pix; | ||
| 301 | struct v4l2_rect rect; | ||
| 302 | dma_addr_t phys; | ||
| 303 | }; | ||
| 304 | |||
| 305 | int ipu_cpmem_set_format_passthrough(struct ipu_ch_param __iomem *p, | ||
| 306 | int width); | ||
| 307 | |||
| 308 | int ipu_cpmem_set_format_rgb(struct ipu_ch_param __iomem *, | ||
| 309 | const struct ipu_rgb *rgb); | ||
| 310 | |||
| 311 | static inline void ipu_cpmem_interlaced_scan(struct ipu_ch_param *p, | ||
| 312 | int stride) | ||
| 313 | { | ||
| 314 | ipu_ch_param_write_field(p, IPU_FIELD_SO, 1); | ||
| 315 | ipu_ch_param_write_field(p, IPU_FIELD_ILO, stride / 8); | ||
| 316 | ipu_ch_param_write_field(p, IPU_FIELD_SLY, (stride * 2) - 1); | ||
| 317 | }; | ||
| 318 | |||
| 319 | void ipu_cpmem_set_yuv_planar(struct ipu_ch_param __iomem *p, u32 pixel_format, | ||
| 320 | int stride, int height); | ||
| 321 | void ipu_cpmem_set_yuv_interleaved(struct ipu_ch_param __iomem *p, | ||
| 322 | u32 pixel_format); | ||
| 323 | void ipu_cpmem_set_yuv_planar_full(struct ipu_ch_param __iomem *p, | ||
| 324 | u32 pixel_format, int stride, int u_offset, int v_offset); | ||
| 325 | int ipu_cpmem_set_fmt(struct ipu_ch_param __iomem *cpmem, u32 pixelformat); | ||
| 326 | int ipu_cpmem_set_image(struct ipu_ch_param __iomem *cpmem, | ||
| 327 | struct ipu_image *image); | ||
| 328 | |||
| 329 | enum ipu_color_space ipu_drm_fourcc_to_colorspace(u32 drm_fourcc); | ||
| 330 | enum ipu_color_space ipu_pixelformat_to_colorspace(u32 pixelformat); | ||
| 331 | |||
| 332 | static inline void ipu_cpmem_set_burstsize(struct ipu_ch_param __iomem *p, | ||
| 333 | int burstsize) | ||
| 334 | { | ||
| 335 | ipu_ch_param_write_field(p, IPU_FIELD_NPB, burstsize - 1); | ||
| 336 | }; | ||
| 337 | |||
| 338 | struct ipu_client_platformdata { | ||
| 339 | int csi; | ||
| 340 | int di; | ||
| 341 | int dc; | ||
| 342 | int dp; | ||
| 343 | int dmfc; | ||
| 344 | int dma[2]; | ||
| 345 | }; | ||
| 346 | |||
| 347 | #endif /* __DRM_IPU_H__ */ | ||
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index 6adb44534606..fc06c5b5f12a 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h | |||
| @@ -319,6 +319,7 @@ enum omapdss_version { | |||
| 319 | OMAPDSS_VER_OMAP4430_ES2, /* OMAP4430 ES2.0, 2.1, 2.2 */ | 319 | OMAPDSS_VER_OMAP4430_ES2, /* OMAP4430 ES2.0, 2.1, 2.2 */ |
| 320 | OMAPDSS_VER_OMAP4, /* All other OMAP4s */ | 320 | OMAPDSS_VER_OMAP4, /* All other OMAP4s */ |
| 321 | OMAPDSS_VER_OMAP5, | 321 | OMAPDSS_VER_OMAP5, |
| 322 | OMAPDSS_VER_AM43xx, | ||
| 322 | }; | 323 | }; |
| 323 | 324 | ||
| 324 | /* Board specific data */ | 325 | /* Board specific data */ |
| @@ -388,8 +389,8 @@ struct omap_dss_cpr_coefs { | |||
| 388 | }; | 389 | }; |
| 389 | 390 | ||
| 390 | struct omap_overlay_info { | 391 | struct omap_overlay_info { |
| 391 | u32 paddr; | 392 | dma_addr_t paddr; |
| 392 | u32 p_uv_addr; /* for NV12 format */ | 393 | dma_addr_t p_uv_addr; /* for NV12 format */ |
| 393 | u16 screen_width; | 394 | u16 screen_width; |
| 394 | u16 width; | 395 | u16 width; |
| 395 | u16 height; | 396 | u16 height; |
| @@ -964,9 +965,6 @@ int dispc_ovl_setup(enum omap_plane plane, const struct omap_overlay_info *oi, | |||
| 964 | bool replication, const struct omap_video_timings *mgr_timings, | 965 | bool replication, const struct omap_video_timings *mgr_timings, |
| 965 | bool mem_to_mem); | 966 | bool mem_to_mem); |
| 966 | 967 | ||
| 967 | #define to_dss_driver(x) container_of((x), struct omap_dss_driver, driver) | ||
| 968 | #define to_dss_device(x) container_of((x), struct omap_dss_device, old_dev) | ||
| 969 | |||
| 970 | int omapdss_compat_init(void); | 968 | int omapdss_compat_init(void); |
| 971 | void omapdss_compat_uninit(void); | 969 | void omapdss_compat_uninit(void); |
| 972 | 970 | ||
