diff options
| author | Eric Paris <eparis@redhat.com> | 2014-03-07 11:41:32 -0500 |
|---|---|---|
| committer | Eric Paris <eparis@redhat.com> | 2014-03-07 11:41:32 -0500 |
| commit | b7d3622a39fde7658170b7f3cf6c6889bb8db30d (patch) | |
| tree | 64f4e781ecb2a85d675e234072b988560bcd25f1 /include/asm-generic | |
| parent | f3411cb2b2e396a41ed3a439863f028db7140a34 (diff) | |
| parent | d8ec26d7f8287f5788a494f56e8814210f0e64be (diff) | |
Merge tag 'v3.13' into for-3.15
Linux 3.13
Conflicts:
include/net/xfrm.h
Simple merge where v3.13 removed 'extern' from definitions and the audit
tree did s/u32/unsigned int/ to the same definitions.
Diffstat (limited to 'include/asm-generic')
| -rw-r--r-- | include/asm-generic/bitops/find.h | 12 | ||||
| -rw-r--r-- | include/asm-generic/gpio.h | 235 | ||||
| -rw-r--r-- | include/asm-generic/memory_model.h | 2 | ||||
| -rw-r--r-- | include/asm-generic/pgtable.h | 7 | ||||
| -rw-r--r-- | include/asm-generic/preempt.h | 92 | ||||
| -rw-r--r-- | include/asm-generic/siginfo.h | 2 | ||||
| -rw-r--r-- | include/asm-generic/simd.h | 14 | ||||
| -rw-r--r-- | include/asm-generic/vmlinux.lds.h | 1 | ||||
| -rw-r--r-- | include/asm-generic/word-at-a-time.h | 8 |
9 files changed, 205 insertions, 168 deletions
diff --git a/include/asm-generic/bitops/find.h b/include/asm-generic/bitops/find.h index 71c778033f57..998d4d544f18 100644 --- a/include/asm-generic/bitops/find.h +++ b/include/asm-generic/bitops/find.h | |||
| @@ -7,6 +7,9 @@ | |||
| 7 | * @addr: The address to base the search on | 7 | * @addr: The address to base the search on |
| 8 | * @offset: The bitnumber to start searching at | 8 | * @offset: The bitnumber to start searching at |
| 9 | * @size: The bitmap size in bits | 9 | * @size: The bitmap size in bits |
| 10 | * | ||
| 11 | * Returns the bit number for the next set bit | ||
| 12 | * If no bits are set, returns @size. | ||
| 10 | */ | 13 | */ |
| 11 | extern unsigned long find_next_bit(const unsigned long *addr, unsigned long | 14 | extern unsigned long find_next_bit(const unsigned long *addr, unsigned long |
| 12 | size, unsigned long offset); | 15 | size, unsigned long offset); |
| @@ -18,6 +21,9 @@ extern unsigned long find_next_bit(const unsigned long *addr, unsigned long | |||
| 18 | * @addr: The address to base the search on | 21 | * @addr: The address to base the search on |
| 19 | * @offset: The bitnumber to start searching at | 22 | * @offset: The bitnumber to start searching at |
| 20 | * @size: The bitmap size in bits | 23 | * @size: The bitmap size in bits |
| 24 | * | ||
| 25 | * Returns the bit number of the next zero bit | ||
| 26 | * If no bits are zero, returns @size. | ||
| 21 | */ | 27 | */ |
| 22 | extern unsigned long find_next_zero_bit(const unsigned long *addr, unsigned | 28 | extern unsigned long find_next_zero_bit(const unsigned long *addr, unsigned |
| 23 | long size, unsigned long offset); | 29 | long size, unsigned long offset); |
| @@ -28,9 +34,10 @@ extern unsigned long find_next_zero_bit(const unsigned long *addr, unsigned | |||
| 28 | /** | 34 | /** |
| 29 | * find_first_bit - find the first set bit in a memory region | 35 | * find_first_bit - find the first set bit in a memory region |
| 30 | * @addr: The address to start the search at | 36 | * @addr: The address to start the search at |
| 31 | * @size: The maximum size to search | 37 | * @size: The maximum number of bits to search |
| 32 | * | 38 | * |
| 33 | * Returns the bit number of the first set bit. | 39 | * Returns the bit number of the first set bit. |
| 40 | * If no bits are set, returns @size. | ||
| 34 | */ | 41 | */ |
| 35 | extern unsigned long find_first_bit(const unsigned long *addr, | 42 | extern unsigned long find_first_bit(const unsigned long *addr, |
| 36 | unsigned long size); | 43 | unsigned long size); |
| @@ -38,9 +45,10 @@ extern unsigned long find_first_bit(const unsigned long *addr, | |||
| 38 | /** | 45 | /** |
| 39 | * find_first_zero_bit - find the first cleared bit in a memory region | 46 | * find_first_zero_bit - find the first cleared bit in a memory region |
| 40 | * @addr: The address to start the search at | 47 | * @addr: The address to start the search at |
| 41 | * @size: The maximum size to search | 48 | * @size: The maximum number of bits to search |
| 42 | * | 49 | * |
| 43 | * Returns the bit number of the first cleared bit. | 50 | * Returns the bit number of the first cleared bit. |
| 51 | * If no bits are zero, returns @size. | ||
| 44 | */ | 52 | */ |
| 45 | extern unsigned long find_first_zero_bit(const unsigned long *addr, | 53 | extern unsigned long find_first_zero_bit(const unsigned long *addr, |
| 46 | unsigned long size); | 54 | unsigned long size); |
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index bde646995d10..a5f56a0213a7 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h | |||
| @@ -10,6 +10,8 @@ | |||
| 10 | #ifdef CONFIG_GPIOLIB | 10 | #ifdef CONFIG_GPIOLIB |
| 11 | 11 | ||
| 12 | #include <linux/compiler.h> | 12 | #include <linux/compiler.h> |
| 13 | #include <linux/gpio/driver.h> | ||
| 14 | #include <linux/gpio/consumer.h> | ||
| 13 | 15 | ||
| 14 | /* Platforms may implement their GPIO interface with library code, | 16 | /* Platforms may implement their GPIO interface with library code, |
| 15 | * at a small performance cost for non-inlined operations and some | 17 | * at a small performance cost for non-inlined operations and some |
| @@ -49,122 +51,11 @@ struct module; | |||
| 49 | struct device_node; | 51 | struct device_node; |
| 50 | struct gpio_desc; | 52 | struct gpio_desc; |
| 51 | 53 | ||
| 52 | /** | 54 | /* caller holds gpio_lock *OR* gpio is marked as requested */ |
| 53 | * struct gpio_chip - abstract a GPIO controller | 55 | static inline struct gpio_chip *gpio_to_chip(unsigned gpio) |
| 54 | * @label: for diagnostics | 56 | { |
| 55 | * @dev: optional device providing the GPIOs | 57 | return gpiod_to_chip(gpio_to_desc(gpio)); |
| 56 | * @owner: helps prevent removal of modules exporting active GPIOs | 58 | } |
| 57 | * @list: links gpio_chips together for traversal | ||
| 58 | * @request: optional hook for chip-specific activation, such as | ||
| 59 | * enabling module power and clock; may sleep | ||
| 60 | * @free: optional hook for chip-specific deactivation, such as | ||
| 61 | * disabling module power and clock; may sleep | ||
| 62 | * @get_direction: returns direction for signal "offset", 0=out, 1=in, | ||
| 63 | * (same as GPIOF_DIR_XXX), or negative error | ||
| 64 | * @direction_input: configures signal "offset" as input, or returns error | ||
| 65 | * @get: returns value for signal "offset"; for output signals this | ||
| 66 | * returns either the value actually sensed, or zero | ||
| 67 | * @direction_output: configures signal "offset" as output, or returns error | ||
| 68 | * @set_debounce: optional hook for setting debounce time for specified gpio in | ||
| 69 | * interrupt triggered gpio chips | ||
| 70 | * @set: assigns output value for signal "offset" | ||
| 71 | * @to_irq: optional hook supporting non-static gpio_to_irq() mappings; | ||
| 72 | * implementation may not sleep | ||
| 73 | * @dbg_show: optional routine to show contents in debugfs; default code | ||
| 74 | * will be used when this is omitted, but custom code can show extra | ||
| 75 | * state (such as pullup/pulldown configuration). | ||
| 76 | * @base: identifies the first GPIO number handled by this chip; or, if | ||
| 77 | * negative during registration, requests dynamic ID allocation. | ||
| 78 | * @ngpio: the number of GPIOs handled by this controller; the last GPIO | ||
| 79 | * handled is (base + ngpio - 1). | ||
| 80 | * @desc: array of ngpio descriptors. Private. | ||
| 81 | * @can_sleep: flag must be set iff get()/set() methods sleep, as they | ||
| 82 | * must while accessing GPIO expander chips over I2C or SPI | ||
| 83 | * @names: if set, must be an array of strings to use as alternative | ||
| 84 | * names for the GPIOs in this chip. Any entry in the array | ||
| 85 | * may be NULL if there is no alias for the GPIO, however the | ||
| 86 | * array must be @ngpio entries long. A name can include a single printk | ||
| 87 | * format specifier for an unsigned int. It is substituted by the actual | ||
| 88 | * number of the gpio. | ||
| 89 | * | ||
| 90 | * A gpio_chip can help platforms abstract various sources of GPIOs so | ||
| 91 | * they can all be accessed through a common programing interface. | ||
| 92 | * Example sources would be SOC controllers, FPGAs, multifunction | ||
| 93 | * chips, dedicated GPIO expanders, and so on. | ||
| 94 | * | ||
| 95 | * Each chip controls a number of signals, identified in method calls | ||
| 96 | * by "offset" values in the range 0..(@ngpio - 1). When those signals | ||
| 97 | * are referenced through calls like gpio_get_value(gpio), the offset | ||
| 98 | * is calculated by subtracting @base from the gpio number. | ||
| 99 | */ | ||
| 100 | struct gpio_chip { | ||
| 101 | const char *label; | ||
| 102 | struct device *dev; | ||
| 103 | struct module *owner; | ||
| 104 | struct list_head list; | ||
| 105 | |||
| 106 | int (*request)(struct gpio_chip *chip, | ||
| 107 | unsigned offset); | ||
| 108 | void (*free)(struct gpio_chip *chip, | ||
| 109 | unsigned offset); | ||
| 110 | int (*get_direction)(struct gpio_chip *chip, | ||
| 111 | unsigned offset); | ||
| 112 | int (*direction_input)(struct gpio_chip *chip, | ||
| 113 | unsigned offset); | ||
| 114 | int (*get)(struct gpio_chip *chip, | ||
| 115 | unsigned offset); | ||
| 116 | int (*direction_output)(struct gpio_chip *chip, | ||
| 117 | unsigned offset, int value); | ||
| 118 | int (*set_debounce)(struct gpio_chip *chip, | ||
| 119 | unsigned offset, unsigned debounce); | ||
| 120 | |||
| 121 | void (*set)(struct gpio_chip *chip, | ||
| 122 | unsigned offset, int value); | ||
| 123 | |||
| 124 | int (*to_irq)(struct gpio_chip *chip, | ||
| 125 | unsigned offset); | ||
| 126 | |||
| 127 | void (*dbg_show)(struct seq_file *s, | ||
| 128 | struct gpio_chip *chip); | ||
| 129 | int base; | ||
| 130 | u16 ngpio; | ||
| 131 | struct gpio_desc *desc; | ||
| 132 | const char *const *names; | ||
| 133 | unsigned can_sleep:1; | ||
| 134 | unsigned exported:1; | ||
| 135 | |||
| 136 | #if defined(CONFIG_OF_GPIO) | ||
| 137 | /* | ||
| 138 | * If CONFIG_OF is enabled, then all GPIO controllers described in the | ||
| 139 | * device tree automatically may have an OF translation | ||
| 140 | */ | ||
| 141 | str | ||
